diff --git a/.github/ISSUE_TEMPLATE/0-enhancement.yaml b/.github/ISSUE_TEMPLATE/0-enhancement.yaml
index ea766b99..a24b51b0 100644
--- a/.github/ISSUE_TEMPLATE/0-enhancement.yaml
+++ b/.github/ISSUE_TEMPLATE/0-enhancement.yaml
@@ -1,7 +1,7 @@
name: Add support of a missing OSM tag
description: This requests an OSM tag to be added to the tagging schema in the form of a new preset, field or value.
# title: ''
-labels: enhancement
+labels: needs-triage
# assignees: ''
body:
- type: markdown
@@ -82,6 +82,13 @@ body:
placeholder: '126,000'
validations:
required: true
+ - type: input
+ attributes:
+ label: Suggested Icon
+ description: Each preset needs an icon ([learn more…](https://github.com/ideditor/schema-builder/blob/main/ICONS.md#icons)). Any suggestion, yet, on which? Or do we need a new one?
+ placeholder: 'maki-park'
+ validations:
+ required: false
- type: input
attributes:
label: Replaces other Tag?
diff --git a/.github/ISSUE_TEMPLATE/1-bug.md b/.github/ISSUE_TEMPLATE/1-bug.md
index 38b202e4..b14cbf84 100644
--- a/.github/ISSUE_TEMPLATE/1-bug.md
+++ b/.github/ISSUE_TEMPLATE/1-bug.md
@@ -2,7 +2,7 @@
name: Bug report
about: Create a report to help us improve
title: ''
-labels: bug
+labels: bug,needs-triage
assignees: ''
---
diff --git a/.github/ISSUE_TEMPLATE/2-deprecating.yaml b/.github/ISSUE_TEMPLATE/2-deprecating.yaml
index e1c175d1..b8f73267 100644
--- a/.github/ISSUE_TEMPLATE/2-deprecating.yaml
+++ b/.github/ISSUE_TEMPLATE/2-deprecating.yaml
@@ -1,7 +1,7 @@
name: Add a New Deprecation Rule
description: This requests an OSM tag to be added to list of deprecated tags.
# title: ''
-labels: deprecating
+labels: deprecating,needs-triage
# assignees: ''
body:
- type: markdown
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 00000000..705b5dda
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,72 @@
+### Description, Motivation & Context
+
+
+
+### Related issues
+
+
+
+### Links and data
+
+**Relevant OSM Wiki links:**
+- …
+
+**Relevant tag usage stats:**
+> …
+
+
+
+### Checklist and Test-Documentation Template
+
+Read on to get your PR merged faster…
+
+Follow these steps to test your PR yourself and make it a lot easier and faster for maintainers to check and approve it.
+
+**This is how it works:**
+1. After you submit your PR, the system will create a preview and comment on your PR:
+ > 🍱 Your pull request preview is ready.
+ If this is your first contribution to this project, the preview will not happen right away but requires a click from one of the project members. We will do this ASAP.
+
+2. Once the preview is ready, use it to test your changes.
+
+3. Now copy the snippet below into a new comment and fill out the blanks.
+
+4. Now your PR is ready to be reviewed.
+
+```
+## Test-Documentation
+
+### Preview links & Sidebar Screenshots
+
+
+
+
+
+### Search
+
+
+
+### Info-`i`
+
+
+
+### Wording
+
+- [ ] American English
+- [ ] `name`, `aliases` (if present) use Title Case
+- [ ] `terms` (if present) use lower case, sorted A-Z
+
+```
+
+
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index c5b6b65b..d0faeb1f 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -9,3 +9,4 @@ updates:
directory: "/"
schedule:
interval: "daily"
+ versioning-strategy: increase-if-necessary
diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml
new file mode 100644
index 00000000..0b0cd5d6
--- /dev/null
+++ b/.github/release-drafter.yml
@@ -0,0 +1,62 @@
+name-template: 'v$RESOLVED_VERSION'
+tag-template: 'v$RESOLVED_VERSION'
+categories:
+ - title: 'New Presets'
+ labels:
+ - 'new-preset'
+ - title: 'New and Changed Fields'
+ labels:
+ - 'field'
+ - 'new-field'
+ - 'new-value'
+ - title: 'Changed Presets'
+ labels:
+ - 'preset'
+ - 'add-field'
+ - 'new-icon'
+ - 'new-label'
+ - title: 'Regional Presets and Fields'
+ labels:
+ - 'regional'
+ - title: 'Deprecated Tags'
+ labels:
+ - 'deprecating'
+ - title: 'Bug Fixes'
+ labels:
+ - 'bug'
+ - title: 'Documentation and Other Changes'
+ labels:
+ - 'ci'
+ - 'documentation'
+ - 'new-category'
+ - 'schema-builder'
+ - 'schema'
+ - title: 'Dependencies'
+ collapse-after: 3
+ labels:
+ - 'dependencies'
+category-template: '#### $TITLE'
+change-template: '* $TITLE (#$NUMBER, thanks @$AUTHOR)'
+change-title-escapes: '\<*_&'
+version-resolver:
+ major:
+ labels:
+ - 'breaking'
+ minor:
+ labels:
+ - 'enhancement'
+ - 'new-preset'
+ - 'new-field'
+ - 'new-value'
+ - 'new-icon'
+ - 'new-label'
+ - 'new-category'
+ - 'add-field'
+ - 'deprecating'
+ - 'regional'
+ patch:
+ labels:
+ - 'bug'
+ - 'documentation'
+ default: minor
+template: '$CHANGES'
\ No newline at end of file
diff --git a/.github/workflows/build-preview.yml b/.github/workflows/build-preview.yml
new file mode 100644
index 00000000..a634e964
--- /dev/null
+++ b/.github/workflows/build-preview.yml
@@ -0,0 +1,49 @@
+name: Build Preview
+
+on:
+ pull_request:
+ branches:
+ - main
+
+permissions:
+ contents: read
+
+jobs:
+ build-preview:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
+ with:
+ node-version-file: '.nvmrc'
+ - run: npm clean-install
+ - run: npm run dist
+ - uses: actions/checkout@v4
+ with:
+ repository: openstreetmap/iD
+ path: './iD'
+ - run: npm clean-install
+ working-directory: './iD'
+ - run: npm run all
+ working-directory: './iD'
+ env:
+ ID_PRESETS_CDN_URL: '../../'
+ - run: npm run dist
+ working-directory: './iD'
+ env:
+ ID_PRESETS_CDN_URL: '../../'
+
+ - uses: actions/upload-artifact@v4
+ with:
+ name: preview
+ path: |
+ dist
+ iD/dist
+
+ - name: Store pull request number for later use
+ run: |
+ echo ${{github.event.number}} > ./pr_number
+ - uses: actions/upload-artifact@v4
+ with:
+ name: pr
+ path: ./pr_number
diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml
new file mode 100644
index 00000000..018df45a
--- /dev/null
+++ b/.github/workflows/deploy-preview.yml
@@ -0,0 +1,109 @@
+name: Deploy Preview
+
+on:
+ workflow_run:
+ workflows: ["Build Preview"]
+ types:
+ - completed
+
+jobs:
+ deploy-preview:
+ environment: pr-previews
+ runs-on: ubuntu-latest
+ if: ${{github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'}}
+ steps:
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
+ with:
+ node-version: '18'
+ - run: npm clean-install
+
+ - name: Get pull request number
+ uses: actions/github-script@v7
+ id: pull-request-number
+ with:
+ result-encoding: string
+ script: |
+ const unzipper = require('unzipper');
+ const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ run_id: ${{github.event.workflow_run.id}}
+ });
+ const artifact = artifacts.data.artifacts.filter(
+ artifact => artifact.name === 'pr'
+ )[0];
+ if (!artifact) {
+ throw new Error('No "pr" artifact found');
+ }
+ const download = await github.rest.actions.downloadArtifact({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ artifact_id: artifact.id,
+ archive_format: 'zip'
+ });
+ const directory = await unzipper.Open.buffer(Buffer.from(download.data));
+ const file = directory.files.find(d => d.path === 'pr_number');
+ const content = await file.buffer();
+ return content.toString();
+ - uses: dawidd6/action-download-artifact@v8
+ with:
+ github_token: ${{secrets.GITHUB_TOKEN}}
+ workflow: build-preview.yml
+ pr: ${{steps.pull-request-number.outputs.result}}
+ name: preview
+ allow_forks: true
+
+ - name: Deploy to Netlify
+ env:
+ NETLIFY_AUTH_TOKEN: ${{secrets.NETLIFY_AUTH_TOKEN}}
+ NETLIFY_SITE_ID: ${{secrets.NETLIFY_SITE_ID}}
+ run: ./node_modules/.bin/netlify deploy --no-build --dir=. --alias=pr-${{steps.pull-request-number.outputs.result}}
+
+ - name: Add comment to pull request
+ uses: actions/github-script@v7
+ with:
+ script: |
+ const pullRequestNumber = parseInt(${{steps.pull-request-number.outputs.result}}, 10);
+ const start = ':bento:';
+ const author = 'github-actions[bot]';
+ const comments = await github.rest.issues.listComments({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ issue_number: pullRequestNumber
+ });
+ const commentExists = comments.data.some(
+ comment => comment.user.login === author && comment.body.startsWith(start)
+ );
+ if (!commentExists) {
+ await github.rest.issues.createComment({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ issue_number: pullRequestNumber,
+ body: `${start} **[Your pull request preview is ready](https://pr-${pullRequestNumber}--ideditor-presets-preview.netlify.app/id/dist/#locale=en&map=18.00/48.841708/2.587656)**\n\nPlease use this preview to check your changes. Ideally use [the **test documentation** template](https://github.com/openstreetmap/id-tagging-schema/blob/main/.github/PULL_REQUEST_TEMPLATE.md?plain=1#L38-L69) and document your test results by commenting on the PR. This will speed up the review process for everyone.\n\nFYI, once this PR is merged, you can use [the iD Editor Preview](http://preview.ideditor.com/) to test your changes in interaction with all other changes.`
+ });
+ } else {
+ console.log(`Preview URL comment already added to PR #${pullRequestNumber}`);
+ }
+
+ - name: Clean up artifact
+ uses: actions/github-script@v7
+ with:
+ result-encoding: string
+ script: |
+ const artifacts = await github.rest.actions.listWorkflowRunArtifacts({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ run_id: ${{github.event.workflow_run.id}}
+ });
+ const artifact = artifacts.data.artifacts.filter(
+ artifact => artifact.name === 'preview'
+ )[0];
+ if (!artifact) {
+ throw new Error('No "preview" artifact found');
+ }
+ await github.rest.actions.deleteArtifact({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ artifact_id: artifact.id
+ });
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index c61d3f76..1c790e4d 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -12,27 +12,26 @@ jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
- if: "!contains(github.event.head_commit.message, 'Deploy') && github.repository == 'openstreetmap/id-tagging-schema'"
+ if: github.repository == 'openstreetmap/id-tagging-schema'
steps:
- name: Checkout
- uses: actions/checkout@v3 # If you're using actions/checkout@v3 you must set persist-credentials to false in most cases for the deployment to work correctly.
+ uses: actions/checkout@v4 # If you're using actions/checkout@v3 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false
- name: Set up Node.js
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
with:
- node-version: '18'
+ node-version-file: '.nvmrc'
- name: Install Node.js dependencies
- run: npm install
+ run: npm clean-install
- name: Build
run: npm run build
- name: Deploy 🚀
- uses: JamesIves/github-pages-deploy-action@v4.4.0
+ uses: JamesIves/github-pages-deploy-action@v4
with:
- BRANCH: main # The branch the action should deploy to.
- FOLDER: . # The folder the action should deploy.
- CLEAN: false # Automatically remove deleted files from the deploy branch
+ branch: interim # The branch the action should deploy to.
+ folder: interim # The folder the action should deploy.
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 0c5c59ba..8c99efac 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -1,40 +1,38 @@
-name: code style checks
+name: Code Style Checks
on: [push, pull_request]
jobs:
lint:
name: Check file endings
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- run: |
- notJSONs=`find data/ -type f -not -iname "*.json"`
- for f in $notJSONs
+ disallowedFiles=`find data/ -type f -not -iname "*.json" -not -iname "*.md"`
+ for f in $disallowedFiles
do
- echo "::error file=$f::File $f is not a .json file."
+ echo "::error file=$f::File $f is not a .json or .md file."
done
- if [ ! -z "$notJSONs" ]; then exit 1; fi
+ if [ ! -z "$disallowedFiles" ]; then exit 1; fi
prettier:
name: Check for code formatting mistakes
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
- - uses: actions/setup-node@v3
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
with:
- node-version: '18'
- - run: npm install
- - run: 'for f in `find data/ -type f -not -iname "*.json"`; do echo "::error File $f is not a .json file."; done'
+ node-version-file: '.nvmrc'
+ - run: npm clean-install
- run: npm run lint
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v3
- - uses: codespell-project/actions-codespell@master
+ - uses: actions/checkout@v4
+ - uses: codespell-project/actions-codespell@v2
with:
check_filenames: true
- skip: ./.git,./dist/translations
- ignore_words_list: "auxilary,casette,cemetary,chancel,extentions,faiway,generat,goverment,guerilla,kindergarden,pavillion,sculpter,storys"
+ skip: ./.git,./dist,./data/deprecated.json,./data/discarded.json,package.json,package-lock.json,./scripts
+ ignore_words_list: "auxilary,casette,cemetary,chancel,discus,extentions,faiway,generat,goverment,guerilla,guyser,kindergarden,ore,pavillion,sculpter,storys,linz,te,brunch"
only_warn: 1
-
diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml
new file mode 100644
index 00000000..87cdded4
--- /dev/null
+++ b/.github/workflows/release-drafter.yml
@@ -0,0 +1,21 @@
+name: Release Drafter
+
+on:
+ push:
+ branches:
+ - main
+
+permissions:
+ contents: read
+
+jobs:
+ update_release_draft:
+ permissions:
+ contents: write
+ runs-on: ubuntu-latest
+ steps:
+ - uses: release-drafter/release-drafter@v6
+ with:
+ disable-autolabeler: true
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
\ No newline at end of file
diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml
new file mode 100644
index 00000000..01fe875d
--- /dev/null
+++ b/.github/workflows/staging.yml
@@ -0,0 +1,57 @@
+name: Build and Deploy Staging Instance
+
+on:
+ push:
+ branches: [ main ]
+
+permissions:
+ contents: read
+
+jobs:
+ build-deploy:
+ if: github.repository == 'openstreetmap/id-tagging-schema'
+ runs-on: ubuntu-latest
+ environment: staging
+ steps:
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
+ with:
+ node-version-file: '.nvmrc'
+ # install and build development version of id-tagging-schema
+ - run: npm clean-install
+ - run: npm run translations
+ env:
+ transifex_password: ${{secrets.TX_TOKEN}}
+ if: env.transifex_password != null
+ - run: npm run dist
+ # install and build development version of iD using freshest version of presets and ELI
+ - uses: actions/checkout@v4
+ with:
+ repository: openstreetmap/id
+ path: './iD'
+ - run: npm clean-install
+ working-directory: './iD'
+ - run: npm install editor-layer-index
+ working-directory: './iD'
+ - run: mkdir dist/data
+ working-directory: './iD'
+ - run: npm run imagery
+ working-directory: './iD'
+ - run: npm run all
+ working-directory: './iD'
+ - run: npm run translations
+ working-directory: './iD'
+ env:
+ transifex_password: ${{secrets.TX_TOKEN}}
+ if: env.transifex_password != null
+ - run: mkdir iD/dist/id-tagging-schema && mv dist iD/dist/id-tagging-schema/dist
+ - run: npm run dist
+ working-directory: './iD'
+ env:
+ ID_PRESETS_CDN_URL: './id-tagging-schema/'
+ # deploy to netlify
+ - name: Deploy to Netlify
+ env:
+ NETLIFY_AUTH_TOKEN: ${{secrets.NETLIFY_AUTH_TOKEN}}
+ NETLIFY_SITE_ID: ${{secrets.NETLIFY_SITE_ID}}
+ run: ./node_modules/.bin/netlify deploy --no-build --prod --dir=iD/dist
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 57427d1a..760c4ca8 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -1,7 +1,7 @@
# This workflow will do a clean install of node dependencies and run tests across different versions of node.
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
-name: test
+name: Test
on:
push:
@@ -18,10 +18,10 @@ jobs:
node-version: ['18']
steps:
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- - run: npm install
+ - run: npm clean-install
- run: npm run test
diff --git a/.gitignore b/.gitignore
index c9479532..4ed4d07e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,6 +4,6 @@
/node_modules/
/.tx/tmp/
npm-debug.log
-package-lock.json
transifex.auth
+interim
diff --git a/.nvmrc b/.nvmrc
new file mode 100644
index 00000000..b009dfb9
--- /dev/null
+++ b/.nvmrc
@@ -0,0 +1 @@
+lts/*
diff --git a/.prettierrc b/.prettierrc
index 2441a7df..27505a24 100644
--- a/.prettierrc
+++ b/.prettierrc
@@ -1,6 +1,6 @@
{
- "parser": "json-stringify",
- "proseWrap": "never",
- "bracketSpacing": true,
- "endOfLine": "lf"
+ "parser": "json-stringify",
+ "proseWrap": "never",
+ "bracketSpacing": true,
+ "endOfLine": "lf"
}
diff --git a/.vscode/settings.json b/.vscode/settings.json
index ceba8534..580992de 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -36,5 +36,8 @@
],
"url": "./node_modules/@ideditor/schema-builder/schemas/preset_defaults.json"
}
- ]
+ ],
+ "files.exclude": {
+ "**/dist": true
+ }
}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 259b5b76..0f03e41b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,16 +7,982 @@ _Breaking developer changes, which may affect downstream projects or sites that
+
+# 6.12.0
+##### 2025-Jul-23
+
+#### New Presets
+* Add preset for `climbing=route` point, way and relation ([#1598], thanks [@harahu])
+* Add preset for `climbing=crag` point and relation ([#1597], thanks [@harahu])
+* Add preset for `memorial=blue_plaque` ([#1601], thanks [@hb0nd])
+* Add preset for `climbing=route_bottom` ([#1590], thanks [@zbycz])
+* Add historic=aircraft Preset ([#1556], thanks [@novolife])
+* Create teahouse preset ([#1555], thanks [@novolife])
+#### New and Changed Fields
+* Add bridge to the structure field of canal ([#1587], thanks [@novolife])
+* Add preset for `climbing=area` ([#1596], thanks [@harahu])
+* Add "Suitable For Dogs" field to `amenity=drinking_water` preset ([#1584], thanks [@codeinabox])
+* Add roof shape and roof height fields to building presets ([#1552], thanks [@trs998])
+* Fix fields of `historic=aircraft` ([#1566], thanks [@novolife])
+#### Changed Presets
+* Add terms to `shop=fabric` ([#1619], thanks [@matkoniecz])
+* Add term "solicitor" to lawyer preset ([#1604], thanks [@hb0nd])
+* Add terms to `amenity=toilets` preset ([#1583], thanks [@matkoniecz])
+* Add `direction` field to Observation Tower preset ([#1575], thanks [@zbycz])
+* Add terms to `amenity=telephone` ([#1574], thanks [@matkoniecz])
+* Make `social_facility` more findable ([#1576], thanks [@matkoniecz])
+* Add term "apparel" to `shop=clothes` preset ([#1382], thanks [@matkoniecz])
+* Add term to `shop=stationery` to prevent misspelling ([#1514], thanks [@matkoniecz])
+* Add `ref` key to `natural=tree` `moreFields` ([#1398], thanks [@gy-mate])
+#### Regional Presets and Fields
+* Add preset for `memorial=blue_plaque` ([#1601], thanks [@hb0nd])
+#### Documentation and Other Changes
+* Docs: Update broken transifex links ([#1630], thanks [@homersimpsons])
+* Docs/Governance: Add closing of abandoned PRs to responsibilities of the the triage role ([#1603], thanks [@matkoniecz])
+* Docs: Add detailed information on integration testing ([#1593], thanks [@harahu])
+* Docs: Streamline wording of PR preview ([#1606], thanks [@tordans])
+
+[#1382]: https://github.com/openstreetmap/id-tagging-schema/pull/1382
+[#1398]: https://github.com/openstreetmap/id-tagging-schema/pull/1398
+[#1514]: https://github.com/openstreetmap/id-tagging-schema/pull/1514
+[#1552]: https://github.com/openstreetmap/id-tagging-schema/pull/1552
+[#1555]: https://github.com/openstreetmap/id-tagging-schema/pull/1555
+[#1556]: https://github.com/openstreetmap/id-tagging-schema/pull/1556
+[#1566]: https://github.com/openstreetmap/id-tagging-schema/pull/1566
+[#1574]: https://github.com/openstreetmap/id-tagging-schema/pull/1574
+[#1575]: https://github.com/openstreetmap/id-tagging-schema/pull/1575
+[#1576]: https://github.com/openstreetmap/id-tagging-schema/pull/1576
+[#1583]: https://github.com/openstreetmap/id-tagging-schema/pull/1583
+[#1584]: https://github.com/openstreetmap/id-tagging-schema/pull/1584
+[#1587]: https://github.com/openstreetmap/id-tagging-schema/pull/1587
+[#1590]: https://github.com/openstreetmap/id-tagging-schema/pull/1590
+[#1593]: https://github.com/openstreetmap/id-tagging-schema/pull/1593
+[#1596]: https://github.com/openstreetmap/id-tagging-schema/pull/1596
+[#1597]: https://github.com/openstreetmap/id-tagging-schema/pull/1597
+[#1598]: https://github.com/openstreetmap/id-tagging-schema/pull/1598
+[#1601]: https://github.com/openstreetmap/id-tagging-schema/pull/1601
+[#1603]: https://github.com/openstreetmap/id-tagging-schema/pull/1603
+[#1604]: https://github.com/openstreetmap/id-tagging-schema/pull/1604
+[#1606]: https://github.com/openstreetmap/id-tagging-schema/pull/1606
+[#1619]: https://github.com/openstreetmap/id-tagging-schema/pull/1619
+[#1630]: https://github.com/openstreetmap/id-tagging-schema/pull/1630
+[@homersimpsons]: https://github.com/@homersimpsons
+[@hb0nd]: https://github.com/@hb0nd
+[@novolife]: https://github.com/@novolife
+[@codeinabox]: https://github.com/@codeinabox
+[@trs998]: https://github.com/@trs998
+[@zbycz]: https://github.com/@zbycz
+
+
+# 6.11.0
+##### 2025-May-12
+
+#### New Presets
+* Add `crossing=informal` as unsearchable preset for point and line geometries ([#1140], thanks [@mikaeldui])
+#### New and Changed Fields
+* Remove `source` field by marking it as a field to be used on changesets (only) ([#1508], thanks [@tordans])
+#### Changed Presets
+* Add `ref` field to `amenity=bicycle_rental` ([#1519], thanks [@kjonosm])
+* Update reference tags for recycling containers and centres ([#1497], thanks [@Dimitar5555])
+* Add search term "empty" to Vacant Shop preset ([#1499], thanks [@matkoniecz])
+#### Deprecated Tags
+* Remove `highway=ford` deprecation ([#1492], thanks [@quincylvania])
+#### Bug Fixes
+* Fix broken "Address" documentation link ([#1489], thanks [@Vectorial1024])
+#### Documentation and Other Changes
+* Consistently use term "Wikibase" for data items also in contribution guidelines ([#1504], thanks [@matkoniecz])
+* Clarify term "Wikibase" for data items in the OSM wiki ([#1502], thanks [@matkoniecz])
+* Set up `release-drafter` ([#1503])
+
+[#1140]: https://github.com/openstreetmap/id-tagging-schema/pull/1140
+[#1508]: https://github.com/openstreetmap/id-tagging-schema/pull/1508
+[#1519]: https://github.com/openstreetmap/id-tagging-schema/pull/1519
+[#1497]: https://github.com/openstreetmap/id-tagging-schema/pull/1497
+[#1499]: https://github.com/openstreetmap/id-tagging-schema/pull/1499
+[#1492]: https://github.com/openstreetmap/id-tagging-schema/pull/1492
+[#1489]: https://github.com/openstreetmap/id-tagging-schema/pull/1489
+[#1504]: https://github.com/openstreetmap/id-tagging-schema/pull/1504
+[#1502]: https://github.com/openstreetmap/id-tagging-schema/pull/1502
+[#1503]: https://github.com/openstreetmap/id-tagging-schema/pull/1503
+[@Vectorial1024]: https://github.com/Vectorial1024
+
+
+# 6.10.0
+##### 2025-Mar-20
+
+#### New Presets
+* Add preset for `amenity=veterinary_pharmacy` ([#1451], thanks [@Avan2021])
+* Add preset for `shop=groundskeeping` ([#1448], thanks [@Avan2021])
+* Add preset for `shop=bbq` ([#1430], thanks [@andrewharvey])
+#### Changed Presets
+* Show `fire_hydrant/position` field by default for all Hydrants ([#1441], thanks [@sun-geo])
+* Add `wheelchair` field to Cycle Barrier preset ([#1232], thanks [@k-yle])
+* Add `operator` field to `highway=street_lamp` ([#1327], thanks [@CorruptComputer])
+* Use couch icon for `craft=upholsterer` ([#1462], thanks [@westnordost])
+* Update icons for some shop presets: (`vacant` [#1457], `art` [#1458], `craft` [#1459], `e-cigarette` [#1460], `amenity=marketplace` [#1461], thanks [@westnordost])
+#### New and Changed Fields
+* Add fields for Cycle Barrier properties: `cycle_barrier` type, `cycle_barrier:installation`, `deflection` angle, `maxwidth:physical`, `opening` width, `overlap` width and `spacing` distance ([#1232], thanks [@k-yle])
+* Add field for Center-Pivot Irrigation `irrigation=pivot` ([#1320], thanks [@arch0345])
+* Add `entrance=shop` value also to Entrance Type field ([#1446])
+* Add field toilets to `amenity=fast_food` as `moreFileds` ([#1454], thanks [@Avan2021])
+* Use translated strings for `bridge` and `tunnel` values also in `structure` fields
+* Add values `stone` and `tilework` to Artwork Type field ([#1443], thanks [@okainov])
+#### Bugfixes
+* Remove tag deprecation rule for `shop=photo_studio` ([#1407])
+#### Documentation and Other Changes
+* Remove `interim` directory in main branch (it's now available in a dedicated branch called `interim`) ([#1307])
+
+[#1232]: https://github.com/openstreetmap/id-tagging-schema/pull/1232
+[#1232]: https://github.com/openstreetmap/id-tagging-schema/pull/1232
+[#1320]: https://github.com/openstreetmap/id-tagging-schema/pull/1320
+[#1327]: https://github.com/openstreetmap/id-tagging-schema/pull/1327
+[#1307]: https://github.com/openstreetmap/id-tagging-schema/pull/1307
+[#1407]: https://github.com/openstreetmap/id-tagging-schema/issues/1407
+[#1430]: https://github.com/openstreetmap/id-tagging-schema/pull/1430
+[#1441]: https://github.com/openstreetmap/id-tagging-schema/pull/1441
+[#1443]: https://github.com/openstreetmap/id-tagging-schema/pull/1443
+[#1446]: https://github.com/openstreetmap/id-tagging-schema/pull/1446
+[#1448]: https://github.com/openstreetmap/id-tagging-schema/pull/1448
+[#1451]: https://github.com/openstreetmap/id-tagging-schema/pull/1451
+[#1454]: https://github.com/openstreetmap/id-tagging-schema/pull/1454
+[#1457]: https://github.com/openstreetmap/id-tagging-schema/pull/1457
+[#1458]: https://github.com/openstreetmap/id-tagging-schema/pull/1458
+[#1459]: https://github.com/openstreetmap/id-tagging-schema/pull/1459
+[#1460]: https://github.com/openstreetmap/id-tagging-schema/pull/1460
+[#1461]: https://github.com/openstreetmap/id-tagging-schema/pull/1461
+[#1462]: https://github.com/openstreetmap/id-tagging-schema/pull/1462
+[@Avan2021]: https://github.com/Avan2021
+[@sun-geo]: https://github.com/sun-geo
+[@CorruptComputer]: https://github.com/CorruptComputer
+
+
+# 6.9.1
+##### 2025-Feb-18
+
+* fix "Detached House" translation in en-GB ([#1438])
+
+[#1438]: https://github.com/openstreetmap/id-tagging-schema/issues/1438
+
+
+# 6.9.0
+##### 2025-Feb-06
+
+#### New Presets
+* Add preset for `office=translator` ([#1298], thanks [@deevroman])
+* Add hidden presets for `highway=path + path=crossing` ([#1201], thanks [@tordans])
+* Add preset for `shop=gold_buyer` ([#1374], thanks [@matkoniecz])
+* Add preset for `natural=arch` ([#1352], thanks [@jake-low])
+* Add preset for `entrance=shop` ([#1299], thanks [@deevroman])
+* Add presets for `cycleway=traffic_island` ([#1068], thanks [@k-yle])
+* Rework crossing presets to be better structured and easier to work with ([#1201], thanks [@tordans])
+#### Changed Presets
+* Add `building` (with default value `yes`) field to Funeral Service Hall preset ([#1324], thanks [@arch0345])
+* Add additional search terms to Monitoring Station preset ([#1347], thanks [@mnalis])
+* Add additional search terms to Public Bookcase Station preset ([#1333], [#1354], thanks [@Coehill] and [@danieldegroot2])
+* Change icon of Ticket Validator preset ([#1388], thanks [@matkoniecz])
+* Rename `shop=yes` to reuse the name "Shop (Unspecified type)" ([#1415], thanks [@Dimitar5555])
+* Only apply `layer=1` on newly created `building=roof` objects ([#1342]) and tweak fields of roof preset
+#### New and Changed Fields
+* Add `camp_site` (type) field to Campground preset ([#1286], thanks [@osmuser63783])
+* Improve label of `internet_access` field ([#1346], thanks [@mnalis])
+* Add value `e-cigarettes` to `vending` field of Vending Machine preset ([#1371], thanks [@tiuck])
+* Add translatable strings for values of the `map_type` tag ([#1373], thanks [@tiuck])
+* Add value `sac_scale=strolling` to Hiking Path Difficulty field ([#1383], thanks [@felagund])
+* Add descriptions to options for `parking` field ([#1402], thanks [@Nekzuris])
+* Add universal field for `panoramax` photo ids ([#1344], thanks [@mnalis])
+* Include `addr:town` in list of tags of the Address field ([#1433])
+#### Regional Presets and Fields
+* Add presets for `meadow=meadow_orchard`, `orchard=meadow_orchard` ([#1218], thanks [@tordans])
+* Add presets for `highway=path-`based bicycle-foot path tagging in some European countries ([#1384], thanks [@olafkryus])
+#### Deprecated Tags
+* Replace ~~`information=map + map_type=tactile_map`~~ with information=tactile_map ([#1373], thanks [@tiuck])
+* Replace ~~`information=map + map_type=tactile_model`~~ with information=tactile_model ([#1373], thanks [@tiuck])
+* Replace ~~`parking:lane:*=*`~~ with `parking:*` tags ([#1390], thanks [@tiptoptom])
+* Replace ~~`cycleway*=opposite`~~ with `oneway:bicycle=no` ([#1295], thanks [@tordans])
+#### Bugfixes
+* Fix spelling of Amphitheater preset to American English ([#1366], thanks [@1ec5])
+#### Documentation and Other Changes
+* Improve documentation about how ℹ️ icon works in iD ([#1257], thanks [@tordans])
+* Clarify guidelines about deprecation rules ([#1309], thanks [@tordans])
+* Add question about potential preset icon to github issue template ([#1377], thanks [@tordans])
+* Synchronize list of discardable tags with JOSM ([#1423])
+
+[#1201]: https://github.com/openstreetmap/id-tagging-schema/pull/1201
+[#1218]: https://github.com/openstreetmap/id-tagging-schema/pull/1218
+[#1257]: https://github.com/openstreetmap/id-tagging-schema/pull/1257
+[#1286]: https://github.com/openstreetmap/id-tagging-schema/pull/1286
+[#1295]: https://github.com/openstreetmap/id-tagging-schema/pull/1295
+[#1309]: https://github.com/openstreetmap/id-tagging-schema/pull/1309
+[#1324]: https://github.com/openstreetmap/id-tagging-schema/pull/1324
+[#1333]: https://github.com/openstreetmap/id-tagging-schema/pull/1333
+[#1342]: https://github.com/openstreetmap/id-tagging-schema/issues/1342
+[#1344]: https://github.com/openstreetmap/id-tagging-schema/pull/1344
+[#1346]: https://github.com/openstreetmap/id-tagging-schema/pull/1346
+[#1347]: https://github.com/openstreetmap/id-tagging-schema/pull/1347
+[#1354]: https://github.com/openstreetmap/id-tagging-schema/pull/1354
+[#1366]: https://github.com/openstreetmap/id-tagging-schema/pull/1366
+[#1371]: https://github.com/openstreetmap/id-tagging-schema/pull/1371
+[#1373]: https://github.com/openstreetmap/id-tagging-schema/pull/1373
+[#1373]: https://github.com/openstreetmap/id-tagging-schema/pull/1373
+[#1377]: https://github.com/openstreetmap/id-tagging-schema/pull/1377
+[#1383]: https://github.com/openstreetmap/id-tagging-schema/pull/1383
+[#1384]: https://github.com/openstreetmap/id-tagging-schema/pull/1384
+[#1388]: https://github.com/openstreetmap/id-tagging-schema/pull/1388
+[#1390]: https://github.com/openstreetmap/id-tagging-schema/pull/1390
+[#1402]: https://github.com/openstreetmap/id-tagging-schema/pull/1402
+[#1415]: https://github.com/openstreetmap/id-tagging-schema/pull/1415
+[#1423]: https://github.com/openstreetmap/id-tagging-schema/issues/1423
+[#1433]: https://github.com/openstreetmap/id-tagging-schema/pull/1433
+[@deevroman]: https://github.com/deevroman
+[@jake-low]: https://github.com/jake-low
+[@Coehill]: https://github.com/Coehill
+[@tiuck]: https://github.com/tiuck
+[@felagund]: https://github.com/felagund
+
+
+# 6.8.1
+##### 2024-Aug-19
+
+* Update translations from Transifex
+
+
+# 6.8.0
+##### 2024-Aug-19
+
+#### New Presets
+* Add preset for `man_made=flare` ([#1237])
+* Add presets for Ski Jump features ([#1176], thanks [@olafkryus])
+* Add preset for `leisure=bathing_place` ([#1274], thanks [@osmuser63783])
+* Add preset for `hairdresser=barber` ([#1165], thanks [@kjonosm])
+* Add preset for `man_made=footwear_decontamination` ([#1235])
+* Add preset for Go Kart Facility ([#1281], thanks [@arch0345])
+* Add preset for Chinese Fast Food ([#1280], thanks [@arch0345])
+* Add preset for `amenity=swingerclub` ([#1187], thanks [@Asteliks])
+* Add presets for dedicated types of Community Centers ([#1200], thanks [@tiptoptom])
+#### Changed Presets
+* Add `activity` field to Trail Marker preset ([#1197], thanks [@danieldegroot2])
+* Add `maxweight` field to Helipad preset ([#1234])
+* Add `organic` field to the following presets: Cafe, Fast Food, Ice Cream Shop, Restaurant ([#1247], thanks [@ToastHawaii])
+* Allow presets to be mapped as vertices: Ticket Validator, Fuel Pump, Mineshaft, Marker, Sinkhole, Public Transport Stations, Welcome Sign ([#1233])
+* Add `maxheight` field to Parking Garage Entrance/Exit preset ([#232], thanks [@cicku])
+#### New and Changed Fields
+* Add `armrest` field for Bench preset ([#1227], thanks [@bompstable])
+* Add additional translatable values to the `surface` field: `clay`, `concrete:lanes`, `concrete:plates`, `grass_paver`, `pebblestone`, `tartan` ([#1198], thanks [@michalgwo])
+* Add common name tags as universal fields: `alt_name`, `loc_name`, `nat_name`, `official_name`, `reg_name`, `short_name` ([#215], thanks [@1ec5])
+* Add value `ghost_bike` to the memorial type field ([#1302], thanks [@mnalis])
+#### Deprecated Tags
+* Add tag upgrade rule for `sidewalk=none` to `sidewalk=no`
+#### Bugfixes
+* Fix typo for tag value `material=reinforced_concrete` ([#1245], thanks [@Dimitar5555])
+* Remove unnecessary `matchScore` property from Kitchen Garden preset ([#1253])
+* Fix tag for roller coaster track type field ([#1293], thanks [@arch0345])
+#### Documentation and Other Changes
+* Skip `dist` directory for searching in VS Code ([#1219])
+* Change _deploy_ workflow to write `interim` data to a dedicated branch, instead of the `main` development branch ([#1307])
+* Add repo governance documentation, including roles (co-maintainers, issue triage helpers, contributors) ([#1230])
+* Document guidelines for presets, fields and tag deprecations ([#1229])
+* Add pull request template ([#1239])
+
+[#215]: https://github.com/openstreetmap/id-tagging-schema/pull/215
+[#222]: https://github.com/openstreetmap/id-tagging-schema/pull/222
+[#232]: https://github.com/openstreetmap/id-tagging-schema/pull/232
+[#1165]: https://github.com/openstreetmap/id-tagging-schema/pull/1165
+[#1167]: https://github.com/openstreetmap/id-tagging-schema/pull/1167
+[#1187]: https://github.com/openstreetmap/id-tagging-schema/pull/1187
+[#1197]: https://github.com/openstreetmap/id-tagging-schema/pull/1197
+[#1198]: https://github.com/openstreetmap/id-tagging-schema/pull/1198
+[#1200]: https://github.com/openstreetmap/id-tagging-schema/pull/1200
+[#1219]: https://github.com/openstreetmap/id-tagging-schema/pull/1219
+[#1227]: https://github.com/openstreetmap/id-tagging-schema/pull/1227
+[#1229]: https://github.com/openstreetmap/id-tagging-schema/pull/1229
+[#1230]: https://github.com/openstreetmap/id-tagging-schema/pull/1230
+[#1233]: https://github.com/openstreetmap/id-tagging-schema/pull/1233
+[#1234]: https://github.com/openstreetmap/id-tagging-schema/pull/1234
+[#1235]: https://github.com/openstreetmap/id-tagging-schema/pull/1235
+[#1237]: https://github.com/openstreetmap/id-tagging-schema/pull/1237
+[#1176]: https://github.com/openstreetmap/id-tagging-schema/pull/1176
+[#1239]: https://github.com/openstreetmap/id-tagging-schema/pull/1239
+[#1245]: https://github.com/openstreetmap/id-tagging-schema/pull/1245
+[#1247]: https://github.com/openstreetmap/id-tagging-schema/pull/1247
+[#1253]: https://github.com/openstreetmap/id-tagging-schema/pull/1253
+[#1274]: https://github.com/openstreetmap/id-tagging-schema/pull/1274
+[#1280]: https://github.com/openstreetmap/id-tagging-schema/pull/1280
+[#1281]: https://github.com/openstreetmap/id-tagging-schema/pull/1281
+[#1293]: https://github.com/openstreetmap/id-tagging-schema/pull/1293
+[#1302]: https://github.com/openstreetmap/id-tagging-schema/pull/1302
+[#1307]: https://github.com/openstreetmap/id-tagging-schema/pull/1307
+[@bompstable]: https://github.com/bompstable
+[@michalgwo]: https://github.com/michalgwo
+[@ToastHawaii]: https://github.com/ToastHawaii
+[@olafkryus]: https://github.com/olafkryus
+[@osmuser63783]: https://github.com/osmuser63783
+[@Asteliks]: https://github.com/Asteliks
+[@cicku]: https://github.com/cicku
+
+
+# 6.7.3
+##### 2024-Apr-5
+
+* Fix error in tag upgrade rule: `traffic_calming=island + area=yes` was falsely upgraded to `area:highway=traffic_calming` instead of `…=traffic_island` ([#1180])
+
+[#1180]: https://github.com/openstreetmap/id-tagging-schema/issues/1180
+
+
+# 6.7.2
+##### 2024-Mar-15
+
+* Upgrade objects tagged with `traffic_calming=island + area=yes` to `area:highway=traffic_island` ([#1162])
+
+[#1162]: https://github.com/openstreetmap/id-tagging-schema/issues/1162
+
+
+# 6.7.1
+##### 2024-Mar-14
+
+* Fix URLs to icons from the maki icon set in the taginfo-project output ([schema-builder#119])
+
+[schema-builder#119]: https://github.com/ideditor/schema-builder/pull/119
+
+
+# 6.7.0
+##### 2024-Mar-14
+
+#### New Presets
+* Add preset for `man_made=clarifier` ([#1091], thanks [@arch0345])
+* Add preset `amenity=dog_toilet` ([#1095], thanks [@cnotin])
+* Add preset for Book Return Drop Boxes (`amenity=library_dropoff`) ([#1037], thanks [@arch0345])
+* Add preset for Hot Tub (`leisure=hot_tub`) ([#1008], thanks [@arch0345])
+* Add preset for `emergency=disaster_response` ([#1108], thanks [@andrewharvey])
+* Add preset for `amenity=luggage_locker` ([#1121], thanks [@kjonosm])
+* Add preset for Kitchen Garden (`leisure=garden` + `garden:type=kitchen`) ([#1135], thanks [@imagoiq])
+* Add preset for `historic=cannon` ([#1134], thanks [@qugebert])
+* Add preset for `amenity=bicycle_wash` ([#1032], thanks [@mcliquid])
+#### Changed Presets
+* Add `ref` field to `railway=switch` preset ([#1083], thanks [@gy-mate])
+* Improve icon for Thai Restaurant preset ([#1090], thanks [@louwers])
+* Move `bottle` field to optional fields in the Drinking Water preset ([#1101])
+* Add access field to Parking Space preset ([#1123], thanks [@watmildon])
+* Include Informal Path preset in Paths category ([#1131], thanks [@k-yle])
+* Add Structure field to Steps preset to mark them as a bridge for example ([#1128], thanks [@k-yle])
+* Add road-related fields to Busway preset ([#1127], thanks [@k-yle])
+* Add `via` field to Ferry Route preset ([#1127], thanks [@k-yle])
+* Add `changing_table` as optional field to several POI presets ([#1139], thanks [@mangerlahn])
+* Add more search terms to Transit Ticket Vending Machine preset ([#1142], thanks [@matkoniecz])
+* Add more search terms to Public Bookcase preset ([#1150], thanks [@matkoniecz])
+* Add `oneway` as optional field to Crossing ways, Footways, Paths, Steps and Track Roads ([#1143], thanks [@tordans])
+* Make all Tree-type presets searchable ([#1156])
+#### New and Changed Fields
+* Add new `ref` (Line Number) and `railway:track_ref` (Track Number) fields to the `railway=rail` preset ([#1083], thanks [@gy-mate])
+* Add new `railway:switch` (Switch Type) field to `railway=switch` preset ([#1084], thanks [@gy-mate])
+* Add field for `summit:cross` tag on `natural=peak` objects ([#1088], thanks [@qugebert])
+* Add `unleashed` as an option for the `dog` field
+* Add translatable options for swimming pool Type field ([#1008], thanks [@arch0345])
+* Add option `millstone` to the field for the `historic` tag ([#1067])
+* Add field for menstrual products (`toilets:menstrual_products`) on Toilets and POIs with the `toilet` field ([#1116], thanks [@moan0s])
+* Add field to specify the Type of Lifeguard locations
+* Show translated options in `sport_pub` field and add value for `sport=darts` to it as well as the generic `sport` field
+* Add translatable options and descriptions to `kerb` field ([#1029], thanks [@kjonosm])
+* Include icons with the options of the `kerb` field
+* Don't repeat kerb Type field in the type-specific Kerb presets
+* Add field for `fortification_type` tag for features mapped as `archaeological_site=fortification` ([#1129], thanks [@k-yle])
+* Add translatable options to `bridge` field for `man_made=bridge` features ([#1002], thanks [@kjonosm])
+* Clarify that `left`/`right` are meant to be mapped relative to the driving direction for `highway=cyclist_waiting_aid` features ([iD#10128])
+#### Regional Presets and Fields
+#### Deprecated Tags
+* Mark `emergency=lifeguard_tower/lifeguard_base/lifeguard_platform` and `emergency=water_rescue_station` as deprecated in favor of `emergency=lifeguard + lifeguard=*`/`emergency=water_rescue` ([#1098], thanks [@westnordost])
+* Mark `tourism=resort` as deprecated in favor of `leisure=resort` ([#1103], thanks [@westnordost])
+* Mark `tourism=picnic_table` as deprecated in favor of `leisure=picnic_table` ([#1104], thanks [@westnordost])
+* Mark `industrial=brickworks` as deprecated in favor of `industrial=brickyard` ([#1105], thanks [@qugebert])
+* Mark `amenity=ses_station` as deprecated in favor of `emergency=disaster_response` ([#1109], thanks [@qugebert])
+* Mark `leisure=maze` as deprecated in favor of `attraction=maze` ([#1102], thanks [@westnordost])
+* Mark `amenity=lockers` as deprecated in favor of `amenity=locker` ([#1124], thanks [@kjonosm])
+#### Bugfixes
+* Allow Bike Parking features to be mapped as a line ([#1114])
+* Fix wrong description and add missing value for `lpg`/`lng` values of the Fuel field ([#1130], thanks [@k-yle])
+* Don't automatically add `building=yes` on `man_made=works` objects ([#1132])
+* Disallow area geometry type on `traffic_calming=island` preset ([#1076])
+* Allow `historic=ruins` to be mapped as lines ([#1149])
+
+[#1067]: https://github.com/openstreetmap/id-tagging-schema/issues/1067
+[#1101]: https://github.com/openstreetmap/id-tagging-schema/issues/1101
+[#1114]: https://github.com/openstreetmap/id-tagging-schema/issues/1114
+[#1132]: https://github.com/openstreetmap/id-tagging-schema/issues/1132
+[#1149]: https://github.com/openstreetmap/id-tagging-schema/issues/1149
+[#1156]: https://github.com/openstreetmap/id-tagging-schema/issues/1156
+[#1002]: https://github.com/openstreetmap/id-tagging-schema/pull/1002
+[#1008]: https://github.com/openstreetmap/id-tagging-schema/pull/1008
+[#1029]: https://github.com/openstreetmap/id-tagging-schema/pull/1029
+[#1032]: https://github.com/openstreetmap/id-tagging-schema/pull/1032
+[#1037]: https://github.com/openstreetmap/id-tagging-schema/pull/1037
+[#1076]: https://github.com/openstreetmap/id-tagging-schema/pull/1076
+[#1083]: https://github.com/openstreetmap/id-tagging-schema/pull/1083
+[#1084]: https://github.com/openstreetmap/id-tagging-schema/pull/1084
+[#1088]: https://github.com/openstreetmap/id-tagging-schema/pull/1088
+[#1090]: https://github.com/openstreetmap/id-tagging-schema/pull/1090
+[#1091]: https://github.com/openstreetmap/id-tagging-schema/pull/1091
+[#1095]: https://github.com/openstreetmap/id-tagging-schema/pull/1095
+[#1098]: https://github.com/openstreetmap/id-tagging-schema/pull/1098
+[#1102]: https://github.com/openstreetmap/id-tagging-schema/pull/1102
+[#1103]: https://github.com/openstreetmap/id-tagging-schema/pull/1103
+[#1104]: https://github.com/openstreetmap/id-tagging-schema/pull/1104
+[#1105]: https://github.com/openstreetmap/id-tagging-schema/pull/1105
+[#1106]: https://github.com/openstreetmap/id-tagging-schema/pull/1106
+[#1108]: https://github.com/openstreetmap/id-tagging-schema/pull/1108
+[#1109]: https://github.com/openstreetmap/id-tagging-schema/pull/1109
+[#1116]: https://github.com/openstreetmap/id-tagging-schema/pull/1116
+[#1121]: https://github.com/openstreetmap/id-tagging-schema/pull/1121
+[#1123]: https://github.com/openstreetmap/id-tagging-schema/pull/1123
+[#1124]: https://github.com/openstreetmap/id-tagging-schema/pull/1124
+[#1126]: https://github.com/openstreetmap/id-tagging-schema/pull/1126
+[#1127]: https://github.com/openstreetmap/id-tagging-schema/pull/1127
+[#1128]: https://github.com/openstreetmap/id-tagging-schema/pull/1128
+[#1129]: https://github.com/openstreetmap/id-tagging-schema/pull/1129
+[#1130]: https://github.com/openstreetmap/id-tagging-schema/pull/1130
+[#1131]: https://github.com/openstreetmap/id-tagging-schema/pull/1131
+[#1134]: https://github.com/openstreetmap/id-tagging-schema/pull/1134
+[#1135]: https://github.com/openstreetmap/id-tagging-schema/pull/1135
+[#1136]: https://github.com/openstreetmap/id-tagging-schema/pull/1136
+[#1139]: https://github.com/openstreetmap/id-tagging-schema/pull/1139
+[#1142]: https://github.com/openstreetmap/id-tagging-schema/pull/1142
+[#1143]: https://github.com/openstreetmap/id-tagging-schema/pull/1143
+[#1150]: https://github.com/openstreetmap/id-tagging-schema/pull/1150
+[iD#10128]: https://github.com/openstreetmap/iD/issues/10128
+[@gy-mate]: https://github.com/gy-mate
+[@qugebert]: https://github.com/qugebert
+[@louwers]: https://github.com/louwers
+[@moan0s]: https://github.com/moan0s
+[@imagoiq]: https://github.com/imagoiq
+[@mangerlahn]: https://github.com/mangerlahn
+[@cnotin]: https://github.com/cnotin
+
+
+# 6.6.0
+##### 2024-Jan-24
+
+#### New Presets
+* Add preset for `man_made=insect_hotel` ([#1020], thanks [@tordans])
+* Add preset for `highway=cyclist_waiting_aid` ([#1069], thanks [@k-yle])
+* Add presets for tracks, stations and supports of roller coasters ([#985], thanks [@arch0345])
+* Add new preset for Fuel Pumps and adjust current preset for Fuel Vending Machines ([#988], thanks [@Dimitar5555])
+* Add a preset for Snack Vending Machines (`vending=food` + `food=snacks`) ([#1038], thanks [@arch0345])
+#### Changed Presets
+* Add `support` & `colour` fields to Letter Box preset ([#1005], thanks [@mnalis])
+* Rename `vending=sweets` to Candy Vending Machine ([#1038], thanks [@arch0345])
+* Change name of `traffic_calming=island` preset to Traffic Calming Island ([#1074], thanks [@ireun])
+#### New and Changed Fields
+* Add field for the type of roller coaster tracks ([#985], thanks [@arch0345])
+* Add field for `opening_hours:drive_through` ([#999], thanks [@arch0345])
+* Add field to specify types of books available at Public Bookcases ([#1001], thanks [@danieldegroot2]), as well as in Libraries and Book Shops
+#### Regional Presets and Fields
+* Add field for the `fhrs:id` reference code for food establishments in the UK (, thanks [@Cj-Malone])
+* Disallow leading zeros in `gnis:feature_id` field ([#1007], thanks [@watmildon])
+* Specify `crossing:markings` types in Poland ([#1030], thanks [@Zaczero])
+* Add field for `ref:edubase` reference code for schools (and similar facilities) in the UK ([#1000], thanks [@arrival-spring])
+#### Bugfixes
+* Allow Ferris Wheels to be mapped as areas ([#989], thanks [@andreadecorte])
+#### Documentation and Other Changes
+* Don't lowercase hashtags of changesets ([#1080])
+
+[#985]: https://github.com/openstreetmap/id-tagging-schema/pull/985
+[#987]: https://github.com/openstreetmap/id-tagging-schema/pull/987
+[#988]: https://github.com/openstreetmap/id-tagging-schema/pull/988
+[#989]: https://github.com/openstreetmap/id-tagging-schema/pull/989
+[#999]: https://github.com/openstreetmap/id-tagging-schema/pull/999
+[#1000]: https://github.com/openstreetmap/id-tagging-schema/pull/1000
+[#1001]: https://github.com/openstreetmap/id-tagging-schema/pull/1001
+[#1005]: https://github.com/openstreetmap/id-tagging-schema/pull/1005
+[#1007]: https://github.com/openstreetmap/id-tagging-schema/pull/1007
+[#1020]: https://github.com/openstreetmap/id-tagging-schema/pull/1020
+[#1030]: https://github.com/openstreetmap/id-tagging-schema/pull/1030
+[#1038]: https://github.com/openstreetmap/id-tagging-schema/pull/1038
+[#1069]: https://github.com/openstreetmap/id-tagging-schema/pull/1069
+[#1074]: https://github.com/openstreetmap/id-tagging-schema/pull/1074
+[#1080]: https://github.com/openstreetmap/id-tagging-schema/issues/1080
+[@andreadecorte]: https://github.com/andreadecorte
+[@watmildon]: https://github.com/watmildon
+[@mnalis]: https://github.com/mnalis
+[@arrival-spring]: https://github.com/arrival-spring
+[@ireun]: https://github.com/ireun
+
+
+# 6.5.0
+##### 2023-Dec-15
+
+#### New Presets
+* Add preset for `memorial=stolperstein` with `memorial:addr` field ([#964], thanks [@tordans])
+* Add presets for `amenity=baking_oven` and `building=bakehouse` ([#975], thanks [@N-45div])
+* Add preset for `man_made=satellite_dish` ([#976], thanks [@N-45div])
+* Add preset for "Unspecified Traffic Sign" ([#984], thanks [@tordans])
+* Add presets for Optical and Radio Telescopes
+* Add Adventure Park preset for `sport=climbing_adventure` ([#1051], thanks [@arch0345])
+* Add preset for `building=riding_hall` ([#1048], thanks [@Hufkratzer])
+* Add preset for `amenity=loading_dock` and corresponding `dock:*` attribute fields ([#1043], thanks [@arch0345])
+* Add Funeral Service Hall preset ([#1045], thanks [@arch0345])
+* Add Switchgear preset ([#1059], thanks [@arch0345])
+#### Changed Presets
+* Drop undocumented/deprecated fields of the `tourism=trail_riding_station` preset
+* Improve equestrian search terms ([#1055], thanks [@Hufkratzer])
+#### New and Changed Fields
+* Add `riding_hall` as an option to the "building type" field
+* Change label of `brewery` field to "Sold Beer Brands" ([#1047], thanks [@mcliquid])
+#### Regional Presets and Fields
+* Use `highway=path` as base tag for Cycle & Foot Path in Israel ([#1058], thanks [@zstadler])
+#### Deprecated Tags
+* Replace `memorial:type=stolperstein` with `memorial=stolperstein` ([#964], thanks [@tordans])
+* Replace `door=loadingdock` with `amenity=loading_dock` ([#1043], thanks [@arch0345])
+#### Bugfixes
+* Allow Log Flume to be mapped as a line ([#980])
+* Fix icons for `fast_food=bagel` and `fast_food=wings` presets ([#1057], thanks [@arch0345])
+* Fix typo `pancake` in tag value for `cuisine` field ([#1063], thanks [@matkoniecz])
+#### Documentation and Other Changes
+* Upgrade to schema-builder v6.4 (which offers slightly enhanced taginfo output)
+
+[#964]: https://github.com/openstreetmap/id-tagging-schema/pull/964
+[#975]: https://github.com/openstreetmap/id-tagging-schema/issues/975
+[#976]: https://github.com/openstreetmap/id-tagging-schema/issues/976
+[#980]: https://github.com/openstreetmap/id-tagging-schema/issues/980
+[#984]: https://github.com/openstreetmap/id-tagging-schema/pull/984
+[#1043]: https://github.com/openstreetmap/id-tagging-schema/pull/1043
+[#1045]: https://github.com/openstreetmap/id-tagging-schema/pull/1045
+[#1047]: https://github.com/openstreetmap/id-tagging-schema/pull/1047
+[#1048]: https://github.com/openstreetmap/id-tagging-schema/pull/1048
+[#1051]: https://github.com/openstreetmap/id-tagging-schema/pull/1051
+[#1055]: https://github.com/openstreetmap/id-tagging-schema/pull/1055
+[#1057]: https://github.com/openstreetmap/id-tagging-schema/pull/1057
+[#1058]: https://github.com/openstreetmap/id-tagging-schema/pull/1058
+[#1059]: https://github.com/openstreetmap/id-tagging-schema/pull/1059
+[#1063]: https://github.com/openstreetmap/id-tagging-schema/pull/1063
+[@N-45div]: https://github.com/N-45div
+[@mcliquid]: https://github.com/mcliquid
+[@zstadler]: https://github.com/zstadler
+
+
+# 6.4.1
+##### 2023-Aug-16
+
+* Update distribution files and translations from Transifex.
+
+
+# 6.4.0
+##### 2023-Aug-16
+
+#### New Presets
+* Add EV Charging Point preset for `man_made=charge_point` ([#896], thanks [@arch0345])
+* Add preset for Milk Churn Stands ([#869], thanks [@arch0345])
+* Add preset for Rice Shops ([#944], thanks [@govvin])
+* Add preset for `boundary=hazard` (Hazardous Area) ([#952], thanks [@arch0345])
+* Add preset for Tree Stumps (`natural=tree_stump`) ([#957], thanks [@tordans])
+* Add preset for Hooka Lounge / Shisha Bar (`amenity=hookah_lounge`) ([#961], thanks [@kjonosm])
+* Add preset for Pasta Stores ([#930], thanks [@govvin])
+* Add presets for taxi stands which do not use "regular" cars, like Auto/Cycle Riskshaw Stands and Motorcycle Taxi Stands ([#946], thanks [@govvin])
+* Add specific presets for Trees which have the tags `leaf_cycle`/`leaf_type` mapped ([#956])
+#### Changed Presets
+* Add field to specify the type of a `house` ([#921], thanks [@arch0345])
+* Allow Drinking Water to be mapped on vertices ([#925], thanks [@arch0345])
+* Rename preset for Trash Cans and Recycling Bins ([#938], thanks [@arch0345])
+* Add `direction` field to Emergency Bay preset
+* Add more fields to Parcel Locker preset for the tags: `wheelchair`, `indoor` ([#940]), `collection_times`, `surveillance`
+* Rename preset for `military=danger_area` to Military Danger Area ([#952], thanks [@arch0345])
+* Use generic traffic sign icon for `traffic_sign=maxspeed` ([#968], thanks [@tordans])
+#### New and Changed Fields
+* Add fields for `maxlength` and `maxaxleload` ([#911], thanks [@arch0345]), rename fields for `maxheight`, `maxwidth` and `maxstay` to be consistent with each other
+* Add options (translatable strings) to fields for the following tags: `vending`, `tomb`, `telecom`, `social_facility:for`, `healthcare`, `military_service`, `marker` ([#923], [#924], [#933], [#934], [#935], [#972], [#973], thanks [@kjonosm])
+* Add more values to the `sport` field ([#969], thanks [@kjonosm])
+* Add `fine_gravel` as a value to the `surface` field ([#967], thanks [@kjonosm])
+* Change field for the `ramp` tag from checkbox to `combo`, add option `separate` ([#939], thanks [@arch0345])
+* Add field to specify the type of vehicle at taxi stands ([#946], thanks [@govvin])
+#### Regional Presets and Fields
+* Philippines: Create preset for Barangay Halls ([#932], thanks [@govvin])
+* US, Canada, Liberia: Use _square_ icon for `traffic:sign=maxspeed`
+#### Other Changes
+* Don't always also show the Wikipedia field when the `wikidata` tag is set on an object
+* Drop field for `opening_hours:covid19` ([#963])
+#### Bugfixes
+* Fix tag used for Barbeque Restaurants from the (incorrect) value `cuisine=barbeque` to `cuisine=barbecue` ([#943])
+* Fix documentation _reference_ of `parking:*:orientation` field
+#### Documentation and Other Changes
+* Update `prettier` to v3
+
+[#869]: https://github.com/openstreetmap/id-tagging-schema/issues/869
+[#896]: https://github.com/openstreetmap/id-tagging-schema/issues/896
+[#911]: https://github.com/openstreetmap/id-tagging-schema/pull/911
+[#921]: https://github.com/openstreetmap/id-tagging-schema/pull/921
+[#923]: https://github.com/openstreetmap/id-tagging-schema/pull/923
+[#924]: https://github.com/openstreetmap/id-tagging-schema/pull/924
+[#925]: https://github.com/openstreetmap/id-tagging-schema/pull/925
+[#930]: https://github.com/openstreetmap/id-tagging-schema/issues/930
+[#932]: https://github.com/openstreetmap/id-tagging-schema/pull/932
+[#933]: https://github.com/openstreetmap/id-tagging-schema/pull/933
+[#934]: https://github.com/openstreetmap/id-tagging-schema/pull/934
+[#935]: https://github.com/openstreetmap/id-tagging-schema/pull/935
+[#938]: https://github.com/openstreetmap/id-tagging-schema/pull/938
+[#939]: https://github.com/openstreetmap/id-tagging-schema/pull/939
+[#940]: https://github.com/openstreetmap/id-tagging-schema/issues/940
+[#942]: https://github.com/openstreetmap/id-tagging-schema/issues/942
+[#943]: https://github.com/openstreetmap/id-tagging-schema/issues/943
+[#944]: https://github.com/openstreetmap/id-tagging-schema/pull/944
+[#946]: https://github.com/openstreetmap/id-tagging-schema/pull/946
+[#952]: https://github.com/openstreetmap/id-tagging-schema/pull/952
+[#956]: https://github.com/openstreetmap/id-tagging-schema/pull/956
+[#957]: https://github.com/openstreetmap/id-tagging-schema/pull/957
+[#961]: https://github.com/openstreetmap/id-tagging-schema/pull/961
+[#963]: https://github.com/openstreetmap/id-tagging-schema/issues/963
+[#967]: https://github.com/openstreetmap/id-tagging-schema/pull/967
+[#968]: https://github.com/openstreetmap/id-tagging-schema/pull/968
+[#969]: https://github.com/openstreetmap/id-tagging-schema/pull/969
+[#972]: https://github.com/openstreetmap/id-tagging-schema/pull/972
+[#973]: https://github.com/openstreetmap/id-tagging-schema/pull/973
+[@govvin]: https://github.com/govvin
+
+
+# 6.3.0
+##### 2023-Jun-02
+#### :mega: Release Highlights
+* Support alternative tagging of Phone, Fax, Email and Website fields using the `contact:*` tagging schema ([#905])
+#### New Presets
+* Add "Yacht Berths" preset ([#899])
+#### Changed Presets
+* Add "Ramen Shop" as alias to Ramen Restaurant, and refine its search terms
+* Use more specific car icons for presets: Driving School, (Used) Car Dealer ([#902], thanks [@tiptoptom])
+* Add additional fields to `man_made=watermill` and `man_made=windmill` presets and show `start_date` field by default
+* Switch to Ford icon from Röntgen icon set
+#### New and Changed Fields
+* Add field for `bicycle_road` tag (see [#888])
+* Add field for `building:colour` tag ([#904])
+* Add field to switch between Yacht Berths and Marina by checkbox (`seamark:harbour:category` tag) ([#899])
+* Add field for Mobile Phone number (`mobile`/`contact:mobile`)
+* Add Bridge Number field ([#912], thanks [@arch0345])
+#### Regional Presets and Fields
+* BE, NL: Add field for `cyclestreet` tag ([#888], thanks [@pietervdvn])
+* BG: Only show relevant values for crossing markings ([#891], thanks [@Dimitrar5555])
+* DE,AT,CH: Only show relevant values for crossing markings
+* JP: Update placeholders for Japanese address schema ([#907])
+#### Bugfixes
+* Offer `crossing:markings` field in all relevant `crossing/*/traffic_signals` presets ([#908])
+* Make unspecified Pedestrian Crossing (line preset) searchable ([#889], thanks [@Dimitrar5555])
+* Drop `construction` subtag when preset is changed away from a Construction preset ([#903])
+* Allow `barrier=log` preset on "standalone" points ([#898])
+* Drop `segregated` tag when changing away from Cycle+Foot Path preset ([#910])
+#### Documentation and Other Changes
+* Create template for regional crossing:markings fields
+* Upgrade to schema-builder [v6.3](https://github.com/ideditor/schema-builder/blob/main/CHANGELOG.md#630): Allows to specify alternative keys for text, number, tel, email and url fields.
+
+[#888]: https://github.com/openstreetmap/id-tagging-schema/pull/888
+[#889]: https://github.com/openstreetmap/id-tagging-schema/pull/889
+[#898]: https://github.com/openstreetmap/id-tagging-schema/issues/898
+[#899]: https://github.com/openstreetmap/id-tagging-schema/pull/899
+[#891]: https://github.com/openstreetmap/id-tagging-schema/pull/891
+[#902]: https://github.com/openstreetmap/id-tagging-schema/pull/902
+[#903]: https://github.com/openstreetmap/id-tagging-schema/issues/903
+[#904]: https://github.com/openstreetmap/id-tagging-schema/issues/904
+[#905]: https://github.com/openstreetmap/id-tagging-schema/issues/905
+[#907]: https://github.com/openstreetmap/id-tagging-schema/issues/907
+[#908]: https://github.com/openstreetmap/id-tagging-schema/issues/908
+[#910]: https://github.com/openstreetmap/id-tagging-schema/issues/910
+[#912]: https://github.com/openstreetmap/id-tagging-schema/pull/912
+[@pietervdvn]: https://github.com/pietervdvn
+[@Dimitrar5555]: https://github.com/Dimitrar5555
+
+
+# 6.2.0
+##### 2023-May-05
+
+#### New Presets
+* Add presets for Georgian and Ukrainian restaurants ([#857], thanks [@matkoniecz])
+* Add preset for `shop=honey` ([#1], [#878], thanks [@matkoniecz])
+* Add Ramen Restaurant preset ([#880], thanks [@arch0345])
+* Add Frozen Yogurt Shop preset ([#881], thanks [@arch0345])
+* Add Chicken Wings Fast Food preset ([#883], thanks [@arch0345])
+* Add Bagel Fast Food preset ([#882], thanks [@arch0345])
+#### Changed Presets
+* Enable tagging unspecific crossings ([#837], [#834], thanks [@matkoniecz])
+* Add contact:facebook field to POI presets ([#859], thanks [@Cj-Malone])
+* Add _white goods_ as search term to `shop=appliance` preset ([#864], thanks [@matkoniecz])
+* Add _Pedestrian Island_ as an alias of the `footway=traffic_island` preset ([#865], thanks [@Dimitar5555])
+* Rename `amenity=kneipp_water_cure` preset to _Kneipp Facility_ ([#866])
+* Improve search terms of `horse_riding` preset ([#868], thanks [@Hufkratzer])
+* Improve search terms of advertisement devices ([#867], thanks [@matkoniecz])
+* Improve search terms of Pulmonologist ([#872], thanks [@matkoniecz])
+* Add "Obstetrician" as synonym to Gynecologist and improve the preset's search terms ([#873], [#789], thanks [@matkoniecz])
+* Add "bus terminal" as search term to Bus Station preset ([#890], thanks [@Dimitar5555])
+* Improve terms and add "Clinical Psychologist" as an alias to Psychotherapist preset ([#877])
+#### New and Changed Fields
+* Rename sport=equestrian to "Equestrian Sports" ([#855], thanks [@Hufkratzer])
+* Add additional cuisine values ([#857], thanks [@matkoniecz])
+* Add strings for values of `kneipp_water_cure:*` subtags ([#866])
+* Change Gender field to a `manyCombo` field ([#895])
+* Restrict values of the Gender field for hairdressers to female/male ([#894])
+* Use translated strings of the `sport` field also in its subfields (e.g. `sport_ice`, `sport_racing*`)
+#### Deprecated Tags
+* Replace ~~`survey_date`~~ with `survey:date` ([#860], thanks [@Marc-marc-marc])
+* Suggest to remove `highway=crossing` when `crossing=no` ([#863])
+#### Bugfixes
+* Don't assume a `kerb` tag implies being a barrier, as it can also be used as an attribute of a `highway=crossing` vertex ([#858], [#862])
+* Allow `highway=elevator` on areas and standalone nodes ([#870])
+* Fix match priorities for Crossing and Speed Table presets ([#863])
+* Upgrade (deprecated) `shop=organic` to `shop=yes + organic=only` (instead of `shop=supermarket + organic=only`) ([#884], thanks [@matkoniecz])
+#### Documentation and Other Changes
+* Clean up presets with fields included as both `fields` and `moreFields`
+* Consolidate optional fields of "POI" presets into "template presets"
+
+[#1]: https://github.com/openstreetmap/id-tagging-schema/issues/1
+[#789]: https://github.com/openstreetmap/id-tagging-schema/issues/789
+[#834]: https://github.com/openstreetmap/id-tagging-schema/issues/834
+[#858]: https://github.com/openstreetmap/id-tagging-schema/issues/858
+[#863]: https://github.com/openstreetmap/id-tagging-schema/issues/863
+[#866]: https://github.com/openstreetmap/id-tagging-schema/issues/866
+[#870]: https://github.com/openstreetmap/id-tagging-schema/issues/870
+[#877]: https://github.com/openstreetmap/id-tagging-schema/issues/877
+[#894]: https://github.com/openstreetmap/id-tagging-schema/issues/894
+[#895]: https://github.com/openstreetmap/id-tagging-schema/issues/895
+[#837]: https://github.com/openstreetmap/id-tagging-schema/pull/837
+[#855]: https://github.com/openstreetmap/id-tagging-schema/pull/855
+[#857]: https://github.com/openstreetmap/id-tagging-schema/pull/857
+[#859]: https://github.com/openstreetmap/id-tagging-schema/pull/859
+[#860]: https://github.com/openstreetmap/id-tagging-schema/pull/860
+[#862]: https://github.com/openstreetmap/id-tagging-schema/pull/862
+[#864]: https://github.com/openstreetmap/id-tagging-schema/pull/864
+[#865]: https://github.com/openstreetmap/id-tagging-schema/pull/865
+[#867]: https://github.com/openstreetmap/id-tagging-schema/pull/867
+[#868]: https://github.com/openstreetmap/id-tagging-schema/pull/868
+[#872]: https://github.com/openstreetmap/id-tagging-schema/pull/872
+[#873]: https://github.com/openstreetmap/id-tagging-schema/pull/873
+[#878]: https://github.com/openstreetmap/id-tagging-schema/pull/878
+[#880]: https://github.com/openstreetmap/id-tagging-schema/pull/880
+[#881]: https://github.com/openstreetmap/id-tagging-schema/pull/881
+[#882]: https://github.com/openstreetmap/id-tagging-schema/pull/882
+[#883]: https://github.com/openstreetmap/id-tagging-schema/pull/883
+[#884]: https://github.com/openstreetmap/id-tagging-schema/pull/884
+[#890]: https://github.com/openstreetmap/id-tagging-schema/pull/890
+[@Cj-Malone]: https://github.com/Cj-Malone
+
+
+# 6.1.0
+##### 2023-Apr-03
+
+#### :mega: Release Highlights
+* On github, automated preview instances of iD will be deployed for tagging PRs
+#### New Presets
+* Add presets for Korean and Spanish Restaurants ([#815], thanks [@andrewharvey])
+* Add preset for `man_made=quay` ([#810], thanks [@jdhoek])
+* Add Track & Field presets ([#817], thanks [@arch0345])
+* Add preset for `natural=peninsula` ([#798], [#844], thanks [@harahu])
+* Add preset for `emergency=fire_service_inlet` ([#806], thanks [@tiptoptom])
+* Add preset for Scout Group ([#836], thanks [@tiptoptom])
+#### Changed Presets
+* Add a field for the tag `website:menu` to amenties like Restaurants, Cafes, etc. ([#803], thanks [@tognee])
+* Rename `military=danger_area` preset to "Danger Zone, Access Prohibited" ([#792], thanks [@emersonveenstra])
+* Add terms "cat/dog grooming" to Pet Groomer preset ([#811], thanks [@matkoniecz])
+* Use `amenity=dancing_school` tag for Dance Studio preset
+* Add `flashing_lights` field to `crossing=uncontrolled` ([#827], thanks [@Dimitar5555])
+* Make `shop=vacant` preset searchable ([#828], thanks [@Dimitar5555])
+* Hide `shop=hobby` preset and add _hobby_ as search term to related Shop presets ([#24], [#821], [#823], thanks [@matkoniecz])
+* Make `barrier=log` preset searchable ([#615], [#822], thanks [@matkoniecz])
+* More dedicated icon for Sign Maker, `shop=frozen_food` and Castle presets ([#839], [#840], [#849], thanks [@matkoniecz])
+* Add additional search terms to Billboard preset ([#848], thanks [@matkoniecz])
+#### New and Changed Fields
+* Drop value `community` from `postbox:type` field ([#805], thanks [@kjonosm])
+* Add translatable strings for fields: `historic`, `diplomatic`, `consulate`, `dock`, `collector` ([#813], [#841], [#843], [#852], [#853], thanks [@kjonosm])
+* Add field for `dance:teaching=yes/no` tag
+* Add more values of `sport` field ([#812], thanks [@kjonosm])
+* Add fields for `fire_mains` and `fire_sprinkler` ([#806], thanks [@tiptoptom])
+* Update tag of Orientation field for Street Side Parking preset from `parking:orientation` to `orientation` ([#673], thanks [@tordans])
+* Specify cons for some `shelter_type` values ([#851])
+#### Deprecated Tags
+* Add recently deprecated tags ([#807], thanks [@kjonosm]):
+ * ~~`amenity=lifeboat-station`~~ :arrow_right: `emergency=water_rescue`
+ * ~~`emergency=lifeboat_station`~~ :arrow_right: `emergency=water_rescue`
+ * ~~`emergency=marine_rescue`~~ :arrow_right: `emergency=water_rescue`
+ * ~~`emergency_service=air`~~ :arrow_right: `emergency=air_rescue_service`
+ * ~~`emergency=dry_riser_inlet`~~ :arrow_right: `emergency=fire_service_inlet`+ `fire_mains=dry`
+ * ~~`emergency=sprinkler_connection`~~ :arrow_right: `emergency=fire_service_inlet`+ `fire_sprinkler=yes`
+* Remove disputed deprecation of `amenity=dancing_school` ([#814], thanks [@matkoniecz])
+* Update Utility Pole preset and add relevant deprecations ([#830], [#211], thanks [@Dimitar5555]):
+ * ~`communication=pole`~ :arrow_right: `man_made=utility_pole` + `utility=telecom`
+ * ~`telephone=pole`~ :arrow_right: `man_made=utility_pole` + `utility=telecom`
+ * ~`telecom=pole`~ :arrow_right: `man_made=utility_pole` + `utility=telecom`
+ * ~`pstn=pole`~ :arrow_right: `man_made=utility_pole` + `utility=telecom`
+* ~`parking:orientation=*`~ :arrow_right: `orientation=*` ([#673], thanks [@tordans])
+#### Bugfixes
+* Fix tag of (hidden) generic Pipeline Feature preset
+* Avoid lowercasing Destination field on one-ways ([#829], thanks [@1ec5])
+#### Documentation and Other Changes
+* Extend documentation section about translating ([#825], thanks [@tordans])
+* Create [CONTRIBUTING](./CONTRIBUTING.md) page
+* Add a `.nvmrc` file
+* Bump dependencies: `prettier` to v2.8.6, `schema-builder` to v6.2
+
+[#24]: https://github.com/openstreetmap/id-tagging-schema/issues/24
+[#211]: https://github.com/openstreetmap/id-tagging-schema/issues/211
+[#615]: https://github.com/openstreetmap/id-tagging-schema/issues/615
+[#673]: https://github.com/openstreetmap/id-tagging-schema/pull/673
+[#792]: https://github.com/openstreetmap/id-tagging-schema/pull/792
+[#798]: https://github.com/openstreetmap/id-tagging-schema/issues/798
+[#800]: https://github.com/openstreetmap/id-tagging-schema/pull/800
+[#803]: https://github.com/openstreetmap/id-tagging-schema/pull/803
+[#805]: https://github.com/openstreetmap/id-tagging-schema/pull/805
+[#806]: https://github.com/openstreetmap/id-tagging-schema/pull/806
+[#807]: https://github.com/openstreetmap/id-tagging-schema/pull/807
+[#810]: https://github.com/openstreetmap/id-tagging-schema/pull/810
+[#811]: https://github.com/openstreetmap/id-tagging-schema/pull/811
+[#812]: https://github.com/openstreetmap/id-tagging-schema/pull/812
+[#813]: https://github.com/openstreetmap/id-tagging-schema/pull/813
+[#814]: https://github.com/openstreetmap/id-tagging-schema/pull/814
+[#815]: https://github.com/openstreetmap/id-tagging-schema/pull/815
+[#817]: https://github.com/openstreetmap/id-tagging-schema/pull/817
+[#821]: https://github.com/openstreetmap/id-tagging-schema/pull/821
+[#822]: https://github.com/openstreetmap/id-tagging-schema/pull/822
+[#823]: https://github.com/openstreetmap/id-tagging-schema/pull/823
+[#825]: https://github.com/openstreetmap/id-tagging-schema/pull/825
+[#827]: https://github.com/openstreetmap/id-tagging-schema/pull/827
+[#828]: https://github.com/openstreetmap/id-tagging-schema/pull/828
+[#829]: https://github.com/openstreetmap/id-tagging-schema/pull/829
+[#830]: https://github.com/openstreetmap/id-tagging-schema/pull/830
+[#836]: https://github.com/openstreetmap/id-tagging-schema/pull/836
+[#839]: https://github.com/openstreetmap/id-tagging-schema/pull/839
+[#840]: https://github.com/openstreetmap/id-tagging-schema/pull/840
+[#841]: https://github.com/openstreetmap/id-tagging-schema/pull/841
+[#843]: https://github.com/openstreetmap/id-tagging-schema/pull/843
+[#844]: https://github.com/openstreetmap/id-tagging-schema/pull/844
+[#848]: https://github.com/openstreetmap/id-tagging-schema/pull/848
+[#849]: https://github.com/openstreetmap/id-tagging-schema/pull/849
+[#851]: https://github.com/openstreetmap/id-tagging-schema/issues/851
+[#852]: https://github.com/openstreetmap/id-tagging-schema/pull/852
+[#853]: https://github.com/openstreetmap/id-tagging-schema/pull/853
+[@tognee]: https://github.com/tognee
+[@emersonveenstra]: https://github.com/emersonveenstra
+[@tiptoptom]: https://github.com/tiptoptom
+[@harahu]: https://github.com/harahu
+
+
+# 6.0.0
+##### 2023-Mar-02
+
+#### Schema Changes
+* Upgrade to the schema-builder [version 6](https://github.com/ideditor/schema-builder/blob/main/CHANGELOG.md#600)
+ * :warning: Field type `cycleway` is replaced with new `directionalCombo` field
+ * :warning: Adds new `date` field type
+ * :warning: Introduces the use of icons from the [Röntgen icon set](https://github.com/enzet/map-machine#r%C3%B6ntgen-icon-set)
+ * Allows to specify icons for values of combo fields
+#### New Presets
+* Add most popular alternative medicine practitioners ([#731], thanks [@westnordost])
+* Add preset for `office=engineer` ([#639], thanks [@kjonosm])
+* Add preset for `shop=nuts` ([#774], thanks [@kjonosm])
+* Add preset for `entrance=staircase` ([#228], thanks [@kjonosm])
+* Add preset for `railway=turntable` ([#783], thanks [@k-yle])
+* Add preset for "other" advertising devices
+* Add Senior Assisted Living Facility preset ([#787], thanks [@arch0345])
+* Add presets for specific Street Cabinets
+* Add presets for Psychiatrist and Child Psychiatrist
+* Add preset for Depots (`industrial=depot`) ([#784], thanks [@k-yle])
+* Add preset for `amenity=stripclub` ([#648], thanks [@EvanCarroll])
+* Add preset for Dialysis Center ([#795], thanks [@arch0345])
+#### Changed Presets
+* Make natural wood points unsearchable ([#755], thanks [@arch0345])
+* Rename `attraction=big_wheel` to Ferris Wheel
+* Use Rötgen icons for presets of: Cranes, Diving Platform, City Limit Sign, Turning Loop, (Water) Slide
+* Allow to specify Therapist offices more precisely by adding `healthcare` fields
+* Add `crossing:markings=yes` as the default value to any newly created Marked Crossings (leave existing objects with `crossing=uncontrolled` as they are)
+* Offer the `bunker_type` field also on the (hidden) `building=bunker` preset
+* Add `ref` field to Sports Pitch preset ([#766], thanks [@arch0345])
+* Include additional fields on the Rest Area preset ([#773], thanks [@kjonosm])
+* Move `access_simple` to main fields for AEDs ([#786], thanks [@FloEdelmann])
+* Don't warn when `landuse=industrial` is mapped as a point ([#776], thanks [@Lonerat])
+* Allow Cemeteries to be mapped as points
+* Add terms (polo/rodeo) for `sport=equestrian` preset ([#780], thanks [@arch0345])
+* Allow "Totem" and "Poser Box" advertising presets to be mapped as a line ([#785], thanks [@k-yle])
+* Rename `shop=pet_grooming` preset to Pet Groomer ([#790], thanks [@matkoniecz])
+#### New and Changed Fields
+* Switch type of various fields to `date`: `check_date`, `opening_date`, `start_date`, `survey:date`, `wreck:date_sunk`
+* Add translatable strings for the fields `substance` ([#737]), `material` ([#735]), `memorial` ([#734]), `barrier type` ([#709]), `archaeological_site` ([#707]), `bath:type` ([#742]), `sport` ([#747]), `attraction` ([#756]), `waste` ([#758]), `office` ([#761]), `resource` ([#760]), `clothes` ([#763]), `building` ([#764]) (thanks [@kjonosm])
+* Add fields for `parking:both|left|right` and `parking:both|left|right:orientation` ([#744])
+* Add more options to the `parking` field: `on_kerb`, `half_on_kerb` and `shoulder` ([#672])
+* Add field for `lift_gate:type` ([#711], thanks [@arch0345])
+* Add fields `tents`, `caravans`, `static_caravans`, `picnic_table`, and `nudism` to Camp Site preset ([#749], [#750], [#750], [#751], [#752], thanks [@kjonosm])
+* Use Rötgen icons for fields `crane:type`, `leaf_type`, `design` (of power poles and towers), `traffic_calming`, `volcano:type`, `volcano:status` and `tower:construction`
+* Specify icons for crossing markings
+* Add regional and universal field for `ref:linz:place_id` ([#781], thanks [@k-yle])
+* Add `message` field for advertising presets ([#785], thanks [@k-yle])
+#### Deprecated Tags
+* Upgrade most values of the ~~`street_cabinet`~~ subtag to use `utility` instead ([#777], thanks [@kjonosm]) and hide `street_cabinet` field
+* Deprecate value `none` of Cycleway tags ([#796], thanks [@Dimitar5555])
+#### Documentation and Other Changes
+* Add Railway Route to Routes category ([#782], thanks [@k-yle])
+* Add a link to the page with the list of projects which use this repository to the readme ([#802])
+
+
+[#228]: https://github.com/openstreetmap/id-tagging-schema/issues/228
+[#639]: https://github.com/openstreetmap/id-tagging-schema/issues/639
+[#648]: https://github.com/openstreetmap/id-tagging-schema/pull/648
+[#670]: https://github.com/openstreetmap/id-tagging-schema/issues/670
+[#672]: https://github.com/openstreetmap/id-tagging-schema/pull/672
+[#707]: https://github.com/openstreetmap/id-tagging-schema/pull/707
+[#709]: https://github.com/openstreetmap/id-tagging-schema/pull/709
+[#711]: https://github.com/openstreetmap/id-tagging-schema/pull/711
+[#731]: https://github.com/openstreetmap/id-tagging-schema/pull/731
+[#732]: https://github.com/openstreetmap/id-tagging-schema/pull/732
+[#734]: https://github.com/openstreetmap/id-tagging-schema/pull/734
+[#735]: https://github.com/openstreetmap/id-tagging-schema/pull/735
+[#737]: https://github.com/openstreetmap/id-tagging-schema/pull/737
+[#742]: https://github.com/openstreetmap/id-tagging-schema/pull/742
+[#744]: https://github.com/openstreetmap/id-tagging-schema/pull/744
+[#747]: https://github.com/openstreetmap/id-tagging-schema/pull/747
+[#749]: https://github.com/openstreetmap/id-tagging-schema/pull/749
+[#750]: https://github.com/openstreetmap/id-tagging-schema/pull/750
+[#751]: https://github.com/openstreetmap/id-tagging-schema/pull/751
+[#752]: https://github.com/openstreetmap/id-tagging-schema/pull/752
+[#755]: https://github.com/openstreetmap/id-tagging-schema/pull/755
+[#756]: https://github.com/openstreetmap/id-tagging-schema/pull/756
+[#758]: https://github.com/openstreetmap/id-tagging-schema/pull/758
+[#760]: https://github.com/openstreetmap/id-tagging-schema/pull/760
+[#761]: https://github.com/openstreetmap/id-tagging-schema/pull/761
+[#763]: https://github.com/openstreetmap/id-tagging-schema/pull/763
+[#764]: https://github.com/openstreetmap/id-tagging-schema/pull/764
+[#766]: https://github.com/openstreetmap/id-tagging-schema/pull/766
+[#773]: https://github.com/openstreetmap/id-tagging-schema/pull/773
+[#774]: https://github.com/openstreetmap/id-tagging-schema/pull/774
+[#776]: https://github.com/openstreetmap/id-tagging-schema/pull/776
+[#777]: https://github.com/openstreetmap/id-tagging-schema/pull/777
+[#780]: https://github.com/openstreetmap/id-tagging-schema/pull/780
+[#781]: https://github.com/openstreetmap/id-tagging-schema/pull/781
+[#782]: https://github.com/openstreetmap/id-tagging-schema/pull/782
+[#783]: https://github.com/openstreetmap/id-tagging-schema/pull/783
+[#784]: https://github.com/openstreetmap/id-tagging-schema/pull/784
+[#785]: https://github.com/openstreetmap/id-tagging-schema/pull/785
+[#786]: https://github.com/openstreetmap/id-tagging-schema/pull/786
+[#787]: https://github.com/openstreetmap/id-tagging-schema/pull/787
+[#790]: https://github.com/openstreetmap/id-tagging-schema/pull/790
+[#795]: https://github.com/openstreetmap/id-tagging-schema/pull/795
+[#796]: https://github.com/openstreetmap/id-tagging-schema/pull/796
+[#802]: https://github.com/openstreetmap/id-tagging-schema/pull/802
+[@Lonerat]: https://github.com/Lonerat
+[@UKChris-osm]: https://github.com/UKChris-osm
+
+
+# 5.2.1
+
+#### Bugfixes
+* Revert restriction of Traffic Calming presets to vertices, which had unintended side effects with iD's validation mechanism ([#733])
+
+[#733]: https://github.com/openstreetmap/id-tagging-schema/issues/733
+
+
# 5.2.0
#### Bugfixes
@@ -33,8 +999,8 @@ _Breaking developer changes, which may affect downstream projects or sites that
* Add preset for residential gardens ([#714], thanks [@mikaeldui])
* Add specialized presets for common physicians ([#718], thanks [@westnordost])
#### Changed Presets
-* add seamark tags to marine fuel & sewerage presets ([#663], thanks [@k-yle])
-* add `direction` field to presets for `railway=derail` and `aeroway=holding_position` ([#665], thanks [@k-yle])
+* Add seamark tags to marine fuel & sewerage presets ([#663], thanks [@k-yle])
+* Add `direction` field to presets for `railway=derail` and `aeroway=holding_position` ([#665], thanks [@k-yle])
* Restrict (most) Traffic Calming presets to vertices
* Add oneway field to cycleway crossing presets ([#667], [#668], thanks [@kjonosm])
* Add "GNIS Feature ID" field to waterway relation preset ([#687])
@@ -73,8 +1039,8 @@ _Breaking developer changes, which may affect downstream projects or sites that
[#669]: https://github.com/openstreetmap/id-tagging-schema/pull/669
[#677]: https://github.com/openstreetmap/id-tagging-schema/issues/677
[#679]: https://github.com/openstreetmap/id-tagging-schema/pull/679
-[#686]: https://github.com/openstreetmap/id-tagging-schema/issues/686
[#684]: https://github.com/openstreetmap/id-tagging-schema/pull/684
+[#686]: https://github.com/openstreetmap/id-tagging-schema/issues/686
[#687]: https://github.com/openstreetmap/id-tagging-schema/issues/687
[#688]: https://github.com/openstreetmap/id-tagging-schema/issues/688
[#689]: https://github.com/openstreetmap/id-tagging-schema/pull/689
@@ -171,7 +1137,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
# 5.0.0
#### Schema Changes
-* Upgrade to the schema-build version 5 ([#598])
+* Upgrade to the schema-builder version 5 ([#598])
* :warning: Introduces a new `colour` field type
* :warning: Allows to cross-reference strings in presets and fields
#### New Presets
@@ -216,6 +1182,10 @@ _Breaking developer changes, which may affect downstream projects or sites that
* Make `recycling:*` field case sensitive
* Add strings for power generation Source and Method fields ([#624])
* Drop default value `yes` from the `dispensing` field ([#627])
+* Add field for `post_box:type` ([#804], thanks[@UKChris-osm])
+#### Regional Presets and Fields
+* Add regional preset for Post Boxes in the UK, adding a field for `royal_cypher` ([#804], thanks[@UKChris-osm])
+* Only show `drive_through` by default for Post Boxes which are in the US
#### Bugfixes
* Describe `tracktype=grade1` as paved only ([#583], thanks [@matkoniecz])
* Allow Water Slides to be mapped as points (and disallow them to be areas) ([#612])
@@ -266,6 +1236,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
[#630]: https://github.com/openstreetmap/id-tagging-schema/pull/630
[#631]: https://github.com/openstreetmap/id-tagging-schema/pull/631
[#632]: https://github.com/openstreetmap/id-tagging-schema/issues/632
+[#804]: https://github.com/openstreetmap/id-tagging-schema/pull/804
[iD#9305]: https://github.com/openstreetmap/iD/issues/9305
[iD#9341]: https://github.com/openstreetmap/iD/issues/9341
[@EvanCarroll]: https://github.com/EvanCarroll
@@ -273,6 +1244,7 @@ _Breaking developer changes, which may affect downstream projects or sites that
[@kolgza]: https://github.com/kolgza
[@Morion-Self]: https://github.com/Morion-Self
[@Marc-marc-marc]: https://github.com/Marc-marc-marc
+[@willemarcel]: https://github.com/willemarcel
# 3.5.1
@@ -567,6 +1539,7 @@ Thanks to all contributors: [@matkoniecz], [@Binnette], [@danieldegroot2], [@arc
[#382]: https://github.com/openstreetmap/id-tagging-schema/pull/382
[#383]: https://github.com/openstreetmap/id-tagging-schema/pull/383
[#385]: https://github.com/openstreetmap/id-tagging-schema/pull/385
+[#389]: https://github.com/openstreetmap/id-tagging-schema/issues/389
[#390]: https://github.com/openstreetmap/id-tagging-schema/issues/390
[#391]: https://github.com/openstreetmap/id-tagging-schema/pull/391
[#398]: https://github.com/openstreetmap/id-tagging-schema/issues/398
@@ -590,6 +1563,7 @@ Thanks to all contributors: [@matkoniecz], [@Binnette], [@danieldegroot2], [@arc
[#438]: https://github.com/openstreetmap/id-tagging-schema/pull/438
[#439]: https://github.com/openstreetmap/id-tagging-schema/pull/439
[#441]: https://github.com/openstreetmap/id-tagging-schema/pull/441
+[#443]: https://github.com/openstreetmap/id-tagging-schema/issues/443
[#445]: https://github.com/openstreetmap/id-tagging-schema/pull/445
[#446]: https://github.com/openstreetmap/id-tagging-schema/pull/446
[#448]: https://github.com/openstreetmap/id-tagging-schema/pull/448
@@ -614,6 +1588,7 @@ Thanks to all contributors: [@matkoniecz], [@Binnette], [@danieldegroot2], [@arc
[@zymurgic]: https://github.com/zymurgic
[@rkost]: https://github.com/rkost
[@HandyHat]: https://github.com/HandyHat
+[@Aniket]: https://github.com/Aniket
# 3.2.2
@@ -811,6 +1786,7 @@ Thanks to all contributors: [@1ec5], [@andrewharvey], [@bagage], [@Bertware], [@
[#277]: https://github.com/openstreetmap/id-tagging-schema/issues/277
[#278]: https://github.com/openstreetmap/id-tagging-schema/pull/278
[#280]: https://github.com/openstreetmap/id-tagging-schema/pull/280
+[#281]: https://github.com/openstreetmap/id-tagging-schema/issues/281
[#282]: https://github.com/openstreetmap/id-tagging-schema/pull/282
[#286]: https://github.com/openstreetmap/id-tagging-schema/issues/286
[#287]: https://github.com/openstreetmap/id-tagging-schema/issues/287
@@ -906,3 +1882,4 @@ Thanks to all contributors: [@1ec5], [@andrewharvey], [@bagage], [@Bertware], [@
# ≤ 3.0.0
#### For versions ≤ 3.0.0 please visit the [iD changelog](https://github.com/openstreetmap/iD/blob/develop/CHANGELOG.md) :rocket: Presets sections
+ow
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
new file mode 100644
index 00000000..457189bb
--- /dev/null
+++ b/CONTRIBUTING.md
@@ -0,0 +1,93 @@
+# Contributing to the tagging schema
+
+## Submitting Issues
+
+Don't hesitate to submit feedback about issues or how the tagging schema could be improved, but please [search existing issues](https://github.com/search?l=&q=repo%3Aopenstreetmap%2Fid-tagging-schema&type=Issues) before [opening a new one](https://github.com/openstreetmap/id-tagging-schema/issues/new/choose).
+
+iD's [code of conduct](https://github.com/openstreetmap/iD/blob/release/CODE_OF_CONDUCT.md) and [privacy policy](https://github.com/openstreetmap/iD/blob/release/PRIVACY.md) also apply to this project.
+
+
+## General Guidelines
+
+Read the [GUIDELINES](./GUIDELINES.md) to help you understand what fields and tags should be added to the tagging schema.
+
+## Translating
+
+* **English (US) translations** are managed inside the JSON files of this repository. The Transifex translations for "English (en)" are only a reference for other languages but not exported.
+
+ Example: To extend the list of English terms for `shrub`, [modify the `terms`-key in the JSON file](https://github.com/openstreetmap/id-tagging-schema/blob/v3.1.0/data/presets/natural/shrub.json#L16-L19)).
+
+* **All languages** other than English (US) are managed [in the Transifex Project of the iD Editor](https://app.transifex.com/openstreetmap/id-editor/) inside the translation resource _'preset'_.
+
+ To to find and update a translation, you can …
+ 1. [open the translation page](https://app.transifex.com/openstreetmap/id-editor/translate/)
+ 2. select a language at the top
+ 3. select _'presets'_
+ 4. search for `key:living_street` or `translation_text:'Living Street'` or `key:highway/living_street`
+
+* **Request access:** To contribute to a language, [select a language](https://app.transifex.com/openstreetmap/id-editor/languages/) and use 'Join team' to request access. The administrators will approve requests routinely, only rejecting requests for overly specific locales.
+
+* **Base language:** The JSON files in this repository require an "English (US)" translation. This includes data, that use the `locationSet` property to reduce the scope of the data to specific countries since users might still select English as an editor language in those countries. Some presets use a (untranslatable) proper name. See also "Developer Notes".
+
+* **Transifex "Developer Notes":** Use the "Developer Notes" section in Transifex to learn more about the context of a given translation string. For example, [looking at `presets.fields.direction_cardinal-US-CA-NZ.label` in Transiflex](https://app.transifex.com/openstreetmap/id-editor/translate/#en_GB/presets/406422633?q=key%3Apresets.fields.direction_cardinal-US-CA-NZ.label) will give you the "Developer Notes: `direction=* | Local preset for countries "CA", "NZ", "US"`" which helps you understand that, (a) this label describes the key `direction` and (b) it is only visible in three countries, so other languages usually don't need to translate it (leave it blank or add the English translation instead).
+
+* **Release:** All translation changes are released whenever [a new id-tagging-schema release is created](https://github.com/openstreetmap/id-tagging-schema/releases). They will become visible inside iD and other editors once those editors a short while after that (which can vary as different editors have different release schedules and in some cases, e.g. in iD, translations might even be fetched dynamically from the most recent id-tagging-schema release).
+
+
+## Making Changes
+
+You are highly welcome to help this project by submitting pull requests!
+
+### Overview and General Structure
+
+Detailed documentation for the data format used in this repository is located with the [schema-builder](https://github.com/ideditor/schema-builder) package, which is the technical basis of this project.
+
+To make a change, update the corresponding file within the `data` folder: The `presets` contain a representation of OpenStreetMap's [map features](https://wiki.openstreetmap.org/wiki/Map_Features), and the `fields` are their properties. In addition, the tagging schema contains a few `categories` of presets and a list of `deprecated` and `discardable` tags.
+
+### Icons
+
+Icons from different sources (_icon sets_) can be used in the tagging schema. Head over to the [dedicated page](https://github.com/ideditor/schema-builder/blob/main/ICONS.md#icons) about how to use them.
+
+### Info-`i`
+
+
+
+iD and other tools provide users with a way to learn more about the main tag of a preset. It is important to provide good information in this information panel. Here are a few notes on how to do this:
+- Does your tag have a OSM Wiki data item? Click the small pencil icon next to the text to open the data item on the OSM Wiki. Improve this wording if needed. If the data item is missing, [learn more about how to add it in "Current methods for creating new items"](https://wiki.openstreetmap.org/wiki/Data_items#Item_creation_process).
+- Does your tag have a Wiki page with a good image?
+- Your preset might need [a `reference` property](https://github.com/ideditor/schema-builder?tab=readme-ov-file#reference) to force the system to use a specific tag for the information section.
+
+### Integration Testing With iD
+
+There are two ways to inspect how your changes to the schema affect the user experience in the iD editor:
+
+**a. Use the PR preview:**
+
+After you submit your PR, the system will create a preview and comment on your PR:
+
+> 🍱 Your pull request preview is ready.
+
+If this is your first contribution to this project, the preview will not happen right away but requires a click from one of the project members. We will do this ASAP.
+
+**b. Use a local instance of the iD editor:**
+
+If you have [set up](https://github.com/openstreetmap/iD#installation) your own local instance of the iD editor, you can [configure](https://github.com/openstreetmap/iD/blob/develop/API.md#environment-variables) it to use your local set of tagging presets by setting the `ID_PRESETS_CDN_URL` environment variable.
+
+1. First build and serve the schema: `npm run build && npm run dist && npx serve -Cp 1234`. Remember that you need to run this command again should you make further changes.
+2. Now, in your iD repository, start an iD instance using your custom schema:
+ - on macOS & Linux: `npx cross-env ID_PRESETS_CDN_URL=http://localhost:1234/ npm start`
+ - on Windows: `set ID_PRESETS_CDN_URL=http://localhost:1234/ && npm start`
+
+### Installation and Testing
+
+The following `npm` commands are used in this repository:
+
+* `npm install` – installs or updates the repository's required dependencies
+* `npm test` – validates the source data
+* `npm run build` – validates the source data and builds some files which are used during development (e.g. strings to be supplied to the translation platform)
+* `npm run dist` – validates the source data and compiles output files for iD
+* `npm run translations` – fetches translations from transifex and compiles the translations files for iD
+
+### Code Style
+
+The input files are JSON files which use 4-space indentation. You can use the `npm run lint` command to check whether your files match the expected code style and run `npm run lint:fix` to reformat them if they don't do so.
diff --git a/GOVERNANCE.md b/GOVERNANCE.md
new file mode 100644
index 00000000..cfc329a3
--- /dev/null
+++ b/GOVERNANCE.md
@@ -0,0 +1,97 @@
+# Roles, People, and Processes for Maintaining the Tagging Schema
+
+This document outlines how this project is maintained.
+
+## Roles & People
+
+### Maintainer Role
+
+[Martin](https://github.com/tyrasd) maintains this project as part of his work on the iD Editor project.
+
+The maintainer role includes:
+- Having the final say in decisions for the tagging schema.
+- Creating releases.
+- Updating dependencies.
+- Assign roles.
+
+and all the following roles.
+
+Github shows a `(Member)` label next to users with full access to this repository and the organisation.
+
+### Co-Maintainer Role
+
+- [Kyle](https://github.com/k-yle) contributes to this project as a volunteer.
+- [Tobias](https://github.com/tordans) contributes to this project as a volunteer.
+
+The co-maintainer role includes:
+- Reviewing PRs.
+- Merging "clear-cut" PRs by others.
+
+and all the following roles.
+
+Github shows a `(Collaborator)` label next to users with any permission on this repository.
+
+### Triage Role
+
+* [Mateusz](https://github.com/matkoniecz) contributes to this project as a volunteer.
+
+The triage role includes:
+- Proactively helping to clarify issues and PRs.
+- Closing issues as duplicates or not planned.
+- Closing abandoned, duplicated or invalid PRs.
+- Assigning labels to issues and PRs.
+
+Github shows a `(Collaborator)` label next to users with any permission on this repository.
+
+### Contributors
+
+To all contributors, thank you so much for your support! ❤ Especially for:
+- Suggesting new presets and fields or updates to the repository.
+- Researching and helping with issues and PRs.
+- Translating the tagging schema.
+
+Code contributions: [Check this complete list of contributors on GitHub](https://github.com/openstreetmap/id-tagging-schema/graphs/contributors).
+
+Github shows a `(Contributor)` label next to users that previously committed to this repository.
+
+## Processes
+
+### PR Reviews and Merges
+
+- PRs need approval from two people: the author and one or more (co-)maintainers before being merged.
+- Non-"clear-cut" changes need to be merged by the maintainer.
+- We might revert merges later if necessary.
+
+**What is a clear-cut change?**
+
+- No or minimal controversial discussion on the change.
+- Coding and contribution [guidelines](./GUIDELINES.md) are met.
+
+**How to merge…**
+
+- Usually squash merge PRs to make the history simpler
+- Give the merge a meaningful description of the change
+- Add labels to the PR before merging which get picked up by our [release drafter](https://github.com/openstreetmap/id-tagging-schema/blob/main/.github/release-drafter.yml)
+
+**How to close…**
+
+- Provide context and an explanation for the chosen action
+- Consider reaching out to the author before taking action
+- We're happy to reopen PRs if opinions change.
+
+### Releases
+
+There is no set release schedule at the moment, but releases usually occur every other month. After this project is released, the projects that rely on the data need to update and release as well.
+
+### Assigning roles
+
+- The maintainer of the iD editor has traditionally and continues to maintain this project.
+- Co-maintainer and triage roles are assigned by the current maintainer of the repository.
+
+## Previous Maintainers
+
+Many thanks to all previous maintainers! ❤
+
+- [Milos](https://github.com/mbrzakovic)
+- [Quincy](https://github.com/quincylvania)
+- [Bryan](https://github.com/bhousel)
diff --git a/GUIDELINES.md b/GUIDELINES.md
new file mode 100644
index 00000000..1d652739
--- /dev/null
+++ b/GUIDELINES.md
@@ -0,0 +1,77 @@
+# Guidelines for the Tagging Schema
+
+Do you have an idea for a new preset or field? Read this!
+
+## 1. Evaluate Your Idea for the Tagging Schema Project
+
+Adding a preset or field to the tagging schema is a significant responsibility.
+We must ensure that both new and experienced users can understand the presets and fields,
+thereby contributing high-quality data to OpenStreetMap (OSM).
+
+Consider the following:
+
+### General Guidelines
+
+- 📋 **Established Documentation**: The tagging schema will only consider tags that are well-documented on the OSM wiki. The documentation should be clear and unambiguous.
+- 🏷️ **Established Tags Only**: No new or unestablished tags should be part of presets. Establishing tags must remain a community-driven process, not dictated by software implementation.
+- ✅ **Proposal or Accepted**: A tag is considered established when it has completed the [proposal process](https://wiki.openstreetmap.org/wiki/Proposal_process) or is otherwise accepted by the OSM community. Factors include the tag's duration and frequency of use, whether its usage is increasing over time and its usage by mainstream data consumers.
+- 🤷 **Notable Purpose**: Especially for less established tags, presets and fields should have a practical application. OSM allows for the collection of a wide variety of data, some of it for niche purposes. For example, the brightness of street lamps might be documented, but it doesn't necessarily warrant a preset or field.
+- 🕓 **Effort vs. Impact**: Consider whether the effort required is justified by the impact the preset or field will have. Assess how many elements this new type will apply to. This is particularly important if you do not plan to contribute the code changes yourself through a pull request (PR).
+
+### User Experience
+
+No preset or field is isolated; they are always presented alongside others in various user interfaces that utilize the tagging schema.
+
+- 🔦 **Easy to Pick**: Users must be able to understand and select the correct preset given the limited information available in the user interfaces. Good presets guide the user with clear names and helpful additional documentation `(i)`.
+- 🔎 **Easy to Search**: When searching, similar presets will appear next to each other. Consider and test typical search scenarios. You might need to adjust the names and documentation of other presets to ensure users can make the best decision.
+- 👨💻 **Users Are Not Experts**: No prior knowledge of OpenStreetMap or any other background information should be necessary.
+- 🐿️ **Easy Answer**: Users are often on the go and impatient. Fields should allow for quick, straightforward, and clear answers.
+
+### Situational Presets
+
+- 🙈 **Unsearchable Presets**: The tagging schema is not only for adding information but also for presenting existing information. Consider adding an unsearchable preset for tagging that should be highlighted with a preset on the map and with defined fields. Reasons to make a preset unsearchable include: multiple ways to tag something where one method is preferred, or other reasons to hide commonly used tags from the search and list interface to preserve a good [user experience](#user-experience).
+- 🏝️ **Local Presets and Fields**: Generally, presets and fields in OSM should be globally applicable, and efforts should be made to ensure this. However, when local tagging conventions exist or when presets only make sense for certain regions, presets and fields can be given a local filter. This increases the need for thorough testing and makes it more challenging to maintain a good [user experience](#user-experience).
+
+### Tag Updates and Additions
+
+- ➕ **Suggested Additions**: Presets can suggest additional tags. These suggestions must be clearly supported by the wiki and community consensus.
+- 🔄 **Updates**: Deprecation rules can suggest updating tags. Good documentation and consensus are needed for these deprecations.
+
+**In both cases, _indicators for consensus_ are:**
+
+- The deprecation is documented in the wiki and is either official (resulting from a proposal process) or long-standing (about a year).
+- There is a significant drop in usage compared to previous numbers, with a negative trend ([visible in the graph](https://taghistory.raifer.tech/)).
+- Usage of the deprecated tag remains stagnant for a longer period (about a year).
+
+In addition, the deprecated tag must have reasonably high usage to be considered. Low usage tags should be addressed through other cleanup methods, such as [MapRoulette](https://maproulette.org/) or similar initiatives.
+
+**Deprecations are not for cleanup:**
+
+Deprecation rules work such that the user sees a message with suggestions and can act only when editing the given element. This makes them well-suited for gradual, human-reviewed updates of taggings like crossings. However, they are not suitable for cleaning up incorrect tagging from the database, especially for low-volume changes.
+
+There are, however, alternatives to consider:
+- Your cleanup task might be eligible for an automated (bot) edit. [Please learn more on the wiki…](https://wiki.openstreetmap.org/wiki/Automated_Edits_code_of_conduct)
+- If your task is small enough, a few [editing sessions in JOSM](https://wiki.openstreetmap.org/wiki/JOSM) will often do the trick. However, mass-replacing without checking each object is still considered an automated edit, so the [guidelines apply](https://wiki.openstreetmap.org/wiki/Automated_Edits_code_of_conduct). Please consult other mappers first.
+- A good way to work down a list of tasks is to create [a MapRoulette Challenge](https://maproulette.org/).
+- Should those options not suit you, you can always suggest such changes in the [OSM community forum](https://community.openstreetmap.org/).
+
+## 2. Design the Preset
+
+The user interface must be clear, concise, and easy to use, leaving no room for misunderstandings.
+
+- Define the tags required on an object to trigger the preset.
+- Choose a name, category, and define a list of American English search terms.
+- Use Title Case for the the preset `name` and [`aliases`](https://github.com/ideditor/schema-builder?tab=readme-ov-file#aliases) as well as the field [`label`](https://github.com/ideditor/schema-builder?tab=readme-ov-file#label) property. Use lower case for the preset [`terms`](https://github.com/ideditor/schema-builder?tab=readme-ov-file#terms) (sorted A-Z) and Title Case or sentences for preset's [`strings`-`options`](https://github.com/ideditor/schema-builder?tab=readme-ov-file#strings).
+- Check the search functionality to ensure other presets do not cause confusion.
+- Select an icon or start the process to create a new one.
+- Define which fields to show (`fields`) and suggest (`moreFields`), considering the order of fields.
+- Check the [`(i)` documentation](./CONTRIBUTING.md#info-i) and add or update the OSM Wiki data item if needed to provide a helpful short text.
+- Use the PR preview to add test cases with deep links to OSM objects that demonstrate the preset in use.
+
+## 3. Implement
+
+If you are familiar with `JSON`, you can implement the preset or field yourself. First, create a ticket to introduce your tagging idea and discuss it with the community to get feedback on its feasibility and desirability. After implementation, create a pull request to get it merged.
+
+For more details on adding presets, see ["Making changes"](./CONTRIBUTING.md#making-changes).
+
+If you are not familiar with `JSON`, still create a ticket. The more you have considered and prepared from the above steps, the easier it will be for someone else to code it.
diff --git a/README.md b/README.md
index 33234e24..2eece0ce 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,21 @@
- [](https://badge.fury.io/js/%40openstreetmap%2Fid-tagging-schema)
+[](https://github.com/openstreetmap/id-tagging-schema/actions/workflows/test.yml) [](https://badge.fury.io/js/%40openstreetmap%2Fid-tagging-schema)
# iD Tagging Schema
This is the directory of OpenStreetMap tagging data used by the [iD editor](https://github.com/openstreetmap/iD).
It includes presets, fields, deprecations, and more.
+## Participate!
+
+* Read up about how you can contribute to the iD Tagging Schema on the [contributing page](CONTRIBUTING.md).
+* [Translate!](CONTRIBUTING.md#Translating)
+* See the [open issues](https://github.com/openstreetmap/id-tagging-schema/issues?state=open) in the issue tracker if you're looking for something to do.
+* Need more help? Ping user `tyr_asd` (Martin Raifer) on [OpenStreetMap Discord](https://discord.gg/openstreetmap) (`#id-and-rapid` channel) or [OpenStreetMap US Slack](https://slack.openstreetmap.us/) (`#id` channel).
+
## Background
-OpenStreetMap itself does not have a formal rigid [database schema](https://en.wikipedia.org/wiki/Database_schema),
-but relies on a [tagging](https://wiki.openstreetmap.org/wiki/Tags) [folksonomy](https://en.wikipedia.org/wiki/Folksonomy) instead.
+OpenStreetMap itself does not have a formal rigid [database schema](https://en.wikipedia.org/wiki/Database_schema), but relies on a [tagging](https://wiki.openstreetmap.org/wiki/Tags) [folksonomy](https://en.wikipedia.org/wiki/Folksonomy) instead.
+
Editing tools need to know how tags are used in order to facilitate mapping.
This Tagging Schema fills that need, but with a number of caveats:
@@ -18,18 +25,6 @@ This Tagging Schema fills that need, but with a number of caveats:
- We support tags based on practicality, usage, and community approval
- Sometimes there are reasons we can't support a tag even if it's used or approved
-## Translations
-
-* English translations for the `terms`-key should be added to the JSON data ([Example](https://github.com/openstreetmap/id-tagging-schema/blob/v3.1.0/data/presets/natural/shrub.json#L16-L19)).
-
-* Apart from that, translations are managed [in the Transifex Project of the iD Editor](https://www.transifex.com/openstreetmap/id-editor/) inside the translation resource _'preset'_.
-
- To translate, you can [open the translation page](https://www.transifex.com/openstreetmap/id-editor/translate/), select a language, select _'presets'_ and search for `key:living_street` or `translation_text:'Living Street'` to find and change translations.
-
- To contribute to a language: [Select a language](https://www.transifex.com/openstreetmap/id-editor/languages/) and use 'Join team' to request access. The administrators will approve requests routinely, only rejecting requests for overly specific locales.
-
-* All translation changes will be released whenever [a new id-tagging-schema release is created](https://github.com/openstreetmap/id-tagging-schema/releases). They will be visible inside iD and other editors once those editors update their dependencies and release a new version as well.
-
## Usage
### Java/Android
@@ -38,19 +33,17 @@ The [westnordost/osmfeatures](https://github.com/westnordost/osmfeatures) projec
a component of [StreetComplete](https://github.com/westnordost/StreetComplete),
makes it easier to use this data with Android or other Java platforms.
+### Use by Other Editors
+
+iD tagging schema is used not only by iD. Here's a [list of projects](https://github.com/openstreetmap/id-tagging-schema/wiki/Projects-that-are-using-this-tagging-schema) which use the data from the id-tagging-schema.
+
## Related Projects
* The [OpenStreetMap wiki](https://wiki.openstreetmap.org/wiki/Map_features) documents the current usage of tags, and hosts discussions about proposed new tags.
+* The [ideditor/schema-builder](https://github.com/ideditor/schema-builder) project holds the documentation for the data format used in this repository
* iD also incorporates preset data from the [name-suggestion-index](https://github.com/osmlab/name-suggestion-index).
* Other editors also include their own models of interpretations of OSM tags. See for example [Vespucci's](https://github.com/simonpoole/beautified-JOSM-preset) or [JOSM's](https://josm.openstreetmap.de/wiki/Presets) tagging presets.
## Contributing
-iD's [code of conduct](https://github.com/openstreetmap/iD/blob/release/CODE_OF_CONDUCT.md) and
-[privacy policy](https://github.com/openstreetmap/iD/blob/release/PRIVACY.md) also apply to this project.
-
-### Making Changes
-
-Documentation for the data formats is located with the [schema-builder](https://github.com/ideditor/schema-builder)
-package, which is the technical basis of this project. To make a change, update a
-file within the `data` folder and rebuild by running `npm run build` in your terminal.
+See the dedicated [CONTRIBUTING](CONTRIBUTING.md) page for information about this.
diff --git a/data/deprecated.json b/data/deprecated.json
index 08976d87..4003709a 100644
--- a/data/deprecated.json
+++ b/data/deprecated.json
@@ -59,10 +59,6 @@
"old": {"amenity": "community_center"},
"replace": {"amenity": "community_centre"}
},
- {
- "old": {"amenity": "dancing_school"},
- "replace": {"leisure": "dance", "dance:teaching": "yes" }
- },
{
"old": {"amenity": "dog_bin"},
"replace": {"amenity": "waste_basket", "waste": "dog_excrement"}
@@ -80,8 +76,8 @@
"replace": {"amenity": "charging_station"}
},
{
- "old": {"amenity": "charging_station", "car": "*"},
- "replace": {"amenity": "charging_station", "motorcar": "$1"}
+ "old": {"amenity": "charging_station", "car": "*"},
+ "replace": {"amenity": "charging_station", "motorcar": "$1"}
},
{
"old": {"amenity": "fire_hydrant"},
@@ -115,6 +111,14 @@
"old": {"amenity": "kiosk"},
"replace": {"shop": "kiosk"}
},
+ {
+ "old": {"amenity": "lifeboat_station"},
+ "replace": {"emergency": "water_rescue"}
+ },
+ {
+ "old": {"amenity": "lockers"},
+ "replace": {"amenity": "locker"}
+ },
{
"old": {"amenity": "notice_board"},
"replace": {"advertising": "board"}
@@ -275,10 +279,6 @@
"old": {"building": "comercial"},
"replace": {"building": "commercial"}
},
- {
- "old": {"building": "constraction"},
- "replace": {"building": "construction"}
- },
{
"old": {"building": "convenience"},
"replace": {"building": "retail"}
@@ -359,10 +359,6 @@
"old": {"building": "Sí"},
"replace": {"building": "yes"}
},
- {
- "old": {"building": "under constraction"},
- "replace": {"building": "construction"}
- },
{
"old": {"building": "under construction"},
"replace": {"building": "construction"}
@@ -407,10 +403,6 @@
"old": {"camp_site": "camp_pitch"},
"replace": {"tourism": "camp_pitch"}
},
- {
- "old": {"shop": "clothes", "clothes": "second_hand"},
- "replace": {"shop": "clothes", "second_hand": "yes"}
- },
{
"old": {"color": "*"},
"replace": {"colour": "$1"}
@@ -450,6 +442,18 @@
"old": {"crossing": "traffic_lights"},
"replace": {"crossing": "traffic_signals"}
},
+ {
+ "old": {"crossing": "no", "highway": "crossing"},
+ "replace": {"crossing": "no"}
+ },
+ {
+ "old": {"cuisine": "barbeque"},
+ "replace": {"cuisine": "barbecue"}
+ },
+ {
+ "old": {"cuisine": "bbq"},
+ "replace": {"cuisine": "barbecue"}
+ },
{
"old": {"cuisine": "gluten-free"},
"replace": {"diet:gluten_free": "*"}
@@ -543,9 +547,13 @@
"replace": {"direction": "W"}
},
{
- "old": {"disabled_spaces":"*"},
+ "old": {"disabled_spaces": "*"},
"replace": {"capacity:disabled": "$1"}
},
+ {
+ "old": {"door": "loadingdock"},
+ "replace": {"amenity": "loading_dock"}
+ },
{
"old": {"drinkable": "*"},
"replace": {"drinking_water": "$1"}
@@ -570,6 +578,46 @@
"old": {"embassy": "embassy"},
"replace": {"embassy": "yes"}
},
+ {
+ "old": {"emergency": "dry_riser_inlet"},
+ "replace": {"emergency": "fire_service_inlet", "fire_mains": "dry"}
+ },
+ {
+ "old": {"emergency": "sprinkler_connection"},
+ "replace": {"emergency": "fire_service_inlet", "fire_sprinkler": "yes"}
+ },
+ {
+ "old": {"emergency": "lifeguard_base"},
+ "replace": {"emergency": "lifeguard", "lifeguard": "base"}
+ },
+ {
+ "old": {"emergency": "lifeguard_platform"},
+ "replace": {"emergency": "lifeguard", "lifeguard": "tower"}
+ },
+ {
+ "old": {"emergency": "lifeguard_tower"},
+ "replace": {"emergency": "lifeguard", "lifeguard": "tower"}
+ },
+ {
+ "old": {"emergency": "water_rescue_station"},
+ "replace": {"emergency": "water_rescue"}
+ },
+ {
+ "old": {"emergency": "lifeboat_station"},
+ "replace": {"emergency": "water_rescue"}
+ },
+ {
+ "old": {"emergency": "ses_station"},
+ "replace": {"emergency": "disaster_response"}
+ },
+ {
+ "old": {"emergency": "marine_rescue"},
+ "replace": {"emergency": "water_rescue"}
+ },
+ {
+ "old": {"emergency_service": "air"},
+ "replace": {"emergency": "air_rescue_service"}
+ },
{
"old": {"entrance": "emergency_exit"},
"replace": {"entrance": "emergency"}
@@ -638,6 +686,10 @@
"old": {"footway": "both"},
"replace": {"sidewalk": "both"}
},
+ {
+ "old": {"sidewalk": "none"},
+ "replace": {"sidewalk": "no"}
+ },
{
"old": {"footway": "crossing", "highway": "cycleway"},
"replace": {"cycleway": "crossing", "highway": "cycleway"}
@@ -735,8 +787,8 @@
"replace": {"highway": "path", "foot": "no"}
},
{
- "old": {"highway": "ford"},
- "replace": {"ford": "*"}
+ "old": {"highway": "path", "ladder": "yes"},
+ "replace": {"highway": "ladder"}
},
{
"old": {"highway": "platform"},
@@ -751,8 +803,12 @@
"replace": {"highway": "road", "surface": "unpaved"}
},
{
- "old": {"historic": "archaeological_site", "site_type": "*"},
- "replace": {"historic": "archaeological_site", "archaeological_site": "$1"}
+ "old": {"historic": "archaeological_site", "site_type": "*"},
+ "replace": {"historic": "archaeological_site", "archaeological_site": "$1"}
+ },
+ {
+ "old": {"industrial": "gas"},
+ "replace": {"utility": "gas"}
},
{
"old": {"information": "citymap"},
@@ -794,11 +850,11 @@
"old": {"internet_access": "wifi"},
"replace": {"internet_access": "wlan"}
},
-{
+ {
"old": {"internet_access": "wi-fi"},
"replace": {"internet_access": "wlan"}
},
-{
+ {
"old": {"internet_access": "WLAN"},
"replace": {"internet_access": "wlan"}
},
@@ -907,12 +963,12 @@
"replace": {"natural": "water", "water": "reservoir"}
},
{
- "old": {"landuse": "reservoir", "reservoir_type": "tailings", "natural": "water", "water": "reservoir"},
- "replace": {"man_made": "tailings_pond"}
+ "old": {"landuse": "reservoir", "reservoir_type": "tailings", "natural": "water", "water": "reservoir"},
+ "replace": {"man_made": "tailings_pond"}
},
{
- "old": {"landuse": "reservoir", "reservoir_type": "tailings"},
- "replace": {"man_made": "tailings_pond"}
+ "old": {"landuse": "reservoir", "reservoir_type": "tailings"},
+ "replace": {"man_made": "tailings_pond"}
},
{
"old": {"landuse": "school"},
@@ -954,10 +1010,18 @@
"old": {"leisure": "ice_rink", "sport": "skating"},
"replace": {"leisure": "ice_rink", "sport": "ice_skating"}
},
+ {
+ "old": {"leisure": "maze"},
+ "replace": {"attraction": "maze"}
+ },
{
"old": {"leisure": "recreation_ground"},
"replace": {"landuse": "recreation_ground"}
},
+ {
+ "old": {"leisure": "swimming_pool", "swimming_pool": "hot_tub"},
+ "replace": {"leisure": "hot_tub"}
+ },
{
"old": {"leisure": "table_tennis_table"},
"replace": {"leisure": "pitch", "sport": "table_tennis"}
@@ -1066,6 +1130,14 @@
"old": {"man_made": "winery"},
"replace": {"craft": "winery"}
},
+ {
+ "old": {"map_type": "tactile_map", "information": "map"},
+ "replace": {"information": "tactile_map"}
+ },
+ {
+ "old": {"map_type": "tactile_model", "information": "map"},
+ "replace": {"information": "tactile_model"}
+ },
{
"old": {"maxage": "*"},
"replace": {"max_age": "$1"}
@@ -1103,8 +1175,8 @@
"replace": {"natural": "wetland", "wetland": "marsh"}
},
{
- "old": {"natural": "water", "water": "reservoir", "reservoir_type": "tailings"},
- "replace": {"man_made": "tailings_pond"}
+ "old": {"natural": "water", "water": "reservoir", "reservoir_type": "tailings"},
+ "replace": {"man_made": "tailings_pond"}
},
{
"old": {"natural": "waterfall"},
@@ -1185,6 +1257,110 @@
"old": {"parking": "street"},
"replace": {"parking": "lane"}
},
+ {
+ "old": {"parking:lane:both": "no"},
+ "replace": {"parking:both": "no"}
+ },
+ {
+ "old": {"parking:lane:both": "no_parking"},
+ "replace": {"parking:both": "no", "parking:both:restriction": "no_parking"}
+ },
+ {
+ "old": {"parking:lane:both": "no_stopping"},
+ "replace": {"parking:both": "no", "parking:both:restriction": "no_stopping"}
+ },
+ {
+ "old": {"parking:lane:both": "fire_lane"},
+ "replace": {"parking:both": "no", "parking:both:restriction": "no_stopping", "parking:both:restriction:reason": "fire_lane"}
+ },
+ {
+ "old": {"parking:lane:both": "separate"},
+ "replace": {"parking:both": "separate"}
+ },
+ {
+ "old": {"parking:lane:both": "diagonal"},
+ "replace": {"parking:both": "yes", "parking:both:orientation": "diagonal"}
+ },
+ {
+ "old": {"parking:lane:both": "parallel"},
+ "replace": {"parking:both": "yes", "parking:both:orientation": "parallel"}
+ },
+ {
+ "old": {"parking:lane:both": "perpendicular"},
+ "replace": {"parking:both": "yes", "parking:both:orientation": "perpendicular"}
+ },
+ {
+ "old": {"parking:lane:both:parallel": "on_street"},
+ "replace": {"parking:both": "lane"}
+ },
+ {
+ "old": {"parking:lane:left": "no"},
+ "replace": {"parking:left": "no"}
+ },
+ {
+ "old": {"parking:lane:left": "no_parking"},
+ "replace": {"parking:left": "no", "parking:left:restriction": "no_parking"}
+ },
+ {
+ "old": {"parking:lane:left": "no_stopping"},
+ "replace": {"parking:left": "no", "parking:left:restriction": "no_stopping"}
+ },
+ {
+ "old": {"parking:lane:left": "separate"},
+ "replace": {"parking:left": "separate"}
+ },
+ {
+ "old": {"parking:lane:left": "diagonal"},
+ "replace": {"parking:left": "yes", "parking:left:orientation": "diagonal"}
+ },
+ {
+ "old": {"parking:lane:left": "parallel"},
+ "replace": {"parking:left": "yes", "parking:left:orientation": "parallel"}
+ },
+ {
+ "old": {"parking:lane:left": "perpendicular"},
+ "replace": {"parking:left": "yes", "parking:left:orientation": "perpendicular"}
+ },
+ {
+ "old": {"parking:lane:right": "no"},
+ "replace": {"parking:right": "no"}
+ },
+ {
+ "old": {"parking:lane:right": "no_parking"},
+ "replace": {"parking:right": "no", "parking:right:restriction": "no_parking"}
+ },
+ {
+ "old": {"parking:lane:right": "no_stopping"},
+ "replace": {"parking:right": "no", "parking:right:restriction": "no_stopping"}
+ },
+ {
+ "old": {"parking:lane:right": "separate"},
+ "replace": {"parking:right": "separate"}
+ },
+ {
+ "old": {"parking:lane:right": "diagonal"},
+ "replace": {"parking:right": "yes", "parking:right:orientation": "diagonal"}
+ },
+ {
+ "old": {"parking:lane:right": "parallel"},
+ "replace": {"parking:right": "yes", "parking:right:orientation": "parallel"}
+ },
+ {
+ "old": {"parking:lane:right": "perpendicular"},
+ "replace": {"parking:right": "yes", "parking:right:orientation": "perpendicular"}
+ },
+ {
+ "old": {"parking:lane:right:parallel": "on_street"},
+ "replace": {"parking:right": "lane"}
+ },
+ {
+ "old": {"parking:orientation": "*"},
+ "replace": {"orientation": "$1"}
+ },
+ {
+ "old": {"orientation": "orthogonal"},
+ "replace": {"orientation": "perpendicular"}
+ },
{
"old": {"parking:orientation": "orthogonal"},
"replace": {"parking:orientation": "perpendicular"}
@@ -1193,6 +1369,9 @@
"old": {"place_name": "*"},
"replace": {"name": "$1"}
},
+ {
+ "old": {"playground:theme": "playground"}
+ },
{
"old": {"pole": "transition"},
"replace": {"location:transition": "yes"}
@@ -1373,6 +1552,10 @@
"old": {"shop": "cafe"},
"replace": {"amenity": "cafe"}
},
+ {
+ "old": {"shop": "clothes", "clothes": "second_hand"},
+ "replace": {"shop": "clothes", "second_hand": "yes"}
+ },
{
"old": {"shop": "consulting"},
"replace": {"office": "consulting"}
@@ -1439,16 +1622,12 @@
},
{
"old": {"shop": "organic"},
- "replace": {"shop": "supermarket", "organic": "only"}
+ "replace": {"shop": "yes", "organic": "only"}
},
{
"old": {"shop": "perfume"},
"replace": {"shop": "perfumery"}
},
- {
- "old": {"shop": "photo_studio"},
- "replace": {"craft": "photographer"}
- },
{
"old": {"shop": "real_estate"},
"replace": {"office": "estate_agent"}
@@ -1549,6 +1728,38 @@
"old": {"stream": "intermittent", "waterway": "stream"},
"replace": {"intermittent": "yes", "waterway": "stream"}
},
+ {
+ "old": {"street_cabinet": "broadband"},
+ "replace": {"utility": "telecom"}
+ },
+ {
+ "old": {"street_cabinet": "cable_tv"},
+ "replace": {"utility": "television"}
+ },
+ {
+ "old": {"street_cabinet": "communications"},
+ "replace": {"utility": "telecom"}
+ },
+ {
+ "old": {"street_cabinet": "gas"},
+ "replace": {"utility": "gas"}
+ },
+ {
+ "old": {"street_cabinet": "power"},
+ "replace": {"utility": "power"}
+ },
+ {
+ "old": {"street_cabinet": "street_lighting"},
+ "replace": {"utility": "street_lighting"}
+ },
+ {
+ "old": {"street_cabinet": "telecom"},
+ "replace": {"utility": "telecom"}
+ },
+ {
+ "old": {"survey_date": "*"},
+ "replace": {"survey:date": "$1"}
+ },
{
"old": {"sustenance": "bar"},
"replace": {"amenity": "bar"}
@@ -1605,6 +1816,14 @@
"old": {"tourism": "bed_and_breakfast"},
"replace": {"tourism": "guest_house", "guest_house": "bed_and_breakfast"}
},
+ {
+ "old": {"tourism": "picnic_table"},
+ "replace": {"leisure": "picnic_table"}
+ },
+ {
+ "old": {"tourism": "resort"},
+ "replace": {"leisure": "resort"}
+ },
{
"old": {"tower:type": "power"},
"replace": {"power": "tower"}
@@ -1657,6 +1876,10 @@
"old": {"transformer": "traction"},
"replace": {"transformer": "main"}
},
+ {
+ "old": {"traffic_calming": "island", "area": "yes"},
+ "replace": {"area:highway": "traffic_island"}
+ },
{
"old": {"tunnel": "1"},
"replace": {"tunnel": "yes"}
@@ -1750,20 +1973,20 @@
"replace": {"volcano:status": "extinct"}
},
{
- "old": {"voltage-high": "*", "transformer":"generator"},
- "replace": {"voltage:secondary":"$1", "transformer":"generator"}
+ "old": {"voltage-high": "*", "transformer": "generator"},
+ "replace": {"voltage:secondary": "$1", "transformer": "generator"}
},
{
- "old": {"voltage-low": "*", "transformer":"generator"},
- "replace": {"voltage:primary":"$1", "transformer":"generator"}
+ "old": {"voltage-low": "*", "transformer": "generator"},
+ "replace": {"voltage:primary": "$1", "transformer": "generator"}
},
{
"old": {"voltage-high": "*"},
- "replace": {"voltage:primary":"$1"}
+ "replace": {"voltage:primary": "$1"}
},
{
"old": {"voltage-low": "*"},
- "replace": {"voltage:secondary":"$1"}
+ "replace": {"voltage:secondary": "$1"}
},
{
"old": {"wall_type": "noise_barrier"},
@@ -1828,5 +2051,65 @@
{
"old": {"wood": "mixed"},
"replace": {"leaf_cycle": "mixed", "leaf_type": "mixed"}
+ },
+ {
+ "old": {"cycleway": "none"},
+ "replace": {"cycleway": "no"}
+ },
+ {
+ "old": {"cycleway:left": "none"},
+ "replace": {"cycleway:left": "no"}
+ },
+ {
+ "old": {"cycleway:right": "none"},
+ "replace": {"cycleway:right": "no"}
+ },
+ {
+ "old": {"cycleway:both": "none"},
+ "replace": {"cycleway:both": "no"}
+ },
+ {
+ "old": {"communication": "pole"},
+ "replace": {"man_made": "utility_pole", "utility": "telecom"}
+ },
+ {
+ "old": {"telephone": "pole"},
+ "replace": {"man_made": "utility_pole", "utility": "telecom"}
+ },
+ {
+ "old": {"telecom": "pole"},
+ "replace": {"man_made": "utility_pole", "utility": "telecom"}
+ },
+ {
+ "old": {"pstn": "pole"},
+ "replace": {"man_made": "utility_pole", "utility": "telecom"}
+ },
+ {
+ "old": {"memorial:type": "stolperstein"},
+ "replace": {"memorial": "stolperstein"}
+ },
+ {
+ "old": {"memorial:text": "*"},
+ "replace": {"inscription": "$1"}
+ },
+ {
+ "old": {"industrial": "brickworks"},
+ "replace": {"industrial": "brickyard"}
+ },
+ {
+ "old": {"cycleway": "opposite"},
+ "replace": {"oneway:bicycle": "no", "cycleway:both": "no"}
+ },
+ {
+ "old": {"cycleway:left": "opposite"},
+ "replace": {"oneway:bicycle": "no", "cycleway:left": "no"}
+ },
+ {
+ "old": {"man_made": "torii"},
+ "replace": {"man_made": "ceremonial_gate", "ceremonial_gate": "torii"}
+ },
+ {
+ "old": {"man_made": "paifang"},
+ "replace": {"man_made": "ceremonial_gate", "ceremonial_gate": "paifang"}
}
]
diff --git a/data/discarded.json b/data/discarded.json
index 76a364c5..21b22b4b 100644
--- a/data/discarded.json
+++ b/data/discarded.json
@@ -1,6 +1,5 @@
{
"created_by": true,
- "converted_by": true,
"odbl": true,
"odbl:note": true,
@@ -53,5 +52,17 @@
"yh:TOTYUMONO": true,
"yh:TYPE": true,
"yh:WIDTH": true,
- "yh:WIDTH_RANK": true
+ "yh:WIDTH_RANK": true,
+
+ "LINZ2OSM:dataset": true,
+ "LINZ2OSM:layer": true,
+ "LINZ2OSM:source_version": true,
+ "LINZ:dataset": true,
+ "LINZ:layer": true,
+ "LINZ:source_version": true,
+ "linz2osm:objectid": true,
+
+ "fid": true,
+ "import_uuid": true,
+ "gnis:import_uuid": true
}
diff --git a/data/fields/address.json b/data/fields/address.json
index bec5e811..22210949 100644
--- a/data/fields/address.json
+++ b/data/fields/address.json
@@ -1,12 +1,13 @@
{
"type": "address",
"key": "addr",
+ "reference": {
+ "key": "addr:*"
+ },
"keys": [
"addr:block_number",
"addr:city",
- "addr:block_number",
"addr:conscriptionnumber",
- "addr:county",
"addr:country",
"addr:county",
"addr:district",
@@ -23,6 +24,7 @@
"addr:street",
"addr:subdistrict",
"addr:suburb",
+ "addr:town",
"addr:unit"
],
"label": "Address",
@@ -47,20 +49,21 @@
"housenumber": "123",
"housenumber!jp": "Building No./Lot No.",
"neighbourhood": "Neighbourhood",
- "neighbourhood!jp": "Chōme/Aza/Koaza",
+ "neighbourhood!jp": "Machi/Chōme/Aza/Koaza",
"place": "Place",
"postcode": "Postcode",
"province": "Province",
"province!cn": "Province/Municipality/AR/SAR",
"province!jp": "Prefecture",
"quarter": "Quarter",
- "quarter!jp": "Ōaza/Machi",
+ "quarter!jp": "Ōaza",
"state": "State",
"street": "Street",
"subdistrict": "Subdistrict",
"subdistrict!vn": "Ward/Commune/Townlet",
"suburb": "Suburb",
- "suburb!jp": "Ward",
+ "suburb!jp": "Ward (政令市)",
+ "town": "Town",
"unit": "Unit"
}
},
diff --git a/data/fields/advertising.json b/data/fields/advertising.json
new file mode 100644
index 00000000..8f0cf729
--- /dev/null
+++ b/data/fields/advertising.json
@@ -0,0 +1,5 @@
+{
+ "key": "advertising",
+ "type": "typeCombo",
+ "label": "Type"
+}
diff --git a/data/fields/aircraft/type.json b/data/fields/aircraft/type.json
new file mode 100644
index 00000000..e5441ede
--- /dev/null
+++ b/data/fields/aircraft/type.json
@@ -0,0 +1,16 @@
+{
+ "key": "aircraft:type",
+ "type": "semiCombo",
+ "label": "Type",
+ "strings": {
+ "options": {
+ "military": "Military",
+ "helicopter": "Helicopter",
+ "airliner": "Airliner",
+ "jet": "Jet",
+ "fixed_wing": "Fixed Wing",
+ "cargo": "Cargo",
+ "glider": "Glider"
+ }
+ }
+}
diff --git a/data/fields/alt_name.json b/data/fields/alt_name.json
new file mode 100644
index 00000000..78b77b24
--- /dev/null
+++ b/data/fields/alt_name.json
@@ -0,0 +1,16 @@
+{
+ "key": "alt_name",
+ "type": "localized",
+ "label": "Alternative Name",
+ "universal": true,
+ "terms": [
+ "aka",
+ "alias",
+ "also known as",
+ "nonstandard name",
+ "secondary name"
+ ],
+ "prerequisiteTag": {
+ "key": "name"
+ }
+}
diff --git a/data/fields/archaeological_site.json b/data/fields/archaeological_site.json
index 22b12999..f2b301c4 100644
--- a/data/fields/archaeological_site.json
+++ b/data/fields/archaeological_site.json
@@ -1,5 +1,22 @@
{
"key": "archaeological_site",
"type": "combo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "baths": "Baths",
+ "city": "Historic City",
+ "crannog": "Crannog",
+ "enclosure": "Enclosure",
+ "fortification": "Fortification",
+ "hut_circle": "Hut Circle",
+ "megalith": "Megalith",
+ "necropolis": "Necropolis",
+ "petroglyph": "Rock Carving",
+ "roman_circus": "Roman Circus",
+ "roman_villa": "Roman Villa",
+ "settlement": "Historic Settlement",
+ "tumulus": "Tumulus"
+ }
+ }
}
diff --git a/data/fields/armrest.json b/data/fields/armrest.json
new file mode 100644
index 00000000..aa2fbe3a
--- /dev/null
+++ b/data/fields/armrest.json
@@ -0,0 +1,12 @@
+{
+ "key": "armrest",
+ "type": "check",
+ "label": "Armrests",
+ "strings": {
+ "options": {
+ "undefined": "Unknown",
+ "yes": "One or more armrests",
+ "no": "No armrests"
+ }
+ }
+}
diff --git a/data/fields/artwork_type.json b/data/fields/artwork_type.json
index 501695e9..2c758363 100644
--- a/data/fields/artwork_type.json
+++ b/data/fields/artwork_type.json
@@ -12,7 +12,9 @@
"bust": "Bust",
"painting": "Painting",
"mosaic": "Mosaic",
- "relief": "Relief"
+ "relief": "Relief",
+ "stone": "Artistically Worked Stone",
+ "tilework": "Tile Work"
}
}
}
diff --git a/data/fields/athletics_pitch.json b/data/fields/athletics_pitch.json
new file mode 100644
index 00000000..96d23e41
--- /dev/null
+++ b/data/fields/athletics_pitch.json
@@ -0,0 +1,17 @@
+{
+ "key": "athletics",
+ "type": "semiCombo",
+ "label": "Event",
+ "strings": {
+ "options": {
+ "discus_throw": "Discus",
+ "hammer_throw": "Hammer Throw",
+ "high_jump": "High Jump",
+ "javelin_throw": "Javelin",
+ "long_jump": "Long Jump",
+ "pole_vault": "Pole Vault",
+ "shot_put": "Shot Put",
+ "triple_jump": "Triple Jump"
+ }
+ }
+}
diff --git a/data/fields/athletics_track.json b/data/fields/athletics_track.json
new file mode 100644
index 00000000..35f48651
--- /dev/null
+++ b/data/fields/athletics_track.json
@@ -0,0 +1,16 @@
+{
+ "key": "athletics",
+ "type": "semiCombo",
+ "label": "Event",
+ "strings": {
+ "options": {
+ "javelin_throw": "Javelin",
+ "long_jump": "Long Jump",
+ "pole_vault": "Pole Vault",
+ "running": "Running",
+ "sprint": "Sprinting",
+ "steeplechase": "Steeplechase",
+ "triple_jump": "Triple Jump"
+ }
+ }
+}
diff --git a/data/fields/attraction.json b/data/fields/attraction.json
index 5d95269a..83d224fc 100644
--- a/data/fields/attraction.json
+++ b/data/fields/attraction.json
@@ -1,5 +1,28 @@
{
"key": "attraction",
"type": "typeCombo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "animal": "Animal Enclosure",
+ "water_slide": "Water Slide",
+ "amusement_ride": "Amusement Ride",
+ "roller_coaster": "Roller Coaster",
+ "carousel": "Carousel",
+ "maze": "Maze",
+ "summer_toboggan": "Summer Toboggan",
+ "big_wheel": "Ferris Wheel",
+ "train": "Tourist Train",
+ "bumper_car": "Bumper Cars",
+ "bungee_jumping": "Bungee Jumping",
+ "dark_ride": "Dark Ride",
+ "drop_tower": "Drop Tower Ride",
+ "kiddie_ride": "Kiddie Ride",
+ "log_flume": "Log Flume",
+ "pirate_ship": "Pirate Ship Ride",
+ "river_rafting": "River Rapids Ride",
+ "swing_carousel": "Swing Carousel",
+ "alpine_coaster": "Alpine Coaster"
+ }
+ }
}
diff --git a/data/fields/barrier.json b/data/fields/barrier.json
index df24f768..21d95350 100644
--- a/data/fields/barrier.json
+++ b/data/fields/barrier.json
@@ -1,5 +1,32 @@
{
"key": "barrier",
"type": "typeCombo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "fence": "Fence",
+ "gate": "Gate",
+ "wall": "Wall",
+ "hedge": "Hedge",
+ "kerb": "Curb",
+ "bollard": "Bollard",
+ "lift_gate": "Boom Gate",
+ "retaining_wall": "Retaining Wall",
+ "block": "Large Block",
+ "guard_rail": "Guard Rail",
+ "cycle_barrier": "Cycle Barrier",
+ "stile": "Stile",
+ "entrance": "Entrance",
+ "swing_gate": "Swing Gate",
+ "cattle_grid": "Cattle Grid",
+ "ditch": "Ditch",
+ "toll_booth": "Toll Booth",
+ "city_wall": "City Wall",
+ "kissing_gate": "Kissing Gate",
+ "chain": "Chain",
+ "jersey_barrier": "Jersey Barrier",
+ "height_restrictor": "Height Restrictor",
+ "turnstile": "Turnstile"
+ }
+ }
}
diff --git a/data/fields/bath/sand_bath-JP.json b/data/fields/bath/sand_bath-JP.json
new file mode 100644
index 00000000..68a7c56e
--- /dev/null
+++ b/data/fields/bath/sand_bath-JP.json
@@ -0,0 +1,10 @@
+{
+ "key": "bath:sand_bath",
+ "label": "Sand Bath",
+ "type": "check",
+ "locationSet": {
+ "include": [
+ "JP"
+ ]
+ }
+}
diff --git a/data/fields/bath/sand_bath.json b/data/fields/bath/sand_bath.json
deleted file mode 100644
index 2207827f..00000000
--- a/data/fields/bath/sand_bath.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
- "key": "bath:sand_bath",
- "label": "Sand Bath",
- "type": "check"
-}
diff --git a/data/fields/bath/type.json b/data/fields/bath/type.json
index 0161a26c..141f4762 100644
--- a/data/fields/bath/type.json
+++ b/data/fields/bath/type.json
@@ -1,5 +1,14 @@
{
"key": "bath:type",
"type": "combo",
- "label": "Specialty"
+ "label": "Specialty",
+ "strings": {
+ "options": {
+ "hammam": "Hammam",
+ "hot_spring": "Hot Spring",
+ "lake": "Lake",
+ "onsen": "Onsen",
+ "thermal": "Thermal Bath"
+ }
+ }
}
diff --git a/data/fields/bicycle_road.json b/data/fields/bicycle_road.json
new file mode 100644
index 00000000..da52b8f8
--- /dev/null
+++ b/data/fields/bicycle_road.json
@@ -0,0 +1,26 @@
+{
+ "key": "bicycle_road",
+ "type": "defaultCheck",
+ "label": "Cycle Street",
+ "terms": [
+ "bicycle boulevard",
+ "bicycle road",
+ "cyclestreet",
+ "neighborhood bikeway",
+ "neighborhood byway",
+ "neighborhood greenway",
+ "neighborway"
+ ],
+ "locationSet": {
+ "exclude": [
+ "BE",
+ "NL"
+ ]
+ },
+ "strings": {
+ "options": {
+ "undefined": "No",
+ "yes": "Yes"
+ }
+ }
+}
diff --git a/data/fields/books.json b/data/fields/books.json
new file mode 100644
index 00000000..d9d4b851
--- /dev/null
+++ b/data/fields/books.json
@@ -0,0 +1,5 @@
+{
+ "key": "books",
+ "type": "semiCombo",
+ "label": "Type of Books"
+}
diff --git a/data/fields/brewery.json b/data/fields/brewery.json
index dc7abdb7..2504fb67 100644
--- a/data/fields/brewery.json
+++ b/data/fields/brewery.json
@@ -1,8 +1,13 @@
{
"key": "brewery",
"type": "semiCombo",
- "label": "Draft Beers",
+ "label": "Sold Beer brands",
"terms": [
- "on tap"
+ "beer brand",
+ "beer dispensing",
+ "bottled beer",
+ "draft beer",
+ "on tap",
+ "tap beer"
]
}
diff --git a/data/fields/bridge.json b/data/fields/bridge.json
index d15fa0af..1f29c325 100644
--- a/data/fields/bridge.json
+++ b/data/fields/bridge.json
@@ -3,5 +3,6 @@
"type": "typeCombo",
"label": "Type",
"usage": "group",
- "placeholder": "Default"
+ "placeholder": "Default",
+ "stringsCrossReference": "{bridge_combo}"
}
diff --git a/data/fields/bridge/ref.json b/data/fields/bridge/ref.json
new file mode 100644
index 00000000..6eaf742f
--- /dev/null
+++ b/data/fields/bridge/ref.json
@@ -0,0 +1,12 @@
+{
+ "key": "bridge:ref",
+ "type": "text",
+ "label": "Bridge Number",
+ "reference": {
+ "key": "bridge"
+ },
+ "prerequisiteTag": {
+ "key": "bridge",
+ "valueNot": "no"
+ }
+}
diff --git a/data/fields/bridge_combo.json b/data/fields/bridge_combo.json
index b467c884..4b2f0eab 100644
--- a/data/fields/bridge_combo.json
+++ b/data/fields/bridge_combo.json
@@ -1,5 +1,17 @@
{
"key": "bridge",
"type": "combo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "aqueduct": "Aqueduct",
+ "boardwalk": "Boardwalk",
+ "cantilever": "Cantilever Bridge",
+ "covered": "Covered Bridge",
+ "low_water_crossing": "Low Water Crossing",
+ "movable": "Movable Bridge",
+ "trestle": "Trestle Bridge",
+ "viaduct": "Viaduct"
+ }
+ }
}
diff --git a/data/fields/building.json b/data/fields/building.json
index 5d9e7bc9..f688eb50 100644
--- a/data/fields/building.json
+++ b/data/fields/building.json
@@ -2,6 +2,71 @@
"key": "building",
"type": "combo",
"label": "Building",
+ "strings": {
+ "options": {
+ "allotment_house": "Allotment House",
+ "apartments": "Apartment Building",
+ "barn": "Barn",
+ "boathouse": "Boathouse",
+ "bungalow": "Bungalow",
+ "bunker": "Bunker",
+ "cabin": "Cabin",
+ "carport": "Carport",
+ "cathedral": "Cathedral Building",
+ "chapel": "Chapel Building",
+ "church": "Church Building",
+ "civic": "Civic Building",
+ "college": "College Building",
+ "commercial": "Commercial Building",
+ "construction": "Building Under Construction",
+ "cowshed": "Cowshed",
+ "detached": "Detached House",
+ "dormitory": "Dormitory",
+ "farm": "Farm House",
+ "farm_auxiliary": "Farm Building",
+ "fire_station": "Fire Station Building",
+ "garage": "Garage",
+ "garages": "Garages",
+ "ger": "Yurt",
+ "grandstand": "Grandstand",
+ "greenhouse": "Greenhouse",
+ "hangar": "Hangar Building",
+ "hospital": "Hospital Building",
+ "hotel": "Hotel Building",
+ "house": "House",
+ "houseboat": "Houseboat",
+ "hut": "Hut",
+ "industrial": "Industrial Building",
+ "kindergarten": "Preschool / Kindergarten Building",
+ "manufacture": "Industrial Production Building",
+ "mosque": "Mosque Building",
+ "office": "Office Building",
+ "outbuilding": "Outbuilding",
+ "pavilion": "Pavilion Building",
+ "public": "Public Building",
+ "residential": "Residential Building",
+ "retail": "Retail Building",
+ "riding_hall": "Horseback Riding Arena",
+ "roof": "Roof",
+ "ruins": "Building Ruins",
+ "school": "School Building",
+ "semidetached_house": "Semi-Detached House",
+ "service": "Service Building",
+ "shed": "Shed",
+ "stable": "Stable",
+ "stadium": "Stadium Building",
+ "static_caravan": "Mobile Home",
+ "sty": "Pigsty",
+ "synagogue": "Synagogue Building",
+ "temple": "Temple Building",
+ "terrace": "Row Houses",
+ "train_station": "Train Station Building",
+ "transportation": "Transportation Building",
+ "university": "University Building",
+ "warehouse": "Warehouse",
+ "container": "Container"
+ }
+ },
"terms": [
"structure"
]
diff --git a/data/fields/building/colour.json b/data/fields/building/colour.json
new file mode 100644
index 00000000..f74dcee1
--- /dev/null
+++ b/data/fields/building/colour.json
@@ -0,0 +1,9 @@
+{
+ "key": "building:colour",
+ "type": "colour",
+ "label": "Façade Color",
+ "terms": [
+ "building color",
+ "facade color"
+ ]
+}
diff --git a/data/fields/cabins.json b/data/fields/cabins.json
new file mode 100644
index 00000000..c0574be1
--- /dev/null
+++ b/data/fields/cabins.json
@@ -0,0 +1,5 @@
+{
+ "key": "cabins",
+ "type": "check",
+ "label": "Cabins"
+}
diff --git a/data/fields/camp_site.json b/data/fields/camp_site.json
new file mode 100644
index 00000000..db9f4217
--- /dev/null
+++ b/data/fields/camp_site.json
@@ -0,0 +1,32 @@
+{
+ "key": "camp_site",
+ "type": "combo",
+ "label": "Type",
+ "options": [
+ "basic",
+ "standard",
+ "serviced",
+ "deluxe"
+ ],
+ "strings": {
+ "options": {
+ "basic": {
+ "title": "Basic (only tent/vehicle spots)",
+ "description": "Nothing but a place to pitch a tent or park a vehicle"
+ },
+ "standard": {
+ "title": "Standard (offers toilets and water)",
+ "description": "Toilets and water are provided or available nearby"
+ },
+ "serviced": {
+ "title": "Serviced (offers showers and electricity)",
+ "description": "Toilets, water, showers and electricity are provided"
+ },
+ "deluxe": {
+ "title": "Deluxe (offers laundry or swimming pool, etc.)",
+ "description": "Fully serviced and has additional amenities like a laundry, swimming pool or similar recreation facilities"
+ }
+ }
+ },
+ "autoSuggestions": false
+}
diff --git a/data/fields/capacity/caravans.json b/data/fields/capacity/caravans.json
index 5aa88e42..d2d2920e 100644
--- a/data/fields/capacity/caravans.json
+++ b/data/fields/capacity/caravans.json
@@ -2,6 +2,10 @@
"key": "capacity:caravans",
"type": "number",
"minValue": 0,
- "label": "Capacity (Caravans)",
- "placeholder": "10, 20, 50..."
+ "label": "Capacity (Campervan / Camping Trailer)",
+ "placeholder": "10, 20, 50...",
+ "prerequisiteTag": {
+ "key": "caravans",
+ "valueNot": "no"
+ }
}
diff --git a/data/fields/caravans.json b/data/fields/caravans.json
new file mode 100644
index 00000000..5d677d19
--- /dev/null
+++ b/data/fields/caravans.json
@@ -0,0 +1,11 @@
+{
+ "key": "caravans",
+ "type": "check",
+ "label": "Campervan / Camping Trailer",
+ "terms": [
+ "camper",
+ "camper trailer",
+ "caravan",
+ "tourer"
+ ]
+}
diff --git a/data/fields/ceremonial_gate.json b/data/fields/ceremonial_gate.json
new file mode 100644
index 00000000..24373110
--- /dev/null
+++ b/data/fields/ceremonial_gate.json
@@ -0,0 +1,13 @@
+{
+ "key": "ceremonial_gate",
+ "type": "combo",
+ "label": "Type",
+ "strings": {
+ "options": {
+ "torii": "Torii",
+ "paifang": "Paifang",
+ "hongsalmun": "Hongsalmun",
+ "iljumun": "Iljumun"
+ }
+ }
+}
diff --git a/data/fields/check_date.json b/data/fields/check_date.json
index 09bf66a6..643bdf59 100644
--- a/data/fields/check_date.json
+++ b/data/fields/check_date.json
@@ -1,6 +1,11 @@
{
"key": "check_date",
- "type": "text",
+ "type": "date",
"label": "Last Checked Date",
- "placeholder": "YYYY-MM-DD"
+ "placeholder": "YYYY-MM-DD",
+ "universal": true,
+ "terms": [
+ "last survey date",
+ "survey date"
+ ]
}
diff --git a/data/fields/circumference.json b/data/fields/circumference.json
index 5fa71e4b..2b4fe8f3 100644
--- a/data/fields/circumference.json
+++ b/data/fields/circumference.json
@@ -5,7 +5,7 @@
"snake_case": false,
"placeholder": "1 m, 20 cm, 30\"…",
"terms": [
- "DBH",
+ "dbh",
"diameter at breast height"
]
}
diff --git a/data/fields/climbing/bolts.json b/data/fields/climbing/bolts.json
new file mode 100644
index 00000000..649b95a6
--- /dev/null
+++ b/data/fields/climbing/bolts.json
@@ -0,0 +1,10 @@
+{
+ "key": "climbing:bolts",
+ "type": "number",
+ "minValue": 0,
+ "label": "Number of Bolts",
+ "prerequisiteTag": {
+ "key": "climbing:sport",
+ "value": "yes"
+ }
+}
diff --git a/data/fields/climbing/grade/french.json b/data/fields/climbing/grade/french.json
new file mode 100644
index 00000000..daa08d8f
--- /dev/null
+++ b/data/fields/climbing/grade/french.json
@@ -0,0 +1,48 @@
+{
+ "key": "climbing:grade:french",
+ "type": "combo",
+ "label": "Grade (French)",
+ "placeholder": "5c",
+ "caseSensitive": false,
+ "customValues": true,
+ "autoSuggestions": false,
+ "options": [
+ "1",
+ "2",
+ "3-",
+ "3",
+ "3+",
+ "4a",
+ "4b",
+ "4c",
+ "5a",
+ "5b",
+ "5c",
+ "5c+",
+ "6a",
+ "6a+",
+ "6b",
+ "6b+",
+ "6c",
+ "6c+",
+ "7a",
+ "7a+",
+ "7b",
+ "7b+",
+ "7c",
+ "7c+",
+ "8a",
+ "8a+",
+ "8b",
+ "8b+",
+ "8c",
+ "8c+",
+ "9a",
+ "9a+",
+ "9b",
+ "9b+",
+ "9c",
+ "9c+",
+ "10a"
+ ]
+}
diff --git a/data/fields/climbing/grade/saxon.json b/data/fields/climbing/grade/saxon.json
new file mode 100644
index 00000000..b53bb5fb
--- /dev/null
+++ b/data/fields/climbing/grade/saxon.json
@@ -0,0 +1,39 @@
+{
+ "key": "climbing:grade:saxon",
+ "type": "combo",
+ "label": "Grade (Saxon)",
+ "placeholder": "VIIa",
+ "caseSensitive": true,
+ "customValues": true,
+ "autoSuggestions": false,
+ "options": [
+ "I",
+ "II",
+ "III",
+ "IV",
+ "V",
+ "VI",
+ "VIIa",
+ "VIIb",
+ "VII",
+ "VIIc",
+ "VIIIa",
+ "VIIIb",
+ "VIIIc",
+ "IXa",
+ "IXb",
+ "IXc",
+ "Xa",
+ "Xb",
+ "Xc",
+ "XIa",
+ "XIb",
+ "XIc",
+ "XIIa",
+ "XIIb",
+ "XIIc",
+ "XIIIa",
+ "XIIIb",
+ "XIIIc"
+ ]
+}
diff --git a/data/fields/climbing/grade/uiaa.json b/data/fields/climbing/grade/uiaa.json
new file mode 100644
index 00000000..581faaa8
--- /dev/null
+++ b/data/fields/climbing/grade/uiaa.json
@@ -0,0 +1,51 @@
+{
+ "key": "climbing:grade:uiaa",
+ "type": "combo",
+ "label": "Grade (UIAA)",
+ "placeholder": "6-",
+ "caseSensitive": false,
+ "customValues": true,
+ "autoSuggestions": false,
+ "options": [
+ "1-",
+ "1",
+ "1+",
+ "2-",
+ "2",
+ "2+",
+ "3-",
+ "3",
+ "3+",
+ "4-",
+ "4",
+ "4+",
+ "5-",
+ "5",
+ "5+",
+ "6-",
+ "6",
+ "6+",
+ "7-",
+ "7",
+ "7+",
+ "8-",
+ "8",
+ "8+",
+ "9-",
+ "9",
+ "9+",
+ "10-",
+ "10",
+ "10+",
+ "11-",
+ "11",
+ "11+",
+ "12-",
+ "12",
+ "12+",
+ "13-",
+ "13",
+ "13+",
+ "14-"
+ ]
+}
diff --git a/data/fields/climbing/grade/yds_class.json b/data/fields/climbing/grade/yds_class.json
new file mode 100644
index 00000000..033a33b2
--- /dev/null
+++ b/data/fields/climbing/grade/yds_class.json
@@ -0,0 +1,45 @@
+{
+ "key": "climbing:grade:yds_class",
+ "type": "combo",
+ "label": "Grade (YDS)",
+ "placeholder": "5.10a",
+ "caseSensitive": false,
+ "customValues": true,
+ "autoSuggestions": false,
+ "options": [
+ "5",
+ "5.1",
+ "5.2",
+ "5.3",
+ "5.4",
+ "5.5",
+ "5.6",
+ "5.7",
+ "5.8",
+ "5.9",
+ "5.10a",
+ "5.10b",
+ "5.10c",
+ "5.10d",
+ "5.11a",
+ "5.11b",
+ "5.11c",
+ "5.11d",
+ "5.12a",
+ "5.12b",
+ "5.12c",
+ "5.12d",
+ "5.13a",
+ "5.13b",
+ "5.13c",
+ "5.13d",
+ "5.14a",
+ "5.14b",
+ "5.14c",
+ "5.14d",
+ "5.15a",
+ "5.15b",
+ "5.15c",
+ "5.15d"
+ ]
+}
diff --git a/data/fields/climbing/length.json b/data/fields/climbing/length.json
new file mode 100644
index 00000000..40a4b425
--- /dev/null
+++ b/data/fields/climbing/length.json
@@ -0,0 +1,6 @@
+{
+ "key": "climbing:length",
+ "type": "number",
+ "minValue": 0,
+ "label": "Length (Meters)"
+}
diff --git a/data/fields/climbing/sport.json b/data/fields/climbing/sport.json
new file mode 100644
index 00000000..b415825a
--- /dev/null
+++ b/data/fields/climbing/sport.json
@@ -0,0 +1,5 @@
+{
+ "key": "climbing:sport",
+ "type": "check",
+ "label": "Sport climbing (bolted climbing)"
+}
diff --git a/data/fields/climbing/trad.json b/data/fields/climbing/trad.json
new file mode 100644
index 00000000..62205e06
--- /dev/null
+++ b/data/fields/climbing/trad.json
@@ -0,0 +1,5 @@
+{
+ "key": "climbing:trad",
+ "type": "check",
+ "label": "Traditional climbing"
+}
diff --git a/data/fields/clothes.json b/data/fields/clothes.json
index 711b0b37..82a1c3fb 100644
--- a/data/fields/clothes.json
+++ b/data/fields/clothes.json
@@ -1,5 +1,27 @@
{
"key": "clothes",
"type": "semiCombo",
- "label": "Clothes"
+ "label": "Clothes",
+ "strings": {
+ "options": {
+ "babies": "Baby Clothing",
+ "children": "Children's Clothing",
+ "denim": "Jeans Clothing",
+ "fur": "Fur Clothing",
+ "hats": "Hats",
+ "maternity": "Maternity Clothing",
+ "men": "Men's Clothing",
+ "motorcycle": "Motorcycle Clothing",
+ "oversize": "Plus Size Clothing",
+ "socks": "Socks",
+ "sports": "Sportswear",
+ "suits": "Suits",
+ "swimwear": "Swimwear",
+ "traditional": "Traditional Garments / Folk Costumes",
+ "underwear": "Underwear",
+ "wedding": "Wedding Clothing",
+ "women": "Women's Clothing",
+ "workwear": "Workwear"
+ }
+ }
}
diff --git a/data/fields/collector.json b/data/fields/collector.json
index d6d2ea4f..cccf5483 100644
--- a/data/fields/collector.json
+++ b/data/fields/collector.json
@@ -1,5 +1,12 @@
{
"key": "collector",
"type": "semiCombo",
- "label": "Items"
+ "label": "Items",
+ "strings": {
+ "options": {
+ "coins": "Coins",
+ "stamps": "Stamps",
+ "comics": "Comics"
+ }
+ }
}
diff --git a/data/fields/community_centre.json b/data/fields/community_centre.json
new file mode 100644
index 00000000..797da6ad
--- /dev/null
+++ b/data/fields/community_centre.json
@@ -0,0 +1,16 @@
+{
+ "key": "community_centre",
+ "type": "combo",
+ "label": "Type",
+ "strings": {
+ "options": {
+ "club_home": "Club Home",
+ "community_hall": "Community Hall",
+ "cultural_centre": "Cultural Centre",
+ "family_centre": "Family Centre",
+ "parish_hall": "Parish Hall",
+ "village_hall": "Village Hall",
+ "youth_centre": "Youth Center"
+ }
+ }
+}
diff --git a/data/fields/consulate.json b/data/fields/consulate.json
index 1610523d..ab93ceb2 100644
--- a/data/fields/consulate.json
+++ b/data/fields/consulate.json
@@ -1,5 +1,15 @@
{
"key": "consulate",
"type": "combo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "consulate_general": "Consulate General",
+ "honorary_consul": "Honorary Consul",
+ "yes": "Consulate",
+ "consular_office": "Consular Services Office",
+ "consular_agency": "Consular Services Agency",
+ "residence": "Official Residence of a Consul"
+ }
+ }
}
diff --git a/data/fields/contact/facebook.json b/data/fields/contact/facebook.json
new file mode 100644
index 00000000..9bd6e38b
--- /dev/null
+++ b/data/fields/contact/facebook.json
@@ -0,0 +1,6 @@
+{
+ "key": "contact:facebook",
+ "type": "url",
+ "label": "Facebook Username or URL",
+ "placeholder": "https://www.facebook.com/LocalBusiness"
+}
diff --git a/data/fields/count.json b/data/fields/count.json
new file mode 100644
index 00000000..fab95598
--- /dev/null
+++ b/data/fields/count.json
@@ -0,0 +1,6 @@
+{
+ "key": "count",
+ "type": "number",
+ "minValue": 1,
+ "label": "Number of Features"
+}
diff --git a/data/fields/country_flag.json b/data/fields/country_flag.json
index 77cdf30f..b36e4887 100644
--- a/data/fields/country_flag.json
+++ b/data/fields/country_flag.json
@@ -5,5 +5,7 @@
"prerequisiteTag": {
"key": "flag:type",
"value": "national"
- }
+ },
+ "snake_case": false,
+ "caseSensitive": true
}
diff --git a/data/fields/crane/type.json b/data/fields/crane/type.json
index 52285713..3d144419 100644
--- a/data/fields/crane/type.json
+++ b/data/fields/crane/type.json
@@ -11,6 +11,12 @@
"tower_crane": "Tower Crane"
}
},
+ "icons": {
+ "portal_crane": "roentgen-crane_portal",
+ "gantry_crane": "roentgen-crane_gantry",
+ "tower_crane": "roentgen-crane",
+ "travel_lift": "roentgen-crane_travel_lift"
+ },
"autoSuggestions": false,
"customValues": false
}
diff --git a/data/fields/crossing/markings-BG.json b/data/fields/crossing/markings-BG.json
new file mode 100644
index 00000000..5c186e07
--- /dev/null
+++ b/data/fields/crossing/markings-BG.json
@@ -0,0 +1,20 @@
+{
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "no",
+ "dots",
+ "dashes",
+ "yes"
+ ],
+ "locationSet": {
+ "include": [
+ "BG"
+ ]
+ }
+}
diff --git a/data/fields/crossing/markings-DE-AT-CH.json b/data/fields/crossing/markings-DE-AT-CH.json
new file mode 100644
index 00000000..c758a852
--- /dev/null
+++ b/data/fields/crossing/markings-DE-AT-CH.json
@@ -0,0 +1,23 @@
+{
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "yes",
+ "no",
+ "dots",
+ "dashes",
+ "surface"
+ ],
+ "locationSet": {
+ "include": [
+ "DE",
+ "AT",
+ "CH"
+ ]
+ }
+}
diff --git a/data/fields/crossing/markings-PL.json b/data/fields/crossing/markings-PL.json
new file mode 100644
index 00000000..edc86d25
--- /dev/null
+++ b/data/fields/crossing/markings-PL.json
@@ -0,0 +1,20 @@
+{
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "dots",
+ "surface",
+ "yes",
+ "no"
+ ],
+ "locationSet": {
+ "include": [
+ "PL"
+ ]
+ }
+}
diff --git a/data/fields/crossing/markings.json b/data/fields/crossing/markings.json
index 83c5c2be..4bc7fe36 100644
--- a/data/fields/crossing/markings.json
+++ b/data/fields/crossing/markings.json
@@ -20,5 +20,28 @@
"zebra:bicolour": "Longitudinal Bars With Alternating Colors",
"ladder:paired": "Ladder With Paired Longitudinal Bars"
}
+ },
+ "icons": {
+ "zebra": "iD-crossing_markings-zebra",
+ "lines": "iD-crossing_markings-lines",
+ "ladder": "iD-crossing_markings-ladder",
+ "dots": "iD-crossing_markings-dots",
+ "dashes": "iD-crossing_markings-dashes",
+ "surface": "iD-crossing_markings-surface",
+ "ladder:skewed": "iD-crossing_markings-ladder_skewed",
+ "lines:paired": "iD-crossing_markings-lines_paired",
+ "zebra:double": "iD-crossing_markings-zebra_double",
+ "zebra:paired": "iD-crossing_markings-zebra_paired",
+ "zebra:bicolour": "iD-crossing_markings-zebra_bicolour",
+ "ladder:paired": "iD-crossing_markings-ladder_paired"
+ },
+ "locationSet": {
+ "exclude": [
+ "BG",
+ "DE",
+ "AT",
+ "CH",
+ "PL"
+ ]
}
}
diff --git a/data/fields/crossing/markings_yes-BG.json b/data/fields/crossing/markings_yes-BG.json
new file mode 100644
index 00000000..9155115d
--- /dev/null
+++ b/data/fields/crossing/markings_yes-BG.json
@@ -0,0 +1,21 @@
+{
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "default": "yes",
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "no",
+ "dots",
+ "dashes",
+ "yes"
+ ],
+ "locationSet": {
+ "include": [
+ "BG"
+ ]
+ }
+}
diff --git a/data/fields/crossing/markings_yes-DE-AT-CH.json b/data/fields/crossing/markings_yes-DE-AT-CH.json
new file mode 100644
index 00000000..04524b36
--- /dev/null
+++ b/data/fields/crossing/markings_yes-DE-AT-CH.json
@@ -0,0 +1,24 @@
+{
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "default": "yes",
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "yes",
+ "no",
+ "dots",
+ "dashes",
+ "surface"
+ ],
+ "locationSet": {
+ "include": [
+ "DE",
+ "AT",
+ "CH"
+ ]
+ }
+}
diff --git a/data/fields/crossing/markings_yes-PL.json b/data/fields/crossing/markings_yes-PL.json
new file mode 100644
index 00000000..c10103b0
--- /dev/null
+++ b/data/fields/crossing/markings_yes-PL.json
@@ -0,0 +1,21 @@
+{
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "default": "yes",
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "dots",
+ "surface",
+ "yes",
+ "no"
+ ],
+ "locationSet": {
+ "include": [
+ "PL"
+ ]
+ }
+}
diff --git a/data/fields/crossing/markings_yes.json b/data/fields/crossing/markings_yes.json
new file mode 100644
index 00000000..c0203f6a
--- /dev/null
+++ b/data/fields/crossing/markings_yes.json
@@ -0,0 +1,17 @@
+{
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "default": "yes",
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "locationSet": {
+ "exclude": [
+ "BG",
+ "DE",
+ "AT",
+ "CH",
+ "PL"
+ ]
+ }
+}
diff --git a/data/fields/crossing_raised.json b/data/fields/crossing_raised.json
index 3717dafd..f9df22c5 100644
--- a/data/fields/crossing_raised.json
+++ b/data/fields/crossing_raised.json
@@ -5,8 +5,8 @@
"terms": [
"flat top",
"hump",
- "speed",
- "slow"
+ "slow",
+ "speed"
],
"strings": {
"options": {
diff --git a/data/fields/cuisine.json b/data/fields/cuisine.json
index 4a590133..e98d606d 100644
--- a/data/fields/cuisine.json
+++ b/data/fields/cuisine.json
@@ -6,48 +6,93 @@
"options": {
"pizza": "Pizza",
"burger": "Burger",
- "regional": "Regional",
"coffee_shop": "Coffee Shop",
+ "regional": "Regional",
"italian": "Italian",
- "chinese": "Chinese",
"sandwich": "Sandwich",
- "japanese": "Japanese",
- "mexican": "Mexican",
- "kebab": "Kebab",
- "indian": "Indian",
+ "chinese": "Chinese",
"chicken": "Chicken",
- "fish": "Fish",
- "asian": "Asian",
- "french": "French",
- "spanish": "Spanish",
- "portuguese": "Portuguese",
- "russian": "Russian",
- "polish": "Polish",
- "thai": "Thai",
- "korean": "Korean",
+ "japanese": "Japanese",
+ "kebab": "Kebab",
+ "mexican": "Mexican",
"american": "American",
- "seafood": "Seafood",
- "sushi": "Sushi",
+ "asian": "Asian",
"ice_cream": "Ice Cream",
+ "indian": "Indian",
+ "sushi": "Sushi",
+ "seafood": "Seafood",
+ "thai": "Thai",
+ "french": "French",
"german": "German",
+ "breakfast": "Breakfast",
"greek": "Greek",
- "vietnamese": "Vietnamese",
- "turkish": "Turkish",
- "lebanese": "Lebanese",
- "indonesian": "Indonesian",
- "malaysian": "Malaysian",
- "taiwanese": "Taiwanese",
- "juice": "Juice",
- "bubble_tea": "Bubble Tea",
- "hot_dog": "Hot Dog",
- "cake": "Cake",
- "pankcake": "Pancake",
- "pasta": "Pasta",
- "salad": "Salad",
- "chocolate": "Chocolate",
- "dessert": "Dessert",
"steak_house": "Steak House",
- "donut": "Donut"
+ "fish_and_chips": "Fish and Chips",
+ "korean": "Korean",
+ "barbecue": "Barbecue",
+ "donut": "Donut",
+ "noodle": "Noodle",
+ "vietnamese": "Vietnamese",
+ "fish": "Fish",
+ "turkish": "Turkish",
+ "cake": "Cake",
+ "pasta": "Pasta",
+ "tex-mex": "Tex-Mex",
+ "bubble_tea": "Bubble Tea",
+ "ramen": "Ramen",
+ "mediterranean": "Mediterranean",
+ "spanish": "Spanish",
+ "friture": "Friterie",
+ "tea": "Tea",
+ "grill": "Bar and Grill",
+ "juice": "Juice",
+ "salad": "Salad",
+ "crepe": "Crepe",
+ "hot_dog": "Hot Dog",
+ "pancake": "Pancake",
+ "dessert": "Dessert",
+ "diner": "Diner",
+ "tapas": "Tapas",
+ "portuguese": "Portuguese",
+ "beef_bowl": "Gyūdon",
+ "russian": "Russian",
+ "indonesian": "Indonesian",
+ "wings": "Chicken Wings",
+ "lebanese": "Lebanese",
+ "arab": "Arab",
+ "curry": "Curry",
+ "malaysian": "Malaysian",
+ "bagel": "Bagel",
+ "georgian": "Georgian",
+ "polish": "Polish",
+ "african": "African",
+ "western": "Western",
+ "sausage": "Sausage",
+ "filipino": "Filipino",
+ "caribbean": "Caribbean",
+ "soba": "Soba",
+ "peruvian": "Peruvian",
+ "brazilian": "Brazilian",
+ "oriental": "Oriental",
+ "fine_dining": "Fine Dining",
+ "frozen_yogurt": "Frozen Yogurt",
+ "argentinian": "Argentinian",
+ "balkan": "Balkan",
+ "bavarian": "Bavarian",
+ "shawarma": "Shawarma",
+ "persian": "Persian",
+ "middle_eastern": "Middle Eastern",
+ "pastry": "Pastry",
+ "soup": "Soup",
+ "fries": "Fries",
+ "taiwanese": "Taiwanese",
+ "bistro": "Bistro",
+ "european": "European",
+ "moroccan": "Moroccan",
+ "hawaiian": "Hawaiian",
+ "brunch": "Brunch",
+ "udon": "Udon",
+ "ukrainian": "Ukrainian"
}
},
"terms": [
diff --git a/data/fields/cycle_barrier.json b/data/fields/cycle_barrier.json
new file mode 100644
index 00000000..cff7a66f
--- /dev/null
+++ b/data/fields/cycle_barrier.json
@@ -0,0 +1,16 @@
+{
+ "key": "cycle_barrier",
+ "type": "combo",
+ "label": "Type",
+ "customValues": false,
+ "autoSuggestions": false,
+ "strings": {
+ "options": {
+ "single": "Single",
+ "double": "Double",
+ "triple": "Triple",
+ "diagonal": "Diagonal",
+ "tilted": "Tilted"
+ }
+ }
+}
diff --git a/data/fields/cycle_barrier/installation.json b/data/fields/cycle_barrier/installation.json
new file mode 100644
index 00000000..577f7292
--- /dev/null
+++ b/data/fields/cycle_barrier/installation.json
@@ -0,0 +1,14 @@
+{
+ "key": "cycle_barrier:installation",
+ "type": "combo",
+ "label": "Installation",
+ "customValues": false,
+ "autoSuggestions": false,
+ "strings": {
+ "options": {
+ "fixed": "Fixed",
+ "openable": "Openable",
+ "removable": "Removable"
+ }
+ }
+}
diff --git a/data/fields/cyclestreet-BE-NL.json b/data/fields/cyclestreet-BE-NL.json
new file mode 100644
index 00000000..01e8ee9d
--- /dev/null
+++ b/data/fields/cyclestreet-BE-NL.json
@@ -0,0 +1,12 @@
+{
+ "key": "cyclestreet",
+ "type": "defaultCheck",
+ "label": "{bicycle_road}",
+ "locationSet": {
+ "include": [
+ "BE",
+ "NL"
+ ]
+ },
+ "stringsCrossReference": "{bicycle_road}"
+}
diff --git a/data/fields/cycleway.json b/data/fields/cycleway.json
index c9b36a72..2df71d96 100644
--- a/data/fields/cycleway.json
+++ b/data/fields/cycleway.json
@@ -1,13 +1,13 @@
{
+ "key": "cycleway",
"keys": [
- "cycleway",
"cycleway:left",
"cycleway:right"
],
"reference": {
"key": "cycleway"
},
- "type": "cycleway",
+ "type": "directionalCombo",
"label": "Bike Lanes",
"placeholder": "Lane, Track, Contraflow, …",
"strings": {
@@ -36,17 +36,17 @@
"title": "Bike Lane Shared With Bus",
"description": "A bike lane shared with a bus lane"
},
- "opposite_lane": {
- "title": "Opposite Bike Lane",
- "description": "A bike lane that travels in the opposite direction of traffic"
- },
- "opposite": {
- "title": "Contraflow Bike Lane",
- "description": "A bike lane that travels in both directions on a one-way street"
- },
"separate": {
"title": "Cycleway Mapped Separately",
"description": "Indicates that cycleway was mapped as a separate geometry"
+ },
+ "opposite_lane": {
+ "title": "(Deprecated) Opposite Bike Lane",
+ "description": "Please update with oneway, oneway:bicycle, and cycleway:left/right=lane etc."
+ },
+ "opposite": {
+ "title": "(Deprecated) Contraflow Bike Lane",
+ "description": "Please update with oneway=yes, oneway:bicycle=no, and cycleway:both=no etc."
}
}
},
diff --git a/data/fields/dance/teaching.json b/data/fields/dance/teaching.json
new file mode 100644
index 00000000..1290395a
--- /dev/null
+++ b/data/fields/dance/teaching.json
@@ -0,0 +1,5 @@
+{
+ "key": "dance:teaching",
+ "type": "check",
+ "label": "Offers Dance Lessons"
+}
diff --git a/data/fields/deflection.json b/data/fields/deflection.json
new file mode 100644
index 00000000..7a591808
--- /dev/null
+++ b/data/fields/deflection.json
@@ -0,0 +1,10 @@
+{
+ "key": "deflection",
+ "type": "number",
+ "label": "Angle",
+ "increment": 5,
+ "prerequisiteTag": {
+ "key": "cycle_barrier",
+ "value": "diagonal"
+ }
+}
diff --git a/data/fields/depot.json b/data/fields/depot.json
new file mode 100644
index 00000000..625ca051
--- /dev/null
+++ b/data/fields/depot.json
@@ -0,0 +1,5 @@
+{
+ "key": "depot",
+ "type": "combo",
+ "label": "Type"
+}
diff --git a/data/fields/descent.json b/data/fields/descent.json
index 11d438e1..98fe565e 100644
--- a/data/fields/descent.json
+++ b/data/fields/descent.json
@@ -4,7 +4,7 @@
"type": "number",
"label": "Total Descent",
"terms": [
- "descent",
- "cumulative elevation"
+ "cumulative elevation",
+ "descent"
]
}
diff --git a/data/fields/design.json b/data/fields/design.json
index 15d5445e..cea55729 100644
--- a/data/fields/design.json
+++ b/data/fields/design.json
@@ -1,5 +1,6 @@
{
"key": "design",
"type": "combo",
+ "usage": "manual",
"label": "Design"
}
diff --git a/data/fields/design_power_pole.json b/data/fields/design_power_pole.json
new file mode 100644
index 00000000..33f2e538
--- /dev/null
+++ b/data/fields/design_power_pole.json
@@ -0,0 +1,18 @@
+{
+ "key": "design",
+ "type": "combo",
+ "label": "{design}",
+ "icons": {
+ "one-level": "roentgen-power_pole_1_level",
+ "two-level": "roentgen-power_pole_2_level",
+ "three-level": "roentgen-power_pole_3_level",
+ "four-level": "roentgen-power_pole_4_level",
+ "asymmetric": "roentgen-power_pole_asymmetric",
+ "triangle": "roentgen-power_pole_triangle",
+ "flag": "roentgen-power_pole_flag",
+ "delta": "roentgen-power_pole_delta",
+ "armless": "roentgen-power_pole_armless",
+ "armless_asymmetric": "roentgen-power_pole_asymmetric_armless",
+ "armless_triangle": "roentgen-power_pole_triangle_armless"
+ }
+}
diff --git a/data/fields/design_power_tower.json b/data/fields/design_power_tower.json
new file mode 100644
index 00000000..64dceff5
--- /dev/null
+++ b/data/fields/design_power_tower.json
@@ -0,0 +1,27 @@
+{
+ "key": "design",
+ "type": "combo",
+ "label": "{design}",
+ "icons": {
+ "one-level": "roentgen-power_tower_1_level",
+ "two-level": "roentgen-power_tower_2_level",
+ "three-level": "roentgen-power_tower_3_level",
+ "four-level": "roentgen-power_tower_4_level",
+ "asymmetric": "roentgen-power_tower_asymmetric",
+ "triangle": "roentgen-power_tower_triangle",
+ "flag": "roentgen-power_tower_flag",
+ "delta": "roentgen-power_tower_delta",
+ "delta_two-level": "roentgen-power_tower_delta_2_level",
+ "delta_tree-level": "roentgen-power_tower_delta_3_level",
+ "donau": "roentgen-power_tower_donau",
+ "barrel": "roentgen-power_tower_barrel",
+ "x-frame": "roentgen-power_tower_x_frame",
+ "y-frame": "roentgen-power_tower_y_frame",
+ "h-frame": "roentgen-power_tower_h_frame",
+ "h-frame_two-level": "roentgen-power_tower_h_frame_2_level",
+ "guyed_h-frame": "roentgen-power_tower_guyed_h_frame",
+ "portal": "roentgen-power_tower_portal",
+ "portal_two-level": "roentgen-power_tower_portal_2_level",
+ "portal_three-level": "roentgen-power_tower_portal_3_level"
+ }
+}
diff --git a/data/fields/destination_oneway.json b/data/fields/destination_oneway.json
index c645373e..58b7670f 100644
--- a/data/fields/destination_oneway.json
+++ b/data/fields/destination_oneway.json
@@ -6,5 +6,6 @@
"key": "oneway",
"value": "yes"
},
- "snake_case": false
+ "snake_case": false,
+ "caseSensitive": true
}
diff --git a/data/fields/diet_multi.json b/data/fields/diet_multi.json
index 3e52a59e..2b64db54 100644
--- a/data/fields/diet_multi.json
+++ b/data/fields/diet_multi.json
@@ -3,8 +3,8 @@
"type": "multiCombo",
"label": "Diet Types",
"terms": [
- "gluten free",
"fruitarian",
+ "gluten free",
"halal",
"kosher",
"lactose free",
diff --git a/data/fields/diplomatic.json b/data/fields/diplomatic.json
index e83a243b..85a70990 100644
--- a/data/fields/diplomatic.json
+++ b/data/fields/diplomatic.json
@@ -1,5 +1,12 @@
{
"key": "diplomatic",
"type": "combo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "consulate": "Consulate",
+ "embassy": "Embassy",
+ "liaison": "Liaison Office"
+ }
+ }
}
diff --git a/data/fields/dock.json b/data/fields/dock.json
index 97fb471e..745ecfdc 100644
--- a/data/fields/dock.json
+++ b/data/fields/dock.json
@@ -1,5 +1,12 @@
{
"key": "dock",
"type": "combo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "drydock": "Dry Dock",
+ "floating": "Floating Dry Dock",
+ "tidal": "Impounded Tidal Dock"
+ }
+ }
}
diff --git a/data/fields/dock/height.json b/data/fields/dock/height.json
new file mode 100644
index 00000000..375d6f52
--- /dev/null
+++ b/data/fields/dock/height.json
@@ -0,0 +1,6 @@
+{
+ "key": "dock:height",
+ "minValue": 0,
+ "type": "number",
+ "label": "Dock Height (Meters)"
+}
diff --git a/data/fields/dock/width.json b/data/fields/dock/width.json
new file mode 100644
index 00000000..45dc6ade
--- /dev/null
+++ b/data/fields/dock/width.json
@@ -0,0 +1,6 @@
+{
+ "key": "dock:width",
+ "minValue": 0,
+ "type": "number",
+ "label": "Dock Width (Meters)"
+}
diff --git a/data/fields/dog.json b/data/fields/dog.json
index d9e8de29..bcc9d343 100644
--- a/data/fields/dog.json
+++ b/data/fields/dog.json
@@ -6,6 +6,7 @@
"options": {
"yes": "Allowed",
"leashed": "Leashed Only",
+ "unleashed": "Leashes Not Required",
"no": "Not Allowed"
}
},
diff --git a/data/fields/dog_check.json b/data/fields/dog_check.json
new file mode 100644
index 00000000..7e70127d
--- /dev/null
+++ b/data/fields/dog_check.json
@@ -0,0 +1,5 @@
+{
+ "key": "dog",
+ "type": "check",
+ "label": "Suitable For Dogs"
+}
diff --git a/data/fields/dog_yes.json b/data/fields/dog_yes.json
new file mode 100644
index 00000000..904e3db2
--- /dev/null
+++ b/data/fields/dog_yes.json
@@ -0,0 +1,12 @@
+{
+ "key": "dog",
+ "type": "combo",
+ "label": "{dog}",
+ "options": [
+ "leashed",
+ "unleashed"
+ ],
+ "stringsCrossReference": "{dog}",
+ "autoSuggestions": false,
+ "customValues": false
+}
diff --git a/data/fields/door/height.json b/data/fields/door/height.json
new file mode 100644
index 00000000..8515d87b
--- /dev/null
+++ b/data/fields/door/height.json
@@ -0,0 +1,6 @@
+{
+ "key": "door:height",
+ "minValue": 0,
+ "type": "number",
+ "label": "Door Height (Meters)"
+}
diff --git a/data/fields/door/width.json b/data/fields/door/width.json
new file mode 100644
index 00000000..478dcea3
--- /dev/null
+++ b/data/fields/door/width.json
@@ -0,0 +1,6 @@
+{
+ "key": "door:width",
+ "minValue": 0,
+ "type": "number",
+ "label": "Door Width (Meters)"
+}
diff --git a/data/fields/education.json b/data/fields/education.json
new file mode 100644
index 00000000..0814797a
--- /dev/null
+++ b/data/fields/education.json
@@ -0,0 +1,18 @@
+{
+ "key": "education",
+ "type": "typeCombo",
+ "label": "Type",
+ "strings": {
+ "options": {
+ "college": "College",
+ "dancing_school": "Dancing School",
+ "driving_school": "Driving School",
+ "kindergarten": "Kindergarten",
+ "language_school": "Language School",
+ "music_school": "Music School",
+ "prep_school": "Test Prep / Tutoring School",
+ "school": "School",
+ "university": "University"
+ }
+ }
+}
diff --git a/data/fields/email.json b/data/fields/email.json
index 1e8439d2..d700b980 100644
--- a/data/fields/email.json
+++ b/data/fields/email.json
@@ -1,5 +1,9 @@
{
"key": "email",
+ "keys": [
+ "email",
+ "contact:email"
+ ],
"type": "email",
"placeholder": "example@example.com",
"label": "Email"
diff --git a/data/fields/entrance.json b/data/fields/entrance.json
index 724eb105..79d89336 100644
--- a/data/fields/entrance.json
+++ b/data/fields/entrance.json
@@ -8,6 +8,7 @@
"main": "Main",
"secondary": "Secondary",
"service": "Service",
+ "shop": "Shop Entrance",
"exit": "Exit Only",
"entrance": "Entrance Only",
"emergency": "Emergency Exit",
diff --git a/data/fields/fax.json b/data/fields/fax.json
index 8107cf3f..adbf333c 100644
--- a/data/fields/fax.json
+++ b/data/fields/fax.json
@@ -1,5 +1,9 @@
{
"key": "fax",
+ "keys": [
+ "fax",
+ "contact:fax"
+ ],
"type": "tel",
"label": "Fax",
"placeholder": "+31 42 123 4567"
diff --git a/data/fields/fhrs/id-GB.json b/data/fields/fhrs/id-GB.json
new file mode 100644
index 00000000..2b78046e
--- /dev/null
+++ b/data/fields/fhrs/id-GB.json
@@ -0,0 +1,17 @@
+{
+ "key": "fhrs:id",
+ "type": "identifier",
+ "label": "FHRS ID",
+ "urlFormat": "https://ratings.food.gov.uk/business/en-GB/{value}",
+ "pattern": "^[0-9]{1,}$",
+ "locationSet": {
+ "include": [
+ "gb"
+ ]
+ },
+ "terms": [
+ "food hygiene rating scheme",
+ "food hygiene rating system",
+ "food standards agency"
+ ]
+}
diff --git a/data/fields/fire_mains.json b/data/fields/fire_mains.json
new file mode 100644
index 00000000..3aada614
--- /dev/null
+++ b/data/fields/fire_mains.json
@@ -0,0 +1,15 @@
+{
+ "key": "fire_mains",
+ "type": "combo",
+ "label": "Network-Type",
+ "strings": {
+ "options": {
+ "dry": "Dedicated Network (Normally Dry)",
+ "wet": "Connected to Mains (Permanently Filled)",
+ "yes": "Unknown Type",
+ "no": "No"
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": false
+}
diff --git a/data/fields/fire_service_inlet.json b/data/fields/fire_service_inlet.json
new file mode 100644
index 00000000..d639f543
--- /dev/null
+++ b/data/fields/fire_service_inlet.json
@@ -0,0 +1,15 @@
+{
+ "key": "fire_service_inlet",
+ "type": "combo",
+ "label": "Shape",
+ "strings": {
+ "options": {
+ "pillar": "Pillar/Aboveground",
+ "underground": "Underground",
+ "wall": "Wall",
+ "pipe": "Capped Pipe"
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": false
+}
diff --git a/data/fields/fire_sprinkler.json b/data/fields/fire_sprinkler.json
new file mode 100644
index 00000000..92c0598b
--- /dev/null
+++ b/data/fields/fire_sprinkler.json
@@ -0,0 +1,16 @@
+{
+ "key": "fire_sprinkler",
+ "type": "combo",
+ "label": "Fire Sprinkler Inlet",
+ "strings": {
+ "options": {
+ "dry": "Dedicated Network (Normally Dry)",
+ "wet": "Connected to Mains (Permanently Filled)",
+ "pre-action": "Connected to Mains (Pre-Action System)",
+ "yes": "Unknown Type",
+ "no": "No"
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": false
+}
diff --git a/data/fields/footrest.json b/data/fields/footrest.json
new file mode 100644
index 00000000..f00c954a
--- /dev/null
+++ b/data/fields/footrest.json
@@ -0,0 +1,5 @@
+{
+ "key": "footrest",
+ "type": "check",
+ "label": "Footrest"
+}
diff --git a/data/fields/fortification_type.json b/data/fields/fortification_type.json
new file mode 100644
index 00000000..e6ea0a73
--- /dev/null
+++ b/data/fields/fortification_type.json
@@ -0,0 +1,9 @@
+{
+ "key": "fortification_type",
+ "type": "combo",
+ "label": "Fortification Type",
+ "prerequisiteTag": {
+ "key": "archaeological_site",
+ "value": "fortification"
+ }
+}
diff --git a/data/fields/fuel/fuel_multi.json b/data/fields/fuel/fuel_multi.json
index 35d6248c..7e1fc83f 100644
--- a/data/fields/fuel/fuel_multi.json
+++ b/data/fields/fuel/fuel_multi.json
@@ -21,9 +21,11 @@
"octane_97": "Gasoline (97 Octane)",
"octane_98": "Gasoline (98 Octane)",
"octane_100": "Gasoline (100 Octane)",
+ "e5": "E5 Gasoline",
"e10": "E10 Gasoline",
"e85": "E85 Gasoline",
- "lpg": "Liquefied Natural Gas (LPG)",
+ "lpg": "Liquefied Petroleum Gas (LPG)",
+ "lng": "Liquefied Natural Gas (LNG)",
"cng": "Compressed Natural Gas (CNG)",
"propane": "Propane",
"LH2": "Liquid Hydrogen",
@@ -35,20 +37,20 @@
"autoSuggestions": true,
"caseSensitive": true,
"terms": [
- "diesel",
- "gas",
- "gasoline",
- "petrol",
- "ethanol",
"biodiesel",
"bioethanol",
+ "cng",
+ "diesel",
+ "ethanol",
"fuel",
"fuel mix",
- "mixture",
- "propane",
+ "gas",
+ "gasoline",
+ "lng",
"lpg",
- "cng",
- "lng"
+ "mixture",
+ "petrol",
+ "propane"
],
"locationSet": {
"exclude": [
diff --git a/data/fields/gender.json b/data/fields/gender.json
index be6bd7a4..7808e5b9 100644
--- a/data/fields/gender.json
+++ b/data/fields/gender.json
@@ -1,5 +1,5 @@
{
- "type": "radio",
+ "type": "manyCombo",
"keys": [
"male",
"female",
diff --git a/data/fields/gender_simple.json b/data/fields/gender_simple.json
new file mode 100644
index 00000000..4d7021a1
--- /dev/null
+++ b/data/fields/gender_simple.json
@@ -0,0 +1,13 @@
+{
+ "type": "manyCombo",
+ "keys": [
+ "female",
+ "male"
+ ],
+ "label": "{gender}",
+ "stringsCrossReference": "{gender}",
+ "options": [
+ "female",
+ "male"
+ ]
+}
diff --git a/data/fields/gnis/feature_id-US.json b/data/fields/gnis/feature_id-US.json
index e6d4bf85..7a6d648c 100644
--- a/data/fields/gnis/feature_id-US.json
+++ b/data/fields/gnis/feature_id-US.json
@@ -3,15 +3,15 @@
"type": "identifier",
"label": "GNIS Feature ID",
"urlFormat": "https://edits.nationalmap.gov/apps/gaz-domestic/public/summary/{value}",
- "pattern": "^[0-9]{1,}$",
+ "pattern": "^[1-9][0-9]*$",
"locationSet": {
"include": [
"us"
]
},
"terms": [
- "Federal Geographic Names Information Service",
- "United States Board on Geographic Names",
- "USA"
+ "federal geographic names information service",
+ "united states board on geographic names",
+ "usa"
]
}
diff --git a/data/fields/handrest.json b/data/fields/handrest.json
new file mode 100644
index 00000000..c92cba82
--- /dev/null
+++ b/data/fields/handrest.json
@@ -0,0 +1,6 @@
+{
+ "key": "handrest",
+ "type": "check",
+ "label": "Handrest",
+ "default": "yes"
+}
diff --git a/data/fields/hashtags.json b/data/fields/hashtags.json
index c096ae8b..c45b979d 100644
--- a/data/fields/hashtags.json
+++ b/data/fields/hashtags.json
@@ -3,5 +3,7 @@
"type": "semiCombo",
"label": "Hashtags",
"usage": "changeset",
- "placeholder": "#example"
+ "placeholder": "#example",
+ "autoSuggestions": false,
+ "caseSensitive": true
}
diff --git a/data/fields/hazard_boundary.json b/data/fields/hazard_boundary.json
new file mode 100644
index 00000000..d7ff255e
--- /dev/null
+++ b/data/fields/hazard_boundary.json
@@ -0,0 +1,19 @@
+{
+ "key": "hazard",
+ "type": "combo",
+ "strings": {
+ "options": {
+ "archery_range": "Arrows",
+ "avalanche": "Avalanche",
+ "biohazard": "Biohazard",
+ "contamination": "Chemical Contamination",
+ "electricity": "Electric Shock",
+ "shooting_range": "Gunfire",
+ "hole": "Hole",
+ "minefield": "Land Mines",
+ "nuclear": "Nuclear / Radioactive",
+ "quicksand": "Quicksand"
+ }
+ },
+ "label": "Hazard"
+}
diff --git a/data/fields/healthcare.json b/data/fields/healthcare.json
index 0e71c85d..09830cd9 100644
--- a/data/fields/healthcare.json
+++ b/data/fields/healthcare.json
@@ -1,5 +1,35 @@
{
"key": "healthcare",
"type": "typeCombo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "alternative": "Alternative Medicine",
+ "audiologist": "Audiologist",
+ "birthing_centre": "Birthing Center",
+ "blood_bank": "Blood Bank",
+ "blood_donation": "Blood Donation Center",
+ "clinic": "Clinic",
+ "community_health_worker": "Community Health Worker",
+ "counselling": "Counselling Center",
+ "dentist": "Dentist",
+ "dialysis": "Dialysis Center",
+ "doctor": "Doctor",
+ "hospice": "Hospice",
+ "hospital": "Hospital",
+ "laboratory": "Medical Laboratory",
+ "midwife": "Midwife",
+ "nurse": "Nurse",
+ "occupational_therapist": "Occupational Therapist",
+ "optometrist": "Optometrist",
+ "pharmacy": "Pharmacy",
+ "physiotherapist": "Physiotherapist",
+ "podiatrist": "Podiatrist",
+ "psychotherapist": "Psychotherapist",
+ "rehabilitation": "Rehabilitation Facility",
+ "sample_collection": "Sample Collection Facility",
+ "speech_therapist": "Speech Therapist",
+ "vaccination_centre": "Vaccination Center"
+ }
+ }
}
diff --git a/data/fields/healthcare_therapist.json b/data/fields/healthcare_therapist.json
new file mode 100644
index 00000000..fdf33d8a
--- /dev/null
+++ b/data/fields/healthcare_therapist.json
@@ -0,0 +1,12 @@
+{
+ "key": "healthcare",
+ "type": "typeCombo",
+ "options": [
+ "physiotherapist",
+ "psychotherapist",
+ "occupational_therapist",
+ "speech_therapist"
+ ],
+ "autoSuggestions": false,
+ "label": "{healthcare}"
+}
diff --git a/data/fields/historic.json b/data/fields/historic.json
index 56c29d99..b36758cf 100644
--- a/data/fields/historic.json
+++ b/data/fields/historic.json
@@ -1,5 +1,34 @@
{
"key": "historic",
"type": "typeCombo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "archaeological_site": "Archaeological Site",
+ "bomb_crater": "Bomb Crater",
+ "boundary_stone": "Boundary Stone",
+ "building": "Historic Building",
+ "castle": "Castle",
+ "charcoal_pile": "Charcoal Pile",
+ "church": "Church",
+ "city_gate": "City Gate",
+ "citywalls": "Citywall",
+ "fort": "Historic Fort",
+ "manor": "Manor House",
+ "memorial": "Memorial",
+ "milestone": "Milestone",
+ "millstone": "Millstone",
+ "mine": "Mine",
+ "mine_shaft": "Mine Shaft",
+ "monument": "Monument",
+ "pillory": "Historic Pillory",
+ "railway": "Railway",
+ "ruins": "Ruins",
+ "shieling": "Shieling",
+ "tomb": "Tomb",
+ "wayside_cross": "Wayside Cross",
+ "wayside_shrine": "Wayside Shrine",
+ "wreck": "Shipwreck"
+ }
+ }
}
diff --git a/data/fields/historic/wreck/date_sunk.json b/data/fields/historic/wreck/date_sunk.json
index 6c923c9b..0e1d153c 100644
--- a/data/fields/historic/wreck/date_sunk.json
+++ b/data/fields/historic/wreck/date_sunk.json
@@ -1,5 +1,5 @@
{
"key": "wreck:date_sunk",
- "type": "text",
+ "type": "date",
"label": "Date Sunk"
}
diff --git a/data/fields/horse_dressage.json b/data/fields/horse_dressage.json
deleted file mode 100644
index 5c4653b3..00000000
--- a/data/fields/horse_dressage.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "key": "sport",
- "type": "check",
- "label": "Dressage Riding",
- "strings": {
- "options": {
- "undefined": "No",
- "equestrian": "Yes"
- }
- },
- "reference": {
- "key": "sport",
- "value": "equestrian"
- }
-}
diff --git a/data/fields/horse_riding.json b/data/fields/horse_riding.json
index 88c7f904..4b74861b 100644
--- a/data/fields/horse_riding.json
+++ b/data/fields/horse_riding.json
@@ -1,7 +1,7 @@
{
"key": "leisure",
- "type": "check",
- "label": "Horseback Riding",
+ "type": "defaultCheck",
+ "label": "Horseback Riding Center",
"strings": {
"options": {
"undefined": "No",
diff --git a/data/fields/horse_scale.json b/data/fields/horse_scale.json
index 1ee106c1..2b84f4eb 100644
--- a/data/fields/horse_scale.json
+++ b/data/fields/horse_scale.json
@@ -10,7 +10,7 @@
"difficult": "Difficult: Way narrow and exposed. May contain obstacles to step over and narrow passages.",
"critical": "Borderline: Passable only for experienced riders and horses. Major obstacles. Bridges should be examined carefully.",
"dangerous": "Dangerous: Passable only for very experienced riders and horses and only in good weather. Dismount.",
- "impossible": "Impassable: Way or bridge not passable for horses. Too narrow, insuffient support, obstacles like ladders. Danger of life."
+ "impossible": "Impassable: Way or bridge not passable for horses. Too narrow, insufficient support, obstacles like ladders. Danger of life."
}
},
"autoSuggestions": false,
diff --git a/data/fields/horse_stables.json b/data/fields/horse_stables.json
deleted file mode 100644
index 57dd3804..00000000
--- a/data/fields/horse_stables.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "key": "amenity",
- "type": "check",
- "label": "Riding Stable",
- "strings": {
- "options": {
- "undefined": "No",
- "stables": "Yes"
- }
- },
- "reference": {
- "key": "amenity",
- "value": "stables"
- }
-}
diff --git a/data/fields/house.json b/data/fields/house.json
new file mode 100644
index 00000000..e7fc4f6b
--- /dev/null
+++ b/data/fields/house.json
@@ -0,0 +1,38 @@
+{
+ "key": "house",
+ "type": "combo",
+ "label": "House Type",
+ "strings": {
+ "options": {
+ "bungalow": {
+ "title": "Bungalow",
+ "description": "A small house with a single storey"
+ },
+ "detached": {
+ "title": "Detached House",
+ "description": "A house that is not connected to any other houses"
+ },
+ "link-detached": {
+ "title": "Link-Detached House",
+ "description": "A house that is connected to another house by a garage or other non-living area"
+ },
+ "maisonette": {
+ "title": "Maisonette",
+ "description": "A residential dwelling, split over two floors with private external entrances rather than a communal entrance"
+ },
+ "semi-detached": {
+ "title": "Semi-Detached House",
+ "description": "A house that is attached to another house on one side"
+ },
+ "terrace": {
+ "title": "Row of Townhouses",
+ "description": "A row of houses that are attached to each other in a line (mapping each house as a separate area is preferred)"
+ },
+ "terraced": {
+ "title": "Single Townhouse",
+ "description": "Individual house in a row of townhouses"
+ }
+ }
+ },
+ "autoSuggestions": false
+}
diff --git a/data/fields/internet_access/fee.json b/data/fields/internet_access/fee.json
index 41dcfdfa..82fce9ff 100644
--- a/data/fields/internet_access/fee.json
+++ b/data/fields/internet_access/fee.json
@@ -1,7 +1,7 @@
{
"key": "internet_access:fee",
"type": "combo",
- "label": "Internet Access",
+ "label": "Internet Access Fee",
"strings": {
"options": {
"no": "Free",
diff --git a/data/fields/irrigation_pivot.json b/data/fields/irrigation_pivot.json
new file mode 100644
index 00000000..7c38a220
--- /dev/null
+++ b/data/fields/irrigation_pivot.json
@@ -0,0 +1,16 @@
+{
+ "key": "irrigation",
+ "type": "defaultCheck",
+ "label": "Center-Pivot Irrigation",
+ "terms": [
+ "central pivot irrigation",
+ "circle irrigation",
+ "water wheel"
+ ],
+ "strings": {
+ "options": {
+ "undefined": "No",
+ "pivot": "Yes"
+ }
+ }
+}
diff --git a/data/fields/kerb.json b/data/fields/kerb.json
index 2ce63154..d03f2ea3 100644
--- a/data/fields/kerb.json
+++ b/data/fields/kerb.json
@@ -1,5 +1,39 @@
{
"key": "kerb",
"type": "combo",
- "label": "Curb"
+ "label": "Curb",
+ "strings": {
+ "options": {
+ "flush": {
+ "title": "Flush",
+ "description": "A dropped curb which is level with the surrounding area."
+ },
+ "lowered": {
+ "title": "Lowered",
+ "description": "A dropped curb which can be used by wheelchair users, not higher than a few centimeters."
+ },
+ "no": {
+ "title": "No",
+ "description": "There is no curb present at this location."
+ },
+ "raised": {
+ "title": "Raised",
+ "description": "A raised curb which can't easily be used by wheelchair users, higher than a few centimeters."
+ },
+ "rolled": {
+ "title": "Rolled",
+ "description": "A raised curb with a rounded edge which makes it easier to use for cars or bicycles, but not for wheelchairs."
+ },
+ "yes": {
+ "title": "Yes",
+ "description": "Some sort of curb is present at this location, unknown whether it is raised, lowered, flush etc."
+ }
+ }
+ },
+ "icons": {
+ "raised": "temaki-kerb-raised",
+ "lowered": "temaki-kerb-lowered",
+ "flush": "temaki-kerb-flush",
+ "rolled": "temaki-kerb-rolled"
+ }
}
diff --git a/data/fields/kerb/kerb_barrier.json b/data/fields/kerb/kerb_barrier.json
new file mode 100644
index 00000000..81149f0b
--- /dev/null
+++ b/data/fields/kerb/kerb_barrier.json
@@ -0,0 +1,14 @@
+{
+ "key": "kerb",
+ "type": "combo",
+ "label": "Type",
+ "stringsCrossReference": "{kerb}",
+ "options": [
+ "flush",
+ "lowered",
+ "raised",
+ "rolled"
+ ],
+ "autoSuggestions": false,
+ "iconsCrossReference": "{kerb}"
+}
diff --git a/data/fields/kneipp_water_cure_multi.json b/data/fields/kneipp_water_cure_multi.json
index 48e539af..4190916b 100644
--- a/data/fields/kneipp_water_cure_multi.json
+++ b/data/fields/kneipp_water_cure_multi.json
@@ -1,5 +1,12 @@
{
"key": "kneipp_water_cure:",
"type": "multiCombo",
- "label": "Basin Types"
+ "label": "Basin Types",
+ "strings": {
+ "options": {
+ "foot": "Foot Basin",
+ "arm": "Arm Basin",
+ "face": "Face Basin"
+ }
+ }
}
diff --git a/data/fields/layer_1.json b/data/fields/layer_1.json
new file mode 100644
index 00000000..c88b810f
--- /dev/null
+++ b/data/fields/layer_1.json
@@ -0,0 +1,7 @@
+{
+ "key": "layer",
+ "type": "number",
+ "label": "{layer}",
+ "placeholder": "0",
+ "default": "1"
+}
diff --git a/data/fields/leaf_type.json b/data/fields/leaf_type.json
index 1c784c5c..59b69196 100644
--- a/data/fields/leaf_type.json
+++ b/data/fields/leaf_type.json
@@ -10,6 +10,10 @@
"leafless": "Leafless"
}
},
+ "icons": {
+ "broadleaved": "maki-park",
+ "needleleaved": "roentgen-needleleaved_tree"
+ },
"autoSuggestions": false,
"customValues": false
}
diff --git a/data/fields/leaf_type_singular.json b/data/fields/leaf_type_singular.json
index 2b2cb1e3..b43434e0 100644
--- a/data/fields/leaf_type_singular.json
+++ b/data/fields/leaf_type_singular.json
@@ -3,6 +3,7 @@
"type": "combo",
"label": "Leaf Type",
"stringsCrossReference": "{leaf_type}",
+ "iconsCrossReference": "{leaf_type}",
"options": [
"broadleaved",
"needleleaved",
diff --git a/data/fields/level_semi.json b/data/fields/level_semi.json
index 673681d1..b49fe137 100644
--- a/data/fields/level_semi.json
+++ b/data/fields/level_semi.json
@@ -5,8 +5,8 @@
"terms": [
"building floors",
"decks",
- "stories",
"storeys",
+ "stories",
"storys"
]
}
diff --git a/data/fields/lifeguard.json b/data/fields/lifeguard.json
index acdc4ef7..c79fbbfd 100644
--- a/data/fields/lifeguard.json
+++ b/data/fields/lifeguard.json
@@ -1,8 +1,11 @@
{
"key": "lifeguard",
- "type": "check",
- "label": "Lifeguard",
- "terms": [
- "lifesaver"
- ]
+ "type": "radio",
+ "label": "Type",
+ "strings": {
+ "options": {
+ "base": "Lifeguard Base",
+ "tower": "Lifeguard Tower"
+ }
+ }
}
diff --git a/data/fields/lifeguard_check.json b/data/fields/lifeguard_check.json
new file mode 100644
index 00000000..acdc4ef7
--- /dev/null
+++ b/data/fields/lifeguard_check.json
@@ -0,0 +1,8 @@
+{
+ "key": "lifeguard",
+ "type": "check",
+ "label": "Lifeguard",
+ "terms": [
+ "lifesaver"
+ ]
+}
diff --git a/data/fields/lift_gate/type.json b/data/fields/lift_gate/type.json
new file mode 100644
index 00000000..f70900eb
--- /dev/null
+++ b/data/fields/lift_gate/type.json
@@ -0,0 +1,15 @@
+{
+ "key": "lift_gate:type",
+ "type": "combo",
+ "label": "Type",
+ "strings": {
+ "options": {
+ "single": "Single Bar",
+ "double": "Opposing Bars"
+ }
+ },
+ "reference": {
+ "key": "barrier",
+ "value": "lift_gate"
+ }
+}
diff --git a/data/fields/loc_name.json b/data/fields/loc_name.json
new file mode 100644
index 00000000..1970af92
--- /dev/null
+++ b/data/fields/loc_name.json
@@ -0,0 +1,15 @@
+{
+ "key": "loc_name",
+ "type": "localized",
+ "label": "Local Name",
+ "universal": true,
+ "terms": [
+ "colloquial name",
+ "common name",
+ "informal name",
+ "nickname"
+ ],
+ "prerequisiteTag": {
+ "key": "name"
+ }
+}
diff --git a/data/fields/manufacturer/wikidata.json b/data/fields/manufacturer/wikidata.json
new file mode 100644
index 00000000..5c42886b
--- /dev/null
+++ b/data/fields/manufacturer/wikidata.json
@@ -0,0 +1,9 @@
+{
+ "key": "manufacturer:wikidata",
+ "keys": [
+ "manufacturer:wikidata",
+ "manufacturer:wikipedia"
+ ],
+ "type": "wikidata",
+ "label": "Manufacturer Wikidata"
+}
diff --git a/data/fields/map_type.json b/data/fields/map_type.json
index 4341ed6b..86176d26 100644
--- a/data/fields/map_type.json
+++ b/data/fields/map_type.json
@@ -1,5 +1,15 @@
{
"key": "map_type",
"type": "typeCombo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "topo": "Topographical Map",
+ "street": "Road Map",
+ "scheme": "Schematic Map",
+ "toposcope": "Toposcope"
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": false
}
diff --git a/data/fields/marker.json b/data/fields/marker.json
index e50e5955..a0c93c51 100644
--- a/data/fields/marker.json
+++ b/data/fields/marker.json
@@ -1,5 +1,33 @@
{
"key": "marker",
"type": "typeCombo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "aerial": {
+ "title": "Aerial",
+ "description": "Designed to be visible from the air."
+ },
+ "ground": {
+ "title": "Ground",
+ "description": "Flat marker laid in the ground."
+ },
+ "pedestal": {
+ "title": "Pedestal",
+ "description": "Raised marker mounted on a small base."
+ },
+ "plate": {
+ "title": "Plate",
+ "description": "Flat marker mounted directly on walls or similar."
+ },
+ "post": {
+ "title": "Post",
+ "description": "Raised marker mounted on a small pole or mast."
+ },
+ "stone": {
+ "title": "Stone",
+ "description": "Markings directly etched or painted on a stone."
+ }
+ }
+ }
}
diff --git a/data/fields/material.json b/data/fields/material.json
index 50911c20..ff219014 100644
--- a/data/fields/material.json
+++ b/data/fields/material.json
@@ -1,5 +1,31 @@
{
"key": "material",
"type": "combo",
- "label": "Material"
+ "label": "Material",
+ "strings": {
+ "options": {
+ "adobe": "Adobe",
+ "aluminium": "Aluminum",
+ "brass": "Brass",
+ "brick": "Brick",
+ "bronze": "Bronze",
+ "concrete": "Concrete",
+ "dry_stone": "Dry Stone",
+ "glass": "Glass",
+ "granite": "Granite",
+ "iron": "Iron",
+ "limestone": "Limestone",
+ "marble": "Marble",
+ "metal": "Metal",
+ "plastic": "Plastic",
+ "reinforced_concrete": "Reinforced Concrete",
+ "rock": "Rock",
+ "sand": "Sand",
+ "sandstone": "Sandstone",
+ "soil": "Soil, Earth",
+ "steel": "Steel",
+ "stone": "Stone",
+ "wood": "Wood"
+ }
+ }
}
diff --git a/data/fields/maxaxleload_bridge.json b/data/fields/maxaxleload_bridge.json
new file mode 100644
index 00000000..ab13e4db
--- /dev/null
+++ b/data/fields/maxaxleload_bridge.json
@@ -0,0 +1,10 @@
+{
+ "key": "maxaxleload",
+ "type": "combo",
+ "label": "Axle Weight Limit",
+ "snake_case": false,
+ "prerequisiteTag": {
+ "key": "bridge",
+ "valueNot": "no"
+ }
+}
diff --git a/data/fields/maxheight.json b/data/fields/maxheight.json
index 63a8e520..1363aa2e 100644
--- a/data/fields/maxheight.json
+++ b/data/fields/maxheight.json
@@ -1,6 +1,9 @@
{
"key": "maxheight",
"type": "roadheight",
- "label": "Max Height",
+ "label": "Height Limit",
+ "terms": [
+ "clearance"
+ ],
"snake_case": false
}
diff --git a/data/fields/maxlength.json b/data/fields/maxlength.json
new file mode 100644
index 00000000..0720da51
--- /dev/null
+++ b/data/fields/maxlength.json
@@ -0,0 +1,6 @@
+{
+ "key": "maxlength",
+ "type": "roadheight",
+ "label": "Length Limit",
+ "snake_case": false
+}
diff --git a/data/fields/maxstay.json b/data/fields/maxstay.json
index 54efad72..a55b333c 100644
--- a/data/fields/maxstay.json
+++ b/data/fields/maxstay.json
@@ -1,7 +1,7 @@
{
"key": "maxstay",
"type": "combo",
- "label": "Max Stay",
+ "label": "Time Limit",
"options": [
"15 minutes",
"30 minutes",
diff --git a/data/fields/maxweight.json b/data/fields/maxweight.json
index 973aa5bb..a05b1df3 100644
--- a/data/fields/maxweight.json
+++ b/data/fields/maxweight.json
@@ -1,6 +1,6 @@
{
"key": "maxweight",
"type": "combo",
- "label": "Max Weight",
+ "label": "Weight Limit",
"snake_case": false
}
diff --git a/data/fields/maxwidth.json b/data/fields/maxwidth.json
index 6c4ee83c..f9263e3a 100644
--- a/data/fields/maxwidth.json
+++ b/data/fields/maxwidth.json
@@ -1,6 +1,6 @@
{
"key": "maxwidth",
"type": "roadheight",
- "label": "Max Width",
+ "label": "Width Limit",
"snake_case": false
}
diff --git a/data/fields/maxwidth/physical.json b/data/fields/maxwidth/physical.json
new file mode 100644
index 00000000..d8e20dc4
--- /dev/null
+++ b/data/fields/maxwidth/physical.json
@@ -0,0 +1,6 @@
+{
+ "key": "maxwidth:physical",
+ "type": "roadheight",
+ "label": "Width Limit",
+ "snake_case": false
+}
diff --git a/data/fields/memorial.json b/data/fields/memorial.json
index 0fd2418a..b5d0d2ba 100644
--- a/data/fields/memorial.json
+++ b/data/fields/memorial.json
@@ -1,5 +1,21 @@
{
"key": "memorial",
"type": "combo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "blue_plaque": "Blue Plaque",
+ "bust": "Bust",
+ "cross": "Memorial Cross",
+ "ghost_bike": "Ghost Bike",
+ "obelisk": "Obelisk",
+ "plaque": "Commemorative Plaque",
+ "sculpture": "Sculpture",
+ "statue": "Statue",
+ "stele": "Stele",
+ "stolperstein": "Stolperstein",
+ "stone": "Stone",
+ "war_memorial": "War Memorial"
+ }
+ }
}
diff --git a/data/fields/memorial/addr.json b/data/fields/memorial/addr.json
new file mode 100644
index 00000000..3d3e5079
--- /dev/null
+++ b/data/fields/memorial/addr.json
@@ -0,0 +1,8 @@
+{
+ "type": "text",
+ "key": "memorial:addr",
+ "label": "Nearest Building Address",
+ "prerequisiteTag": {
+ "keyNot": "memorial:addr:street"
+ }
+}
diff --git a/data/fields/memorial/addr_subtags.json b/data/fields/memorial/addr_subtags.json
new file mode 100644
index 00000000..8e00e999
--- /dev/null
+++ b/data/fields/memorial/addr_subtags.json
@@ -0,0 +1,16 @@
+{
+ "type": "address",
+ "key": "memorial:addr",
+ "keys": [
+ "memorial:addr:city",
+ "memorial:addr:housename",
+ "memorial:addr:housenumber",
+ "memorial:addr:place",
+ "memorial:addr:postcode",
+ "memorial:addr:street"
+ ],
+ "label": "{memorial/addr}",
+ "prerequisiteTag": {
+ "key": "memorial:addr:street"
+ }
+}
diff --git a/data/fields/message.json b/data/fields/message.json
new file mode 100644
index 00000000..853f5275
--- /dev/null
+++ b/data/fields/message.json
@@ -0,0 +1,5 @@
+{
+ "key": "message",
+ "type": "combo",
+ "label": "Message"
+}
diff --git a/data/fields/military_service.json b/data/fields/military_service.json
index d1592ded..91daf686 100644
--- a/data/fields/military_service.json
+++ b/data/fields/military_service.json
@@ -1,5 +1,14 @@
{
"key": "military_service",
"type": "combo",
- "label": "Military Service"
+ "label": "Military Service",
+ "strings": {
+ "options": {
+ "air_force": "Air Force",
+ "army": "Army",
+ "coast_guard": "Coast Guard",
+ "marines": "Marines",
+ "navy": "Navy"
+ }
+ }
}
diff --git a/data/fields/mobile.json b/data/fields/mobile.json
new file mode 100644
index 00000000..b5fe9ebd
--- /dev/null
+++ b/data/fields/mobile.json
@@ -0,0 +1,13 @@
+{
+ "key": "mobile",
+ "keys": [
+ "mobile",
+ "contact:mobile"
+ ],
+ "type": "tel",
+ "label": "Mobile Phone",
+ "placeholder": "+31 42 123 4567",
+ "terms": [
+ "phone number"
+ ]
+}
diff --git a/data/fields/model/wikidata.json b/data/fields/model/wikidata.json
new file mode 100644
index 00000000..57d66503
--- /dev/null
+++ b/data/fields/model/wikidata.json
@@ -0,0 +1,9 @@
+{
+ "key": "model:wikidata",
+ "keys": [
+ "model:wikidata",
+ "model:wikipedia"
+ ],
+ "type": "wikidata",
+ "label": "Model Wikidata"
+}
diff --git a/data/fields/mooring.json b/data/fields/mooring.json
new file mode 100644
index 00000000..7b4d4a1f
--- /dev/null
+++ b/data/fields/mooring.json
@@ -0,0 +1,14 @@
+{
+ "key": "mooring",
+ "type": "combo",
+ "label": "Mooring",
+ "strings": {
+ "options": {
+ "yes": "Yes",
+ "no": "No",
+ "private": "Private",
+ "commercial": "Commercial",
+ "guest": "Guests"
+ }
+ }
+}
diff --git a/data/fields/nat_name.json b/data/fields/nat_name.json
new file mode 100644
index 00000000..f0bbd060
--- /dev/null
+++ b/data/fields/nat_name.json
@@ -0,0 +1,9 @@
+{
+ "key": "nat_name",
+ "type": "localized",
+ "label": "National Name",
+ "universal": true,
+ "prerequisiteTag": {
+ "key": "name"
+ }
+}
diff --git a/data/fields/nudism.json b/data/fields/nudism.json
new file mode 100644
index 00000000..f77db02d
--- /dev/null
+++ b/data/fields/nudism.json
@@ -0,0 +1,23 @@
+{
+ "key": "nudism",
+ "type": "combo",
+ "label": "Nudism",
+ "strings": {
+ "options": {
+ "customary": "Customary",
+ "designated": "Designated",
+ "no": "Prohibited",
+ "obligatory": "Obligatory",
+ "permissive": "Permissive",
+ "yes": "Allowed"
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": false,
+ "terms": [
+ "naturism",
+ "naturist",
+ "nude recreation",
+ "nudist"
+ ]
+}
diff --git a/data/fields/office.json b/data/fields/office.json
index c9f76a2e..c24a7ac1 100644
--- a/data/fields/office.json
+++ b/data/fields/office.json
@@ -1,5 +1,56 @@
{
"key": "office",
"type": "typeCombo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "accountant": "Accountant Office",
+ "adoption_agency": "Adoption Agency",
+ "advertising_agency": "Advertising Agency",
+ "architect": "Architect Office",
+ "association": "Nonprofit Organization Office",
+ "charity": "Charity Office",
+ "company": "Corporate Office",
+ "construction_company": "Construction Company Office",
+ "consulting": "Consultancy Office",
+ "courier": "Courier Office",
+ "coworking": "Coworking Space",
+ "diplomatic": "Diplomatic Office",
+ "educational_institution": "Educational Institution",
+ "employment_agency": "Employment Agency",
+ "energy_supplier": "Energy Supplier Office",
+ "engineer": "Engineering Office",
+ "estate_agent": "Real Estate Office",
+ "financial": "Financial Office",
+ "financial_advisor": "Financial Advisor",
+ "forestry": "Forestry Office",
+ "foundation": "Foundation Office",
+ "government": "Government Office",
+ "graphic_design": "Graphic Design Office",
+ "guide": "Tour Guide Office",
+ "insurance": "Insurance Office",
+ "it": "Information Technology Office",
+ "lawyer": "Law Office",
+ "logistics": "Forwarding Agency",
+ "moving_company": "Moving Company Office",
+ "newspaper": "Newspaper Office",
+ "ngo": "NGO Office",
+ "notary": "Notary Office",
+ "physician": "Physician",
+ "political_party": "Political Party Office",
+ "private_investigator": "Private Investigator Office",
+ "property_management": "Property Management Office",
+ "quango": "Quasi-NGO Office",
+ "religion": "Religious Office",
+ "research": "Research Office",
+ "security": "Security Office",
+ "surveyor": "Surveyor Office",
+ "tax_advisor": "Tax Advisor Office",
+ "telecommunication": "Telecom Office",
+ "therapist": "Therapist Office",
+ "travel_agent": "Travel Agency",
+ "union": "Labor Union Office",
+ "water_utility": "Water Utility Office"
+ }
+ }
}
diff --git a/data/fields/official_name.json b/data/fields/official_name.json
new file mode 100644
index 00000000..02376255
--- /dev/null
+++ b/data/fields/official_name.json
@@ -0,0 +1,14 @@
+{
+ "key": "official_name",
+ "type": "localized",
+ "label": "Official Name",
+ "universal": true,
+ "terms": [
+ "formal name",
+ "full name",
+ "legal name"
+ ],
+ "prerequisiteTag": {
+ "key": "name"
+ }
+}
diff --git a/data/fields/opening.json b/data/fields/opening.json
new file mode 100644
index 00000000..4e8da3c9
--- /dev/null
+++ b/data/fields/opening.json
@@ -0,0 +1,10 @@
+{
+ "key": "opening",
+ "type": "number",
+ "label": "Opening Width (Meters)",
+ "snake_case": false,
+ "prerequisiteTag": {
+ "key": "cycle_barrier",
+ "valueNot": "single"
+ }
+}
diff --git a/data/fields/opening_date.json b/data/fields/opening_date.json
index 186b42f5..021ed1ac 100644
--- a/data/fields/opening_date.json
+++ b/data/fields/opening_date.json
@@ -1,6 +1,6 @@
{
"key": "opening_date",
- "type": "text",
+ "type": "date",
"label": "Expected Opening Date",
"placeholder": "YYYY-MM-DD"
}
diff --git a/data/fields/opening_hours/covid19.json b/data/fields/opening_hours/covid19.json
deleted file mode 100644
index 81acbb4d..00000000
--- a/data/fields/opening_hours/covid19.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "key": "opening_hours:covid19",
- "type": "combo",
- "label": "COVID-19 Pandemic Hours",
- "terms": [
- "coronavirus",
- "lockdown",
- "opening hours",
- "SARS‑CoV‑2"
- ],
- "snake_case": false,
- "caseSensitive": true
-}
diff --git a/data/fields/opening_hours/drive_through.json b/data/fields/opening_hours/drive_through.json
new file mode 100644
index 00000000..1f008de3
--- /dev/null
+++ b/data/fields/opening_hours/drive_through.json
@@ -0,0 +1,12 @@
+{
+ "key": "opening_hours:drive_through",
+ "type": "combo",
+ "label": "Drive Through Hours",
+ "placeholder": "Same as regular business hours",
+ "prerequisiteTag": {
+ "key": "drive_through",
+ "value": "yes"
+ },
+ "snake_case": false,
+ "caseSensitive": true
+}
diff --git a/data/fields/orientation/orientation_parking.json b/data/fields/orientation/orientation_parking.json
new file mode 100644
index 00000000..d3959c61
--- /dev/null
+++ b/data/fields/orientation/orientation_parking.json
@@ -0,0 +1,12 @@
+{
+ "key": "orientation",
+ "type": "combo",
+ "label": "Orientation",
+ "options": [
+ "parallel",
+ "diagonal",
+ "perpendicular"
+ ],
+ "stringsCrossReference": "{parking/side/orientation}",
+ "autoSuggestions": false
+}
diff --git a/data/fields/overlap.json b/data/fields/overlap.json
new file mode 100644
index 00000000..f07d3cf4
--- /dev/null
+++ b/data/fields/overlap.json
@@ -0,0 +1,10 @@
+{
+ "key": "overlap",
+ "type": "number",
+ "label": "Overlap Width (Meters)",
+ "snake_case": false,
+ "prerequisiteTag": {
+ "key": "cycle_barrier",
+ "valueNot": "single"
+ }
+}
diff --git a/data/fields/panoramax.json b/data/fields/panoramax.json
new file mode 100644
index 00000000..e155280c
--- /dev/null
+++ b/data/fields/panoramax.json
@@ -0,0 +1,8 @@
+{
+ "key": "panoramax",
+ "type": "identifier",
+ "label": "Panoramax Image ID",
+ "urlFormat": "https://api.panoramax.xyz/#focus=pic&pic={value}",
+ "pattern": "^[a-zA-Z0-9-]{36,}$",
+ "universal": true
+}
diff --git a/data/fields/parking.json b/data/fields/parking.json
index 1475e7e6..f5fba4cc 100644
--- a/data/fields/parking.json
+++ b/data/fields/parking.json
@@ -4,16 +4,58 @@
"label": "Type",
"strings": {
"options": {
- "surface": "Surface",
- "underground": "Underground",
- "multi-storey": "Multilevel",
- "lane": "Roadside Lane",
- "carports": "Carports",
- "garage_boxes": "Garage Boxes",
- "rooftop": "Rooftop",
- "sheds": "Sheds",
- "street_side": "Street-Side",
- "layby": "Turnout / Lay-By"
+ "surface": {
+ "title": "Surface",
+ "description": "One level of parking on the ground."
+ },
+ "street_side": {
+ "title": "Street-Side",
+ "description": "Parking directly adjacent to the street (but not on it)."
+ },
+ "lane": {
+ "title": "Roadside Lane",
+ "description": "Parking on the street (which could be easily converted to a travel lane)."
+ },
+ "underground": {
+ "title": "Underground",
+ "description": "Underground parking."
+ },
+ "multi-storey": {
+ "title": "Multilevel",
+ "description": "Two or more levels of parking decks in a building structure."
+ },
+ "rooftop": {
+ "title": "Rooftop",
+ "description": "One level of a parking deck on top of a building."
+ },
+ "carports": {
+ "title": "Carports",
+ "description": "Structure used to offer limited protection to vehicles, typically without walls."
+ },
+ "garage_boxes": {
+ "title": "Garage Boxes",
+ "description": "Private garage with multiple individual boxes for one car each."
+ },
+ "sheds": {
+ "title": "Sheds",
+ "description": "Private hangars for vehicles."
+ },
+ "layby": {
+ "title": "Turnout / Lay-By",
+ "description": "Parking at a rest area, alongside a road."
+ },
+ "on_kerb": {
+ "title": "On Kerb",
+ "description": "Parking on the sidewalk."
+ },
+ "half_on_kerb": {
+ "title": "Half On Kerb",
+ "description": "Parking partially on the sidewalk."
+ },
+ "shoulder": {
+ "title": "Shoulder",
+ "description": "Parking on the shoulder."
+ }
}
},
"autoSuggestions": false,
diff --git a/data/fields/parking/orientation.json b/data/fields/parking/orientation.json
deleted file mode 100644
index a6cb4582..00000000
--- a/data/fields/parking/orientation.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "key": "parking:orientation",
- "type": "combo",
- "label": "Orientation",
- "strings": {
- "options": {
- "parallel": "Parallel to the Street",
- "diagonal": "Diagonal in Relation to the Street",
- "perpendicular": "Meets the Street at a Straight Angle"
- }
- },
- "autoSuggestions": false
-}
diff --git a/data/fields/parking/side/orientation.json b/data/fields/parking/side/orientation.json
new file mode 100644
index 00000000..34be2621
--- /dev/null
+++ b/data/fields/parking/side/orientation.json
@@ -0,0 +1,25 @@
+{
+ "key": "parking:both:orientation",
+ "keys": [
+ "parking:left:orientation",
+ "parking:right:orientation"
+ ],
+ "reference": {
+ "key": "orientation"
+ },
+ "type": "directionalCombo",
+ "label": "Parking Orientation",
+ "strings": {
+ "types": {
+ "parking:left:orientation": "Left side",
+ "parking:right:orientation": "Right side"
+ },
+ "options": {
+ "parallel": "Parallel to the Street",
+ "diagonal": "Diagonal in Relation to the Street (~45°)",
+ "perpendicular": "Meets the Street at a Straight Angle (~90°)"
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": false
+}
diff --git a/data/fields/parking/side/parking.json b/data/fields/parking/side/parking.json
new file mode 100644
index 00000000..6a0c694a
--- /dev/null
+++ b/data/fields/parking/side/parking.json
@@ -0,0 +1,30 @@
+{
+ "key": "parking:both",
+ "keys": [
+ "parking:left",
+ "parking:right"
+ ],
+ "reference": {
+ "key": "parking"
+ },
+ "type": "directionalCombo",
+ "label": "Parking",
+ "strings": {
+ "types": {
+ "parking:left": "Left side",
+ "parking:right": "Right side"
+ },
+ "options": {
+ "lane": "Roadside Lane",
+ "street_side": "Street-Side",
+ "on_kerb": "On Kerb",
+ "half_on_kerb": "Half On Kerb",
+ "shoulder": "Shoulder",
+ "no": "No",
+ "separate": "Parking mapped separately",
+ "yes": "Yes (unspecified)"
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": false
+}
diff --git a/data/fields/payment_multi.json b/data/fields/payment_multi.json
index 0d3e70c5..ec9ab012 100644
--- a/data/fields/payment_multi.json
+++ b/data/fields/payment_multi.json
@@ -2,6 +2,9 @@
"key": "payment:",
"type": "multiCombo",
"label": "Payment Types",
+ "reference": {
+ "key": "payment:*"
+ },
"strings": {
"options": {
"account_cards": "Account Card",
diff --git a/data/fields/phone.json b/data/fields/phone.json
index fe129ed9..70b17ee2 100644
--- a/data/fields/phone.json
+++ b/data/fields/phone.json
@@ -1,8 +1,12 @@
{
"key": "phone",
+ "keys": [
+ "phone",
+ "contact:phone"
+ ],
"type": "tel",
"label": "Telephone",
- "placeholder": "+31 42 123 4567",
+ "placeholder": "+000 0000 0000 0000",
"terms": [
"phone number"
]
diff --git a/data/fields/picnic_table.json b/data/fields/picnic_table.json
new file mode 100644
index 00000000..baf6fa46
--- /dev/null
+++ b/data/fields/picnic_table.json
@@ -0,0 +1,9 @@
+{
+ "key": "picnic_table",
+ "type": "check",
+ "label": "Picnic Table",
+ "terms": [
+ "bench",
+ "outdoor table"
+ ]
+}
diff --git a/data/fields/piste/type.json b/data/fields/piste/type.json
index e5f3a2cd..8601b445 100644
--- a/data/fields/piste/type.json
+++ b/data/fields/piste/type.json
@@ -13,7 +13,8 @@
"ice_skate": "Ice Skate",
"snow_park": "Snow Park",
"playground": "Playground",
- "connection": "Connection"
+ "connection": "Connection",
+ "ski_jump": "Ski Jump"
}
},
"autoSuggestions": false,
diff --git a/data/fields/playground.json b/data/fields/playground.json
index e1d674bc..d4e32950 100644
--- a/data/fields/playground.json
+++ b/data/fields/playground.json
@@ -1,5 +1,94 @@
{
"key": "playground",
"type": "combo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "activitypanel": "Activity Panel",
+ "aerialrotator": "Aerial Rotator",
+ "archimedes_screw": "Archimedes Screw",
+ "balance": "Balancing Device (unspecified)",
+ "balancebeam": "Balance Beam",
+ "ball_pool": "Ball Pool",
+ "bannister_bars": "Banister Bars",
+ "basketrotator": "Basket Rotator",
+ "basketswing": "Basket Swing",
+ "belt_bridge": "Belt Bridge",
+ "blackboard": "Blackboard",
+ "bridge": "Bridge",
+ "cushion": "Bouncy Cushion",
+ "chute": "Chute",
+ "climbing": "Climbing Device (unspecified)",
+ "climbing_pole": "Climbing Pole",
+ "climbing_slope": "Climbing Slope",
+ "climbingframe": "Climbing Frame",
+ "climbingwall": "Climbing Wall",
+ "dome": "Dome",
+ "excavator": "Excavator",
+ "exercise": "Exercise Device",
+ "funnel_ball": "Funnel Ball",
+ "hammock": "Hammock",
+ "hamster_wheel": "Hamster Wheel",
+ "hopscotch": "Hopscotch",
+ "horizontal_bar": "Horizontal Bar",
+ "ladder": "Ladder",
+ "map": "Map",
+ "maze": "Maze",
+ "marble_run": "Marble Run",
+ "monkey_bars": "Monkey Bars",
+ "mound": "Artificial Mound",
+ "musical_instrument": "Musical Instrument",
+ "parallel_bars": "Parallel Bars",
+ "platform": "Platform",
+ "playhouse": "Playhouse",
+ "pump": "Pump",
+ "ride_on": "Fixed Riding Device",
+ "rope_swing": "Rope Swing",
+ "rope_traverse": "Rope Traverse",
+ "rotator": "Rotating Device (unspecified)",
+ "roundabout": "Merry-Go-Round / Roundabout",
+ "sand": "Sand Play Device (unspecified)",
+ "sand_pulley": "Sand Pulley",
+ "sand_seesaw": "Sand Seesaw",
+ "sand_wheel": "Sand Wheel",
+ "sandpit": "Sandbox / Sandpit",
+ "seat": "Seat",
+ "seesaw": "Seesaw",
+ "sieve": "Sieve",
+ "sledding": "Sledding Hill",
+ "slide": "Slide",
+ "speaking_tube": "Speaking Tube",
+ "spinner": "Spinner",
+ "spinner_bowl": "Spinner Bowl",
+ "spinning_circle": "Spinning Circle",
+ "spinning_disc": "Spinning Disc",
+ "spring_board": "Spring Board",
+ "springy": "Spring Rider",
+ "splash_pad": "Splash Pad",
+ "stepping_post": "Stepping Post",
+ "stepping_stone": "Stepping Stone",
+ "steps": "Steps",
+ "structure": "Playground Structure",
+ "swing": "Swing",
+ "baby_swing": "Baby Swing",
+ "tire_swing": "Tire Swing",
+ "table": "Table",
+ "teenshelter": "Teen Shelter",
+ "track": "Playground Track",
+ "trampoline": "Trampoline",
+ "tunnel_tube": "Tunnel Tube",
+ "water": "Water Device (unspecified)",
+ "water_barrier": "Water Barrier",
+ "water_basin": "Water Basin",
+ "water_cannon": "Water Cannon",
+ "water_channel": "Water Channel",
+ "water_seesaw": "Water Seesaw",
+ "water_sprayer": "Water Sprayer",
+ "water_stream": "Water Stream",
+ "water_wheel": "Water Wheel",
+ "wobble_bridge": "Wobble Bridge",
+ "youth_bench": "Youth Bench",
+ "zipwire": "Zipline / Zipwire"
+ }
+ }
}
diff --git a/data/fields/post.json b/data/fields/post.json
index fb22ab38..7b726971 100644
--- a/data/fields/post.json
+++ b/data/fields/post.json
@@ -4,11 +4,9 @@
"keys": [
"post:block_number",
"post:city",
- "post:block_number",
"post:conscriptionnumber",
"post:county",
"post:country",
- "post:county",
"post:district",
"post:floor",
"post:hamlet",
diff --git a/data/fields/post_box/type-GB.json b/data/fields/post_box/type-GB.json
new file mode 100644
index 00000000..4e349f6b
--- /dev/null
+++ b/data/fields/post_box/type-GB.json
@@ -0,0 +1,18 @@
+{
+ "key": "post_box:type",
+ "locationSet": {
+ "include": [
+ "gb"
+ ]
+ },
+ "type": "typeCombo",
+ "label": "{post_box/type}",
+ "stringsCrossReference": "{post_box/type}",
+ "options": [
+ "pillar",
+ "lamp",
+ "wall"
+ ],
+ "autoSuggestions": false,
+ "customValues": false
+}
diff --git a/data/fields/post_box/type.json b/data/fields/post_box/type.json
new file mode 100644
index 00000000..d49997f6
--- /dev/null
+++ b/data/fields/post_box/type.json
@@ -0,0 +1,19 @@
+{
+ "key": "post_box:type",
+ "locationSet": {
+ "exclude": [
+ "gb"
+ ]
+ },
+ "type": "typeCombo",
+ "label": "Type",
+ "strings": {
+ "options": {
+ "pillar": "Freestanding Box",
+ "lamp": "Attached to a Pole",
+ "wall": "Mounted in a Wall"
+ }
+ },
+ "autoSuggestions": true,
+ "customValues": true
+}
diff --git a/data/fields/railway/switch.json b/data/fields/railway/switch.json
new file mode 100644
index 00000000..92a7ee33
--- /dev/null
+++ b/data/fields/railway/switch.json
@@ -0,0 +1,17 @@
+{
+ "key": "railway:switch",
+ "type": "combo",
+ "label": "Switch Type",
+ "strings": {
+ "options": {
+ "default": "Normal Switch",
+ "double_slip": "Double-slip Switch",
+ "single_slip": "Single-slip Switch",
+ "wye": "Wye Switch",
+ "three_way": "Three-way Switch",
+ "abt": "Abt Switch"
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": true
+}
diff --git a/data/fields/railway/track_ref.json b/data/fields/railway/track_ref.json
new file mode 100644
index 00000000..ac9918a2
--- /dev/null
+++ b/data/fields/railway/track_ref.json
@@ -0,0 +1,5 @@
+{
+ "key": "railway:track_ref",
+ "type": "text",
+ "label": "Track Number"
+}
diff --git a/data/fields/ramp.json b/data/fields/ramp.json
index d28d6df3..deaf5950 100644
--- a/data/fields/ramp.json
+++ b/data/fields/ramp.json
@@ -1,6 +1,14 @@
{
"key": "ramp",
- "type": "check",
+ "type": "combo",
+ "strings": {
+ "options": {
+ "yes": "Yes",
+ "no": "No",
+ "separate": "Separately Mapped"
+ }
+ },
+ "customValues": false,
"label": "Embedded Ramp",
"terms": [
"bicycle stairway",
diff --git a/data/fields/real_fire-GB-IE.json b/data/fields/real_fire-GB-IE.json
index 13e3cdf0..d72c411f 100644
--- a/data/fields/real_fire-GB-IE.json
+++ b/data/fields/real_fire-GB-IE.json
@@ -9,7 +9,7 @@
"type": "check",
"label": "Real Fire",
"terms": [
- "fire place",
- "fire"
+ "fire",
+ "fire place"
]
}
diff --git a/data/fields/ref/FR/siret-FR.json b/data/fields/ref/FR/siret-FR.json
index c5a37c23..2a7510c7 100644
--- a/data/fields/ref/FR/siret-FR.json
+++ b/data/fields/ref/FR/siret-FR.json
@@ -3,14 +3,14 @@
"type": "identifier",
"label": "SIRET Number",
"urlFormat": "https://annuaire-entreprises.data.gouv.fr/etablissement/{value}",
- "pattern": "^[0-9]{9}([1-7][0-9]{3}|0[1-9][0-9]{2}|00[1-9][0-9]|000[1-9])[0-9]$",
+ "pattern": "^MONACO[A-Z\\d]{5}001|\\d{9}([1-7]\\d{3}|0[1-9]\\d{2}|00[1-9]\\d|000[1-9])\\d$",
"locationSet": {
"include": [
"fr"
]
},
"terms": [
- "French company identification number",
- "SIRET"
+ "french company identification number",
+ "siret"
]
}
diff --git a/data/fields/ref/edubase-GB.json b/data/fields/ref/edubase-GB.json
new file mode 100644
index 00000000..676ea5a4
--- /dev/null
+++ b/data/fields/ref/edubase-GB.json
@@ -0,0 +1,16 @@
+{
+ "key": "ref:edubase",
+ "type": "identifier",
+ "label": "Department for Education Reference",
+ "urlFormat": "https://get-information-schools.service.gov.uk/Establishments/Establishment/Details/{value}",
+ "pattern": "^[0-9]{1,}$",
+ "locationSet": {
+ "include": [
+ "gb"
+ ]
+ },
+ "terms": [
+ "dfe urn",
+ "edubase reference"
+ ]
+}
diff --git a/data/fields/ref/linz/place_id-NZ.json b/data/fields/ref/linz/place_id-NZ.json
new file mode 100644
index 00000000..d9c26f41
--- /dev/null
+++ b/data/fields/ref/linz/place_id-NZ.json
@@ -0,0 +1,23 @@
+{
+ "key": "ref:linz:place_id",
+ "type": "identifier",
+ "label": "NZGB Place ID",
+ "urlFormat": "http://gazetteer.linz.govt.nz/place/{value}",
+ "pattern": "^[0-9;]{1,}$",
+ "universal": true,
+ "locationSet": {
+ "include": [
+ "nz",
+ "aq"
+ ]
+ },
+ "terms": [
+ "land information new zealand",
+ "linz",
+ "new zealand geographic board",
+ "ngā pou taunaha o aotearoa",
+ "nz",
+ "nzgb",
+ "toitū te whenua"
+ ]
+}
diff --git a/data/fields/ref_bridge_number.json b/data/fields/ref_bridge_number.json
new file mode 100644
index 00000000..a9d7570b
--- /dev/null
+++ b/data/fields/ref_bridge_number.json
@@ -0,0 +1,5 @@
+{
+ "key": "ref",
+ "type": "text",
+ "label": "{bridge/ref}"
+}
diff --git a/data/fields/ref_rail.json b/data/fields/ref_rail.json
new file mode 100644
index 00000000..d63cecae
--- /dev/null
+++ b/data/fields/ref_rail.json
@@ -0,0 +1,5 @@
+{
+ "key": "ref",
+ "type": "text",
+ "label": "Line Number"
+}
diff --git a/data/fields/reg_name.json b/data/fields/reg_name.json
new file mode 100644
index 00000000..0bb50766
--- /dev/null
+++ b/data/fields/reg_name.json
@@ -0,0 +1,9 @@
+{
+ "key": "reg_name",
+ "type": "localized",
+ "label": "Regional Name",
+ "universal": true,
+ "prerequisiteTag": {
+ "key": "name"
+ }
+}
diff --git a/data/fields/resource.json b/data/fields/resource.json
index 29d011b3..671df4dc 100644
--- a/data/fields/resource.json
+++ b/data/fields/resource.json
@@ -1,5 +1,18 @@
{
"key": "resource",
"type": "semiCombo",
- "label": "Resources"
+ "label": "Resources",
+ "strings": {
+ "options": {
+ "aggregate": "Aggregate",
+ "clay": "Clay",
+ "coal": "Coal",
+ "gold": "Gold",
+ "gravel": "Gravel",
+ "iron_ore": "Iron Ore",
+ "limestone": "Limestone",
+ "peat": "Peat",
+ "sand": "Sand"
+ }
+ }
}
diff --git a/data/fields/roller_coaster/track.json b/data/fields/roller_coaster/track.json
new file mode 100644
index 00000000..ce8bc8fb
--- /dev/null
+++ b/data/fields/roller_coaster/track.json
@@ -0,0 +1,37 @@
+{
+ "key": "roller_coaster:track",
+ "type": "combo",
+ "label": "Type",
+ "strings": {
+ "options": {
+ "lift_hill": {
+ "title": "Lift Hill",
+ "description": "An inclined track meant to give the trains potential energy"
+ },
+ "launch_straight": {
+ "title": "Launch Track",
+ "description": "A section of track meant to accelerate the trains through external input"
+ },
+ "brake_run": {
+ "title": "Brake Run",
+ "description": "A section of track meant to slow or stop trains"
+ },
+ "station": {
+ "title": "Station",
+ "description": "A section of track where a train stops to board and unboard passengers"
+ },
+ "moving": {
+ "title": "Moving",
+ "description": "Any type of moving track, like switch tracks"
+ },
+ "waiting": {
+ "title": "Waiting",
+ "description": "Tracks used to hold trains if the next block section is occupied"
+ },
+ "maintenance": {
+ "title": "Maintenance",
+ "description": "Tracks meant to hold spare trains or conduct maintenance"
+ }
+ }
+ }
+}
diff --git a/data/fields/roof/height.json b/data/fields/roof/height.json
new file mode 100644
index 00000000..6453b46c
--- /dev/null
+++ b/data/fields/roof/height.json
@@ -0,0 +1,6 @@
+{
+ "key": "roof:height",
+ "minValue": 0,
+ "type": "number",
+ "label": "Roof Height (Meters)"
+}
diff --git a/data/fields/roof/shape.json b/data/fields/roof/shape.json
new file mode 100644
index 00000000..03c03315
--- /dev/null
+++ b/data/fields/roof/shape.json
@@ -0,0 +1,30 @@
+{
+ "key": "roof:shape",
+ "type": "combo",
+ "label": "Roof Shape",
+ "strings": {
+ "options": {
+ "flat": "Flat",
+ "gabled": "Gabled",
+ "gabled_height_moved": "Gabled (Height Moved)",
+ "skillion": "Skillion",
+ "hipped": "Hipped",
+ "half-hipped": "Half-Hipped",
+ "side_hipped": "Side-Hipped",
+ "side_half-hipped": "Side Half-Hipped",
+ "mansard": "Mansard",
+ "gambrel": "Gambrel",
+ "hipped-and-gabled": "Hipped & Gabled",
+ "pyramidal": "Pyramidal",
+ "crosspitched": "Cross-Pitched",
+ "sawtooth": "Sawtooth",
+ "butterfly": "Butterfly",
+ "cone": "Cone",
+ "dome": "Dome",
+ "onion": "Onion",
+ "round": "Round"
+ }
+ },
+ "autoSuggestions": true,
+ "customValues": false
+}
diff --git a/data/fields/royal_cypher-GB.json b/data/fields/royal_cypher-GB.json
new file mode 100644
index 00000000..664397d9
--- /dev/null
+++ b/data/fields/royal_cypher-GB.json
@@ -0,0 +1,25 @@
+{
+ "key": "royal_cypher",
+ "type": "typeCombo",
+ "label": "Royal Cypher",
+ "strings": {
+ "options": {
+ "VR": "VR (Victoria)",
+ "EVIIR": "EVIIR (Edward VII)",
+ "EVIIIR": "EVIIIR (Edward VIII)",
+ "GR": "GR (George V)",
+ "GVIR": "GVIR (George VI)",
+ "EIIR": "EIIR (Elizabeth II)",
+ "CIIIR": "CIIIR (Charles III)",
+ "scottish_crown": "Scottish Crown",
+ "no": "No"
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": false,
+ "locationSet": {
+ "include": [
+ "gb"
+ ]
+ }
+}
diff --git a/data/fields/sac_scale.json b/data/fields/sac_scale.json
index 095b74a6..58a5cd65 100644
--- a/data/fields/sac_scale.json
+++ b/data/fields/sac_scale.json
@@ -5,6 +5,7 @@
"placeholder": "Mountain Hiking, Alpine Hiking...",
"strings": {
"options": {
+ "strolling": "Strolling",
"hiking": "T1: Hiking",
"mountain_hiking": "T2: Mountain Hiking",
"demanding_mountain_hiking": "T3: Demanding Mountain Hiking",
diff --git a/data/fields/salt.json b/data/fields/salt.json
index 93709130..6b4b7311 100644
--- a/data/fields/salt.json
+++ b/data/fields/salt.json
@@ -3,7 +3,7 @@
"type": "check",
"label": "Salt",
"terms": [
- "saline",
- "salinated"
+ "salinated",
+ "saline"
]
}
diff --git a/data/fields/scuba_diving.json b/data/fields/scuba_diving.json
index a714f3e6..b2ab348b 100644
--- a/data/fields/scuba_diving.json
+++ b/data/fields/scuba_diving.json
@@ -3,14 +3,15 @@
"type": "multiCombo",
"label": "Services",
"options": [
- "repair",
- "courses",
- "rental",
- "filling",
"air_filling",
+ "courses",
+ "filling",
+ "hobby",
"nitrox_filling",
- "trimix_filling",
- "oxygen_filling"
+ "oxygen_filling",
+ "rental",
+ "repair",
+ "trimix_filling"
],
"autoSuggestions": false
}
diff --git a/data/fields/seamark/harbour/category_marina.json b/data/fields/seamark/harbour/category_marina.json
new file mode 100644
index 00000000..91ea20bf
--- /dev/null
+++ b/data/fields/seamark/harbour/category_marina.json
@@ -0,0 +1,11 @@
+{
+ "key": "seamark:harbour:category",
+ "type": "check",
+ "label": "Domestic Facilities",
+ "strings": {
+ "options": {
+ "marina": "Yes",
+ "marina_no_facilities": "No"
+ }
+ }
+}
diff --git a/data/fields/self_checkout.json b/data/fields/self_checkout.json
new file mode 100644
index 00000000..9f47dab0
--- /dev/null
+++ b/data/fields/self_checkout.json
@@ -0,0 +1,12 @@
+{
+ "key": "self_checkout",
+ "type": "radio",
+ "strings": {
+ "options": {
+ "yes": "Yes",
+ "only": "Only",
+ "no": "No"
+ }
+ },
+ "label": "Self Checkout"
+}
diff --git a/data/fields/shelter_type.json b/data/fields/shelter_type.json
index 2ea69ac6..0336f6a8 100644
--- a/data/fields/shelter_type.json
+++ b/data/fields/shelter_type.json
@@ -1,5 +1,11 @@
{
"key": "shelter_type",
"type": "combo",
- "label": "Type"
+ "label": "Type",
+ "icons": {
+ "public_transport": "temaki-transit_shelter",
+ "picnic_shelter": "temaki-picnic_shelter",
+ "lean_to": "temaki-sleep_shelter",
+ "field_shelter": "temaki-horse_shelter"
+ }
}
diff --git a/data/fields/short_name.json b/data/fields/short_name.json
new file mode 100644
index 00000000..abea228a
--- /dev/null
+++ b/data/fields/short_name.json
@@ -0,0 +1,14 @@
+{
+ "key": "short_name",
+ "type": "localized",
+ "label": "Short Name",
+ "universal": true,
+ "terms": [
+ "abbreviation",
+ "acronym",
+ "initialism"
+ ],
+ "prerequisiteTag": {
+ "key": "name"
+ }
+}
diff --git a/data/fields/side.json b/data/fields/side.json
new file mode 100644
index 00000000..e01f0af5
--- /dev/null
+++ b/data/fields/side.json
@@ -0,0 +1,12 @@
+{
+ "key": "side",
+ "type": "combo",
+ "label": "Side",
+ "strings": {
+ "options": {
+ "left": "Left of Cyclist",
+ "right": "Right of Cyclist"
+ }
+ },
+ "autoSuggestions": false
+}
diff --git a/data/fields/social_facility_for.json b/data/fields/social_facility_for.json
index 960201be..2fa0041e 100644
--- a/data/fields/social_facility_for.json
+++ b/data/fields/social_facility_for.json
@@ -1,5 +1,29 @@
{
"key": "social_facility:for",
"type": "combo",
- "label": "People Served"
+ "label": "People Served",
+ "strings": {
+ "options": {
+ "abused": "Abuse victims",
+ "child": "Children",
+ "dementia": "People suffering from dementia",
+ "disabled": "People with disabilities",
+ "diseased": "People suffering from a disease",
+ "displaced": "People displaced by disasters or conflicts",
+ "drug_addicted": "Drug addicted",
+ "homeless": "Homeless",
+ "juvenile": "Juveniles",
+ "mental_health": "People with mental health problems",
+ "migrant": "Migrants",
+ "orphan": "Orphans",
+ "refugee": "Refugees",
+ "senior": "Elderly",
+ "terminally_ill": "People with a terminal illness",
+ "underprivileged": "Underprivileged people",
+ "unemployed": "People without a job",
+ "veteran": "Veterans",
+ "victim": "Victims of crime",
+ "woman": "Women"
+ }
+ }
}
diff --git a/data/fields/source.json b/data/fields/source.json
index bff414b7..24e7743f 100644
--- a/data/fields/source.json
+++ b/data/fields/source.json
@@ -1,8 +1,8 @@
{
"key": "source",
"type": "semiCombo",
- "universal": true,
"label": "Sources",
+ "usage": "changeset",
"snake_case": false,
"caseSensitive": true,
"strings": {
diff --git a/data/fields/spacing.json b/data/fields/spacing.json
new file mode 100644
index 00000000..1e56e3ac
--- /dev/null
+++ b/data/fields/spacing.json
@@ -0,0 +1,10 @@
+{
+ "key": "spacing",
+ "type": "number",
+ "label": "Distance Between Barriers (Meters)",
+ "snake_case": false,
+ "prerequisiteTag": {
+ "key": "cycle_barrier",
+ "valueNot": "single"
+ }
+}
diff --git a/data/fields/sport.json b/data/fields/sport.json
index a3ebb3b7..a1c4fd23 100644
--- a/data/fields/sport.json
+++ b/data/fields/sport.json
@@ -1,5 +1,65 @@
{
"key": "sport",
"type": "semiCombo",
- "label": "Sports"
+ "label": "Sports",
+ "strings": {
+ "options": {
+ "10pin": "Ten-Pin Bowling",
+ "9pin": "Nine-Pin Bowling",
+ "american_football": "American Football",
+ "athletics": "Track & Field",
+ "badminton": "Badminton",
+ "baseball": "Baseball",
+ "basketball": "Basketball",
+ "beachvolleyball": "Beach Volleyball",
+ "billiards": "Cue Sports",
+ "bmx": "BMX",
+ "boules": "Boules",
+ "bowls": "Bowls",
+ "canoe": "Canoeing",
+ "chess": "Chess",
+ "climbing": "Climbing",
+ "cricket": "Cricket",
+ "curling": "Curling",
+ "cycling": "Cycling",
+ "darts": "Darts",
+ "disc_golf": "Disc Golf",
+ "dog_racing": "Dog Racing",
+ "equestrian": "Equestrian Sports",
+ "fitness": "Fitness Training",
+ "free_flying": "Paragliding / Hang Gliding",
+ "futsal": "Futsal",
+ "gaelic_games": "Gaelic Games",
+ "golf": "Golf",
+ "gymnastics": "Gymnastics",
+ "handball": "Team Handball",
+ "horse_racing": "Horse Racing",
+ "ice_hockey": "Ice Hockey",
+ "ice_skating": "Ice Skating",
+ "ice_stock": "Ice Stock",
+ "karting": "Kart Racing",
+ "motocross": "Motocross",
+ "motor": "Motorsports",
+ "multi": "Unspecified Other Sports",
+ "netball": "Netball",
+ "orienteering": "Orienteering",
+ "padel": "Padel",
+ "pelota": "Pelota",
+ "rugby_union": "Rugby Union",
+ "running": "Running",
+ "scuba_diving": "Scuba Diving",
+ "shooting": "Shooting",
+ "skateboard": "Skateboard",
+ "skiing": "Skiing",
+ "ski_jumping": "Ski Jumping",
+ "soccer": "Soccer",
+ "softball": "Softball",
+ "speedway": "Motorcycle Speedway",
+ "swimming": "Swimming",
+ "table_tennis": "Table Tennis",
+ "tennis": "Tennis",
+ "volleyball": "Volleyball",
+ "yoga": "Yoga"
+ }
+ }
}
diff --git a/data/fields/sport/sport_ice.json b/data/fields/sport/sport_ice.json
new file mode 100644
index 00000000..f52c466e
--- /dev/null
+++ b/data/fields/sport/sport_ice.json
@@ -0,0 +1,14 @@
+{
+ "key": "sport",
+ "type": "semiCombo",
+ "label": "Sports",
+ "options": [
+ "ice_skating",
+ "ice_hockey",
+ "curling",
+ "ice_stock",
+ "multi"
+ ],
+ "stringsCrossReference": "{sport}",
+ "autoSuggestions": false
+}
diff --git a/data/fields/sport/sport_pub.json b/data/fields/sport/sport_pub.json
new file mode 100644
index 00000000..5fffc46c
--- /dev/null
+++ b/data/fields/sport/sport_pub.json
@@ -0,0 +1,12 @@
+{
+ "key": "sport",
+ "type": "semiCombo",
+ "label": "Sports",
+ "options": [
+ "table_soccer",
+ "billiards",
+ "darts"
+ ],
+ "stringsCrossReference": "{sport}",
+ "autoSuggestions": false
+}
diff --git a/data/fields/sport/sport_racing_motor.json b/data/fields/sport/sport_racing_motor.json
new file mode 100644
index 00000000..ebcfed80
--- /dev/null
+++ b/data/fields/sport/sport_racing_motor.json
@@ -0,0 +1,13 @@
+{
+ "key": "sport",
+ "type": "semiCombo",
+ "label": "Sports",
+ "options": [
+ "motor",
+ "karting",
+ "motocross",
+ "speedway"
+ ],
+ "stringsCrossReference": "{sport}",
+ "autoSuggestions": false
+}
diff --git a/data/fields/sport/sport_racing_nonmotor.json b/data/fields/sport/sport_racing_nonmotor.json
new file mode 100644
index 00000000..bd612903
--- /dev/null
+++ b/data/fields/sport/sport_racing_nonmotor.json
@@ -0,0 +1,15 @@
+{
+ "key": "sport",
+ "type": "semiCombo",
+ "label": "Sports",
+ "options": [
+ "running",
+ "cycling",
+ "bmx",
+ "horse_racing",
+ "dog_racing",
+ "athletics"
+ ],
+ "stringsCrossReference": "{sport}",
+ "autoSuggestions": false
+}
diff --git a/data/fields/sport_ice.json b/data/fields/sport_ice.json
deleted file mode 100644
index 77b9eedf..00000000
--- a/data/fields/sport_ice.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "key": "sport",
- "type": "semiCombo",
- "label": "Sports",
- "strings": {
- "options": {
- "ice_skating": "Ice Skating",
- "ice_hockey": "Ice Hockey",
- "curling": "Curling",
- "ice_stock": "Ice Stock",
- "multi": "Multiple"
- }
- },
- "autoSuggestions": false
-}
diff --git a/data/fields/sport_pub.json b/data/fields/sport_pub.json
deleted file mode 100644
index 618739f1..00000000
--- a/data/fields/sport_pub.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "key": "sport",
- "type": "semiCombo",
- "label": "Sports",
- "strings": {
- "options": {
- "table_soccer": "Foosball",
- "billiards": "Billiards",
- "darts": "Darts"
- }
- },
- "autoSuggestions": false
-}
diff --git a/data/fields/sport_racing_motor.json b/data/fields/sport_racing_motor.json
deleted file mode 100644
index cb151dde..00000000
--- a/data/fields/sport_racing_motor.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "key": "sport",
- "type": "semiCombo",
- "label": "Sports",
- "strings": {
- "options": {
- "motor": "Motorsport",
- "karting": "Karting",
- "motocross": "Motocross",
- "speedway": "Motorcycle Speedway"
- }
- },
- "autoSuggestions": false
-}
diff --git a/data/fields/sport_racing_nonmotor.json b/data/fields/sport_racing_nonmotor.json
deleted file mode 100644
index cb53b3eb..00000000
--- a/data/fields/sport_racing_nonmotor.json
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- "key": "sport",
- "type": "semiCombo",
- "label": "Sports",
- "strings": {
- "options": {
- "running": "Running",
- "cycling": "Cycling",
- "bmx": "BMX",
- "horse_racing": "Horse Racing",
- "dog_racing": "Dog Racing"
- }
- },
- "autoSuggestions": false
-}
diff --git a/data/fields/start_date.json b/data/fields/start_date.json
index 533b4c75..8501280b 100644
--- a/data/fields/start_date.json
+++ b/data/fields/start_date.json
@@ -1,6 +1,6 @@
{
"key": "start_date",
- "type": "text",
+ "type": "date",
"universal": true,
"label": "Start Date",
"placeholder": "YYYY-MM-DD",
diff --git a/data/fields/static_caravans.json b/data/fields/static_caravans.json
new file mode 100644
index 00000000..db39bc2a
--- /dev/null
+++ b/data/fields/static_caravans.json
@@ -0,0 +1,11 @@
+{
+ "key": "static_caravans",
+ "type": "check",
+ "label": "Mobile Homes",
+ "terms": [
+ "house trailers",
+ "park home",
+ "static caravans",
+ "trailer home"
+ ]
+}
diff --git a/data/fields/structure_canal.json b/data/fields/structure_canal.json
new file mode 100644
index 00000000..48ddd64b
--- /dev/null
+++ b/data/fields/structure_canal.json
@@ -0,0 +1,15 @@
+{
+ "type": "structureRadio",
+ "keys": [
+ "bridge",
+ "tunnel"
+ ],
+ "label": "Structure",
+ "placeholder": "Unknown",
+ "strings": {
+ "options": {
+ "bridge": "Bridge",
+ "tunnel": "Tunnel"
+ }
+ }
+}
diff --git a/data/fields/substance.json b/data/fields/substance.json
index 210721a2..4ffa9ff3 100644
--- a/data/fields/substance.json
+++ b/data/fields/substance.json
@@ -1,5 +1,16 @@
{
"key": "substance",
"type": "combo",
- "label": "Substance"
+ "label": "Substance",
+ "strings": {
+ "options": {
+ "fuel": "Fuel",
+ "gas": "Natural Gas",
+ "hot_water": "Hot Water",
+ "oil": "Crude Oil",
+ "rainwater": "Rainwater",
+ "sewage": "Sewage",
+ "water": "Drinking Water"
+ }
+ }
}
diff --git a/data/fields/summit/cross.json b/data/fields/summit/cross.json
new file mode 100644
index 00000000..bebc4329
--- /dev/null
+++ b/data/fields/summit/cross.json
@@ -0,0 +1,8 @@
+{
+ "key": "summit:cross",
+ "type": "check",
+ "label": "Summit Cross",
+ "terms": [
+ "cross"
+ ]
+}
diff --git a/data/fields/surface.json b/data/fields/surface.json
index 59079c40..33ba1b46 100644
--- a/data/fields/surface.json
+++ b/data/fields/surface.json
@@ -4,25 +4,32 @@
"label": "Surface",
"strings": {
"options": {
+ "artificial_turf": "Artificial Turf",
"asphalt": "Asphalt",
- "unpaved": "Unpaved",
- "paved": "Paved",
- "ground": "Ground",
- "gravel": "Gravel",
+ "clay": "Clay",
"compacted": "Compacted",
"concrete": "Concrete",
- "paving_stones": "Paving Stones",
- "sett": "Sett",
+ "concrete:lanes": "Concrete Lanes",
+ "concrete:plates": "Concrete Plates",
"dirt": "Dirt",
+ "fine_gravel": "Fine Gravel",
"grass": "Grass",
- "sand": "Sand",
- "wood": "Wood",
+ "grass_paver": "Grass Paver",
+ "gravel": "Gravel",
+ "ground": "Ground",
"metal": "Metal",
- "artificial_turf": "Artificial Turf",
- "unhewn_cobblestone": "Cobblestone (uncut, rounded stones)",
"mud": "Persistently Muddy",
- "woodchips": "Woodchips",
- "salt": "Salt"
+ "paved": "Paved",
+ "paving_stones": "Paving Stones",
+ "pebblestone": "Pebblestone",
+ "salt": "Salt",
+ "sand": "Sand",
+ "sett": "Sett",
+ "tartan": "Tartan",
+ "unhewn_cobblestone": "Cobblestone (uncut, rounded stones)",
+ "unpaved": "Unpaved",
+ "wood": "Wood",
+ "woodchips": "Woodchips"
}
}
}
diff --git a/data/fields/survey/date.json b/data/fields/survey/date.json
index e29075eb..2cf7e270 100644
--- a/data/fields/survey/date.json
+++ b/data/fields/survey/date.json
@@ -1,5 +1,5 @@
{
"key": "survey:date",
- "type": "text",
+ "type": "date",
"label": "Last Survey Date"
}
diff --git a/data/fields/swimming_pool.json b/data/fields/swimming_pool.json
index f7eff1c7..c9935c7f 100644
--- a/data/fields/swimming_pool.json
+++ b/data/fields/swimming_pool.json
@@ -1,5 +1,19 @@
{
"key": "swimming_pool",
"type": "combo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "swimming": "Lap Pool",
+ "plunge": "Diving",
+ "wading": "Wading / Leisure",
+ "spa": "Spa",
+ "wave_pool": "Wave Pool",
+ "lazy_river": "Lazy River",
+ "personal": "Personal / Backyard",
+ "kids": "Kids Pool"
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": true
}
diff --git a/data/fields/taxi_vehicle.json b/data/fields/taxi_vehicle.json
new file mode 100644
index 00000000..cdbddc53
--- /dev/null
+++ b/data/fields/taxi_vehicle.json
@@ -0,0 +1,27 @@
+{
+ "key": "taxi_vehicle",
+ "type": "semiCombo",
+ "label": "Vehicle Type",
+ "strings": {
+ "options": {
+ "motorcar": {
+ "title": "Motorcar",
+ "description": "Regular car (implied default)"
+ },
+ "motorcycle": {
+ "title": "Motorcycle",
+ "description": "With passengers 'riding pillion' (e.g. mototáxi, etc.)"
+ },
+ "auto_rickshaw": {
+ "title": "Auto Rickshaw",
+ "description": "Motorized rickshaws (e.g. bajaj, tricycle, tuk-tuk, etc.)"
+ },
+ "cycle_rickshaw": {
+ "title": "Cycle Rickshaw",
+ "description": "Pedal-powered rickshaws (e.g. padyak, velotaxi, etc.)"
+ }
+ }
+ },
+ "autoSuggestions": false,
+ "customValues": false
+}
diff --git a/data/fields/telecom.json b/data/fields/telecom.json
index ffb3c83c..2f58296c 100644
--- a/data/fields/telecom.json
+++ b/data/fields/telecom.json
@@ -1,5 +1,14 @@
{
"key": "telecom",
"type": "combo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "connection_point": "Connection Point",
+ "data_center": "Data Center",
+ "distribution_point": "Distribution Point",
+ "exchange": "Exchange",
+ "service_device": "Service Device"
+ }
+ }
}
diff --git a/data/fields/telescope/type.json b/data/fields/telescope/type.json
new file mode 100644
index 00000000..401c83cc
--- /dev/null
+++ b/data/fields/telescope/type.json
@@ -0,0 +1,17 @@
+{
+ "key": "telescope:type",
+ "type": "combo",
+ "label": "Type",
+ "strings": {
+ "options": {
+ "optical": "Optical Telescope",
+ "radio": "Radio Telescope"
+ }
+ },
+ "icons": {
+ "optical": "temaki-telescope",
+ "radio": "roentgen-telescope-radio"
+ },
+ "autoSuggestions": true,
+ "customValues": true
+}
diff --git a/data/fields/tents.json b/data/fields/tents.json
new file mode 100644
index 00000000..90a3053c
--- /dev/null
+++ b/data/fields/tents.json
@@ -0,0 +1,5 @@
+{
+ "key": "tents",
+ "type": "check",
+ "label": "Tents"
+}
diff --git a/data/fields/toilets/menstrual_products.json b/data/fields/toilets/menstrual_products.json
new file mode 100644
index 00000000..0e8b5c33
--- /dev/null
+++ b/data/fields/toilets/menstrual_products.json
@@ -0,0 +1,19 @@
+{
+ "key": "toilets:menstrual_products",
+ "type": "radio",
+ "strings": {
+ "options": {
+ "yes": "Yes, in all stalls",
+ "limited": "Limited to some stalls",
+ "no": "No"
+ }
+ },
+ "label": "Free Menstrual Products Available",
+ "terms": [
+ "feminine hygiene",
+ "pads",
+ "period",
+ "period products",
+ "tampons"
+ ]
+}
diff --git a/data/fields/toilets/menstrual_products_poi.json b/data/fields/toilets/menstrual_products_poi.json
new file mode 100644
index 00000000..7d76cea8
--- /dev/null
+++ b/data/fields/toilets/menstrual_products_poi.json
@@ -0,0 +1,10 @@
+{
+ "key": "toilets:menstrual_products",
+ "type": "radio",
+ "stringsCrossReference": "{toilets/menstrual_products}",
+ "label": "{toilets/menstrual_products}",
+ "prerequisiteTag": {
+ "key": "toilets",
+ "valueNot": "no"
+ }
+}
diff --git a/data/fields/tomb.json b/data/fields/tomb.json
index c47d819d..a95524f5 100644
--- a/data/fields/tomb.json
+++ b/data/fields/tomb.json
@@ -1,5 +1,21 @@
{
"key": "tomb",
"type": "typeCombo",
- "label": "Type"
+ "label": "Type",
+ "strings": {
+ "options": {
+ "columbarium": "Columbarium",
+ "crypt": "Crypt",
+ "dolmen": "Dolmen",
+ "hypogeum": "Hypogeum",
+ "mausoleum": "Mausoleum",
+ "pyramid": "Pyramid",
+ "rock-cut": "Rock-cut Tomb",
+ "sarcophagus": "Sarcophagus",
+ "table": "Table",
+ "tumulus": "Tumulus",
+ "vault": "Vault",
+ "war_grave": "Single War Grave"
+ }
+ }
}
diff --git a/data/fields/tower/construction.json b/data/fields/tower/construction.json
index d6723507..e4bd6665 100644
--- a/data/fields/tower/construction.json
+++ b/data/fields/tower/construction.json
@@ -2,5 +2,12 @@
"key": "tower:construction",
"type": "combo",
"label": "Construction",
- "placeholder": "Guyed, Lattice, Concealed, ..."
+ "placeholder": "Guyed, Lattice, Concealed, ...",
+ "icons": {
+ "freestanding": "roentgen-tube",
+ "guyed_lattice": "roentgen-lattice_guyed",
+ "guyed_tube": "roentgen-tube_guyed",
+ "lattice": "roentgen-lattice",
+ "dish": "fas-satellite-dish"
+ }
}
diff --git a/data/fields/traffic_calming.json b/data/fields/traffic_calming.json
index 7c279b45..7e4a200b 100644
--- a/data/fields/traffic_calming.json
+++ b/data/fields/traffic_calming.json
@@ -5,8 +5,8 @@
"terms": [
"flat top",
"hump",
- "speed",
- "slow"
+ "slow",
+ "speed"
],
"strings": {
"options": {
@@ -18,10 +18,20 @@
"dip": "Dip",
"double_dip": "Double Dip",
"hump": "Speed Hump",
- "island": "Traffic Island",
+ "island": "Traffic Calming Island",
"mini_bumps": "Mini Speed Bumps",
"rumble_strip": "Rumble Strip",
"table": "Speed Table"
}
+ },
+ "icons": {
+ "bump": "roentgen-bump",
+ "cushion": "roentgen-traffic_cushion",
+ "dip": "roentgen-dip",
+ "double_dip": "roentgen-double_dip",
+ "hump": "roentgen-hump",
+ "mini_bumps": "roentgen-mini_bumps",
+ "rumble_strip": "roentgen-rumble_strip",
+ "table": "roentgen-traffic_table"
}
}
diff --git a/data/fields/traffic_calming_road.json b/data/fields/traffic_calming_road.json
new file mode 100644
index 00000000..e242e737
--- /dev/null
+++ b/data/fields/traffic_calming_road.json
@@ -0,0 +1,20 @@
+{
+ "key": "traffic_calming",
+ "type": "typeCombo",
+ "label": "Traffic Calming",
+ "terms": [
+ "bump",
+ "chicane",
+ "choker",
+ "cushion",
+ "flat top",
+ "hump",
+ "rumble strip",
+ "slow",
+ "speed",
+ "table",
+ "traffic island"
+ ],
+ "stringsCrossReference": "{traffic_calming}",
+ "iconsCrossReference": "{traffic_calming}"
+}
diff --git a/data/fields/tunnel.json b/data/fields/tunnel.json
index d626d60c..91ef3426 100644
--- a/data/fields/tunnel.json
+++ b/data/fields/tunnel.json
@@ -3,5 +3,6 @@
"type": "typeCombo",
"label": "Type",
"usage": "group",
- "placeholder": "Default"
+ "placeholder": "Default",
+ "stringsCrossReference": "{tunnel_combo}"
}
diff --git a/data/fields/vending.json b/data/fields/vending.json
index 0c8fcec6..4a06525e 100644
--- a/data/fields/vending.json
+++ b/data/fields/vending.json
@@ -1,5 +1,33 @@
{
"key": "vending",
"type": "semiCombo",
- "label": "Types of Goods"
+ "label": "Types of Goods",
+ "strings": {
+ "options": {
+ "bicycle_tube": "Bicycle Tubes",
+ "bread": "Bread",
+ "cigarettes": "Cigarettes",
+ "coffee": "Coffee",
+ "condoms": "Condoms",
+ "drinks": "Drinks",
+ "e-cigarettes": "E-Cigarettes",
+ "eggs": "Eggs",
+ "electronics": "Electronics",
+ "elongated_coin": "Souvenir Coins",
+ "excrement_bags": "Excrement Bags",
+ "feminine_hygiene": "Feminine Hygiene Products",
+ "food": "Food",
+ "fuel": "Fuel",
+ "ice_cream": "Ice Cream",
+ "ice_cubes": "Ice Cubes",
+ "milk": "Milk",
+ "newspapers": "Newspapers",
+ "parking_tickets": "Parking Tickets",
+ "pizza": "Pizza",
+ "public_transport_tickets": "Public Transport Tickets",
+ "stamps": "Postage Stamps",
+ "sweets": "Sweets",
+ "water": "Drinking Water"
+ }
+ }
}
diff --git a/data/fields/volcano/status.json b/data/fields/volcano/status.json
index c6d0e632..6998492c 100644
--- a/data/fields/volcano/status.json
+++ b/data/fields/volcano/status.json
@@ -9,6 +9,11 @@
"extinct": "Extinct"
}
},
+ "icons": {
+ "active": "roentgen-stratovolcano___lava",
+ "dormant": "roentgen-stratovolcano___smoke",
+ "extinct": "roentgen-stratovolcano"
+ },
"autoSuggestions": false,
"customValues": false
}
diff --git a/data/fields/volcano/type.json b/data/fields/volcano/type.json
index f2e74be4..879721f6 100644
--- a/data/fields/volcano/type.json
+++ b/data/fields/volcano/type.json
@@ -9,6 +9,11 @@
"scoria": "Scoria"
}
},
+ "icons": {
+ "stratovolcano": "roentgen-stratovolcano___smoke_2",
+ "shield": "roentgen-shield_volcano___smoke_2",
+ "scoria": "roentgen-volcanic_cone___smoke_2"
+ },
"autoSuggestions": false,
"customValues": false
}
diff --git a/data/fields/waste.json b/data/fields/waste.json
index 312ca185..073c7552 100644
--- a/data/fields/waste.json
+++ b/data/fields/waste.json
@@ -1,5 +1,13 @@
{
"key": "waste",
"type": "semiCombo",
- "label": "Waste"
+ "label": "Waste",
+ "strings": {
+ "options": {
+ "cigarettes": "Cigarettes",
+ "dog_excrement": "Dog Excrement",
+ "organic": "Organic Waste",
+ "trash": "Trash"
+ }
+ }
}
diff --git a/data/fields/water_source.json b/data/fields/water_source.json
index cea55812..b0da623c 100644
--- a/data/fields/water_source.json
+++ b/data/fields/water_source.json
@@ -8,7 +8,8 @@
"water_tank": "Water Tank",
"pond": "Pond",
"river": "River",
- "stream": "Stream"
+ "stream": "Stream",
+ "groundwater": "Groundwater"
}
}
}
diff --git a/data/fields/website.json b/data/fields/website.json
index 6f50b192..943b2f3a 100644
--- a/data/fields/website.json
+++ b/data/fields/website.json
@@ -1,5 +1,9 @@
{
"key": "website",
+ "keys": [
+ "website",
+ "contact:website"
+ ],
"type": "url",
"placeholder": "https://example.com",
"label": "Website",
diff --git a/data/fields/website/menu.json b/data/fields/website/menu.json
new file mode 100644
index 00000000..1b65b8ca
--- /dev/null
+++ b/data/fields/website/menu.json
@@ -0,0 +1,13 @@
+{
+ "key": "website:menu",
+ "type": "url",
+ "placeholder": "https://example.com",
+ "label": "Menu Link",
+ "terms": [
+ "menu",
+ "menu uri",
+ "menu url",
+ "online menu",
+ "website menu"
+ ]
+}
diff --git a/data/fields/wikipedia.json b/data/fields/wikipedia.json
index 1164729e..e0d89806 100644
--- a/data/fields/wikipedia.json
+++ b/data/fields/wikipedia.json
@@ -1,8 +1,7 @@
{
"key": "wikipedia",
"keys": [
- "wikipedia",
- "wikidata"
+ "wikipedia"
],
"type": "wikipedia",
"universal": true,
diff --git a/data/fields/wood_provided.json b/data/fields/wood_provided.json
new file mode 100644
index 00000000..da7243a3
--- /dev/null
+++ b/data/fields/wood_provided.json
@@ -0,0 +1,13 @@
+{
+ "key": "wood_provided",
+ "type": "check",
+ "label": "Firewood Provided",
+ "locationSet": {
+ "include": [
+ "ch",
+ "dk",
+ "fi",
+ "se"
+ ]
+ }
+}
diff --git a/data/preset_categories/climbing.json b/data/preset_categories/climbing.json
new file mode 100644
index 00000000..8d9a3f25
--- /dev/null
+++ b/data/preset_categories/climbing.json
@@ -0,0 +1,12 @@
+{
+ "icon": "temaki-climbing",
+ "name": "Climbing Features",
+ "members": [
+ "climbing/route",
+ "climbing/route_bottom",
+ "climbing/crag",
+ "type/route/climbing",
+ "type/site/climbing/crag",
+ "type/site/climbing/area"
+ ]
+}
diff --git a/data/preset_categories/path.json b/data/preset_categories/path.json
index 2d42c082..6894adf8 100644
--- a/data/preset_categories/path.json
+++ b/data/preset_categories/path.json
@@ -6,6 +6,7 @@
"highway/footway",
"highway/footway/crossing/uncontrolled",
"highway/footway/sidewalk",
+ "highway/path/informal",
"highway/steps",
"highway/cycleway",
"highway/bridleway",
diff --git a/data/preset_categories/route.json b/data/preset_categories/route.json
index 44e489b8..c1bd3ce1 100644
--- a/data/preset_categories/route.json
+++ b/data/preset_categories/route.json
@@ -13,12 +13,14 @@
"type/route/light_rail",
"type/route/tram",
"type/route/subway",
+ "type/route/railway",
"type/route/trolleybus",
"type/route/ferry",
"type/route/power",
"type/route/pipeline",
"type/route/detour",
"type/route_master",
+ "type/route/climbing",
"type/route"
]
}
diff --git a/data/preset_categories/water.json b/data/preset_categories/water.json
index dd125dda..48342897 100644
--- a/data/preset_categories/water.json
+++ b/data/preset_categories/water.json
@@ -4,8 +4,9 @@
"members": [
"natural/water",
"natural/water/pond",
- "natural/water/basin",
"natural/water/lake",
- "natural/water/reservoir"
+ "natural/water/reservoir",
+ "natural/water/river",
+ "natural/water/basin"
]
}
diff --git a/data/presets/@templates/README.md b/data/presets/@templates/README.md
new file mode 100644
index 00000000..92db8e55
--- /dev/null
+++ b/data/presets/@templates/README.md
@@ -0,0 +1,13 @@
+# About `@templates`
+
+Presets in `@templates` are a convention for a _virtual_ presets that are only used from inside other presets.
+
+The only property that really matter for these special presets are the `fields`.
+
+All other properties can be copied from existing template presets and ignored. They are default values that are meant to match all cases where they might be referenced.
+
+## How to use
+
+Inside another preset, reference the template – or any other preset - like `"{@templates/internet_access}"` in `fields` or `moreFields`. This will "copy" all the listed fields from the file `data/presets/@templates/internet_access.json`.
+
+You can only "copy" (template) `fields` to (preset) `fields` and (template) `moreFields` to (preset) `moreFields`.
diff --git a/data/presets/@templates/contact.json b/data/presets/@templates/contact.json
new file mode 100644
index 00000000..032b88da
--- /dev/null
+++ b/data/presets/@templates/contact.json
@@ -0,0 +1,25 @@
+{
+ "moreFields": [
+ "email",
+ "fax",
+ "mobile",
+ "phone",
+ "website"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "@template": "contact"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/@templates/crossing/bicycle_more.json b/data/presets/@templates/crossing/bicycle_more.json
new file mode 100644
index 00000000..9de7a5ba
--- /dev/null
+++ b/data/presets/@templates/crossing/bicycle_more.json
@@ -0,0 +1,23 @@
+{
+ "moreFields": [
+ "oneway",
+ "access",
+ "segregated"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/bicycle_more"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/@templates/crossing/defaults.json b/data/presets/@templates/crossing/defaults.json
new file mode 100644
index 00000000..61bd6fc2
--- /dev/null
+++ b/data/presets/@templates/crossing/defaults.json
@@ -0,0 +1,23 @@
+{
+ "fields": [
+ "crossing/island",
+ "crossing_raised"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/defaults"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/@templates/crossing/geometry_way_more.json b/data/presets/@templates/crossing/geometry_way_more.json
new file mode 100644
index 00000000..28de4263
--- /dev/null
+++ b/data/presets/@templates/crossing/geometry_way_more.json
@@ -0,0 +1,22 @@
+{
+ "moreFields": [
+ "smoothness",
+ "lit"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/geometry_way_more"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/@templates/crossing/markings.json b/data/presets/@templates/crossing/markings.json
new file mode 100644
index 00000000..8a838aef
--- /dev/null
+++ b/data/presets/@templates/crossing/markings.json
@@ -0,0 +1,25 @@
+{
+ "fields": [
+ "crossing/markings",
+ "crossing/markings-BG",
+ "crossing/markings-DE-AT-CH",
+ "crossing/markings-PL"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/markings"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/@templates/crossing/markings_yes.json b/data/presets/@templates/crossing/markings_yes.json
new file mode 100644
index 00000000..4fd724fd
--- /dev/null
+++ b/data/presets/@templates/crossing/markings_yes.json
@@ -0,0 +1,25 @@
+{
+ "fields": [
+ "crossing/markings_yes",
+ "crossing/markings_yes-BG",
+ "crossing/markings_yes-DE-AT-CH",
+ "crossing/markings_yes-PL"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/markings_yes"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/@templates/crossing/surfacequality.json b/data/presets/@templates/crossing/surfacequality.json
new file mode 100644
index 00000000..ab10d7cf
--- /dev/null
+++ b/data/presets/@templates/crossing/surfacequality.json
@@ -0,0 +1,22 @@
+{
+ "fields": [
+ "surface",
+ "smoothness"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/surfacequality"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/@templates/crossing/traffic_signal.json b/data/presets/@templates/crossing/traffic_signal.json
new file mode 100644
index 00000000..9fba2425
--- /dev/null
+++ b/data/presets/@templates/crossing/traffic_signal.json
@@ -0,0 +1,24 @@
+{
+ "fields": [
+ "button_operated",
+ "traffic_signals/sound",
+ "traffic_signals/vibration"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/traffic_signal"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/@templates/crossing/traffic_signal_more.json b/data/presets/@templates/crossing/traffic_signal_more.json
new file mode 100644
index 00000000..7d4f5ab8
--- /dev/null
+++ b/data/presets/@templates/crossing/traffic_signal_more.json
@@ -0,0 +1,24 @@
+{
+ "moreFields": [
+ "traffic_signals/arrow",
+ "traffic_signals/countdown",
+ "traffic_signals/minimap"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/traffic_signal_more"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/@templates/internet_access.json b/data/presets/@templates/internet_access.json
new file mode 100644
index 00000000..2733f888
--- /dev/null
+++ b/data/presets/@templates/internet_access.json
@@ -0,0 +1,27 @@
+{
+ "fields": [
+ "internet_access",
+ "internet_access/fee"
+ ],
+ "moreFields": [
+ "internet_access",
+ "internet_access/fee",
+ "internet_access/ssid"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "@template": "internet_access"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/@templates/poi.json b/data/presets/@templates/poi.json
new file mode 100644
index 00000000..a2aba926
--- /dev/null
+++ b/data/presets/@templates/poi.json
@@ -0,0 +1,31 @@
+{
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "contact/facebook",
+ "gnis/feature_id-US",
+ "level",
+ "not/name",
+ "opening_hours",
+ "payment_multi",
+ "ref/vatin",
+ "ref/FR/siret-FR",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "@template": "poi"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+}
diff --git a/data/presets/_attraction.json b/data/presets/_attraction.json
index a2320db7..d08a0fbe 100644
--- a/data/presets/_attraction.json
+++ b/data/presets/_attraction.json
@@ -9,13 +9,9 @@
"charge_fee"
],
"moreFields": [
+ "{@templates/contact}",
"address",
- "email",
- "fax",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
+ "payment_multi"
],
"geometry": [
"point",
diff --git a/data/presets/_ford_line.json b/data/presets/_ford_line.json
index d50c94fd..1b1f466b 100644
--- a/data/presets/_ford_line.json
+++ b/data/presets/_ford_line.json
@@ -1,4 +1,5 @@
{
+ "icon": "roentgen-ford",
"geometry": [
"line"
],
diff --git a/data/presets/_pipeline.json b/data/presets/_pipeline.json
index d379c09a..938ef101 100644
--- a/data/presets/_pipeline.json
+++ b/data/presets/_pipeline.json
@@ -11,7 +11,7 @@
"area"
],
"tags": {
- "natural": "*"
+ "pipeline": "*"
},
"searchable": false,
"name": "Pipeline Feature"
diff --git a/data/presets/advertising.json b/data/presets/advertising.json
new file mode 100644
index 00000000..588fcaed
--- /dev/null
+++ b/data/presets/advertising.json
@@ -0,0 +1,29 @@
+{
+ "icon": "temaki-billboard",
+ "fields": [
+ "advertising",
+ "operator",
+ "lit",
+ "visibility"
+ ],
+ "moreFields": [
+ "access_simple",
+ "height",
+ "message"
+ ],
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "advertising": "*"
+ },
+ "terms": [
+ "advertising screen",
+ "flag",
+ "neon sign",
+ "sign"
+ ],
+ "name": "Advertising Device"
+}
diff --git a/data/presets/advertising/billboard.json b/data/presets/advertising/billboard.json
index f8fa2d3c..02432b4d 100644
--- a/data/presets/advertising/billboard.json
+++ b/data/presets/advertising/billboard.json
@@ -1,15 +1,12 @@
{
"icon": "temaki-billboard",
"fields": [
- "operator",
- "lit",
- "support",
- "visibility"
+ "{advertising}",
+ "support"
],
"moreFields": [
- "access_simple",
- "direction",
- "height"
+ "{advertising}",
+ "direction"
],
"geometry": [
"point",
@@ -19,5 +16,10 @@
"tags": {
"advertising": "billboard"
},
+ "terms": [
+ "ad",
+ "advertising",
+ "spam"
+ ],
"name": "Billboard"
}
diff --git a/data/presets/advertising/board.json b/data/presets/advertising/board.json
index 5af5c209..f0a827dc 100644
--- a/data/presets/advertising/board.json
+++ b/data/presets/advertising/board.json
@@ -1,15 +1,12 @@
{
"icon": "temaki-bulletin_board",
"fields": [
- "operator",
- "lit",
- "support",
- "visibility"
+ "{advertising}",
+ "support"
],
"moreFields": [
- "access_simple",
- "direction",
- "height"
+ "{advertising}",
+ "direction"
],
"geometry": [
"point",
@@ -19,6 +16,7 @@
"advertising": "board"
},
"terms": [
+ "ad",
"advertising",
"announcements",
"blackboard",
@@ -30,6 +28,7 @@
"noticeboard",
"pinboard",
"sign",
+ "spam",
"whiteboard"
],
"name": "Notice Board",
diff --git a/data/presets/advertising/column.json b/data/presets/advertising/column.json
index f094e64b..c823e386 100644
--- a/data/presets/advertising/column.json
+++ b/data/presets/advertising/column.json
@@ -1,13 +1,10 @@
{
- "icon": "temaki-storage_tank",
+ "icon": "roentgen-advertising_column",
"fields": [
- "operator",
- "lit",
- "visibility"
+ "{advertising}"
],
"moreFields": [
- "access_simple",
- "height"
+ "{advertising}"
],
"geometry": [
"point",
@@ -16,5 +13,10 @@
"tags": {
"advertising": "column"
},
+ "terms": [
+ "ad",
+ "advertising",
+ "spam"
+ ],
"name": "Advertising Column"
}
diff --git a/data/presets/advertising/poster_box.json b/data/presets/advertising/poster_box.json
index 4280251a..e7a45563 100644
--- a/data/presets/advertising/poster_box.json
+++ b/data/presets/advertising/poster_box.json
@@ -1,21 +1,24 @@
{
"icon": "temaki-poster_box",
"fields": [
- "operator",
- "lit",
- "support",
- "visibility"
+ "{advertising}",
+ "support"
],
"moreFields": [
- "access_simple",
- "direction",
- "height"
+ "{advertising}",
+ "direction"
],
"geometry": [
- "point"
+ "point",
+ "line"
],
"tags": {
"advertising": "poster_box"
},
+ "terms": [
+ "ad",
+ "advertising",
+ "spam"
+ ],
"name": "Poster Box"
}
diff --git a/data/presets/advertising/totem.json b/data/presets/advertising/totem.json
index 3113266b..02b2b5ab 100644
--- a/data/presets/advertising/totem.json
+++ b/data/presets/advertising/totem.json
@@ -1,19 +1,22 @@
{
"fields": [
- "operator",
- "lit",
- "visibility"
+ "{advertising}"
],
"moreFields": [
- "access_simple",
- "direction",
- "height"
+ "{advertising}",
+ "direction"
],
"geometry": [
- "point"
+ "point",
+ "line"
],
"tags": {
"advertising": "totem"
},
+ "terms": [
+ "ad",
+ "advertising",
+ "spam"
+ ],
"name": "Advertising Totem"
}
diff --git a/data/presets/aerialway/j-bar.json b/data/presets/aerialway/j-bar.json
index c864cb7b..7ef976d6 100644
--- a/data/presets/aerialway/j-bar.json
+++ b/data/presets/aerialway/j-bar.json
@@ -13,11 +13,11 @@
},
"terms": [
"drag lift",
+ "jaybar",
+ "jbar",
"skiing",
"snowboarding",
- "surface cable",
- "jaybar",
- "jbar"
+ "surface cable"
],
"name": "J-Bar Lift"
}
diff --git a/data/presets/aerialway/pylon.json b/data/presets/aerialway/pylon.json
index ceb920e7..501016a2 100644
--- a/data/presets/aerialway/pylon.json
+++ b/data/presets/aerialway/pylon.json
@@ -12,9 +12,9 @@
},
"terms": [
"chair lift pole",
+ "lift tower",
"skiing",
- "snowboarding",
- "lift tower"
+ "snowboarding"
],
"name": "Aerialway Pylon"
}
diff --git a/data/presets/aerialway/zip_line.json b/data/presets/aerialway/zip_line.json
index 5df3b888..16962766 100644
--- a/data/presets/aerialway/zip_line.json
+++ b/data/presets/aerialway/zip_line.json
@@ -18,7 +18,7 @@
"flying fox",
"foefie slide",
"gravity propelled aerial ropeslide",
- "Tyrolean traverse",
+ "tyrolean traverse",
"zip wire",
"zip-line",
"zipline",
diff --git a/data/presets/aeroway/aerodrome.json b/data/presets/aeroway/aerodrome.json
index 6d936321..ecf41923 100644
--- a/data/presets/aeroway/aerodrome.json
+++ b/data/presets/aeroway/aerodrome.json
@@ -6,16 +6,12 @@
"icao",
"address",
"operator",
- "operator/type",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "operator/type"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "gnis/feature_id-US"
],
"geometry": [
"area",
diff --git a/data/presets/aeroway/helipad.json b/data/presets/aeroway/helipad.json
index af170afa..231a1c8c 100644
--- a/data/presets/aeroway/helipad.json
+++ b/data/presets/aeroway/helipad.json
@@ -5,6 +5,7 @@
"ref",
"operator",
"surface",
+ "maxweight",
"lit"
],
"moreFields": [
@@ -12,8 +13,7 @@
"address",
"charge_fee",
"fee",
- "opening_hours",
- "opening_hours/covid19"
+ "opening_hours"
],
"geometry": [
"area",
diff --git a/data/presets/aeroway/jet_bridge.json b/data/presets/aeroway/jet_bridge.json
index fbf20d4d..5ec117d5 100644
--- a/data/presets/aeroway/jet_bridge.json
+++ b/data/presets/aeroway/jet_bridge.json
@@ -24,10 +24,10 @@
"finger",
"gangway",
"jet bridge",
- "jetbridge",
"jet way",
+ "jetbridge",
"jetway",
- "PBB",
+ "pbb",
"portal",
"terminal gate connector"
],
diff --git a/data/presets/aeroway/spaceport.json b/data/presets/aeroway/spaceport.json
index 7255ed1f..8288e656 100644
--- a/data/presets/aeroway/spaceport.json
+++ b/data/presets/aeroway/spaceport.json
@@ -8,12 +8,8 @@
"wikidata"
],
"moreFields": [
- "email",
- "fax",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "phone"
+ "{@templates/contact}",
+ "{@templates/internet_access}"
],
"geometry": [
"area",
diff --git a/data/presets/aeroway/terminal.json b/data/presets/aeroway/terminal.json
index c39ffe05..fb4fc71a 100644
--- a/data/presets/aeroway/terminal.json
+++ b/data/presets/aeroway/terminal.json
@@ -19,8 +19,8 @@
"aeroway": "terminal"
},
"terms": [
- "airport",
- "aerodrome"
+ "aerodrome",
+ "airport"
],
"name": "Airport Terminal"
}
diff --git a/data/presets/amenity/_bus_station.json b/data/presets/amenity/_bus_station.json
index 6547ee3c..61525472 100644
--- a/data/presets/amenity/_bus_station.json
+++ b/data/presets/amenity/_bus_station.json
@@ -4,9 +4,11 @@
"name",
"building_area",
"operator",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{amenity}"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/_coworking_space.json b/data/presets/amenity/_coworking_space.json
index bece3761..69f9cce7 100644
--- a/data/presets/amenity/_coworking_space.json
+++ b/data/presets/amenity/_coworking_space.json
@@ -5,12 +5,10 @@
"address",
"building_area_yes",
"opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
],
"moreFields": [
- "opening_hours/covid19",
+ "{@templates/internet_access}",
"ref/FR/siret-FR"
],
"geometry": [
diff --git a/data/presets/amenity/_embassy.json b/data/presets/amenity/_embassy.json
index 28b08a15..2922a756 100644
--- a/data/presets/amenity/_embassy.json
+++ b/data/presets/amenity/_embassy.json
@@ -7,9 +7,7 @@
"building_area_yes"
],
"moreFields": [
- "email",
- "fax",
- "phone",
+ "{@templates/contact}",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/animal_boarding.json b/data/presets/amenity/animal_boarding.json
index 6e5e8242..9c209013 100644
--- a/data/presets/amenity/animal_boarding.json
+++ b/data/presets/amenity/animal_boarding.json
@@ -9,14 +9,7 @@
"animal_boarding"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/animal_breeding.json b/data/presets/amenity/animal_breeding.json
index 6f455466..97cf7099 100644
--- a/data/presets/amenity/animal_breeding.json
+++ b/data/presets/amenity/animal_breeding.json
@@ -9,14 +9,7 @@
"animal_breeding"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/animal_shelter.json b/data/presets/amenity/animal_shelter.json
index 8e54f89b..8584ff50 100644
--- a/data/presets/amenity/animal_shelter.json
+++ b/data/presets/amenity/animal_shelter.json
@@ -9,13 +9,7 @@
"animal_shelter"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
@@ -30,12 +24,12 @@
"kitten",
"pet care",
"pet rescue",
+ "pound",
"puppy",
"raptor",
"reptile",
"rescue",
- "spca",
- "pound"
+ "spca"
],
"tags": {
"amenity": "animal_shelter"
diff --git a/data/presets/amenity/arts_centre.json b/data/presets/amenity/arts_centre.json
index 9f93716e..96771994 100644
--- a/data/presets/amenity/arts_centre.json
+++ b/data/presets/amenity/arts_centre.json
@@ -8,20 +8,10 @@
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "website",
- "wheelchair"
+ "fee"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/atm.json b/data/presets/amenity/atm.json
index 1732e5f8..304f99f7 100644
--- a/data/presets/amenity/atm.json
+++ b/data/presets/amenity/atm.json
@@ -18,7 +18,6 @@
"lit",
"manufacturer",
"opening_hours",
- "opening_hours/covid19",
"wheelchair"
],
"geometry": [
@@ -26,9 +25,9 @@
"vertex"
],
"terms": [
- "money",
"cash",
- "machine"
+ "machine",
+ "money"
],
"tags": {
"amenity": "atm"
diff --git a/data/presets/amenity/baking_oven.json b/data/presets/amenity/baking_oven.json
new file mode 100644
index 00000000..afe10d46
--- /dev/null
+++ b/data/presets/amenity/baking_oven.json
@@ -0,0 +1,28 @@
+{
+ "icon": "temaki-bread",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "baking_oven"
+ },
+ "fields": [
+ "covered",
+ "access_simple"
+ ],
+ "moreFields": [
+ "lit"
+ ],
+ "terms": [
+ "bakehouse",
+ "beehive oven",
+ "bread",
+ "clay oven",
+ "horno",
+ "masonry oven",
+ "pizza oven",
+ "tabun oven"
+ ],
+ "name": "Baking Oven"
+}
diff --git a/data/presets/amenity/bank.json b/data/presets/amenity/bank.json
index f4bb5059..47168757 100644
--- a/data/presets/amenity/bank.json
+++ b/data/presets/amenity/bank.json
@@ -7,25 +7,16 @@
"building_area_yes",
"opening_hours",
"atm",
- "drive_through"
+ "drive_through",
+ "opening_hours/drive_through"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"branch_brand",
"brand",
- "currency_multi",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "phone",
- "ref/vatin",
- "ref/FR/siret-FR",
- "wheelchair"
+ "currency_multi"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/bar.json b/data/presets/amenity/bar.json
index b5bb8a6b..bb31b03c 100644
--- a/data/presets/amenity/bar.json
+++ b/data/presets/amenity/bar.json
@@ -9,35 +9,25 @@
"brewery"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
"microbrewery",
- "opening_hours/covid19",
"operator",
"outdoor_seating",
- "payment_multi",
- "phone",
- "ref/vatin",
- "ref/FR/siret-FR",
"smoking",
- "sport_pub",
- "wheelchair"
+ "fhrs/id-GB",
+ "sport/sport_pub"
],
"geometry": [
"point",
"area"
],
"terms": [
- "dive",
"beer",
"bier",
- "booze"
+ "booze",
+ "dive"
],
"tags": {
"amenity": "bar"
diff --git a/data/presets/amenity/bar/lgbtq.json b/data/presets/amenity/bar/lgbtq.json
index 2944b744..fe3d29da 100644
--- a/data/presets/amenity/bar/lgbtq.json
+++ b/data/presets/amenity/bar/lgbtq.json
@@ -7,9 +7,9 @@
"terms": [
"gay bar",
"lesbian bar",
- "lgbtq bar",
+ "lgb bar",
"lgbt bar",
- "lgb bar"
+ "lgbtq bar"
],
"tags": {
"amenity": "bar",
diff --git a/data/presets/amenity/bench.json b/data/presets/amenity/bench.json
index 3a245608..1addc71f 100644
--- a/data/presets/amenity/bench.json
+++ b/data/presets/amenity/bench.json
@@ -2,11 +2,12 @@
"icon": "temaki-bench",
"fields": [
"backrest",
+ "armrest",
"material",
- "seats",
- "colour"
+ "seats"
],
"moreFields": [
+ "colour",
"access_simple",
"direction",
"height",
@@ -22,8 +23,8 @@
"line"
],
"terms": [
- "seat",
- "chair"
+ "chair",
+ "seat"
],
"tags": {
"amenity": "bench"
diff --git a/data/presets/amenity/bicycle_parking.json b/data/presets/amenity/bicycle_parking.json
index f8c3f108..8915dada 100644
--- a/data/presets/amenity/bicycle_parking.json
+++ b/data/presets/amenity/bicycle_parking.json
@@ -21,6 +21,7 @@
"geometry": [
"point",
"vertex",
+ "line",
"area"
],
"terms": [
diff --git a/data/presets/amenity/bicycle_parking/building.json b/data/presets/amenity/bicycle_parking/building.json
index 36e2a17c..43030d94 100644
--- a/data/presets/amenity/bicycle_parking/building.json
+++ b/data/presets/amenity/bicycle_parking/building.json
@@ -6,8 +6,7 @@
"building_area_yes"
],
"moreFields": [
- "{amenity/bicycle_parking}",
- "opening_hours/covid19"
+ "{amenity/bicycle_parking}"
],
"geometry": [
"point",
@@ -22,11 +21,11 @@
"key": "bicycle_parking"
},
"terms": [
- "Bike Parking Station",
+ "bike parking station",
"cycle parking",
"cycling",
- "Multi-Storey Bicycle Park",
- "Multi-Storey Bike Park"
+ "multi-storey bicycle park",
+ "multi-storey bike park"
],
"name": "Bicycle Parking Garage"
}
diff --git a/data/presets/amenity/bicycle_parking/lockers.json b/data/presets/amenity/bicycle_parking/lockers.json
index 92e9d547..0ac80b1e 100644
--- a/data/presets/amenity/bicycle_parking/lockers.json
+++ b/data/presets/amenity/bicycle_parking/lockers.json
@@ -13,9 +13,9 @@
"key": "bicycle_parking"
},
"terms": [
+ "bike lockers",
"cycle locker",
- "cycling",
- "Bike Lockers"
+ "cycling"
],
"name": "Bicycle Lockers"
}
diff --git a/data/presets/amenity/bicycle_parking/shed.json b/data/presets/amenity/bicycle_parking/shed.json
index dfcf90ca..25767023 100644
--- a/data/presets/amenity/bicycle_parking/shed.json
+++ b/data/presets/amenity/bicycle_parking/shed.json
@@ -17,9 +17,9 @@
"key": "bicycle_parking"
},
"terms": [
+ "bike shed",
"cycle shed",
- "cycling",
- "Bike Shed"
+ "cycling"
],
"name": "Bicycle Shed"
}
diff --git a/data/presets/amenity/bicycle_rental.json b/data/presets/amenity/bicycle_rental.json
index ab875653..146b6977 100644
--- a/data/presets/amenity/bicycle_rental.json
+++ b/data/presets/amenity/bicycle_rental.json
@@ -10,15 +10,10 @@
"payment_multi_fee"
],
"moreFields": [
+ "{@templates/poi}",
"address",
"covered",
- "email",
- "fax",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
+ "ref"
],
"geometry": [
"point",
@@ -26,11 +21,11 @@
"area"
],
"terms": [
- "bike",
"bicycle",
- "bikeshare",
- "bike share",
"bicycle share",
+ "bike",
+ "bike share",
+ "bikeshare",
"cycle dock",
"cycle hub",
"cycleshare",
diff --git a/data/presets/amenity/bicycle_repair_station.json b/data/presets/amenity/bicycle_repair_station.json
index edc98ef7..7bdf1e5d 100644
--- a/data/presets/amenity/bicycle_repair_station.json
+++ b/data/presets/amenity/bicycle_repair_station.json
@@ -15,8 +15,7 @@
"covered",
"indoor",
"level",
- "manufacturer",
- "opening_hours/covid19"
+ "manufacturer"
],
"geometry": [
"point",
@@ -27,6 +26,7 @@
"bike multitool",
"bike repair",
"bike tools",
+ "compressed air",
"cycle pump",
"cycle repair",
"cycling"
diff --git a/data/presets/amenity/bicycle_wash.json b/data/presets/amenity/bicycle_wash.json
new file mode 100644
index 00000000..91d45678
--- /dev/null
+++ b/data/presets/amenity/bicycle_wash.json
@@ -0,0 +1,34 @@
+{
+ "icon": "temaki-bicycle_wash",
+ "fields": [
+ "name",
+ "fee",
+ "payment_multi_fee",
+ "capacity",
+ "access",
+ "operator",
+ "self_service"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "covered"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "bicycle",
+ "bicycle cleaning",
+ "bicycle wash",
+ "bike",
+ "bike wash",
+ "cycle rinse station",
+ "cycle wash",
+ "cycling"
+ ],
+ "tags": {
+ "amenity": "bicycle_wash"
+ },
+ "name": "Bicycle Wash"
+}
diff --git a/data/presets/amenity/biergarten.json b/data/presets/amenity/biergarten.json
index eb8f2feb..580104ae 100644
--- a/data/presets/amenity/biergarten.json
+++ b/data/presets/amenity/biergarten.json
@@ -10,7 +10,7 @@
"moreFields": [
"{amenity/bar}",
"cuisine",
- "opening_hours/covid19"
+ "website/menu"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/binoculars.json b/data/presets/amenity/binoculars.json
index 1d619e38..b357f74b 100644
--- a/data/presets/amenity/binoculars.json
+++ b/data/presets/amenity/binoculars.json
@@ -24,8 +24,8 @@
"terms": [
"observation viewer",
"optical ranger",
- "spotting scope",
"sight",
+ "spotting scope",
"spyglass",
"telescope",
"tower viewer",
diff --git a/data/presets/amenity/boat_rental.json b/data/presets/amenity/boat_rental.json
index dbba77e6..4af7d57d 100644
--- a/data/presets/amenity/boat_rental.json
+++ b/data/presets/amenity/boat_rental.json
@@ -10,14 +10,9 @@
"charge_fee"
],
"moreFields": [
+ "{@templates/poi}",
"access_simple",
- "address",
- "email",
- "fax",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "address"
],
"geometry": [
"point",
@@ -26,5 +21,8 @@
"tags": {
"amenity": "boat_rental"
},
+ "terms": [
+ "boat hire"
+ ],
"name": "Boat Rental"
}
diff --git a/data/presets/amenity/bureau_de_change.json b/data/presets/amenity/bureau_de_change.json
index add14f37..db81ccb5 100644
--- a/data/presets/amenity/bureau_de_change.json
+++ b/data/presets/amenity/bureau_de_change.json
@@ -9,14 +9,7 @@
"building_area"
],
"moreFields": [
- "email",
- "fax",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/cafe.json b/data/presets/amenity/cafe.json
index 90483b73..e719add6 100644
--- a/data/presets/amenity/cafe.json
+++ b/data/presets/amenity/cafe.json
@@ -7,38 +7,34 @@
"building_area_yes",
"opening_hours",
"outdoor_seating",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
+ "{@templates/internet_access}",
"phone",
- "website"
+ "website",
+ "opening_hours/drive_through"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"bar",
"branch_brand",
"brand",
"capacity",
+ "changing_table",
"delivery",
"diet_multi",
"drive_through",
- "email",
- "fax",
- "gnis/feature_id-US",
"highchair",
- "level",
"min_age",
- "not/name",
- "opening_hours/covid19",
- "payment_multi",
- "ref/vatin",
- "ref/FR/siret-FR",
+ "organic",
"reservation",
"smoking",
"takeaway",
"toilets",
"toilets/wheelchair",
- "wheelchair"
+ "toilets/menstrual_products_poi",
+ "fhrs/id-GB",
+ "website/menu"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/cafe/bubble_tea.json b/data/presets/amenity/cafe/bubble_tea.json
index 5b08d7bb..ae211b72 100644
--- a/data/presets/amenity/cafe/bubble_tea.json
+++ b/data/presets/amenity/cafe/bubble_tea.json
@@ -14,12 +14,12 @@
},
"terms": [
"boba",
+ "boba drink",
"bubble milk tea",
"pearl milk tea",
- "taiwanese tea drink",
- "tapioca",
"pearl tea",
- "boba drink"
+ "taiwanese tea drink",
+ "tapioca"
],
"name": "Bubble Tea Cafe"
}
diff --git a/data/presets/amenity/cafe/coffee_shop.json b/data/presets/amenity/cafe/coffee_shop.json
index 595bac10..05df1b0b 100644
--- a/data/presets/amenity/cafe/coffee_shop.json
+++ b/data/presets/amenity/cafe/coffee_shop.json
@@ -16,9 +16,9 @@
"americano",
"brew",
"cafe",
- "café",
"caffe",
"caffè",
+ "café",
"cappuccino",
"cocoa",
"coffee shop",
diff --git a/data/presets/amenity/cafe/teahouse.json b/data/presets/amenity/cafe/teahouse.json
new file mode 100644
index 00000000..a2294602
--- /dev/null
+++ b/data/presets/amenity/cafe/teahouse.json
@@ -0,0 +1,30 @@
+{
+ "icon": "maki-cafe",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "cafe",
+ "cuisine": "tea"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "cafe"
+ },
+ "terms": [
+ "black tea",
+ "green tea",
+ "hot drinks",
+ "oolong tea",
+ "tea",
+ "tea drink",
+ "tea house",
+ "tea room",
+ "teahouse",
+ "tearoom",
+ "white tea",
+ "yellow tea"
+ ],
+ "name": "Teahouse"
+}
diff --git a/data/presets/amenity/car_pooling.json b/data/presets/amenity/car_pooling.json
index 938981ac..fa5866aa 100644
--- a/data/presets/amenity/car_pooling.json
+++ b/data/presets/amenity/car_pooling.json
@@ -10,10 +10,7 @@
"lit"
],
"moreFields": [
- "email",
- "fax",
- "opening_hours/covid19",
- "phone",
+ "{@templates/contact}",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/car_rental.json b/data/presets/amenity/car_rental.json
index 990eda22..8f0296aa 100644
--- a/data/presets/amenity/car_rental.json
+++ b/data/presets/amenity/car_rental.json
@@ -8,14 +8,9 @@
"payment_multi"
],
"moreFields": [
+ "{@templates/poi}",
"branch_brand",
- "brand",
- "email",
- "fax",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "brand"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/car_sharing.json b/data/presets/amenity/car_sharing.json
index a9660f7e..8f1c16eb 100644
--- a/data/presets/amenity/car_sharing.json
+++ b/data/presets/amenity/car_sharing.json
@@ -10,12 +10,10 @@
"supervised"
],
"moreFields": [
+ "{@templates/contact}",
"branch_brand",
"brand",
- "email",
- "fax",
"lit",
- "phone",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/car_wash.json b/data/presets/amenity/car_wash.json
index ed12a138..b8e0f438 100644
--- a/data/presets/amenity/car_wash.json
+++ b/data/presets/amenity/car_wash.json
@@ -11,13 +11,7 @@
"automated"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/casino.json b/data/presets/amenity/casino.json
index 5f80300f..62568fc2 100644
--- a/data/presets/amenity/casino.json
+++ b/data/presets/amenity/casino.json
@@ -10,32 +10,22 @@
"smoking"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
- "min_age",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "ref/vatin",
- "ref/FR/siret-FR",
- "wheelchair"
+ "min_age"
],
"geometry": [
"point",
"area"
],
"terms": [
- "gambling",
- "roulette",
+ "blackjack",
"craps",
+ "gambling",
"poker",
- "blackjack"
+ "roulette"
],
"tags": {
"amenity": "casino"
diff --git a/data/presets/amenity/charging_station.json b/data/presets/amenity/charging_station.json
index 704212b0..d6a65fb3 100644
--- a/data/presets/amenity/charging_station.json
+++ b/data/presets/amenity/charging_station.json
@@ -7,12 +7,14 @@
"access_simple",
"fee",
"payment_multi_fee",
- "charge_fee"
+ "charge_fee",
+ "ref"
],
"moreFields": [
"covered",
"level",
"manufacturer",
+ "maxstay",
"network"
],
"geometry": [
@@ -24,9 +26,11 @@
"amenity": "charging_station"
},
"terms": [
- "EV",
- "Electric Vehicle",
- "Supercharger"
+ "charge point",
+ "charging stall",
+ "electric vehicle",
+ "ev",
+ "supercharger"
],
"name": "Charging Station"
}
diff --git a/data/presets/amenity/childcare.json b/data/presets/amenity/childcare.json
index 9f62a132..6722eb7e 100644
--- a/data/presets/amenity/childcare.json
+++ b/data/presets/amenity/childcare.json
@@ -10,21 +10,17 @@
"website"
],
"moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"baby_feeding",
"capacity",
- "email",
- "fax",
+ "fhrs/id-GB",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
"max_age",
"min_age",
"not/name",
- "opening_hours/covid19",
"payment_multi",
- "phone",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/cinema.json b/data/presets/amenity/cinema.json
index f98b5843..5cb106c2 100644
--- a/data/presets/amenity/cinema.json
+++ b/data/presets/amenity/cinema.json
@@ -9,18 +9,12 @@
"payment_multi"
],
"moreFields": [
+ "{@templates/poi}",
"air_conditioning",
"branch_brand",
"brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "min_age",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "fhrs/id-GB",
+ "min_age"
],
"geometry": [
"point",
@@ -31,10 +25,10 @@
"film",
"flick",
"movie",
- "theater",
"picture",
+ "screen",
"show",
- "screen"
+ "theater"
],
"tags": {
"amenity": "cinema"
diff --git a/data/presets/amenity/clinic.json b/data/presets/amenity/clinic.json
index 01f86ecf..aedf3186 100644
--- a/data/presets/amenity/clinic.json
+++ b/data/presets/amenity/clinic.json
@@ -10,17 +10,10 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/poi}",
"air_conditioning",
"branch_brand",
- "brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "brand"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/clinic/dialysis.json b/data/presets/amenity/clinic/dialysis.json
new file mode 100644
index 00000000..f920d7e5
--- /dev/null
+++ b/data/presets/amenity/clinic/dialysis.json
@@ -0,0 +1,24 @@
+{
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "dialysis"
+ },
+ "addTags": {
+ "amenity": "clinic",
+ "healthcare": "dialysis",
+ "healthcare:speciality": "nephrology"
+ },
+ "reference": {
+ "key": "healthcare",
+ "value": "dialysis"
+ },
+ "terms": [
+ "dialysis clinic",
+ "kidney dialysis"
+ ],
+ "name": "Dialysis Center"
+}
diff --git a/data/presets/amenity/clinic/fertility.json b/data/presets/amenity/clinic/fertility.json
index 2642deb6..2dde77ab 100644
--- a/data/presets/amenity/clinic/fertility.json
+++ b/data/presets/amenity/clinic/fertility.json
@@ -7,9 +7,9 @@
"terms": [
"egg",
"fertility",
+ "ovulation",
"reproductive",
- "sperm",
- "ovulation"
+ "sperm"
],
"tags": {
"amenity": "clinic",
diff --git a/data/presets/amenity/clock/sundial.json b/data/presets/amenity/clock/sundial.json
index 5f60b5a5..89f8a203 100644
--- a/data/presets/amenity/clock/sundial.json
+++ b/data/presets/amenity/clock/sundial.json
@@ -6,7 +6,6 @@
"visibility",
"inscription"
],
- "moreFields": [],
"geometry": [
"point",
"vertex"
diff --git a/data/presets/amenity/college.json b/data/presets/amenity/college.json
deleted file mode 100644
index 2229820a..00000000
--- a/data/presets/amenity/college.json
+++ /dev/null
@@ -1,35 +0,0 @@
-{
- "icon": "maki-college",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "website",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "denomination",
- "email",
- "fax",
- "gnis/feature_id-US",
- "not/name",
- "phone",
- "religion",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "terms": [
- "university",
- "undergraduate school"
- ],
- "tags": {
- "amenity": "college"
- },
- "name": "College Grounds"
-}
diff --git a/data/presets/amenity/community_centre.json b/data/presets/amenity/community_centre.json
index 9821057d..5bd3a460 100644
--- a/data/presets/amenity/community_centre.json
+++ b/data/presets/amenity/community_centre.json
@@ -1,6 +1,7 @@
{
"icon": "maki-town-hall",
"fields": [
+ "community_centre",
"name",
"operator",
"operator/type",
@@ -10,15 +11,10 @@
"website"
],
"moreFields": [
+ "{@templates/poi}",
"air_conditioning",
"baby_feeding",
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "phone",
- "polling_station",
- "wheelchair"
+ "polling_station"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/community_centre/club_home.json b/data/presets/amenity/community_centre/club_home.json
new file mode 100644
index 00000000..f6c92a66
--- /dev/null
+++ b/data/presets/amenity/community_centre/club_home.json
@@ -0,0 +1,24 @@
+{
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "club",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "club_home"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "club_home"
+ },
+ "name": "Club Home"
+}
diff --git a/data/presets/amenity/community_centre/community_hall.json b/data/presets/amenity/community_centre/community_hall.json
new file mode 100644
index 00000000..8fe3a1ea
--- /dev/null
+++ b/data/presets/amenity/community_centre/community_hall.json
@@ -0,0 +1,26 @@
+{
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "community center"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "community_hall"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "community_hall"
+ },
+ "name": "Community Hall"
+}
diff --git a/data/presets/amenity/community_centre/cultural_centre.json b/data/presets/amenity/community_centre/cultural_centre.json
new file mode 100644
index 00000000..a5fe4fe9
--- /dev/null
+++ b/data/presets/amenity/community_centre/cultural_centre.json
@@ -0,0 +1,23 @@
+{
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "cultural_centre"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "cultural_centre"
+ },
+ "name": "Cultural Centre"
+}
diff --git a/data/presets/amenity/community_centre/family_centre.json b/data/presets/amenity/community_centre/family_centre.json
new file mode 100644
index 00000000..ced4b409
--- /dev/null
+++ b/data/presets/amenity/community_centre/family_centre.json
@@ -0,0 +1,23 @@
+{
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "family_centre"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "family_centre"
+ },
+ "name": "Family Centre"
+}
diff --git a/data/presets/amenity/community_centre/lgbtq.json b/data/presets/amenity/community_centre/lgbtq.json
index 7a27a549..843f7aa7 100644
--- a/data/presets/amenity/community_centre/lgbtq.json
+++ b/data/presets/amenity/community_centre/lgbtq.json
@@ -1,16 +1,23 @@
{
"icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
"geometry": [
"point",
"area"
],
"terms": [
- "lgbtq event",
- "lgbtq hall",
+ "lgb event",
+ "lgb hall",
"lgbt event",
"lgbt hall",
- "lgb event",
- "lgb hall"
+ "lgbtq event",
+ "lgbtq hall"
],
"tags": {
"amenity": "community_centre",
diff --git a/data/presets/amenity/community_centre/parish_hall.json b/data/presets/amenity/community_centre/parish_hall.json
new file mode 100644
index 00000000..dddddee9
--- /dev/null
+++ b/data/presets/amenity/community_centre/parish_hall.json
@@ -0,0 +1,26 @@
+{
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "parish center"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "parish_hall"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "parish_hall"
+ },
+ "name": "Parish Hall"
+}
diff --git a/data/presets/amenity/community_centre/village_hall.json b/data/presets/amenity/community_centre/village_hall.json
new file mode 100644
index 00000000..d52ec99b
--- /dev/null
+++ b/data/presets/amenity/community_centre/village_hall.json
@@ -0,0 +1,26 @@
+{
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "village community center"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "village_hall"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "village_hall"
+ },
+ "name": "Village Hall"
+}
diff --git a/data/presets/amenity/community_centre/youth_centre.json b/data/presets/amenity/community_centre/youth_centre.json
index 68e71b77..194c9faf 100644
--- a/data/presets/amenity/community_centre/youth_centre.json
+++ b/data/presets/amenity/community_centre/youth_centre.json
@@ -1,5 +1,12 @@
{
"icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
"geometry": [
"point",
"area"
@@ -13,5 +20,9 @@
"amenity": "community_centre",
"community_centre": "youth_centre"
},
+ "reference": {
+ "key": "community_centre",
+ "value": "youth_centre"
+ },
"name": "Youth Center"
}
diff --git a/data/presets/amenity/compressed_air.json b/data/presets/amenity/compressed_air.json
index cae5a0cd..ad9a42b6 100644
--- a/data/presets/amenity/compressed_air.json
+++ b/data/presets/amenity/compressed_air.json
@@ -21,5 +21,8 @@
"tags": {
"amenity": "compressed_air"
},
+ "terms": [
+ "air compressor"
+ ],
"name": "Compressed Air"
}
diff --git a/data/presets/amenity/conference_centre.json b/data/presets/amenity/conference_centre.json
index 833b7f97..1fa0b201 100644
--- a/data/presets/amenity/conference_centre.json
+++ b/data/presets/amenity/conference_centre.json
@@ -7,19 +7,13 @@
"building_area_yes",
"address",
"website",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "not/name",
- "phone",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/courthouse.json b/data/presets/amenity/courthouse.json
index 2579c251..83551cf4 100644
--- a/data/presets/amenity/courthouse.json
+++ b/data/presets/amenity/courthouse.json
@@ -7,11 +7,9 @@
"building_area_yes"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
"level",
- "phone",
"polling_station",
"smoking",
"wheelchair"
diff --git a/data/presets/amenity/crematorium.json b/data/presets/amenity/crematorium.json
index d4ab0d2a..8fed901a 100644
--- a/data/presets/amenity/crematorium.json
+++ b/data/presets/amenity/crematorium.json
@@ -2,22 +2,17 @@
"icon": "maki-cemetery",
"fields": [
"name",
- "website",
- "phone",
"opening_hours",
- "wheelchair"
+ "wheelchair",
+ "phone",
+ "website"
],
"moreFields": [
+ "{@templates/contact}",
"address",
- "email",
- "fax",
"gnis/feature_id-US",
"level",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "website",
- "wheelchair"
+ "ref/FR/siret-FR"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/dentist.json b/data/presets/amenity/dentist.json
index 120353b9..1b011e87 100644
--- a/data/presets/amenity/dentist.json
+++ b/data/presets/amenity/dentist.json
@@ -9,22 +9,15 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
"area"
],
"terms": [
- "tooth",
- "teeth"
+ "teeth",
+ "tooth"
],
"tags": {
"amenity": "dentist"
diff --git a/data/presets/amenity/device_charging_station.json b/data/presets/amenity/device_charging_station.json
new file mode 100644
index 00000000..2a5b4466
--- /dev/null
+++ b/data/presets/amenity/device_charging_station.json
@@ -0,0 +1,29 @@
+{
+ "icon": "temaki-electronic",
+ "fields": [
+ "access_simple",
+ "capacity",
+ "fee",
+ "payment_multi",
+ "level",
+ "lockable",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "wheelchair",
+ "operator",
+ "indoor"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "amenity": "device_charging_station"
+ },
+ "terms": [
+ "charger",
+ "plug",
+ "usb"
+ ],
+ "name": "Device Charging Station"
+}
diff --git a/data/presets/amenity/dive_centre.json b/data/presets/amenity/dive_centre.json
index 05c05b8a..b2e591c5 100644
--- a/data/presets/amenity/dive_centre.json
+++ b/data/presets/amenity/dive_centre.json
@@ -9,14 +9,7 @@
"scuba_diving"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/doctors.json b/data/presets/amenity/doctors.json
index f8117597..523c7152 100644
--- a/data/presets/amenity/doctors.json
+++ b/data/presets/amenity/doctors.json
@@ -9,14 +9,7 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/doctors/cardiology.json b/data/presets/amenity/doctors/cardiology.json
index a644403a..d911eb18 100644
--- a/data/presets/amenity/doctors/cardiology.json
+++ b/data/presets/amenity/doctors/cardiology.json
@@ -6,7 +6,7 @@
],
"terms": [
"cardiac surgeon",
- "Cardiology",
+ "cardiology",
"cardiovascular system",
"coronary artery",
"heart"
diff --git a/data/presets/amenity/doctors/child_psychiatry.json b/data/presets/amenity/doctors/child_psychiatry.json
new file mode 100644
index 00000000..89854eb4
--- /dev/null
+++ b/data/presets/amenity/doctors/child_psychiatry.json
@@ -0,0 +1,29 @@
+{
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "adolescent psychiatry",
+ "child psychiatry",
+ "pediatric psychiatry"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "child_psychiatry"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "child_psychiatry",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "child_psychiatry"
+ },
+ "name": "Child and Adolescent Psychiatrist",
+ "aliases": [
+ "Pediatric Psychiatrist"
+ ]
+}
diff --git a/data/presets/amenity/doctors/gastroenterology.json b/data/presets/amenity/doctors/gastroenterology.json
index b1dea481..7b507e17 100644
--- a/data/presets/amenity/doctors/gastroenterology.json
+++ b/data/presets/amenity/doctors/gastroenterology.json
@@ -6,13 +6,13 @@
],
"terms": [
"bowels",
- "digestive system",
"digestion",
+ "digestive system",
"esophagus",
"food pipe",
"gallstone",
- "gastrointestinal tract",
"gastroenterology",
+ "gastrointestinal tract",
"gullet",
"intestines",
"large intestine",
diff --git a/data/presets/amenity/doctors/general.json b/data/presets/amenity/doctors/general.json
index bbb68b39..71b4fe60 100644
--- a/data/presets/amenity/doctors/general.json
+++ b/data/presets/amenity/doctors/general.json
@@ -5,10 +5,10 @@
"area"
],
"terms": [
- "gp",
+ "family doctor",
"family physician",
"family practitioner",
- "family doctor"
+ "gp"
],
"tags": {
"amenity": "doctors",
diff --git a/data/presets/amenity/doctors/gynaecology.json b/data/presets/amenity/doctors/gynaecology.json
index 1d1865b5..290b1e16 100644
--- a/data/presets/amenity/doctors/gynaecology.json
+++ b/data/presets/amenity/doctors/gynaecology.json
@@ -9,6 +9,8 @@
"gynaecologist",
"gynaecology",
"gynecology",
+ "ob/gyn",
+ "obgyn",
"obstetrics",
"ovulation",
"reproductive",
@@ -28,5 +30,9 @@
"key": "healthcare:speciality",
"value": "gynaecology"
},
- "name": "Gynecologist"
+ "name": "Obstetrician/Gynecologist",
+ "aliases": [
+ "Gynecologist",
+ "Obstetrician"
+ ]
}
diff --git a/data/presets/amenity/doctors/nephrology.json b/data/presets/amenity/doctors/nephrology.json
index 07b4c274..7792ee8f 100644
--- a/data/presets/amenity/doctors/nephrology.json
+++ b/data/presets/amenity/doctors/nephrology.json
@@ -6,8 +6,8 @@
],
"terms": [
"kidney",
- "kidneys",
"kidney medicine",
+ "kidneys",
"nephrology",
"renal"
],
diff --git a/data/presets/amenity/doctors/pathology.json b/data/presets/amenity/doctors/pathology.json
index feab3476..2fffc041 100644
--- a/data/presets/amenity/doctors/pathology.json
+++ b/data/presets/amenity/doctors/pathology.json
@@ -5,9 +5,9 @@
"area"
],
"terms": [
- "autopsy",
- "anatomical pathology",
"anatomic pathology",
+ "anatomical pathology",
+ "autopsy",
"pathology"
],
"tags": {
diff --git a/data/presets/amenity/doctors/plastic_surgery.json b/data/presets/amenity/doctors/plastic_surgery.json
index c561fc91..bdb3ab24 100644
--- a/data/presets/amenity/doctors/plastic_surgery.json
+++ b/data/presets/amenity/doctors/plastic_surgery.json
@@ -8,8 +8,8 @@
"aesthetic surgery",
"cosmetic surgery",
"craniofacial surgery",
- "reconstructive surgery",
- "plastic surgery"
+ "plastic surgery",
+ "reconstructive surgery"
],
"tags": {
"amenity": "doctors",
diff --git a/data/presets/amenity/doctors/psychiatrist.json b/data/presets/amenity/doctors/psychiatrist.json
new file mode 100644
index 00000000..790491c0
--- /dev/null
+++ b/data/presets/amenity/doctors/psychiatrist.json
@@ -0,0 +1,26 @@
+{
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "psychiatry",
+ "psychology",
+ "psychotherapy"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "psychiatry"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "psychiatry",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "psychiatry"
+ },
+ "name": "Psychiatrist"
+}
diff --git a/data/presets/amenity/doctors/pulmonology.json b/data/presets/amenity/doctors/pulmonology.json
index 84a76ada..74ffc1d5 100644
--- a/data/presets/amenity/doctors/pulmonology.json
+++ b/data/presets/amenity/doctors/pulmonology.json
@@ -8,13 +8,16 @@
"asthma",
"chest medicine",
"lung",
+ "lungs",
+ "pneumologist",
"pneumology",
- "pneumonology",
"pneumonia",
+ "pneumonologist",
+ "pneumonology",
"pulmonology",
+ "respiratory medicine",
"respiratory tract",
- "respirology",
- "respiratory medicine"
+ "respirology"
],
"tags": {
"amenity": "doctors",
diff --git a/data/presets/amenity/doctors/radiology.json b/data/presets/amenity/doctors/radiology.json
index efe88e15..d6af5689 100644
--- a/data/presets/amenity/doctors/radiology.json
+++ b/data/presets/amenity/doctors/radiology.json
@@ -5,13 +5,13 @@
"area"
],
"terms": [
- "radiology",
"computed tomography",
"ct",
"magnetic resonance imaging",
- "medical ultrasound",
"medical ultrasonography",
+ "medical ultrasound",
"mri",
+ "radiology",
"sonography",
"ultrasonography"
],
diff --git a/data/presets/amenity/doctors/urology.json b/data/presets/amenity/doctors/urology.json
index 40380ad9..7a781c80 100644
--- a/data/presets/amenity/doctors/urology.json
+++ b/data/presets/amenity/doctors/urology.json
@@ -15,10 +15,10 @@
"scrotum",
"testicles",
"testis",
- "urethra",
"ureters",
- "urology",
- "urinary"
+ "urethra",
+ "urinary",
+ "urology"
],
"tags": {
"amenity": "doctors",
diff --git a/data/presets/amenity/dog_toilet.json b/data/presets/amenity/dog_toilet.json
new file mode 100644
index 00000000..b62a438b
--- /dev/null
+++ b/data/presets/amenity/dog_toilet.json
@@ -0,0 +1,33 @@
+{
+ "icon": "maki-dog-park",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "access_simple",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "dog_yes",
+ "gnis/feature_id-US",
+ "ref"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "amenity": "dog_toilet"
+ },
+ "terms": [
+ "dog excrement",
+ "dog excrete",
+ "dog poo area",
+ "dog relief area",
+ "dog urinate",
+ "dog urine"
+ ],
+ "name": "Dog Toilet"
+}
diff --git a/data/presets/amenity/dojo.json b/data/presets/amenity/dojo.json
index e63ecfb3..a683bb04 100644
--- a/data/presets/amenity/dojo.json
+++ b/data/presets/amenity/dojo.json
@@ -8,22 +8,15 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
"area"
],
"terms": [
- "martial arts",
- "dojang"
+ "dojang",
+ "martial arts"
],
"tags": {
"amenity": "dojo"
diff --git a/data/presets/amenity/dressing_room.json b/data/presets/amenity/dressing_room.json
index d83d0202..9cb830b0 100644
--- a/data/presets/amenity/dressing_room.json
+++ b/data/presets/amenity/dressing_room.json
@@ -12,7 +12,6 @@
"fee",
"level",
"opening_hours",
- "opening_hours/covid19",
"payment_multi_fee",
"ref"
],
diff --git a/data/presets/amenity/drinking_water.json b/data/presets/amenity/drinking_water.json
index e538ca99..8e9c44f4 100644
--- a/data/presets/amenity/drinking_water.json
+++ b/data/presets/amenity/drinking_water.json
@@ -6,26 +6,28 @@
"fee",
"payment_multi_fee",
"charge_fee",
- "wheelchair",
- "bottle"
+ "wheelchair"
],
"moreFields": [
+ "bottle",
"covered",
+ "dog_check",
"indoor",
"level",
"lit"
],
"geometry": [
- "point"
+ "point",
+ "vertex"
],
"tags": {
"amenity": "drinking_water"
},
"terms": [
+ "bubbler",
+ "drinking fountain",
"potable water source",
"water fountain",
- "drinking fountain",
- "bubbler",
"water tap"
],
"name": "Drinking Water"
diff --git a/data/presets/amenity/driver_training.json b/data/presets/amenity/driver_training.json
index d3d1f32c..eca53c52 100644
--- a/data/presets/amenity/driver_training.json
+++ b/data/presets/amenity/driver_training.json
@@ -8,14 +8,8 @@
"opening_hours"
],
"moreFields": [
- "license_classes",
- "email",
- "fax",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "website",
- "wheelchair"
+ "{@templates/poi}",
+ "license_classes"
],
"geometry": [
"point",
@@ -29,6 +23,6 @@
"Driving Safety Center"
],
"terms": [
- "Driving School"
+ "driving school"
]
}
diff --git a/data/presets/amenity/events_venue.json b/data/presets/amenity/events_venue.json
index 28ab4360..033e41a0 100644
--- a/data/presets/amenity/events_venue.json
+++ b/data/presets/amenity/events_venue.json
@@ -6,20 +6,15 @@
"building_area_yes",
"address",
"website",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
+ "fhrs/id-GB",
"min_age",
- "phone",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
@@ -31,8 +26,8 @@
"terms": [
"banquet hall",
"baptism",
- "Bar Mitzvah",
- "Bat Mitzvah",
+ "bar mitzvah",
+ "bat mitzvah",
"birthdays",
"celebrations",
"conferences",
diff --git a/data/presets/amenity/exhibition_centre.json b/data/presets/amenity/exhibition_centre.json
index 69afcbff..c99eff81 100644
--- a/data/presets/amenity/exhibition_centre.json
+++ b/data/presets/amenity/exhibition_centre.json
@@ -7,19 +7,13 @@
"building_area_yes",
"address",
"website",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "not/name",
- "phone",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
@@ -29,11 +23,11 @@
"amenity": "exhibition_centre"
},
"terms": [
+ "expo",
"fair",
+ "trade exhibition",
"trade fair",
"trade show",
- "trade exhibition",
- "expo",
"tradeshow"
],
"name": "Exposition Center",
diff --git a/data/presets/amenity/fast_food.json b/data/presets/amenity/fast_food.json
index 80599c25..b5d52400 100644
--- a/data/presets/amenity/fast_food.json
+++ b/data/presets/amenity/fast_food.json
@@ -9,31 +9,30 @@
"building_area_yes",
"opening_hours",
"drive_through",
+ "opening_hours/drive_through",
"phone",
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"branch_brand",
"brand",
"capacity",
+ "changing_table",
"delivery",
- "email",
- "fax",
- "gnis/feature_id-US",
"highchair",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
+ "organic",
"outdoor_seating",
- "payment_multi",
- "ref/vatin",
- "ref/FR/siret-FR",
"smoking",
+ "stroller",
"takeaway",
- "wheelchair"
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi",
+ "fhrs/id-GB",
+ "website/menu"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/fast_food/bagel.json b/data/presets/amenity/fast_food/bagel.json
new file mode 100644
index 00000000..62aea526
--- /dev/null
+++ b/data/presets/amenity/fast_food/bagel.json
@@ -0,0 +1,20 @@
+{
+ "icon": "maki-fast-food",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "breakfast",
+ "lox"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "bagel"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "bagel"
+ },
+ "name": "Bagel Fast Food"
+}
diff --git a/data/presets/amenity/fast_food/chinese.json b/data/presets/amenity/fast_food/chinese.json
new file mode 100644
index 00000000..81475738
--- /dev/null
+++ b/data/presets/amenity/fast_food/chinese.json
@@ -0,0 +1,19 @@
+{
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "dim sum"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "chinese"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "chinese"
+ },
+ "name": "Chinese Fast Food"
+}
diff --git a/data/presets/amenity/fast_food/donut.json b/data/presets/amenity/fast_food/donut.json
index e10b92da..98cc2e72 100644
--- a/data/presets/amenity/fast_food/donut.json
+++ b/data/presets/amenity/fast_food/donut.json
@@ -12,9 +12,9 @@
"coffee",
"dine",
"diner",
+ "dining",
"donut",
"doughnut",
- "dining",
"eat",
"lunch",
"table"
diff --git a/data/presets/amenity/fast_food/fish_and_chips.json b/data/presets/amenity/fast_food/fish_and_chips.json
index 27a2cf41..1dcf1161 100644
--- a/data/presets/amenity/fast_food/fish_and_chips.json
+++ b/data/presets/amenity/fast_food/fish_and_chips.json
@@ -13,10 +13,10 @@
"dinner",
"drive-in",
"eat",
+ "french fries",
"grill",
"lunch",
- "table",
- "french fries"
+ "table"
],
"tags": {
"amenity": "fast_food",
diff --git a/data/presets/amenity/fast_food/hot_dog.json b/data/presets/amenity/fast_food/hot_dog.json
index 0a39973c..0463113a 100644
--- a/data/presets/amenity/fast_food/hot_dog.json
+++ b/data/presets/amenity/fast_food/hot_dog.json
@@ -6,8 +6,8 @@
],
"terms": [
"ballpark",
- "frankfurter",
"frank",
+ "frankfurter",
"hotdog stand",
"sandwich",
"sausage",
diff --git a/data/presets/amenity/fast_food/juice.json b/data/presets/amenity/fast_food/juice.json
index 5239e22e..f5ad8d9f 100644
--- a/data/presets/amenity/fast_food/juice.json
+++ b/data/presets/amenity/fast_food/juice.json
@@ -5,9 +5,9 @@
"area"
],
"terms": [
+ "beverages",
"cafe",
"café",
- "beverages",
"fruit drinks",
"juice bar",
"shakes",
diff --git a/data/presets/amenity/fast_food/kebab.json b/data/presets/amenity/fast_food/kebab.json
index aa162d9f..217c8100 100644
--- a/data/presets/amenity/fast_food/kebab.json
+++ b/data/presets/amenity/fast_food/kebab.json
@@ -13,7 +13,9 @@
"dine",
"dining",
"dinner",
+ "doner kebab",
"drive-in",
+ "döner kebab",
"eat",
"grill",
"lunch",
diff --git a/data/presets/amenity/fast_food/mexican.json b/data/presets/amenity/fast_food/mexican.json
index 827815f7..16e21247 100644
--- a/data/presets/amenity/fast_food/mexican.json
+++ b/data/presets/amenity/fast_food/mexican.json
@@ -6,23 +6,23 @@
],
"terms": [
"breakfast",
+ "burritos",
"dine",
"dining",
"dinner",
"drive-in",
"eat",
- "grill",
- "lunch",
- "table",
- "tacos",
- "burritos",
"enchiladas",
"fajitas",
+ "grill",
+ "lunch",
"nachos",
- "tortillas",
+ "quesadillas",
"salsa",
+ "table",
+ "tacos",
"tamales",
- "quesadillas"
+ "tortillas"
],
"tags": {
"amenity": "fast_food",
diff --git a/data/presets/amenity/fast_food/pizza.json b/data/presets/amenity/fast_food/pizza.json
index 35050aa3..ce06f271 100644
--- a/data/presets/amenity/fast_food/pizza.json
+++ b/data/presets/amenity/fast_food/pizza.json
@@ -5,16 +5,16 @@
"area"
],
"terms": [
+ "deep dish",
"dine",
"dining",
"dinner",
"drive-in",
"eat",
"lunch",
+ "slice",
"table",
- "deep dish",
- "thin crust",
- "slice"
+ "thin crust"
],
"tags": {
"amenity": "fast_food",
diff --git a/data/presets/amenity/fast_food/wings.json b/data/presets/amenity/fast_food/wings.json
new file mode 100644
index 00000000..25942a42
--- /dev/null
+++ b/data/presets/amenity/fast_food/wings.json
@@ -0,0 +1,25 @@
+{
+ "icon": "maki-fast-food",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "chicken",
+ "dine",
+ "dining",
+ "dinner",
+ "eat",
+ "lunch",
+ "table"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "wings"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "wings"
+ },
+ "name": "Chicken Wings Fast Food"
+}
diff --git a/data/presets/amenity/fire_station.json b/data/presets/amenity/fire_station.json
index 66f97ef0..d2363f43 100644
--- a/data/presets/amenity/fire_station.json
+++ b/data/presets/amenity/fire_station.json
@@ -7,10 +7,8 @@
"building_area"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
- "phone",
"polling_station",
"smoking",
"wheelchair"
diff --git a/data/presets/amenity/food_court.json b/data/presets/amenity/food_court.json
index 962abe04..c86ecf07 100644
--- a/data/presets/amenity/food_court.json
+++ b/data/presets/amenity/food_court.json
@@ -1,28 +1,21 @@
{
- "icon": "maki-restaurant",
+ "icon": "roentgen-food_court",
"fields": [
"name",
"operator",
"address",
"building_area_yes",
"opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"capacity",
"diet_multi",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "not/name",
- "opening_hours/covid19",
"outdoor_seating",
- "phone",
"smoking",
- "wheelchair"
+ "website/menu"
],
"geometry": [
"point",
@@ -30,8 +23,8 @@
],
"terms": [
"fast food",
- "restaurant",
- "food"
+ "food",
+ "restaurant"
],
"tags": {
"amenity": "food_court"
diff --git a/data/presets/amenity/fuel.json b/data/presets/amenity/fuel.json
index 8ac84cf5..a7ccb990 100644
--- a/data/presets/amenity/fuel.json
+++ b/data/presets/amenity/fuel.json
@@ -11,31 +11,23 @@
"building_area"
],
"moreFields": [
+ "{@templates/poi}",
"branch_brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "ref/vatin",
- "ref/FR/siret-FR",
- "wheelchair"
+ "toilets"
],
"geometry": [
"point",
"area"
],
"terms": [
- "petrol",
+ "biodiesel",
+ "cng",
+ "diesel",
"fuel",
"gasoline",
- "propane",
- "diesel",
"lng",
- "cng",
- "biodiesel"
+ "petrol",
+ "propane"
],
"tags": {
"amenity": "fuel"
diff --git a/data/presets/amenity/funeral_hall.json b/data/presets/amenity/funeral_hall.json
new file mode 100644
index 00000000..c09d07f3
--- /dev/null
+++ b/data/presets/amenity/funeral_hall.json
@@ -0,0 +1,25 @@
+{
+ "icon": "maki-cemetery",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes",
+ "address"
+ ],
+ "moreFields": [
+ "religion",
+ "denomination"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "funeral ceremony",
+ "funeral hall"
+ ],
+ "tags": {
+ "amenity": "funeral_hall"
+ },
+ "name": "Funeral Service Hall"
+}
diff --git a/data/presets/amenity/give_box.json b/data/presets/amenity/give_box.json
index 921135fc..2edfd477 100644
--- a/data/presets/amenity/give_box.json
+++ b/data/presets/amenity/give_box.json
@@ -17,7 +17,6 @@
"level",
"lit",
"location",
- "opening_hours/covid19",
"phone",
"ref",
"wheelchair"
diff --git a/data/presets/amenity/grave_yard.json b/data/presets/amenity/grave_yard.json
index 37eaaa8b..656b670c 100644
--- a/data/presets/amenity/grave_yard.json
+++ b/data/presets/amenity/grave_yard.json
@@ -5,10 +5,8 @@
"address"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
+ "{@templates/contact}",
+ "gnis/feature_id-US"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/hookah_lounge.json b/data/presets/amenity/hookah_lounge.json
new file mode 100644
index 00000000..36356e24
--- /dev/null
+++ b/data/presets/amenity/hookah_lounge.json
@@ -0,0 +1,35 @@
+{
+ "icon": "fas-smoking",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "min_age"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "operator",
+ "outdoor_seating",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "flavored tobacco",
+ "nargile",
+ "shisha",
+ "waterpipe"
+ ],
+ "tags": {
+ "amenity": "hookah_lounge"
+ },
+ "name": "Hookah Lounge",
+ "aliases": [
+ "Shisha Bar"
+ ]
+}
diff --git a/data/presets/amenity/hospital.json b/data/presets/amenity/hospital.json
index 8d25c61b..1638a00d 100644
--- a/data/presets/amenity/hospital.json
+++ b/data/presets/amenity/hospital.json
@@ -9,14 +9,8 @@
"emergency"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "phone",
- "wheelchair"
+ "{@templates/internet_access}",
+ "{@templates/poi}"
],
"geometry": [
"area",
diff --git a/data/presets/amenity/ice_cream.json b/data/presets/amenity/ice_cream.json
index 4b74f0ae..6cd79a39 100644
--- a/data/presets/amenity/ice_cream.json
+++ b/data/presets/amenity/ice_cream.json
@@ -8,32 +8,27 @@
"outdoor_seating"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"delivery",
"diet_multi",
"drive_through",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "ref/FR/siret-FR",
- "phone",
+ "opening_hours/drive_through",
+ "organic",
"takeaway",
- "wheelchair"
+ "toilets",
+ "fhrs/id-GB",
+ "website/menu"
],
"geometry": [
"point",
"area"
],
"terms": [
- "gelato",
- "sorbet",
- "sherbet",
"frozen",
+ "gelato",
+ "sherbet",
+ "sorbet",
"yogurt"
],
"tags": {
diff --git a/data/presets/amenity/ice_cream/frozen_yogurt.json b/data/presets/amenity/ice_cream/frozen_yogurt.json
new file mode 100644
index 00000000..423b7158
--- /dev/null
+++ b/data/presets/amenity/ice_cream/frozen_yogurt.json
@@ -0,0 +1,24 @@
+{
+ "icon": "maki-ice-cream",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "frogurt",
+ "froyo",
+ "frozen yoghurt",
+ "ice cream",
+ "yoghurt",
+ "yogurt"
+ ],
+ "tags": {
+ "amenity": "ice_cream",
+ "cuisine": "frozen_yogurt"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "frozen_yogurt"
+ },
+ "name": "Frozen Yogurt Shop"
+}
diff --git a/data/presets/amenity/internet_cafe.json b/data/presets/amenity/internet_cafe.json
index c1065646..31f25312 100644
--- a/data/presets/amenity/internet_cafe.json
+++ b/data/presets/amenity/internet_cafe.json
@@ -6,40 +6,30 @@
"operator/type",
"address",
"building_area_yes",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
+ "{@templates/internet_access}",
"phone",
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
"min_age",
- "opening_hours",
- "opening_hours/covid19",
"outdoor_seating",
- "payment_multi",
- "ref/vatin",
- "ref/FR/siret-FR",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
"area"
],
"terms": [
- "cybercafe",
- "taxiphone",
- "teleboutique",
- "coffee",
"cafe",
+ "coffee",
+ "cybercafe",
+ "lanhouse",
"net",
- "lanhouse"
+ "taxiphone",
+ "teleboutique"
],
"tags": {
"amenity": "internet_cafe"
diff --git a/data/presets/amenity/karaoke_box.json b/data/presets/amenity/karaoke_box.json
index 7457386f..6e6f73a8 100644
--- a/data/presets/amenity/karaoke_box.json
+++ b/data/presets/amenity/karaoke_box.json
@@ -9,18 +9,10 @@
"website"
],
"moreFields": [
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
"min_age",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "ref/vatin",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
@@ -30,7 +22,7 @@
"karaoke club",
"karaoke room",
"karaoke television",
- "KTV"
+ "ktv"
],
"tags": {
"amenity": "karaoke_box"
diff --git a/data/presets/amenity/kneipp_water_cure.json b/data/presets/amenity/kneipp_water_cure.json
index 9f6af963..2570cd1f 100644
--- a/data/presets/amenity/kneipp_water_cure.json
+++ b/data/presets/amenity/kneipp_water_cure.json
@@ -1,12 +1,16 @@
{
"icon": "maki-hospital",
"fields": [
+ "name",
"kneipp_water_cure_multi",
+ "access_simple",
"opening_hours",
"fee"
],
"moreFields": [
- "opening_hours/covid19"
+ "address",
+ "level",
+ "wheelchair"
],
"geometry": [
"point",
@@ -15,12 +19,15 @@
"tags": {
"amenity": "kneipp_water_cure"
},
- "reference": {
- "key": "amenity",
- "value": "kneipp_water_cure"
- },
"terms": [
- "hydrotherapy"
+ "foot bath",
+ "hydrotherapy",
+ "kneipp cure",
+ "kneipp hydrotherapy",
+ "kneippism"
],
- "name": "Kneipp Water Cure"
+ "name": "Kneipp Facility",
+ "aliases": [
+ "Kneipp Water Cure"
+ ]
}
diff --git a/data/presets/amenity/letter_box.json b/data/presets/amenity/letter_box.json
index 9cce7cf6..a91aef38 100644
--- a/data/presets/amenity/letter_box.json
+++ b/data/presets/amenity/letter_box.json
@@ -6,6 +6,7 @@
"height"
],
"moreFields": [
+ "colour",
"covered",
"indoor",
"level",
@@ -14,6 +15,7 @@
"manufacturer",
"material",
"operator",
+ "support",
"wheelchair"
],
"geometry": [
@@ -25,8 +27,8 @@
},
"terms": [
"curbside delivery box",
- "home delivery box",
"direct-to-door delivery box",
+ "home delivery box",
"letter hole",
"letter plate",
"letter slot",
diff --git a/data/presets/amenity/library.json b/data/presets/amenity/library.json
index 34c49e66..1dec387f 100644
--- a/data/presets/amenity/library.json
+++ b/data/presets/amenity/library.json
@@ -8,24 +8,18 @@
"opening_hours",
"address",
"ref/isil",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"access_simple",
"air_conditioning",
"baby_feeding",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "not/name",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
+ "books",
+ "changing_table",
"polling_station",
- "wheelchair"
+ "toilets"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/library_dropoff.json b/data/presets/amenity/library_dropoff.json
new file mode 100644
index 00000000..da285d4e
--- /dev/null
+++ b/data/presets/amenity/library_dropoff.json
@@ -0,0 +1,28 @@
+{
+ "icon": "maki-library",
+ "fields": [
+ "operator",
+ "operator/type"
+ ],
+ "moreFields": [
+ "collection_times",
+ "colour",
+ "ref/isil",
+ "lit"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "library_dropoff"
+ },
+ "terms": [
+ "book drop-off",
+ "book return",
+ "library book return",
+ "library drop-off",
+ "library return"
+ ],
+ "name": "Book Return Drop Box"
+}
diff --git a/data/presets/amenity/loading_dock.json b/data/presets/amenity/loading_dock.json
index e6ef9014..35d7565d 100644
--- a/data/presets/amenity/loading_dock.json
+++ b/data/presets/amenity/loading_dock.json
@@ -4,15 +4,20 @@
"ref",
"operator",
"access_simple",
- "door",
- "width",
- "height"
+ "door"
],
"moreFields": [
"address",
+ "dock/height",
+ "dock/width",
+ "door/height",
+ "door/width",
"colour",
"level",
"lit",
+ "maxheight",
+ "maxlength",
+ "maxwidth",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/lounger.json b/data/presets/amenity/lounger.json
index dc4fd62d..3de0328f 100644
--- a/data/presets/amenity/lounger.json
+++ b/data/presets/amenity/lounger.json
@@ -20,9 +20,9 @@
"amenity": "lounger"
},
"terms": [
- "seat",
+ "bench",
"chair",
- "bench"
+ "seat"
],
"name": "Lounger"
}
diff --git a/data/presets/amenity/love_hotel.json b/data/presets/amenity/love_hotel.json
index 840fb82c..713226b2 100644
--- a/data/presets/amenity/love_hotel.json
+++ b/data/presets/amenity/love_hotel.json
@@ -6,20 +6,13 @@
"address",
"building_area_yes",
"rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"min_age",
- "payment_multi",
- "phone",
- "ref/vatin",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/luggage_locker.json b/data/presets/amenity/luggage_locker.json
new file mode 100644
index 00000000..fd42ffb6
--- /dev/null
+++ b/data/presets/amenity/luggage_locker.json
@@ -0,0 +1,31 @@
+{
+ "icon": "temaki-suitcase_key",
+ "fields": [
+ "operator",
+ "indoor",
+ "covered",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "opening_hours",
+ "ref"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "amenity": "luggage_locker"
+ },
+ "terms": [
+ "baggage",
+ "bags",
+ "locker",
+ "lockers",
+ "luggage",
+ "storage",
+ "travel"
+ ],
+ "name": "Luggage Locker"
+}
diff --git a/data/presets/amenity/marketplace.json b/data/presets/amenity/marketplace.json
index dd37704a..2d4a7e37 100644
--- a/data/presets/amenity/marketplace.json
+++ b/data/presets/amenity/marketplace.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-shop",
+ "icon": "fas-store",
"fields": [
"name",
"operator",
@@ -8,11 +8,8 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
- "opening_hours/covid19",
- "phone",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/monastery.json b/data/presets/amenity/monastery.json
index 7e642cf1..497276af 100644
--- a/data/presets/amenity/monastery.json
+++ b/data/presets/amenity/monastery.json
@@ -7,10 +7,8 @@
"address"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
- "phone",
"wheelchair"
],
"geometry": [
@@ -27,7 +25,7 @@
"chapel",
"church",
"fold",
- "house of God",
+ "house of god",
"house of prayer",
"house of worship",
"minster",
diff --git a/data/presets/amenity/money_transfer.json b/data/presets/amenity/money_transfer.json
index 780a34a0..f2f63637 100644
--- a/data/presets/amenity/money_transfer.json
+++ b/data/presets/amenity/money_transfer.json
@@ -10,29 +10,24 @@
"currency_multi"
],
"moreFields": [
- "branch_brand",
- "email",
- "fax",
- "level",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
+ "{@templates/poi}",
+ "branch_brand"
],
"geometry": [
"point",
"area"
],
"terms": [
- "money order",
- "check",
"bill",
- "currency",
- "finance",
- "wire transfer",
"cable",
- "person to person",
"cash to cash",
- "exchange"
+ "check",
+ "currency",
+ "exchange",
+ "finance",
+ "money order",
+ "person to person",
+ "wire transfer"
],
"tags": {
"amenity": "money_transfer"
diff --git a/data/presets/amenity/motorcycle_parking.json b/data/presets/amenity/motorcycle_parking.json
index fd508552..d087eed1 100644
--- a/data/presets/amenity/motorcycle_parking.json
+++ b/data/presets/amenity/motorcycle_parking.json
@@ -14,5 +14,8 @@
"tags": {
"amenity": "motorcycle_parking"
},
+ "terms": [
+ "motorbike parking"
+ ],
"name": "Motorcycle Parking"
}
diff --git a/data/presets/amenity/motorcycle_rental.json b/data/presets/amenity/motorcycle_rental.json
index d4ba7199..9eab473d 100644
--- a/data/presets/amenity/motorcycle_rental.json
+++ b/data/presets/amenity/motorcycle_rental.json
@@ -8,13 +8,9 @@
"payment_multi"
],
"moreFields": [
+ "{@templates/poi}",
"branch_brand",
- "brand",
- "email",
- "fax",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
+ "brand"
],
"geometry": [
"point",
@@ -27,8 +23,8 @@
"hog",
"minibike",
"moped",
- "motorbike",
"motor scooter",
+ "motorbike",
"sidecar",
"sportbike"
],
diff --git a/data/presets/amenity/nightclub.json b/data/presets/amenity/nightclub.json
index 8bccc702..cc0d1cd0 100644
--- a/data/presets/amenity/nightclub.json
+++ b/data/presets/amenity/nightclub.json
@@ -10,16 +10,9 @@
"smoking"
],
"moreFields": [
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "payment_multi",
- "opening_hours/covid19",
- "phone",
- "ref/FR/siret-FR",
- "wheelchair",
+ "fhrs/id-GB",
"fee"
],
"geometry": [
diff --git a/data/presets/amenity/nightclub/lgbtq.json b/data/presets/amenity/nightclub/lgbtq.json
index ff459ae1..0d3b7523 100644
--- a/data/presets/amenity/nightclub/lgbtq.json
+++ b/data/presets/amenity/nightclub/lgbtq.json
@@ -11,9 +11,9 @@
"terms": [
"gay nightclub",
"lesbian nightclub",
- "lgbtq nightclub",
+ "lgb nightclub",
"lgbt nightclub",
- "lgb nightclub"
+ "lgbtq nightclub"
],
"name": "LGBTQ+ Nightclub"
}
diff --git a/data/presets/amenity/parcel_locker.json b/data/presets/amenity/parcel_locker.json
index 72d254dc..5203d029 100644
--- a/data/presets/amenity/parcel_locker.json
+++ b/data/presets/amenity/parcel_locker.json
@@ -6,11 +6,15 @@
"parcel_dropoff",
"opening_hours",
"payment_multi",
- "ref"
+ "ref",
+ "wheelchair"
],
"moreFields": [
"brand",
- "colour"
+ "collection_times",
+ "colour",
+ "indoor",
+ "surveillance"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/parking.json b/data/presets/amenity/parking.json
index e0c4d12d..d6185ccc 100644
--- a/data/presets/amenity/parking.json
+++ b/data/presets/amenity/parking.json
@@ -13,15 +13,12 @@
"surface"
],
"moreFields": [
+ "{@templates/contact}",
"address",
"covered",
- "email",
- "fax",
"maxstay",
"opening_hours",
- "opening_hours/covid19",
"park_ride",
- "phone",
"ref",
"supervised",
"wheelchair"
diff --git a/data/presets/amenity/parking/park_ride.json b/data/presets/amenity/parking/park_ride.json
index 4d2cef9a..a99b8c59 100644
--- a/data/presets/amenity/parking/park_ride.json
+++ b/data/presets/amenity/parking/park_ride.json
@@ -21,11 +21,11 @@
"commuter parking lot",
"incentive parking lot",
"metro parking lot",
+ "p+r",
"park and pool lot",
"park and ride lot",
- "P+R",
- "public transport parking lot",
"public transit parking lot",
+ "public transport parking lot",
"train parking lot"
],
"matchScore": 0.95,
diff --git a/data/presets/amenity/parking/street-side.json b/data/presets/amenity/parking/street-side.json
index 4393b6b0..277b7b22 100644
--- a/data/presets/amenity/parking/street-side.json
+++ b/data/presets/amenity/parking/street-side.json
@@ -2,7 +2,7 @@
"icon": "temaki-car_parked",
"fields": [
"{amenity/parking}",
- "parking/orientation"
+ "orientation/orientation_parking"
],
"geometry": [
"area",
@@ -24,12 +24,12 @@
"terms": [
"automobile parking",
"car parking",
- "vehicle parking",
+ "road-side parking",
+ "roadside parking",
"street parking",
"street-side parking",
"streetside parking",
- "road-side parking",
- "roadside parking"
+ "vehicle parking"
],
"name": "Street-side Parking"
}
diff --git a/data/presets/amenity/parking_entrance.json b/data/presets/amenity/parking_entrance.json
index 9bd1b1f9..a8b0e2a3 100644
--- a/data/presets/amenity/parking_entrance.json
+++ b/data/presets/amenity/parking_entrance.json
@@ -5,7 +5,8 @@
"ref",
"access_simple",
"address",
- "level"
+ "level",
+ "maxheight"
],
"geometry": [
"vertex"
diff --git a/data/presets/amenity/parking_space.json b/data/presets/amenity/parking_space.json
index bf9007aa..14b1a749 100644
--- a/data/presets/amenity/parking_space.json
+++ b/data/presets/amenity/parking_space.json
@@ -2,7 +2,8 @@
"icon": "temaki-parking_space",
"fields": [
"parking_space",
- "capacity"
+ "capacity",
+ "access_simple"
],
"geometry": [
"area",
diff --git a/data/presets/amenity/payment_centre.json b/data/presets/amenity/payment_centre.json
index ddcfc60a..4b3a129d 100644
--- a/data/presets/amenity/payment_centre.json
+++ b/data/presets/amenity/payment_centre.json
@@ -9,27 +9,22 @@
"payment_multi"
],
"moreFields": [
+ "{@templates/poi}",
"branch_brand",
- "currency_multi",
- "email",
- "fax",
- "level",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
+ "currency_multi"
],
"geometry": [
"point",
"area"
],
"terms": [
- "check",
- "tax pay",
"bill pay",
+ "cash",
+ "check",
"currency",
"finance",
- "cash",
- "money"
+ "money",
+ "tax pay"
],
"tags": {
"amenity": "payment_centre"
diff --git a/data/presets/amenity/payment_terminal.json b/data/presets/amenity/payment_terminal.json
index cdebc8be..611aa76e 100644
--- a/data/presets/amenity/payment_terminal.json
+++ b/data/presets/amenity/payment_terminal.json
@@ -14,23 +14,22 @@
"currency_multi",
"indoor",
"level",
- "opening_hours/covid19",
"wheelchair"
],
"geometry": [
"point"
],
"terms": [
- "interactive kiosk",
- "ekiosk",
"atm",
"bill pay",
- "tax pay",
- "phone pay",
- "finance",
+ "card",
"cash",
+ "ekiosk",
+ "finance",
+ "interactive kiosk",
"money transfer",
- "card"
+ "phone pay",
+ "tax pay"
],
"tags": {
"amenity": "payment_terminal"
diff --git a/data/presets/amenity/pharmacy.json b/data/presets/amenity/pharmacy.json
index f823af76..21ba5341 100644
--- a/data/presets/amenity/pharmacy.json
+++ b/data/presets/amenity/pharmacy.json
@@ -7,20 +7,13 @@
"building_area_yes",
"opening_hours",
"dispensing",
- "drive_through"
+ "drive_through",
+ "opening_hours/drive_through"
],
"moreFields": [
+ "{@templates/poi}",
"branch_brand",
- "brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "payment_multi",
- "phone",
- "wheelchair"
+ "brand"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/photo_booth.json b/data/presets/amenity/photo_booth.json
index 72cbb324..0cbda0e8 100644
--- a/data/presets/amenity/photo_booth.json
+++ b/data/presets/amenity/photo_booth.json
@@ -17,11 +17,11 @@
"area"
],
"terms": [
- "photobooth",
- "photo",
"booth",
+ "camera",
"kiosk",
- "camera"
+ "photo",
+ "photobooth"
],
"tags": {
"amenity": "photo_booth"
diff --git a/data/presets/amenity/place_of_worship.json b/data/presets/amenity/place_of_worship.json
index 90814658..b0147097 100644
--- a/data/presets/amenity/place_of_worship.json
+++ b/data/presets/amenity/place_of_worship.json
@@ -9,17 +9,14 @@
"service_times"
],
"moreFields": [
+ "{@templates/contact}",
"air_conditioning",
"baby_feeding",
- "email",
- "fax",
"gnis/feature_id-US",
"internet_access",
"internet_access/ssid",
"level",
"opening_hours",
- "opening_hours/covid19",
- "phone",
"polling_station",
"wheelchair"
],
@@ -37,7 +34,7 @@
"chapel",
"church",
"fold",
- "house of God",
+ "house of god",
"house of prayer",
"house of worship",
"minster",
diff --git a/data/presets/amenity/place_of_worship/buddhist.json b/data/presets/amenity/place_of_worship/buddhist.json
index 0f6e7874..4a792400 100644
--- a/data/presets/amenity/place_of_worship/buddhist.json
+++ b/data/presets/amenity/place_of_worship/buddhist.json
@@ -11,13 +11,13 @@
"area"
],
"terms": [
- "stupa",
- "vihara",
+ "dojo",
"monastery",
- "temple",
"pagoda",
- "zendo",
- "dojo"
+ "stupa",
+ "temple",
+ "vihara",
+ "zendo"
],
"tags": {
"amenity": "place_of_worship",
diff --git a/data/presets/amenity/place_of_worship/christian.json b/data/presets/amenity/place_of_worship/christian.json
index 1ab858c9..5e3a147a 100644
--- a/data/presets/amenity/place_of_worship/christian.json
+++ b/data/presets/amenity/place_of_worship/christian.json
@@ -11,29 +11,29 @@
"area"
],
"terms": [
- "christian",
"abbey",
+ "anglican",
"basilica",
"bethel",
"cathedral",
"chancel",
"chantry",
"chapel",
+ "christian",
"fold",
- "house of God",
+ "house of god",
"house of prayer",
"house of worship",
"minster",
"mission",
"oratory",
"parish",
+ "roman catholic",
"sacellum",
"sanctuary",
"shrine",
"tabernacle",
- "temple",
- "anglican",
- "roman catholic"
+ "temple"
],
"tags": {
"amenity": "place_of_worship",
diff --git a/data/presets/amenity/place_of_worship/christian/jehovahs_witness.json b/data/presets/amenity/place_of_worship/christian/jehovahs_witness.json
index 2fa3aa32..c56dd303 100644
--- a/data/presets/amenity/place_of_worship/christian/jehovahs_witness.json
+++ b/data/presets/amenity/place_of_worship/christian/jehovahs_witness.json
@@ -7,7 +7,7 @@
"terms": [
"christian",
"church",
- "house of God",
+ "house of god",
"house of prayer",
"house of worship"
],
diff --git a/data/presets/amenity/place_of_worship/christian/la_luz_del_mundo.json b/data/presets/amenity/place_of_worship/christian/la_luz_del_mundo.json
index d683fdec..7b3e5100 100644
--- a/data/presets/amenity/place_of_worship/christian/la_luz_del_mundo.json
+++ b/data/presets/amenity/place_of_worship/christian/la_luz_del_mundo.json
@@ -7,7 +7,7 @@
"terms": [
"christian",
"church",
- "house of God",
+ "house of god",
"house of prayer",
"house of worship",
"the light of the world church"
diff --git a/data/presets/amenity/place_of_worship/christian/quaker.json b/data/presets/amenity/place_of_worship/christian/quaker.json
index 5ff9fe7b..8b0cb1d7 100644
--- a/data/presets/amenity/place_of_worship/christian/quaker.json
+++ b/data/presets/amenity/place_of_worship/christian/quaker.json
@@ -7,7 +7,7 @@
"terms": [
"christian",
"church",
- "house of God",
+ "house of god",
"house of prayer",
"house of worship"
],
diff --git a/data/presets/amenity/place_of_worship/hindu.json b/data/presets/amenity/place_of_worship/hindu.json
index dc49d5c7..fd96fd64 100644
--- a/data/presets/amenity/place_of_worship/hindu.json
+++ b/data/presets/amenity/place_of_worship/hindu.json
@@ -11,11 +11,11 @@
"area"
],
"terms": [
- "kovil",
- "devasthana",
- "mandir",
- "kshetram",
"alayam",
+ "devasthana",
+ "kovil",
+ "kshetram",
+ "mandir",
"shrine",
"temple"
],
diff --git a/data/presets/amenity/planetarium.json b/data/presets/amenity/planetarium.json
index 0029097f..2b7cb50b 100644
--- a/data/presets/amenity/planetarium.json
+++ b/data/presets/amenity/planetarium.json
@@ -8,24 +8,18 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/poi}",
"air_conditioning",
"charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "payment_multi_fee",
- "phone",
- "wheelchair"
+ "fee"
],
"geometry": [
"point",
"area"
],
"terms": [
- "museum",
"astronomy",
+ "museum",
"observatory"
],
"tags": {
diff --git a/data/presets/amenity/police.json b/data/presets/amenity/police.json
index 2d6551a7..663c8d02 100644
--- a/data/presets/amenity/police.json
+++ b/data/presets/amenity/police.json
@@ -8,12 +8,9 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
"level",
- "opening_hours/covid19",
- "phone",
"polling_station",
"wheelchair"
],
@@ -27,9 +24,9 @@
"constabulary",
"cop",
"detective",
+ "enforcement",
"fed",
"law",
- "enforcement",
"officer",
"patrol"
],
diff --git a/data/presets/amenity/polling_station.json b/data/presets/amenity/polling_station.json
index a7bf9d19..82480194 100644
--- a/data/presets/amenity/polling_station.json
+++ b/data/presets/amenity/polling_station.json
@@ -9,16 +9,11 @@
"building_area_yes"
],
"moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"air_conditioning",
- "email",
- "fax",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
- "opening_hours/covid19",
- "phone",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/post_box.json b/data/presets/amenity/post_box.json
index 4818b35c..a8445f2a 100644
--- a/data/presets/amenity/post_box.json
+++ b/data/presets/amenity/post_box.json
@@ -3,8 +3,9 @@
"fields": [
"operator",
"collection_times",
- "drive_through",
- "ref"
+ "ref",
+ "post_box/type-GB",
+ "royal_cypher-GB"
],
"moreFields": [
"access_simple",
@@ -12,12 +13,13 @@
"brand",
"colour",
"covered",
- "gnis/feature_id-US",
+ "drive_through",
"height",
"indoor",
"level",
"manufacturer",
"material",
+ "post_box/type",
"support",
"wheelchair"
],
@@ -44,5 +46,10 @@
"postal box",
"postbox"
],
+ "locationSet": {
+ "exclude": [
+ "us"
+ ]
+ },
"name": "Mail Drop Box"
}
diff --git a/data/presets/amenity/post_box/post_box-US.json b/data/presets/amenity/post_box/post_box-US.json
new file mode 100644
index 00000000..b59ed33d
--- /dev/null
+++ b/data/presets/amenity/post_box/post_box-US.json
@@ -0,0 +1,24 @@
+{
+ "icon": "temaki-post_box",
+ "locationSet": {
+ "include": [
+ "us"
+ ]
+ },
+ "fields": [
+ "{amenity/post_box}",
+ "drive_through"
+ ],
+ "moreFields": [
+ "{amenity/post_box}",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "post_box"
+ },
+ "name": "{amenity/post_box}"
+}
diff --git a/data/presets/amenity/post_depot.json b/data/presets/amenity/post_depot.json
index 2788ddf8..16a6c41e 100644
--- a/data/presets/amenity/post_depot.json
+++ b/data/presets/amenity/post_depot.json
@@ -8,11 +8,9 @@
"phone"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
"opening_hours",
- "opening_hours/covid19",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/post_office.json b/data/presets/amenity/post_office.json
index aa9c31b7..9df6a74a 100644
--- a/data/presets/amenity/post_office.json
+++ b/data/presets/amenity/post_office.json
@@ -8,19 +8,14 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"branch_brand",
"brand",
- "email",
- "fax",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
- "opening_hours/covid19",
"ref/FR/siret-FR",
"payment_multi",
- "phone",
"polling_station",
"wheelchair"
],
diff --git a/data/presets/amenity/prison.json b/data/presets/amenity/prison.json
index aba32c41..e2a34c0e 100644
--- a/data/presets/amenity/prison.json
+++ b/data/presets/amenity/prison.json
@@ -7,10 +7,8 @@
"address"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
- "phone",
"wheelchair"
],
"geometry": [
@@ -19,8 +17,8 @@
],
"terms": [
"cell",
- "jail",
- "correction"
+ "correction",
+ "jail"
],
"tags": {
"amenity": "prison"
diff --git a/data/presets/amenity/pub.json b/data/presets/amenity/pub.json
index 229c2531..f2f071db 100644
--- a/data/presets/amenity/pub.json
+++ b/data/presets/amenity/pub.json
@@ -9,29 +9,21 @@
"brewery"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"cuisine",
"diet_multi",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
"microbrewery",
+ "fhrs/id-GB",
"min_age",
- "opening_hours/covid19",
"outdoor_seating",
- "payment_multi",
- "phone",
- "ref/vatin",
- "ref/FR/siret-FR",
"real_fire-GB-IE",
- "sport_pub",
+ "sport/sport_pub",
"toilets",
"toilets/wheelchair",
- "wheelchair"
+ "toilets/menstrual_products_poi",
+ "website/menu"
],
"geometry": [
"point",
@@ -42,11 +34,11 @@
},
"terms": [
"alcohol",
- "drink",
- "dive",
"beer",
"bier",
- "booze"
+ "booze",
+ "dive",
+ "drink"
],
"name": "Pub"
}
diff --git a/data/presets/amenity/pub/irish.json b/data/presets/amenity/pub/irish.json
index 932575f2..2cdf8f18 100644
--- a/data/presets/amenity/pub/irish.json
+++ b/data/presets/amenity/pub/irish.json
@@ -14,8 +14,8 @@
"value": "irish"
},
"terms": [
- "irish pub",
- "irish bar"
+ "irish bar",
+ "irish pub"
],
"locationSet": {
"exclude": [
diff --git a/data/presets/amenity/pub/lgbtq.json b/data/presets/amenity/pub/lgbtq.json
index f8c3b9f8..8692850a 100644
--- a/data/presets/amenity/pub/lgbtq.json
+++ b/data/presets/amenity/pub/lgbtq.json
@@ -11,9 +11,9 @@
"terms": [
"gay pub",
"lesbian pub",
- "lgbtq pub",
+ "lgb pub",
"lgbt pub",
- "lgb pub"
+ "lgbtq pub"
],
"name": "LGBTQ+ Pub"
}
diff --git a/data/presets/amenity/pub/microbrewery.json b/data/presets/amenity/pub/microbrewery.json
index d02868d3..b73281eb 100644
--- a/data/presets/amenity/pub/microbrewery.json
+++ b/data/presets/amenity/pub/microbrewery.json
@@ -13,12 +13,12 @@
},
"terms": [
"alcohol",
- "drink",
- "dive",
"beer",
"bier",
"booze",
"craft brewery",
+ "dive",
+ "drink",
"microbrewery",
"small batch brewery"
],
diff --git a/data/presets/amenity/public_bath.json b/data/presets/amenity/public_bath.json
index 33eb1884..18d8814d 100644
--- a/data/presets/amenity/public_bath.json
+++ b/data/presets/amenity/public_bath.json
@@ -1,28 +1,18 @@
{
- "icon": "maki-water",
+ "icon": "fas-water-ladder",
"fields": [
"name",
"bath/type",
"bath/open_air",
- "bath/sand_bath",
"address",
"building_area",
"fee",
"charge_fee"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi_fee",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "bath/sand_bath-JP"
],
"geometry": [
"point",
@@ -32,9 +22,9 @@
"amenity": "public_bath"
},
"terms": [
- "onsen",
"foot bath",
- "hot springs"
+ "hot springs",
+ "onsen"
],
"name": "Public Bath"
}
diff --git a/data/presets/amenity/public_bookcase.json b/data/presets/amenity/public_bookcase.json
index 494b1507..ebac2e0c 100644
--- a/data/presets/amenity/public_bookcase.json
+++ b/data/presets/amenity/public_bookcase.json
@@ -11,16 +11,20 @@
"access_simple",
"address",
"branch_brand",
+ "books",
"brand",
+ "colour",
"covered",
+ "direction",
"email",
+ "height",
"indoor",
"level",
"location",
"opening_hours",
- "opening_hours/covid19",
"phone",
"ref",
+ "support",
"wheelchair"
],
"geometry": [
@@ -28,8 +32,14 @@
"area"
],
"terms": [
+ "book exchange shelf",
+ "book sharing",
+ "book swap",
+ "bookcrossing",
"library",
- "bookcrossing"
+ "little free library",
+ "share a book",
+ "sharing books"
],
"tags": {
"amenity": "public_bookcase"
diff --git a/data/presets/amenity/ranger_station.json b/data/presets/amenity/ranger_station.json
index 419bacc3..9d9545c3 100644
--- a/data/presets/amenity/ranger_station.json
+++ b/data/presets/amenity/ranger_station.json
@@ -8,14 +8,9 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "phone",
"wheelchair"
],
"geometry": [
@@ -23,13 +18,13 @@
"area"
],
"terms": [
- "visitor center",
- "visitor centre",
+ "backcountry office",
"permit center",
"permit centre",
- "backcountry office",
- "warden office",
- "warden center"
+ "visitor center",
+ "visitor centre",
+ "warden center",
+ "warden office"
],
"tags": {
"amenity": "ranger_station"
diff --git a/data/presets/amenity/recycling/container/green_waste.json b/data/presets/amenity/recycling/container/green_waste.json
index 02f59166..f5f4d67f 100644
--- a/data/presets/amenity/recycling/container/green_waste.json
+++ b/data/presets/amenity/recycling/container/green_waste.json
@@ -15,11 +15,11 @@
"biological",
"compost",
"decomposable",
+ "food scrap",
"garbage bin",
"garden waste",
"organic",
- "rubbish",
- "food scrap"
+ "rubbish"
],
"tags": {
"amenity": "recycling",
diff --git a/data/presets/amenity/recycling_centre.json b/data/presets/amenity/recycling_centre.json
index c162e8d7..d3a389ef 100644
--- a/data/presets/amenity/recycling_centre.json
+++ b/data/presets/amenity/recycling_centre.json
@@ -10,13 +10,10 @@
"recycling_accepts"
],
"moreFields": [
+ "{@templates/contact}",
"charge_fee",
- "email",
- "fax",
"fee",
- "opening_hours/covid19",
"payment_multi_fee",
- "phone",
"wheelchair"
],
"geometry": [
@@ -27,8 +24,8 @@
"bottle",
"can",
"dump",
- "glass",
"garbage",
+ "glass",
"rubbish",
"scrap",
"trash"
@@ -39,7 +36,7 @@
},
"reference": {
"key": "recycling_type",
- "value": "*"
+ "value": "centre"
},
"name": "Recycling Center"
}
diff --git a/data/presets/amenity/recycling_container.json b/data/presets/amenity/recycling_container.json
index 340cb003..770e9662 100644
--- a/data/presets/amenity/recycling_container.json
+++ b/data/presets/amenity/recycling_container.json
@@ -13,7 +13,6 @@
"level",
"manufacturer",
"material",
- "opening_hours/covid19",
"ref"
],
"geometry": [
@@ -22,10 +21,10 @@
],
"terms": [
"bin",
- "can",
"bottle",
- "glass",
+ "can",
"garbage",
+ "glass",
"rubbish",
"scrap",
"trash"
@@ -35,8 +34,11 @@
"recycling_type": "container"
},
"reference": {
- "key": "amenity",
- "value": "recycling"
+ "key": "recycling_type",
+ "value": "container"
},
- "name": "Recycling Container"
+ "aliases": [
+ "Recycling Container"
+ ],
+ "name": "Recycling Bin"
}
diff --git a/data/presets/amenity/refugee_site.json b/data/presets/amenity/refugee_site.json
index 72e21d63..1591841a 100644
--- a/data/presets/amenity/refugee_site.json
+++ b/data/presets/amenity/refugee_site.json
@@ -12,9 +12,7 @@
"source/population"
],
"moreFields": [
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/research_institute.json b/data/presets/amenity/research_institute.json
index eef7ea8d..cecc64db 100644
--- a/data/presets/amenity/research_institute.json
+++ b/data/presets/amenity/research_institute.json
@@ -6,15 +6,15 @@
"operator/type",
"address",
"website",
- "internet_access",
- "internet_access/fee"
+ "{@templates/internet_access}"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"gnis/feature_id-US",
- "internet_access/ssid",
- "phone",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi",
"wheelchair"
],
"geometry": [
@@ -24,9 +24,9 @@
"terms": [
"applied research",
"experimentation",
- "r&d",
"r & d",
"r and d",
+ "r&d",
"research and development",
"research institution",
"research laboratory",
diff --git a/data/presets/amenity/restaurant.json b/data/presets/amenity/restaurant.json
index 972823a5..47b75356 100644
--- a/data/presets/amenity/restaurant.json
+++ b/data/presets/amenity/restaurant.json
@@ -11,37 +11,31 @@
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"bar",
"branch_brand",
"brand",
"brewery",
"capacity",
+ "changing_table",
"delivery",
- "email",
- "fax",
- "gnis/feature_id-US",
+ "fhrs/id-GB",
"highchair",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
"microbrewery",
"min_age",
- "not/name",
- "opening_hours/covid19",
+ "organic",
"outdoor_seating",
- "payment_multi",
- "ref/vatin",
- "ref/FR/siret-FR",
"reservation",
"smoking",
- "sport_pub",
+ "sport/sport_pub",
"stars",
"takeaway",
"toilets",
"toilets/wheelchair",
- "wheelchair"
+ "toilets/menstrual_products_poi",
+ "website/menu"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/restaurant/barbeque.json b/data/presets/amenity/restaurant/barbecue.json
similarity index 73%
rename from data/presets/amenity/restaurant/barbeque.json
rename to data/presets/amenity/restaurant/barbecue.json
index c389dee6..e336b121 100644
--- a/data/presets/amenity/restaurant/barbeque.json
+++ b/data/presets/amenity/restaurant/barbecue.json
@@ -19,11 +19,14 @@
],
"tags": {
"amenity": "restaurant",
- "cuisine": "barbeque"
+ "cuisine": "barbecue"
},
"reference": {
"key": "cuisine",
- "value": "barbeque"
+ "value": "barbecue"
},
- "name": "Barbeque Restaurant"
+ "name": "Barbecue Restaurant",
+ "aliases": [
+ "Barbeque Restaurant"
+ ]
}
diff --git a/data/presets/amenity/restaurant/chinese.json b/data/presets/amenity/restaurant/chinese.json
index 34d3de18..d54b9533 100644
--- a/data/presets/amenity/restaurant/chinese.json
+++ b/data/presets/amenity/restaurant/chinese.json
@@ -10,6 +10,7 @@
"cafe",
"café",
"canteen",
+ "dim sum",
"dine",
"dining",
"dinner",
diff --git a/data/presets/amenity/restaurant/georgian.json b/data/presets/amenity/restaurant/georgian.json
new file mode 100644
index 00000000..34697f98
--- /dev/null
+++ b/data/presets/amenity/restaurant/georgian.json
@@ -0,0 +1,27 @@
+{
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "bar",
+ "breakfast",
+ "dine",
+ "dining",
+ "dinner",
+ "drive-in",
+ "eat",
+ "lunch",
+ "table"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "georgian"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "georgian"
+ },
+ "name": "Georgian Restaurant"
+}
diff --git a/data/presets/amenity/restaurant/greek.json b/data/presets/amenity/restaurant/greek.json
index b961bd44..5240f330 100644
--- a/data/presets/amenity/restaurant/greek.json
+++ b/data/presets/amenity/restaurant/greek.json
@@ -16,11 +16,11 @@
"drive-in",
"eat",
"grill",
- "lunch",
- "table",
"gyros",
+ "lunch",
+ "olives",
"pitas",
- "olives"
+ "table"
],
"tags": {
"amenity": "restaurant",
diff --git a/data/presets/amenity/restaurant/indian.json b/data/presets/amenity/restaurant/indian.json
index 5dc8b4b8..936aa216 100644
--- a/data/presets/amenity/restaurant/indian.json
+++ b/data/presets/amenity/restaurant/indian.json
@@ -7,6 +7,7 @@
"terms": [
"bar",
"breakfast",
+ "curry",
"dine",
"dining",
"dinner",
@@ -14,8 +15,7 @@
"eat",
"grill",
"lunch",
- "table",
- "curry"
+ "table"
],
"tags": {
"amenity": "restaurant",
diff --git a/data/presets/amenity/restaurant/italian.json b/data/presets/amenity/restaurant/italian.json
index 6cf56079..5a338da7 100644
--- a/data/presets/amenity/restaurant/italian.json
+++ b/data/presets/amenity/restaurant/italian.json
@@ -17,9 +17,9 @@
"eat",
"grill",
"lunch",
- "table",
"pasta",
- "pizza"
+ "pizza",
+ "table"
],
"tags": {
"amenity": "restaurant",
diff --git a/data/presets/amenity/restaurant/korean.json b/data/presets/amenity/restaurant/korean.json
new file mode 100644
index 00000000..e7072ccd
--- /dev/null
+++ b/data/presets/amenity/restaurant/korean.json
@@ -0,0 +1,31 @@
+{
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "bar",
+ "breakfast",
+ "cafe",
+ "café",
+ "canteen",
+ "dine",
+ "dining",
+ "dinner",
+ "drive-in",
+ "eat",
+ "grill",
+ "lunch",
+ "table"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "korean"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "korean"
+ },
+ "name": "Korean Restaurant"
+}
diff --git a/data/presets/amenity/restaurant/mexican.json b/data/presets/amenity/restaurant/mexican.json
index aa8d3441..4622184d 100644
--- a/data/presets/amenity/restaurant/mexican.json
+++ b/data/presets/amenity/restaurant/mexican.json
@@ -7,23 +7,23 @@
"terms": [
"bar",
"breakfast",
+ "burritos",
"dine",
"dining",
"dinner",
"drive-in",
"eat",
- "grill",
- "lunch",
- "table",
- "tacos",
- "burritos",
"enchiladas",
"fajitas",
+ "grill",
+ "lunch",
"nachos",
- "tortillas",
+ "quesadillas",
"salsa",
+ "table",
+ "tacos",
"tamales",
- "quesadillas"
+ "tortillas"
],
"tags": {
"amenity": "restaurant",
diff --git a/data/presets/amenity/restaurant/noodle.json b/data/presets/amenity/restaurant/noodle.json
index 8fdf8238..673af1c6 100644
--- a/data/presets/amenity/restaurant/noodle.json
+++ b/data/presets/amenity/restaurant/noodle.json
@@ -10,6 +10,7 @@
"cafe",
"café",
"canteen",
+ "cellophane noodles",
"dine",
"dining",
"dinner",
@@ -17,12 +18,10 @@
"eat",
"grill",
"lunch",
- "table",
- "ramen noodles",
- "soup",
+ "rice noodles",
"soba noodles",
- "cellophane noodles",
- "rice noodles"
+ "soup",
+ "table"
],
"tags": {
"amenity": "restaurant",
diff --git a/data/presets/amenity/restaurant/pizza.json b/data/presets/amenity/restaurant/pizza.json
index adb37207..7a10d83d 100644
--- a/data/presets/amenity/restaurant/pizza.json
+++ b/data/presets/amenity/restaurant/pizza.json
@@ -6,16 +6,16 @@
],
"terms": [
"bar",
+ "deep dish",
"dine",
"dining",
"dinner",
"drive-in",
"eat",
"lunch",
+ "slice",
"table",
- "deep dish",
- "thin crust",
- "slice"
+ "thin crust"
],
"tags": {
"amenity": "restaurant",
diff --git a/data/presets/amenity/restaurant/ramen.json b/data/presets/amenity/restaurant/ramen.json
new file mode 100644
index 00000000..42072034
--- /dev/null
+++ b/data/presets/amenity/restaurant/ramen.json
@@ -0,0 +1,26 @@
+{
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "japanese",
+ "noodles",
+ "ramen-ten",
+ "ramen-ya",
+ "soup"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "ramen"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "ramen"
+ },
+ "name": "Ramen Restaurant",
+ "aliases": [
+ "Ramen Shop"
+ ]
+}
diff --git a/data/presets/amenity/restaurant/seafood.json b/data/presets/amenity/restaurant/seafood.json
index 2c84a23d..361db18e 100644
--- a/data/presets/amenity/restaurant/seafood.json
+++ b/data/presets/amenity/restaurant/seafood.json
@@ -9,25 +9,25 @@
"breakfast",
"cafe",
"café",
+ "clams",
+ "crab",
+ "crustaceans",
"dine",
"dining",
"dinner",
"drive-in",
"eat",
- "grill",
- "lunch",
- "table",
"fish",
- "shellfish",
- "molluscs",
- "crustaceans",
- "clams",
- "oysters",
+ "grill",
"lobsters",
- "crab",
+ "lunch",
+ "molluscs",
+ "octopus",
+ "oysters",
+ "shellfish",
"shrimp",
"squid",
- "octopus"
+ "table"
],
"tags": {
"amenity": "restaurant",
diff --git a/data/presets/amenity/restaurant/spanish.json b/data/presets/amenity/restaurant/spanish.json
new file mode 100644
index 00000000..71f9c0ac
--- /dev/null
+++ b/data/presets/amenity/restaurant/spanish.json
@@ -0,0 +1,31 @@
+{
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "bar",
+ "breakfast",
+ "cafe",
+ "café",
+ "canteen",
+ "dine",
+ "dining",
+ "dinner",
+ "drive-in",
+ "eat",
+ "grill",
+ "lunch",
+ "table"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "spanish"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "spanish"
+ },
+ "name": "Spanish Restaurant"
+}
diff --git a/data/presets/amenity/restaurant/steakhouse.json b/data/presets/amenity/restaurant/steakhouse.json
index 77d8ebe3..78d986e9 100644
--- a/data/presets/amenity/restaurant/steakhouse.json
+++ b/data/presets/amenity/restaurant/steakhouse.json
@@ -6,10 +6,12 @@
],
"terms": [
"bar",
+ "beef",
"breakfast",
"cafe",
"café",
"canteen",
+ "chop house",
"dine",
"dining",
"dinner",
@@ -17,10 +19,8 @@
"eat",
"grill",
"lunch",
- "table",
"steak house",
- "chop house",
- "beef"
+ "table"
],
"tags": {
"amenity": "restaurant",
diff --git a/data/presets/amenity/restaurant/thai.json b/data/presets/amenity/restaurant/thai.json
index dfb30dbb..6fc7cebf 100644
--- a/data/presets/amenity/restaurant/thai.json
+++ b/data/presets/amenity/restaurant/thai.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-restaurant-noodle",
+ "icon": "fas-spoon",
"geometry": [
"point",
"area"
diff --git a/data/presets/amenity/restaurant/ukrainian.json b/data/presets/amenity/restaurant/ukrainian.json
new file mode 100644
index 00000000..d568993d
--- /dev/null
+++ b/data/presets/amenity/restaurant/ukrainian.json
@@ -0,0 +1,27 @@
+{
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "bar",
+ "breakfast",
+ "dine",
+ "dining",
+ "dinner",
+ "drive-in",
+ "eat",
+ "lunch",
+ "table"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "ukrainian"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "ukrainian"
+ },
+ "name": "Ukrainian Restaurant"
+}
diff --git a/data/presets/amenity/sanitary_dump_station.json b/data/presets/amenity/sanitary_dump_station.json
index f8b041a1..dd36c8c1 100644
--- a/data/presets/amenity/sanitary_dump_station.json
+++ b/data/presets/amenity/sanitary_dump_station.json
@@ -9,8 +9,7 @@
"water_point"
],
"moreFields": [
- "opening_hours",
- "opening_hours/covid19"
+ "opening_hours"
],
"geometry": [
"point",
@@ -18,14 +17,14 @@
"area"
],
"terms": [
- "Motor Home",
- "Camper",
- "Sanitary",
- "Dump Station",
- "Elsan",
- "CDP",
- "CTDP",
- "Chemical Toilet"
+ "camper",
+ "cdp",
+ "chemical toilet",
+ "ctdp",
+ "dump station",
+ "elsan",
+ "motor home",
+ "sanitary"
],
"tags": {
"amenity": "sanitary_dump_station"
diff --git a/data/presets/amenity/shelter.json b/data/presets/amenity/shelter.json
index 05d8184f..40801491 100644
--- a/data/presets/amenity/shelter.json
+++ b/data/presets/amenity/shelter.json
@@ -20,8 +20,8 @@
"area"
],
"terms": [
- "lean-to",
"gazebo",
+ "lean-to",
"picnic"
],
"tags": {
diff --git a/data/presets/amenity/shower.json b/data/presets/amenity/shower.json
index 4d21bd2d..faa6f56c 100644
--- a/data/presets/amenity/shower.json
+++ b/data/presets/amenity/shower.json
@@ -15,7 +15,6 @@
"address",
"gender",
"level",
- "opening_hours/covid19",
"operator"
],
"geometry": [
diff --git a/data/presets/amenity/smoking_area.json b/data/presets/amenity/smoking_area.json
index 3004beba..f6fa68db 100644
--- a/data/presets/amenity/smoking_area.json
+++ b/data/presets/amenity/smoking_area.json
@@ -11,7 +11,6 @@
"covered",
"level",
"lit",
- "opening_hours/covid19",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/social_centre.json b/data/presets/amenity/social_centre.json
index 75a084c4..2a1a7ad1 100644
--- a/data/presets/amenity/social_centre.json
+++ b/data/presets/amenity/social_centre.json
@@ -9,19 +9,12 @@
"building_area_yes"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"baby_feeding",
"branch_brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "phone",
- "polling_station",
- "wheelchair"
+ "polling_station"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/social_facility.json b/data/presets/amenity/social_facility.json
index 26b6c1a0..2a19a21a 100644
--- a/data/presets/amenity/social_facility.json
+++ b/data/presets/amenity/social_facility.json
@@ -9,19 +9,11 @@
"social_facility_for"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"baby_feeding",
- "building_area",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
+ "fhrs/id-GB",
+ "building_area"
],
"geometry": [
"point",
@@ -32,6 +24,8 @@
},
"terms": [
"community",
+ "group home",
+ "halfway house",
"nonprofit",
"social services"
],
diff --git a/data/presets/amenity/social_facility/assisted_living.json b/data/presets/amenity/social_facility/assisted_living.json
new file mode 100644
index 00000000..0e809942
--- /dev/null
+++ b/data/presets/amenity/social_facility/assisted_living.json
@@ -0,0 +1,29 @@
+{
+ "icon": "maki-wheelchair",
+ "fields": [
+ "{amenity/social_facility}",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "assisted living",
+ "care home",
+ "elderly",
+ "living",
+ "old",
+ "senior"
+ ],
+ "tags": {
+ "amenity": "social_facility",
+ "social_facility": "assisted_living",
+ "social_facility:for": "senior"
+ },
+ "reference": {
+ "key": "social_facility",
+ "value": "assisted_living"
+ },
+ "name": "Senior Assisted Living Facility"
+}
diff --git a/data/presets/amenity/social_facility/homeless_shelter.json b/data/presets/amenity/social_facility/homeless_shelter.json
index 6640e61c..a98f058e 100644
--- a/data/presets/amenity/social_facility/homeless_shelter.json
+++ b/data/presets/amenity/social_facility/homeless_shelter.json
@@ -5,9 +5,9 @@
"area"
],
"terms": [
+ "displaced",
"houseless",
- "unhoused",
- "displaced"
+ "unhoused"
],
"tags": {
"amenity": "social_facility",
diff --git a/data/presets/amenity/social_facility/nursing_home.json b/data/presets/amenity/social_facility/nursing_home.json
index f837796e..e767c7d2 100644
--- a/data/presets/amenity/social_facility/nursing_home.json
+++ b/data/presets/amenity/social_facility/nursing_home.json
@@ -9,12 +9,12 @@
"area"
],
"terms": [
+ "assisted living",
"elderly",
"living",
"nursing",
"old",
- "senior",
- "assisted living"
+ "senior"
],
"tags": {
"amenity": "social_facility",
diff --git a/data/presets/amenity/stripclub.json b/data/presets/amenity/stripclub.json
new file mode 100644
index 00000000..d8f003c1
--- /dev/null
+++ b/data/presets/amenity/stripclub.json
@@ -0,0 +1,32 @@
+{
+ "icon": "roentgen-pole_dancer",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "min_age",
+ "smoking"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "air_conditioning",
+ "fee"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "stripclub"
+ },
+ "terms": [
+ "adult*",
+ "cabaret",
+ "gentlemen*",
+ "lap dance",
+ "strip*"
+ ],
+ "name": "Strip club"
+}
diff --git a/data/presets/amenity/studio.json b/data/presets/amenity/studio.json
index f5b5da80..b474faba 100644
--- a/data/presets/amenity/studio.json
+++ b/data/presets/amenity/studio.json
@@ -8,14 +8,10 @@
"website"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
- "phone",
"wheelchair"
],
"geometry": [
@@ -23,8 +19,8 @@
"area"
],
"terms": [
- "recording",
"radio",
+ "recording",
"television"
],
"tags": {
diff --git a/data/presets/amenity/swingerclub.json b/data/presets/amenity/swingerclub.json
new file mode 100644
index 00000000..499203b7
--- /dev/null
+++ b/data/presets/amenity/swingerclub.json
@@ -0,0 +1,31 @@
+{
+ "icon": "maki-heart",
+ "fields": [
+ "{amenity/nightclub}",
+ "smoking"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "air_conditioning",
+ "fee"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "swingerclub"
+ },
+ "terms": [
+ "adult*",
+ "lifestyle club",
+ "porn*",
+ "sex",
+ "strip*",
+ "swinger*"
+ ],
+ "name": "Swinger Club",
+ "aliases": [
+ "Sex Club"
+ ]
+}
diff --git a/data/presets/amenity/taxi.json b/data/presets/amenity/taxi.json
index 41e64c36..cbbe019f 100644
--- a/data/presets/amenity/taxi.json
+++ b/data/presets/amenity/taxi.json
@@ -11,7 +11,7 @@
"branch_brand",
"brand",
"opening_hours",
- "opening_hours/covid19",
+ "taxi_vehicle",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/taxi/auto_rickshaw.json b/data/presets/amenity/taxi/auto_rickshaw.json
new file mode 100644
index 00000000..1fdd7a55
--- /dev/null
+++ b/data/presets/amenity/taxi/auto_rickshaw.json
@@ -0,0 +1,34 @@
+{
+ "icon": "fas-person-arrow-up-from-line",
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "address"
+ ],
+ "moreFields": [
+ "access_simple",
+ "opening_hours",
+ "operator",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "bajaj",
+ "toda",
+ "tricycle station",
+ "tuk-tuk",
+ "tuksi"
+ ],
+ "tags": {
+ "amenity": "taxi",
+ "taxi_vehicle": "auto_rickshaw"
+ },
+ "name": "Auto Rickshaw Stand",
+ "aliases": [
+ "Tricycle Terminal"
+ ]
+}
diff --git a/data/presets/amenity/taxi/cycle_rickshaw.json b/data/presets/amenity/taxi/cycle_rickshaw.json
new file mode 100644
index 00000000..8483735c
--- /dev/null
+++ b/data/presets/amenity/taxi/cycle_rickshaw.json
@@ -0,0 +1,37 @@
+{
+ "icon": "roentgen-bus_stop_sign",
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "address"
+ ],
+ "moreFields": [
+ "access_simple",
+ "opening_hours",
+ "operator",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "becak",
+ "bikecab",
+ "padyak",
+ "pedicab",
+ "sikad",
+ "trishaw",
+ "trisikad",
+ "velotaxi"
+ ],
+ "tags": {
+ "amenity": "taxi",
+ "taxi_vehicle": "cycle_rickshaw"
+ },
+ "name": "Cycle Rickshaw Stand",
+ "aliases": [
+ "Pedicab Terminal"
+ ]
+}
diff --git a/data/presets/amenity/taxi/motorcycle_taxi.json b/data/presets/amenity/taxi/motorcycle_taxi.json
new file mode 100644
index 00000000..da8aa09e
--- /dev/null
+++ b/data/presets/amenity/taxi/motorcycle_taxi.json
@@ -0,0 +1,29 @@
+{
+ "icon": "temaki-pedestrian_and_cyclist",
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "address"
+ ],
+ "moreFields": [
+ "access_simple",
+ "opening_hours",
+ "operator",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "habal-habal",
+ "moto taxi",
+ "pillion"
+ ],
+ "tags": {
+ "amenity": "taxi",
+ "taxi_vehicle": "motorcycle"
+ },
+ "name": "Motorcycle Taxi Stand"
+}
diff --git a/data/presets/amenity/telephone.json b/data/presets/amenity/telephone.json
index 0fb73efc..567d15b7 100644
--- a/data/presets/amenity/telephone.json
+++ b/data/presets/amenity/telephone.json
@@ -7,12 +7,10 @@
"covered"
],
"moreFields": [
+ "{@templates/internet_access}",
"booth",
"fee",
"indoor",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
"lit",
"model",
@@ -29,7 +27,12 @@
"amenity": "telephone"
},
"terms": [
- "phone"
+ "pay phone",
+ "payphone",
+ "phone",
+ "phone booth",
+ "public phone",
+ "public telephone"
],
"name": "Telephone"
}
diff --git a/data/presets/amenity/theatre.json b/data/presets/amenity/theatre.json
index ae84bde3..847f1806 100644
--- a/data/presets/amenity/theatre.json
+++ b/data/presets/amenity/theatre.json
@@ -8,29 +8,20 @@
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "min_age",
- "payment_multi",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "min_age"
],
"geometry": [
"point",
"area"
],
"terms": [
- "theatre",
+ "musical",
"performance",
"play",
- "musical"
+ "theatre"
],
"tags": {
"amenity": "theatre"
diff --git a/data/presets/amenity/theatre/type/amphi.json b/data/presets/amenity/theatre/type/amphi.json
index d1d6b170..30ba74b0 100644
--- a/data/presets/amenity/theatre/type/amphi.json
+++ b/data/presets/amenity/theatre/type/amphi.json
@@ -11,14 +11,18 @@
"area"
],
"terms": [
- "open air",
- "outdoor",
+ "ampi",
"greek",
- "ampi"
+ "open air",
+ "outdoor"
],
"tags": {
"amenity": "theatre",
"theatre:type": "amphi"
},
- "name": "Amphitheatre"
+ "reference": {
+ "key": "theatre:type",
+ "value": "amphi"
+ },
+ "name": "Amphitheater"
}
diff --git a/data/presets/amenity/ticket_validator.json b/data/presets/amenity/ticket_validator.json
index 7c9210eb..05d0064a 100644
--- a/data/presets/amenity/ticket_validator.json
+++ b/data/presets/amenity/ticket_validator.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-vending_machine",
+ "icon": "temaki-vending_tickets",
"fields": [
"ref",
"operator"
@@ -13,15 +13,16 @@
"support"
],
"geometry": [
- "point"
+ "point",
+ "vertex"
],
"tags": {
"amenity": "ticket_validator"
},
"terms": [
+ "puncher",
"ticket",
- "validator",
- "puncher"
+ "validator"
],
"aliases": [
"Ticket Puncher",
diff --git a/data/presets/amenity/toilets.json b/data/presets/amenity/toilets.json
index 5630feb7..f286f66d 100644
--- a/data/presets/amenity/toilets.json
+++ b/data/presets/amenity/toilets.json
@@ -13,11 +13,11 @@
"fee",
"level",
"opening_hours",
- "opening_hours/covid19",
"operator",
"payment_multi_fee",
"portable",
"toilets/handwashing",
+ "toilets/menstrual_products",
"toilets/position"
],
"geometry": [
@@ -26,12 +26,14 @@
"area"
],
"terms": [
- "outhouse",
- "privy",
"head",
"latrine",
- "WC",
- "W.C."
+ "outhouse",
+ "privy",
+ "public restroom",
+ "public toilet",
+ "w.c.",
+ "wc"
],
"tags": {
"amenity": "toilets"
diff --git a/data/presets/amenity/toilets/disposal/flush.json b/data/presets/amenity/toilets/disposal/flush.json
index f681e9e9..b48d3989 100644
--- a/data/presets/amenity/toilets/disposal/flush.json
+++ b/data/presets/amenity/toilets/disposal/flush.json
@@ -18,9 +18,9 @@
"lavatory",
"privy",
"restroom",
+ "w.c.",
"water closet",
- "WC",
- "W.C."
+ "wc"
],
"tags": {
"amenity": "toilets",
diff --git a/data/presets/amenity/toilets/portable.json b/data/presets/amenity/toilets/portable.json
index 2d892bd3..9da7f957 100644
--- a/data/presets/amenity/toilets/portable.json
+++ b/data/presets/amenity/toilets/portable.json
@@ -14,12 +14,12 @@
"vertex"
],
"terms": [
- "restroom",
- "privy",
+ "chemical toilet",
"porta john",
"porta potty",
"portapot",
- "chemical toilet"
+ "privy",
+ "restroom"
],
"tags": {
"amenity": "toilets",
diff --git a/data/presets/amenity/townhall.json b/data/presets/amenity/townhall.json
index 65c672a5..fac2de70 100644
--- a/data/presets/amenity/townhall.json
+++ b/data/presets/amenity/townhall.json
@@ -9,10 +9,8 @@
],
"moreFields": [
"baby_feeding",
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
- "phone",
"polling_station",
"smoking",
"wheelchair"
@@ -22,11 +20,11 @@
"area"
],
"terms": [
- "village",
"city",
- "government",
"courthouse",
- "municipal"
+ "government",
+ "municipal",
+ "village"
],
"tags": {
"amenity": "townhall"
diff --git a/data/presets/amenity/townhall/barangay-PH.json b/data/presets/amenity/townhall/barangay-PH.json
new file mode 100644
index 00000000..57bb69ac
--- /dev/null
+++ b/data/presets/amenity/townhall/barangay-PH.json
@@ -0,0 +1,29 @@
+{
+ "icon": "fas-building-flag",
+ "locationSet": {
+ "include": [
+ "ph"
+ ]
+ },
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "barrio hall"
+ ],
+ "tags": {
+ "amenity": "townhall",
+ "townhall:type": "barangay"
+ },
+ "addTags": {
+ "amenity": "townhall",
+ "townhall:type": "barangay",
+ "admin_level": "10"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "townhall"
+ },
+ "name": "Barangay Hall"
+}
diff --git a/data/presets/amenity/toy_library.json b/data/presets/amenity/toy_library.json
index 6026b495..e5859aad 100644
--- a/data/presets/amenity/toy_library.json
+++ b/data/presets/amenity/toy_library.json
@@ -8,7 +8,6 @@
],
"moreFields": [
"level",
- "opening_hours/covid19",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/vehicle_inspection.json b/data/presets/amenity/vehicle_inspection.json
index c6af04d8..1e4c95a5 100644
--- a/data/presets/amenity/vehicle_inspection.json
+++ b/data/presets/amenity/vehicle_inspection.json
@@ -8,14 +8,7 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "payment_multi",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
diff --git a/data/presets/amenity/vending_machine.json b/data/presets/amenity/vending_machine.json
index fa7d99c7..e535139c 100644
--- a/data/presets/amenity/vending_machine.json
+++ b/data/presets/amenity/vending_machine.json
@@ -8,7 +8,6 @@
"currency_multi"
],
"moreFields": [
- "ref",
"blind",
"branch_brand",
"brand",
diff --git a/data/presets/amenity/vending_machine/bicycle_tube.json b/data/presets/amenity/vending_machine/bicycle_tube.json
index 4e591447..d982f448 100644
--- a/data/presets/amenity/vending_machine/bicycle_tube.json
+++ b/data/presets/amenity/vending_machine/bicycle_tube.json
@@ -5,9 +5,9 @@
"vertex"
],
"terms": [
- "inner tube",
"bicycle tubes",
- "bike tube"
+ "bike tube",
+ "inner tube"
],
"tags": {
"amenity": "vending_machine",
diff --git a/data/presets/amenity/vending_machine/drinks.json b/data/presets/amenity/vending_machine/drinks.json
index 1eee9a84..40603929 100644
--- a/data/presets/amenity/vending_machine/drinks.json
+++ b/data/presets/amenity/vending_machine/drinks.json
@@ -10,11 +10,11 @@
"vertex"
],
"terms": [
- "drink",
- "soda",
"beverage",
+ "drink",
"juice",
- "pop"
+ "pop",
+ "soda"
],
"tags": {
"amenity": "vending_machine",
diff --git a/data/presets/amenity/vending_machine/excrement_bags.json b/data/presets/amenity/vending_machine/excrement_bags.json
index ec86a275..ff3511fd 100644
--- a/data/presets/amenity/vending_machine/excrement_bags.json
+++ b/data/presets/amenity/vending_machine/excrement_bags.json
@@ -22,12 +22,12 @@
"vertex"
],
"terms": [
- "excrement bags",
- "poop",
- "waste",
- "dog",
"animal",
- "pet"
+ "dog",
+ "excrement bags",
+ "pet",
+ "poop",
+ "waste"
],
"tags": {
"amenity": "vending_machine",
diff --git a/data/presets/amenity/vending_machine/feminine_hygiene.json b/data/presets/amenity/vending_machine/feminine_hygiene.json
index a8652dd8..41fcba85 100644
--- a/data/presets/amenity/vending_machine/feminine_hygiene.json
+++ b/data/presets/amenity/vending_machine/feminine_hygiene.json
@@ -6,12 +6,12 @@
],
"terms": [
"condom",
- "tampon",
- "pad",
- "woman",
- "women",
"menstrual hygiene products",
- "personal care"
+ "pad",
+ "personal care",
+ "tampon",
+ "woman",
+ "women"
],
"tags": {
"amenity": "vending_machine",
diff --git a/data/presets/amenity/vending_machine/food/snacks.json b/data/presets/amenity/vending_machine/food/snacks.json
new file mode 100644
index 00000000..01419fc3
--- /dev/null
+++ b/data/presets/amenity/vending_machine/food/snacks.json
@@ -0,0 +1,21 @@
+{
+ "icon": "temaki-vending_machine",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "terms": [
+ "candy",
+ "chip",
+ "cookie",
+ "cracker",
+ "gum",
+ "pretzel"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "food",
+ "food": "snacks"
+ },
+ "name": "Snack Vending Machine"
+}
diff --git a/data/presets/amenity/vending_machine/fuel.json b/data/presets/amenity/vending_machine/fuel.json
index 7190b6ad..79bf32b2 100644
--- a/data/presets/amenity/vending_machine/fuel.json
+++ b/data/presets/amenity/vending_machine/fuel.json
@@ -4,15 +4,21 @@
"point",
"vertex"
],
+ "fields": [
+ "ref",
+ "fuel/fuel_multi",
+ "fuel/fuel_multi-RU",
+ "operator"
+ ],
"terms": [
- "petrol",
+ "biodiesel",
+ "cng",
+ "diesel",
"fuel",
"gasoline",
- "propane",
- "diesel",
"lng",
- "cng",
- "biodiesel"
+ "petrol",
+ "propane"
],
"tags": {
"amenity": "vending_machine",
@@ -22,6 +28,6 @@
"key": "vending",
"value": "fuel"
},
- "name": "Gas Pump",
+ "name": "Gas Vending Machine",
"matchScore": 0.5
}
diff --git a/data/presets/amenity/vending_machine/ice_cream.json b/data/presets/amenity/vending_machine/ice_cream.json
index 89453106..5efca62c 100644
--- a/data/presets/amenity/vending_machine/ice_cream.json
+++ b/data/presets/amenity/vending_machine/ice_cream.json
@@ -6,8 +6,8 @@
],
"terms": [
"chocolate",
- "ice cream",
"frozen",
+ "ice cream",
"popsicle",
"vanilla"
],
diff --git a/data/presets/amenity/vending_machine/public_transport_tickets.json b/data/presets/amenity/vending_machine/public_transport_tickets.json
index 330386f7..fe897760 100644
--- a/data/presets/amenity/vending_machine/public_transport_tickets.json
+++ b/data/presets/amenity/vending_machine/public_transport_tickets.json
@@ -16,6 +16,10 @@
"amenity": "vending_machine",
"vending": "public_transport_tickets"
},
+ "terms": [
+ "public transport ticket vending machine",
+ "public transport tickets"
+ ],
"reference": {
"key": "vending",
"value": "public_transport_tickets"
diff --git a/data/presets/amenity/vending_machine/sweets.json b/data/presets/amenity/vending_machine/sweets.json
index 79dfa66b..3352a967 100644
--- a/data/presets/amenity/vending_machine/sweets.json
+++ b/data/presets/amenity/vending_machine/sweets.json
@@ -5,12 +5,7 @@
"vertex"
],
"terms": [
- "candy",
- "gum",
- "chip",
- "pretzel",
- "cookie",
- "cracker"
+ "gumball"
],
"tags": {
"amenity": "vending_machine",
@@ -20,5 +15,5 @@
"key": "vending",
"value": "sweets"
},
- "name": "Snack Vending Machine"
+ "name": "Candy Vending Machine"
}
diff --git a/data/presets/amenity/veterinary.json b/data/presets/amenity/veterinary.json
index 65bde46a..5a830761 100644
--- a/data/presets/amenity/veterinary.json
+++ b/data/presets/amenity/veterinary.json
@@ -8,26 +8,19 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/poi}",
"charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi_fee",
- "phone",
- "wheelchair"
+ "fee"
],
"geometry": [
"point",
"area"
],
"terms": [
- "pet clinic",
- "veterinarian",
"animal hospital",
- "pet doctor"
+ "pet clinic",
+ "pet doctor",
+ "veterinarian"
],
"tags": {
"amenity": "veterinary"
diff --git a/data/presets/amenity/veterinary_pharmacy.json b/data/presets/amenity/veterinary_pharmacy.json
new file mode 100644
index 00000000..f96de322
--- /dev/null
+++ b/data/presets/amenity/veterinary_pharmacy.json
@@ -0,0 +1,34 @@
+{
+ "icon": "temaki-veterinary_care",
+ "fields": [
+ "{amenity/pharmacy}"
+ ],
+ "moreFields": [
+ "{amenity/pharmacy}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "animal medication",
+ "animal pharmacy",
+ "pet clinic",
+ "pet doctor",
+ "pet meds",
+ "pet pharmacy",
+ "pet prescriptions",
+ "vet pharmacy",
+ "veterinarian",
+ "veterinary compounding",
+ "veterinary pharmacy",
+ "veterinary supplies"
+ ],
+ "aliases": [
+ "Animal Pharmacy"
+ ],
+ "tags": {
+ "amenity": "veterinary_pharmacy"
+ },
+ "name": "Veterinary Pharmacy"
+}
diff --git a/data/presets/amenity/waste/dog_excrement.json b/data/presets/amenity/waste/dog_excrement.json
index c42d0a35..eca3f063 100644
--- a/data/presets/amenity/waste/dog_excrement.json
+++ b/data/presets/amenity/waste/dog_excrement.json
@@ -18,12 +18,12 @@
},
"terms": [
"bin",
+ "dog",
"garbage",
- "rubbish",
"litter",
- "trash",
"poo",
- "dog"
+ "rubbish",
+ "trash"
],
"name": "Dog Excrement Bin"
}
diff --git a/data/presets/amenity/waste_basket.json b/data/presets/amenity/waste_basket.json
index c482eb06..ae673d91 100644
--- a/data/presets/amenity/waste_basket.json
+++ b/data/presets/amenity/waste_basket.json
@@ -22,9 +22,12 @@
"terms": [
"bin",
"garbage",
- "rubbish",
"litter",
+ "rubbish",
"trash"
],
- "name": "Waste Basket"
+ "aliases": [
+ "Waste Basket"
+ ],
+ "name": "Trash Can"
}
diff --git a/data/presets/amenity/waste_disposal.json b/data/presets/amenity/waste_disposal.json
index ee642ff9..45abd712 100644
--- a/data/presets/amenity/waste_disposal.json
+++ b/data/presets/amenity/waste_disposal.json
@@ -24,8 +24,8 @@
},
"terms": [
"garbage",
- "rubbish",
"litter",
+ "rubbish",
"trash",
"waste disposal"
],
diff --git a/data/presets/amenity/waste_transfer_station.json b/data/presets/amenity/waste_transfer_station.json
index d0d98eb6..a52c9db7 100644
--- a/data/presets/amenity/waste_transfer_station.json
+++ b/data/presets/amenity/waste_transfer_station.json
@@ -12,10 +12,7 @@
"charge_fee"
],
"moreFields": [
- "email",
- "fax",
- "opening_hours/covid19",
- "phone",
+ "{@templates/contact}",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/amenity/water_point.json b/data/presets/amenity/water_point.json
index 03b358b5..21ec200a 100644
--- a/data/presets/amenity/water_point.json
+++ b/data/presets/amenity/water_point.json
@@ -12,7 +12,6 @@
"covered",
"drinking_water",
"lit",
- "opening_hours/covid19",
"ref"
],
"geometry": [
@@ -26,9 +25,9 @@
"terms": [
"water faucet",
"water point",
- "water tap",
"water source",
- "water spigot"
+ "water spigot",
+ "water tap"
],
"name": "RV Drinking Water"
}
diff --git a/data/presets/amenity/watering_place.json b/data/presets/amenity/watering_place.json
index 690d5284..b285cb52 100644
--- a/data/presets/amenity/watering_place.json
+++ b/data/presets/amenity/watering_place.json
@@ -7,9 +7,6 @@
"charge_fee",
"opening_hours"
],
- "moreFields": [
- "opening_hours/covid19"
- ],
"geometry": [
"point",
"vertex",
diff --git a/data/presets/area/footway.json b/data/presets/area/footway.json
index f82f0b7d..5ffb4cf5 100644
--- a/data/presets/area/footway.json
+++ b/data/presets/area/footway.json
@@ -11,8 +11,8 @@
"footway area",
"footway shape",
"pavement",
- "sidewalk shape",
- "sidewalk area"
+ "sidewalk area",
+ "sidewalk shape"
],
"tags": {
"area:highway": "footway"
diff --git a/data/presets/area/highway/traffic_island.json b/data/presets/area/highway/traffic_island.json
new file mode 100644
index 00000000..c9843e56
--- /dev/null
+++ b/data/presets/area/highway/traffic_island.json
@@ -0,0 +1,13 @@
+{
+ "geometry": [
+ "area"
+ ],
+ "terms": [
+ "refuge island",
+ "traffic island"
+ ],
+ "tags": {
+ "area:highway": "traffic_island"
+ },
+ "name": "Traffic Island Area"
+}
diff --git a/data/presets/attraction/amusement_ride.json b/data/presets/attraction/amusement_ride.json
index 8a7acbe7..424091e0 100644
--- a/data/presets/attraction/amusement_ride.json
+++ b/data/presets/attraction/amusement_ride.json
@@ -10,8 +10,8 @@
"area"
],
"terms": [
- "theme park",
- "carnival ride"
+ "carnival ride",
+ "theme park"
],
"tags": {
"attraction": "amusement_ride"
diff --git a/data/presets/attraction/animal.json b/data/presets/attraction/animal.json
index 240e59b5..185920e1 100644
--- a/data/presets/attraction/animal.json
+++ b/data/presets/attraction/animal.json
@@ -5,6 +5,10 @@
"operator",
"species/wikidata"
],
+ "moreFields": [
+ "{attraction}",
+ "opening_hours"
+ ],
"geometry": [
"point",
"area"
diff --git a/data/presets/attraction/big_wheel.json b/data/presets/attraction/big_wheel.json
index d926d2c2..ad41cbc4 100644
--- a/data/presets/attraction/big_wheel.json
+++ b/data/presets/attraction/big_wheel.json
@@ -10,15 +10,16 @@
"min_age"
],
"geometry": [
- "point"
+ "point",
+ "area"
],
"terms": [
+ "amusement ride",
"ferris wheel",
- "theme park",
- "amusement ride"
+ "theme park"
],
"tags": {
"attraction": "big_wheel"
},
- "name": "Big Wheel"
+ "name": "Ferris Wheel"
}
diff --git a/data/presets/attraction/bumper_car.json b/data/presets/attraction/bumper_car.json
index 6b2d057e..631f9d3c 100644
--- a/data/presets/attraction/bumper_car.json
+++ b/data/presets/attraction/bumper_car.json
@@ -10,9 +10,9 @@
"area"
],
"terms": [
- "theme park",
+ "autoscooter",
"dodgem cars",
- "autoscooter"
+ "theme park"
],
"tags": {
"attraction": "bumper_car"
diff --git a/data/presets/attraction/bungee_jumping.json b/data/presets/attraction/bungee_jumping.json
index 64032ea6..8eb487a6 100644
--- a/data/presets/attraction/bungee_jumping.json
+++ b/data/presets/attraction/bungee_jumping.json
@@ -14,9 +14,9 @@
"area"
],
"terms": [
- "theme park",
"bungy jumping",
- "jumping platform"
+ "jumping platform",
+ "theme park"
],
"tags": {
"attraction": "bungee_jumping"
diff --git a/data/presets/attraction/carousel.json b/data/presets/attraction/carousel.json
index 23dfefd1..474d505d 100644
--- a/data/presets/attraction/carousel.json
+++ b/data/presets/attraction/carousel.json
@@ -14,13 +14,13 @@
"area"
],
"terms": [
- "theme park",
- "roundabout",
- "merry-go-round",
+ "flying horses",
"galloper",
- "jumper",
"horseabout",
- "flying horses"
+ "jumper",
+ "merry-go-round",
+ "roundabout",
+ "theme park"
],
"tags": {
"attraction": "carousel"
diff --git a/data/presets/attraction/dark_ride.json b/data/presets/attraction/dark_ride.json
index 5bfd9db4..fa131c51 100644
--- a/data/presets/attraction/dark_ride.json
+++ b/data/presets/attraction/dark_ride.json
@@ -15,8 +15,8 @@
"area"
],
"terms": [
- "theme park",
- "ghost train"
+ "ghost train",
+ "theme park"
],
"tags": {
"attraction": "dark_ride"
diff --git a/data/presets/attraction/drop_tower.json b/data/presets/attraction/drop_tower.json
index 180da561..6e42c672 100644
--- a/data/presets/attraction/drop_tower.json
+++ b/data/presets/attraction/drop_tower.json
@@ -14,11 +14,11 @@
"area"
],
"terms": [
- "theme park",
"amusement ride",
+ "big drop",
"gondola",
- "tower",
- "big drop"
+ "theme park",
+ "tower"
],
"tags": {
"attraction": "drop_tower"
diff --git a/data/presets/attraction/log_flume.json b/data/presets/attraction/log_flume.json
index 9e7bf27c..26fdd811 100644
--- a/data/presets/attraction/log_flume.json
+++ b/data/presets/attraction/log_flume.json
@@ -11,12 +11,13 @@
],
"geometry": [
"point",
+ "line",
"area"
],
"terms": [
- "theme park",
"amusement ride",
- "flume"
+ "flume",
+ "theme park"
],
"tags": {
"attraction": "log_flume"
diff --git a/data/presets/attraction/maze.json b/data/presets/attraction/maze.json
index 9835c940..0f71639f 100644
--- a/data/presets/attraction/maze.json
+++ b/data/presets/attraction/maze.json
@@ -10,9 +10,9 @@
"area"
],
"terms": [
- "theme park",
"amusement ride",
- "labyrinth"
+ "labyrinth",
+ "theme park"
],
"tags": {
"attraction": "maze"
diff --git a/data/presets/attraction/pirate_ship.json b/data/presets/attraction/pirate_ship.json
index 916ced4d..776f73ae 100644
--- a/data/presets/attraction/pirate_ship.json
+++ b/data/presets/attraction/pirate_ship.json
@@ -9,9 +9,9 @@
"point"
],
"terms": [
- "theme park",
+ "amusement ride",
"carnival ride",
- "amusement ride"
+ "theme park"
],
"tags": {
"attraction": "pirate_ship"
diff --git a/data/presets/attraction/river_rafting.json b/data/presets/attraction/river_rafting.json
index ba9c4b82..dcd4f9d8 100644
--- a/data/presets/attraction/river_rafting.json
+++ b/data/presets/attraction/river_rafting.json
@@ -10,12 +10,12 @@
"line"
],
"terms": [
- "theme park",
"aquatic park",
- "water park",
"rafting simulator",
"river rafting ride",
- "river rapids ride"
+ "river rapids ride",
+ "theme park",
+ "water park"
],
"tags": {
"attraction": "river_rafting"
diff --git a/data/presets/attraction/roller_coaster.json b/data/presets/attraction/roller_coaster.json
index 5da6f1c8..3c75a458 100644
--- a/data/presets/attraction/roller_coaster.json
+++ b/data/presets/attraction/roller_coaster.json
@@ -10,8 +10,8 @@
"area"
],
"terms": [
- "theme park",
- "amusement ride"
+ "amusement ride",
+ "theme park"
],
"tags": {
"attraction": "roller_coaster"
diff --git a/data/presets/attraction/swing_carousel.json b/data/presets/attraction/swing_carousel.json
index ac725365..c7c61e95 100644
--- a/data/presets/attraction/swing_carousel.json
+++ b/data/presets/attraction/swing_carousel.json
@@ -14,11 +14,11 @@
"area"
],
"terms": [
- "theme park",
"amusement ride",
"carousel",
- "tower",
- "carousel tower"
+ "carousel tower",
+ "theme park",
+ "tower"
],
"tags": {
"attraction": "swing_carousel"
diff --git a/data/presets/attraction/train.json b/data/presets/attraction/train.json
index bfd8d55e..6d73dea5 100644
--- a/data/presets/attraction/train.json
+++ b/data/presets/attraction/train.json
@@ -10,12 +10,12 @@
"line"
],
"terms": [
- "theme park",
+ "dotto train",
+ "park train",
"rackless train",
"road train",
- "Tschu-Tschu train",
- "dotto train",
- "park train"
+ "theme park",
+ "tschu-tschu train"
],
"tags": {
"attraction": "train"
diff --git a/data/presets/attraction/water_slide.json b/data/presets/attraction/water_slide.json
index f8ceada0..5d14b4fc 100644
--- a/data/presets/attraction/water_slide.json
+++ b/data/presets/attraction/water_slide.json
@@ -1,8 +1,9 @@
{
- "icon": "temaki-slide",
+ "icon": "roentgen-slide_and_water",
"fields": [
"{attraction}",
- "height"
+ "height",
+ "layer"
],
"moreFields": [
"{attraction}",
@@ -14,12 +15,12 @@
"line"
],
"terms": [
- "theme park",
"aquatic park",
- "water park",
"flumes",
+ "hydroslides",
+ "theme park",
"water chutes",
- "hydroslides"
+ "water park"
],
"tags": {
"attraction": "water_slide"
diff --git a/data/presets/barrier/_ditch.json b/data/presets/barrier/_ditch.json
deleted file mode 100644
index 92ef22df..00000000
--- a/data/presets/barrier/_ditch.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "icon": "maki-roadblock",
- "geometry": [
- "line"
- ],
- "tags": {
- "barrier": "ditch"
- },
- "name": "Ditch",
- "searchable": false
-}
diff --git a/data/presets/barrier/border_control.json b/data/presets/barrier/border_control.json
index b44099f7..263a1e8e 100644
--- a/data/presets/barrier/border_control.json
+++ b/data/presets/barrier/border_control.json
@@ -5,10 +5,8 @@
"building_area_yes"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
"vertex",
diff --git a/data/presets/barrier/cattle_grid.json b/data/presets/barrier/cattle_grid.json
index f2646308..646b8bcc 100644
--- a/data/presets/barrier/cattle_grid.json
+++ b/data/presets/barrier/cattle_grid.json
@@ -13,7 +13,7 @@
"stock gate",
"stock grid",
"stock stop",
- "Texas gate",
+ "texas gate",
"vehicle pass"
],
"name": "Cattle Grid"
diff --git a/data/presets/barrier/cycle_barrier.json b/data/presets/barrier/cycle_barrier.json
index f05935d7..99cdb8cc 100644
--- a/data/presets/barrier/cycle_barrier.json
+++ b/data/presets/barrier/cycle_barrier.json
@@ -1,7 +1,17 @@
{
"icon": "temaki-cycle_barrier",
"fields": [
- "access"
+ "access",
+ "wheelchair",
+ "cycle_barrier",
+ "maxwidth/physical",
+ "opening",
+ "spacing",
+ "overlap",
+ "deflection"
+ ],
+ "moreFields": [
+ "cycle_barrier/installation"
],
"geometry": [
"vertex"
@@ -12,7 +22,10 @@
"terms": [
"bicycle barrier",
"bicycling barrier",
+ "bike barrier",
+ "bike chicane",
"bike gates",
+ "chicane",
"cycling barrier"
],
"name": "Cycle Barrier"
diff --git a/data/presets/barrier/ditch.json b/data/presets/barrier/ditch.json
index 290ea9ac..e6c7ca26 100644
--- a/data/presets/barrier/ditch.json
+++ b/data/presets/barrier/ditch.json
@@ -1,12 +1,17 @@
{
"icon": "temaki-trench",
"geometry": [
- "line",
- "area"
+ "line"
],
"tags": {
"barrier": "ditch"
},
"name": "Trench",
+ "aliases": [
+ "Ditch"
+ ],
+ "terms": [
+ "ha-ha"
+ ],
"matchScore": 0.25
}
diff --git a/data/presets/barrier/fence/railing.json b/data/presets/barrier/fence/railing.json
index 4b9e410d..5ea493d1 100644
--- a/data/presets/barrier/fence/railing.json
+++ b/data/presets/barrier/fence/railing.json
@@ -8,9 +8,9 @@
"fence_type": "railing"
},
"terms": [
- "railing",
+ "guard rail",
"handrail",
- "guard rail"
+ "railing"
],
"name": "Railing",
"matchScore": 0.5
diff --git a/data/presets/barrier/gate.json b/data/presets/barrier/gate.json
index b5280656..028dd72b 100644
--- a/data/presets/barrier/gate.json
+++ b/data/presets/barrier/gate.json
@@ -11,7 +11,6 @@
"moreFields": [
"colour",
"manufacturer",
- "opening_hours/covid19",
"operator",
"ref"
],
diff --git a/data/presets/barrier/guard_rail.json b/data/presets/barrier/guard_rail.json
index 1e384ddb..55d1aa3a 100644
--- a/data/presets/barrier/guard_rail.json
+++ b/data/presets/barrier/guard_rail.json
@@ -15,12 +15,12 @@
},
"name": "Guard Rail",
"terms": [
- "guardrail",
- "traffic barrier",
+ "armco barrier",
"crash barrier",
+ "guardrail",
"median barrier",
"roadside barrier",
- "Armco barrier"
+ "traffic barrier"
],
"matchScore": 0.75
}
diff --git a/data/presets/barrier/height_restrictor.json b/data/presets/barrier/height_restrictor.json
index fe71548e..e2e8b4d2 100644
--- a/data/presets/barrier/height_restrictor.json
+++ b/data/presets/barrier/height_restrictor.json
@@ -15,6 +15,7 @@
"terms": [
"height barrier",
"height restriction barrier",
+ "max height",
"maxheight",
"maximum height measurer"
],
diff --git a/data/presets/barrier/jersey_barrier.json b/data/presets/barrier/jersey_barrier.json
index 179ae8d6..058a2dd4 100644
--- a/data/presets/barrier/jersey_barrier.json
+++ b/data/presets/barrier/jersey_barrier.json
@@ -15,8 +15,8 @@
"barrier": "jersey_barrier"
},
"terms": [
- "concrete median",
"concrete barrier",
+ "concrete median",
"constant-slope barrier",
"f-shape barrier",
"k-rail",
diff --git a/data/presets/barrier/kerb.json b/data/presets/barrier/kerb.json
index 81f9636d..7278a4ae 100644
--- a/data/presets/barrier/kerb.json
+++ b/data/presets/barrier/kerb.json
@@ -1,7 +1,7 @@
{
- "icon": "temaki-kerb-raised",
+ "icon": "temaki-kerb-unspecified",
"fields": [
- "kerb",
+ "kerb/kerb_barrier",
"tactile_paving",
"wheelchair",
"two_sided"
diff --git a/data/presets/barrier/kerb/flush.json b/data/presets/barrier/kerb/flush.json
index 3f635e72..08f69abf 100644
--- a/data/presets/barrier/kerb/flush.json
+++ b/data/presets/barrier/kerb/flush.json
@@ -1,17 +1,10 @@
{
"icon": "temaki-kerb-flush",
- "fields": [
- "kerb",
- "{barrier/kerb}"
- ],
"geometry": [
"vertex",
"line"
],
"tags": {
- "kerb": "flush"
- },
- "addTags": {
"barrier": "kerb",
"kerb": "flush"
},
diff --git a/data/presets/barrier/kerb/lowered.json b/data/presets/barrier/kerb/lowered.json
index c45a46ca..4e4d9eb0 100644
--- a/data/presets/barrier/kerb/lowered.json
+++ b/data/presets/barrier/kerb/lowered.json
@@ -1,7 +1,6 @@
{
"icon": "temaki-kerb-lowered",
"fields": [
- "kerb",
"{barrier/kerb}",
"kerb/height"
],
@@ -10,9 +9,6 @@
"line"
],
"tags": {
- "kerb": "lowered"
- },
- "addTags": {
"barrier": "kerb",
"kerb": "lowered"
},
@@ -23,8 +19,8 @@
"terms": [
"curb cut",
"curb ramp",
- "kerb ramp",
"dropped kerb",
+ "kerb ramp",
"pram ramp"
],
"matchScore": 0.55,
diff --git a/data/presets/barrier/kerb/raised.json b/data/presets/barrier/kerb/raised.json
index 971965fe..dbcff019 100644
--- a/data/presets/barrier/kerb/raised.json
+++ b/data/presets/barrier/kerb/raised.json
@@ -1,7 +1,6 @@
{
"icon": "temaki-kerb-raised",
"fields": [
- "kerb",
"{barrier/kerb}",
"kerb/height"
],
@@ -10,9 +9,6 @@
"line"
],
"tags": {
- "kerb": "raised"
- },
- "addTags": {
"barrier": "kerb",
"kerb": "raised"
},
diff --git a/data/presets/barrier/kerb/rolled.json b/data/presets/barrier/kerb/rolled.json
index 6982f1fa..04fc18a0 100644
--- a/data/presets/barrier/kerb/rolled.json
+++ b/data/presets/barrier/kerb/rolled.json
@@ -1,7 +1,6 @@
{
"icon": "temaki-kerb-rolled",
"fields": [
- "kerb",
"{barrier/kerb}",
"kerb/height"
],
@@ -10,9 +9,6 @@
"line"
],
"tags": {
- "kerb": "rolled"
- },
- "addTags": {
"barrier": "kerb",
"kerb": "rolled"
},
diff --git a/data/presets/barrier/lift_gate.json b/data/presets/barrier/lift_gate.json
index 3eabc565..fec5a856 100644
--- a/data/presets/barrier/lift_gate.json
+++ b/data/presets/barrier/lift_gate.json
@@ -1,13 +1,13 @@
{
"icon": "temaki-lift_gate",
"fields": [
+ "lift_gate/type",
"access",
"locked",
"opening_hours"
],
"moreFields": [
- "{barrier}",
- "opening_hours/covid19"
+ "{barrier}"
],
"geometry": [
"vertex"
@@ -16,11 +16,11 @@
"barrier": "lift_gate"
},
"terms": [
- "boom barrier",
"boom gate",
"boom lift",
"hinged bar",
+ "lift gate",
"pivoted pole"
],
- "name": "Lift Gate"
+ "name": "Boom Barrier"
}
diff --git a/data/presets/barrier/_log.json b/data/presets/barrier/log.json
similarity index 64%
rename from data/presets/barrier/_log.json
rename to data/presets/barrier/log.json
index 4785fa19..0aa89f54 100644
--- a/data/presets/barrier/_log.json
+++ b/data/presets/barrier/log.json
@@ -5,11 +5,14 @@
],
"geometry": [
"vertex",
+ "point",
"line"
],
"tags": {
"barrier": "log"
},
- "name": "Fallen Tree",
- "searchable": false
+ "terms": [
+ "downed tree"
+ ],
+ "name": "Fallen Tree Obstruction"
}
diff --git a/data/presets/barrier/motorcycle_barrier.json b/data/presets/barrier/motorcycle_barrier.json
index 09ffe28f..f3d879c4 100644
--- a/data/presets/barrier/motorcycle_barrier.json
+++ b/data/presets/barrier/motorcycle_barrier.json
@@ -12,5 +12,8 @@
"tags": {
"barrier": "motorcycle_barrier"
},
+ "terms": [
+ "motorbike barrier"
+ ],
"name": "Motorcycle Barrier"
}
diff --git a/data/presets/barrier/sally_port.json b/data/presets/barrier/sally_port.json
index 67b24afa..1115c701 100644
--- a/data/presets/barrier/sally_port.json
+++ b/data/presets/barrier/sally_port.json
@@ -7,8 +7,8 @@
"barrier": "sally_port"
},
"terms": [
- "Postern",
- "castle side gate"
+ "castle side gate",
+ "postern"
],
"name": "Sally Port"
}
diff --git a/data/presets/barrier/toll_booth.json b/data/presets/barrier/toll_booth.json
index 9b905d87..4c9e081b 100644
--- a/data/presets/barrier/toll_booth.json
+++ b/data/presets/barrier/toll_booth.json
@@ -7,12 +7,9 @@
"currency_multi"
],
"moreFields": [
+ "{@templates/contact}",
"address",
- "email",
- "fax",
- "opening_hours",
- "opening_hours/covid19",
- "phone"
+ "opening_hours"
],
"geometry": [
"vertex",
diff --git a/data/presets/boundary/hazard.json b/data/presets/boundary/hazard.json
new file mode 100644
index 00000000..a2bb5d4e
--- /dev/null
+++ b/data/presets/boundary/hazard.json
@@ -0,0 +1,18 @@
+{
+ "icon": "fas-triangle-exclamation",
+ "fields": [
+ "name",
+ "hazard_boundary"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "boundary": "hazard"
+ },
+ "terms": [
+ "danger",
+ "prohibited"
+ ],
+ "name": "Hazardous Area"
+}
diff --git a/data/presets/building.json b/data/presets/building.json
index 15850c76..391d2eb8 100644
--- a/data/presets/building.json
+++ b/data/presets/building.json
@@ -9,6 +9,7 @@
],
"moreFields": [
"architect",
+ "building/colour",
"building/levels/underground",
"building/material",
"building/prefabricated",
@@ -18,6 +19,8 @@
"not/name",
"operator",
"roof/colour",
+ "roof/shape",
+ "roof/height",
"smoking",
"wheelchair"
],
diff --git a/data/presets/building/_bunker.json b/data/presets/building/_bunker.json
index 473e473d..a150ba79 100644
--- a/data/presets/building/_bunker.json
+++ b/data/presets/building/_bunker.json
@@ -6,6 +6,14 @@
"tags": {
"building": "bunker"
},
+ "fields": [
+ "{military/bunker}",
+ "{building}"
+ ],
+ "moreFields": [
+ "{military/bunker}",
+ "{building}"
+ ],
"matchScore": 0.5,
"name": "Bunker",
"searchable": false
diff --git a/data/presets/building/_entrance.json b/data/presets/building/_entrance.json
index 5843c42e..31fa242d 100644
--- a/data/presets/building/_entrance.json
+++ b/data/presets/building/_entrance.json
@@ -1,7 +1,5 @@
{
"icon": "maki-entrance-alt1",
- "fields": [],
- "moreFields": [],
"geometry": [
"vertex"
],
diff --git a/data/presets/building/bakehouse.json b/data/presets/building/bakehouse.json
new file mode 100644
index 00000000..71814057
--- /dev/null
+++ b/data/presets/building/bakehouse.json
@@ -0,0 +1,11 @@
+{
+ "icon": "temaki-bread",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "bakehouse"
+ },
+ "matchScore": 0.5,
+ "name": "Bakehouse"
+}
diff --git a/data/presets/building/bungalow.json b/data/presets/building/bungalow.json
index 1cce91d9..7d2e3474 100644
--- a/data/presets/building/bungalow.json
+++ b/data/presets/building/bungalow.json
@@ -7,8 +7,8 @@
"building": "bungalow"
},
"terms": [
- "home",
- "detached"
+ "detached",
+ "home"
],
"matchScore": 0.5,
"name": "Bungalow"
diff --git a/data/presets/building/carport.json b/data/presets/building/carport.json
index 136f2451..1c15541c 100644
--- a/data/presets/building/carport.json
+++ b/data/presets/building/carport.json
@@ -12,9 +12,9 @@
},
"matchScore": 0.5,
"terms": [
+ "car",
"covered parking space",
"garage",
- "car",
"porch"
],
"name": "Carport"
diff --git a/data/presets/building/construction.json b/data/presets/building/construction.json
index a1dc8ed6..bfae3c3e 100644
--- a/data/presets/building/construction.json
+++ b/data/presets/building/construction.json
@@ -13,6 +13,10 @@
"tags": {
"building": "construction"
},
+ "removeTags": {
+ "building": "construction",
+ "construction": "*"
+ },
"matchScore": 0.5,
"name": "Building Under Construction"
}
diff --git a/data/presets/building/detached.json b/data/presets/building/detached.json
index 43400e01..7bc8468b 100644
--- a/data/presets/building/detached.json
+++ b/data/presets/building/detached.json
@@ -7,11 +7,11 @@
"building": "detached"
},
"terms": [
- "home",
- "single",
+ "dwelling",
"family",
+ "home",
"residence",
- "dwelling"
+ "single"
],
"matchScore": 0.5,
"name": "Detached House"
diff --git a/data/presets/building/farm_auxiliary.json b/data/presets/building/farm_auxiliary.json
index 9290a995..64f2281d 100644
--- a/data/presets/building/farm_auxiliary.json
+++ b/data/presets/building/farm_auxiliary.json
@@ -8,8 +8,8 @@
},
"terms": [
"agriculture",
- "auxiliary",
"auxilary",
+ "auxiliary",
"chicken coop",
"farm auxiliary",
"pigsty",
diff --git a/data/presets/building/grandstand.json b/data/presets/building/grandstand.json
index e27f052a..4e145ad7 100644
--- a/data/presets/building/grandstand.json
+++ b/data/presets/building/grandstand.json
@@ -7,10 +7,10 @@
"building": "grandstand"
},
"terms": [
- "tribune",
+ "bleachers",
"stand",
"stands",
- "bleachers"
+ "tribune"
],
"matchScore": 0.5,
"name": "Grandstand"
diff --git a/data/presets/building/house.json b/data/presets/building/house.json
index 1c4636ab..53b59c72 100644
--- a/data/presets/building/house.json
+++ b/data/presets/building/house.json
@@ -3,14 +3,18 @@
"geometry": [
"area"
],
+ "fields": [
+ "house",
+ "{building}"
+ ],
"tags": {
"building": "house"
},
"terms": [
- "home",
+ "dwelling",
"family",
- "residence",
- "dwelling"
+ "home",
+ "residence"
],
"matchScore": 0.5,
"name": "House"
diff --git a/data/presets/building/house/_detached.json b/data/presets/building/house/_detached.json
new file mode 100644
index 00000000..9f751ef9
--- /dev/null
+++ b/data/presets/building/house/_detached.json
@@ -0,0 +1,21 @@
+{
+ "icon": "maki-home",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "house",
+ "{building}"
+ ],
+ "tags": {
+ "building": "house",
+ "house": "detached"
+ },
+ "reference": {
+ "key": "house",
+ "value": "detached"
+ },
+ "matchScore": 0.5,
+ "name": "{building/detached}",
+ "searchable": false
+}
diff --git a/data/presets/building/house/_semi-detached.json b/data/presets/building/house/_semi-detached.json
new file mode 100644
index 00000000..4bd07c02
--- /dev/null
+++ b/data/presets/building/house/_semi-detached.json
@@ -0,0 +1,21 @@
+{
+ "icon": "maki-home",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "house",
+ "{building}"
+ ],
+ "tags": {
+ "building": "house",
+ "house": "semi-detached"
+ },
+ "reference": {
+ "key": "house",
+ "value": "semi-detached"
+ },
+ "matchScore": 0.5,
+ "name": "{building/semidetached_house}",
+ "searchable": false
+}
diff --git a/data/presets/building/house/_terrace.json b/data/presets/building/house/_terrace.json
new file mode 100644
index 00000000..53fb7947
--- /dev/null
+++ b/data/presets/building/house/_terrace.json
@@ -0,0 +1,21 @@
+{
+ "icon": "temaki-row_houses",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "house",
+ "{building}"
+ ],
+ "tags": {
+ "building": "house",
+ "house": "terrace"
+ },
+ "reference": {
+ "key": "house",
+ "value": "terrace"
+ },
+ "matchScore": 0.5,
+ "name": "{building/terrace}",
+ "searchable": false
+}
diff --git a/data/presets/building/house/terraced.json b/data/presets/building/house/terraced.json
new file mode 100644
index 00000000..6627f68e
--- /dev/null
+++ b/data/presets/building/house/terraced.json
@@ -0,0 +1,33 @@
+{
+ "icon": "temaki-row_houses",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "house",
+ "{building}"
+ ],
+ "tags": {
+ "building": "house",
+ "house": "terraced"
+ },
+ "reference": {
+ "key": "house",
+ "value": "terraced"
+ },
+ "terms": [
+ "brownstone",
+ "dwelling",
+ "family",
+ "home",
+ "residence",
+ "row home",
+ "terrace",
+ "townhome"
+ ],
+ "matchScore": 0.5,
+ "name": "Townhouse",
+ "aliases": [
+ "Row House"
+ ]
+}
diff --git a/data/presets/building/houseboat.json b/data/presets/building/houseboat.json
index 9549140d..43efce54 100644
--- a/data/presets/building/houseboat.json
+++ b/data/presets/building/houseboat.json
@@ -7,10 +7,10 @@
"building": "houseboat"
},
"terms": [
- "home",
+ "dwelling",
"family",
- "residence",
- "dwelling"
+ "home",
+ "residence"
],
"matchScore": 0.5,
"name": "Houseboat"
diff --git a/data/presets/building/kindergarten.json b/data/presets/building/kindergarten.json
index dfe6d3b5..a697b0ce 100644
--- a/data/presets/building/kindergarten.json
+++ b/data/presets/building/kindergarten.json
@@ -4,8 +4,8 @@
"area"
],
"terms": [
- "kindergarten",
"kindergarden",
+ "kindergarten",
"pre-school"
],
"tags": {
diff --git a/data/presets/building/riding_hall.json b/data/presets/building/riding_hall.json
new file mode 100644
index 00000000..566cf49d
--- /dev/null
+++ b/data/presets/building/riding_hall.json
@@ -0,0 +1,30 @@
+{
+ "icon": "maki-horse-riding",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "riding_hall"
+ },
+ "matchScore": 0.5,
+ "terms": [
+ "equestrian arena",
+ "equestrian indoor arena",
+ "horse riding",
+ "indoor arena",
+ "indoor riding",
+ "indoor ring",
+ "longeing hall"
+ ],
+ "name": "Indoor Horseback Riding Arena",
+ "aliases": [
+ "Horse Riding Hall",
+ "Horseback Riding Hall",
+ "Indoor Horse Arena",
+ "Indoor Horse Riding Arena",
+ "Indoor Horse Riding Ring",
+ "Indoor Horseback Riding Ring",
+ "Indoor Riding Arena",
+ "Indoor Riding Ring"
+ ]
+}
diff --git a/data/presets/building/roof.json b/data/presets/building/roof.json
index 943e8046..f407dfbf 100644
--- a/data/presets/building/roof.json
+++ b/data/presets/building/roof.json
@@ -1,8 +1,25 @@
{
"icon": "maki-shelter",
"fields": [
- "{building}",
- "layer"
+ "building",
+ "height",
+ "layer_1"
+ ],
+ "moreFields": [
+ "address",
+ "architect",
+ "building/colour",
+ "building/levels",
+ "building/levels/underground",
+ "building/material",
+ "building/prefabricated",
+ "ele",
+ "gnis/feature_id-US",
+ "not/name",
+ "operator",
+ "roof/colour",
+ "roof/shape",
+ "roof/height"
],
"geometry": [
"area"
@@ -10,10 +27,6 @@
"tags": {
"building": "roof"
},
- "addTags": {
- "building": "roof",
- "layer": "1"
- },
"matchScore": 0.5,
"name": "Roof"
}
diff --git a/data/presets/building/school.json b/data/presets/building/school.json
index daff0625..63f22cc8 100644
--- a/data/presets/building/school.json
+++ b/data/presets/building/school.json
@@ -10,8 +10,8 @@
"terms": [
"academy",
"elementary school",
- "middle school",
- "high school"
+ "high school",
+ "middle school"
],
"tags": {
"building": "school"
diff --git a/data/presets/building/semidetached_house.json b/data/presets/building/semidetached_house.json
index 2cf3ef06..86e63966 100644
--- a/data/presets/building/semidetached_house.json
+++ b/data/presets/building/semidetached_house.json
@@ -7,13 +7,13 @@
"building": "semidetached_house"
},
"terms": [
- "home",
"double",
"duplex",
- "twin",
+ "dwelling",
"family",
+ "home",
"residence",
- "dwelling"
+ "twin"
],
"matchScore": 0.5,
"name": "Semi-Detached House"
diff --git a/data/presets/building/shed.json b/data/presets/building/shed.json
index 23f8c497..fa9c640b 100644
--- a/data/presets/building/shed.json
+++ b/data/presets/building/shed.json
@@ -10,6 +10,11 @@
"tags": {
"building": "shed"
},
+ "terms": [
+ "hobbies",
+ "storage",
+ "workshop"
+ ],
"matchScore": 0.5,
"name": "Shed"
}
diff --git a/data/presets/building/static_caravan.json b/data/presets/building/static_caravan.json
index a78e9e38..19a570f7 100644
--- a/data/presets/building/static_caravan.json
+++ b/data/presets/building/static_caravan.json
@@ -9,12 +9,12 @@
"terms": [
"house trailer",
"manufactured home",
- "mobile home",
"prefabricated home",
"residential caravan",
"static caravan",
+ "static mobile home",
"trailer home"
],
"matchScore": 0.5,
- "name": "Static Mobile Home"
+ "name": "Mobile Home"
}
diff --git a/data/presets/building/terrace.json b/data/presets/building/terrace.json
index 0de9a9f7..fbd8b410 100644
--- a/data/presets/building/terrace.json
+++ b/data/presets/building/terrace.json
@@ -7,13 +7,16 @@
"building": "terrace"
},
"terms": [
- "home",
- "terrace",
"brownstone",
+ "dwelling",
"family",
+ "home",
"residence",
- "dwelling"
+ "row home",
+ "row house",
+ "terrace",
+ "townhome"
],
"matchScore": 0.5,
- "name": "Row Houses"
+ "name": "Row of Townhouses"
}
diff --git a/data/presets/building_part.json b/data/presets/building_part.json
index 70ea35da..b456855a 100644
--- a/data/presets/building_part.json
+++ b/data/presets/building_part.json
@@ -5,7 +5,10 @@
"building/levels",
"height",
"building/material",
- "roof/colour"
+ "building/colour",
+ "roof/colour",
+ "roof/height",
+ "roof/shape"
],
"moreFields": [
"layer"
@@ -19,7 +22,7 @@
"matchScore": 0.5,
"terms": [
"roof",
- "simple 3D buildings"
+ "simple 3d buildings"
],
"name": "Building Part"
}
diff --git a/data/presets/climbing/crag.json b/data/presets/climbing/crag.json
new file mode 100644
index 00000000..a9d174a9
--- /dev/null
+++ b/data/presets/climbing/crag.json
@@ -0,0 +1,23 @@
+{
+ "icon": "temaki-climbing",
+ "fields": [
+ "name"
+ ],
+ "moreFields": [
+ "website"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "climbing": "crag"
+ },
+ "addTags": {
+ "sport": "climbing",
+ "climbing": "crag"
+ },
+ "aliases": [
+ "Climbing Cliff"
+ ],
+ "name": "Climbing Crag"
+}
diff --git a/data/presets/climbing/route.json b/data/presets/climbing/route.json
new file mode 100644
index 00000000..8aa53f13
--- /dev/null
+++ b/data/presets/climbing/route.json
@@ -0,0 +1,33 @@
+{
+ "icon": "temaki-climbing",
+ "geometry": [
+ "line",
+ "point"
+ ],
+ "fields": [
+ "{climbing/route_bottom}"
+ ],
+ "moreFields": [
+ "{climbing/route_bottom}"
+ ],
+ "terms": [
+ "boulder problem",
+ "climb",
+ "climbing",
+ "rock climbing",
+ "rock climbing route",
+ "sport climbing"
+ ],
+ "tags": {
+ "climbing": "route"
+ },
+ "addTags": {
+ "climbing": "route",
+ "sport": "climbing"
+ },
+ "name": "Climbing Route",
+ "aliases": [
+ "Boulder Problem",
+ "Climb"
+ ]
+}
diff --git a/data/presets/climbing/route_bottom.json b/data/presets/climbing/route_bottom.json
new file mode 100644
index 00000000..203cd8e3
--- /dev/null
+++ b/data/presets/climbing/route_bottom.json
@@ -0,0 +1,39 @@
+{
+ "icon": "temaki-abseiling",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "name",
+ "climbing/sport",
+ "climbing/trad",
+ "climbing/bolts"
+ ],
+ "moreFields": [
+ "climbing/grade/uiaa",
+ "climbing/grade/french",
+ "climbing/grade/saxon",
+ "climbing/grade/yds_class",
+ "website",
+ "climbing/length",
+ "description"
+ ],
+ "terms": [
+ "climbing area",
+ "climbing crag",
+ "climbing point",
+ "rock climbing route",
+ "route bottom",
+ "route start",
+ "sport climbing"
+ ],
+ "tags": {
+ "climbing": "route_bottom"
+ },
+ "addTags": {
+ "sport": "climbing",
+ "climbing": "route_bottom"
+ },
+ "name": "Climbing Route Start"
+}
diff --git a/data/presets/club.json b/data/presets/club.json
index dbeb28e1..0d0d5f83 100644
--- a/data/presets/club.json
+++ b/data/presets/club.json
@@ -11,22 +11,13 @@
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"access_simple",
"building/levels_building",
- "email",
- "fax",
- "gnis/feature_id-US",
"height_building",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
"max_age",
- "min_age",
- "opening_hours/covid19",
- "phone",
- "website",
- "wheelchair"
+ "min_age"
],
"geometry": [
"point",
diff --git a/data/presets/club/scout.json b/data/presets/club/scout.json
new file mode 100644
index 00000000..5612415a
--- /dev/null
+++ b/data/presets/club/scout.json
@@ -0,0 +1,23 @@
+{
+ "icon": "fas-handshake",
+ "fields": [
+ "{club}"
+ ],
+ "moreFields": [
+ "{club}",
+ "brand"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "club": "scout"
+ },
+ "terms": [
+ "guide",
+ "pathfinder",
+ "scouting"
+ ],
+ "name": "Scout Group"
+}
diff --git a/data/presets/craft.json b/data/presets/craft.json
index ad885e8d..401e6c1d 100644
--- a/data/presets/craft.json
+++ b/data/presets/craft.json
@@ -11,21 +11,12 @@
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"building/levels_building",
- "ele",
- "email",
- "fax",
- "gnis/feature_id-US",
"height_building",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "product",
- "ref/vatin",
- "wheelchair"
+ "product"
],
"geometry": [
"point",
diff --git a/data/presets/craft/caterer.json b/data/presets/craft/caterer.json
index 226aba76..9abd318b 100644
--- a/data/presets/craft/caterer.json
+++ b/data/presets/craft/caterer.json
@@ -5,6 +5,9 @@
"cuisine",
"{craft}"
],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"geometry": [
"point",
"area"
diff --git a/data/presets/craft/confectionery.json b/data/presets/craft/confectionery.json
index e6b28b89..071aba4e 100644
--- a/data/presets/craft/confectionery.json
+++ b/data/presets/craft/confectionery.json
@@ -5,8 +5,11 @@
"area"
],
"terms": [
- "sweet",
- "candy"
+ "candy",
+ "sweet"
+ ],
+ "moreFields": [
+ "fhrs/id-GB"
],
"tags": {
"craft": "confectionery"
diff --git a/data/presets/craft/distillery.json b/data/presets/craft/distillery.json
index e5142e99..cd9b6cbc 100644
--- a/data/presets/craft/distillery.json
+++ b/data/presets/craft/distillery.json
@@ -6,6 +6,7 @@
],
"moreFields": [
"{craft}",
+ "fhrs/id-GB",
"min_age"
],
"geometry": [
@@ -15,8 +16,8 @@
"terms": [
"alcohol",
"beverage",
- "bourbon",
"booze",
+ "bourbon",
"brandy",
"gin",
"hooch",
diff --git a/data/presets/craft/gardener.json b/data/presets/craft/gardener.json
index c2470b0e..830adc22 100644
--- a/data/presets/craft/gardener.json
+++ b/data/presets/craft/gardener.json
@@ -5,8 +5,8 @@
"area"
],
"terms": [
- "landscaper",
- "grounds keeper"
+ "grounds keeper",
+ "landscaper"
],
"tags": {
"craft": "gardener"
diff --git a/data/presets/craft/rigger.json b/data/presets/craft/rigger.json
index 39f96413..4436ca4b 100644
--- a/data/presets/craft/rigger.json
+++ b/data/presets/craft/rigger.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-tools",
+ "icon": "temaki-rigging",
"geometry": [
"point",
"area"
diff --git a/data/presets/craft/signmaker.json b/data/presets/craft/signmaker.json
index d58fd4a5..cdba9347 100644
--- a/data/presets/craft/signmaker.json
+++ b/data/presets/craft/signmaker.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-tools",
+ "icon": "fas-sign-hanging",
"geometry": [
"point",
"area"
diff --git a/data/presets/craft/upholsterer.json b/data/presets/craft/upholsterer.json
index 6d83d7f8..49251bfc 100644
--- a/data/presets/craft/upholsterer.json
+++ b/data/presets/craft/upholsterer.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-tools",
+ "icon": "fas-couch",
"geometry": [
"point",
"area"
diff --git a/data/presets/craft/winery.json b/data/presets/craft/winery.json
index 008cca97..29940ad7 100644
--- a/data/presets/craft/winery.json
+++ b/data/presets/craft/winery.json
@@ -2,6 +2,7 @@
"icon": "maki-alcohol-shop",
"moreFields": [
"{craft}",
+ "fhrs/id-GB",
"min_age"
],
"geometry": [
diff --git a/data/presets/education.json b/data/presets/education.json
new file mode 100644
index 00000000..39160af4
--- /dev/null
+++ b/data/presets/education.json
@@ -0,0 +1,39 @@
+{
+ "icon": "temaki-school",
+ "fields": [
+ "name",
+ "education",
+ "operator",
+ "address",
+ "building_area",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "branch_brand",
+ "brand",
+ "building/levels_building",
+ "gnis/feature_id-US",
+ "height_building",
+ "level",
+ "opening_hours",
+ "payment_multi",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "education": "*"
+ },
+ "terms": [
+ "classes",
+ "school",
+ "teaching",
+ "training"
+ ],
+ "name": "Education Facility",
+ "matchScore": 0.7
+}
diff --git a/data/presets/education/_yes.json b/data/presets/education/_yes.json
new file mode 100644
index 00000000..80be3dfc
--- /dev/null
+++ b/data/presets/education/_yes.json
@@ -0,0 +1,18 @@
+{
+ "icon": "temaki-school",
+ "fields": [
+ "name",
+ "education",
+ "{education}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "education": "yes"
+ },
+ "searchable": false,
+ "matchScore": 0.5,
+ "name": "Education Facility (Unspecified Type)"
+}
diff --git a/data/presets/education/college.json b/data/presets/education/college.json
new file mode 100644
index 00000000..0662799c
--- /dev/null
+++ b/data/presets/education/college.json
@@ -0,0 +1,38 @@
+{
+ "icon": "maki-college",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "website",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "denomination",
+ "ref/edubase-GB",
+ "religion"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "terms": [
+ "undergraduate school",
+ "university"
+ ],
+ "tags": {
+ "amenity": "college"
+ },
+ "addTags": {
+ "amenity": "college",
+ "education": "college"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "college"
+ },
+ "name": "College Grounds"
+}
diff --git a/data/presets/leisure/dancing_school.json b/data/presets/education/dancing_school.json
similarity index 50%
rename from data/presets/leisure/dancing_school.json
rename to data/presets/education/dancing_school.json
index 64dd37ba..7d3bb7f3 100644
--- a/data/presets/leisure/dancing_school.json
+++ b/data/presets/education/dancing_school.json
@@ -9,32 +9,34 @@
"dance/style"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
+ "{@templates/poi}"
],
"geometry": [
"point",
"area"
],
"terms": [
+ "ballet",
+ "ballet studio",
+ "dance teaching",
"jive",
"swing",
"tango",
- "waltz",
- "dance teaching"
+ "waltz"
],
"tags": {
- "leisure": "dance",
- "dance:teaching": "yes"
+ "amenity": "dancing_school"
+ },
+ "addTags": {
+ "amenity": "dancing_school",
+ "education": "dancing_school"
},
"reference": {
- "key": "leisure",
- "value": "dance"
+ "key": "amenity",
+ "value": "dancing_school"
},
- "name": "Dance School"
+ "name": "Dance School",
+ "aliases": [
+ "Dance Studio"
+ ]
}
diff --git a/data/presets/amenity/driving_school.json b/data/presets/education/driving_school.json
similarity index 54%
rename from data/presets/amenity/driving_school.json
rename to data/presets/education/driving_school.json
index b7756936..365ef9ff 100644
--- a/data/presets/amenity/driving_school.json
+++ b/data/presets/education/driving_school.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-car",
+ "icon": "temaki-car_pool",
"fields": [
"name",
"operator",
@@ -9,16 +9,8 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "license_classes",
- "opening_hours/covid19",
- "payment_multi",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "{@templates/poi}",
+ "license_classes"
],
"geometry": [
"point",
@@ -27,5 +19,13 @@
"tags": {
"amenity": "driving_school"
},
+ "addTags": {
+ "amenity": "driving_school",
+ "education": "driving_school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "driving_school"
+ },
"name": "Driving School"
}
diff --git a/data/presets/amenity/kindergarten.json b/data/presets/education/kindergarten.json
similarity index 73%
rename from data/presets/amenity/kindergarten.json
rename to data/presets/education/kindergarten.json
index e593f376..c22ea4a3 100644
--- a/data/presets/amenity/kindergarten.json
+++ b/data/presets/education/kindergarten.json
@@ -9,19 +9,18 @@
"preschool"
],
"moreFields": [
+ "{@templates/contact}",
"capacity",
- "email",
- "fax",
+ "fhrs/id-GB",
"gnis/feature_id-US",
+ "ref/edubase-GB",
"internet_access",
- "internet_access/fee",
"internet_access/ssid",
"level",
"max_age",
"min_age",
"not/name",
"opening_hours",
- "opening_hours/covid19",
"payment_multi",
"wheelchair"
],
@@ -30,12 +29,20 @@
"point"
],
"terms": [
- "kindergarten",
"kindergarden",
+ "kindergarten",
"pre-school"
],
"tags": {
"amenity": "kindergarten"
},
+ "addTags": {
+ "amenity": "kindergarten",
+ "education": "kindergarten"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "kindergarten"
+ },
"name": "Preschool / Kindergarten Grounds"
}
diff --git a/data/presets/amenity/language_school.json b/data/presets/education/language_school.json
similarity index 66%
rename from data/presets/amenity/language_school.json
rename to data/presets/education/language_school.json
index 3877fe2f..ad866dfb 100644
--- a/data/presets/amenity/language_school.json
+++ b/data/presets/education/language_school.json
@@ -10,16 +10,11 @@
"language_multi"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
- "opening_hours/covid19",
"payment_multi",
- "phone",
"wheelchair"
],
"geometry": [
@@ -32,5 +27,13 @@
"tags": {
"amenity": "language_school"
},
+ "addTags": {
+ "amenity": "language_school",
+ "education": "language_school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "language_school"
+ },
"name": "Language School"
}
diff --git a/data/presets/amenity/music_school.json b/data/presets/education/music_school.json
similarity index 64%
rename from data/presets/amenity/music_school.json
rename to data/presets/education/music_school.json
index 83f9c309..94351702 100644
--- a/data/presets/amenity/music_school.json
+++ b/data/presets/education/music_school.json
@@ -8,14 +8,7 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
@@ -27,5 +20,13 @@
"tags": {
"amenity": "music_school"
},
+ "addTags": {
+ "amenity": "music_school",
+ "education": "music_school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "music_school"
+ },
"name": "Music School"
}
diff --git a/data/presets/amenity/prep_school.json b/data/presets/education/prep_school.json
similarity index 68%
rename from data/presets/amenity/prep_school.json
rename to data/presets/education/prep_school.json
index 8273bf82..0b0325e8 100644
--- a/data/presets/amenity/prep_school.json
+++ b/data/presets/education/prep_school.json
@@ -8,14 +8,7 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "{@templates/poi}"
],
"geometry": [
"point",
@@ -23,11 +16,11 @@
],
"terms": [
"academic",
- "ACT",
- "SAT",
+ "act",
"homework",
"math",
"reading",
+ "sat",
"test prep",
"tutoring",
"writing"
@@ -35,5 +28,13 @@
"tags": {
"amenity": "prep_school"
},
+ "addTags": {
+ "amenity": "prep_school",
+ "education": "prep_school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "prep_school"
+ },
"name": "Test Prep / Tutoring School"
}
diff --git a/data/presets/amenity/school.json b/data/presets/education/school.json
similarity index 67%
rename from data/presets/amenity/school.json
rename to data/presets/education/school.json
index fbb5800c..4cc20ac1 100644
--- a/data/presets/amenity/school.json
+++ b/data/presets/education/school.json
@@ -12,16 +12,17 @@
"building_area"
],
"moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"capacity",
"charge_fee",
- "email",
- "fax",
"fee",
+ "fhrs/id-GB",
"gnis/feature_id-US",
+ "ref/edubase-GB",
"internet_access",
"internet_access/ssid",
"level",
- "phone",
"polling_station",
"wheelchair"
],
@@ -32,11 +33,19 @@
"terms": [
"academy",
"elementary school",
- "middle school",
- "high school"
+ "high school",
+ "middle school"
],
"tags": {
"amenity": "school"
},
+ "addTags": {
+ "amenity": "school",
+ "education": "school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "school"
+ },
"name": "School Grounds"
}
diff --git a/data/presets/amenity/university.json b/data/presets/education/university.json
similarity index 50%
rename from data/presets/amenity/university.json
rename to data/presets/education/university.json
index 4b71ffdf..325e6aa3 100644
--- a/data/presets/amenity/university.json
+++ b/data/presets/education/university.json
@@ -1,10 +1,10 @@
{
"icon": "maki-college",
"fields": [
- "{amenity/college}"
+ "{education/college}"
],
"moreFields": [
- "{amenity/college}"
+ "{education/college}"
],
"geometry": [
"area",
@@ -13,11 +13,19 @@
"terms": [
"college",
"graduate school",
- "PhD program",
- "master's degree program"
+ "master's degree program",
+ "phd program"
],
"tags": {
"amenity": "university"
},
+ "addTags": {
+ "amenity": "university",
+ "education": "university"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "university"
+ },
"name": "University Grounds"
}
diff --git a/data/presets/emergency/_designated.json b/data/presets/emergency/_designated.json
index 25d6c2f1..7d101a0a 100644
--- a/data/presets/emergency/_designated.json
+++ b/data/presets/emergency/_designated.json
@@ -8,7 +8,7 @@
"tags": {
"emergency": "designated"
},
- "name": "Emergency Access Designated",
+ "name": "{emergency}",
"searchable": false,
"matchScore": 0.01
}
diff --git a/data/presets/emergency/_destination.json b/data/presets/emergency/_destination.json
index 03ffb4cd..0ef616d8 100644
--- a/data/presets/emergency/_destination.json
+++ b/data/presets/emergency/_destination.json
@@ -8,7 +8,7 @@
"tags": {
"emergency": "destination"
},
- "name": "Emergency Access Destination",
+ "name": "{emergency}",
"searchable": false,
"matchScore": 0.01
}
diff --git a/data/presets/emergency/_no.json b/data/presets/emergency/_no.json
index af39e107..4b9ceb1b 100644
--- a/data/presets/emergency/_no.json
+++ b/data/presets/emergency/_no.json
@@ -8,7 +8,7 @@
"tags": {
"emergency": "no"
},
- "name": "Emergency Access No",
+ "name": "{emergency}",
"searchable": false,
"matchScore": 0.01
}
diff --git a/data/presets/emergency/_official.json b/data/presets/emergency/_official.json
index a3c93993..f6d0ab95 100644
--- a/data/presets/emergency/_official.json
+++ b/data/presets/emergency/_official.json
@@ -8,7 +8,7 @@
"tags": {
"emergency": "official"
},
- "name": "Emergency Access Official",
+ "name": "{emergency}",
"searchable": false,
"matchScore": 0.01
}
diff --git a/data/presets/emergency/_private.json b/data/presets/emergency/_private.json
index b3738a75..a1b55bf0 100644
--- a/data/presets/emergency/_private.json
+++ b/data/presets/emergency/_private.json
@@ -8,7 +8,7 @@
"tags": {
"emergency": "private"
},
- "name": "Emergency Access Private",
+ "name": "{emergency}",
"searchable": false,
"matchScore": 0.01
}
diff --git a/data/presets/emergency/_yes.json b/data/presets/emergency/_yes.json
index b1267778..28bf5bb4 100644
--- a/data/presets/emergency/_yes.json
+++ b/data/presets/emergency/_yes.json
@@ -8,7 +8,7 @@
"tags": {
"emergency": "yes"
},
- "name": "Emergency Access Yes",
+ "name": "{emergency}",
"searchable": false,
"matchScore": 0.01
}
diff --git a/data/presets/emergency/ambulance_station.json b/data/presets/emergency/ambulance_station.json
index 5bcef868..6a8482f5 100644
--- a/data/presets/emergency/ambulance_station.json
+++ b/data/presets/emergency/ambulance_station.json
@@ -7,10 +7,8 @@
"address"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
- "phone",
"wheelchair"
],
"geometry": [
@@ -18,8 +16,8 @@
"area"
],
"terms": [
- "EMS",
- "EMT",
+ "ems",
+ "emt",
"rescue"
],
"tags": {
diff --git a/data/presets/emergency/assembly_point.json b/data/presets/emergency/assembly_point.json
index 228b4bd2..98ec6e36 100644
--- a/data/presets/emergency/assembly_point.json
+++ b/data/presets/emergency/assembly_point.json
@@ -14,9 +14,9 @@
"emergency": "assembly_point"
},
"terms": [
- "EAP",
- "muster point",
+ "eap",
"meeting point",
+ "muster point",
"staging area"
],
"name": "Emergency Assembly Point"
diff --git a/data/presets/emergency/defibrillator.json b/data/presets/emergency/defibrillator.json
index a3c3303a..0fb932bd 100644
--- a/data/presets/emergency/defibrillator.json
+++ b/data/presets/emergency/defibrillator.json
@@ -4,19 +4,19 @@
"indoor",
"ref",
"operator",
- "defibrillator/location"
+ "defibrillator/location",
+ "access_simple"
],
"moreFields": [
"level",
- "opening_hours",
- "access_simple"
+ "opening_hours"
],
"geometry": [
"point",
"vertex"
],
"terms": [
- "AED"
+ "aed"
],
"tags": {
"emergency": "defibrillator"
diff --git a/data/presets/emergency/disaster_response.json b/data/presets/emergency/disaster_response.json
new file mode 100644
index 00000000..247ec750
--- /dev/null
+++ b/data/presets/emergency/disaster_response.json
@@ -0,0 +1,28 @@
+{
+ "icon": "fas-helmet-safety",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes",
+ "address"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "civil defense",
+ "civil protection",
+ "disaster management",
+ "emergency management",
+ "ses"
+ ],
+ "tags": {
+ "emergency": "disaster_response"
+ },
+ "name": "Disaster Response Station"
+}
diff --git a/data/presets/emergency/fire_hydrant.json b/data/presets/emergency/fire_hydrant.json
index cb7f3c7c..541220f7 100644
--- a/data/presets/emergency/fire_hydrant.json
+++ b/data/presets/emergency/fire_hydrant.json
@@ -4,13 +4,13 @@
"ref",
"fire_hydrant/type",
"colour",
+ "fire_hydrant/position",
"water_source",
"couplings"
],
"moreFields": [
"fire_hydrant/diameter",
"fire_hydrant/pressure",
- "fire_hydrant/position",
"level",
"survey/date"
],
diff --git a/data/presets/emergency/fire_hydrant/pillar.json b/data/presets/emergency/fire_hydrant/pillar.json
new file mode 100644
index 00000000..54ac42fb
--- /dev/null
+++ b/data/presets/emergency/fire_hydrant/pillar.json
@@ -0,0 +1,16 @@
+{
+ "icon": "temaki-fire_hydrant",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "terms": [
+ "fire plug",
+ "pillar hydrant"
+ ],
+ "tags": {
+ "emergency": "fire_hydrant",
+ "fire_hydrant:type": "pillar"
+ },
+ "name": "Pillar Fire Hydrant"
+}
diff --git a/data/presets/emergency/fire_hydrant/underground.json b/data/presets/emergency/fire_hydrant/underground.json
new file mode 100644
index 00000000..72b88bda
--- /dev/null
+++ b/data/presets/emergency/fire_hydrant/underground.json
@@ -0,0 +1,17 @@
+{
+ "icon": "temaki-fire_hydrant_underground",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "terms": [
+ "fire plug",
+ "fire water well",
+ "underground hydrant"
+ ],
+ "tags": {
+ "emergency": "fire_hydrant",
+ "fire_hydrant:type": "underground"
+ },
+ "name": "Underground Fire Hydrant"
+}
diff --git a/data/presets/emergency/fire_service_inlet.json b/data/presets/emergency/fire_service_inlet.json
new file mode 100644
index 00000000..9cd6e356
--- /dev/null
+++ b/data/presets/emergency/fire_service_inlet.json
@@ -0,0 +1,35 @@
+{
+ "icon": "maki-water",
+ "fields": [
+ "fire_mains",
+ "fire_sprinkler",
+ "couplings"
+ ],
+ "moreFields": [
+ "level",
+ "survey/date",
+ "fire_service_inlet",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "terms": [
+ "building hydrant inlet",
+ "charged riser",
+ "dry riser inlet",
+ "dry standpipe",
+ "fdc",
+ "fire service inlet",
+ "fire sprinkler inlet",
+ "riser inlet",
+ "standpipe",
+ "wet riser inlet",
+ "wet standpipe"
+ ],
+ "tags": {
+ "emergency": "fire_service_inlet"
+ },
+ "name": "Fire Department Connection"
+}
diff --git a/data/presets/emergency/life_ring.json b/data/presets/emergency/life_ring.json
index 80bdaaa7..92e18439 100644
--- a/data/presets/emergency/life_ring.json
+++ b/data/presets/emergency/life_ring.json
@@ -9,9 +9,10 @@
"vertex"
],
"terms": [
- "life buoy",
- "kisby ring",
"kisbie ring",
+ "kisby ring",
+ "life buoy",
+ "lifering",
"perry buoy"
],
"tags": {
diff --git a/data/presets/emergency/lifeboat_station.json b/data/presets/emergency/lifeboat_station.json
index a978b205..025777d7 100644
--- a/data/presets/emergency/lifeboat_station.json
+++ b/data/presets/emergency/lifeboat_station.json
@@ -10,8 +10,7 @@
"website"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
"wheelchair"
],
@@ -20,17 +19,17 @@
"area"
],
"terms": [
+ "boat rescue",
+ "life saving",
"lifeboat",
"rescue",
- "search and rescue",
- "life saving",
- "boat rescue"
+ "search and rescue"
],
"tags": {
- "emergency": "lifeboat_station"
+ "emergency": "water_rescue"
},
"addTags": {
- "emergency": "lifeboat_station",
+ "emergency": "water_rescue",
"seamark:type": "rescue_station"
},
"name": "Lifeboat Station"
diff --git a/data/presets/emergency/lifeguard.json b/data/presets/emergency/lifeguard.json
index 4e129c72..17e0d693 100644
--- a/data/presets/emergency/lifeguard.json
+++ b/data/presets/emergency/lifeguard.json
@@ -1,20 +1,18 @@
{
"icon": "fas-life-ring",
"fields": [
+ "lifeguard",
"ref",
"operator",
"building_area_yes",
"opening_hours"
],
- "moreFields": [
- "opening_hours/covid19"
- ],
"geometry": [
"point",
"area"
],
"terms": [
- "CPR",
+ "cpr",
"rescue"
],
"tags": {
diff --git a/data/presets/emergency/mountain_rescue.json b/data/presets/emergency/mountain_rescue.json
index 5fee6d58..5650e5d2 100644
--- a/data/presets/emergency/mountain_rescue.json
+++ b/data/presets/emergency/mountain_rescue.json
@@ -5,13 +5,12 @@
"address",
"operator",
"building_area_yes",
- "email",
+ "phone",
"website"
],
"moreFields": [
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
- "phone",
"wheelchair"
],
"geometry": [
@@ -19,8 +18,8 @@
"area"
],
"terms": [
- "EMS",
- "EMT",
+ "ems",
+ "emt",
"rescue"
],
"tags": {
diff --git a/data/presets/emergency/phone.json b/data/presets/emergency/phone.json
index efea67f5..fca81f24 100644
--- a/data/presets/emergency/phone.json
+++ b/data/presets/emergency/phone.json
@@ -17,5 +17,10 @@
"tags": {
"emergency": "phone"
},
+ "terms": [
+ "call point",
+ "help",
+ "sos"
+ ],
"name": "Emergency Phone"
}
diff --git a/data/presets/emergency/water_reservoir.json b/data/presets/emergency/water_reservoir.json
index 3cc0c4a7..fec4e640 100644
--- a/data/presets/emergency/water_reservoir.json
+++ b/data/presets/emergency/water_reservoir.json
@@ -16,9 +16,9 @@
],
"terms": [
"basin",
- "reservoir",
"extinguishing",
- "firefighting"
+ "firefighting",
+ "reservoir"
],
"tags": {
"emergency": "water_tank",
diff --git a/data/presets/emergency/water_reservoir_covered.json b/data/presets/emergency/water_reservoir_covered.json
index 55ba8ea9..c30c2214 100644
--- a/data/presets/emergency/water_reservoir_covered.json
+++ b/data/presets/emergency/water_reservoir_covered.json
@@ -17,9 +17,9 @@
],
"terms": [
"cistern",
- "reservoir",
"extinguishing",
- "firefighting"
+ "firefighting",
+ "reservoir"
],
"tags": {
"emergency": "water_tank",
diff --git a/data/presets/emergency/water_tank.json b/data/presets/emergency/water_tank.json
index 7544b3a1..2f9ca46f 100644
--- a/data/presets/emergency/water_tank.json
+++ b/data/presets/emergency/water_tank.json
@@ -19,10 +19,10 @@
"area"
],
"terms": [
- "water tank",
"cistern",
"extinguishing",
- "firefighting"
+ "firefighting",
+ "water tank"
],
"tags": {
"emergency": "water_tank",
diff --git a/data/presets/entrance.json b/data/presets/entrance.json
index 69420970..736ec0f1 100644
--- a/data/presets/entrance.json
+++ b/data/presets/entrance.json
@@ -16,9 +16,9 @@
"entrance": "*"
},
"terms": [
+ "door",
"entrance",
- "exit",
- "door"
+ "exit"
],
"name": "Entrance / Exit"
}
diff --git a/data/presets/entrance/emergency.json b/data/presets/entrance/emergency.json
index 1012f5b2..e85f4c19 100644
--- a/data/presets/entrance/emergency.json
+++ b/data/presets/entrance/emergency.json
@@ -14,8 +14,8 @@
"entrance": "emergency"
},
"terms": [
- "fire exit",
- "door"
+ "door",
+ "fire exit"
],
"matchScore": 0.8,
"name": "Emergency Exit"
diff --git a/data/presets/entrance/shop.json b/data/presets/entrance/shop.json
new file mode 100644
index 00000000..cd5f2fc8
--- /dev/null
+++ b/data/presets/entrance/shop.json
@@ -0,0 +1,13 @@
+{
+ "icon": "maki-entrance-alt1",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "entrance": "shop"
+ },
+ "terms": [
+ "door"
+ ],
+ "name": "Shop Entrance"
+}
diff --git a/data/presets/entrance/staircase.json b/data/presets/entrance/staircase.json
new file mode 100644
index 00000000..336677ed
--- /dev/null
+++ b/data/presets/entrance/staircase.json
@@ -0,0 +1,16 @@
+{
+ "icon": "maki-entrance-alt1",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "entrance": "staircase"
+ },
+ "terms": [
+ "door",
+ "stairs",
+ "stairway",
+ "stairwell"
+ ],
+ "name": "Staircase Entrance"
+}
diff --git a/data/presets/ford.json b/data/presets/ford.json
index 76926a19..86d11ca6 100644
--- a/data/presets/ford.json
+++ b/data/presets/ford.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-pedestrian",
+ "icon": "roentgen-ford",
"fields": [
"name",
"depth",
diff --git a/data/presets/golf/clubhouse.json b/data/presets/golf/clubhouse.json
index eb968537..a53235f2 100644
--- a/data/presets/golf/clubhouse.json
+++ b/data/presets/golf/clubhouse.json
@@ -8,16 +8,13 @@
"access_simple"
],
"moreFields": [
+ "{@templates/internet_access}",
"air_conditioning",
"fee",
"payment_multi_fee",
"charge_fee",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
"opening_hours",
- "opening_hours/covid19",
"phone",
"wheelchair"
],
diff --git a/data/presets/golf/green.json b/data/presets/golf/green.json
index 053c05e9..957fb8a8 100644
--- a/data/presets/golf/green.json
+++ b/data/presets/golf/green.json
@@ -10,7 +10,7 @@
"golf": "green"
},
"terms": [
- "Green"
+ "green"
],
"name": "Putting Green"
}
diff --git a/data/presets/golf/lateral_water_hazard.json b/data/presets/golf/lateral_water_hazard.json
index 61501644..365eb639 100644
--- a/data/presets/golf/lateral_water_hazard.json
+++ b/data/presets/golf/lateral_water_hazard.json
@@ -1,6 +1,5 @@
{
"icon": "maki-golf",
- "fields": [],
"geometry": [
"area"
],
diff --git a/data/presets/golf/path.json b/data/presets/golf/path.json
index a7361d2e..b3994e41 100644
--- a/data/presets/golf/path.json
+++ b/data/presets/golf/path.json
@@ -8,6 +8,9 @@
"access",
"incline"
],
+ "moreFields": [
+ "bridge/ref"
+ ],
"geometry": [
"line"
],
diff --git a/data/presets/golf/tee.json b/data/presets/golf/tee.json
index c88a8ba6..0eb96a11 100644
--- a/data/presets/golf/tee.json
+++ b/data/presets/golf/tee.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-golf",
+ "icon": "roentgen-golf_tee",
"fields": [
"tee",
"surface"
diff --git a/data/presets/golf/water_hazard.json b/data/presets/golf/water_hazard.json
index c607a695..2051a344 100644
--- a/data/presets/golf/water_hazard.json
+++ b/data/presets/golf/water_hazard.json
@@ -1,6 +1,5 @@
{
"icon": "maki-golf",
- "fields": [],
"geometry": [
"area"
],
diff --git a/data/presets/healthcare.json b/data/presets/healthcare.json
index 0ffa0e7f..3d1b157b 100644
--- a/data/presets/healthcare.json
+++ b/data/presets/healthcare.json
@@ -11,16 +11,14 @@
"website"
],
"moreFields": [
+ "{@templates/contact}",
"branch_brand",
"brand",
"building/levels_building",
- "email",
- "fax",
"gnis/feature_id-US",
"height_building",
"level",
"opening_hours",
- "opening_hours/covid19",
"payment_multi",
"wheelchair"
],
@@ -33,8 +31,8 @@
},
"terms": [
"clinic",
- "doctor",
"disease",
+ "doctor",
"health",
"institution",
"sick",
diff --git a/data/presets/healthcare/alternative.json b/data/presets/healthcare/alternative.json
index 5325b503..73904823 100644
--- a/data/presets/healthcare/alternative.json
+++ b/data/presets/healthcare/alternative.json
@@ -1,26 +1,18 @@
{
- "icon": "maki-hospital",
+ "icon": "fas-spa",
"geometry": [
"point",
"area"
],
"terms": [
- "acupuncture",
"anthroposophical",
"applied kinesiology",
"aromatherapy",
- "ayurveda",
"herbalism",
- "homeopathy",
"hydrotherapy",
"hypnosis",
- "naturopathy",
- "osteopathy",
"reflexology",
- "reiki",
- "shiatsu",
"traditional",
- "tuina",
"unani"
],
"tags": {
diff --git a/data/presets/healthcare/alternative/acupuncture.json b/data/presets/healthcare/alternative/acupuncture.json
new file mode 100644
index 00000000..1732530a
--- /dev/null
+++ b/data/presets/healthcare/alternative/acupuncture.json
@@ -0,0 +1,15 @@
+{
+ "icon": "fas-spa",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "alternative",
+ "healthcare:speciality": "acupuncture"
+ },
+ "name": "Acupuncture Practitioner",
+ "aliases": [
+ "Acupuncturist"
+ ]
+}
diff --git a/data/presets/healthcare/alternative/ayurveda.json b/data/presets/healthcare/alternative/ayurveda.json
new file mode 100644
index 00000000..c5330ebb
--- /dev/null
+++ b/data/presets/healthcare/alternative/ayurveda.json
@@ -0,0 +1,15 @@
+{
+ "icon": "temaki-hinduism",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "traditional indian medicine"
+ ],
+ "tags": {
+ "healthcare": "alternative",
+ "healthcare:speciality": "ayurveda"
+ },
+ "name": "Ayurveda Practitioner"
+}
diff --git a/data/presets/healthcare/alternative/chiropractic.json b/data/presets/healthcare/alternative/chiropractic.json
index 0503409d..52a39688 100644
--- a/data/presets/healthcare/alternative/chiropractic.json
+++ b/data/presets/healthcare/alternative/chiropractic.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-hospital",
+ "icon": "fas-spa",
"geometry": [
"point",
"area"
diff --git a/data/presets/healthcare/alternative/homeopathy.json b/data/presets/healthcare/alternative/homeopathy.json
new file mode 100644
index 00000000..dd4f1b0b
--- /dev/null
+++ b/data/presets/healthcare/alternative/homeopathy.json
@@ -0,0 +1,15 @@
+{
+ "icon": "fas-spa",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "alternative",
+ "healthcare:speciality": "homeopathy"
+ },
+ "name": "Homeopath",
+ "aliases": [
+ "Homeopathy Practitioner"
+ ]
+}
diff --git a/data/presets/healthcare/alternative/naturopathy.json b/data/presets/healthcare/alternative/naturopathy.json
new file mode 100644
index 00000000..b87cdbda
--- /dev/null
+++ b/data/presets/healthcare/alternative/naturopathy.json
@@ -0,0 +1,15 @@
+{
+ "icon": "fas-spa",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "alternative",
+ "healthcare:speciality": "naturopathy"
+ },
+ "name": "Naturopath",
+ "aliases": [
+ "Naturopathy Practitioner"
+ ]
+}
diff --git a/data/presets/healthcare/alternative/osteopathy.json b/data/presets/healthcare/alternative/osteopathy.json
new file mode 100644
index 00000000..7e7acdbc
--- /dev/null
+++ b/data/presets/healthcare/alternative/osteopathy.json
@@ -0,0 +1,15 @@
+{
+ "icon": "fas-spa",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "alternative",
+ "healthcare:speciality": "osteopathy"
+ },
+ "name": "Osteopath",
+ "aliases": [
+ "Osteopathy Practitioner"
+ ]
+}
diff --git a/data/presets/healthcare/alternative/traditional_chinese_medicine.json b/data/presets/healthcare/alternative/traditional_chinese_medicine.json
new file mode 100644
index 00000000..aa54a9a4
--- /dev/null
+++ b/data/presets/healthcare/alternative/traditional_chinese_medicine.json
@@ -0,0 +1,20 @@
+{
+ "icon": "fas-spa",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "die da",
+ "dit da",
+ "reiki",
+ "shiatsu",
+ "tcm",
+ "tui na"
+ ],
+ "tags": {
+ "healthcare": "alternative",
+ "healthcare:speciality": "traditional_chinese_medicine"
+ },
+ "name": "Traditional Chinese Medicine Practitioner"
+}
diff --git a/data/presets/healthcare/birthing_center.json b/data/presets/healthcare/birthing_center.json
index be818298..165e13bd 100644
--- a/data/presets/healthcare/birthing_center.json
+++ b/data/presets/healthcare/birthing_center.json
@@ -8,8 +8,8 @@
"baby",
"childbirth",
"delivery",
- "labour",
"labor",
+ "labour",
"midwive",
"pregnancy",
"pregnant"
diff --git a/data/presets/healthcare/blood_donation.json b/data/presets/healthcare/blood_donation.json
index b7bbe2f7..516a1a54 100644
--- a/data/presets/healthcare/blood_donation.json
+++ b/data/presets/healthcare/blood_donation.json
@@ -9,10 +9,10 @@
"area"
],
"terms": [
+ "apheresis",
"blood bank",
"blood donation",
"blood transfusion",
- "apheresis",
"plasmapheresis",
"plateletpheresis",
"stem cell donation"
diff --git a/data/presets/healthcare/hospice.json b/data/presets/healthcare/hospice.json
index c55a6ab4..7eb1bfc6 100644
--- a/data/presets/healthcare/hospice.json
+++ b/data/presets/healthcare/hospice.json
@@ -5,8 +5,8 @@
"area"
],
"terms": [
- "terminal",
- "illness"
+ "illness",
+ "terminal"
],
"tags": {
"healthcare": "hospice"
diff --git a/data/presets/healthcare/laboratory.json b/data/presets/healthcare/laboratory.json
index 24003ff4..0eb98e2e 100644
--- a/data/presets/healthcare/laboratory.json
+++ b/data/presets/healthcare/laboratory.json
@@ -11,17 +11,16 @@
"opening_hours"
],
"moreFields": [
- "{healthcare}",
- "opening_hours/covid19"
+ "{healthcare}"
],
"geometry": [
"point",
"area"
],
"terms": [
- "medical_laboratory",
+ "blood_check",
"medical_lab",
- "blood_check"
+ "medical_laboratory"
],
"tags": {
"healthcare": "laboratory"
diff --git a/data/presets/healthcare/midwife.json b/data/presets/healthcare/midwife.json
index f9074c15..da1a1c9a 100644
--- a/data/presets/healthcare/midwife.json
+++ b/data/presets/healthcare/midwife.json
@@ -8,8 +8,8 @@
"baby",
"childbirth",
"delivery",
- "labour",
"labor",
+ "labour",
"pregnancy"
],
"tags": {
diff --git a/data/presets/healthcare/podiatrist.json b/data/presets/healthcare/podiatrist.json
index ebd282fc..cb6ab60d 100644
--- a/data/presets/healthcare/podiatrist.json
+++ b/data/presets/healthcare/podiatrist.json
@@ -5,8 +5,8 @@
"area"
],
"terms": [
- "foot",
"feet",
+ "foot",
"nails"
],
"tags": {
diff --git a/data/presets/healthcare/psychotherapist.json b/data/presets/healthcare/psychotherapist.json
index ff31495a..84794d71 100644
--- a/data/presets/healthcare/psychotherapist.json
+++ b/data/presets/healthcare/psychotherapist.json
@@ -10,6 +10,8 @@
"depression",
"mental health",
"mind",
+ "psychology",
+ "psychotherapy",
"suicide",
"therapist",
"therapy"
@@ -17,5 +19,8 @@
"tags": {
"healthcare": "psychotherapist"
},
- "name": "Psychotherapist"
+ "name": "Psychotherapist",
+ "aliases": [
+ "Clinical Psychologist"
+ ]
}
diff --git a/data/presets/healthcare/sample_collection.json b/data/presets/healthcare/sample_collection.json
index 79f0f7e0..2f2d19c0 100644
--- a/data/presets/healthcare/sample_collection.json
+++ b/data/presets/healthcare/sample_collection.json
@@ -11,8 +11,7 @@
"opening_hours"
],
"moreFields": [
- "{healthcare}",
- "opening_hours/covid19"
+ "{healthcare}"
],
"geometry": [
"point",
@@ -20,6 +19,8 @@
],
"terms": [
"blood sample collection",
+ "laboratory",
+ "medical",
"urine sample collection"
],
"tags": {
diff --git a/data/presets/highway/_crossing.json b/data/presets/highway/_crossing.json
deleted file mode 100644
index 8be3c3c5..00000000
--- a/data/presets/highway/_crossing.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "fields": [
- "crossing"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing"
- },
- "searchable": false,
- "matchScore": 0.95,
- "name": "Crossing"
-}
diff --git a/data/presets/highway/_traffic_sign.json b/data/presets/highway/_traffic_sign.json
new file mode 100644
index 00000000..38cc5c77
--- /dev/null
+++ b/data/presets/highway/_traffic_sign.json
@@ -0,0 +1,15 @@
+{
+ "icon": "fas-directions",
+ "fields": [
+ "{traffic_sign}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "highway": "traffic_sign"
+ },
+ "searchable": false,
+ "name": "{traffic_sign}"
+}
diff --git a/data/presets/highway/bridleway.json b/data/presets/highway/bridleway.json
index 7bd84b6d..d24cf38c 100644
--- a/data/presets/highway/bridleway.json
+++ b/data/presets/highway/bridleway.json
@@ -9,6 +9,7 @@
"horse_scale"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"dog",
"lit",
diff --git a/data/presets/highway/bus_guideway.json b/data/presets/highway/bus_guideway.json
index b65458e7..4f3f2a32 100644
--- a/data/presets/highway/bus_guideway.json
+++ b/data/presets/highway/bus_guideway.json
@@ -7,6 +7,7 @@
"structure"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"trolley_wire",
"width"
@@ -23,8 +24,8 @@
"bus": "designated"
},
"terms": [
- "busway",
- "bus track"
+ "bus track",
+ "busway"
],
"name": "Bus Guideway"
}
diff --git a/data/presets/highway/busway.json b/data/presets/highway/busway.json
index e8b62bb9..4a899535 100644
--- a/data/presets/highway/busway.json
+++ b/data/presets/highway/busway.json
@@ -2,12 +2,23 @@
"icon": "temaki-bus",
"fields": [
"name",
- "operator",
"oneway",
+ "maxspeed",
+ "lanes",
+ "surface",
+ "operator",
"structure",
"covered"
],
"moreFields": [
+ "bridge/ref",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed/advisory",
+ "maxweight_bridge",
+ "maxwidth",
"trolley_wire"
],
"geometry": [
diff --git a/data/presets/highway/construction.json b/data/presets/highway/construction.json
index 9a6967bd..97a85df9 100644
--- a/data/presets/highway/construction.json
+++ b/data/presets/highway/construction.json
@@ -10,6 +10,9 @@
"structure",
"note"
],
+ "moreFields": [
+ "bridge/ref"
+ ],
"geometry": [
"line"
],
diff --git a/data/presets/highway/crossing.json b/data/presets/highway/crossing.json
new file mode 100644
index 00000000..64dbc548
--- /dev/null
+++ b/data/presets/highway/crossing.json
@@ -0,0 +1,24 @@
+{
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
+ ],
+ "moreFields": [
+ "kerb",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "crossing"
+ },
+ "terms": [
+ "crosswalk",
+ "foot path crossing",
+ "pedestrian crossing"
+ ],
+ "name": "Crossing"
+}
diff --git a/data/presets/highway/crossing/README.md b/data/presets/highway/crossing/README.md
new file mode 100644
index 00000000..7a04daf1
--- /dev/null
+++ b/data/presets/highway/crossing/README.md
@@ -0,0 +1,25 @@
+# About the crossing presets
+
+## General
+
+These presets use fields `@templates` to make sure all have a similar structure.
+Some presets like `traffic_signals` have additional fields and use a different field order.
+Try to keep the file structure very similar so they can be easily compared.
+
+## nodes `highway=crossing + crossing=*`
+
+Crossing nodes are handled by `highway/crossing.json` and `highway/crossing/*.json` (as geometry type `vertex`).
+
+Crossing nodes and crossing ways have a big overlap.
+However, there are a few tags that should _only_ be expected on the crossing node. When crossing ways are present, this also means there are separate ways attached with additional nodes that may hold these additional tags.
+
+There are places in OSM that follow a different tagging style where only crossing ways are used (without the vertex nodes). Those regions might use other conventions on where to place each tag.
+
+## ways `highway=footway|cycleway|path + *=crossing + crossing=*`
+
+Crossing way presets are duplicated per highway class:
+- `/highway/footway/crossing.json` + `/highway/footway/crossing/*.json`
+- `/highway/cycleway/crossing.json` + `/highway/cycleway/crossing/*.json`
+- `/highway/path/crossing.json` + `/highway/path/crossing/*.json`
+
+The crossing presets for `/cycleway*` and `/path*` are considered to be relevant for bike traffic and have additional fields that target bike vs. foot traffic.
diff --git a/data/presets/highway/crossing/_informal.json b/data/presets/highway/crossing/_informal.json
new file mode 100644
index 00000000..91cf9dc1
--- /dev/null
+++ b/data/presets/highway/crossing/_informal.json
@@ -0,0 +1,23 @@
+{
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "crossing": "informal"
+ },
+ "terms": [
+ "informal crosswalk",
+ "informal foot path crossing",
+ "informal pedestrian crossing"
+ ],
+ "reference": {
+ "key": "crossing",
+ "value": "informal"
+ },
+ "name": "Informal Crossing",
+ "searchable": false
+}
diff --git a/data/presets/highway/crossing/_marked.json b/data/presets/highway/crossing/_marked.json
index 9ec22411..fda27416 100644
--- a/data/presets/highway/crossing/_marked.json
+++ b/data/presets/highway/crossing/_marked.json
@@ -2,12 +2,12 @@
"icon": "temaki-pedestrian_crosswalk",
"fields": [
"crossing",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised"
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
],
"moreFields": [
+ "kerb",
"flashing_lights"
],
"geometry": [
@@ -17,15 +17,15 @@
"highway": "crossing",
"crossing": "marked"
},
+ "addTags": {
+ "highway": "crossing",
+ "crossing": "marked",
+ "crossing:markings": "yes"
+ },
"reference": {
"key": "crossing",
"value": "marked"
},
- "terms": [
- "zebra crossing",
- "marked crossing",
- "crosswalk"
- ],
- "name": "Marked Crosswalk",
+ "name": "{highway/crossing/uncontrolled}",
"searchable": false
}
diff --git a/data/presets/highway/crossing/_zebra.json b/data/presets/highway/crossing/_zebra.json
index 87de5a7e..ed71daa0 100644
--- a/data/presets/highway/crossing/_zebra.json
+++ b/data/presets/highway/crossing/_zebra.json
@@ -2,10 +2,13 @@
"icon": "temaki-pedestrian_crosswalk",
"fields": [
"crossing",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised"
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
+ ],
+ "moreFields": [
+ "kerb",
+ "flashing_lights"
],
"geometry": [
"vertex"
@@ -18,6 +21,6 @@
"key": "crossing",
"value": "zebra"
},
- "name": "Marked Crosswalk",
+ "name": "{highway/crossing/uncontrolled}",
"searchable": false
}
diff --git a/data/presets/highway/crossing/traffic_signals.json b/data/presets/highway/crossing/traffic_signals.json
index 428406f2..a241c4ff 100644
--- a/data/presets/highway/crossing/traffic_signals.json
+++ b/data/presets/highway/crossing/traffic_signals.json
@@ -2,18 +2,15 @@
"icon": "temaki-railway_signals",
"fields": [
"crossing",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "button_operated",
- "traffic_signals/sound",
- "traffic_signals/vibration"
+ "{@templates/crossing/traffic_signal}",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
],
"moreFields": [
- "traffic_signals/arrow",
- "traffic_signals/countdown",
- "traffic_signals/minimap"
+ "{@templates/crossing/traffic_signal_more}",
+ "kerb",
+ "flashing_lights"
],
"geometry": [
"vertex"
@@ -28,10 +25,10 @@
},
"name": "Crossing With Pedestrian Signals",
"terms": [
- "pedestrian traffic lights",
- "pedestrian traffic signals",
- "pedestrian crossing (lights)",
"bicycle crossing (lights)",
- "crosswalk (lights)"
+ "crosswalk (lights)",
+ "pedestrian crossing (lights)",
+ "pedestrian traffic lights",
+ "pedestrian traffic signals"
]
}
diff --git a/data/presets/highway/crossing/uncontrolled.json b/data/presets/highway/crossing/uncontrolled.json
index 1fb94225..0dc337ae 100644
--- a/data/presets/highway/crossing/uncontrolled.json
+++ b/data/presets/highway/crossing/uncontrolled.json
@@ -2,10 +2,13 @@
"icon": "temaki-pedestrian_crosswalk",
"fields": [
"crossing",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised"
+ "{@templates/crossing/markings_yes}",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
+ ],
+ "moreFields": [
+ "kerb",
+ "flashing_lights"
],
"geometry": [
"vertex"
@@ -18,5 +21,12 @@
"key": "crossing",
"value": "uncontrolled"
},
- "name": "Marked Crosswalk"
+ "terms": [
+ "crosswalk",
+ "marked crosswalk",
+ "marked foot path crossing",
+ "marked pedestrian crosswalk",
+ "zebra crossing"
+ ],
+ "name": "Marked Crossing"
}
diff --git a/data/presets/highway/crossing/unmarked.json b/data/presets/highway/crossing/unmarked.json
index 0640f22f..e8499ff6 100644
--- a/data/presets/highway/crossing/unmarked.json
+++ b/data/presets/highway/crossing/unmarked.json
@@ -2,11 +2,11 @@
"icon": "temaki-pedestrian",
"fields": [
"crossing",
- "tactile_paving",
- "crossing/island",
- "crossing_raised"
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
],
"moreFields": [
+ "kerb",
"flashing_lights"
],
"geometry": [
@@ -16,13 +16,18 @@
"highway": "crossing",
"crossing": "unmarked"
},
+ "addTags": {
+ "highway": "crossing",
+ "crossing": "unmarked",
+ "crossing:markings": "no"
+ },
"reference": {
"key": "crossing",
"value": "unmarked"
},
"terms": [
- "unmarked foot path crossing",
"unmarked crosswalk",
+ "unmarked foot path crossing",
"unmarked pedestrian crossing"
],
"name": "Unmarked Crossing"
diff --git a/data/presets/highway/cycleway.json b/data/presets/highway/cycleway.json
index 7ee14da6..a800ba1f 100644
--- a/data/presets/highway/cycleway.json
+++ b/data/presets/highway/cycleway.json
@@ -11,6 +11,7 @@
"incline"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"dog",
"lit",
diff --git a/data/presets/highway/cycleway/_crossing.json b/data/presets/highway/cycleway/_crossing.json
index d2aab3cc..a15ee458 100644
--- a/data/presets/highway/cycleway/_crossing.json
+++ b/data/presets/highway/cycleway/_crossing.json
@@ -2,11 +2,13 @@
"icon": "temaki-cyclist_crosswalk",
"fields": [
"crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "access"
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
],
"geometry": [
"line"
diff --git a/data/presets/highway/cycleway/bicycle_foot.json b/data/presets/highway/cycleway/bicycle_foot.json
index e7458bb6..3608ca79 100644
--- a/data/presets/highway/cycleway/bicycle_foot.json
+++ b/data/presets/highway/cycleway/bicycle_foot.json
@@ -4,7 +4,9 @@
"fr",
"lt",
"pl",
- "de"
+ "de",
+ "il",
+ "ps"
]
},
"icon": "temaki-pedestrian_and_cyclist",
@@ -31,6 +33,12 @@
"foot": "designated",
"bicycle": "designated"
},
+ "removeTags": {
+ "highway": "cycleway",
+ "foot": "designated",
+ "bicycle": "designated",
+ "segregated": "*"
+ },
"terms": [
"bicycle and foot path",
"bike and pedestrian path",
@@ -38,10 +46,10 @@
"greenway",
"mixed-use trail",
"multi-use trail",
+ "rail trail",
"segregated trail",
"shared path",
- "shared use path",
- "rail trail"
+ "shared use path"
],
"matchScore": 0.9,
"name": "Cycle & Foot Path"
diff --git a/data/presets/highway/cycleway/crossing/_marked.json b/data/presets/highway/cycleway/crossing/_marked.json
index ba1ecf02..0ebea5fe 100644
--- a/data/presets/highway/cycleway/crossing/_marked.json
+++ b/data/presets/highway/cycleway/crossing/_marked.json
@@ -2,12 +2,13 @@
"icon": "temaki-cyclist_crosswalk",
"fields": [
"crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
],
"geometry": [
"line"
@@ -17,11 +18,17 @@
"cycleway": "crossing",
"crossing": "marked"
},
+ "addTags": {
+ "highway": "cycleway",
+ "cycleway": "crossing",
+ "crossing": "marked",
+ "crossing:markings": "yes"
+ },
"reference": {
"key": "crossing",
"value": "marked"
},
"matchScore": 0.95,
- "name": "Marked Cycle Crossing",
+ "name": "{highway/cycleway/crossing/uncontrolled}",
"searchable": false
}
diff --git a/data/presets/highway/cycleway/crossing/bicycle_foot.json b/data/presets/highway/cycleway/crossing/bicycle_foot.json
index dcb3da15..49a3c2eb 100644
--- a/data/presets/highway/cycleway/crossing/bicycle_foot.json
+++ b/data/presets/highway/cycleway/crossing/bicycle_foot.json
@@ -3,19 +3,22 @@
"exclude": [
"fr",
"lt",
- "pl"
+ "pl",
+ "de",
+ "il",
+ "ps"
]
},
"icon": "temaki-ped_cyclist_crosswalk",
"fields": [
"crossing",
- "surface",
- "smoothness",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
],
"geometry": [
"line"
diff --git a/data/presets/highway/cycleway/crossing/traffic_signals.json b/data/presets/highway/cycleway/crossing/traffic_signals.json
index 566bb1de..f40fd257 100644
--- a/data/presets/highway/cycleway/crossing/traffic_signals.json
+++ b/data/presets/highway/cycleway/crossing/traffic_signals.json
@@ -1,16 +1,16 @@
{
"icon": "fas-biking",
"fields": [
- "oneway",
"crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing_raised",
- "button_operated",
- "traffic_signals/sound",
- "traffic_signals/vibration",
- "access"
+ "{@templates/crossing/traffic_signal}",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/traffic_signal_more}",
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
],
"geometry": [
"line"
@@ -25,10 +25,10 @@
"value": "traffic_signals"
},
"terms": [
- "cycle path crossing",
- "cycleway crossing",
"bicycle crossing",
- "bike crossing"
+ "bike crossing",
+ "cycle path crossing",
+ "cycleway crossing"
],
"matchScore": 0.95,
"name": "Cycle Crossing With Traffic Signals"
diff --git a/data/presets/highway/cycleway/crossing/uncontrolled.json b/data/presets/highway/cycleway/crossing/uncontrolled.json
index e65766f8..2477ba7b 100644
--- a/data/presets/highway/cycleway/crossing/uncontrolled.json
+++ b/data/presets/highway/cycleway/crossing/uncontrolled.json
@@ -1,14 +1,14 @@
{
"icon": "temaki-cyclist_crosswalk",
"fields": [
- "oneway",
"crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
+ "{@templates/crossing/defaults}",
+ "{@templates/crossing/markings_yes}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
],
"geometry": [
"line"
@@ -23,11 +23,11 @@
"value": "uncontrolled"
},
"terms": [
+ "bicycle crossing",
+ "bike crossing",
"cycle crosswalk",
"cycle path crossing",
- "cycleway crossing",
- "bicycle crossing",
- "bike crossing"
+ "cycleway crossing"
],
"matchScore": 0.95,
"name": "Marked Cycle Crossing"
diff --git a/data/presets/highway/cycleway/crossing/unmarked.json b/data/presets/highway/cycleway/crossing/unmarked.json
index d3a3223c..a5151247 100644
--- a/data/presets/highway/cycleway/crossing/unmarked.json
+++ b/data/presets/highway/cycleway/crossing/unmarked.json
@@ -2,11 +2,12 @@
"icon": "fas-biking",
"fields": [
"crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing_raised",
- "access"
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
],
"geometry": [
"line"
@@ -16,15 +17,21 @@
"cycleway": "crossing",
"crossing": "unmarked"
},
+ "addTags": {
+ "highway": "cycleway",
+ "cycleway": "crossing",
+ "crossing": "unmarked",
+ "crossing:markings": "no"
+ },
"reference": {
"key": "crossing",
"value": "unmarked"
},
"terms": [
- "cycle path crossing",
- "cycleway crossing",
"bicycle crossing",
- "bike crossing"
+ "bike crossing",
+ "cycle path crossing",
+ "cycleway crossing"
],
"matchScore": 0.95,
"name": "Unmarked Cycle Crossing"
diff --git a/data/presets/highway/cycleway/traffic_island.json b/data/presets/highway/cycleway/traffic_island.json
new file mode 100644
index 00000000..e213098f
--- /dev/null
+++ b/data/presets/highway/cycleway/traffic_island.json
@@ -0,0 +1,23 @@
+{
+ "icon": "fas-biking",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "cycleway": "traffic_island"
+ },
+ "reference": {
+ "key": "cycleway",
+ "value": "traffic_island"
+ },
+ "terms": [
+ "crossing island"
+ ],
+ "aliases": [
+ "Crosswalk Island",
+ "Traffic Island",
+ "Pedestrian Island"
+ ],
+ "name": "Cycle Refuge Island"
+}
diff --git a/data/presets/highway/cycleway/traffic_island_shared.json b/data/presets/highway/cycleway/traffic_island_shared.json
new file mode 100644
index 00000000..fb9dedc3
--- /dev/null
+++ b/data/presets/highway/cycleway/traffic_island_shared.json
@@ -0,0 +1,35 @@
+{
+ "locationSet": {
+ "exclude": [
+ "fr",
+ "lt",
+ "pl",
+ "de",
+ "il",
+ "ps"
+ ]
+ },
+ "icon": "temaki-pedestrian_and_cyclist",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "cycleway": "traffic_island",
+ "foot": "designated",
+ "bicycle": "designated"
+ },
+ "reference": {
+ "key": "cycleway",
+ "value": "traffic_island"
+ },
+ "terms": [
+ "crossing island"
+ ],
+ "aliases": [
+ "Crosswalk Island",
+ "Traffic Island",
+ "Pedestrian Island"
+ ],
+ "name": "Cycle & Foot Refuge Island"
+}
diff --git a/data/presets/highway/cyclist_waiting_aid.json b/data/presets/highway/cyclist_waiting_aid.json
new file mode 100644
index 00000000..c3451728
--- /dev/null
+++ b/data/presets/highway/cyclist_waiting_aid.json
@@ -0,0 +1,31 @@
+{
+ "name": "Cyclist Waiting Aid",
+ "icon": "temaki-guard_rail",
+ "fields": [
+ "footrest",
+ "handrest",
+ "direction_vertex",
+ "side",
+ "count"
+ ],
+ "moreFields": [
+ "capacity"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "cyclist_waiting_aid"
+ },
+ "terms": [
+ "foot rail",
+ "footrail",
+ "footrest",
+ "grip",
+ "hand rail",
+ "handle",
+ "handrail",
+ "handrest",
+ "holding rail"
+ ]
+}
diff --git a/data/presets/highway/elevator.json b/data/presets/highway/elevator.json
index db75f86f..6345996f 100644
--- a/data/presets/highway/elevator.json
+++ b/data/presets/highway/elevator.json
@@ -12,11 +12,12 @@
"dog",
"manufacturer",
"maxheight",
- "opening_hours",
- "opening_hours/covid19"
+ "opening_hours"
],
"geometry": [
- "vertex"
+ "vertex",
+ "point",
+ "area"
],
"tags": {
"highway": "elevator"
diff --git a/data/presets/highway/emergency_access_point.json b/data/presets/highway/emergency_access_point.json
index e1c4028a..3a4e8e5f 100644
--- a/data/presets/highway/emergency_access_point.json
+++ b/data/presets/highway/emergency_access_point.json
@@ -11,10 +11,10 @@
"highway": "emergency_access_point"
},
"terms": [
- "rescue",
+ "elm",
"emergency",
"emergency marker",
- "elm"
+ "rescue"
],
"name": "Emergency Access Point",
"aliases": [
diff --git a/data/presets/highway/emergency_bay.json b/data/presets/highway/emergency_bay.json
index bbb109ce..44c9534e 100644
--- a/data/presets/highway/emergency_bay.json
+++ b/data/presets/highway/emergency_bay.json
@@ -1,13 +1,17 @@
{
"icon": "maki-car",
"geometry": [
- "vertex"
+ "vertex",
+ "line"
],
"tags": {
"highway": "emergency_bay"
},
+ "fields": [
+ "direction_vertex_dual"
+ ],
"terms": [
- "Highway Emergency Bay"
+ "highway emergency bay"
],
"name": "Emergency Stopping Place"
}
diff --git a/data/presets/highway/escape.json b/data/presets/highway/escape.json
index 1a1d7208..105666b1 100644
--- a/data/presets/highway/escape.json
+++ b/data/presets/highway/escape.json
@@ -7,8 +7,8 @@
"line"
],
"terms": [
- "escape lane",
"emergency escape ramp",
+ "escape lane",
"runaway truck lane",
"truck arrester bed"
],
diff --git a/data/presets/highway/footway.json b/data/presets/highway/footway.json
index 2dcb4899..0d4b5d49 100644
--- a/data/presets/highway/footway.json
+++ b/data/presets/highway/footway.json
@@ -9,12 +9,14 @@
"incline"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"dog",
"informal",
"lit",
"maxweight_bridge",
"not/name",
+ "oneway",
"smoothness",
"stroller",
"tactile_paving",
diff --git a/data/presets/highway/footway/_crossing.json b/data/presets/highway/footway/_crossing.json
deleted file mode 100644
index 28447d56..00000000
--- a/data/presets/highway/footway/_crossing.json
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "fields": [
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing"
- },
- "reference": {
- "key": "footway",
- "value": "crossing"
- },
- "searchable": false,
- "name": "Pedestrian Crossing"
-}
diff --git a/data/presets/highway/footway/conveying.json b/data/presets/highway/footway/conveying.json
index 26acd914..8136613d 100644
--- a/data/presets/highway/footway/conveying.json
+++ b/data/presets/highway/footway/conveying.json
@@ -12,13 +12,13 @@
"line"
],
"terms": [
- "moving sidewalk",
"autwalk",
+ "conveyor",
+ "moving sidewalk",
"skywalk",
- "travolator",
"travelator",
"travellator",
- "conveyor"
+ "travolator"
],
"tags": {
"highway": "footway",
diff --git a/data/presets/highway/footway/crossing.json b/data/presets/highway/footway/crossing.json
new file mode 100644
index 00000000..78513071
--- /dev/null
+++ b/data/presets/highway/footway/crossing.json
@@ -0,0 +1,29 @@
+{
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing"
+ },
+ "terms": [
+ "crosswalk",
+ "foot path crossing",
+ "pedestrian crossing"
+ ],
+ "reference": {
+ "key": "footway",
+ "value": "crossing"
+ },
+ "name": "Pedestrian Crossing"
+}
diff --git a/data/presets/highway/footway/crossing/_informal.json b/data/presets/highway/footway/crossing/_informal.json
new file mode 100644
index 00000000..01f09e4d
--- /dev/null
+++ b/data/presets/highway/footway/crossing/_informal.json
@@ -0,0 +1,24 @@
+{
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "informal"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "informal"
+ },
+ "name": "{highway/crossing/informal}",
+ "searchable": false
+}
diff --git a/data/presets/highway/footway/crossing/_marked.json b/data/presets/highway/footway/crossing/_marked.json
index 78154a08..599ee331 100644
--- a/data/presets/highway/footway/crossing/_marked.json
+++ b/data/presets/highway/footway/crossing/_marked.json
@@ -2,14 +2,12 @@
"icon": "temaki-pedestrian_crosswalk",
"fields": [
"crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
],
"moreFields": [
+ "{@templates/crossing/geometry_way_more}",
"flashing_lights"
],
"geometry": [
@@ -20,10 +18,16 @@
"footway": "crossing",
"crossing": "marked"
},
+ "addTags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "marked",
+ "crossing:markings": "yes"
+ },
"reference": {
"key": "crossing",
"value": "marked"
},
- "name": "Marked Crossing",
+ "name": "{highway/footway/crossing/uncontrolled}",
"searchable": false
}
diff --git a/data/presets/highway/footway/crossing/_zebra.json b/data/presets/highway/footway/crossing/_zebra.json
index ceeaab56..7ac1a29d 100644
--- a/data/presets/highway/footway/crossing/_zebra.json
+++ b/data/presets/highway/footway/crossing/_zebra.json
@@ -2,12 +2,13 @@
"icon": "temaki-pedestrian_crosswalk",
"fields": [
"crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "flashing_lights"
],
"geometry": [
"line"
@@ -21,6 +22,6 @@
"key": "crossing",
"value": "zebra"
},
- "name": "Marked Crossing",
+ "name": "{highway/footway/crossing/uncontrolled}",
"searchable": false
}
diff --git a/data/presets/highway/footway/crossing/traffic_signals.json b/data/presets/highway/footway/crossing/traffic_signals.json
index cc519757..987c60ba 100644
--- a/data/presets/highway/footway/crossing/traffic_signals.json
+++ b/data/presets/highway/footway/crossing/traffic_signals.json
@@ -2,20 +2,15 @@
"icon": "temaki-railway_signals",
"fields": [
"crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "button_operated",
- "traffic_signals/sound",
- "traffic_signals/vibration",
- "access"
+ "{@templates/crossing/traffic_signal}",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
],
"moreFields": [
- "traffic_signals/arrow",
- "traffic_signals/countdown",
- "traffic_signals/minimap"
+ "{@templates/crossing/traffic_signal_more}",
+ "{@templates/crossing/geometry_way_more}",
+ "flashing_lights"
],
"geometry": [
"line"
@@ -31,10 +26,9 @@
},
"name": "Crossing With Pedestrian Signals",
"terms": [
- "pedestrian traffic lights",
- "pedestrian traffic signals",
+ "crosswalk (lights)",
"pedestrian crossing (lights)",
- "bicycle crossing (lights)",
- "crosswalk (lights)"
+ "pedestrian traffic lights",
+ "pedestrian traffic signals"
]
}
diff --git a/data/presets/highway/footway/crossing/uncontrolled.json b/data/presets/highway/footway/crossing/uncontrolled.json
index caa2a565..af0a1ac3 100644
--- a/data/presets/highway/footway/crossing/uncontrolled.json
+++ b/data/presets/highway/footway/crossing/uncontrolled.json
@@ -2,14 +2,12 @@
"icon": "temaki-pedestrian",
"fields": [
"crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
+ "{@templates/crossing/markings_yes}",
+ "{@templates/crossing/defaults}",
+ "surface"
],
"moreFields": [
+ "{@templates/crossing/geometry_way_more}",
"flashing_lights"
],
"geometry": [
@@ -25,11 +23,11 @@
"value": "uncontrolled"
},
"terms": [
- "marked foot path crossing",
+ "crosswalk",
"marked crosswalk",
+ "marked foot path crossing",
"marked pedestrian crosswalk",
- "zebra crossing",
- "crosswalk"
+ "zebra crossing"
],
"name": "Marked Crossing"
}
diff --git a/data/presets/highway/footway/crossing/unmarked.json b/data/presets/highway/footway/crossing/unmarked.json
index 3b24adc5..bf004627 100644
--- a/data/presets/highway/footway/crossing/unmarked.json
+++ b/data/presets/highway/footway/crossing/unmarked.json
@@ -2,13 +2,11 @@
"icon": "temaki-pedestrian",
"fields": [
"crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing_raised",
- "access"
+ "{@templates/crossing/defaults}",
+ "surface"
],
"moreFields": [
+ "{@templates/crossing/geometry_way_more}",
"flashing_lights"
],
"geometry": [
@@ -19,13 +17,19 @@
"footway": "crossing",
"crossing": "unmarked"
},
+ "addTags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "unmarked",
+ "crossing:markings": "no"
+ },
"reference": {
"key": "crossing",
"value": "unmarked"
},
"terms": [
- "unmarked foot path crossing",
"unmarked crosswalk",
+ "unmarked foot path crossing",
"unmarked pedestrian crossing"
],
"name": "Unmarked Crossing"
diff --git a/data/presets/highway/footway/traffic_island.json b/data/presets/highway/footway/traffic_island.json
index a2d63173..4347ab41 100644
--- a/data/presets/highway/footway/traffic_island.json
+++ b/data/presets/highway/footway/traffic_island.json
@@ -4,9 +4,6 @@
"line"
],
"tags": {
- "footway": "traffic_island"
- },
- "addTags": {
"highway": "footway",
"footway": "traffic_island"
},
@@ -19,7 +16,8 @@
],
"aliases": [
"Crosswalk Island",
- "Traffic Island"
+ "Traffic Island",
+ "Pedestrian Island"
],
"name": "Refuge Island"
}
diff --git a/data/presets/highway/give_way.json b/data/presets/highway/give_way.json
index e6001a40..452ec1d0 100644
--- a/data/presets/highway/give_way.json
+++ b/data/presets/highway/give_way.json
@@ -11,8 +11,8 @@
},
"terms": [
"give way",
- "yield",
- "sign"
+ "sign",
+ "yield"
],
"name": "Yield Sign"
}
diff --git a/data/presets/highway/ladder.json b/data/presets/highway/ladder.json
new file mode 100644
index 00000000..f38f3dbc
--- /dev/null
+++ b/data/presets/highway/ladder.json
@@ -0,0 +1,31 @@
+{
+ "icon": "temaki-crossing_markings-ladder",
+ "fields": [
+ "name",
+ "incline_steps",
+ "access_simple",
+ "handrail",
+ "step_count",
+ "material",
+ "width",
+ "height"
+ ],
+ "moreFields": [
+ "covered_no",
+ "level_semi",
+ "lit",
+ "oneway",
+ "ref"
+ ],
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "highway": "ladder"
+ },
+ "terms": [
+ "ladder"
+ ],
+ "name": "Ladder"
+}
diff --git a/data/presets/highway/living_street.json b/data/presets/highway/living_street.json
index 4e951546..de43f1d4 100644
--- a/data/presets/highway/living_street.json
+++ b/data/presets/highway/living_street.json
@@ -10,15 +10,22 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
+ "bicycle_road",
+ "cyclestreet-BE-NL",
"cycleway",
"flood_prone",
"junction_line",
"lit",
+ "maxaxleload_bridge",
"maxheight",
+ "maxlength",
"maxweight_bridge",
"maxwidth",
"oneway/bicycle",
+ "parking/side/parking",
+ "parking/side/orientation",
"smoothness",
"trolley_wire",
"width"
diff --git a/data/presets/highway/milestone.json b/data/presets/highway/milestone.json
index 9617dc1e..7f7f44b2 100644
--- a/data/presets/highway/milestone.json
+++ b/data/presets/highway/milestone.json
@@ -9,9 +9,6 @@
"ref",
"direction_vertex"
],
- "moreFields": [
- "ref"
- ],
"tags": {
"highway": "milestone"
},
diff --git a/data/presets/highway/motorway.json b/data/presets/highway/motorway.json
index 6887fd02..8a7e52aa 100644
--- a/data/presets/highway/motorway.json
+++ b/data/presets/highway/motorway.json
@@ -11,12 +11,15 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"charge_toll",
"covered_no",
"incline",
"junction_line",
"lit",
+ "maxaxleload_bridge",
"maxheight",
+ "maxlength",
"maxspeed/advisory",
"maxspeed/hgv",
"maxweight_bridge",
diff --git a/data/presets/highway/motorway_link-US-CA.json b/data/presets/highway/motorway_link-US-CA.json
index a20fd1a4..6ac1032c 100644
--- a/data/presets/highway/motorway_link-US-CA.json
+++ b/data/presets/highway/motorway_link-US-CA.json
@@ -13,13 +13,16 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"charge_toll",
"covered_no",
"destination/symbol_oneway",
"incline",
"junction_line",
"lit",
+ "maxaxleload_bridge",
"maxheight",
+ "maxlength",
"maxspeed",
"maxweight_bridge",
"maxwidth",
diff --git a/data/presets/highway/motorway_link.json b/data/presets/highway/motorway_link.json
index 1729226a..b947e0cf 100644
--- a/data/presets/highway/motorway_link.json
+++ b/data/presets/highway/motorway_link.json
@@ -13,13 +13,16 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"charge_toll",
"covered_no",
"destination/symbol_oneway",
"incline",
"junction_line",
"lit",
+ "maxaxleload_bridge",
"maxheight",
+ "maxlength",
"maxspeed/advisory",
"maxweight_bridge",
"maxwidth",
@@ -36,11 +39,11 @@
},
"terms": [
"exit",
+ "off ramp",
+ "on ramp",
"ramp",
"road",
- "street",
- "on ramp",
- "off ramp"
+ "street"
],
"locationSet": {
"exclude": [
diff --git a/data/presets/highway/path.json b/data/presets/highway/path.json
index 13dee957..580d1bac 100644
--- a/data/presets/highway/path.json
+++ b/data/presets/highway/path.json
@@ -9,6 +9,7 @@
"incline"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"dog",
"gnis/feature_id-US",
@@ -20,6 +21,7 @@
"mtb/scale/imba",
"mtb/scale/uphill",
"not/name",
+ "oneway",
"ref",
"sac_scale",
"smoothness",
diff --git a/data/presets/highway/path/_crossing.json b/data/presets/highway/path/_crossing.json
new file mode 100644
index 00000000..a6e412fb
--- /dev/null
+++ b/data/presets/highway/path/_crossing.json
@@ -0,0 +1,30 @@
+{
+ "icon": "temaki-cyclist_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "path": "crossing"
+ },
+ "addTags": {
+ "highway": "path",
+ "path": "crossing"
+ },
+ "reference": {
+ "key": "path",
+ "value": "crossing"
+ },
+ "searchable": false,
+ "name": "Cycle & Foot Crossing"
+}
diff --git a/data/presets/highway/path/bicycle_foot.json b/data/presets/highway/path/bicycle_foot.json
new file mode 100644
index 00000000..58e4eee9
--- /dev/null
+++ b/data/presets/highway/path/bicycle_foot.json
@@ -0,0 +1,32 @@
+{
+ "locationSet": {
+ "include": [
+ "fr",
+ "lt",
+ "pl",
+ "de",
+ "il",
+ "ps"
+ ]
+ },
+ "icon": "temaki-pedestrian_and_cyclist",
+ "fields": [
+ "{highway/cycleway/bicycle_foot}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "foot": "designated",
+ "bicycle": "designated"
+ },
+ "removeTags": {
+ "highway": "path",
+ "foot": "designated",
+ "bicycle": "designated",
+ "segregated": "*"
+ },
+ "matchScore": 0.9,
+ "name": "{highway/cycleway/bicycle_foot}"
+}
diff --git a/data/presets/highway/path/crossing/_informal.json b/data/presets/highway/path/crossing/_informal.json
new file mode 100644
index 00000000..53946312
--- /dev/null
+++ b/data/presets/highway/path/crossing/_informal.json
@@ -0,0 +1,24 @@
+{
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "informal"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "informal"
+ },
+ "name": "{highway/crossing/informal}",
+ "searchable": false
+}
diff --git a/data/presets/highway/path/crossing/_marked.json b/data/presets/highway/path/crossing/_marked.json
new file mode 100644
index 00000000..cb2d398e
--- /dev/null
+++ b/data/presets/highway/path/crossing/_marked.json
@@ -0,0 +1,34 @@
+{
+ "icon": "temaki-pedestrian_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "marked"
+ },
+ "addTags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "marked",
+ "crossing:markings": "yes"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "marked"
+ },
+ "name": "{highway/path/crossing/uncontrolled}",
+ "searchable": false
+}
diff --git a/data/presets/highway/path/crossing/_traffic_signals.json b/data/presets/highway/path/crossing/_traffic_signals.json
new file mode 100644
index 00000000..de04e3df
--- /dev/null
+++ b/data/presets/highway/path/crossing/_traffic_signals.json
@@ -0,0 +1,30 @@
+{
+ "icon": "temaki-railway_signals",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/traffic_signal}",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/traffic_signal_more}",
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "traffic_signals"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "traffic_signals"
+ },
+ "name": "Cycle & Foot Crossing With Pedestrian Signals",
+ "searchable": false
+}
diff --git a/data/presets/highway/path/crossing/_uncontrolled.json b/data/presets/highway/path/crossing/_uncontrolled.json
new file mode 100644
index 00000000..3dc03f42
--- /dev/null
+++ b/data/presets/highway/path/crossing/_uncontrolled.json
@@ -0,0 +1,28 @@
+{
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings_yes}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "uncontrolled"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "uncontrolled"
+ },
+ "name": "Marked Cycle & Foot Crossing",
+ "searchable": false
+}
diff --git a/data/presets/highway/path/crossing/_unmarked.json b/data/presets/highway/path/crossing/_unmarked.json
new file mode 100644
index 00000000..f904a086
--- /dev/null
+++ b/data/presets/highway/path/crossing/_unmarked.json
@@ -0,0 +1,33 @@
+{
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "unmarked"
+ },
+ "addTags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "unmarked",
+ "crossing:markings": "no"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "unmarked"
+ },
+ "name": "Unmarked Cycle & Foot Crossing",
+ "searchable": false
+}
diff --git a/data/presets/highway/path/crossing/bicycle_foot.json b/data/presets/highway/path/crossing/bicycle_foot.json
new file mode 100644
index 00000000..a2256975
--- /dev/null
+++ b/data/presets/highway/path/crossing/bicycle_foot.json
@@ -0,0 +1,38 @@
+{
+ "locationSet": {
+ "include": [
+ "fr",
+ "lt",
+ "pl",
+ "de",
+ "il",
+ "ps"
+ ]
+ },
+ "icon": "temaki-ped_cyclist_crosswalk",
+ "fields": [
+ "{highway/cycleway/crossing/bicycle_foot}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "foot": "designated",
+ "bicycle": "designated"
+ },
+ "removeTags": {
+ "highway": "path",
+ "path": "crossing",
+ "foot": "designated",
+ "bicycle": "designated",
+ "segregated": "*"
+ },
+ "reference": {
+ "key": "path",
+ "value": "crossing"
+ },
+ "matchScore": 0.9,
+ "name": "{highway/cycleway/crossing/bicycle_foot}"
+}
diff --git a/data/presets/highway/path/traffic_island_shared.json b/data/presets/highway/path/traffic_island_shared.json
new file mode 100644
index 00000000..a7840fec
--- /dev/null
+++ b/data/presets/highway/path/traffic_island_shared.json
@@ -0,0 +1,30 @@
+{
+ "locationSet": {
+ "include": [
+ "fr",
+ "lt",
+ "pl",
+ "de",
+ "il",
+ "ps"
+ ]
+ },
+ "icon": "temaki-pedestrian_and_cyclist",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "traffic_island",
+ "foot": "designated",
+ "bicycle": "designated"
+ },
+ "reference": {
+ "key": "path",
+ "value": "traffic_island"
+ },
+ "fields": [
+ "{highway/cycleway/traffic_island_shared}"
+ ],
+ "name": "{highway/cycleway/traffic_island_shared}"
+}
diff --git a/data/presets/highway/pedestrian_area.json b/data/presets/highway/pedestrian_area.json
index b7ecb9ff..44b86017 100644
--- a/data/presets/highway/pedestrian_area.json
+++ b/data/presets/highway/pedestrian_area.json
@@ -8,6 +8,9 @@
"structure",
"access"
],
+ "moreFields": [
+ "bridge/ref"
+ ],
"geometry": [
"area"
],
diff --git a/data/presets/highway/pedestrian_line.json b/data/presets/highway/pedestrian_line.json
index 898446c6..cd3a6c64 100644
--- a/data/presets/highway/pedestrian_line.json
+++ b/data/presets/highway/pedestrian_line.json
@@ -10,6 +10,7 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"incline",
"maxweight_bridge",
diff --git a/data/presets/highway/primary.json b/data/presets/highway/primary.json
index 38cb3997..8e3daa6a 100644
--- a/data/presets/highway/primary.json
+++ b/data/presets/highway/primary.json
@@ -11,6 +11,7 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"charge_toll",
"covered_no",
"cycleway",
@@ -20,16 +21,20 @@
"junction_line",
"lane_markings",
"lit",
+ "maxaxleload_bridge",
"maxheight",
+ "maxlength",
"maxspeed/advisory",
"maxspeed/hgv",
"maxweight_bridge",
"maxwidth",
"not/name",
"oneway/bicycle",
+ "parking/side/parking",
+ "parking/side/orientation",
"smoothness",
"toll",
- "traffic_calming",
+ "traffic_calming_road",
"trolley_wire",
"width"
],
diff --git a/data/presets/highway/primary_link-US-CA.json b/data/presets/highway/primary_link-US-CA.json
index 7d8b44a4..b582292d 100644
--- a/data/presets/highway/primary_link-US-CA.json
+++ b/data/presets/highway/primary_link-US-CA.json
@@ -12,6 +12,7 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"charge_toll",
"covered_no",
"cycleway",
@@ -21,7 +22,9 @@
"junction_line",
"junction/ref_oneway",
"lit",
+ "maxaxleload_bridge",
"maxheight",
+ "maxlength",
"maxspeed",
"maxweight_bridge",
"maxwidth",
diff --git a/data/presets/highway/primary_link.json b/data/presets/highway/primary_link.json
index ce38a7cf..4d86be8f 100644
--- a/data/presets/highway/primary_link.json
+++ b/data/presets/highway/primary_link.json
@@ -12,6 +12,7 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"charge_toll",
"covered_no",
"cycleway",
@@ -21,11 +22,15 @@
"junction_line",
"junction/ref_oneway",
"lit",
+ "maxaxleload_bridge",
"maxheight",
+ "maxlength",
"maxspeed/advisory",
"maxweight_bridge",
"maxwidth",
"oneway/bicycle",
+ "parking/side/parking",
+ "parking/side/orientation",
"ref_road_number",
"smoothness",
"toll",
@@ -39,8 +44,8 @@
"highway": "primary_link"
},
"terms": [
- "on ramp",
"off ramp",
+ "on ramp",
"ramp",
"road",
"street"
diff --git a/data/presets/highway/raceway.json b/data/presets/highway/raceway.json
index 7051363c..e7116475 100644
--- a/data/presets/highway/raceway.json
+++ b/data/presets/highway/raceway.json
@@ -4,7 +4,7 @@
"name",
"oneway",
"surface",
- "sport_racing_motor",
+ "sport/sport_racing_motor",
"lit",
"width",
"lanes",
diff --git a/data/presets/highway/raceway/motocross.json b/data/presets/highway/raceway/motocross.json
index fce52163..71c676c0 100644
--- a/data/presets/highway/raceway/motocross.json
+++ b/data/presets/highway/raceway/motocross.json
@@ -13,11 +13,11 @@
"value": "motocross"
},
"terms": [
- "off-road racing",
- "offroad moto racing",
"motocross circuit",
"motorcycle track",
- "motorsports"
+ "motorsports",
+ "off-road racing",
+ "offroad moto racing"
],
"name": "Motocross Racetrack"
}
diff --git a/data/presets/highway/residential.json b/data/presets/highway/residential.json
index 8de62dc2..0a9746fa 100644
--- a/data/presets/highway/residential.json
+++ b/data/presets/highway/residential.json
@@ -10,21 +10,28 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"cycleway",
+ "bicycle_road",
+ "cyclestreet-BE-NL",
"flood_prone",
"incline",
"junction_line",
"lane_markings",
"lit",
+ "maxaxleload_bridge",
"maxheight",
+ "maxlength",
"maxspeed/advisory",
- "maxweight_bridge",
+ "maxweight",
"maxwidth",
"not/name",
"oneway/bicycle",
+ "parking/side/parking",
+ "parking/side/orientation",
"smoothness",
- "traffic_calming",
+ "traffic_calming_road",
"trolley_wire",
"width"
],
diff --git a/data/presets/highway/rest_area.json b/data/presets/highway/rest_area.json
index 5f6b5a6c..c9ce0b36 100644
--- a/data/presets/highway/rest_area.json
+++ b/data/presets/highway/rest_area.json
@@ -6,11 +6,14 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"address",
- "email",
- "fax",
- "opening_hours/covid19",
- "phone",
+ "bin",
+ "caravans",
+ "drinking_water_available",
+ "picnic_table",
+ "toilets",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/highway/secondary_link.json b/data/presets/highway/secondary_link.json
index c59def4c..ab92f2e1 100644
--- a/data/presets/highway/secondary_link.json
+++ b/data/presets/highway/secondary_link.json
@@ -14,8 +14,8 @@
"highway": "secondary_link"
},
"terms": [
- "on ramp",
"off ramp",
+ "on ramp",
"ramp",
"road",
"street"
diff --git a/data/presets/highway/service.json b/data/presets/highway/service.json
index a6f31271..a7f225f7 100644
--- a/data/presets/highway/service.json
+++ b/data/presets/highway/service.json
@@ -10,18 +10,22 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"flood_prone",
"incline",
"lanes",
"lit",
+ "maxaxleload_bridge",
"maxheight",
+ "maxlength",
"maxspeed/advisory",
"maxweight_bridge",
"maxwidth",
"oneway/bicycle",
+ "parking/side/parking",
+ "parking/side/orientation",
"smoothness",
- "traffic_calming",
"trolley_wire",
"width"
],
diff --git a/data/presets/highway/service_area.json b/data/presets/highway/service_area.json
index 01507c3d..a18af849 100644
--- a/data/presets/highway/service_area.json
+++ b/data/presets/highway/service_area.json
@@ -9,6 +9,7 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"flood_prone",
"lit",
diff --git a/data/presets/highway/steps.json b/data/presets/highway/steps.json
index 13c52905..323f8a45 100644
--- a/data/presets/highway/steps.json
+++ b/data/presets/highway/steps.json
@@ -8,7 +8,8 @@
"step_count",
"tactile_paving",
"surface",
- "width"
+ "width",
+ "structure"
],
"moreFields": [
"covered_no",
@@ -16,6 +17,7 @@
"indoor",
"level_semi",
"lit",
+ "oneway",
"ref",
"ramp",
"stroller",
@@ -28,8 +30,8 @@
"highway": "steps"
},
"terms": [
- "stairs",
"staircase",
+ "stairs",
"stairway"
],
"name": "Steps"
diff --git a/data/presets/highway/stop.json b/data/presets/highway/stop.json
index c8eaa619..926ba781 100644
--- a/data/presets/highway/stop.json
+++ b/data/presets/highway/stop.json
@@ -11,9 +11,9 @@
"highway": "stop"
},
"terms": [
- "stop",
"halt",
- "sign"
+ "sign",
+ "stop"
],
"name": "Stop Sign"
}
diff --git a/data/presets/highway/street_lamp.json b/data/presets/highway/street_lamp.json
index dae53cc1..80ffd45e 100644
--- a/data/presets/highway/street_lamp.json
+++ b/data/presets/highway/street_lamp.json
@@ -13,14 +13,15 @@
"lamp_mount",
"direction",
"height",
+ "operator",
"ref"
],
"terms": [
- "streetlight",
- "street light",
+ "gaslight",
"lamp",
"light",
- "gaslight"
+ "street light",
+ "streetlight"
],
"name": "Street Lamp"
}
diff --git a/data/presets/highway/tertiary.json b/data/presets/highway/tertiary.json
index f9c41fdf..144874c6 100644
--- a/data/presets/highway/tertiary.json
+++ b/data/presets/highway/tertiary.json
@@ -4,7 +4,9 @@
"{highway/primary}"
],
"moreFields": [
- "{highway/primary}"
+ "{highway/primary}",
+ "bicycle_road",
+ "cyclestreet-BE-NL"
],
"geometry": [
"line"
diff --git a/data/presets/highway/tertiary_link.json b/data/presets/highway/tertiary_link.json
index 2763ae1d..f5027298 100644
--- a/data/presets/highway/tertiary_link.json
+++ b/data/presets/highway/tertiary_link.json
@@ -14,8 +14,8 @@
"highway": "tertiary_link"
},
"terms": [
- "on ramp",
"off ramp",
+ "on ramp",
"ramp",
"road",
"street"
diff --git a/data/presets/highway/toll_gantry.json b/data/presets/highway/toll_gantry.json
index 02b6b4b2..066c8434 100644
--- a/data/presets/highway/toll_gantry.json
+++ b/data/presets/highway/toll_gantry.json
@@ -13,9 +13,6 @@
"opening_hours",
"payment_multi"
],
- "moreFields": [
- "opening_hours/covid19"
- ],
"geometry": [
"vertex"
],
@@ -23,10 +20,10 @@
"highway": "toll_gantry"
},
"terms": [
- "license plate camera toll",
"cashless toll",
"electronic toll",
"free-flow toll",
+ "license plate camera toll",
"toll gantry",
"transponder toll"
],
diff --git a/data/presets/highway/track.json b/data/presets/highway/track.json
index c786e676..2e200782 100644
--- a/data/presets/highway/track.json
+++ b/data/presets/highway/track.json
@@ -11,6 +11,7 @@
"smoothness"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"flood_prone",
"horse_scale",
@@ -18,6 +19,7 @@
"mtb/scale",
"mtb/scale/imba",
"mtb/scale/uphill",
+ "oneway",
"stroller",
"wheelchair"
],
@@ -46,15 +48,15 @@
"jeep",
"logging road",
"mining road",
- "offroad",
"off-road",
+ "offroad",
"overgrown",
"primitive",
"quad",
"ranch road",
"rut",
- "two-track",
"two track",
+ "two-track",
"unmaintained",
"vehicular trail",
"woods road"
diff --git a/data/presets/highway/trailhead.json b/data/presets/highway/trailhead.json
index 58b955d8..867d5b9f 100644
--- a/data/presets/highway/trailhead.json
+++ b/data/presets/highway/trailhead.json
@@ -12,8 +12,7 @@
],
"moreFields": [
"gnis/feature_id-US",
- "opening_hours",
- "opening_hours/covid19"
+ "opening_hours"
],
"geometry": [
"vertex"
@@ -26,9 +25,9 @@
"mile zero",
"mountain biking",
"mountaineering",
+ "staging area",
"trail endpoint",
"trail start",
- "staging area",
"trekking"
],
"name": "Trailhead"
diff --git a/data/presets/highway/trunk.json b/data/presets/highway/trunk.json
index 72400413..c3fec98e 100644
--- a/data/presets/highway/trunk.json
+++ b/data/presets/highway/trunk.json
@@ -12,12 +12,15 @@
"access"
],
"moreFields": [
+ "bridge/ref",
"charge_toll",
"covered_no",
"incline",
"junction_line",
"lit",
+ "maxaxleload_bridge",
"maxheight",
+ "maxlength",
"maxspeed/advisory",
"maxspeed/hgv",
"maxweight_bridge",
diff --git a/data/presets/highway/trunk_link.json b/data/presets/highway/trunk_link.json
index df6ab918..45f826ba 100644
--- a/data/presets/highway/trunk_link.json
+++ b/data/presets/highway/trunk_link.json
@@ -14,8 +14,8 @@
"highway": "trunk_link"
},
"terms": [
- "on ramp",
"off ramp",
+ "on ramp",
"ramp",
"road",
"street"
diff --git a/data/presets/highway/turning_circle.json b/data/presets/highway/turning_circle.json
index b2b4d608..4b32661e 100644
--- a/data/presets/highway/turning_circle.json
+++ b/data/presets/highway/turning_circle.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-circle-stroked",
+ "icon": "maki-circle",
"geometry": [
"vertex"
],
diff --git a/data/presets/highway/turning_loop.json b/data/presets/highway/turning_loop.json
index 6b1a23f9..abb40899 100644
--- a/data/presets/highway/turning_loop.json
+++ b/data/presets/highway/turning_loop.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-circle",
+ "icon": "roentgen-turning_loop",
"geometry": [
"vertex"
],
diff --git a/data/presets/historic/aircraft.json b/data/presets/historic/aircraft.json
new file mode 100644
index 00000000..237c38b8
--- /dev/null
+++ b/data/presets/historic/aircraft.json
@@ -0,0 +1,27 @@
+{
+ "icon": "roentgen-plane",
+ "fields": [
+ "name",
+ "start_date",
+ "aircraft/type",
+ "model"
+ ],
+ "moreFields": [
+ "ref",
+ "model/wikidata",
+ "manufacturer",
+ "manufacturer/wikidata",
+ "description"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "historic": "aircraft"
+ },
+ "terms": [
+ "gate guardian"
+ ],
+ "name": "Historic Aircraft"
+}
diff --git a/data/presets/historic/archaeological_site.json b/data/presets/historic/archaeological_site.json
index ae28d539..502c5200 100644
--- a/data/presets/historic/archaeological_site.json
+++ b/data/presets/historic/archaeological_site.json
@@ -3,6 +3,7 @@
"fields": [
"name",
"archaeological_site",
+ "fortification_type",
"historic/civilization",
"inscription",
"access_simple"
diff --git a/data/presets/historic/building.json b/data/presets/historic/building.json
index 482e5d5d..e5070c7a 100644
--- a/data/presets/historic/building.json
+++ b/data/presets/historic/building.json
@@ -12,9 +12,6 @@
"area"
],
"tags": {
- "historic": "building"
- },
- "addTags": {
"historic": "building",
"building": "*"
},
diff --git a/data/presets/historic/cannon.json b/data/presets/historic/cannon.json
new file mode 100644
index 00000000..51746227
--- /dev/null
+++ b/data/presets/historic/cannon.json
@@ -0,0 +1,21 @@
+{
+ "icon": "roentgen-cannon",
+ "fields": [
+ "name",
+ "start_date",
+ "direction"
+ ],
+ "moreFields": [
+ "description",
+ "wikipedia",
+ "wikidata",
+ "ref"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "historic": "cannon"
+ },
+ "name": "Cannon"
+}
diff --git a/data/presets/historic/castle.json b/data/presets/historic/castle.json
index 2a5b7251..6ee8881a 100644
--- a/data/presets/historic/castle.json
+++ b/data/presets/historic/castle.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-castle",
+ "icon": "roentgen-fort",
"fields": [
"name",
"castle_type",
diff --git a/data/presets/historic/castle/palace.json b/data/presets/historic/castle/palace.json
index cee13f98..0a510cbb 100644
--- a/data/presets/historic/castle/palace.json
+++ b/data/presets/historic/castle/palace.json
@@ -19,10 +19,10 @@
"castle_type": "palace"
},
"terms": [
- "Royal Residence",
- "royal",
"king",
- "queen"
+ "queen",
+ "royal",
+ "royal residence"
],
"name": "Palace"
}
diff --git a/data/presets/historic/castle/stately.json b/data/presets/historic/castle/stately.json
index e39c0839..9167403e 100644
--- a/data/presets/historic/castle/stately.json
+++ b/data/presets/historic/castle/stately.json
@@ -19,11 +19,11 @@
"castle_type": "stately"
},
"terms": [
- "Historic Country House",
- "Stately Home",
- "nobility",
"gentry",
- "representative"
+ "historic country house",
+ "nobility",
+ "representative",
+ "stately home"
],
"name": "Château"
}
diff --git a/data/presets/historic/city_gate.json b/data/presets/historic/city_gate.json
index 8e9bca91..7dc9e459 100644
--- a/data/presets/historic/city_gate.json
+++ b/data/presets/historic/city_gate.json
@@ -14,7 +14,7 @@
"historic": "city_gate"
},
"terms": [
- "Town Gate"
+ "town gate"
],
"name": "City Gate"
}
diff --git a/data/presets/historic/manor.json b/data/presets/historic/manor.json
index e06fe5ec..3e8aa4b5 100644
--- a/data/presets/historic/manor.json
+++ b/data/presets/historic/manor.json
@@ -14,10 +14,10 @@
"historic": "manor"
},
"terms": [
- "Mansion",
+ "estate",
"gentry",
- "nobility",
- "estate"
+ "mansion",
+ "nobility"
],
"name": "Manor House"
}
diff --git a/data/presets/historic/memorial.json b/data/presets/historic/memorial.json
index e213d5f8..69bda609 100644
--- a/data/presets/historic/memorial.json
+++ b/data/presets/historic/memorial.json
@@ -18,10 +18,10 @@
"terms": [
"dedicatory",
"epitaph",
- "remember",
- "remembrance",
"memory",
"monument",
+ "remember",
+ "remembrance",
"stolperstein"
],
"tags": {
diff --git a/data/presets/historic/memorial/blue_plaque-GB-IE.json b/data/presets/historic/memorial/blue_plaque-GB-IE.json
new file mode 100644
index 00000000..0fd41710
--- /dev/null
+++ b/data/presets/historic/memorial/blue_plaque-GB-IE.json
@@ -0,0 +1,31 @@
+{
+ "icon": "temaki-plaque",
+ "fields": [
+ "name",
+ "inscription",
+ "subject/wikidata"
+ ],
+ "moreFields": [
+ "direction",
+ "image",
+ "wikimedia_commons"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "memorial": "blue_plaque"
+ },
+ "addTags": {
+ "historic": "memorial",
+ "memorial": "blue_plaque"
+ },
+ "name": "Blue Plaque",
+ "locationSet": {
+ "include": [
+ "gb",
+ "ie"
+ ]
+ }
+}
diff --git a/data/presets/historic/memorial/plaque.json b/data/presets/historic/memorial/plaque.json
index f04f956a..dcf43a79 100644
--- a/data/presets/historic/memorial/plaque.json
+++ b/data/presets/historic/memorial/plaque.json
@@ -12,9 +12,9 @@
"dedicatory",
"epitaph",
"historical marker",
+ "memory",
"remember",
- "remembrance",
- "memory"
+ "remembrance"
],
"tags": {
"historic": "memorial",
diff --git a/data/presets/historic/memorial/stolperstein-EU.json b/data/presets/historic/memorial/stolperstein-EU.json
new file mode 100644
index 00000000..4de1e172
--- /dev/null
+++ b/data/presets/historic/memorial/stolperstein-EU.json
@@ -0,0 +1,30 @@
+{
+ "icon": "temaki-plaque",
+ "fields": [
+ "name",
+ "inscription",
+ "wikidata"
+ ],
+ "moreFields": [
+ "memorial/addr",
+ "memorial/addr_subtags",
+ "subject/wikidata",
+ "image",
+ "wikimedia_commons",
+ "website"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "historic": "memorial",
+ "memorial": "stolperstein"
+ },
+ "name": "Memorial Plaque Stolperstein",
+ "locationSet": {
+ "include": [
+ "Q46"
+ ]
+ }
+}
diff --git a/data/presets/historic/ruins.json b/data/presets/historic/ruins.json
index d6e7f5f4..da921cba 100644
--- a/data/presets/historic/ruins.json
+++ b/data/presets/historic/ruins.json
@@ -10,6 +10,7 @@
"geometry": [
"point",
"vertex",
+ "line",
"area"
],
"tags": {
diff --git a/data/presets/historic/wayside_cross.json b/data/presets/historic/wayside_cross.json
index e080688f..f976eba5 100644
--- a/data/presets/historic/wayside_cross.json
+++ b/data/presets/historic/wayside_cross.json
@@ -18,5 +18,11 @@
"tags": {
"historic": "wayside_cross"
},
+ "terms": [
+ "christ",
+ "christian",
+ "cross",
+ "jesus"
+ ],
"name": "Wayside Cross"
}
diff --git a/data/presets/historic/wreck.json b/data/presets/historic/wreck.json
index 0650a602..e6d20adb 100644
--- a/data/presets/historic/wreck.json
+++ b/data/presets/historic/wreck.json
@@ -24,12 +24,12 @@
"seamark:type": "wreck"
},
"terms": [
+ "boat",
"hull",
- "mast",
"maritime",
+ "mast",
"remains",
- "ship",
- "boat"
+ "ship"
],
"name": "Shipwreck"
}
diff --git a/data/presets/indoor/stairs.json b/data/presets/indoor/stairs.json
index c3e21055..dc46ee7c 100644
--- a/data/presets/indoor/stairs.json
+++ b/data/presets/indoor/stairs.json
@@ -14,8 +14,8 @@
},
"terms": [
"stair",
- "stairs",
"staircase",
+ "stairs",
"stairway",
"stairwell",
"steps"
diff --git a/data/presets/internet_access/wlan.json b/data/presets/internet_access/wlan.json
index 966329b3..fca74e71 100644
--- a/data/presets/internet_access/wlan.json
+++ b/data/presets/internet_access/wlan.json
@@ -12,9 +12,9 @@
"level"
],
"terms": [
+ "hotspot",
"wi-fi",
- "wifi",
- "hotspot"
+ "wifi"
],
"tags": {
"internet_access": "wlan"
diff --git a/data/presets/landuse/allotments.json b/data/presets/landuse/allotments.json
index a95a7000..34ac6d10 100644
--- a/data/presets/landuse/allotments.json
+++ b/data/presets/landuse/allotments.json
@@ -9,10 +9,8 @@
"plots"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"tags": {
"landuse": "allotments"
diff --git a/data/presets/landuse/aquaculture.json b/data/presets/landuse/aquaculture.json
index e6846e3b..be1663c2 100644
--- a/data/presets/landuse/aquaculture.json
+++ b/data/presets/landuse/aquaculture.json
@@ -6,26 +6,26 @@
"produce"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
+ "point",
"area"
],
"tags": {
"landuse": "aquaculture"
},
"terms": [
- "fish farm",
- "crustacean",
+ "algaculture",
"algae",
"aquafarming",
- "shrimp farm",
- "oyster farm",
+ "crustacean",
"mariculture",
- "algaculture"
+ "marine farm",
+ "mussel farm",
+ "oyster farm",
+ "shrimp farm"
],
"name": "Aquaculture"
}
diff --git a/data/presets/landuse/aquaculture/fish.json b/data/presets/landuse/aquaculture/fish.json
new file mode 100644
index 00000000..55f460bb
--- /dev/null
+++ b/data/presets/landuse/aquaculture/fish.json
@@ -0,0 +1,28 @@
+{
+ "icon": "fas-fish",
+ "fields": [
+ "{landuse/aquaculture}"
+ ],
+ "moreFields": [
+ "{landuse/aquaculture}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "landuse": "aquaculture",
+ "produce": "fish"
+ },
+ "terms": [
+ "bass",
+ "carp",
+ "fish farm",
+ "fish hatchery",
+ "salmon",
+ "sturgeon",
+ "tilapia",
+ "trout"
+ ],
+ "name": "Fish Farm / Hatchery"
+}
diff --git a/data/presets/landuse/cemetery.json b/data/presets/landuse/cemetery.json
index 3a8847e2..d7555529 100644
--- a/data/presets/landuse/cemetery.json
+++ b/data/presets/landuse/cemetery.json
@@ -6,13 +6,12 @@
"denomination"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
- "area"
+ "area",
+ "point"
],
"tags": {
"landuse": "cemetery"
diff --git a/data/presets/landuse/commercial.json b/data/presets/landuse/commercial.json
index f2022460..938089b1 100644
--- a/data/presets/landuse/commercial.json
+++ b/data/presets/landuse/commercial.json
@@ -4,10 +4,8 @@
"name"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
"area"
diff --git a/data/presets/landuse/construction.json b/data/presets/landuse/construction.json
index d999f24e..9f3e3016 100644
--- a/data/presets/landuse/construction.json
+++ b/data/presets/landuse/construction.json
@@ -9,10 +9,8 @@
"note"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
"area"
@@ -20,6 +18,10 @@
"tags": {
"landuse": "construction"
},
+ "removeTags": {
+ "landuse": "construction",
+ "construction": "*"
+ },
"terms": [
"building",
"bulldozer",
diff --git a/data/presets/landuse/education.json b/data/presets/landuse/education.json
index eb19ccdc..d9f37985 100644
--- a/data/presets/landuse/education.json
+++ b/data/presets/landuse/education.json
@@ -4,15 +4,14 @@
"name",
"operator"
],
- "moreFields": [],
"geometry": [
"area"
],
"terms": [
- "educational facilities",
"campus",
- "school grounds",
- "school center"
+ "educational facilities",
+ "school center",
+ "school grounds"
],
"tags": {
"landuse": "education"
diff --git a/data/presets/landuse/farmland.json b/data/presets/landuse/farmland.json
index 513f1cf5..999bed4d 100644
--- a/data/presets/landuse/farmland.json
+++ b/data/presets/landuse/farmland.json
@@ -7,10 +7,9 @@
"produce"
],
"moreFields": [
+ "{@templates/contact}",
"address",
- "email",
- "fax",
- "phone"
+ "irrigation_pivot"
],
"geometry": [
"area"
diff --git a/data/presets/landuse/farmyard.json b/data/presets/landuse/farmyard.json
index 88893bb4..be72f874 100644
--- a/data/presets/landuse/farmyard.json
+++ b/data/presets/landuse/farmyard.json
@@ -5,10 +5,8 @@
"operator"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
"area"
diff --git a/data/presets/landuse/forest.json b/data/presets/landuse/forest.json
index 58575d63..0da92454 100644
--- a/data/presets/landuse/forest.json
+++ b/data/presets/landuse/forest.json
@@ -7,10 +7,8 @@
"produce"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
"area"
diff --git a/data/presets/landuse/garages.json b/data/presets/landuse/garages.json
index 093b5ca9..6a4ac309 100644
--- a/data/presets/landuse/garages.json
+++ b/data/presets/landuse/garages.json
@@ -7,10 +7,8 @@
"name"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"tags": {
"landuse": "garages"
diff --git a/data/presets/landuse/greenhouse_horticulture.json b/data/presets/landuse/greenhouse_horticulture.json
index c3cdcfca..4d64f525 100644
--- a/data/presets/landuse/greenhouse_horticulture.json
+++ b/data/presets/landuse/greenhouse_horticulture.json
@@ -5,10 +5,8 @@
"operator"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
"area"
@@ -16,8 +14,8 @@
"terms": [
"flower",
"greenhouse",
- "horticulture",
"grow",
+ "horticulture",
"vivero"
],
"tags": {
diff --git a/data/presets/landuse/harbour.json b/data/presets/landuse/harbour.json
index 1bce18b2..380f2dc9 100644
--- a/data/presets/landuse/harbour.json
+++ b/data/presets/landuse/harbour.json
@@ -5,10 +5,8 @@
"operator"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
"area"
diff --git a/data/presets/landuse/industrial.json b/data/presets/landuse/industrial.json
index 4f8a9fd2..2cc9a8c2 100644
--- a/data/presets/landuse/industrial.json
+++ b/data/presets/landuse/industrial.json
@@ -5,11 +5,9 @@
"industrial"
],
"moreFields": [
- "operator",
+ "{@templates/contact}",
"address",
- "email",
- "fax",
- "phone"
+ "operator"
],
"geometry": [
"area"
diff --git a/data/presets/landuse/industrial/_industrial_point.json b/data/presets/landuse/industrial/_industrial_point.json
new file mode 100644
index 00000000..b127fe8d
--- /dev/null
+++ b/data/presets/landuse/industrial/_industrial_point.json
@@ -0,0 +1,17 @@
+{
+ "icon": "maki-industry",
+ "fields": [
+ "{landuse/industrial}"
+ ],
+ "moreFields": [
+ "{landuse/industrial}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "landuse": "industrial"
+ },
+ "searchable": false,
+ "name": "{landuse/industrial}"
+}
diff --git a/data/presets/landuse/industrial/depot.json b/data/presets/landuse/industrial/depot.json
new file mode 100644
index 00000000..1457f8b9
--- /dev/null
+++ b/data/presets/landuse/industrial/depot.json
@@ -0,0 +1,36 @@
+{
+ "icon": "roentgen-buses",
+ "fields": [
+ "name",
+ "operator",
+ "depot"
+ ],
+ "moreFields": [
+ "{landuse/industrial}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "industrial": "depot"
+ },
+ "addTags": {
+ "landuse": "industrial",
+ "industrial": "depot"
+ },
+ "reference": {
+ "key": "industrial",
+ "value": "depot"
+ },
+ "terms": [
+ "bus",
+ "depot",
+ "parking",
+ "storage",
+ "truck",
+ "vehicle",
+ "yard"
+ ],
+ "name": "Depot"
+}
diff --git a/data/presets/landuse/industrial/scrap_yard.json b/data/presets/landuse/industrial/scrap_yard.json
index 3dba13c8..880efcd7 100644
--- a/data/presets/landuse/industrial/scrap_yard.json
+++ b/data/presets/landuse/industrial/scrap_yard.json
@@ -7,8 +7,7 @@
"opening_hours"
],
"moreFields": [
- "{landuse/industrial}",
- "opening_hours/covid19"
+ "{landuse/industrial}"
],
"geometry": [
"point",
diff --git a/data/presets/landuse/industrial/slaughterhouse.json b/data/presets/landuse/industrial/slaughterhouse.json
index 00b10d13..3ad22176 100644
--- a/data/presets/landuse/industrial/slaughterhouse.json
+++ b/data/presets/landuse/industrial/slaughterhouse.json
@@ -8,8 +8,7 @@
"opening_hours"
],
"moreFields": [
- "{landuse/industrial}",
- "opening_hours/covid19"
+ "{landuse/industrial}"
],
"geometry": [
"point",
diff --git a/data/presets/landuse/landfill.json b/data/presets/landuse/landfill.json
index 7c84159f..c821730e 100644
--- a/data/presets/landuse/landfill.json
+++ b/data/presets/landuse/landfill.json
@@ -8,10 +8,8 @@
"operator"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"tags": {
"landuse": "landfill"
diff --git a/data/presets/landuse/meadow_orchard/meadow.json b/data/presets/landuse/meadow_orchard/meadow.json
new file mode 100644
index 00000000..ee4fb8ae
--- /dev/null
+++ b/data/presets/landuse/meadow_orchard/meadow.json
@@ -0,0 +1,37 @@
+{
+ "icon": "maki-park",
+ "fields": [
+ "name",
+ "operator",
+ "trees"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "species/wikidata",
+ "surface",
+ "description"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "meadow",
+ "meadow": "meadow_orchard"
+ },
+ "reference": {
+ "key": "meadow",
+ "value": "meadow_orchard"
+ },
+ "terms": [
+ "fruit",
+ "maedow"
+ ],
+ "name": "Meadow With Fruit Trees",
+ "matchScore": 0.9,
+ "locationSet": {
+ "include": [
+ "Q46"
+ ]
+ }
+}
diff --git a/data/presets/landuse/meadow_orchard/orchard.json b/data/presets/landuse/meadow_orchard/orchard.json
new file mode 100644
index 00000000..28cd0667
--- /dev/null
+++ b/data/presets/landuse/meadow_orchard/orchard.json
@@ -0,0 +1,37 @@
+{
+ "icon": "maki-park",
+ "fields": [
+ "name",
+ "operator",
+ "trees"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "species/wikidata",
+ "surface",
+ "description"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "orchard",
+ "orchard": "meadow_orchard"
+ },
+ "reference": {
+ "key": "orchard",
+ "value": "meadow_orchard"
+ },
+ "terms": [
+ "fruit",
+ "maedow"
+ ],
+ "name": "Orchard Planted in a Meadow",
+ "matchScore": 0.9,
+ "locationSet": {
+ "include": [
+ "Q46"
+ ]
+ }
+}
diff --git a/data/presets/landuse/military.json b/data/presets/landuse/military.json
index ea843049..6506218f 100644
--- a/data/presets/landuse/military.json
+++ b/data/presets/landuse/military.json
@@ -4,10 +4,8 @@
"name"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
"area"
diff --git a/data/presets/landuse/military/_danger_area_point.json b/data/presets/landuse/military/_danger_area_point.json
new file mode 100644
index 00000000..61bd87c5
--- /dev/null
+++ b/data/presets/landuse/military/_danger_area_point.json
@@ -0,0 +1,19 @@
+{
+ "icon": "maki-danger",
+ "fields": [
+ "{landuse/military/danger_area}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "military": "danger_area"
+ },
+ "addTags": {
+ "landuse": "military",
+ "military": "danger_area"
+ },
+ "searchable": false,
+ "name": "{landuse/military/danger_area}"
+}
diff --git a/data/presets/landuse/military/danger_area.json b/data/presets/landuse/military/danger_area.json
index 6c38b435..c175261d 100644
--- a/data/presets/landuse/military/danger_area.json
+++ b/data/presets/landuse/military/danger_area.json
@@ -4,8 +4,6 @@
"name"
],
"geometry": [
- "point",
- "vertex",
"area"
],
"tags": {
@@ -31,5 +29,5 @@
"troop",
"war"
],
- "name": "Danger Area"
+ "name": "Military Danger Area"
}
diff --git a/data/presets/landuse/orchard.json b/data/presets/landuse/orchard.json
index 8c5a2d11..6ac03cca 100644
--- a/data/presets/landuse/orchard.json
+++ b/data/presets/landuse/orchard.json
@@ -6,10 +6,8 @@
"trees"
],
"moreFields": [
+ "{@templates/contact}",
"address",
- "email",
- "fax",
- "phone",
"species/wikidata"
],
"geometry": [
diff --git a/data/presets/landuse/plant_nursery.json b/data/presets/landuse/plant_nursery.json
index eb3ead2d..c5b447ed 100644
--- a/data/presets/landuse/plant_nursery.json
+++ b/data/presets/landuse/plant_nursery.json
@@ -6,10 +6,8 @@
"plant"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
"area"
diff --git a/data/presets/landuse/quarry.json b/data/presets/landuse/quarry.json
index 5777e6ab..42ef460c 100644
--- a/data/presets/landuse/quarry.json
+++ b/data/presets/landuse/quarry.json
@@ -10,10 +10,8 @@
"resource"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"tags": {
"landuse": "quarry"
diff --git a/data/presets/landuse/railway.json b/data/presets/landuse/railway.json
index 198a7a62..9edfebad 100644
--- a/data/presets/landuse/railway.json
+++ b/data/presets/landuse/railway.json
@@ -13,9 +13,9 @@
"depot",
"rail",
"railway",
+ "track",
"train",
- "train depot",
- "track"
+ "train depot"
],
"name": "Railway Corridor"
}
diff --git a/data/presets/landuse/recreation_ground.json b/data/presets/landuse/recreation_ground.json
index 404fb4d2..c63c251a 100644
--- a/data/presets/landuse/recreation_ground.json
+++ b/data/presets/landuse/recreation_ground.json
@@ -7,10 +7,8 @@
"name"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"tags": {
"landuse": "recreation_ground"
diff --git a/data/presets/landuse/religious.json b/data/presets/landuse/religious.json
index d4fd2d95..2e0588f2 100644
--- a/data/presets/landuse/religious.json
+++ b/data/presets/landuse/religious.json
@@ -9,10 +9,8 @@
"denomination"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"tags": {
"landuse": "religious"
@@ -26,11 +24,11 @@
"muslim",
"place of worship",
"shinto",
- "sikh",
- "taoist",
- "temple",
"shrine",
- "synagogue"
+ "sikh",
+ "synagogue",
+ "taoist",
+ "temple"
],
"name": "Religious Area"
}
diff --git a/data/presets/landuse/retail.json b/data/presets/landuse/retail.json
index 33785afb..d36a2f5b 100644
--- a/data/presets/landuse/retail.json
+++ b/data/presets/landuse/retail.json
@@ -7,10 +7,8 @@
"name"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"tags": {
"landuse": "retail"
diff --git a/data/presets/landuse/salt_pond.json b/data/presets/landuse/salt_pond.json
index 8b8bf0fe..107586c0 100644
--- a/data/presets/landuse/salt_pond.json
+++ b/data/presets/landuse/salt_pond.json
@@ -14,8 +14,8 @@
"evapoation",
"saline",
"salt",
- "salt works",
- "salt pan"
+ "salt pan",
+ "salt works"
],
"aliases": [
"Salt Pond",
diff --git a/data/presets/landuse/vineyard.json b/data/presets/landuse/vineyard.json
index a913e40c..48c07a45 100644
--- a/data/presets/landuse/vineyard.json
+++ b/data/presets/landuse/vineyard.json
@@ -6,10 +6,8 @@
"grape_variety"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "phone"
+ "{@templates/contact}",
+ "address"
],
"geometry": [
"area"
diff --git a/data/presets/landuse/winter_sports.json b/data/presets/landuse/winter_sports.json
index 7092e853..7d621758 100644
--- a/data/presets/landuse/winter_sports.json
+++ b/data/presets/landuse/winter_sports.json
@@ -10,8 +10,7 @@
"moreFields": [
"access_simple",
"address",
- "opening_hours",
- "opening_hours/covid19"
+ "opening_hours"
],
"tags": {
"landuse": "winter_sports"
diff --git a/data/presets/leisure/amusement_arcade.json b/data/presets/leisure/amusement_arcade.json
index 8b9c5e3e..ef991867 100644
--- a/data/presets/leisure/amusement_arcade.json
+++ b/data/presets/leisure/amusement_arcade.json
@@ -7,32 +7,22 @@
"building_area_yes"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
"max_age",
"min_age",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
"area"
],
"terms": [
- "pay-to-play games",
- "video games",
"driving simulators",
- "pinball machines"
+ "pay-to-play games",
+ "pinball machines",
+ "video games"
],
"tags": {
"leisure": "amusement_arcade"
diff --git a/data/presets/leisure/bathing_place.json b/data/presets/leisure/bathing_place.json
new file mode 100644
index 00000000..34b83abd
--- /dev/null
+++ b/data/presets/leisure/bathing_place.json
@@ -0,0 +1,37 @@
+{
+ "aliases": [
+ "Bathing Spot",
+ "Dip Spot",
+ "Dipping Spot",
+ "Swim Spot",
+ "Swimming Spot",
+ "Wild Swimming Spot"
+ ],
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "access_simple",
+ "informal",
+ "shower",
+ "toilets",
+ "drinking_water_available",
+ "picnic_table"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "bathing",
+ "dipping",
+ "ladder",
+ "pier",
+ "swimming",
+ "swimming hole",
+ "water"
+ ],
+ "tags": {
+ "leisure": "bathing_place"
+ },
+ "name": "Bathing Place"
+}
diff --git a/data/presets/leisure/beach_resort.json b/data/presets/leisure/beach_resort.json
index f2999af6..a625ea0d 100644
--- a/data/presets/leisure/beach_resort.json
+++ b/data/presets/leisure/beach_resort.json
@@ -9,11 +9,8 @@
"charge_fee"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
- "opening_hours/covid19",
- "phone",
"smoking"
],
"geometry": [
diff --git a/data/presets/leisure/bird_hide.json b/data/presets/leisure/bird_hide.json
index d2411cc0..468d9635 100644
--- a/data/presets/leisure/bird_hide.json
+++ b/data/presets/leisure/bird_hide.json
@@ -6,9 +6,6 @@
"address",
"opening_hours"
],
- "moreFields": [
- "opening_hours/covid19"
- ],
"geometry": [
"point",
"area"
diff --git a/data/presets/leisure/bleachers.json b/data/presets/leisure/bleachers.json
index d52b8d3b..d0b86973 100644
--- a/data/presets/leisure/bleachers.json
+++ b/data/presets/leisure/bleachers.json
@@ -7,13 +7,13 @@
"leisure": "bleachers"
},
"terms": [
- "crowd",
"bench",
+ "crowd",
+ "seat",
+ "seating",
"sports",
"stand",
- "stands",
- "seat",
- "seating"
+ "stands"
],
"name": "Bleachers"
}
diff --git a/data/presets/leisure/bowling_alley.json b/data/presets/leisure/bowling_alley.json
index 4cd3dca6..66a6d538 100644
--- a/data/presets/leisure/bowling_alley.json
+++ b/data/presets/leisure/bowling_alley.json
@@ -8,20 +8,12 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
"min_age",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "smoking",
- "wheelchair"
+ "fhrs/id-GB",
+ "smoking"
],
"geometry": [
"point",
diff --git a/data/presets/leisure/dance.json b/data/presets/leisure/dance.json
index 2493fd89..649d94ff 100644
--- a/data/presets/leisure/dance.json
+++ b/data/presets/leisure/dance.json
@@ -6,23 +6,21 @@
"address",
"building_area_yes",
"opening_hours",
- "dance/style"
+ "dance/style",
+ "dance/teaching"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
+ "{@templates/poi}"
],
"geometry": [
"point",
"area"
],
"terms": [
+ "ballet",
+ "ballet studio",
"ballroom",
+ "dance studio",
"jive",
"swing",
"tango",
diff --git a/data/presets/leisure/disc_golf_course.json b/data/presets/leisure/disc_golf_course.json
index a7fdd5e7..3845cdf9 100644
--- a/data/presets/leisure/disc_golf_course.json
+++ b/data/presets/leisure/disc_golf_course.json
@@ -10,14 +10,11 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/contact}",
"address",
"dog",
- "email",
- "fax",
"gnis/feature_id-US",
"lit",
- "opening_hours/covid19",
- "phone",
"wheelchair"
],
"geometry": [
@@ -27,14 +24,10 @@
"tags": {
"leisure": "disc_golf_course"
},
- "addTags": {
- "leisure": "disc_golf_course",
- "sport": "disc_golf"
- },
"terms": [
"disk golf",
- "frisbee golf",
"flying disc golf",
+ "frisbee golf",
"frolf",
"ultimate"
],
diff --git a/data/presets/leisure/dog_park.json b/data/presets/leisure/dog_park.json
index d12c6071..64d448c3 100644
--- a/data/presets/leisure/dog_park.json
+++ b/data/presets/leisure/dog_park.json
@@ -9,14 +9,10 @@
"website"
],
"moreFields": [
- "dog",
- "email",
- "fax",
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "dog_yes",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "phone",
"ref"
],
"geometry": [
diff --git a/data/presets/leisure/escape_game.json b/data/presets/leisure/escape_game.json
index d86a6d2f..b95e2d51 100644
--- a/data/presets/leisure/escape_game.json
+++ b/data/presets/leisure/escape_game.json
@@ -9,19 +9,13 @@
"fee",
"payment_multi_fee",
"charge_fee",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "level",
- "opening_hours/covid19",
- "phone",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
diff --git a/data/presets/leisure/firepit.json b/data/presets/leisure/firepit.json
index 03d8cdc2..e8c6d532 100644
--- a/data/presets/leisure/firepit.json
+++ b/data/presets/leisure/firepit.json
@@ -6,7 +6,8 @@
"width"
],
"moreFields": [
- "ref"
+ "ref",
+ "wood_provided"
],
"geometry": [
"point",
diff --git a/data/presets/leisure/fitness_centre.json b/data/presets/leisure/fitness_centre.json
index 79da278f..d4b85e2b 100644
--- a/data/presets/leisure/fitness_centre.json
+++ b/data/presets/leisure/fitness_centre.json
@@ -10,19 +10,12 @@
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"branch_brand",
"brand",
"charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "payment_multi"
+ "fee"
],
"geometry": [
"point",
@@ -32,8 +25,8 @@
"leisure": "fitness_centre"
},
"terms": [
- "health",
"gym",
+ "health",
"leisure",
"pilates",
"studio"
diff --git a/data/presets/leisure/fitness_station.json b/data/presets/leisure/fitness_station.json
index d680d949..fb125c8b 100644
--- a/data/presets/leisure/fitness_station.json
+++ b/data/presets/leisure/fitness_station.json
@@ -8,8 +8,7 @@
],
"moreFields": [
"access_simple",
- "opening_hours",
- "opening_hours/covid19"
+ "opening_hours"
],
"geometry": [
"point",
@@ -29,7 +28,8 @@
"terms": [
"exercise",
"fitness",
- "gym"
+ "gym",
+ "street fitness"
],
"aliases": [
"Calisthenics Park",
diff --git a/data/presets/leisure/fitness_station/horizontal_bar.json b/data/presets/leisure/fitness_station/horizontal_bar.json
index 74feeee5..d0ac7fdd 100644
--- a/data/presets/leisure/fitness_station/horizontal_bar.json
+++ b/data/presets/leisure/fitness_station/horizontal_bar.json
@@ -19,13 +19,13 @@
},
"terms": [
"bar",
- "chinup",
"chin up",
+ "chinup",
"exercise",
"fitness",
"gym",
- "pullup",
"pull up",
+ "pullup",
"trim trail"
],
"name": "Exercise Horizontal Bar"
diff --git a/data/presets/leisure/fitness_station/horizontal_ladder.json b/data/presets/leisure/fitness_station/horizontal_ladder.json
index 77b1171e..539ccf4b 100644
--- a/data/presets/leisure/fitness_station/horizontal_ladder.json
+++ b/data/presets/leisure/fitness_station/horizontal_ladder.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-pitch",
+ "icon": "roentgen-horizontal_ladder",
"geometry": [
"point",
"area"
@@ -19,15 +19,15 @@
},
"terms": [
"bar",
- "chinup",
"chin up",
+ "chinup",
"exercise",
"fitness",
"gym",
"ladder",
"monkey bars",
- "pullup",
"pull up",
+ "pullup",
"trim trail"
],
"name": "Exercise Monkey Bars"
diff --git a/data/presets/leisure/fitness_station/parallel_bars.json b/data/presets/leisure/fitness_station/parallel_bars.json
index 9bcaad97..ec4df33e 100644
--- a/data/presets/leisure/fitness_station/parallel_bars.json
+++ b/data/presets/leisure/fitness_station/parallel_bars.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-pitch",
+ "icon": "temaki-horizontal_bar",
"geometry": [
"point",
"area"
diff --git a/data/presets/leisure/fitness_station/push-up.json b/data/presets/leisure/fitness_station/push-up.json
index 74b055b0..8d8c8a91 100644
--- a/data/presets/leisure/fitness_station/push-up.json
+++ b/data/presets/leisure/fitness_station/push-up.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-pitch",
+ "icon": "roentgen-bench",
"geometry": [
"point",
"area"
@@ -22,8 +22,8 @@
"exercise",
"fitness",
"gym",
- "pushup",
"push up",
+ "pushup",
"trim trail"
],
"name": "Push-Up Station"
diff --git a/data/presets/leisure/fitness_station/rings.json b/data/presets/leisure/fitness_station/rings.json
index f8b0251c..bc79c93b 100644
--- a/data/presets/leisure/fitness_station/rings.json
+++ b/data/presets/leisure/fitness_station/rings.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-pitch",
+ "icon": "roentgen-rings",
"geometry": [
"point",
"area"
@@ -22,8 +22,8 @@
"fitness",
"gym",
"muscle up",
- "pullup",
"pull up",
+ "pullup",
"trim trail"
],
"name": "Exercise Rings"
diff --git a/data/presets/leisure/fitness_station/sign.json b/data/presets/leisure/fitness_station/sign.json
index 828e8fb6..6b9f999f 100644
--- a/data/presets/leisure/fitness_station/sign.json
+++ b/data/presets/leisure/fitness_station/sign.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-pitch",
+ "icon": "roentgen-i_in_square",
"geometry": [
"point",
"area"
diff --git a/data/presets/leisure/fitness_station/sit-up.json b/data/presets/leisure/fitness_station/sit-up.json
index c50d0220..05a7e96c 100644
--- a/data/presets/leisure/fitness_station/sit-up.json
+++ b/data/presets/leisure/fitness_station/sit-up.json
@@ -22,8 +22,8 @@
"exercise",
"fitness",
"gym",
- "situp",
"sit up",
+ "situp",
"trim trail"
],
"name": "Sit-Up Station"
diff --git a/data/presets/leisure/garden.json b/data/presets/leisure/garden.json
index 959d3bf6..fc6bc7b9 100644
--- a/data/presets/leisure/garden.json
+++ b/data/presets/leisure/garden.json
@@ -11,10 +11,8 @@
"charge_fee"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
+ "{@templates/contact}",
+ "gnis/feature_id-US"
],
"geometry": [
"point",
diff --git a/data/presets/leisure/garden/kitchen.json b/data/presets/leisure/garden/kitchen.json
new file mode 100644
index 00000000..71cca3ce
--- /dev/null
+++ b/data/presets/leisure/garden/kitchen.json
@@ -0,0 +1,35 @@
+{
+ "icon": "fas-carrot",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name",
+ "garden/type",
+ "operator",
+ "operator/type"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "access_simple",
+ "charge_fee",
+ "fee",
+ "gnis/feature_id-US",
+ "payment_multi_fee"
+ ],
+ "tags": {
+ "leisure": "garden",
+ "garden:style": "kitchen"
+ },
+ "reference": {
+ "key": "garden:style"
+ },
+ "terms": [
+ "cook's garden",
+ "culinary garden",
+ "edible garden",
+ "potager garden",
+ "vegetable garden"
+ ],
+ "name": "Kitchen Garden"
+}
diff --git a/data/presets/leisure/golf_course.json b/data/presets/leisure/golf_course.json
index 6d19b93b..5f665764 100644
--- a/data/presets/leisure/golf_course.json
+++ b/data/presets/leisure/golf_course.json
@@ -7,12 +7,7 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
+ "{@templates/poi}"
],
"geometry": [
"area",
diff --git a/data/presets/leisure/hackerspace.json b/data/presets/leisure/hackerspace.json
index f86fd3b0..cdcd44e6 100644
--- a/data/presets/leisure/hackerspace.json
+++ b/data/presets/leisure/hackerspace.json
@@ -9,29 +9,22 @@
"fee",
"payment_multi_fee",
"charge_fee",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "phone",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
"area"
],
"terms": [
- "makerspace",
+ "hacklab",
"hackspace",
- "hacklab"
+ "makerspace"
],
"tags": {
"leisure": "hackerspace"
diff --git a/data/presets/leisure/horse_riding.json b/data/presets/leisure/horse_riding.json
index fe154f01..add87c50 100644
--- a/data/presets/leisure/horse_riding.json
+++ b/data/presets/leisure/horse_riding.json
@@ -7,29 +7,27 @@
"address"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
+ "contact/facebook",
"gnis/feature_id-US",
"opening_hours",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
+ "payment_multi"
],
"geometry": [
"point",
"area"
],
"terms": [
+ "equestrian center",
"equestrian facility",
- "equestrian",
"horse farm",
"horse park",
"horse ranch",
+ "horse riding",
"horse riding center",
"horse riding facility",
- "horse riding",
- "horse stables",
"riding facility",
+ "riding stables",
"stables"
],
"tags": {
diff --git a/data/presets/leisure/hot_tub.json b/data/presets/leisure/hot_tub.json
new file mode 100644
index 00000000..b7b38f2a
--- /dev/null
+++ b/data/presets/leisure/hot_tub.json
@@ -0,0 +1,27 @@
+{
+ "icon": "fas-hot-tub-person",
+ "fields": [
+ "access_simple",
+ "location_pool"
+ ],
+ "moreFields": [
+ "level",
+ "gender",
+ "lit",
+ "nudism",
+ "opening_hours",
+ "operator"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "terms": [
+ "jacuzzi",
+ "spa"
+ ],
+ "tags": {
+ "leisure": "hot_tub"
+ },
+ "name": "Hot Tub"
+}
diff --git a/data/presets/leisure/ice_rink.json b/data/presets/leisure/ice_rink.json
index 03220009..37a0f033 100644
--- a/data/presets/leisure/ice_rink.json
+++ b/data/presets/leisure/ice_rink.json
@@ -3,32 +3,27 @@
"fields": [
"name",
"seasonal",
- "sport_ice",
+ "sport/sport_ice",
"operator",
"address",
"building",
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
+ "payment_multi"
],
"geometry": [
"area",
"point"
],
"terms": [
+ "curling",
"hockey",
- "skating",
- "curling"
+ "skating"
],
"tags": {
"leisure": "ice_rink"
diff --git a/data/presets/leisure/indoor_play.json b/data/presets/leisure/indoor_play.json
index 7742d177..5af9b8ec 100644
--- a/data/presets/leisure/indoor_play.json
+++ b/data/presets/leisure/indoor_play.json
@@ -9,24 +9,18 @@
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"blind",
"branch_brand",
"brand",
"charge_fee",
"dog",
- "email",
- "fax",
"fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"max_age",
"min_age",
- "opening_hours/covid19",
- "operator",
- "payment_multi",
- "wheelchair"
+ "fhrs/id-GB",
+ "operator"
],
"geometry": [
"point",
diff --git a/data/presets/leisure/marina.json b/data/presets/leisure/marina.json
index 94fb1f95..78902127 100644
--- a/data/presets/leisure/marina.json
+++ b/data/presets/leisure/marina.json
@@ -11,14 +11,11 @@
"power_supply"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/contact}",
"address",
- "email",
- "fax",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "phone",
+ "seamark/harbour/category_marina",
"seamark/type",
"vhf"
],
diff --git a/data/presets/leisure/marina_no_facilities.json b/data/presets/leisure/marina_no_facilities.json
new file mode 100644
index 00000000..70f7d94a
--- /dev/null
+++ b/data/presets/leisure/marina_no_facilities.json
@@ -0,0 +1,41 @@
+{
+ "icon": "temaki-sailboat",
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "gnis/feature_id-US",
+ "seamark/harbour/category_marina",
+ "seamark/type"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "terms": [
+ "boats",
+ "docks",
+ "harbor",
+ "harbour",
+ "marina",
+ "moorings",
+ "yachts"
+ ],
+ "tags": {
+ "seamark:harbour:category": "marina_no_facilities"
+ },
+ "addTags": {
+ "leisure": "marina",
+ "seamark:type": "harbour",
+ "seamark:harbour:category": "marina_no_facilities"
+ },
+ "name": "Yacht Berths"
+}
diff --git a/data/presets/leisure/miniature_golf.json b/data/presets/leisure/miniature_golf.json
index 425127b9..a599ba60 100644
--- a/data/presets/leisure/miniature_golf.json
+++ b/data/presets/leisure/miniature_golf.json
@@ -10,11 +10,8 @@
"charge_fee"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "phone"
+ "{@templates/contact}",
+ "gnis/feature_id-US"
],
"geometry": [
"area",
diff --git a/data/presets/leisure/nature_reserve.json b/data/presets/leisure/nature_reserve.json
index 9d8dbd85..374c65f3 100644
--- a/data/presets/leisure/nature_reserve.json
+++ b/data/presets/leisure/nature_reserve.json
@@ -12,13 +12,10 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/contact}",
"access_simple",
"dog",
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "phone"
+ "gnis/feature_id-US"
],
"tags": {
"leisure": "nature_reserve"
diff --git a/data/presets/leisure/outdoor_seating.json b/data/presets/leisure/outdoor_seating.json
index 5332f0c3..1587b9fb 100644
--- a/data/presets/leisure/outdoor_seating.json
+++ b/data/presets/leisure/outdoor_seating.json
@@ -18,13 +18,13 @@
],
"terms": [
"al fresco",
- "beer garden",
- "dining",
- "cafe",
- "restaurant",
- "pub",
"bar",
- "patio"
+ "beer garden",
+ "cafe",
+ "dining",
+ "patio",
+ "pub",
+ "restaurant"
],
"tags": {
"leisure": "outdoor_seating"
diff --git a/data/presets/leisure/park.json b/data/presets/leisure/park.json
index f169c5f3..c6b27d91 100644
--- a/data/presets/leisure/park.json
+++ b/data/presets/leisure/park.json
@@ -8,13 +8,10 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/contact}",
"access_simple",
"dog",
- "email",
- "fax",
"gnis/feature_id-US",
- "opening_hours/covid19",
- "phone",
"smoking"
],
"geometry": [
diff --git a/data/presets/leisure/picnic_table/chess.json b/data/presets/leisure/picnic_table/chess.json
index d2c48022..7ab7f3f2 100644
--- a/data/presets/leisure/picnic_table/chess.json
+++ b/data/presets/leisure/picnic_table/chess.json
@@ -13,10 +13,10 @@
},
"terms": [
"bench",
- "chess board",
"checkerboard",
"checkers",
"chequerboard",
+ "chess board",
"game table"
],
"name": "Chess Table"
diff --git a/data/presets/leisure/pitch.json b/data/presets/leisure/pitch.json
index fbe21645..fd69ded7 100644
--- a/data/presets/leisure/pitch.json
+++ b/data/presets/leisure/pitch.json
@@ -5,7 +5,8 @@
"sport",
"access_simple",
"surface",
- "lit"
+ "lit",
+ "ref"
],
"moreFields": [
"address",
diff --git a/data/presets/leisure/pitch/_athletics.json b/data/presets/leisure/pitch/_athletics.json
new file mode 100644
index 00000000..9424cc39
--- /dev/null
+++ b/data/presets/leisure/pitch/_athletics.json
@@ -0,0 +1,30 @@
+{
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "fields": [
+ "athletics_pitch",
+ "access_simple",
+ "surface",
+ "lit"
+ ],
+ "moreFields": [
+ "{leisure/pitch}",
+ "ref"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "athletics"
+ },
+ "terms": [
+ "athletics"
+ ],
+ "name": "Track & Field Pitch",
+ "searchable": false
+}
diff --git a/data/presets/leisure/pitch/athletics/discus_throw.json b/data/presets/leisure/pitch/athletics/discus_throw.json
new file mode 100644
index 00000000..077b8305
--- /dev/null
+++ b/data/presets/leisure/pitch/athletics/discus_throw.json
@@ -0,0 +1,21 @@
+{
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "discus_throw"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "discus_throw"
+ },
+ "aliases": [
+ "Discus Ring",
+ "Discus Sector"
+ ],
+ "name": "Discus Ring / Sector"
+}
diff --git a/data/presets/leisure/pitch/athletics/hammer_throw.json b/data/presets/leisure/pitch/athletics/hammer_throw.json
new file mode 100644
index 00000000..c063e636
--- /dev/null
+++ b/data/presets/leisure/pitch/athletics/hammer_throw.json
@@ -0,0 +1,21 @@
+{
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "hammer_throw"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "hammer_throw"
+ },
+ "aliases": [
+ "Hammer Throw Ring",
+ "Hammer Throw Sector"
+ ],
+ "name": "Hammer Throw Ring / Sector"
+}
diff --git a/data/presets/leisure/pitch/athletics/high_jump.json b/data/presets/leisure/pitch/athletics/high_jump.json
new file mode 100644
index 00000000..5dcfe35d
--- /dev/null
+++ b/data/presets/leisure/pitch/athletics/high_jump.json
@@ -0,0 +1,17 @@
+{
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "high_jump"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "high_jump"
+ },
+ "name": "High Jump Pit"
+}
diff --git a/data/presets/leisure/pitch/athletics/javelin_throw.json b/data/presets/leisure/pitch/athletics/javelin_throw.json
new file mode 100644
index 00000000..dc887417
--- /dev/null
+++ b/data/presets/leisure/pitch/athletics/javelin_throw.json
@@ -0,0 +1,17 @@
+{
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "javelin_throw"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "javelin_throw"
+ },
+ "name": "Javelin Sector"
+}
diff --git a/data/presets/leisure/pitch/athletics/long_jump.json b/data/presets/leisure/pitch/athletics/long_jump.json
new file mode 100644
index 00000000..895bbb0f
--- /dev/null
+++ b/data/presets/leisure/pitch/athletics/long_jump.json
@@ -0,0 +1,17 @@
+{
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "long_jump"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "long_jump"
+ },
+ "name": "Long Jump Pit"
+}
diff --git a/data/presets/leisure/pitch/athletics/pole_vault.json b/data/presets/leisure/pitch/athletics/pole_vault.json
new file mode 100644
index 00000000..63f76c7a
--- /dev/null
+++ b/data/presets/leisure/pitch/athletics/pole_vault.json
@@ -0,0 +1,17 @@
+{
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "pole_vault"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "pole_vault"
+ },
+ "name": "Pole Vault Pit"
+}
diff --git a/data/presets/leisure/pitch/athletics/shot_put.json b/data/presets/leisure/pitch/athletics/shot_put.json
new file mode 100644
index 00000000..4e450c1c
--- /dev/null
+++ b/data/presets/leisure/pitch/athletics/shot_put.json
@@ -0,0 +1,21 @@
+{
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "shot_put"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "shot_put"
+ },
+ "aliases": [
+ "Shot Put Ring",
+ "Shot Put Pit"
+ ],
+ "name": "Shot Put Ring / Pit"
+}
diff --git a/data/presets/leisure/pitch/athletics/triple_jump.json b/data/presets/leisure/pitch/athletics/triple_jump.json
new file mode 100644
index 00000000..57178ffc
--- /dev/null
+++ b/data/presets/leisure/pitch/athletics/triple_jump.json
@@ -0,0 +1,17 @@
+{
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "triple_jump"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "triple_jump"
+ },
+ "name": "Triple Jump Pit"
+}
diff --git a/data/presets/leisure/pitch/australian_football.json b/data/presets/leisure/pitch/australian_football.json
index da6b4207..1d6f9210 100644
--- a/data/presets/leisure/pitch/australian_football.json
+++ b/data/presets/leisure/pitch/australian_football.json
@@ -13,8 +13,8 @@
"value": "australian_football"
},
"terms": [
- "Aussie",
- "AFL",
+ "afl",
+ "aussie",
"football"
],
"name": "Australian Football Field"
diff --git a/data/presets/leisure/pitch/chess.json b/data/presets/leisure/pitch/chess.json
index b8456b73..e3eb5d05 100644
--- a/data/presets/leisure/pitch/chess.json
+++ b/data/presets/leisure/pitch/chess.json
@@ -13,10 +13,10 @@
"value": "chess"
},
"terms": [
- "chessboard",
"checkerboard",
"checkers",
"chequerboard",
+ "chessboard",
"garden chess",
"large chess",
"oversize chess"
diff --git a/data/presets/leisure/pitch/equestrian.json b/data/presets/leisure/pitch/equestrian.json
index cc30e510..5f983ac6 100644
--- a/data/presets/leisure/pitch/equestrian.json
+++ b/data/presets/leisure/pitch/equestrian.json
@@ -17,27 +17,29 @@
},
"terms": [
"arena",
+ "dressage",
"dressage arena",
"dressage ring",
- "dressage",
- "equestrian",
- "horse riding ring",
- "horse riding",
+ "equestrian arena",
"horse",
- "horseback riding arena",
- "horseback riding",
+ "horse riding",
+ "horse riding ring",
"horseback",
+ "horseback riding",
+ "horseback riding arena",
"jumping arena",
"jumping ring",
"longeing",
"pen",
- "riding ring",
+ "polo",
"riding",
+ "riding ring",
"ring",
+ "rodeo",
"round pen"
],
"aliases": [
"Horseback Riding Ring"
],
- "name": "Horseback Riding Arena"
+ "name": "Horseback Riding / Rodeo Arena"
}
diff --git a/data/presets/leisure/pitch/futsal.json b/data/presets/leisure/pitch/futsal.json
index 87f34c6d..c8a82608 100644
--- a/data/presets/leisure/pitch/futsal.json
+++ b/data/presets/leisure/pitch/futsal.json
@@ -13,8 +13,8 @@
"value": "futsal"
},
"terms": [
- "minifootball",
- "five-a-side soccer"
+ "five-a-side soccer",
+ "minifootball"
],
"name": "Futsal Court"
}
diff --git a/data/presets/leisure/pitch/padel.json b/data/presets/leisure/pitch/padel.json
index ab60a044..fcf8ef06 100644
--- a/data/presets/leisure/pitch/padel.json
+++ b/data/presets/leisure/pitch/padel.json
@@ -13,8 +13,8 @@
"value": "padel"
},
"terms": [
- "tennis",
- "paddle"
+ "paddle",
+ "tennis"
],
"name": "Padel Court"
}
diff --git a/data/presets/leisure/pitch/pickleball.json b/data/presets/leisure/pitch/pickleball.json
index 51274b95..0eefb412 100644
--- a/data/presets/leisure/pitch/pickleball.json
+++ b/data/presets/leisure/pitch/pickleball.json
@@ -13,8 +13,8 @@
"value": "pickleball"
},
"terms": [
- "tennis",
- "paddleball"
+ "paddleball",
+ "tennis"
],
"name": "Pickleball Court"
}
diff --git a/data/presets/leisure/pitch/shooting.json b/data/presets/leisure/pitch/shooting.json
index 50a4a5a8..9c4a22fe 100644
--- a/data/presets/leisure/pitch/shooting.json
+++ b/data/presets/leisure/pitch/shooting.json
@@ -14,9 +14,9 @@
},
"terms": [
"firing range",
+ "gun practice",
"gun range",
"shooting gallery",
- "gun practice",
"shooting practice",
"target practice"
],
diff --git a/data/presets/leisure/pitch/skateboard.json b/data/presets/leisure/pitch/skateboard.json
index 34feb5ff..2f5c183b 100644
--- a/data/presets/leisure/pitch/skateboard.json
+++ b/data/presets/leisure/pitch/skateboard.json
@@ -13,7 +13,7 @@
"value": "skateboard"
},
"terms": [
- "BMX",
+ "bmx",
"scooter",
"skateboarding",
"skatepark",
diff --git a/data/presets/leisure/pitch/table_tennis.json b/data/presets/leisure/pitch/table_tennis.json
index 992336b1..83984e8c 100644
--- a/data/presets/leisure/pitch/table_tennis.json
+++ b/data/presets/leisure/pitch/table_tennis.json
@@ -18,8 +18,8 @@
"value": "table_tennis"
},
"terms": [
- "table tennis",
- "ping pong"
+ "ping pong",
+ "table tennis"
],
"name": "Ping Pong Table"
}
diff --git a/data/presets/leisure/pitch/tetherball.json b/data/presets/leisure/pitch/tetherball.json
index 135f54aa..0bdfc62c 100644
--- a/data/presets/leisure/pitch/tetherball.json
+++ b/data/presets/leisure/pitch/tetherball.json
@@ -13,8 +13,8 @@
"value": "tetherball"
},
"terms": [
- "tether tennis",
- "swingball"
+ "swingball",
+ "tether tennis"
],
"name": "Tetherball Court"
}
diff --git a/data/presets/leisure/playground.json b/data/presets/leisure/playground.json
index 34e6f4b1..3314258d 100644
--- a/data/presets/leisure/playground.json
+++ b/data/presets/leisure/playground.json
@@ -3,13 +3,13 @@
"fields": [
"name",
"operator",
- "playground/theme",
"surface",
"access_simple",
"min_age",
"max_age"
],
"moreFields": [
+ "playground/theme",
"blind",
"dog",
"gnis/feature_id-US",
diff --git a/data/presets/leisure/playground/indoor.json b/data/presets/leisure/playground/indoor.json
index ce0864ce..4448dc7d 100644
--- a/data/presets/leisure/playground/indoor.json
+++ b/data/presets/leisure/playground/indoor.json
@@ -6,10 +6,10 @@
],
"terms": [
"ball pit",
- "play pen",
- "play pit",
"indoor play area",
- "inside playground"
+ "inside playground",
+ "play pen",
+ "play pit"
],
"tags": {
"leisure": "playground",
diff --git a/data/presets/leisure/resort.json b/data/presets/leisure/resort.json
index 4891b5ba..9a1d063f 100644
--- a/data/presets/leisure/resort.json
+++ b/data/presets/leisure/resort.json
@@ -8,16 +8,9 @@
"opening_hours"
],
"moreFields": [
- "access_simple",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "access_simple"
],
"geometry": [
"point",
diff --git a/data/presets/leisure/sauna.json b/data/presets/leisure/sauna.json
index cf514ddc..3dbc1e55 100644
--- a/data/presets/leisure/sauna.json
+++ b/data/presets/leisure/sauna.json
@@ -11,12 +11,9 @@
"charge_fee"
],
"moreFields": [
- "email",
- "fax",
+ "{@templates/contact}",
"gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "phone"
+ "level"
],
"geometry": [
"point",
diff --git a/data/presets/leisure/slipway.json b/data/presets/leisure/slipway.json
index 497e14fc..9655f7fd 100644
--- a/data/presets/leisure/slipway.json
+++ b/data/presets/leisure/slipway.json
@@ -11,7 +11,6 @@
"moreFields": [
"lit",
"opening_hours",
- "opening_hours/covid19",
"seamark/type",
"width"
],
@@ -21,9 +20,9 @@
"line"
],
"terms": [
+ "boat landing",
"boat launch",
- "boat ramp",
- "boat landing"
+ "boat ramp"
],
"tags": {
"leisure": "slipway"
diff --git a/data/presets/leisure/slipway_drivable.json b/data/presets/leisure/slipway_drivable.json
index d0b27cbd..f6f0ff2c 100644
--- a/data/presets/leisure/slipway_drivable.json
+++ b/data/presets/leisure/slipway_drivable.json
@@ -11,9 +11,9 @@
"line"
],
"terms": [
+ "boat landing",
"boat launch",
- "boat ramp",
- "boat landing"
+ "boat ramp"
],
"tags": {
"leisure": "slipway",
diff --git a/data/presets/leisure/sports_centre.json b/data/presets/leisure/sports_centre.json
index 18728c40..86257433 100644
--- a/data/presets/leisure/sports_centre.json
+++ b/data/presets/leisure/sports_centre.json
@@ -13,13 +13,8 @@
"charge_fee"
],
"moreFields": [
- "access_simple",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "phone"
+ "{@templates/poi}",
+ "access_simple"
],
"geometry": [
"point",
diff --git a/data/presets/leisure/sports_centre/climbing.json b/data/presets/leisure/sports_centre/climbing.json
index 43985853..4e5f0760 100644
--- a/data/presets/leisure/sports_centre/climbing.json
+++ b/data/presets/leisure/sports_centre/climbing.json
@@ -13,9 +13,9 @@
"artificial climbing wall",
"belaying",
"bouldering",
- "rock climbing facility",
"indoor rock wall",
"rappeling",
+ "rock climbing facility",
"rock gym",
"ropes"
],
diff --git a/data/presets/leisure/sports_centre/climbing_adventure.json b/data/presets/leisure/sports_centre/climbing_adventure.json
new file mode 100644
index 00000000..9949c795
--- /dev/null
+++ b/data/presets/leisure/sports_centre/climbing_adventure.json
@@ -0,0 +1,25 @@
+{
+ "icon": "temaki-abseiling",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{leisure/sports_centre}"
+ ],
+ "terms": [
+ "obstacle course",
+ "rope climbing",
+ "ropes course",
+ "zip line"
+ ],
+ "tags": {
+ "leisure": "sports_centre",
+ "sport": "climbing_adventure"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "climbing_adventure"
+ },
+ "name": "Adventure Park"
+}
diff --git a/data/presets/leisure/sports_centre/horse_racing.json b/data/presets/leisure/sports_centre/horse_racing.json
index 2a10345d..cb16eca1 100644
--- a/data/presets/leisure/sports_centre/horse_racing.json
+++ b/data/presets/leisure/sports_centre/horse_racing.json
@@ -19,8 +19,8 @@
"terms": [
"equestrian race course",
"gallop",
- "horse race betting",
"horse race",
+ "horse race betting",
"horse racing",
"horseracing",
"race course",
diff --git a/data/presets/leisure/sports_centre/karting.json b/data/presets/leisure/sports_centre/karting.json
new file mode 100644
index 00000000..1590123f
--- /dev/null
+++ b/data/presets/leisure/sports_centre/karting.json
@@ -0,0 +1,21 @@
+{
+ "icon": "fas-flag-checkered",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "terms": [
+ "go cart",
+ "kart racing",
+ "karting"
+ ],
+ "tags": {
+ "leisure": "sports_centre",
+ "sport": "karting"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "karting"
+ },
+ "name": "Go Kart Facility"
+}
diff --git a/data/presets/leisure/sports_centre/shooting.json b/data/presets/leisure/sports_centre/shooting.json
index 2997e920..38b7ab0e 100644
--- a/data/presets/leisure/sports_centre/shooting.json
+++ b/data/presets/leisure/sports_centre/shooting.json
@@ -13,11 +13,11 @@
"value": "shooting"
},
"terms": [
- "shooting club",
"firing range",
- "gun range",
- "shooting gallery",
"gun practice",
+ "gun range",
+ "shooting club",
+ "shooting gallery",
"shooting practice",
"target practice"
],
diff --git a/data/presets/leisure/sports_hall.json b/data/presets/leisure/sports_hall.json
index a2a9b2fc..8a13c29d 100644
--- a/data/presets/leisure/sports_hall.json
+++ b/data/presets/leisure/sports_hall.json
@@ -12,7 +12,6 @@
"moreFields": [
"air_conditioning",
"level",
- "opening_hours/covid19",
"fee",
"payment_multi_fee",
"charge_fee",
diff --git a/data/presets/leisure/stadium.json b/data/presets/leisure/stadium.json
index 8ad99ef0..6dbc332e 100644
--- a/data/presets/leisure/stadium.json
+++ b/data/presets/leisure/stadium.json
@@ -7,10 +7,8 @@
"address"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
+ "{@templates/contact}",
+ "gnis/feature_id-US"
],
"geometry": [
"point",
diff --git a/data/presets/leisure/swimming_area.json b/data/presets/leisure/swimming_area.json
index 4c0dc4a7..a2ba1740 100644
--- a/data/presets/leisure/swimming_area.json
+++ b/data/presets/leisure/swimming_area.json
@@ -11,16 +11,15 @@
],
"moreFields": [
"opening_hours",
- "opening_hours/covid19",
"operator"
],
"geometry": [
"area"
],
"terms": [
+ "aquatics",
"dive",
- "water",
- "aquatics"
+ "water"
],
"tags": {
"leisure": "swimming_area"
diff --git a/data/presets/leisure/swimming_pool.json b/data/presets/leisure/swimming_pool.json
index c2762578..bcd5bfd6 100644
--- a/data/presets/leisure/swimming_pool.json
+++ b/data/presets/leisure/swimming_pool.json
@@ -13,7 +13,6 @@
"level",
"gnis/feature_id-US",
"opening_hours",
- "opening_hours/covid19",
"operator"
],
"geometry": [
@@ -21,9 +20,9 @@
"point"
],
"terms": [
+ "aquatics",
"dive",
- "water",
- "aquatics"
+ "water"
],
"tags": {
"leisure": "swimming_pool"
diff --git a/data/presets/leisure/track.json b/data/presets/leisure/track.json
index 45962ee1..7ff2b709 100644
--- a/data/presets/leisure/track.json
+++ b/data/presets/leisure/track.json
@@ -2,7 +2,7 @@
"icon": "temaki-racetrack_oval",
"fields": [
"surface",
- "sport_racing_nonmotor",
+ "sport/sport_racing_nonmotor",
"lit",
"width",
"lanes"
diff --git a/data/presets/leisure/track/_athletics.json b/data/presets/leisure/track/_athletics.json
new file mode 100644
index 00000000..8d7d8751
--- /dev/null
+++ b/data/presets/leisure/track/_athletics.json
@@ -0,0 +1,22 @@
+{
+ "icon": "fas-running",
+ "fields": [
+ "athletics_track",
+ "{leisure/track}"
+ ],
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "athletics"
+ },
+ "name": "Track & Field Runway",
+ "searchable": false
+}
diff --git a/data/presets/leisure/track/athletics/_running.json b/data/presets/leisure/track/athletics/_running.json
new file mode 100644
index 00000000..43ea64bf
--- /dev/null
+++ b/data/presets/leisure/track/athletics/_running.json
@@ -0,0 +1,19 @@
+{
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "running"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "running"
+ },
+ "name": "Running Track",
+ "searchable": false
+}
diff --git a/data/presets/leisure/track/athletics/javelin_throw.json b/data/presets/leisure/track/athletics/javelin_throw.json
new file mode 100644
index 00000000..5f398570
--- /dev/null
+++ b/data/presets/leisure/track/athletics/javelin_throw.json
@@ -0,0 +1,21 @@
+{
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "javelin_throw"
+ },
+ "terms": [
+ "javelin track"
+ ],
+ "reference": {
+ "key": "athletics",
+ "value": "javelin_throw"
+ },
+ "name": "Javelin Runway"
+}
diff --git a/data/presets/leisure/track/athletics/long_jump.json b/data/presets/leisure/track/athletics/long_jump.json
new file mode 100644
index 00000000..821d1263
--- /dev/null
+++ b/data/presets/leisure/track/athletics/long_jump.json
@@ -0,0 +1,21 @@
+{
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "long_jump"
+ },
+ "terms": [
+ "long jump track"
+ ],
+ "reference": {
+ "key": "athletics",
+ "value": "long_jump"
+ },
+ "name": "Long Jump Runway"
+}
diff --git a/data/presets/leisure/track/athletics/pole_vault.json b/data/presets/leisure/track/athletics/pole_vault.json
new file mode 100644
index 00000000..c45459e8
--- /dev/null
+++ b/data/presets/leisure/track/athletics/pole_vault.json
@@ -0,0 +1,21 @@
+{
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "pole_vault"
+ },
+ "terms": [
+ "pole vault track"
+ ],
+ "reference": {
+ "key": "athletics",
+ "value": "pole_vault"
+ },
+ "name": "Pole Vault Runway"
+}
diff --git a/data/presets/leisure/track/athletics/sprint.json b/data/presets/leisure/track/athletics/sprint.json
new file mode 100644
index 00000000..1fe041f0
--- /dev/null
+++ b/data/presets/leisure/track/athletics/sprint.json
@@ -0,0 +1,22 @@
+{
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "sprint"
+ },
+ "terms": [
+ "sprint track",
+ "sprinting"
+ ],
+ "reference": {
+ "key": "athletics",
+ "value": "sprint"
+ },
+ "name": "Sprint Runway"
+}
diff --git a/data/presets/leisure/track/athletics/steeplechase.json b/data/presets/leisure/track/athletics/steeplechase.json
new file mode 100644
index 00000000..24a64d81
--- /dev/null
+++ b/data/presets/leisure/track/athletics/steeplechase.json
@@ -0,0 +1,21 @@
+{
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "steeplechase"
+ },
+ "terms": [
+ "steeplechase track"
+ ],
+ "reference": {
+ "key": "athletics",
+ "value": "steeplechase"
+ },
+ "name": "Steeplechase Runway"
+}
diff --git a/data/presets/leisure/track/athletics/triple_jump.json b/data/presets/leisure/track/athletics/triple_jump.json
new file mode 100644
index 00000000..06b8f68f
--- /dev/null
+++ b/data/presets/leisure/track/athletics/triple_jump.json
@@ -0,0 +1,21 @@
+{
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "triple_jump"
+ },
+ "terms": [
+ "triple jump track"
+ ],
+ "reference": {
+ "key": "athletics",
+ "value": "triple_jump"
+ },
+ "name": "Triple Jump Runway"
+}
diff --git a/data/presets/leisure/track/cycling.json b/data/presets/leisure/track/cycling.json
index 5afaf4f1..12f3817c 100644
--- a/data/presets/leisure/track/cycling.json
+++ b/data/presets/leisure/track/cycling.json
@@ -3,7 +3,7 @@
"fields": [
"name",
"surface",
- "sport_racing_nonmotor",
+ "sport/sport_racing_nonmotor",
"lit",
"width",
"lanes"
diff --git a/data/presets/leisure/track/horse_racing.json b/data/presets/leisure/track/horse_racing.json
index 03e78016..4cbc8d7d 100644
--- a/data/presets/leisure/track/horse_racing.json
+++ b/data/presets/leisure/track/horse_racing.json
@@ -3,7 +3,7 @@
"fields": [
"name",
"surface",
- "sport_racing_nonmotor",
+ "sport/sport_racing_nonmotor",
"lit",
"width",
"lanes"
diff --git a/data/presets/leisure/track/running.json b/data/presets/leisure/track/running.json
index 2c09500f..973addb9 100644
--- a/data/presets/leisure/track/running.json
+++ b/data/presets/leisure/track/running.json
@@ -3,7 +3,7 @@
"fields": [
"name",
"surface",
- "sport_racing_nonmotor",
+ "sport/sport_racing_nonmotor",
"lit",
"width",
"lanes"
diff --git a/data/presets/leisure/trampoline_park.json b/data/presets/leisure/trampoline_park.json
index e53c934b..e04d9036 100644
--- a/data/presets/leisure/trampoline_park.json
+++ b/data/presets/leisure/trampoline_park.json
@@ -9,19 +9,13 @@
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"branch_brand",
"brand",
"charge_fee",
- "email",
- "fax",
"fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "operator",
- "payment_multi"
+ "operator"
],
"geometry": [
"point",
diff --git a/data/presets/leisure/water_park.json b/data/presets/leisure/water_park.json
index 8d3a879a..9f657237 100644
--- a/data/presets/leisure/water_park.json
+++ b/data/presets/leisure/water_park.json
@@ -12,9 +12,9 @@
"point"
],
"terms": [
- "swim",
+ "dive",
"pool",
- "dive"
+ "swim"
],
"tags": {
"leisure": "water_park"
diff --git a/data/presets/man_made/_courtyard.json b/data/presets/man_made/_courtyard.json
index 6e7331ed..b8560f63 100644
--- a/data/presets/man_made/_courtyard.json
+++ b/data/presets/man_made/_courtyard.json
@@ -3,7 +3,6 @@
"fields": [
"name"
],
- "moreFields": [],
"geometry": [
"area"
],
diff --git a/data/presets/man_made/antenna.json b/data/presets/man_made/antenna.json
index 1e507df9..11e15cd4 100644
--- a/data/presets/man_made/antenna.json
+++ b/data/presets/man_made/antenna.json
@@ -11,8 +11,8 @@
],
"terms": [
"broadcast",
- "cell phone",
"cell",
+ "cell phone",
"communication",
"mobile phone",
"radio",
diff --git a/data/presets/man_made/bridge.json b/data/presets/man_made/bridge.json
index 421a0721..839dab13 100644
--- a/data/presets/man_made/bridge.json
+++ b/data/presets/man_made/bridge.json
@@ -4,7 +4,8 @@
"name",
"bridge_combo",
"layer",
- "maxweight"
+ "maxweight",
+ "ref_bridge_number"
],
"moreFields": [
"gnis/feature_id-US",
diff --git a/data/presets/man_made/bunker_silo.json b/data/presets/man_made/bunker_silo.json
index 48b99112..84cba56e 100644
--- a/data/presets/man_made/bunker_silo.json
+++ b/data/presets/man_made/bunker_silo.json
@@ -11,8 +11,8 @@
"area"
],
"terms": [
- "Silage",
- "Storage"
+ "silage",
+ "storage"
],
"tags": {
"man_made": "bunker_silo"
diff --git a/data/presets/man_made/cairn.json b/data/presets/man_made/cairn.json
index 4b1e5d67..94402b0a 100644
--- a/data/presets/man_made/cairn.json
+++ b/data/presets/man_made/cairn.json
@@ -17,10 +17,10 @@
"area"
],
"terms": [
+ "càrn",
"rock pile",
- "stone stack",
"stone pile",
- "càrn"
+ "stone stack"
],
"tags": {
"man_made": "cairn"
diff --git a/data/presets/man_made/carpet_hanger.json b/data/presets/man_made/carpet_hanger.json
index b9e10ef4..557591dc 100644
--- a/data/presets/man_made/carpet_hanger.json
+++ b/data/presets/man_made/carpet_hanger.json
@@ -10,8 +10,8 @@
"line"
],
"terms": [
- "rack",
"beater",
+ "rack",
"stand"
],
"tags": {
diff --git a/data/presets/man_made/ceremonial_gate.json b/data/presets/man_made/ceremonial_gate.json
new file mode 100644
index 00000000..3c13ee38
--- /dev/null
+++ b/data/presets/man_made/ceremonial_gate.json
@@ -0,0 +1,33 @@
+{
+ "icon": "fas-archway",
+ "fields": [
+ "ceremonial_gate",
+ "height",
+ "material",
+ "religion"
+ ],
+ "moreFields": [
+ "name",
+ "inscription",
+ "operator",
+ "access",
+ "ref",
+ "lit"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "terms": [
+ "arch",
+ "gate",
+ "paifang",
+ "torii"
+ ],
+ "tags": {
+ "man_made": "ceremonial_gate"
+ },
+ "name": "Ceremonial Gate"
+}
diff --git a/data/presets/man_made/ceremonial_gate/paifang.json b/data/presets/man_made/ceremonial_gate/paifang.json
new file mode 100644
index 00000000..2315b93f
--- /dev/null
+++ b/data/presets/man_made/ceremonial_gate/paifang.json
@@ -0,0 +1,34 @@
+{
+ "icon": "temaki-paifang",
+ "fields": [
+ "{man_made/ceremonial_gate}"
+ ],
+ "moreFields": [
+ "{man_made/ceremonial_gate}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "terms": [
+ "chinese gate",
+ "paifong",
+ "pailau",
+ "pailou",
+ "shanmen"
+ ],
+ "tags": {
+ "ceremonial_gate": "paifang"
+ },
+ "addTags": {
+ "man_made": "ceremonial_gate",
+ "ceremonial_gate": "paifang"
+ },
+ "reference": {
+ "key": "ceremonial_gate",
+ "value": "paifang"
+ },
+ "name": "Paifang"
+}
diff --git a/data/presets/man_made/ceremonial_gate/torii.json b/data/presets/man_made/ceremonial_gate/torii.json
new file mode 100644
index 00000000..23284a77
--- /dev/null
+++ b/data/presets/man_made/ceremonial_gate/torii.json
@@ -0,0 +1,31 @@
+{
+ "icon": "temaki-shinto",
+ "fields": [
+ "{man_made/ceremonial_gate}",
+ "colour"
+ ],
+ "moreFields": [
+ "{man_made/ceremonial_gate}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line"
+ ],
+ "terms": [
+ "japanese gate",
+ "shinto shrine"
+ ],
+ "tags": {
+ "ceremonial_gate": "torii"
+ },
+ "addTags": {
+ "man_made": "ceremonial_gate",
+ "ceremonial_gate": "torii"
+ },
+ "reference": {
+ "key": "ceremonial_gate",
+ "value": "torii"
+ },
+ "name": "Torii"
+}
diff --git a/data/presets/man_made/charge_point.json b/data/presets/man_made/charge_point.json
new file mode 100644
index 00000000..a4659658
--- /dev/null
+++ b/data/presets/man_made/charge_point.json
@@ -0,0 +1,25 @@
+{
+ "icon": "fas-plug-circle-bolt",
+ "fields": [
+ "capacity",
+ "ref"
+ ],
+ "moreFields": [
+ "level",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "man_made": "charge_point"
+ },
+ "terms": [
+ "charge point",
+ "charging stall",
+ "charging station",
+ "electric vehicle",
+ "ev"
+ ],
+ "name": "EV Charging Point"
+}
diff --git a/data/presets/man_made/clarifier.json b/data/presets/man_made/clarifier.json
new file mode 100644
index 00000000..8d658ac2
--- /dev/null
+++ b/data/presets/man_made/clarifier.json
@@ -0,0 +1,16 @@
+{
+ "icon": "temaki-waste",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "clarifier"
+ },
+ "addTags": {
+ "man_made": "clarifier",
+ "natural": "water",
+ "water": "wastewater"
+ },
+ "name": "Wastewater Clarifier"
+}
diff --git a/data/presets/man_made/crane.json b/data/presets/man_made/crane.json
index 389a8414..ce857ced 100644
--- a/data/presets/man_made/crane.json
+++ b/data/presets/man_made/crane.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-crane",
+ "icon": "roentgen-crane",
"fields": [
"operator",
"manufacturer",
diff --git a/data/presets/man_made/crane/gantry_crane.json b/data/presets/man_made/crane/gantry_crane.json
index 73d65a27..e7f659b2 100644
--- a/data/presets/man_made/crane/gantry_crane.json
+++ b/data/presets/man_made/crane/gantry_crane.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-crane",
+ "icon": "roentgen-crane_gantry",
"geometry": [
"point",
"vertex",
@@ -14,8 +14,8 @@
"value": "gantry_crane"
},
"terms": [
- "overhead crane",
- "bridge crane"
+ "bridge crane",
+ "overhead crane"
],
"name": "Gantry Crane"
}
diff --git a/data/presets/man_made/crane/portal_crane.json b/data/presets/man_made/crane/portal_crane.json
index 54c5c5e3..58ac10ac 100644
--- a/data/presets/man_made/crane/portal_crane.json
+++ b/data/presets/man_made/crane/portal_crane.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-crane",
+ "icon": "roentgen-crane_portal",
"geometry": [
"point",
"vertex",
diff --git a/data/presets/man_made/dyke.json b/data/presets/man_made/dyke.json
index dedbc399..1df973b5 100644
--- a/data/presets/man_made/dyke.json
+++ b/data/presets/man_made/dyke.json
@@ -6,10 +6,10 @@
"man_made": "dyke"
},
"terms": [
- "Dike",
- "Dyke",
- "Floodbank",
- "Stopbank"
+ "dike",
+ "dyke",
+ "floodbank",
+ "stopbank"
],
"name": "Levee"
}
diff --git a/data/presets/man_made/flare.json b/data/presets/man_made/flare.json
new file mode 100644
index 00000000..ebff7776
--- /dev/null
+++ b/data/presets/man_made/flare.json
@@ -0,0 +1,25 @@
+{
+ "icon": "temaki-chimney",
+ "fields": [
+ "height"
+ ],
+ "moreFields": [
+ "ref",
+ "visibility"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "terms": [
+ "burn",
+ "fire",
+ "flare stack",
+ "gas",
+ "oil"
+ ],
+ "tags": {
+ "man_made": "flare"
+ },
+ "name": "Gas Flare"
+}
diff --git a/data/presets/man_made/footwear_decontamination-AU-NZ.json b/data/presets/man_made/footwear_decontamination-AU-NZ.json
new file mode 100644
index 00000000..f242c988
--- /dev/null
+++ b/data/presets/man_made/footwear_decontamination-AU-NZ.json
@@ -0,0 +1,33 @@
+{
+ "icon": "temaki-footwear_decontamination",
+ "fields": [
+ "operator",
+ "capacity"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "covered"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "terms": [
+ "boot cleaning",
+ "contamination station",
+ "decontamination station",
+ "footwear cleaning",
+ "shoe cleaning"
+ ],
+ "tags": {
+ "man_made": "footwear_decontamination"
+ },
+ "name": "Footwear Decontamination Station",
+ "locationSet": {
+ "include": [
+ "AU",
+ "NZ"
+ ]
+ }
+}
diff --git a/data/presets/man_made/fuel_pump.json b/data/presets/man_made/fuel_pump.json
new file mode 100644
index 00000000..11070081
--- /dev/null
+++ b/data/presets/man_made/fuel_pump.json
@@ -0,0 +1,28 @@
+{
+ "icon": "maki-fuel",
+ "fields": [
+ "ref",
+ "fuel/fuel_multi",
+ "fuel/fuel_multi-RU",
+ "operator",
+ "self_service"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "terms": [
+ "biodiesel",
+ "cng",
+ "diesel",
+ "fuel",
+ "gasoline",
+ "lng",
+ "petrol",
+ "propane"
+ ],
+ "tags": {
+ "man_made": "fuel_pump"
+ },
+ "name": "Gas Pump"
+}
diff --git a/data/presets/man_made/insect_hotel.json b/data/presets/man_made/insect_hotel.json
new file mode 100644
index 00000000..5f3e66cc
--- /dev/null
+++ b/data/presets/man_made/insect_hotel.json
@@ -0,0 +1,22 @@
+{
+ "icon": "fas-bugs",
+ "geometry": [
+ "point"
+ ],
+ "moreFields": [
+ "ref",
+ "operator",
+ "length",
+ "width",
+ "height"
+ ],
+ "tags": {
+ "man_made": "insect_hotel"
+ },
+ "terms": [
+ "bee hotel",
+ "bug hotel",
+ "insect house"
+ ],
+ "name": "Insect Hotel"
+}
diff --git a/data/presets/man_made/lighthouse.json b/data/presets/man_made/lighthouse.json
index 2654e0b4..f118f116 100644
--- a/data/presets/man_made/lighthouse.json
+++ b/data/presets/man_made/lighthouse.json
@@ -7,11 +7,9 @@
"height"
],
"moreFields": [
+ "{@templates/contact}",
"address",
- "email",
- "fax",
"gnis/feature_id-US",
- "phone",
"seamark/type"
],
"geometry": [
diff --git a/data/presets/man_made/manhole.json b/data/presets/man_made/manhole.json
index 8db14daf..5003c586 100644
--- a/data/presets/man_made/manhole.json
+++ b/data/presets/man_made/manhole.json
@@ -16,8 +16,8 @@
"terms": [
"cover",
"hole",
- "sewer",
"sewage",
+ "sewer",
"telecom"
],
"name": "Manhole"
diff --git a/data/presets/man_made/manhole/drain.json b/data/presets/man_made/manhole/drain.json
index 55dcdb18..4e2129ca 100644
--- a/data/presets/man_made/manhole/drain.json
+++ b/data/presets/man_made/manhole/drain.json
@@ -20,8 +20,8 @@
"drain",
"hole",
"rain",
- "sewer",
"sewage",
+ "sewer",
"storm"
],
"name": "Storm Drain"
diff --git a/data/presets/man_made/manhole/power.json b/data/presets/man_made/manhole/power.json
index 610b30a5..ed410f42 100644
--- a/data/presets/man_made/manhole/power.json
+++ b/data/presets/man_made/manhole/power.json
@@ -17,7 +17,6 @@
},
"terms": [
"cover",
- "hole",
"electric",
"hole",
"power",
diff --git a/data/presets/man_made/manhole/sewer.json b/data/presets/man_made/manhole/sewer.json
index 3a1058f5..4f26aec8 100644
--- a/data/presets/man_made/manhole/sewer.json
+++ b/data/presets/man_made/manhole/sewer.json
@@ -19,8 +19,8 @@
"cover",
"drain",
"hole",
- "sewer",
"sewage",
+ "sewer",
"utility"
],
"name": "Sewer Utility Manhole"
diff --git a/data/presets/man_made/manhole/telecom.json b/data/presets/man_made/manhole/telecom.json
index e6f59b62..4da370ce 100644
--- a/data/presets/man_made/manhole/telecom.json
+++ b/data/presets/man_made/manhole/telecom.json
@@ -19,8 +19,8 @@
"bt",
"cable",
"cover",
- "phone",
"hole",
+ "phone",
"telecom",
"telephone",
"utility"
diff --git a/data/presets/man_made/mast/lighting.json b/data/presets/man_made/mast/lighting.json
index 64e58f75..8a9815e2 100644
--- a/data/presets/man_made/mast/lighting.json
+++ b/data/presets/man_made/mast/lighting.json
@@ -12,10 +12,10 @@
],
"terms": [
"flood light",
+ "headlight",
"lighting",
- "stadium lights",
"stadium lighting",
- "headlight"
+ "stadium lights"
],
"tags": {
"man_made": "mast",
diff --git a/data/presets/man_made/milk_churn_stand.json b/data/presets/man_made/milk_churn_stand.json
new file mode 100644
index 00000000..66472826
--- /dev/null
+++ b/data/presets/man_made/milk_churn_stand.json
@@ -0,0 +1,19 @@
+{
+ "icon": "temaki-milk_jug",
+ "fields": [
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "creamery stand",
+ "milk can stand",
+ "milk stand"
+ ],
+ "tags": {
+ "man_made": "milk_churn_stand"
+ },
+ "name": "Milk Churn Stand"
+}
diff --git a/data/presets/man_made/mineshaft.json b/data/presets/man_made/mineshaft.json
index ce249bf4..69428f8f 100644
--- a/data/presets/man_made/mineshaft.json
+++ b/data/presets/man_made/mineshaft.json
@@ -2,6 +2,7 @@
"icon": "temaki-mineshaft_cage",
"geometry": [
"point",
+ "vertex",
"area"
],
"fields": [
diff --git a/data/presets/man_made/monitoring_station.json b/data/presets/man_made/monitoring_station.json
index 7ab90d27..9dbf58c3 100644
--- a/data/presets/man_made/monitoring_station.json
+++ b/data/presets/man_made/monitoring_station.json
@@ -14,11 +14,16 @@
"ref"
],
"terms": [
- "weather",
- "earthquake",
- "seismology",
"air",
- "gps"
+ "bicycle counter",
+ "bike counter",
+ "earthquake",
+ "gps",
+ "measurement station",
+ "seismology",
+ "traffic counter",
+ "water level",
+ "weather"
],
"tags": {
"man_made": "monitoring_station"
diff --git a/data/presets/man_made/observatory.json b/data/presets/man_made/observatory.json
index 9e55af2f..e14e4682 100644
--- a/data/presets/man_made/observatory.json
+++ b/data/presets/man_made/observatory.json
@@ -8,10 +8,8 @@
"building_area_yes"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
+ "{@templates/contact}",
+ "gnis/feature_id-US"
],
"geometry": [
"point",
diff --git a/data/presets/man_made/petroleum_well.json b/data/presets/man_made/petroleum_well.json
index dbc2d816..edf684b2 100644
--- a/data/presets/man_made/petroleum_well.json
+++ b/data/presets/man_made/petroleum_well.json
@@ -18,8 +18,8 @@
"oil derrick",
"oil drill",
"oil horse",
- "oil rig",
"oil pump",
+ "oil rig",
"petroleum well",
"pumpjack"
],
diff --git a/data/presets/man_made/pier.json b/data/presets/man_made/pier.json
index 2138b0ae..60d5f4e4 100644
--- a/data/presets/man_made/pier.json
+++ b/data/presets/man_made/pier.json
@@ -2,6 +2,7 @@
"icon": "temaki-pier_fixed",
"fields": [
"name",
+ "mooring",
"surface",
"floating",
"width",
@@ -10,7 +11,6 @@
],
"moreFields": [
"{highway/footway}",
- "access",
"fishing",
"gnis/feature_id-US",
"incline"
@@ -25,7 +25,6 @@
"jetty",
"landing",
"promenade",
- "quay",
"wharf"
],
"tags": {
diff --git a/data/presets/man_made/pipeline.json b/data/presets/man_made/pipeline.json
index 153a57b2..ba5e71f5 100644
--- a/data/presets/man_made/pipeline.json
+++ b/data/presets/man_made/pipeline.json
@@ -11,11 +11,11 @@
"line"
],
"terms": [
- "oil",
"natural gas",
- "water",
+ "oil",
+ "sewage",
"sewer",
- "sewage"
+ "water"
],
"tags": {
"man_made": "pipeline"
diff --git a/data/presets/man_made/pipeline/underground.json b/data/presets/man_made/pipeline/underground.json
index 8b60c68b..a98c7b78 100644
--- a/data/presets/man_made/pipeline/underground.json
+++ b/data/presets/man_made/pipeline/underground.json
@@ -4,11 +4,11 @@
"line"
],
"terms": [
- "oil",
"natural gas",
- "water",
+ "oil",
+ "sewage",
"sewer",
- "sewage"
+ "water"
],
"tags": {
"man_made": "pipeline",
diff --git a/data/presets/man_made/quay.json b/data/presets/man_made/quay.json
new file mode 100644
index 00000000..e6d9d69d
--- /dev/null
+++ b/data/presets/man_made/quay.json
@@ -0,0 +1,19 @@
+{
+ "icon": "temaki-quay",
+ "fields": [
+ "name",
+ "mooring"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "terms": [
+ "dock",
+ "wharf"
+ ],
+ "tags": {
+ "man_made": "quay"
+ },
+ "name": "Quay"
+}
diff --git a/data/presets/man_made/satellite_dish.json b/data/presets/man_made/satellite_dish.json
new file mode 100644
index 00000000..683cc57a
--- /dev/null
+++ b/data/presets/man_made/satellite_dish.json
@@ -0,0 +1,22 @@
+{
+ "icon": "fas-satellite-dish",
+ "fields": [
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "satellite_dish"
+ },
+ "terms": [
+ "fixed satellite dish",
+ "motorized satellite dish",
+ "parabolic dish",
+ "satellite communication",
+ "tracking satellite dish"
+ ],
+ "name": "Satellite Dish"
+}
diff --git a/data/presets/man_made/silo.json b/data/presets/man_made/silo.json
index 2392beda..7e6724d9 100644
--- a/data/presets/man_made/silo.json
+++ b/data/presets/man_made/silo.json
@@ -12,8 +12,8 @@
"area"
],
"terms": [
- "grain",
"corn",
+ "grain",
"wheat"
],
"tags": {
diff --git a/data/presets/man_made/ski_jump.json b/data/presets/man_made/ski_jump.json
new file mode 100644
index 00000000..004b2f31
--- /dev/null
+++ b/data/presets/man_made/ski_jump.json
@@ -0,0 +1,31 @@
+{
+ "icon": "temaki-ski_jumping",
+ "fields": [
+ "name",
+ "operator"
+ ],
+ "moreFields": [
+ "building"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "in-run",
+ "inrun",
+ "jump",
+ "ski jump",
+ "ski jump in-run tower",
+ "ski jump structure",
+ "ski jumping hill tower"
+ ],
+ "tags": {
+ "man_made": "ski_jump"
+ },
+ "name": "Ski Jumping Tower",
+ "aliases": [
+ "Ski Jumping Hill Structure",
+ "Ski Jumping Hill In-Run Tower"
+ ]
+}
diff --git a/data/presets/man_made/storage_tank.json b/data/presets/man_made/storage_tank.json
index 2458e641..1720eae8 100644
--- a/data/presets/man_made/storage_tank.json
+++ b/data/presets/man_made/storage_tank.json
@@ -18,10 +18,11 @@
"point"
],
"terms": [
- "water",
- "oil",
+ "fuel",
"gas",
- "petrol"
+ "oil",
+ "petrol",
+ "water"
],
"tags": {
"man_made": "storage_tank"
diff --git a/data/presets/man_made/street_cabinet.json b/data/presets/man_made/street_cabinet.json
index 1cce0287..e828d97c 100644
--- a/data/presets/man_made/street_cabinet.json
+++ b/data/presets/man_made/street_cabinet.json
@@ -7,13 +7,13 @@
"fields": [
"ref",
"operator",
- "street_cabinet",
"utility_semi",
"height",
"colour"
],
"moreFields": [
- "model"
+ "model",
+ "street_cabinet"
],
"terms": [
"cable tv",
diff --git a/data/presets/man_made/street_cabinet/postal_service.json b/data/presets/man_made/street_cabinet/postal_service.json
new file mode 100644
index 00000000..20a3337c
--- /dev/null
+++ b/data/presets/man_made/street_cabinet/postal_service.json
@@ -0,0 +1,27 @@
+{
+ "icon": "fas-door-closed",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/street_cabinet}"
+ ],
+ "moreFields": [
+ "{man_made/street_cabinet}"
+ ],
+ "terms": [
+ "letter storage",
+ "post delivery",
+ "postal services"
+ ],
+ "tags": {
+ "man_made": "street_cabinet",
+ "street_cabinet": "postal_service"
+ },
+ "reference": {
+ "key": "street_cabinet",
+ "value": "postal_service"
+ },
+ "name": "Postal Relay Box"
+}
diff --git a/data/presets/man_made/street_cabinet/traffic_control.json b/data/presets/man_made/street_cabinet/traffic_control.json
new file mode 100644
index 00000000..0ec88a94
--- /dev/null
+++ b/data/presets/man_made/street_cabinet/traffic_control.json
@@ -0,0 +1,26 @@
+{
+ "icon": "fas-door-closed",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/street_cabinet}"
+ ],
+ "moreFields": [
+ "{man_made/street_cabinet}"
+ ],
+ "terms": [
+ "traffic control automation",
+ "traffic light"
+ ],
+ "tags": {
+ "man_made": "street_cabinet",
+ "street_cabinet": "traffic_control"
+ },
+ "reference": {
+ "key": "man_made",
+ "value": "street_cabinet"
+ },
+ "name": "Traffic Control System Cabinet"
+}
diff --git a/data/presets/man_made/street_cabinet/traffic_monitoring.json b/data/presets/man_made/street_cabinet/traffic_monitoring.json
new file mode 100644
index 00000000..ce772d2b
--- /dev/null
+++ b/data/presets/man_made/street_cabinet/traffic_monitoring.json
@@ -0,0 +1,26 @@
+{
+ "icon": "fas-door-closed",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/street_cabinet}"
+ ],
+ "moreFields": [
+ "{man_made/street_cabinet}"
+ ],
+ "terms": [
+ "traffic monitoring",
+ "vehicle counting"
+ ],
+ "tags": {
+ "man_made": "street_cabinet",
+ "street_cabinet": "traffic_monitoring"
+ },
+ "reference": {
+ "key": "man_made",
+ "value": "street_cabinet"
+ },
+ "name": "Traffic Monitoring Cabinet"
+}
diff --git a/data/presets/man_made/street_cabinet/transport_management.json b/data/presets/man_made/street_cabinet/transport_management.json
new file mode 100644
index 00000000..cca2d2d4
--- /dev/null
+++ b/data/presets/man_made/street_cabinet/transport_management.json
@@ -0,0 +1,25 @@
+{
+ "icon": "fas-door-closed",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/street_cabinet}"
+ ],
+ "moreFields": [
+ "{man_made/street_cabinet}"
+ ],
+ "terms": [
+ "public transport automation"
+ ],
+ "tags": {
+ "man_made": "street_cabinet",
+ "street_cabinet": "transport_management"
+ },
+ "reference": {
+ "key": "man_made",
+ "value": "street_cabinet"
+ },
+ "name": "Transport Management Cabinet"
+}
diff --git a/data/presets/man_made/street_cabinet/waste.json b/data/presets/man_made/street_cabinet/waste.json
new file mode 100644
index 00000000..9effae46
--- /dev/null
+++ b/data/presets/man_made/street_cabinet/waste.json
@@ -0,0 +1,22 @@
+{
+ "icon": "maki-recycling",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/street_cabinet}"
+ ],
+ "moreFields": [
+ "{man_made/street_cabinet}"
+ ],
+ "tags": {
+ "man_made": "street_cabinet",
+ "street_cabinet": "waste"
+ },
+ "reference": {
+ "key": "man_made",
+ "value": "street_cabinet"
+ },
+ "name": "Private Waste Collection Cabinet"
+}
diff --git a/data/presets/man_made/surveillance.json b/data/presets/man_made/surveillance.json
index 832a6101..fec4cd93 100644
--- a/data/presets/man_made/surveillance.json
+++ b/data/presets/man_made/surveillance.json
@@ -11,8 +11,8 @@
"direction"
],
"terms": [
- "anpr",
"alpr",
+ "anpr",
"camera",
"car plate recognition",
"cctv",
diff --git a/data/presets/man_made/surveillance/camera.json b/data/presets/man_made/surveillance/camera.json
index 46991414..ce4e3568 100644
--- a/data/presets/man_made/surveillance/camera.json
+++ b/data/presets/man_made/surveillance/camera.json
@@ -17,8 +17,8 @@
"manufacturer"
],
"terms": [
- "anpr",
"alpr",
+ "anpr",
"camera",
"car plate recognition",
"cctv",
diff --git a/data/presets/man_made/survey_point.json b/data/presets/man_made/survey_point.json
index 20d30ef5..934c8784 100644
--- a/data/presets/man_made/survey_point.json
+++ b/data/presets/man_made/survey_point.json
@@ -16,12 +16,12 @@
"vertex"
],
"terms": [
- "trig point",
- "trig station",
- "survey marker",
"geodetic mark",
"geodetic point",
+ "survey marker",
"triangulation pillar",
+ "trig point",
+ "trig station",
"trigonometrical station"
],
"tags": {
diff --git a/data/presets/man_made/telescope.json b/data/presets/man_made/telescope.json
new file mode 100644
index 00000000..96bfa78e
--- /dev/null
+++ b/data/presets/man_made/telescope.json
@@ -0,0 +1,20 @@
+{
+ "icon": "fas-satellite-dish",
+ "fields": [
+ "name",
+ "telescope/type",
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "telescope"
+ },
+ "reference": {
+ "key": "man_made"
+ },
+ "name": "Telescope"
+}
diff --git a/data/presets/man_made/telescope/optical.json b/data/presets/man_made/telescope/optical.json
new file mode 100644
index 00000000..33966c5d
--- /dev/null
+++ b/data/presets/man_made/telescope/optical.json
@@ -0,0 +1,23 @@
+{
+ "icon": "temaki-telescope",
+ "fields": [
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "telescope",
+ "telescope:type": "optical"
+ },
+ "reference": {
+ "key": "man_made"
+ },
+ "terms": [
+ "reflecting telescope",
+ "refracting telescope"
+ ],
+ "name": "Optical Telescope"
+}
diff --git a/data/presets/man_made/telescope/radio.json b/data/presets/man_made/telescope/radio.json
new file mode 100644
index 00000000..ca3cf5eb
--- /dev/null
+++ b/data/presets/man_made/telescope/radio.json
@@ -0,0 +1,20 @@
+{
+ "icon": "roentgen-telescope-radio",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "telescope",
+ "telescope:type": "radio"
+ },
+ "reference": {
+ "key": "man_made"
+ },
+ "terms": [
+ "ground station",
+ "radio antenna",
+ "radio dish"
+ ],
+ "name": "Radio Telescope"
+}
diff --git a/data/presets/man_made/torii.json b/data/presets/man_made/torii.json
deleted file mode 100644
index c3a9d043..00000000
--- a/data/presets/man_made/torii.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "icon": "temaki-shinto",
- "fields": [
- "height",
- "material",
- "colour",
- "lit"
- ],
- "moreFields": [
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "terms": [
- "Japanese gate",
- "Shinto shrine"
- ],
- "tags": {
- "man_made": "torii"
- },
- "name": "Torii"
-}
diff --git a/data/presets/man_made/tower/bell_tower.json b/data/presets/man_made/tower/bell_tower.json
index 1a2a4975..b68ffb66 100644
--- a/data/presets/man_made/tower/bell_tower.json
+++ b/data/presets/man_made/tower/bell_tower.json
@@ -2,8 +2,7 @@
"icon": "fas-bell",
"moreFields": [
"{man_made/tower}",
- "opening_hours",
- "opening_hours/covid19"
+ "opening_hours"
],
"geometry": [
"point",
diff --git a/data/presets/man_made/tower/communication.json b/data/presets/man_made/tower/communication.json
index e7175986..ac6e111f 100644
--- a/data/presets/man_made/tower/communication.json
+++ b/data/presets/man_made/tower/communication.json
@@ -6,8 +6,7 @@
"mimics"
],
"moreFields": [
- "{man_made/tower}",
- "mimics"
+ "{man_made/tower}"
],
"geometry": [
"point",
diff --git a/data/presets/man_made/tower/defensive.json b/data/presets/man_made/tower/defensive.json
index 9b3ffbaa..98b7b667 100644
--- a/data/presets/man_made/tower/defensive.json
+++ b/data/presets/man_made/tower/defensive.json
@@ -13,8 +13,8 @@
"value": "defensive"
},
"terms": [
- "Defensive Tower",
- "Castle Tower"
+ "castle tower",
+ "defensive tower"
],
"name": "Fortified Tower"
}
diff --git a/data/presets/man_made/tower/diving.json b/data/presets/man_made/tower/diving.json
index c9d7ad90..21c4cebf 100644
--- a/data/presets/man_made/tower/diving.json
+++ b/data/presets/man_made/tower/diving.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-diving",
+ "icon": "roentgen-diving_1_platforms",
"geometry": [
"point",
"area"
diff --git a/data/presets/man_made/tower/minaret.json b/data/presets/man_made/tower/minaret.json
index addff51f..17de8629 100644
--- a/data/presets/man_made/tower/minaret.json
+++ b/data/presets/man_made/tower/minaret.json
@@ -5,10 +5,10 @@
"area"
],
"terms": [
- "Islam",
+ "islam",
"mosque",
- "Muezzin",
- "Muslim"
+ "muezzin",
+ "muslim"
],
"tags": {
"man_made": "tower",
diff --git a/data/presets/man_made/tower/observation.json b/data/presets/man_made/tower/observation.json
index ac69ea03..9df6b43a 100644
--- a/data/presets/man_made/tower/observation.json
+++ b/data/presets/man_made/tower/observation.json
@@ -1,17 +1,22 @@
{
"icon": "maki-observation-tower",
+ "fields": [
+ "{man_made/tower}",
+ "access_simple",
+ "fee"
+ ],
"moreFields": [
"{man_made/tower}",
"opening_hours",
- "opening_hours/covid19"
+ "direction"
],
"geometry": [
"point",
"area"
],
"terms": [
- "lookout tower",
- "fire tower"
+ "fire tower",
+ "lookout tower"
],
"tags": {
"man_made": "tower",
diff --git a/data/presets/man_made/tower/pagoda.json b/data/presets/man_made/tower/pagoda.json
index d6c2195e..c39abefd 100644
--- a/data/presets/man_made/tower/pagoda.json
+++ b/data/presets/man_made/tower/pagoda.json
@@ -2,8 +2,7 @@
"icon": "fas-vihara",
"moreFields": [
"{man_made/tower}",
- "opening_hours",
- "opening_hours/covid19"
+ "opening_hours"
],
"geometry": [
"point",
@@ -11,8 +10,8 @@
],
"terms": [
"buddhist tower",
- "tiered tower",
- "chinese pagodas"
+ "chinese pagodas",
+ "tiered tower"
],
"tags": {
"man_made": "tower",
diff --git a/data/presets/man_made/utility_pole.json b/data/presets/man_made/utility_pole.json
index 72f2650f..4fa2da2a 100644
--- a/data/presets/man_made/utility_pole.json
+++ b/data/presets/man_made/utility_pole.json
@@ -5,11 +5,13 @@
"operator",
"utility_semi",
"height",
- "material"
+ "material",
+ "line_attachment"
],
"moreFields": [
"colour",
- "manufacturer"
+ "manufacturer",
+ "line_management"
],
"geometry": [
"point",
diff --git a/data/presets/man_made/video_wall.json b/data/presets/man_made/video_wall.json
index bfe74a4c..4c16d772 100644
--- a/data/presets/man_made/video_wall.json
+++ b/data/presets/man_made/video_wall.json
@@ -16,12 +16,12 @@
"line"
],
"terms": [
- "screen",
- "tv",
- "television",
"display",
- "video wall",
- "led wall"
+ "led wall",
+ "screen",
+ "television",
+ "tv",
+ "video wall"
],
"tags": {
"man_made": "video_wall"
diff --git a/data/presets/man_made/wastewater_plant.json b/data/presets/man_made/wastewater_plant.json
index 8220c453..fd140c0d 100644
--- a/data/presets/man_made/wastewater_plant.json
+++ b/data/presets/man_made/wastewater_plant.json
@@ -7,10 +7,8 @@
"ref"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
+ "{@templates/contact}",
+ "gnis/feature_id-US"
],
"geometry": [
"point",
diff --git a/data/presets/man_made/water_well.json b/data/presets/man_made/water_well.json
index 97484e5a..aace1a9c 100644
--- a/data/presets/man_made/water_well.json
+++ b/data/presets/man_made/water_well.json
@@ -20,8 +20,8 @@
"terms": [
"aquifer",
"drinking water",
- "water pump",
"water point",
+ "water pump",
"water source"
],
"name": "Water Well"
diff --git a/data/presets/man_made/watermill.json b/data/presets/man_made/watermill.json
index b394615c..6e912b30 100644
--- a/data/presets/man_made/watermill.json
+++ b/data/presets/man_made/watermill.json
@@ -1,9 +1,13 @@
{
"icon": "maki-watermill",
"fields": [
- "building_area_yes"
+ "name",
+ "start_date",
+ "building_area_yes",
+ "address"
],
"moreFields": [
+ "{@templates/contact}",
"gnis/feature_id-US"
],
"geometry": [
@@ -11,9 +15,11 @@
"area"
],
"terms": [
+ "mill",
"water",
- "wheel",
- "mill"
+ "water wheel",
+ "waterwheel",
+ "wheel"
],
"tags": {
"man_made": "watermill"
diff --git a/data/presets/man_made/windmill.json b/data/presets/man_made/windmill.json
index f1f3de7f..2e9886df 100644
--- a/data/presets/man_made/windmill.json
+++ b/data/presets/man_made/windmill.json
@@ -1,9 +1,12 @@
{
"icon": "maki-windmill",
"fields": [
+ "name",
+ "start_date",
"building_area_yes"
],
"moreFields": [
+ "address",
"gnis/feature_id-US"
],
"geometry": [
@@ -11,9 +14,9 @@
"area"
],
"terms": [
- "wind",
+ "mill",
"wheel",
- "mill"
+ "wind"
],
"tags": {
"man_made": "windmill"
diff --git a/data/presets/man_made/windpump.json b/data/presets/man_made/windpump.json
index dd32b4ac..d80094f1 100644
--- a/data/presets/man_made/windpump.json
+++ b/data/presets/man_made/windpump.json
@@ -14,8 +14,8 @@
"terms": [
"aerorotor",
"water pump",
- "windmill",
- "wind pump"
+ "wind pump",
+ "windmill"
],
"tags": {
"man_made": "windpump"
diff --git a/data/presets/man_made/works.json b/data/presets/man_made/works.json
index c4d05b51..d801713a 100644
--- a/data/presets/man_made/works.json
+++ b/data/presets/man_made/works.json
@@ -4,14 +4,12 @@
"name",
"operator",
"address",
- "building_area_yes",
"product"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
+ "{@templates/contact}",
+ "building_area",
+ "gnis/feature_id-US"
],
"geometry": [
"point",
@@ -19,13 +17,13 @@
],
"terms": [
"assembly",
- "build",
"brewery",
+ "build",
"car",
+ "manufacture",
"plant",
"plastic",
"processing",
- "manufacture",
"refinery"
],
"tags": {
diff --git a/data/presets/marker.json b/data/presets/marker.json
index db99b424..b1ad5dff 100644
--- a/data/presets/marker.json
+++ b/data/presets/marker.json
@@ -12,11 +12,11 @@
"moreFields": [
"height",
"location",
- "manufacturer",
- "material"
+ "manufacturer"
],
"geometry": [
- "point"
+ "point",
+ "vertex"
],
"terms": [
"identifier",
diff --git a/data/presets/marker/utility.json b/data/presets/marker/utility.json
index 04c44f69..2f9ec5dd 100644
--- a/data/presets/marker/utility.json
+++ b/data/presets/marker/utility.json
@@ -15,7 +15,7 @@
"identifier",
"marking",
"oil marker",
- "pipline marker",
+ "pipeline marker",
"plate",
"pole",
"post",
diff --git a/data/presets/natural/_wood_point.json b/data/presets/natural/_wood_point.json
new file mode 100644
index 00000000..14879a66
--- /dev/null
+++ b/data/presets/natural/_wood_point.json
@@ -0,0 +1,18 @@
+{
+ "icon": "maki-park-alt1",
+ "fields": [
+ "{natural/wood}"
+ ],
+ "moreFields": [
+ "{natural/wood}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "natural": "wood"
+ },
+ "searchable": false,
+ "matchScore": 1.1,
+ "name": "{natural/wood}"
+}
diff --git a/data/presets/natural/arch.json b/data/presets/natural/arch.json
new file mode 100644
index 00000000..ceb63e03
--- /dev/null
+++ b/data/presets/natural/arch.json
@@ -0,0 +1,19 @@
+{
+ "icon": "temaki-natural_arch",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "natural": "arch"
+ },
+ "terms": [
+ "natural arch",
+ "natural bridge",
+ "rock arch"
+ ],
+ "name": "Natural Arch"
+}
diff --git a/data/presets/natural/beach.json b/data/presets/natural/beach.json
index 19768a9f..8c3e2d30 100644
--- a/data/presets/natural/beach.json
+++ b/data/presets/natural/beach.json
@@ -3,7 +3,7 @@
"fields": [
"name",
"surface",
- "lifeguard",
+ "lifeguard_check",
"supervised"
],
"geometry": [
diff --git a/data/presets/natural/cape.json b/data/presets/natural/cape.json
index 9e3422fb..ce15a45d 100644
--- a/data/presets/natural/cape.json
+++ b/data/presets/natural/cape.json
@@ -16,6 +16,7 @@
"coastline",
"erosion",
"headland",
+ "peninsula",
"promontory"
],
"name": "Cape"
diff --git a/data/presets/natural/cave_entrance.json b/data/presets/natural/cave_entrance.json
index 314cec90..82ad7f51 100644
--- a/data/presets/natural/cave_entrance.json
+++ b/data/presets/natural/cave_entrance.json
@@ -19,10 +19,10 @@
},
"terms": [
"cavern",
- "hollow",
+ "cavity",
"grotto",
- "shelter",
- "cavity"
+ "hollow",
+ "shelter"
],
"name": "Cave Entrance"
}
diff --git a/data/presets/natural/cliff.json b/data/presets/natural/cliff.json
index ff78035c..22e8096a 100644
--- a/data/presets/natural/cliff.json
+++ b/data/presets/natural/cliff.json
@@ -7,8 +7,7 @@
"geometry": [
"point",
"vertex",
- "line",
- "area"
+ "line"
],
"tags": {
"natural": "cliff"
diff --git a/data/presets/natural/peak.json b/data/presets/natural/peak.json
index 2fa6688d..5ff1ff66 100644
--- a/data/presets/natural/peak.json
+++ b/data/presets/natural/peak.json
@@ -4,6 +4,10 @@
"name",
"ele_node"
],
+ "moreFields": [
+ "{natural}",
+ "summit/cross"
+ ],
"geometry": [
"point",
"vertex"
diff --git a/data/presets/natural/peninsula.json b/data/presets/natural/peninsula.json
new file mode 100644
index 00000000..0353ca99
--- /dev/null
+++ b/data/presets/natural/peninsula.json
@@ -0,0 +1,24 @@
+{
+ "icon": "temaki-cape_landform",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "name"
+ ],
+ "tags": {
+ "natural": "peninsula"
+ },
+ "terms": [
+ "bay",
+ "cape",
+ "coastline",
+ "erosion",
+ "headland",
+ "island",
+ "islet",
+ "promontory"
+ ],
+ "name": "Peninsula"
+}
diff --git a/data/presets/natural/rock.json b/data/presets/natural/rock.json
index 38ea34d9..d91a7d8c 100644
--- a/data/presets/natural/rock.json
+++ b/data/presets/natural/rock.json
@@ -12,8 +12,8 @@
},
"terms": [
"boulder",
- "stone",
- "rock"
+ "rock",
+ "stone"
],
"name": "Attached Rock / Boulder"
}
diff --git a/data/presets/natural/saddle.json b/data/presets/natural/saddle.json
index ccecb1f9..de0f990b 100644
--- a/data/presets/natural/saddle.json
+++ b/data/presets/natural/saddle.json
@@ -12,11 +12,11 @@
"natural": "saddle"
},
"terms": [
- "top",
- "gap",
"col",
+ "gap",
"notch",
- "pass"
+ "pass",
+ "top"
],
"name": "Saddle",
"aliases": [
diff --git a/data/presets/natural/sinkhole.json b/data/presets/natural/sinkhole.json
new file mode 100644
index 00000000..3ac7df8c
--- /dev/null
+++ b/data/presets/natural/sinkhole.json
@@ -0,0 +1,25 @@
+{
+ "icon": "temaki-trench",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "natural": "sinkhole"
+ },
+ "terms": [
+ "cenote",
+ "collapse sink",
+ "doline",
+ "shakehole",
+ "sink",
+ "snake hole",
+ "swallet",
+ "swallow hole"
+ ],
+ "name": "Sinkhole"
+}
diff --git a/data/presets/natural/stone.json b/data/presets/natural/stone.json
index 423ab638..249f34b5 100644
--- a/data/presets/natural/stone.json
+++ b/data/presets/natural/stone.json
@@ -12,8 +12,8 @@
},
"terms": [
"boulder",
- "stone",
- "rock"
+ "rock",
+ "stone"
],
"name": "Unattached Stone / Boulder"
}
diff --git a/data/presets/natural/tree.json b/data/presets/natural/tree.json
index 2cbbb389..7ae7aacb 100644
--- a/data/presets/natural/tree.json
+++ b/data/presets/natural/tree.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-park",
+ "icon": "roentgen-tree",
"fields": [
"leaf_type_singular",
"leaf_cycle_singular",
@@ -13,7 +13,8 @@
"species/wikidata",
"taxon",
"diameter_crown",
- "diameter"
+ "diameter",
+ "ref"
],
"geometry": [
"point",
diff --git a/data/presets/natural/tree/_broadleaved.json b/data/presets/natural/tree/_broadleaved.json
new file mode 100644
index 00000000..9fead41f
--- /dev/null
+++ b/data/presets/natural/tree/_broadleaved.json
@@ -0,0 +1,23 @@
+{
+ "icon": "maki-park",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "broadleaved"
+ },
+ "terms": [
+ "broadleaf",
+ "broadleaved",
+ "hardwood"
+ ],
+ "name": "Broadleaved Tree",
+ "searchable": false
+}
diff --git a/data/presets/natural/tree/_needleleaved.json b/data/presets/natural/tree/_needleleaved.json
new file mode 100644
index 00000000..271a3dfe
--- /dev/null
+++ b/data/presets/natural/tree/_needleleaved.json
@@ -0,0 +1,23 @@
+{
+ "icon": "roentgen-needleleaved_tree",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "needleleaved"
+ },
+ "terms": [
+ "conifer",
+ "needleleaved",
+ "softwood"
+ ],
+ "name": "Needleleaved Tree",
+ "searchable": false
+}
diff --git a/data/presets/natural/tree/broadleaved/deciduous.json b/data/presets/natural/tree/broadleaved/deciduous.json
new file mode 100644
index 00000000..9c58434b
--- /dev/null
+++ b/data/presets/natural/tree/broadleaved/deciduous.json
@@ -0,0 +1,25 @@
+{
+ "icon": "maki-park",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree/broadleaved}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "broadleaved",
+ "leaf_cycle": "deciduous"
+ },
+ "terms": [
+ "broadleaf",
+ "broadleaved",
+ "deciduous",
+ "hardwood",
+ "tree"
+ ],
+ "name": "Broadleaved Tree (deciduous)"
+}
diff --git a/data/presets/natural/tree/broadleaved/evergreen.json b/data/presets/natural/tree/broadleaved/evergreen.json
new file mode 100644
index 00000000..f0736c3e
--- /dev/null
+++ b/data/presets/natural/tree/broadleaved/evergreen.json
@@ -0,0 +1,26 @@
+{
+ "icon": "maki-park",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree/broadleaved}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "broadleaved",
+ "leaf_cycle": "evergreen"
+ },
+ "terms": [
+ "broadleaf",
+ "broadleaved",
+ "evergreen",
+ "hardwood",
+ "tree"
+ ],
+ "name": "Broadleaved Tree (evergreen)",
+ "matchScore": 0.99
+}
diff --git a/data/presets/natural/tree/needleleaved/deciduous.json b/data/presets/natural/tree/needleleaved/deciduous.json
new file mode 100644
index 00000000..57b1ee34
--- /dev/null
+++ b/data/presets/natural/tree/needleleaved/deciduous.json
@@ -0,0 +1,26 @@
+{
+ "icon": "roentgen-needleleaved_tree",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree/needleleaved}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "needleleaved",
+ "leaf_cycle": "deciduous"
+ },
+ "terms": [
+ "conifer",
+ "deciduous",
+ "needleleaved",
+ "softwood",
+ "tree"
+ ],
+ "name": "Needleleaved Tree (deciduous)",
+ "matchScore": 0.99
+}
diff --git a/data/presets/natural/tree/needleleaved/evergreen.json b/data/presets/natural/tree/needleleaved/evergreen.json
new file mode 100644
index 00000000..c26a2a7e
--- /dev/null
+++ b/data/presets/natural/tree/needleleaved/evergreen.json
@@ -0,0 +1,25 @@
+{
+ "icon": "roentgen-needleleaved_tree",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree/needleleaved}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "needleleaved",
+ "leaf_cycle": "evergreen"
+ },
+ "terms": [
+ "conifer",
+ "evergreen",
+ "needleleaved",
+ "softwood",
+ "tree"
+ ],
+ "name": "Needleleaved Tree (evergreen)"
+}
diff --git a/data/presets/natural/tree_stump.json b/data/presets/natural/tree_stump.json
index 222c8826..a191a4c4 100644
--- a/data/presets/natural/tree_stump.json
+++ b/data/presets/natural/tree_stump.json
@@ -1,9 +1,5 @@
{
"icon": "temaki-tree_stump",
- "geometry": [
- "area",
- "point"
- ],
"moreFields": [
"leaf_type_singular",
"leaf_cycle_singular",
@@ -12,6 +8,10 @@
"circumference",
"{natural/tree}"
],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
"tags": {
"natural": "tree_stump"
},
diff --git a/data/presets/natural/valley.json b/data/presets/natural/valley.json
index c5eedb2a..b672d871 100644
--- a/data/presets/natural/valley.json
+++ b/data/presets/natural/valley.json
@@ -20,8 +20,8 @@
"depression",
"glen",
"gorge",
- "gully",
"gulley",
+ "gully",
"gultch",
"hollow",
"ravine",
diff --git a/data/presets/natural/volcano.json b/data/presets/natural/volcano.json
index ca8aa507..a602d069 100644
--- a/data/presets/natural/volcano.json
+++ b/data/presets/natural/volcano.json
@@ -14,8 +14,8 @@
"natural": "volcano"
},
"terms": [
- "mountain",
- "crater"
+ "crater",
+ "mountain"
],
"name": "Volcano"
}
diff --git a/data/presets/natural/water/pond.json b/data/presets/natural/water/pond.json
index 69f9dcbb..bcebb42a 100644
--- a/data/presets/natural/water/pond.json
+++ b/data/presets/natural/water/pond.json
@@ -17,10 +17,10 @@
},
"terms": [
"lakelet",
+ "mere",
"millpond",
- "tarn",
"pool",
- "mere"
+ "tarn"
],
"name": "Pond"
}
diff --git a/data/presets/natural/water/river.json b/data/presets/natural/water/river.json
index 55b4b6cc..1e96ea4e 100644
--- a/data/presets/natural/water/river.json
+++ b/data/presets/natural/water/river.json
@@ -5,7 +5,6 @@
"intermittent",
"tidal"
],
- "moreFields": [],
"geometry": [
"area"
],
diff --git a/data/presets/natural/water/stream.json b/data/presets/natural/water/stream.json
index 246dda2a..442db4ce 100644
--- a/data/presets/natural/water/stream.json
+++ b/data/presets/natural/water/stream.json
@@ -4,7 +4,6 @@
"water",
"intermittent"
],
- "moreFields": [],
"geometry": [
"area"
],
diff --git a/data/presets/natural/water/wastewater.json b/data/presets/natural/water/wastewater.json
index be3b647d..618c0b4e 100644
--- a/data/presets/natural/water/wastewater.json
+++ b/data/presets/natural/water/wastewater.json
@@ -12,12 +12,12 @@
"value": "wastewater"
},
"terms": [
+ "clarifier basin",
"excrement",
- "shit",
+ "settling basin",
"sewage",
- "wastewater",
- "Settling Basin",
- "Clarifier Basin"
+ "shit",
+ "wastewater"
],
"name": "Wastewater Basin"
}
diff --git a/data/presets/natural/wetland/bog.json b/data/presets/natural/wetland/bog.json
index 88498756..843c2415 100644
--- a/data/presets/natural/wetland/bog.json
+++ b/data/presets/natural/wetland/bog.json
@@ -1,6 +1,5 @@
{
"icon": "maki-wetland",
- "fields": [],
"geometry": [
"area"
],
@@ -12,6 +11,5 @@
"key": "wetland",
"value": "bog"
},
- "terms": [],
"name": "Bog"
}
diff --git a/data/presets/natural/wetland/fen.json b/data/presets/natural/wetland/fen.json
index 9991641b..9febd882 100644
--- a/data/presets/natural/wetland/fen.json
+++ b/data/presets/natural/wetland/fen.json
@@ -1,6 +1,5 @@
{
"icon": "maki-wetland",
- "fields": [],
"geometry": [
"area"
],
diff --git a/data/presets/natural/wetland/mangrove.json b/data/presets/natural/wetland/mangrove.json
index cf1dfc25..f64aa625 100644
--- a/data/presets/natural/wetland/mangrove.json
+++ b/data/presets/natural/wetland/mangrove.json
@@ -15,6 +15,5 @@
"key": "wetland",
"value": "mangrove"
},
- "terms": [],
"name": "Mangrove"
}
diff --git a/data/presets/natural/wetland/marsh.json b/data/presets/natural/wetland/marsh.json
index a84a7744..77eea2b1 100644
--- a/data/presets/natural/wetland/marsh.json
+++ b/data/presets/natural/wetland/marsh.json
@@ -1,6 +1,5 @@
{
"icon": "maki-wetland",
- "fields": [],
"geometry": [
"area"
],
@@ -12,6 +11,5 @@
"key": "wetland",
"value": "marsh"
},
- "terms": [],
"name": "Marsh"
}
diff --git a/data/presets/natural/wetland/reedbed.json b/data/presets/natural/wetland/reedbed.json
index 696c3ca9..d669b789 100644
--- a/data/presets/natural/wetland/reedbed.json
+++ b/data/presets/natural/wetland/reedbed.json
@@ -1,6 +1,5 @@
{
"icon": "maki-wetland",
- "fields": [],
"geometry": [
"area"
],
@@ -13,9 +12,9 @@
"value": "reedbed"
},
"terms": [
- "reeds",
"bulrushes",
- "cattail"
+ "cattail",
+ "reeds"
],
"name": "Reed bed"
}
diff --git a/data/presets/natural/wetland/string_bog.json b/data/presets/natural/wetland/string_bog.json
index e129ae55..eef6ec7b 100644
--- a/data/presets/natural/wetland/string_bog.json
+++ b/data/presets/natural/wetland/string_bog.json
@@ -1,6 +1,5 @@
{
"icon": "maki-wetland",
- "fields": [],
"geometry": [
"area"
],
diff --git a/data/presets/natural/wetland/swamp.json b/data/presets/natural/wetland/swamp.json
index c00fd3dd..342a4f7c 100644
--- a/data/presets/natural/wetland/swamp.json
+++ b/data/presets/natural/wetland/swamp.json
@@ -1,6 +1,5 @@
{
"icon": "temaki-swamp",
- "fields": [],
"moreFields": [
"tidal"
],
diff --git a/data/presets/natural/wetland/wet_meadow.json b/data/presets/natural/wetland/wet_meadow.json
index 08729748..490c5cb9 100644
--- a/data/presets/natural/wetland/wet_meadow.json
+++ b/data/presets/natural/wetland/wet_meadow.json
@@ -1,6 +1,5 @@
{
"icon": "maki-wetland",
- "fields": [],
"geometry": [
"area"
],
@@ -12,6 +11,5 @@
"key": "wetland",
"value": "wet_meadow"
},
- "terms": [],
"name": "Wet Meadow"
}
diff --git a/data/presets/natural/wood.json b/data/presets/natural/wood.json
index 71216631..4dea75bc 100644
--- a/data/presets/natural/wood.json
+++ b/data/presets/natural/wood.json
@@ -9,8 +9,7 @@
"species/wikidata"
],
"geometry": [
- "area",
- "point"
+ "area"
],
"tags": {
"natural": "wood"
diff --git a/data/presets/office.json b/data/presets/office.json
index 474874b6..6dfdfaf3 100644
--- a/data/presets/office.json
+++ b/data/presets/office.json
@@ -10,20 +10,16 @@
"website"
],
"moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"air_conditioning",
"baby_feeding",
"building/levels_building",
"ele",
- "email",
- "fax",
"gnis/feature_id-US",
"height_building",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
"not/name",
- "opening_hours/covid19",
"operator",
"ref/vatin",
"ref/FR/siret-FR",
diff --git a/data/presets/office/coworking.json b/data/presets/office/coworking.json
index a5e707e8..c5857c3f 100644
--- a/data/presets/office/coworking.json
+++ b/data/presets/office/coworking.json
@@ -2,11 +2,11 @@
"icon": "maki-suitcase",
"fields": [
"{office}",
- "internet_access"
+ "{@templates/internet_access}"
],
"moreFields": [
- "internet_access/fee",
- "internet_access/ssid"
+ "{@templates/internet_access}",
+ "{@templates/poi}"
],
"geometry": [
"point",
diff --git a/data/presets/office/engineer.json b/data/presets/office/engineer.json
new file mode 100644
index 00000000..0a3d5f2c
--- /dev/null
+++ b/data/presets/office/engineer.json
@@ -0,0 +1,20 @@
+{
+ "icon": "fas-pen-ruler",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "engineer"
+ },
+ "terms": [
+ "civil engineer",
+ "electrical engineer",
+ "engineer",
+ "engineering firm",
+ "mechanical engineer",
+ "structural engineer",
+ "technical engineer"
+ ],
+ "name": "Engineering Office"
+}
diff --git a/data/presets/office/financial_advisor.json b/data/presets/office/financial_advisor.json
index 463c1196..9b9b12a8 100644
--- a/data/presets/office/financial_advisor.json
+++ b/data/presets/office/financial_advisor.json
@@ -10,9 +10,9 @@
"terms": [
"401k",
"inheritance",
+ "retirement",
"savings",
"stocks",
- "retirement",
"wealth management"
],
"name": "Financial Advisor"
diff --git a/data/presets/office/government/register_office.json b/data/presets/office/government/register_office.json
index 45d50421..3602558e 100644
--- a/data/presets/office/government/register_office.json
+++ b/data/presets/office/government/register_office.json
@@ -9,11 +9,11 @@
"area"
],
"terms": [
- "clerk",
- "marriage",
- "death",
"birth",
- "certificate"
+ "certificate",
+ "clerk",
+ "death",
+ "marriage"
],
"tags": {
"office": "government",
diff --git a/data/presets/office/graphic_design.json b/data/presets/office/graphic_design.json
index 5f64a3ca..9cb0c48a 100644
--- a/data/presets/office/graphic_design.json
+++ b/data/presets/office/graphic_design.json
@@ -8,8 +8,8 @@
"office": "graphic_design"
},
"terms": [
- "design",
"art",
+ "design",
"illustrate",
"technology",
"visual"
diff --git a/data/presets/office/it.json b/data/presets/office/it.json
index f30bda9a..dfbeccf0 100644
--- a/data/presets/office/it.json
+++ b/data/presets/office/it.json
@@ -10,6 +10,7 @@
"terms": [
"computer",
"information",
+ "it office",
"software",
"technology"
],
diff --git a/data/presets/office/lawyer.json b/data/presets/office/lawyer.json
index 636fb23e..7f48bd96 100644
--- a/data/presets/office/lawyer.json
+++ b/data/presets/office/lawyer.json
@@ -16,7 +16,8 @@
"defender",
"lawyer",
"legal",
- "prosecutor"
+ "prosecutor",
+ "solicitor"
],
"name": "Law Office"
}
diff --git a/data/presets/office/moving_company.json b/data/presets/office/moving_company.json
index ffbf621b..eb29197a 100644
--- a/data/presets/office/moving_company.json
+++ b/data/presets/office/moving_company.json
@@ -8,8 +8,8 @@
"office": "moving_company"
},
"terms": [
- "relocation",
- "movers"
+ "movers",
+ "relocation"
],
"name": "Moving Company Office"
}
diff --git a/data/presets/office/ngo.json b/data/presets/office/ngo.json
index f5bab99b..d975dafe 100644
--- a/data/presets/office/ngo.json
+++ b/data/presets/office/ngo.json
@@ -11,8 +11,8 @@
"ngo",
"non government",
"non-government",
- "organization",
- "organisation"
+ "organisation",
+ "organization"
],
"name": "NGO Office"
}
diff --git a/data/presets/office/private_investigator.json b/data/presets/office/private_investigator.json
index f16b507b..b58ca272 100644
--- a/data/presets/office/private_investigator.json
+++ b/data/presets/office/private_investigator.json
@@ -8,9 +8,9 @@
"office": "private_investigator"
},
"terms": [
- "PI",
- "private eye",
- "private detective"
+ "pi",
+ "private detective",
+ "private eye"
],
"name": "Private Investigator Office"
}
diff --git a/data/presets/office/quango.json b/data/presets/office/quango.json
index 6af3918e..f88f51ae 100644
--- a/data/presets/office/quango.json
+++ b/data/presets/office/quango.json
@@ -11,8 +11,8 @@
"ngo",
"non government",
"non-government",
- "organization",
"organisation",
+ "organization",
"quasi autonomous",
"quasi-autonomous"
],
diff --git a/data/presets/office/research.json b/data/presets/office/research.json
index 612a351a..2d977902 100644
--- a/data/presets/office/research.json
+++ b/data/presets/office/research.json
@@ -8,10 +8,10 @@
"office": "research"
},
"terms": [
- "R and D",
+ "r and d",
+ "r&d",
"research and development",
"research lab",
- "r&d",
"rnd"
],
"name": "Research Office"
diff --git a/data/presets/office/therapist.json b/data/presets/office/therapist.json
index 7bbde11b..d0f44ac1 100644
--- a/data/presets/office/therapist.json
+++ b/data/presets/office/therapist.json
@@ -7,8 +7,14 @@
"tags": {
"office": "therapist"
},
+ "fields": [
+ "healthcare_therapist",
+ "healthcare/speciality",
+ "{office}"
+ ],
"terms": [
"therapy"
],
- "name": "Therapist Office"
+ "name": "Therapist Office",
+ "matchScore": 0.9
}
diff --git a/data/presets/office/translator.json b/data/presets/office/translator.json
new file mode 100644
index 00000000..7a6e79fa
--- /dev/null
+++ b/data/presets/office/translator.json
@@ -0,0 +1,17 @@
+{
+ "icon": "fas-language",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "translator"
+ },
+ "terms": [
+ "translation",
+ "translation agency",
+ "translation office",
+ "translator"
+ ],
+ "name": "Translation Office"
+}
diff --git a/data/presets/office/union.json b/data/presets/office/union.json
index fad61a7a..f0fc0836 100644
--- a/data/presets/office/union.json
+++ b/data/presets/office/union.json
@@ -8,7 +8,8 @@
"office": "union"
},
"terms": [
- "trade union"
+ "trade union",
+ "union office"
],
"name": "Labor Union Office"
}
diff --git a/data/presets/office/water_utility.json b/data/presets/office/water_utility.json
index 23e29ba0..6e800279 100644
--- a/data/presets/office/water_utility.json
+++ b/data/presets/office/water_utility.json
@@ -12,8 +12,8 @@
"office": "water_utility"
},
"terms": [
- "water board",
- "utility"
+ "utility",
+ "water board"
],
"name": "Water Utility Office"
}
diff --git a/data/presets/pipeline/valve.json b/data/presets/pipeline/valve.json
index 742dc052..c37e113b 100644
--- a/data/presets/pipeline/valve.json
+++ b/data/presets/pipeline/valve.json
@@ -16,11 +16,11 @@
"material"
],
"terms": [
- "oil",
"natural gas",
- "water",
+ "oil",
+ "sewage",
"sewer",
- "sewage"
+ "water"
],
"tags": {
"pipeline": "valve"
diff --git a/data/presets/piste/piste.json b/data/presets/piste/_piste.json
similarity index 83%
rename from data/presets/piste/piste.json
rename to data/presets/piste/_piste.json
index 799577b5..07ffb8aa 100644
--- a/data/presets/piste/piste.json
+++ b/data/presets/piste/_piste.json
@@ -16,26 +16,27 @@
"piste:type": "*"
},
"terms": [
- "ski",
- "nordic",
+ "alpine",
"crosscountry",
"downhill",
- "alpine",
- "snowboard",
- "skitour",
- "ski touring",
- "sled",
- "luge",
- "sleigh",
- "sledge",
- "ski-joring",
- "husky",
"horse",
- "winter hiking",
+ "husky",
+ "ice",
+ "luge",
+ "nordic",
+ "skating",
+ "ski",
+ "ski touring",
+ "ski-joring",
+ "skitour",
+ "sled",
+ "sledge",
+ "sleigh",
+ "snowboard",
"snowshoe",
"snowshoeing",
- "ice",
- "skating"
+ "winter hiking"
],
- "name": "Snowsports Trail / Piste"
+ "name": "Snowsports Trail / Piste (Unspecified Type)",
+ "searchable": false
}
diff --git a/data/presets/piste/downhill/halfpipe.json b/data/presets/piste/downhill/halfpipe.json
index 04605cdd..3e370dfb 100644
--- a/data/presets/piste/downhill/halfpipe.json
+++ b/data/presets/piste/downhill/halfpipe.json
@@ -13,13 +13,13 @@
"value": "piste:halfpipe"
},
"terms": [
- "ski",
"alpine",
- "halfpipe",
- "half pipe",
- "snowboard",
"downhill",
- "piste"
+ "half pipe",
+ "halfpipe",
+ "piste",
+ "ski",
+ "snowboard"
],
"name": "Snowsports Half-Pipe"
}
diff --git a/data/presets/piste/ice_skate.json b/data/presets/piste/ice_skate.json
index 604acd97..1f1ec565 100644
--- a/data/presets/piste/ice_skate.json
+++ b/data/presets/piste/ice_skate.json
@@ -3,7 +3,7 @@
"fields": [
"name",
"piste/type",
- "sport_ice",
+ "sport/sport_ice",
"oneway",
"lit"
],
diff --git a/data/presets/piste/ski_jump.json b/data/presets/piste/ski_jump.json
new file mode 100644
index 00000000..242f7db9
--- /dev/null
+++ b/data/presets/piste/ski_jump.json
@@ -0,0 +1,23 @@
+{
+ "icon": "temaki-ski_jumping",
+ "fields": [
+ "name",
+ "piste/type",
+ "ref",
+ "oneway_yes",
+ "lit"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "ski_jump"
+ },
+ "terms": [
+ "jump",
+ "ski jump",
+ "ski jumping hill"
+ ],
+ "name": "Ski Jumping Piste"
+}
diff --git a/data/presets/piste/skitour.json b/data/presets/piste/skitour.json
index b8d5bb27..236f0863 100644
--- a/data/presets/piste/skitour.json
+++ b/data/presets/piste/skitour.json
@@ -16,11 +16,11 @@
"piste:type": "skitour"
},
"terms": [
- "ski",
- "skitour",
"crosscountry",
+ "piste",
+ "ski",
"ski touring",
- "piste"
+ "skitour"
],
"name": "Ski Touring Trail"
}
diff --git a/data/presets/piste/sleigh.json b/data/presets/piste/sleigh.json
index 077b2295..d38f8b91 100644
--- a/data/presets/piste/sleigh.json
+++ b/data/presets/piste/sleigh.json
@@ -17,13 +17,13 @@
},
"terms": [
"dogsledding",
- "husky",
"horse",
+ "husky",
"piste",
- "sled",
- "sledge",
"ski-joring",
- "skijoring"
+ "skijoring",
+ "sled",
+ "sledge"
],
"name": "Sleigh Trail"
}
diff --git a/data/presets/piste/take_off.json b/data/presets/piste/take_off.json
new file mode 100644
index 00000000..86104631
--- /dev/null
+++ b/data/presets/piste/take_off.json
@@ -0,0 +1,26 @@
+{
+ "icon": "temaki-ski_jumping",
+ "fields": [
+ "height"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "piste:takeoff": "yes"
+ },
+ "terms": [
+ "jump",
+ "ski jump",
+ "ski jump table",
+ "ski jump take-off",
+ "ski jumping hill in-run table",
+ "take-off",
+ "takeoff"
+ ],
+ "name": "Ski Jumping Take-Off",
+ "aliases": [
+ "Ski Jumping Hill Take-Off",
+ "Ski Jumping Hill Table"
+ ]
+}
diff --git a/data/presets/place/plot.json b/data/presets/place/plot.json
index 32c4e271..439e51da 100644
--- a/data/presets/place/plot.json
+++ b/data/presets/place/plot.json
@@ -8,10 +8,10 @@
"place": "plot"
},
"terms": [
- "tract",
"land",
"lot",
- "parcel"
+ "parcel",
+ "tract"
],
"name": "Plot"
}
diff --git a/data/presets/playground/hopscotch.json b/data/presets/playground/hopscotch.json
index 1a27f385..d296118b 100644
--- a/data/presets/playground/hopscotch.json
+++ b/data/presets/playground/hopscotch.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-playground",
+ "icon": "roentgen-hopscotch",
"geometry": [
"point",
"line",
diff --git a/data/presets/playground/roundabout.json b/data/presets/playground/roundabout.json
index 3ec559cd..2bf262f6 100644
--- a/data/presets/playground/roundabout.json
+++ b/data/presets/playground/roundabout.json
@@ -12,8 +12,8 @@
"playground": "roundabout"
},
"terms": [
- "merry-go-round",
- "carousel"
+ "carousel",
+ "merry-go-round"
],
"name": "Play Roundabout"
}
diff --git a/data/presets/playground/slide.json b/data/presets/playground/slide.json
index 15c7303b..3864a2ae 100644
--- a/data/presets/playground/slide.json
+++ b/data/presets/playground/slide.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-slide",
+ "icon": "roentgen-slide",
"geometry": [
"point",
"line",
diff --git a/data/presets/playground/zipwire.json b/data/presets/playground/zipwire.json
index 09f5273f..80bf8f2b 100644
--- a/data/presets/playground/zipwire.json
+++ b/data/presets/playground/zipwire.json
@@ -8,8 +8,8 @@
"playground": "zipwire"
},
"terms": [
- "zipline",
"zip wire",
+ "zipline",
"zipwire"
],
"name": "Play Zip Line"
diff --git a/data/presets/polling_station.json b/data/presets/polling_station.json
index 8e015fcd..9481209e 100644
--- a/data/presets/polling_station.json
+++ b/data/presets/polling_station.json
@@ -10,14 +10,10 @@
"phone"
],
"moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"air_conditioning",
- "email",
- "fax",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
- "opening_hours/covid19",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/power/catenary_mast.json b/data/presets/power/catenary_mast.json
index f931150b..2e4fbcc6 100644
--- a/data/presets/power/catenary_mast.json
+++ b/data/presets/power/catenary_mast.json
@@ -19,8 +19,8 @@
"power": "catenary_mast"
},
"terms": [
- "catenary pylon",
"catenary mast",
+ "catenary pylon",
"overhead line",
"overhead wire"
],
diff --git a/data/presets/power/generator/method/photovoltaic.json b/data/presets/power/generator/method/photovoltaic.json
index 3130f552..d2c9e254 100644
--- a/data/presets/power/generator/method/photovoltaic.json
+++ b/data/presets/power/generator/method/photovoltaic.json
@@ -30,7 +30,7 @@
},
"terms": [
"photovoltaic module",
- "PV module",
+ "pv module",
"sunlight"
],
"name": "Solar Panel"
diff --git a/data/presets/power/generator/method/photovoltaic/building/roof.json b/data/presets/power/generator/method/photovoltaic/building/roof.json
index 679c9e76..7e350498 100644
--- a/data/presets/power/generator/method/photovoltaic/building/roof.json
+++ b/data/presets/power/generator/method/photovoltaic/building/roof.json
@@ -1,7 +1,8 @@
{
"icon": "fas-solar-panel",
"fields": [
- "{power/generator/method/photovoltaic}"
+ "{power/generator/method/photovoltaic}",
+ "layer_1"
],
"moreFields": [
"{power/generator}"
@@ -22,8 +23,7 @@
"generator:method": "photovoltaic",
"generator:type": "solar_photovoltaic_panel",
"generator:output:electricity": "*",
- "building": "roof",
- "layer": "1"
+ "building": "roof"
},
"reference": {
"key": "generator:method",
@@ -32,8 +32,8 @@
"terms": [
"photovoltaic canopy",
"solar awning",
- "solar carport",
- "solar canopy"
+ "solar canopy",
+ "solar carport"
],
"name": "Solar Panel Canopy"
}
diff --git a/data/presets/power/generator/method/photovoltaic/location/roof.json b/data/presets/power/generator/method/photovoltaic/location/roof.json
index 470d23dc..a3d3adfe 100644
--- a/data/presets/power/generator/method/photovoltaic/location/roof.json
+++ b/data/presets/power/generator/method/photovoltaic/location/roof.json
@@ -30,8 +30,8 @@
},
"terms": [
"home solar",
- "rooftop photovoltaic module",
- "PV module"
+ "pv module",
+ "rooftop photovoltaic module"
],
"name": "Rooftop Solar Panel"
}
diff --git a/data/presets/power/generator/source/hydro.json b/data/presets/power/generator/source/hydro.json
index 1b289ad7..e8cac2a0 100644
--- a/data/presets/power/generator/source/hydro.json
+++ b/data/presets/power/generator/source/hydro.json
@@ -30,8 +30,8 @@
},
"terms": [
"dam",
- "generator",
"francis turbine",
+ "generator",
"hydroelectricity",
"kaplan turbine",
"pelton turbine"
diff --git a/data/presets/power/generator/source/wind.json b/data/presets/power/generator/source/wind.json
index 8dc5411a..fca0f93d 100644
--- a/data/presets/power/generator/source/wind.json
+++ b/data/presets/power/generator/source/wind.json
@@ -32,8 +32,8 @@
"terms": [
"generator",
"turbine",
- "windmill",
- "wind"
+ "wind",
+ "windmill"
],
"name": "Wind Turbine"
}
diff --git a/data/presets/power/line.json b/data/presets/power/line.json
index 54c0f7d6..f651357b 100644
--- a/data/presets/power/line.json
+++ b/data/presets/power/line.json
@@ -13,8 +13,8 @@
],
"terms": [
"electric power transmission line",
- "high voltage line",
- "high tension line"
+ "high tension line",
+ "high voltage line"
],
"tags": {
"power": "line"
diff --git a/data/presets/power/plant/source/coal.json b/data/presets/power/plant/source/coal.json
index c872b2d4..d30c37ab 100644
--- a/data/presets/power/plant/source/coal.json
+++ b/data/presets/power/plant/source/coal.json
@@ -31,9 +31,9 @@
},
"terms": [
"carbon",
+ "coalfired",
"combustion",
"fossil fuel",
- "coalfired",
"power station"
],
"name": "Coal-Fired Power Plant"
diff --git a/data/presets/power/plant/source/gas.json b/data/presets/power/plant/source/gas.json
index e02d939c..02039aa4 100644
--- a/data/presets/power/plant/source/gas.json
+++ b/data/presets/power/plant/source/gas.json
@@ -34,8 +34,8 @@
"combustion",
"fossil fuel",
"gasfired",
- "power station",
- "natural gas"
+ "natural gas",
+ "power station"
],
"name": "Gas-Fired Power Plant"
}
diff --git a/data/presets/power/plant/source/nuclear.json b/data/presets/power/plant/source/nuclear.json
index 5d91e194..8933f887 100644
--- a/data/presets/power/plant/source/nuclear.json
+++ b/data/presets/power/plant/source/nuclear.json
@@ -27,8 +27,8 @@
"terms": [
"atomic",
"fission",
- "power station",
- "nuclear reactor"
+ "nuclear reactor",
+ "power station"
],
"name": "Nuclear Power Plant"
}
diff --git a/data/presets/power/plant/source/waste.json b/data/presets/power/plant/source/waste.json
index adadc6f8..195d478f 100644
--- a/data/presets/power/plant/source/waste.json
+++ b/data/presets/power/plant/source/waste.json
@@ -31,13 +31,13 @@
"value": "waste"
},
"terms": [
- "Refuse Incineration Plant",
- "Incinerator",
- "Garbage Incinerator",
- "Garbage Incineration Plant",
- "waste",
"combustion",
- "gasification"
+ "garbage incineration plant",
+ "garbage incinerator",
+ "gasification",
+ "incinerator",
+ "refuse incineration plant",
+ "waste"
],
"name": "Waste Incineration Power Plant"
}
diff --git a/data/presets/power/pole.json b/data/presets/power/pole.json
index bfd422c3..01b4f26e 100644
--- a/data/presets/power/pole.json
+++ b/data/presets/power/pole.json
@@ -3,6 +3,7 @@
"fields": [
"ref",
"operator",
+ "design_power_pole",
"height",
"material",
"line_attachment"
diff --git a/data/presets/power/portal.json b/data/presets/power/portal.json
index 723a2b43..36b82010 100644
--- a/data/presets/power/portal.json
+++ b/data/presets/power/portal.json
@@ -8,7 +8,7 @@
],
"moreFields": [
"colour",
- "design",
+ "design_power_tower",
"height",
"line_management",
"manufacturer"
diff --git a/data/presets/power/switchgear.json b/data/presets/power/switchgear.json
new file mode 100644
index 00000000..50c71ec3
--- /dev/null
+++ b/data/presets/power/switchgear.json
@@ -0,0 +1,14 @@
+{
+ "icon": "temaki-power_switch",
+ "fields": [
+ "voltage",
+ "location"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "switchgear"
+ },
+ "name": "Switchgear"
+}
diff --git a/data/presets/power/tower.json b/data/presets/power/tower.json
index 2bdb0a7d..2ac3c152 100644
--- a/data/presets/power/tower.json
+++ b/data/presets/power/tower.json
@@ -3,11 +3,11 @@
"fields": [
"ref",
"operator",
- "design",
+ "structure_power",
+ "design_power_tower",
"height",
"material",
- "line_attachment",
- "structure_power"
+ "line_attachment"
],
"moreFields": [
"line_management",
@@ -18,7 +18,8 @@
"vertex"
],
"terms": [
- "power"
+ "power",
+ "power tower"
],
"tags": {
"power": "tower"
diff --git a/data/presets/public_transport/platform/light_rail.json b/data/presets/public_transport/platform/light_rail.json
index fe501116..40869b0b 100644
--- a/data/presets/public_transport/platform/light_rail.json
+++ b/data/presets/public_transport/platform/light_rail.json
@@ -32,9 +32,9 @@
"rail",
"track",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Light Rail Platform"
}
diff --git a/data/presets/public_transport/platform/train.json b/data/presets/public_transport/platform/train.json
index accba652..9f407f52 100644
--- a/data/presets/public_transport/platform/train.json
+++ b/data/presets/public_transport/platform/train.json
@@ -28,6 +28,7 @@
"public transit",
"public transportation",
"rail",
+ "railway platform",
"track",
"train",
"transit",
diff --git a/data/presets/public_transport/platform/tram.json b/data/presets/public_transport/platform/tram.json
index b057aea3..883c58b2 100644
--- a/data/presets/public_transport/platform/tram.json
+++ b/data/presets/public_transport/platform/tram.json
@@ -33,9 +33,9 @@
"streetcar",
"track",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Tram Platform"
}
diff --git a/data/presets/public_transport/platform/tram_point.json b/data/presets/public_transport/platform/tram_point.json
index fe6a700a..fd34f6b8 100644
--- a/data/presets/public_transport/platform/tram_point.json
+++ b/data/presets/public_transport/platform/tram_point.json
@@ -27,9 +27,9 @@
"streetcar",
"track",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Tram Stop / Platform"
}
diff --git a/data/presets/public_transport/platform/trolleybus.json b/data/presets/public_transport/platform/trolleybus.json
index 3c2ebdfc..ab6bd867 100644
--- a/data/presets/public_transport/platform/trolleybus.json
+++ b/data/presets/public_transport/platform/trolleybus.json
@@ -27,9 +27,9 @@
"streetcar",
"trackless",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Trolleybus Platform"
}
diff --git a/data/presets/public_transport/platform/trolleybus_point.json b/data/presets/public_transport/platform/trolleybus_point.json
index 1ba26653..59217386 100644
--- a/data/presets/public_transport/platform/trolleybus_point.json
+++ b/data/presets/public_transport/platform/trolleybus_point.json
@@ -32,9 +32,9 @@
"streetcar",
"trackless",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Trolleybus Stop"
}
diff --git a/data/presets/public_transport/station.json b/data/presets/public_transport/station.json
index 8f42ded6..664f06f5 100644
--- a/data/presets/public_transport/station.json
+++ b/data/presets/public_transport/station.json
@@ -7,18 +7,19 @@
"vehicles",
"address",
"building_area",
- "internet_access"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"air_conditioning",
"baby_feeding",
- "email",
- "fax",
+ "changing_table",
"gnis/feature_id-US",
- "internet_access/fee",
- "internet_access/ssid",
"level",
- "phone",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/public_transport/station_bus.json b/data/presets/public_transport/station_bus.json
index 70eb4ef9..9d5b0094 100644
--- a/data/presets/public_transport/station_bus.json
+++ b/data/presets/public_transport/station_bus.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-bus",
+ "icon": "temaki-board_bus",
"fields": [
"{public_transport/station}"
],
@@ -25,6 +25,7 @@
},
"terms": [
"bus",
+ "bus terminal",
"public transit",
"public transportation",
"station",
diff --git a/data/presets/public_transport/station_ferry.json b/data/presets/public_transport/station_ferry.json
index 52edd223..3a69851e 100644
--- a/data/presets/public_transport/station_ferry.json
+++ b/data/presets/public_transport/station_ferry.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-ferry",
+ "icon": "temaki-board_ferry",
"fields": [
"{public_transport/station}"
],
diff --git a/data/presets/public_transport/station_light_rail.json b/data/presets/public_transport/station_light_rail.json
index 18d4953b..58d4c62e 100644
--- a/data/presets/public_transport/station_light_rail.json
+++ b/data/presets/public_transport/station_light_rail.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-light_rail",
+ "icon": "temaki-board_light_rail",
"fields": [
"{public_transport/station}"
],
@@ -8,6 +8,7 @@
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
@@ -34,9 +35,9 @@
"terminal",
"track",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Light Rail Station"
}
diff --git a/data/presets/public_transport/station_monorail.json b/data/presets/public_transport/station_monorail.json
index bab24a90..c3b69e54 100644
--- a/data/presets/public_transport/station_monorail.json
+++ b/data/presets/public_transport/station_monorail.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-monorail",
+ "icon": "temaki-board_monorail",
"fields": [
"{public_transport/station}"
],
@@ -8,6 +8,7 @@
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
diff --git a/data/presets/public_transport/station_subway.json b/data/presets/public_transport/station_subway.json
index 92af563f..4e4a9981 100644
--- a/data/presets/public_transport/station_subway.json
+++ b/data/presets/public_transport/station_subway.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-subway",
+ "icon": "temaki-board_subway",
"fields": [
"{public_transport/station}"
],
@@ -8,6 +8,7 @@
],
"geometry": [
"point",
+ "vertex",
"area"
],
"tags": {
diff --git a/data/presets/public_transport/station_train.json b/data/presets/public_transport/station_train.json
index 7a6fb6fc..c9067e0a 100644
--- a/data/presets/public_transport/station_train.json
+++ b/data/presets/public_transport/station_train.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-train",
+ "icon": "temaki-board_train",
"fields": [
"{public_transport/station}"
],
diff --git a/data/presets/public_transport/station_tram.json b/data/presets/public_transport/station_tram.json
index 3919d740..f40b7522 100644
--- a/data/presets/public_transport/station_tram.json
+++ b/data/presets/public_transport/station_tram.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-tram",
+ "icon": "temaki-board_tram",
"fields": [
"{public_transport/station}"
],
@@ -29,9 +29,9 @@
"terminal",
"track",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Tram Station"
}
diff --git a/data/presets/public_transport/station_trolleybus.json b/data/presets/public_transport/station_trolleybus.json
index dcbdd4f8..cf105d66 100644
--- a/data/presets/public_transport/station_trolleybus.json
+++ b/data/presets/public_transport/station_trolleybus.json
@@ -33,9 +33,9 @@
"terminal",
"trackless",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Trolleybus Station / Terminal"
}
diff --git a/data/presets/public_transport/stop_position.json b/data/presets/public_transport/stop_position.json
index 69cde81d..4a0a1e12 100644
--- a/data/presets/public_transport/stop_position.json
+++ b/data/presets/public_transport/stop_position.json
@@ -7,7 +7,6 @@
"operator",
"vehicles"
],
- "moreFields": [],
"geometry": [
"vertex"
],
diff --git a/data/presets/public_transport/stop_position_light_rail.json b/data/presets/public_transport/stop_position_light_rail.json
index 0c5b7ee3..fdf882ae 100644
--- a/data/presets/public_transport/stop_position_light_rail.json
+++ b/data/presets/public_transport/stop_position_light_rail.json
@@ -30,9 +30,9 @@
"rail",
"track",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Light Rail Stopping Location"
}
diff --git a/data/presets/public_transport/stop_position_tram.json b/data/presets/public_transport/stop_position_tram.json
index 0902a7ea..5e1be671 100644
--- a/data/presets/public_transport/stop_position_tram.json
+++ b/data/presets/public_transport/stop_position_tram.json
@@ -31,9 +31,9 @@
"streetcar",
"track",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Tram Stopping Location"
}
diff --git a/data/presets/public_transport/stop_position_trolleybus.json b/data/presets/public_transport/stop_position_trolleybus.json
index fc7b8a98..45f2f724 100644
--- a/data/presets/public_transport/stop_position_trolleybus.json
+++ b/data/presets/public_transport/stop_position_trolleybus.json
@@ -25,9 +25,9 @@
"streetcar",
"trackless",
"tram",
- "trolley",
"transit",
- "transportation"
+ "transportation",
+ "trolley"
],
"name": "Trolleybus Stopping Location"
}
diff --git a/data/presets/railway/_station.json b/data/presets/railway/_station.json
index 815857c1..73680a42 100644
--- a/data/presets/railway/_station.json
+++ b/data/presets/railway/_station.json
@@ -1,5 +1,5 @@
{
- "icon": "temaki-train",
+ "icon": "temaki-board_train",
"fields": [
"{public_transport/station}"
],
diff --git a/data/presets/railway/abandoned.json b/data/presets/railway/abandoned.json
index 1606bd59..51f4b5c2 100644
--- a/data/presets/railway/abandoned.json
+++ b/data/presets/railway/abandoned.json
@@ -7,6 +7,7 @@
"usage_rail"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"incline"
],
diff --git a/data/presets/railway/buffer_stop.json b/data/presets/railway/buffer_stop.json
index bfd73e6c..1c8ae102 100644
--- a/data/presets/railway/buffer_stop.json
+++ b/data/presets/railway/buffer_stop.json
@@ -7,9 +7,9 @@
"railway": "buffer_stop"
},
"terms": [
- "stop",
+ "buffer",
"halt",
- "buffer"
+ "stop"
],
"name": "Buffer Stop"
}
diff --git a/data/presets/railway/construction.json b/data/presets/railway/construction.json
index 96304f69..c6647017 100644
--- a/data/presets/railway/construction.json
+++ b/data/presets/railway/construction.json
@@ -10,6 +10,7 @@
"electrified"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"frequency_electrified",
"highspeed",
diff --git a/data/presets/railway/crossing.json b/data/presets/railway/crossing.json
index a258dc61..895d2544 100644
--- a/data/presets/railway/crossing.json
+++ b/data/presets/railway/crossing.json
@@ -17,13 +17,13 @@
},
"terms": [
"crossing",
- "path railway crossing",
- "pedestrian crossing",
- "level crossing",
"grade crossing",
+ "level crossing",
+ "path railway crossing",
+ "path through railroad",
+ "pedestrian crossing",
"railroad crossing",
"railway path crossing",
- "path through railroad",
"train crossing"
],
"name": "Railway-Path Crossing"
diff --git a/data/presets/railway/funicular.json b/data/presets/railway/funicular.json
index da3b8a09..3f6cd1cd 100644
--- a/data/presets/railway/funicular.json
+++ b/data/presets/railway/funicular.json
@@ -9,6 +9,7 @@
"service_rail"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"electrified",
"frequency_electrified",
@@ -19,10 +20,10 @@
"line"
],
"terms": [
- "venicular",
"cable car",
"cable railway",
- "funicular railway"
+ "funicular railway",
+ "venicular"
],
"tags": {
"railway": "funicular"
diff --git a/data/presets/railway/level_crossing.json b/data/presets/railway/level_crossing.json
index 1bfda0cd..7ed06182 100644
--- a/data/presets/railway/level_crossing.json
+++ b/data/presets/railway/level_crossing.json
@@ -13,8 +13,8 @@
},
"terms": [
"crossing",
- "level crossing",
"grade crossing",
+ "level crossing",
"railroad crossing",
"railway road crossing",
"road railway crossing",
diff --git a/data/presets/railway/light_rail.json b/data/presets/railway/light_rail.json
index f10b78d7..9d971b31 100644
--- a/data/presets/railway/light_rail.json
+++ b/data/presets/railway/light_rail.json
@@ -10,6 +10,7 @@
"usage_rail"
],
"moreFields": [
+ "bridge/ref",
"covered_no",
"frequency_electrified",
"incline",
diff --git a/data/presets/railway/milestone.json b/data/presets/railway/milestone.json
index d878a84a..d3e554d4 100644
--- a/data/presets/railway/milestone.json
+++ b/data/presets/railway/milestone.json
@@ -15,8 +15,8 @@
"railway": "milestone"
},
"terms": [
- "milestone",
- "marker"
+ "marker",
+ "milestone"
],
"name": "Railway Milestone"
}
diff --git a/data/presets/railway/miniature.json b/data/presets/railway/miniature.json
index 58667c04..dd9e37c9 100644
--- a/data/presets/railway/miniature.json
+++ b/data/presets/railway/miniature.json
@@ -13,9 +13,9 @@
"railway": "miniature"
},
"terms": [
- "rideable miniature railway",
+ "minimum gauge railway",
"narrow gauge railway",
- "minimum gauge railway"
+ "rideable miniature railway"
],
"name": "Miniature Train Track"
}
diff --git a/data/presets/railway/narrow_gauge.json b/data/presets/railway/narrow_gauge.json
index 75ccc950..7b532f57 100644
--- a/data/presets/railway/narrow_gauge.json
+++ b/data/presets/railway/narrow_gauge.json
@@ -13,8 +13,8 @@
"railway": "narrow_gauge"
},
"terms": [
- "narrow gauge railway",
- "narrow gauge railroad"
+ "narrow gauge railroad",
+ "narrow gauge railway"
],
"name": "Narrow Gauge Track"
}
diff --git a/data/presets/railway/rail.json b/data/presets/railway/rail.json
index 3a078b1c..f51a6c0e 100644
--- a/data/presets/railway/rail.json
+++ b/data/presets/railway/rail.json
@@ -1,11 +1,13 @@
{
"icon": "temaki-railway_track",
"fields": [
- "{railway/light_rail}"
+ "{railway/light_rail}",
+ "railway/track_ref"
],
"moreFields": [
"{railway/light_rail}",
- "highspeed"
+ "highspeed",
+ "ref_rail"
],
"geometry": [
"line"
@@ -14,8 +16,8 @@
"railway": "rail"
},
"terms": [
- "rail",
"permanent way",
+ "rail",
"rail line",
"track",
"train track"
diff --git a/data/presets/railway/rail/highspeed.json b/data/presets/railway/rail/highspeed.json
index f42b5704..176b8bcf 100644
--- a/data/presets/railway/rail/highspeed.json
+++ b/data/presets/railway/rail/highspeed.json
@@ -15,7 +15,7 @@
"fast rail",
"high speed rail",
"highspeed rail",
- "HSR"
+ "hsr"
],
"name": "High-Speed Train Track"
}
diff --git a/data/presets/railway/signal.json b/data/presets/railway/signal.json
index 83f56eea..9266cd51 100644
--- a/data/presets/railway/signal.json
+++ b/data/presets/railway/signal.json
@@ -13,8 +13,8 @@
"railway": "signal"
},
"terms": [
- "signal",
- "lights"
+ "lights",
+ "signal"
],
"name": "Railway Signal"
}
diff --git a/data/presets/railway/switch.json b/data/presets/railway/switch.json
index d5d6d8ba..411b0e0c 100644
--- a/data/presets/railway/switch.json
+++ b/data/presets/railway/switch.json
@@ -1,5 +1,9 @@
{
"icon": "temaki-junction",
+ "fields": [
+ "railway/switch",
+ "ref"
+ ],
"geometry": [
"vertex"
],
@@ -7,8 +11,8 @@
"railway": "switch"
},
"terms": [
- "switch",
- "points"
+ "points",
+ "switch"
],
"name": "Railway Switch"
}
diff --git a/data/presets/railway/train_wash.json b/data/presets/railway/train_wash.json
index 1b637eb7..3bbfa5c2 100644
--- a/data/presets/railway/train_wash.json
+++ b/data/presets/railway/train_wash.json
@@ -13,8 +13,8 @@
"railway": "wash"
},
"terms": [
- "wash",
- "clean"
+ "clean",
+ "wash"
],
"name": "Train Wash"
}
diff --git a/data/presets/railway/turntable.json b/data/presets/railway/turntable.json
new file mode 100644
index 00000000..f58fecde
--- /dev/null
+++ b/data/presets/railway/turntable.json
@@ -0,0 +1,17 @@
+{
+ "icon": "maki-circle-stroked",
+ "geometry": [
+ "area",
+ "vertex"
+ ],
+ "fields": [
+ "ref"
+ ],
+ "tags": {
+ "railway": "turntable"
+ },
+ "terms": [
+ "turn table"
+ ],
+ "name": "Railway Turntable"
+}
diff --git a/data/presets/roller_coaster/station.json b/data/presets/roller_coaster/station.json
new file mode 100644
index 00000000..b107f4b9
--- /dev/null
+++ b/data/presets/roller_coaster/station.json
@@ -0,0 +1,18 @@
+{
+ "icon": "temaki-roller_coaster",
+ "fields": [
+ "building_area_yes"
+ ],
+ "geometry": [
+ "vertex",
+ "area"
+ ],
+ "terms": [
+ "amusement ride",
+ "theme park"
+ ],
+ "tags": {
+ "roller_coaster": "station"
+ },
+ "name": "Roller Coaster Station"
+}
diff --git a/data/presets/roller_coaster/support.json b/data/presets/roller_coaster/support.json
new file mode 100644
index 00000000..6aafc957
--- /dev/null
+++ b/data/presets/roller_coaster/support.json
@@ -0,0 +1,18 @@
+{
+ "icon": "roentgen-tower",
+ "fields": [
+ "height",
+ "layer",
+ "material"
+ ],
+ "moreFields": [
+ "colour"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "roller_coaster": "support"
+ },
+ "name": "Roller Coaster Support"
+}
diff --git a/data/presets/roller_coaster/track.json b/data/presets/roller_coaster/track.json
new file mode 100644
index 00000000..b2ff5a30
--- /dev/null
+++ b/data/presets/roller_coaster/track.json
@@ -0,0 +1,19 @@
+{
+ "icon": "temaki-roller_coaster",
+ "fields": [
+ "roller_coaster/track",
+ "height",
+ "layer"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "terms": [
+ "amusement ride",
+ "theme park"
+ ],
+ "tags": {
+ "roller_coaster": "track"
+ },
+ "name": "Roller Coaster Track"
+}
diff --git a/data/presets/route/ferry.json b/data/presets/route/ferry.json
index 4a9a2cd0..e065f327 100644
--- a/data/presets/route/ferry.json
+++ b/data/presets/route/ferry.json
@@ -24,11 +24,11 @@
"network",
"oneway",
"opening_hours",
- "opening_hours/covid19",
"phone",
"ref_route",
"reservation",
"roundtrip",
+ "via",
"vhf",
"wheelchair"
],
diff --git a/data/presets/seamark/beacon_isolated_danger.json b/data/presets/seamark/beacon_isolated_danger.json
index 93449c79..2b555bd5 100644
--- a/data/presets/seamark/beacon_isolated_danger.json
+++ b/data/presets/seamark/beacon_isolated_danger.json
@@ -11,8 +11,8 @@
],
"terms": [
"beacon isolated danger",
- "isolated danger beacon",
- "iala"
+ "iala",
+ "isolated danger beacon"
],
"tags": {
"seamark:type": "beacon_isolated_danger"
diff --git a/data/presets/seamark/beacon_lateral.json b/data/presets/seamark/beacon_lateral.json
index 9b9aab95..9747ec9b 100644
--- a/data/presets/seamark/beacon_lateral.json
+++ b/data/presets/seamark/beacon_lateral.json
@@ -13,11 +13,11 @@
"vertex"
],
"terms": [
- "lateral beacon",
"beacon lateral",
"cevni",
"channel marker",
"iala",
+ "lateral beacon",
"lateral mark"
],
"tags": {
diff --git a/data/presets/seamark/buoy_lateral.json b/data/presets/seamark/buoy_lateral.json
index cc9294e9..7bd44d8f 100644
--- a/data/presets/seamark/buoy_lateral.json
+++ b/data/presets/seamark/buoy_lateral.json
@@ -14,11 +14,11 @@
"vertex"
],
"terms": [
- "lateral buoy",
"buoy lateral",
"cevni",
"channel marker",
"iala",
+ "lateral buoy",
"lateral mark"
],
"tags": {
diff --git a/data/presets/seamark/buoy_lateral/green.json b/data/presets/seamark/buoy_lateral/green.json
index 0f0a43d6..33c76393 100644
--- a/data/presets/seamark/buoy_lateral/green.json
+++ b/data/presets/seamark/buoy_lateral/green.json
@@ -5,11 +5,11 @@
"vertex"
],
"terms": [
- "lateral buoy",
"buoy lateral",
"cevni",
"channel marker",
"iala",
+ "lateral buoy",
"lateral mark"
],
"tags": {
diff --git a/data/presets/seamark/buoy_lateral/red.json b/data/presets/seamark/buoy_lateral/red.json
index 7f7b9165..d9f4b099 100644
--- a/data/presets/seamark/buoy_lateral/red.json
+++ b/data/presets/seamark/buoy_lateral/red.json
@@ -5,11 +5,11 @@
"vertex"
],
"terms": [
- "lateral buoy",
"buoy lateral",
"cevni",
"channel marker",
"iala",
+ "lateral buoy",
"lateral mark"
],
"tags": {
diff --git a/data/presets/seamark/mooring.json b/data/presets/seamark/mooring.json
index e1f31c2b..9c4f94bc 100644
--- a/data/presets/seamark/mooring.json
+++ b/data/presets/seamark/mooring.json
@@ -10,10 +10,10 @@
"point"
],
"terms": [
- "dolphin",
- "pile",
"bollard",
"buoy",
+ "dolphin",
+ "pile",
"post"
],
"tags": {
diff --git a/data/presets/shop.json b/data/presets/shop.json
index f66aeb1a..5116b035 100644
--- a/data/presets/shop.json
+++ b/data/presets/shop.json
@@ -11,29 +11,21 @@
"phone"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"branch_brand",
"brand",
"building/levels_building",
+ "changing_table",
"currency_multi",
"ele",
- "email",
- "fax",
- "gnis/feature_id-US",
"height_building",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "not/name",
- "opening_hours/covid19",
- "ref/vatin",
- "ref/FR/siret-FR",
"second_hand",
"stroller",
"toilets",
"toilets/wheelchair",
- "wheelchair"
+ "toilets/menstrual_products_poi"
],
"geometry": [
"point",
diff --git a/data/presets/shop/hobby.json b/data/presets/shop/_hobby.json
similarity index 80%
rename from data/presets/shop/hobby.json
rename to data/presets/shop/_hobby.json
index 2d06d06c..e1c58c07 100644
--- a/data/presets/shop/hobby.json
+++ b/data/presets/shop/_hobby.json
@@ -8,9 +8,10 @@
"shop": "hobby"
},
"terms": [
- "manga",
"figurine",
+ "manga",
"model"
],
- "name": "Hobby Shop"
+ "name": "Hobby Shop",
+ "searchable": false
}
diff --git a/data/presets/shop/_vacant.json b/data/presets/shop/_vacant.json
index 6c966306..6887328e 100644
--- a/data/presets/shop/_vacant.json
+++ b/data/presets/shop/_vacant.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-shop",
+ "icon": "fas-store-alt-slash",
"fields": [
"name",
"address",
@@ -9,9 +9,11 @@
"point",
"area"
],
+ "terms": [
+ "empty"
+ ],
"tags": {
"shop": "vacant"
},
- "name": "Vacant Shop",
- "searchable": false
+ "name": "Vacant Shop"
}
diff --git a/data/presets/shop/agrarian.json b/data/presets/shop/agrarian.json
index 75042578..17dead1f 100644
--- a/data/presets/shop/agrarian.json
+++ b/data/presets/shop/agrarian.json
@@ -11,10 +11,10 @@
"terms": [
"agricultural inputs",
"agricultural machines",
- "seeds",
- "pesticides",
+ "agricultural tools",
"fertilizer",
- "agricultural tools"
+ "pesticides",
+ "seeds"
],
"tags": {
"shop": "agrarian"
diff --git a/data/presets/shop/alcohol.json b/data/presets/shop/alcohol.json
index c93ab37f..a14d19c5 100644
--- a/data/presets/shop/alcohol.json
+++ b/data/presets/shop/alcohol.json
@@ -2,10 +2,12 @@
"icon": "fas-wine-bottle",
"fields": [
"{shop}",
- "drive_through"
+ "drive_through",
+ "opening_hours/drive_through"
],
"moreFields": [
"{shop}",
+ "fhrs/id-GB",
"min_age"
],
"geometry": [
diff --git a/data/presets/shop/anime.json b/data/presets/shop/anime.json
index b8fcaf8c..41cfea49 100644
--- a/data/presets/shop/anime.json
+++ b/data/presets/shop/anime.json
@@ -8,11 +8,12 @@
"shop": "anime"
},
"terms": [
- "manga",
- "japan",
"cosplay",
+ "dakimakura",
"figurine",
- "dakimakura"
+ "hobby",
+ "japan",
+ "manga"
],
"name": "Anime / Manga Shop"
}
diff --git a/data/presets/shop/appliance.json b/data/presets/shop/appliance.json
index 2cb32ad5..92421645 100644
--- a/data/presets/shop/appliance.json
+++ b/data/presets/shop/appliance.json
@@ -17,7 +17,8 @@
"refrigerator",
"stove",
"washer",
- "washing machine"
+ "washing machine",
+ "white goods"
],
"tags": {
"shop": "appliance"
diff --git a/data/presets/shop/art.json b/data/presets/shop/art.json
index 7e998cce..570a2012 100644
--- a/data/presets/shop/art.json
+++ b/data/presets/shop/art.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-shop",
+ "icon": "maki-art-gallery",
"geometry": [
"point",
"area"
diff --git a/data/presets/shop/bakery.json b/data/presets/shop/bakery.json
index 5c51c5b8..f63c7847 100644
--- a/data/presets/shop/bakery.json
+++ b/data/presets/shop/bakery.json
@@ -12,5 +12,9 @@
"cakes",
"rolls"
],
+ "moreFields": [
+ "{shop}",
+ "fhrs/id-GB"
+ ],
"name": "Bakery"
}
diff --git a/data/presets/shop/bbq.json b/data/presets/shop/bbq.json
new file mode 100644
index 00000000..961bda61
--- /dev/null
+++ b/data/presets/shop/bbq.json
@@ -0,0 +1,23 @@
+{
+ "icon": "maki-bbq",
+ "fields": [
+ "{shop}"
+ ],
+ "moreFields": [
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "barbecue",
+ "barbeque",
+ "bbq",
+ "grill"
+ ],
+ "tags": {
+ "shop": "bbq"
+ },
+ "name": "Barbecue Shop"
+}
diff --git a/data/presets/shop/beauty.json b/data/presets/shop/beauty.json
index d1686303..69537f27 100644
--- a/data/presets/shop/beauty.json
+++ b/data/presets/shop/beauty.json
@@ -9,8 +9,8 @@
"area"
],
"terms": [
- "spa",
"salon",
+ "spa",
"tanning"
],
"tags": {
diff --git a/data/presets/shop/bicycle.json b/data/presets/shop/bicycle.json
index c90c64b0..b6a9301a 100644
--- a/data/presets/shop/bicycle.json
+++ b/data/presets/shop/bicycle.json
@@ -12,6 +12,7 @@
"bicycle store",
"bike",
"bike store",
+ "hobby",
"repair",
"tricycle",
"unicycle"
diff --git a/data/presets/shop/boat.json b/data/presets/shop/boat.json
index 64f080a5..2ffb55ff 100644
--- a/data/presets/shop/boat.json
+++ b/data/presets/shop/boat.json
@@ -6,6 +6,7 @@
],
"terms": [
"fishing boat",
+ "hobby",
"jetski",
"motorboat",
"rowboat",
diff --git a/data/presets/shop/books.json b/data/presets/shop/books.json
index 36453f59..cb5a93b7 100644
--- a/data/presets/shop/books.json
+++ b/data/presets/shop/books.json
@@ -2,6 +2,7 @@
"icon": "fas-book",
"fields": [
"{shop}",
+ "books",
"internet_access"
],
"moreFields": [
@@ -16,6 +17,9 @@
"tags": {
"shop": "books"
},
+ "terms": [
+ "hobby"
+ ],
"name": "Bookstore",
"aliases": [
"Bookshop",
diff --git a/data/presets/shop/brewing_supplies.json b/data/presets/shop/brewing_supplies.json
index 3983f711..0c0d6a39 100644
--- a/data/presets/shop/brewing_supplies.json
+++ b/data/presets/shop/brewing_supplies.json
@@ -6,6 +6,7 @@
],
"terms": [
"brew shop",
+ "hobby",
"homebrew supply store"
],
"tags": {
diff --git a/data/presets/shop/butcher.json b/data/presets/shop/butcher.json
index 98ca0bf5..b6d5ad10 100644
--- a/data/presets/shop/butcher.json
+++ b/data/presets/shop/butcher.json
@@ -5,8 +5,8 @@
"area"
],
"terms": [
- "chicken",
"beef",
+ "chicken",
"lamb",
"meat",
"pork"
@@ -14,6 +14,9 @@
"tags": {
"shop": "butcher"
},
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"name": "Butcher",
"aliases": [
"Butcher Shop",
diff --git a/data/presets/shop/cannabis.json b/data/presets/shop/cannabis.json
index 7143a286..bf6fbdfc 100644
--- a/data/presets/shop/cannabis.json
+++ b/data/presets/shop/cannabis.json
@@ -10,6 +10,7 @@
],
"terms": [
"420",
+ "cannabis dispensary",
"marijuana",
"pot",
"reefer",
diff --git a/data/presets/shop/car.json b/data/presets/shop/car.json
index 514d9a47..6263e75a 100644
--- a/data/presets/shop/car.json
+++ b/data/presets/shop/car.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-car",
+ "icon": "temaki-car_dealer",
"fields": [
"name",
"brand",
diff --git a/data/presets/shop/car/second_hand.json b/data/presets/shop/car/second_hand.json
index 5ebfbd87..9a9b4e6f 100644
--- a/data/presets/shop/car/second_hand.json
+++ b/data/presets/shop/car/second_hand.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-car",
+ "icon": "temaki-car_dealer",
"geometry": [
"point",
"area"
diff --git a/data/presets/shop/car_repair.json b/data/presets/shop/car_repair.json
index 06744211..bad0ff5f 100644
--- a/data/presets/shop/car_repair.json
+++ b/data/presets/shop/car_repair.json
@@ -15,8 +15,8 @@
"inspection",
"mechanic",
"oil change",
- "panelbeater",
"panel beater",
+ "panelbeater",
"service"
],
"tags": {
diff --git a/data/presets/shop/charity.json b/data/presets/shop/charity.json
index 051577cc..6b516416 100644
--- a/data/presets/shop/charity.json
+++ b/data/presets/shop/charity.json
@@ -9,9 +9,9 @@
"area"
],
"terms": [
- "thrift",
+ "nonprofit",
"op shop",
- "nonprofit"
+ "thrift"
],
"tags": {
"shop": "charity"
diff --git a/data/presets/shop/cheese.json b/data/presets/shop/cheese.json
index e872498b..aa614907 100644
--- a/data/presets/shop/cheese.json
+++ b/data/presets/shop/cheese.json
@@ -7,5 +7,8 @@
"tags": {
"shop": "cheese"
},
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"name": "Cheese Store"
}
diff --git a/data/presets/shop/chemist.json b/data/presets/shop/chemist.json
index f3583285..85398d0b 100644
--- a/data/presets/shop/chemist.json
+++ b/data/presets/shop/chemist.json
@@ -21,5 +21,8 @@
"prescription",
"tooth"
],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"name": "Drugstore"
}
diff --git a/data/presets/shop/clothes.json b/data/presets/shop/clothes.json
index 4df642d4..8381ccaa 100644
--- a/data/presets/shop/clothes.json
+++ b/data/presets/shop/clothes.json
@@ -13,6 +13,7 @@
"shop": "clothes"
},
"terms": [
+ "apparel",
"blouses",
"boutique",
"bras",
diff --git a/data/presets/shop/clothes/underwear.json b/data/presets/shop/clothes/underwear.json
index 57c70e96..c4b2cfc2 100644
--- a/data/presets/shop/clothes/underwear.json
+++ b/data/presets/shop/clothes/underwear.json
@@ -14,10 +14,10 @@
},
"terms": [
"boutique",
+ "boxers",
"bras",
"brassieres",
"briefs",
- "boxers",
"dessous",
"fashion",
"lingerie",
diff --git a/data/presets/shop/collector.json b/data/presets/shop/collector.json
index a1f4ac46..35a9b06b 100644
--- a/data/presets/shop/collector.json
+++ b/data/presets/shop/collector.json
@@ -17,6 +17,7 @@
"comics",
"dolls",
"figurines",
+ "hobby",
"numismatics",
"philately",
"stamps",
diff --git a/data/presets/shop/computer.json b/data/presets/shop/computer.json
index ede82281..47efd971 100644
--- a/data/presets/shop/computer.json
+++ b/data/presets/shop/computer.json
@@ -9,8 +9,8 @@
},
"terms": [
"desktop",
- "laptop",
"hardware",
+ "laptop",
"operating system",
"software"
],
diff --git a/data/presets/shop/confectionery.json b/data/presets/shop/confectionery.json
index 755ee14d..cd88e45e 100644
--- a/data/presets/shop/confectionery.json
+++ b/data/presets/shop/confectionery.json
@@ -13,6 +13,9 @@
"tags": {
"shop": "confectionery"
},
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"name": "Candy Store",
"aliases": [
"Candy Shop",
diff --git a/data/presets/shop/convenience.json b/data/presets/shop/convenience.json
index 1e47e445..e44782d6 100644
--- a/data/presets/shop/convenience.json
+++ b/data/presets/shop/convenience.json
@@ -2,6 +2,7 @@
"icon": "fas-shopping-basket",
"moreFields": [
"{shop}",
+ "fhrs/id-GB",
"organic"
],
"geometry": [
@@ -12,8 +13,8 @@
"shop": "convenience"
},
"terms": [
- "mini-mart",
- "mini-market"
+ "mini-market",
+ "mini-mart"
],
"name": "Convenience Store",
"aliases": [
diff --git a/data/presets/shop/craft.json b/data/presets/shop/craft.json
index 709f828b..2036f200 100644
--- a/data/presets/shop/craft.json
+++ b/data/presets/shop/craft.json
@@ -1,5 +1,5 @@
{
- "icon": "fas-cut",
+ "icon": "fas-palette",
"geometry": [
"point",
"area"
diff --git a/data/presets/shop/dairy.json b/data/presets/shop/dairy.json
index b00b1727..75bce336 100644
--- a/data/presets/shop/dairy.json
+++ b/data/presets/shop/dairy.json
@@ -5,9 +5,9 @@
"area"
],
"terms": [
- "milk",
+ "cheese",
"egg",
- "cheese"
+ "milk"
],
"tags": {
"shop": "dairy"
diff --git a/data/presets/shop/deli.json b/data/presets/shop/deli.json
index a10de92d..94b038ef 100644
--- a/data/presets/shop/deli.json
+++ b/data/presets/shop/deli.json
@@ -10,6 +10,9 @@
"tags": {
"shop": "deli"
},
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"name": "Delicatessen",
"aliases": [
"Specialty Food Store",
diff --git a/data/presets/shop/department_store.json b/data/presets/shop/department_store.json
index f23ccd38..ad522a57 100644
--- a/data/presets/shop/department_store.json
+++ b/data/presets/shop/department_store.json
@@ -7,5 +7,8 @@
"tags": {
"shop": "department_store"
},
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"name": "Department Store"
}
diff --git a/data/presets/shop/doityourself.json b/data/presets/shop/doityourself.json
index da3a2b96..b7a8cb66 100644
--- a/data/presets/shop/doityourself.json
+++ b/data/presets/shop/doityourself.json
@@ -12,6 +12,7 @@
"diy",
"do it yourself",
"hardware",
+ "hobby",
"home improvement",
"tools"
],
diff --git a/data/presets/shop/e-cigarette.json b/data/presets/shop/e-cigarette.json
index 8773cf8b..08c5f175 100644
--- a/data/presets/shop/e-cigarette.json
+++ b/data/presets/shop/e-cigarette.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-shop",
+ "icon": "fas-smoking",
"moreFields": [
"{shop}",
"min_age"
diff --git a/data/presets/shop/electrical.json b/data/presets/shop/electrical.json
index 55564646..abd7ad53 100644
--- a/data/presets/shop/electrical.json
+++ b/data/presets/shop/electrical.json
@@ -8,7 +8,7 @@
"cable",
"electric",
"fan",
- "LED",
+ "led",
"lighting",
"power",
"wire"
diff --git a/data/presets/shop/erotic.json b/data/presets/shop/erotic.json
index cfa6060d..1d14a421 100644
--- a/data/presets/shop/erotic.json
+++ b/data/presets/shop/erotic.json
@@ -9,8 +9,8 @@
"area"
],
"terms": [
- "sex",
- "porn"
+ "porn",
+ "sex"
],
"tags": {
"shop": "erotic"
diff --git a/data/presets/shop/erotic/lgbtq.json b/data/presets/shop/erotic/lgbtq.json
index 4cb57ca3..3c95f70a 100644
--- a/data/presets/shop/erotic/lgbtq.json
+++ b/data/presets/shop/erotic/lgbtq.json
@@ -5,8 +5,8 @@
"area"
],
"terms": [
- "sex",
- "porn"
+ "porn",
+ "sex"
],
"tags": {
"shop": "erotic",
diff --git a/data/presets/shop/fabric.json b/data/presets/shop/fabric.json
index 341aee78..6148a579 100644
--- a/data/presets/shop/fabric.json
+++ b/data/presets/shop/fabric.json
@@ -5,7 +5,9 @@
"area"
],
"terms": [
- "sew"
+ "sew",
+ "textile",
+ "textiles"
],
"tags": {
"shop": "fabric"
diff --git a/data/presets/shop/farm.json b/data/presets/shop/farm.json
index 6da75969..90112e6a 100644
--- a/data/presets/shop/farm.json
+++ b/data/presets/shop/farm.json
@@ -4,6 +4,9 @@
"{shop}",
"organic"
],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"geometry": [
"point",
"area"
diff --git a/data/presets/shop/fireplace.json b/data/presets/shop/fireplace.json
index 05bd77c2..ab8a9461 100644
--- a/data/presets/shop/fireplace.json
+++ b/data/presets/shop/fireplace.json
@@ -6,8 +6,8 @@
],
"terms": [
"fireplace",
- "stove",
- "masonry heater"
+ "masonry heater",
+ "stove"
],
"tags": {
"shop": "fireplace"
diff --git a/data/presets/shop/fishing.json b/data/presets/shop/fishing.json
index d1264b21..138e6769 100644
--- a/data/presets/shop/fishing.json
+++ b/data/presets/shop/fishing.json
@@ -12,6 +12,7 @@
"fishing line",
"flies",
"fly",
+ "hobby",
"lure",
"reel",
"rod",
diff --git a/data/presets/shop/frame.json b/data/presets/shop/frame.json
index 6f46d8a8..2d717efd 100644
--- a/data/presets/shop/frame.json
+++ b/data/presets/shop/frame.json
@@ -1,5 +1,5 @@
{
- "icon": "fas-vector-square",
+ "icon": "temaki-portrait_framed",
"geometry": [
"point",
"area"
diff --git a/data/presets/shop/frozen_food.json b/data/presets/shop/frozen_food.json
index 450bbcc6..f0c303eb 100644
--- a/data/presets/shop/frozen_food.json
+++ b/data/presets/shop/frozen_food.json
@@ -1,9 +1,12 @@
{
- "icon": "maki-shop",
+ "icon": "far-snowflake",
"geometry": [
"point",
"area"
],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"tags": {
"shop": "frozen_food"
},
diff --git a/data/presets/shop/funeral_directors.json b/data/presets/shop/funeral_directors.json
index ae88ef13..89dcad03 100644
--- a/data/presets/shop/funeral_directors.json
+++ b/data/presets/shop/funeral_directors.json
@@ -10,9 +10,9 @@
"area"
],
"terms": [
- "undertaker",
"memorial home",
- "mortuary"
+ "mortuary",
+ "undertaker"
],
"tags": {
"shop": "funeral_directors"
diff --git a/data/presets/shop/games.json b/data/presets/shop/games.json
index b0b6b281..110444df 100644
--- a/data/presets/shop/games.json
+++ b/data/presets/shop/games.json
@@ -12,6 +12,7 @@
"card game",
"dice game",
"game shop",
+ "hobby",
"larp",
"live action role-playing game",
"miniature wargame",
diff --git a/data/presets/shop/gold_buyer.json b/data/presets/shop/gold_buyer.json
new file mode 100644
index 00000000..3c60a121
--- /dev/null
+++ b/data/presets/shop/gold_buyer.json
@@ -0,0 +1,17 @@
+{
+ "icon": "fas-hand-holding",
+ "fields": [
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "aliases": [
+ "Gold trader"
+ ],
+ "tags": {
+ "shop": "gold_buyer"
+ },
+ "name": "Gold buyer"
+}
diff --git a/data/presets/shop/greengrocer.json b/data/presets/shop/greengrocer.json
index eac27802..083aee6e 100644
--- a/data/presets/shop/greengrocer.json
+++ b/data/presets/shop/greengrocer.json
@@ -4,6 +4,9 @@
"{shop}",
"organic"
],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"geometry": [
"point",
"area"
diff --git a/data/presets/shop/groundskeeping.json b/data/presets/shop/groundskeeping.json
new file mode 100644
index 00000000..818b5e6e
--- /dev/null
+++ b/data/presets/shop/groundskeeping.json
@@ -0,0 +1,20 @@
+{
+ "icon": "fas-tractor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "chainsaw",
+ "cultivator",
+ "garden machinery",
+ "garden power tools",
+ "groundskeeping",
+ "mower, string trimmer",
+ "snow blower"
+ ],
+ "tags": {
+ "shop": "groundskeeping"
+ },
+ "name": "Lawn & Garden Equipment Store"
+}
diff --git a/data/presets/shop/hairdresser.json b/data/presets/shop/hairdresser.json
index 64e25762..72a917a1 100644
--- a/data/presets/shop/hairdresser.json
+++ b/data/presets/shop/hairdresser.json
@@ -5,7 +5,7 @@
"area"
],
"terms": [
- "beard"
+ "haircut"
],
"fields": [
"name",
@@ -15,7 +15,7 @@
"opening_hours",
"payment_multi",
"phone",
- "gender"
+ "gender_simple"
],
"tags": {
"shop": "hairdresser"
@@ -23,6 +23,6 @@
"name": "Hairdresser",
"aliases": [
"Hair Salon",
- "Barber Shop"
+ "Hair Stylist"
]
}
diff --git a/data/presets/shop/hairdresser/barber.json b/data/presets/shop/hairdresser/barber.json
new file mode 100644
index 00000000..dd2bed66
--- /dev/null
+++ b/data/presets/shop/hairdresser/barber.json
@@ -0,0 +1,42 @@
+{
+ "icon": "temaki-beauty_salon",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "terms": [
+ "beard",
+ "groom",
+ "grooming",
+ "hair cut",
+ "hairdresser",
+ "moustache",
+ "razor",
+ "shave",
+ "shaving"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "payment_multi",
+ "phone",
+ "gender_simple"
+ ],
+ "tags": {
+ "shop": "hairdresser",
+ "hairdresser": "barber"
+ },
+ "name": "Barber",
+ "aliases": [
+ "Barber's",
+ "Barber Shop",
+ "Barbershop"
+ ],
+ "reference": {
+ "key": "hairdresser",
+ "value": "barber"
+ }
+}
diff --git a/data/presets/shop/hairdresser_supply.json b/data/presets/shop/hairdresser_supply.json
index a2d8c1d3..ed89392f 100644
--- a/data/presets/shop/hairdresser_supply.json
+++ b/data/presets/shop/hairdresser_supply.json
@@ -6,10 +6,10 @@
],
"terms": [
"barber",
+ "conditioner",
"razor",
"shampoo",
- "shaver",
- "conditioner"
+ "shaver"
],
"tags": {
"shop": "hairdresser_supply"
diff --git a/data/presets/shop/health_food.json b/data/presets/shop/health_food.json
index 87ba6766..4e237f87 100644
--- a/data/presets/shop/health_food.json
+++ b/data/presets/shop/health_food.json
@@ -10,14 +10,17 @@
"organic",
"raw food",
"unprocessed",
- "vegetarian",
"vegan",
+ "vegetarian",
"vitamins",
"wholefood"
],
"tags": {
"shop": "health_food"
},
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"name": "Health Food Store",
"aliases": [
"Health Food Shop"
diff --git a/data/presets/shop/herbalist.json b/data/presets/shop/herbalist.json
index 1e64f28a..fb54efed 100644
--- a/data/presets/shop/herbalist.json
+++ b/data/presets/shop/herbalist.json
@@ -16,5 +16,8 @@
"plant medicine",
"traditional medicine"
],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"name": "Herbalist"
}
diff --git a/data/presets/shop/honey.json b/data/presets/shop/honey.json
new file mode 100644
index 00000000..3e9dd6dd
--- /dev/null
+++ b/data/presets/shop/honey.json
@@ -0,0 +1,11 @@
+{
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "honey"
+ },
+ "name": "Honey Store"
+}
diff --git a/data/presets/shop/household_linen.json b/data/presets/shop/household_linen.json
index 083454f1..35d46363 100644
--- a/data/presets/shop/household_linen.json
+++ b/data/presets/shop/household_linen.json
@@ -10,8 +10,8 @@
"terms": [
"bedspreads",
"blankets",
- "domestic cloths",
"curtains",
+ "domestic cloths",
"handkerchieves",
"napkins",
"pillow cases",
diff --git a/data/presets/shop/hunting.json b/data/presets/shop/hunting.json
index 4b31a741..e0051a57 100644
--- a/data/presets/shop/hunting.json
+++ b/data/presets/shop/hunting.json
@@ -12,6 +12,7 @@
"bows",
"bullets",
"crossbows",
+ "hobby",
"rifles",
"traps"
],
diff --git a/data/presets/shop/jewelry.json b/data/presets/shop/jewelry.json
index 8cfd6eb8..2e541f83 100644
--- a/data/presets/shop/jewelry.json
+++ b/data/presets/shop/jewelry.json
@@ -11,8 +11,8 @@
"gem",
"gold",
"jeweler",
- "jewellery",
"jeweller",
+ "jewellery",
"necklace",
"pins",
"ring",
diff --git a/data/presets/shop/lighting.json b/data/presets/shop/lighting.json
index d2f9629c..c5fc253c 100644
--- a/data/presets/shop/lighting.json
+++ b/data/presets/shop/lighting.json
@@ -7,7 +7,7 @@
"terms": [
"fluorescent lighting",
"lamps",
- "LEDs",
+ "leds",
"light fixtures",
"lightbulbs"
],
diff --git a/data/presets/shop/lottery.json b/data/presets/shop/lottery.json
index 5adf1702..0c3f51cb 100644
--- a/data/presets/shop/lottery.json
+++ b/data/presets/shop/lottery.json
@@ -12,9 +12,9 @@
"shop": "lottery"
},
"terms": [
- "lotto tickets",
"gamble",
"gambling",
+ "lotto tickets",
"scratch-offs"
],
"name": "Lottery Shop"
diff --git a/data/presets/shop/mall.json b/data/presets/shop/mall.json
index 00b43c07..7213116c 100644
--- a/data/presets/shop/mall.json
+++ b/data/presets/shop/mall.json
@@ -1,5 +1,9 @@
{
- "icon": "maki-shop",
+ "icon": "temaki-shopping_mall",
+ "moreFields": [
+ "{shop}",
+ "baby_feeding"
+ ],
"geometry": [
"point",
"area"
diff --git a/data/presets/shop/military_surplus.json b/data/presets/shop/military_surplus.json
index 6b180074..f7859315 100644
--- a/data/presets/shop/military_surplus.json
+++ b/data/presets/shop/military_surplus.json
@@ -6,8 +6,8 @@
],
"terms": [
"armor",
- "army-navy store",
"army surplus",
+ "army-navy store",
"navy surplus",
"tactical gear",
"war surplus shop",
diff --git a/data/presets/shop/mobile_phone_accessories.json b/data/presets/shop/mobile_phone_accessories.json
new file mode 100644
index 00000000..6a580490
--- /dev/null
+++ b/data/presets/shop/mobile_phone_accessories.json
@@ -0,0 +1,14 @@
+{
+ "icon": "fas-mobile-screen",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "mobile_phone_accessories"
+ },
+ "terms": [
+ "phone case"
+ ],
+ "name": "Mobile Phone Accessory Store"
+}
diff --git a/data/presets/shop/motorcycle.json b/data/presets/shop/motorcycle.json
index f7b90705..10e9a423 100644
--- a/data/presets/shop/motorcycle.json
+++ b/data/presets/shop/motorcycle.json
@@ -10,7 +10,8 @@
"area"
],
"terms": [
- "bike"
+ "bike",
+ "motorbike"
],
"tags": {
"shop": "motorcycle"
diff --git a/data/presets/shop/motorcycle_repair.json b/data/presets/shop/motorcycle_repair.json
index 582c7060..4ac33c99 100644
--- a/data/presets/shop/motorcycle_repair.json
+++ b/data/presets/shop/motorcycle_repair.json
@@ -12,6 +12,7 @@
"auto",
"bike",
"garage",
+ "motorbike",
"motorcycle",
"repair",
"service"
diff --git a/data/presets/shop/music.json b/data/presets/shop/music.json
index 0be8aed8..dbb8173e 100644
--- a/data/presets/shop/music.json
+++ b/data/presets/shop/music.json
@@ -5,13 +5,14 @@
"area"
],
"terms": [
- "tape cassettes",
- "CDs",
- "compact discs",
- "vinyl records",
- "CD store",
"casette",
- "casette store"
+ "casette store",
+ "cd store",
+ "cds",
+ "compact discs",
+ "hobby",
+ "tape cassettes",
+ "vinyl records"
],
"tags": {
"shop": "music"
diff --git a/data/presets/shop/musical_instrument.json b/data/presets/shop/musical_instrument.json
index 18c4f999..3e7cdf07 100644
--- a/data/presets/shop/musical_instrument.json
+++ b/data/presets/shop/musical_instrument.json
@@ -12,6 +12,7 @@
"drum",
"flute",
"guitar",
+ "hobby",
"keyboard",
"piano",
"saxophone",
diff --git a/data/presets/shop/newsagent.json b/data/presets/shop/newsagent.json
index 2b0350a4..a3f4d759 100644
--- a/data/presets/shop/newsagent.json
+++ b/data/presets/shop/newsagent.json
@@ -4,6 +4,9 @@
"point",
"area"
],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"tags": {
"shop": "newsagent"
},
diff --git a/data/presets/shop/nuts.json b/data/presets/shop/nuts.json
new file mode 100644
index 00000000..806dfaac
--- /dev/null
+++ b/data/presets/shop/nuts.json
@@ -0,0 +1,27 @@
+{
+ "tags": {
+ "shop": "nuts"
+ },
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "name": "Nuts Shop",
+ "terms": [
+ "almonds",
+ "brazil nuts",
+ "cashews",
+ "chestnuts",
+ "coconuts",
+ "dried fruits",
+ "hazelnuts",
+ "macadamia",
+ "nuts",
+ "peanuts",
+ "pecans",
+ "pistachios",
+ "seeds",
+ "walnuts"
+ ]
+}
diff --git a/data/presets/shop/outdoor.json b/data/presets/shop/outdoor.json
index 96cbbdb0..ae39b7bf 100644
--- a/data/presets/shop/outdoor.json
+++ b/data/presets/shop/outdoor.json
@@ -16,9 +16,10 @@
"camping",
"climbing",
"hiking",
- "outfitter",
+ "hobby",
"outdoor equipment",
- "outdoor supplies"
+ "outdoor supplies",
+ "outfitter"
],
"tags": {
"shop": "outdoor"
diff --git a/data/presets/shop/pasta.json b/data/presets/shop/pasta.json
new file mode 100644
index 00000000..79b9a61e
--- /dev/null
+++ b/data/presets/shop/pasta.json
@@ -0,0 +1,31 @@
+{
+ "icon": "fas-plate-wheat",
+ "fields": [
+ "name",
+ "address",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "pasta"
+ },
+ "terms": [
+ "fresh pasta",
+ "ravioli",
+ "spaghetti"
+ ],
+ "reference": {
+ "key": "shop",
+ "value": "pasta"
+ },
+ "name": "Pasta Store",
+ "aliases": [
+ "Pasta Shop"
+ ]
+}
diff --git a/data/presets/shop/pastry.json b/data/presets/shop/pastry.json
index b8595e06..7fb6134d 100644
--- a/data/presets/shop/pastry.json
+++ b/data/presets/shop/pastry.json
@@ -8,9 +8,13 @@
"shop": "pastry"
},
"terms": [
- "patisserie",
"cake shop",
- "cakery"
+ "cakery",
+ "cookies",
+ "patisserie"
+ ],
+ "moreFields": [
+ "fhrs/id-GB"
],
"name": "Pastry Shop"
}
diff --git a/data/presets/shop/pet_grooming.json b/data/presets/shop/pet_grooming.json
index 601c1b54..688832f0 100644
--- a/data/presets/shop/pet_grooming.json
+++ b/data/presets/shop/pet_grooming.json
@@ -6,10 +6,12 @@
],
"terms": [
"cat",
- "dog"
+ "cat grooming",
+ "dog",
+ "dog grooming"
],
"tags": {
"shop": "pet_grooming"
},
- "name": "Pet Grooming Store"
+ "name": "Pet Groomer"
}
diff --git a/data/presets/shop/rice.json b/data/presets/shop/rice.json
new file mode 100644
index 00000000..9d649860
--- /dev/null
+++ b/data/presets/shop/rice.json
@@ -0,0 +1,22 @@
+{
+ "icon": "fas-bowl-rice",
+ "fields": [
+ "name",
+ "{shop}"
+ ],
+ "moreFields": [
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "rice"
+ },
+ "reference": {
+ "key": "shop",
+ "value": "rice"
+ },
+ "name": "Rice Store"
+}
diff --git a/data/presets/shop/seafood.json b/data/presets/shop/seafood.json
index f6c7e217..3c48730f 100644
--- a/data/presets/shop/seafood.json
+++ b/data/presets/shop/seafood.json
@@ -10,5 +10,8 @@
"tags": {
"shop": "seafood"
},
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"name": "Seafood Shop"
}
diff --git a/data/presets/shop/second_hand.json b/data/presets/shop/second_hand.json
index b251680a..67208548 100644
--- a/data/presets/shop/second_hand.json
+++ b/data/presets/shop/second_hand.json
@@ -9,8 +9,8 @@
"area"
],
"terms": [
- "second-hand",
"resale",
+ "second-hand",
"used"
],
"tags": {
diff --git a/data/presets/shop/shoes.json b/data/presets/shop/shoes.json
index 6f05961d..d060185a 100644
--- a/data/presets/shop/shoes.json
+++ b/data/presets/shop/shoes.json
@@ -16,13 +16,13 @@
"boots",
"cleats",
"clogs",
+ "footwear",
"heels",
"loafers",
"oxfords",
- "sneakers",
- "footwear",
"sandals",
- "slippers"
+ "slippers",
+ "sneakers"
],
"name": "Shoe Store"
}
diff --git a/data/presets/shop/sports.json b/data/presets/shop/sports.json
index 25eeb956..ad60c63c 100644
--- a/data/presets/shop/sports.json
+++ b/data/presets/shop/sports.json
@@ -18,7 +18,8 @@
"shop": "sports"
},
"terms": [
- "athletics"
+ "athletics",
+ "hobby"
],
"name": "Sporting Goods Store"
}
diff --git a/data/presets/shop/stationery.json b/data/presets/shop/stationery.json
index 28c17a54..51b1f59c 100644
--- a/data/presets/shop/stationery.json
+++ b/data/presets/shop/stationery.json
@@ -6,7 +6,8 @@
],
"terms": [
"card",
- "paper"
+ "paper",
+ "stationary"
],
"tags": {
"shop": "stationery"
diff --git a/data/presets/shop/supermarket.json b/data/presets/shop/supermarket.json
index 8d42dbfc..015adbd0 100644
--- a/data/presets/shop/supermarket.json
+++ b/data/presets/shop/supermarket.json
@@ -2,7 +2,9 @@
"icon": "maki-grocery",
"moreFields": [
"{shop}",
+ "self_checkout",
"diet_multi",
+ "fhrs/id-GB",
"organic"
],
"geometry": [
@@ -10,12 +12,12 @@
"area"
],
"terms": [
+ "food market",
"grocery",
- "store",
- "shop",
"grocery store",
"market",
- "food market"
+ "shop",
+ "store"
],
"tags": {
"shop": "supermarket"
diff --git a/data/presets/shop/tea.json b/data/presets/shop/tea.json
index 1cd06b40..ef526838 100644
--- a/data/presets/shop/tea.json
+++ b/data/presets/shop/tea.json
@@ -4,6 +4,9 @@
"point",
"area"
],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"tags": {
"shop": "tea"
},
diff --git a/data/presets/shop/toys.json b/data/presets/shop/toys.json
index 881f94f1..173d1dde 100644
--- a/data/presets/shop/toys.json
+++ b/data/presets/shop/toys.json
@@ -9,6 +9,7 @@
},
"terms": [
"games",
+ "hobby",
"teddy"
],
"name": "Toy Store"
diff --git a/data/presets/shop/variety_store.json b/data/presets/shop/variety_store.json
index e6a0d24f..9d4dc87f 100644
--- a/data/presets/shop/variety_store.json
+++ b/data/presets/shop/variety_store.json
@@ -4,6 +4,9 @@
"point",
"area"
],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
"tags": {
"shop": "variety_store"
},
diff --git a/data/presets/shop/video.json b/data/presets/shop/video.json
index 3a7000d5..4e2f3d41 100644
--- a/data/presets/shop/video.json
+++ b/data/presets/shop/video.json
@@ -9,10 +9,11 @@
"area"
],
"terms": [
- "DVD",
- "VHS",
- "video cassette",
- "video casette"
+ "dvd",
+ "hobby",
+ "vhs",
+ "video casette",
+ "video cassette"
],
"tags": {
"shop": "video"
diff --git a/data/presets/shop/video_games.json b/data/presets/shop/video_games.json
index 2745520b..55bb7e0e 100644
--- a/data/presets/shop/video_games.json
+++ b/data/presets/shop/video_games.json
@@ -7,5 +7,8 @@
"tags": {
"shop": "video_games"
},
+ "terms": [
+ "hobby"
+ ],
"name": "Video Game Store"
}
diff --git a/data/presets/shop/water.json b/data/presets/shop/water.json
index 9e8aef24..3c280d2c 100644
--- a/data/presets/shop/water.json
+++ b/data/presets/shop/water.json
@@ -4,6 +4,13 @@
"point",
"area"
],
+ "terms": [
+ "bottled water",
+ "mineral water",
+ "purified water",
+ "water refilling",
+ "water station"
+ ],
"tags": {
"shop": "water"
},
diff --git a/data/presets/shop/wholesale.json b/data/presets/shop/wholesale.json
index 922ea03d..7e495d1c 100644
--- a/data/presets/shop/wholesale.json
+++ b/data/presets/shop/wholesale.json
@@ -9,8 +9,8 @@
"area"
],
"terms": [
- "warehouse club",
- "cash and carry"
+ "cash and carry",
+ "warehouse club"
],
"tags": {
"shop": "wholesale"
diff --git a/data/presets/shop/wine.json b/data/presets/shop/wine.json
index 3ab193ad..a2563780 100644
--- a/data/presets/shop/wine.json
+++ b/data/presets/shop/wine.json
@@ -2,6 +2,7 @@
"icon": "maki-alcohol-shop",
"moreFields": [
"{shop}",
+ "fhrs/id-GB",
"min_age"
],
"geometry": [
diff --git a/data/presets/telecom/data_center.json b/data/presets/telecom/data_center.json
index c9bae424..a6faf11a 100644
--- a/data/presets/telecom/data_center.json
+++ b/data/presets/telecom/data_center.json
@@ -22,8 +22,8 @@
"computer systems storage",
"information technology",
"server farm",
- "the cloud",
- "telecommunications"
+ "telecommunications",
+ "the cloud"
],
"name": "Data Center"
}
diff --git a/data/presets/tourism/alpine_hut.json b/data/presets/tourism/alpine_hut.json
index f715f345..4c93e67b 100644
--- a/data/presets/tourism/alpine_hut.json
+++ b/data/presets/tourism/alpine_hut.json
@@ -6,19 +6,15 @@
"address",
"phone",
"building_area_yes",
- "internet_access",
- "internet_access/fee",
+ "{@templates/internet_access}",
"fee",
"payment_multi_fee",
"charge_fee"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access/ssid",
- "reservation",
- "wheelchair"
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "reservation"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/apartment.json b/data/presets/tourism/apartment.json
index 4b27845b..8afe89af 100644
--- a/data/presets/tourism/apartment.json
+++ b/data/presets/tourism/apartment.json
@@ -9,19 +9,15 @@
"phone",
"building_area_yes",
"rooms",
- "internet_access",
- "internet_access/fee"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"building/levels_building",
- "fax",
"height_building",
- "internet_access/ssid",
- "level",
- "payment_multi",
"reservation",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/aquarium.json b/data/presets/tourism/aquarium.json
index 441037ab..7456cbb7 100644
--- a/data/presets/tourism/aquarium.json
+++ b/data/presets/tourism/aquarium.json
@@ -8,22 +8,15 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"charge_fee",
- "email",
- "fax",
+ "changing_table",
"fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "payment_multi_fee",
- "phone",
- "ref/vatin",
"smoking",
"toilets",
"toilets/wheelchair",
- "wheelchair"
+ "toilets/menstrual_products_poi"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/artwork.json b/data/presets/tourism/artwork.json
index 0335051c..b073a90a 100644
--- a/data/presets/tourism/artwork.json
+++ b/data/presets/tourism/artwork.json
@@ -8,7 +8,8 @@
"moreFields": [
"level",
"material",
- "subject/wikidata"
+ "subject/wikidata",
+ "inscription"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/artwork/graffiti.json b/data/presets/tourism/artwork/graffiti.json
index 1cffe813..e93a2ac4 100644
--- a/data/presets/tourism/artwork/graffiti.json
+++ b/data/presets/tourism/artwork/graffiti.json
@@ -19,10 +19,10 @@
"value": "graffiti"
},
"terms": [
- "Street Artwork",
- "Guerrilla Artwork",
- "Guerilla Artwork",
- "Graffiti Artwork"
+ "graffiti artwork",
+ "guerilla artwork",
+ "guerrilla artwork",
+ "street artwork"
],
"name": "Graffiti"
}
diff --git a/data/presets/tourism/artwork/sculpture.json b/data/presets/tourism/artwork/sculpture.json
index 84e67993..d336b424 100644
--- a/data/presets/tourism/artwork/sculpture.json
+++ b/data/presets/tourism/artwork/sculpture.json
@@ -20,9 +20,9 @@
"value": "sculpture"
},
"terms": [
- "statue",
+ "carving",
"figure",
- "carving"
+ "statue"
],
"name": "Sculpture"
}
diff --git a/data/presets/tourism/artwork/statue.json b/data/presets/tourism/artwork/statue.json
index 52fd7877..ba4ee42b 100644
--- a/data/presets/tourism/artwork/statue.json
+++ b/data/presets/tourism/artwork/statue.json
@@ -20,9 +20,9 @@
"value": "statue"
},
"terms": [
- "sculpture",
+ "carving",
"figure",
- "carving"
+ "sculpture"
],
"name": "Statue"
}
diff --git a/data/presets/tourism/attraction.json b/data/presets/tourism/attraction.json
index 58d53c8c..2526c859 100644
--- a/data/presets/tourism/attraction.json
+++ b/data/presets/tourism/attraction.json
@@ -6,7 +6,10 @@
"address"
],
"moreFields": [
- "gnis/feature_id-US"
+ "fee",
+ "gnis/feature_id-US",
+ "level",
+ "opening_hours"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/camp_pitch.json b/data/presets/tourism/camp_pitch.json
index c4ef9734..880d4e41 100644
--- a/data/presets/tourism/camp_pitch.json
+++ b/data/presets/tourism/camp_pitch.json
@@ -9,8 +9,8 @@
"area"
],
"terms": [
- "tent",
- "rv"
+ "rv",
+ "tent"
],
"tags": {
"tourism": "camp_pitch"
diff --git a/data/presets/tourism/camp_site.json b/data/presets/tourism/camp_site.json
index f5377149..960495bd 100644
--- a/data/presets/tourism/camp_site.json
+++ b/data/presets/tourism/camp_site.json
@@ -3,30 +3,32 @@
"fields": [
"name",
"operator",
+ "camp_site",
"address",
"access_simple",
- "capacity/caravans",
"capacity/persons",
+ "tents",
"capacity/tents",
+ "caravans",
+ "capacity/caravans",
+ "static_caravans",
"fee",
"payment_multi_fee",
"charge_fee"
],
"moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"backcountry",
"dog",
"drinking_water_available",
- "email",
- "fax",
"gnis/feature_id-US",
"group_only",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
+ "cabins",
+ "nudism",
"openfire",
"opening_hours",
- "opening_hours/covid19",
- "phone",
+ "picnic_table",
"power_supply",
"ref/vatin",
"reservation",
@@ -45,13 +47,13 @@
"tourism": "camp_site"
},
"terms": [
- "caravans",
"camp ground",
"camp pitch",
"camp site",
"campers",
"campground",
"campsite",
+ "caravans",
"mobile homes",
"recreational vehicles",
"rv",
diff --git a/data/presets/tourism/caravan_site.json b/data/presets/tourism/caravan_site.json
index 1b9142f0..5449e8b8 100644
--- a/data/presets/tourism/caravan_site.json
+++ b/data/presets/tourism/caravan_site.json
@@ -6,22 +6,16 @@
"capacity/caravans",
"sanitary_dump_station",
"power_supply",
- "internet_access",
- "internet_access/fee"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"charge_fee",
- "email",
- "fax",
"fee",
- "gnis/feature_id-US",
- "internet_access/ssid",
"operator",
- "payment_multi_fee",
- "phone",
"reservation",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
@@ -29,8 +23,8 @@
"area"
],
"terms": [
- "Motor Home",
- "Camper"
+ "camper",
+ "motor home"
],
"tags": {
"tourism": "caravan_site"
diff --git a/data/presets/tourism/chalet.json b/data/presets/tourism/chalet.json
index 2d2ab786..97dcfe7a 100644
--- a/data/presets/tourism/chalet.json
+++ b/data/presets/tourism/chalet.json
@@ -8,20 +8,18 @@
"email",
"phone",
"building_area_yes",
- "internet_access",
- "internet_access/fee"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"building/levels_building",
- "fax",
- "gnis/feature_id-US",
"height_building",
- "internet_access/ssid",
"payment_multi",
+ "fhrs/id-GB",
"reservation",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/gallery.json b/data/presets/tourism/gallery.json
index 4755b087..2dce3436 100644
--- a/data/presets/tourism/gallery.json
+++ b/data/presets/tourism/gallery.json
@@ -8,19 +8,12 @@
"opening_hours"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "ref/vatin",
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "changing_table",
"toilets",
"toilets/wheelchair",
- "wheelchair"
+ "toilets/menstrual_products_poi"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/guest_house.json b/data/presets/tourism/guest_house.json
index 6c407c07..639cfa8d 100644
--- a/data/presets/tourism/guest_house.json
+++ b/data/presets/tourism/guest_house.json
@@ -10,21 +10,17 @@
"phone",
"building_area_yes",
"rooms",
- "internet_access",
- "internet_access/fee"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"building/levels_building",
- "fax",
- "gnis/feature_id-US",
+ "fhrs/id-GB",
"height_building",
- "internet_access/ssid",
- "payment_multi",
- "ref/vatin",
"reservation",
- "smoking",
- "wheelchair"
+ "smoking"
],
"geometry": [
"point",
@@ -36,8 +32,8 @@
"terms": [
"b & b",
"b and b",
- "B&B",
- "Bed and Breakfast",
+ "b&b",
+ "bed and breakfast",
"bnb",
"lodging",
"overnight accommodations"
diff --git a/data/presets/tourism/hostel.json b/data/presets/tourism/hostel.json
index eb250865..34eee70c 100644
--- a/data/presets/tourism/hostel.json
+++ b/data/presets/tourism/hostel.json
@@ -4,6 +4,7 @@
"{tourism/guest_house}"
],
"moreFields": [
+ "fhrs/id-GB",
"{tourism/guest_house}"
],
"geometry": [
diff --git a/data/presets/tourism/hotel.json b/data/presets/tourism/hotel.json
index 73533840..7300b340 100644
--- a/data/presets/tourism/hotel.json
+++ b/data/presets/tourism/hotel.json
@@ -6,6 +6,7 @@
"moreFields": [
"{tourism/motel}",
"bar",
+ "fhrs/id-GB",
"ref/FR/siret-FR",
"stars"
],
diff --git a/data/presets/tourism/information/board/welcome_sign.json b/data/presets/tourism/information/board/welcome_sign.json
index e9416937..614cd2c0 100644
--- a/data/presets/tourism/information/board/welcome_sign.json
+++ b/data/presets/tourism/information/board/welcome_sign.json
@@ -1,7 +1,8 @@
{
"icon": "maki-embassy",
"geometry": [
- "point"
+ "point",
+ "vertex"
],
"terms": [
"new location"
diff --git a/data/presets/tourism/information/office.json b/data/presets/tourism/information/office.json
index b67653d4..ccad6681 100644
--- a/data/presets/tourism/information/office.json
+++ b/data/presets/tourism/information/office.json
@@ -5,20 +5,16 @@
"operator",
"address",
"building_area_yes",
- "internet_access",
- "internet_access/fee"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"building/levels_building",
- "email",
- "fax",
- "gnis/feature_id-US",
"height_building",
- "internet_access/ssid",
- "phone",
"toilets",
"toilets/wheelchair",
- "wheelchair"
+ "toilets/menstrual_products_poi"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/information/route_marker.json b/data/presets/tourism/information/route_marker.json
index 0583d21a..c69fc31e 100644
--- a/data/presets/tourism/information/route_marker.json
+++ b/data/presets/tourism/information/route_marker.json
@@ -5,7 +5,8 @@
"operator",
"colour",
"material",
- "ele_node"
+ "ele_node",
+ "activity"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/motel.json b/data/presets/tourism/motel.json
index 83d94e2b..9bdca6c0 100644
--- a/data/presets/tourism/motel.json
+++ b/data/presets/tourism/motel.json
@@ -9,18 +9,15 @@
"phone",
"building_area_yes",
"rooms",
- "internet_access",
- "internet_access/fee"
+ "{@templates/internet_access}"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"branch_brand",
- "brand",
"building/levels_building",
- "fax",
- "gnis/feature_id-US",
"height_building",
- "internet_access/ssid",
"operator",
"payment_multi",
"ref/vatin",
diff --git a/data/presets/tourism/museum.json b/data/presets/tourism/museum.json
index 16e9293e..ac975120 100644
--- a/data/presets/tourism/museum.json
+++ b/data/presets/tourism/museum.json
@@ -10,24 +10,17 @@
"opening_hours"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
"building/levels_building",
"charge_fee",
- "email",
- "fax",
+ "changing_table",
"fee",
- "gnis/feature_id-US",
"height_building",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
"toilets",
"toilets/wheelchair",
- "wheelchair"
+ "toilets/menstrual_products_poi"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/museum/history.json b/data/presets/tourism/museum/history.json
index 81296329..99c286ce 100644
--- a/data/presets/tourism/museum/history.json
+++ b/data/presets/tourism/museum/history.json
@@ -7,8 +7,8 @@
"terms": [
"artifacts",
"dioramas",
- "exhibits",
"exhibitions",
+ "exhibits",
"foundation",
"hall",
"institution"
diff --git a/data/presets/tourism/picnic_site.json b/data/presets/tourism/picnic_site.json
index 7817f615..4afb288e 100644
--- a/data/presets/tourism/picnic_site.json
+++ b/data/presets/tourism/picnic_site.json
@@ -8,12 +8,10 @@
"capacity"
],
"moreFields": [
+ "{@templates/internet_access}",
"charge_fee",
"fee",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"level",
"payment_multi_fee",
"phone",
diff --git a/data/presets/tourism/theme_park.json b/data/presets/tourism/theme_park.json
index 4c7d05b4..8f789047 100644
--- a/data/presets/tourism/theme_park.json
+++ b/data/presets/tourism/theme_park.json
@@ -8,18 +8,10 @@
"website"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"branch_brand",
- "brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "brand"
],
"geometry": [
"point",
@@ -28,5 +20,9 @@
"tags": {
"tourism": "theme_park"
},
+ "terms": [
+ "amusement park",
+ "fun park"
+ ],
"name": "Theme Park"
}
diff --git a/data/presets/tourism/trail_riding_station.json b/data/presets/tourism/trail_riding_station.json
index 0264093a..d02119c9 100644
--- a/data/presets/tourism/trail_riding_station.json
+++ b/data/presets/tourism/trail_riding_station.json
@@ -2,21 +2,14 @@
"icon": "maki-horse-riding",
"fields": [
"name",
- "horse_stables",
- "horse_riding",
- "horse_dressage"
+ "horse_riding"
],
"moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"address",
- "email",
- "fax",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours",
- "opening_hours/covid19",
- "phone"
+ "opening_hours"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/viewpoint.json b/data/presets/tourism/viewpoint.json
index df2e3aec..caec6c2e 100644
--- a/data/presets/tourism/viewpoint.json
+++ b/data/presets/tourism/viewpoint.json
@@ -14,5 +14,8 @@
"tags": {
"tourism": "viewpoint"
},
+ "terms": [
+ "lookout"
+ ],
"name": "Viewpoint"
}
diff --git a/data/presets/tourism/wilderness_hut.json b/data/presets/tourism/wilderness_hut.json
index 4d89d46e..558fe327 100644
--- a/data/presets/tourism/wilderness_hut.json
+++ b/data/presets/tourism/wilderness_hut.json
@@ -11,13 +11,11 @@
"fireplace"
],
"moreFields": [
+ "{@templates/internet_access}",
"address",
"capacity",
"drinking_water_available",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
"kitchen",
"mattress",
"reservation",
@@ -32,7 +30,6 @@
"bivouac",
"bivouac box",
"biwakschachtel",
- "cabin",
"bothy",
"cabin",
"lodge",
diff --git a/data/presets/tourism/zoo.json b/data/presets/tourism/zoo.json
index ce38564f..bccebdc3 100644
--- a/data/presets/tourism/zoo.json
+++ b/data/presets/tourism/zoo.json
@@ -9,19 +9,12 @@
"charge_fee"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "payment_multi",
- "opening_hours/covid19",
- "phone",
- "ref/vatin",
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "changing_table",
"toilets",
"toilets/wheelchair",
- "wheelchair"
+ "toilets/menstrual_products_poi"
],
"geometry": [
"point",
diff --git a/data/presets/tourism/zoo/petting.json b/data/presets/tourism/zoo/petting.json
index f8606383..7c8d6492 100644
--- a/data/presets/tourism/zoo/petting.json
+++ b/data/presets/tourism/zoo/petting.json
@@ -13,10 +13,10 @@
"value": "petting_zoo"
},
"terms": [
- "Children's Zoo",
- "Children's Farm",
- "Petting Farm",
- "farm animals"
+ "children's farm",
+ "children's zoo",
+ "farm animals",
+ "petting farm"
],
"name": "Petting Zoo"
}
diff --git a/data/presets/tourism/zoo/safari.json b/data/presets/tourism/zoo/safari.json
index 47f5839c..31d40fe0 100644
--- a/data/presets/tourism/zoo/safari.json
+++ b/data/presets/tourism/zoo/safari.json
@@ -13,8 +13,8 @@
"value": "safari_park"
},
"terms": [
- "Drive-Through Zoo",
- "Drive-In Zoo"
+ "drive-in zoo",
+ "drive-through zoo"
],
"name": "Safari Park"
}
diff --git a/data/presets/traffic_calming/bump.json b/data/presets/traffic_calming/bump.json
index da54d588..d9ec3257 100644
--- a/data/presets/traffic_calming/bump.json
+++ b/data/presets/traffic_calming/bump.json
@@ -9,8 +9,8 @@
],
"terms": [
"hump",
- "speed",
- "slow"
+ "slow",
+ "speed"
],
"tags": {
"traffic_calming": "bump"
diff --git a/data/presets/traffic_calming/chicane.json b/data/presets/traffic_calming/chicane.json
index a3fcfdb4..49118efd 100644
--- a/data/presets/traffic_calming/chicane.json
+++ b/data/presets/traffic_calming/chicane.json
@@ -9,8 +9,8 @@
],
"terms": [
"driveway link",
- "speed",
- "slow"
+ "slow",
+ "speed"
],
"tags": {
"traffic_calming": "chicane"
diff --git a/data/presets/traffic_calming/choker.json b/data/presets/traffic_calming/choker.json
index 85bfe1ed..407b9d30 100644
--- a/data/presets/traffic_calming/choker.json
+++ b/data/presets/traffic_calming/choker.json
@@ -8,8 +8,8 @@
"vertex"
],
"terms": [
- "speed",
- "slow"
+ "slow",
+ "speed"
],
"tags": {
"traffic_calming": "choker"
diff --git a/data/presets/traffic_calming/cushion.json b/data/presets/traffic_calming/cushion.json
index 5fb2530d..92f3fe36 100644
--- a/data/presets/traffic_calming/cushion.json
+++ b/data/presets/traffic_calming/cushion.json
@@ -10,8 +10,8 @@
"terms": [
"bump",
"hump",
- "speed",
- "slow"
+ "slow",
+ "speed"
],
"tags": {
"traffic_calming": "cushion"
diff --git a/data/presets/traffic_calming/dip.json b/data/presets/traffic_calming/dip.json
index 444a6a2e..4a107e43 100644
--- a/data/presets/traffic_calming/dip.json
+++ b/data/presets/traffic_calming/dip.json
@@ -8,8 +8,8 @@
"vertex"
],
"terms": [
- "speed",
- "slow"
+ "slow",
+ "speed"
],
"tags": {
"traffic_calming": "dip"
diff --git a/data/presets/traffic_calming/hump.json b/data/presets/traffic_calming/hump.json
index fb772299..519c0ca3 100644
--- a/data/presets/traffic_calming/hump.json
+++ b/data/presets/traffic_calming/hump.json
@@ -9,8 +9,8 @@
],
"terms": [
"bump",
- "speed",
- "slow"
+ "slow",
+ "speed"
],
"tags": {
"traffic_calming": "hump"
diff --git a/data/presets/traffic_calming/island.json b/data/presets/traffic_calming/island.json
index 27a3ce9c..2d030547 100644
--- a/data/presets/traffic_calming/island.json
+++ b/data/presets/traffic_calming/island.json
@@ -4,17 +4,15 @@
"surface"
],
"geometry": [
- "vertex",
- "area"
+ "vertex"
],
"terms": [
"circle",
"roundabout",
- "slow",
- "traffic calming"
+ "slow"
],
"tags": {
"traffic_calming": "island"
},
- "name": "Traffic Island"
+ "name": "Traffic Calming Island"
}
diff --git a/data/presets/traffic_calming/mini_bumps.json b/data/presets/traffic_calming/mini_bumps.json
index 77df8e78..f8ddbfef 100644
--- a/data/presets/traffic_calming/mini_bumps.json
+++ b/data/presets/traffic_calming/mini_bumps.json
@@ -14,9 +14,9 @@
"bumps",
"circular bumps",
"circular speed bumps",
+ "slow",
"small bumps",
"small speed bumps",
- "slow",
"speed"
],
"name": "Mini Speed Bumps"
diff --git a/data/presets/traffic_calming/rumble_strip.json b/data/presets/traffic_calming/rumble_strip.json
index 0731411a..4de71010 100644
--- a/data/presets/traffic_calming/rumble_strip.json
+++ b/data/presets/traffic_calming/rumble_strip.json
@@ -8,8 +8,8 @@
],
"terms": [
"audible lines",
- "sleeper lines",
- "growlers"
+ "growlers",
+ "sleeper lines"
],
"tags": {
"traffic_calming": "rumble_strip"
diff --git a/data/presets/traffic_calming/table.json b/data/presets/traffic_calming/table.json
index 7efbd6b0..b1fa1328 100644
--- a/data/presets/traffic_calming/table.json
+++ b/data/presets/traffic_calming/table.json
@@ -13,8 +13,9 @@
"terms": [
"flat top",
"hump",
- "speed",
- "slow"
+ "slow",
+ "speed"
],
- "name": "Speed Table"
+ "name": "Speed Table",
+ "matchScore": 0.9
}
diff --git a/data/presets/traffic_sign.json b/data/presets/traffic_sign.json
index 60d84885..69223f0b 100644
--- a/data/presets/traffic_sign.json
+++ b/data/presets/traffic_sign.json
@@ -13,8 +13,8 @@
"traffic_sign": "*"
},
"terms": [
- "road",
- "highway"
+ "highway",
+ "road"
],
"name": "Traffic Sign"
}
diff --git a/data/presets/traffic_sign/city_limit.json b/data/presets/traffic_sign/city_limit.json
index 1175311b..8edb5045 100644
--- a/data/presets/traffic_sign/city_limit.json
+++ b/data/presets/traffic_sign/city_limit.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-square-stroked",
+ "icon": "roentgen-city_limit_sign",
"fields": [
"{traffic_sign}",
"name"
@@ -12,14 +12,14 @@
"traffic_sign": "city_limit"
},
"terms": [
- "town",
- "village",
- "hamlet",
+ "border",
"boundary",
"edge",
- "border",
+ "hamlet",
+ "highway",
"road",
- "highway"
+ "town",
+ "village"
],
"name": "City Limit Sign"
}
diff --git a/data/presets/traffic_sign/maxspeed-US-CA-LR.json b/data/presets/traffic_sign/maxspeed-US-CA-LR.json
new file mode 100644
index 00000000..6dc2a05d
--- /dev/null
+++ b/data/presets/traffic_sign/maxspeed-US-CA-LR.json
@@ -0,0 +1,24 @@
+{
+ "icon": "maki-square-stroked",
+ "fields": [
+ "{traffic_sign/maxspeed}"
+ ],
+ "moreFields": [
+ "{traffic_sign/maxspeed}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "traffic_sign": "maxspeed"
+ },
+ "locationSet": {
+ "include": [
+ "US",
+ "CA",
+ "LR"
+ ]
+ },
+ "name": "{traffic_sign/maxspeed}"
+}
diff --git a/data/presets/traffic_sign/maxspeed.json b/data/presets/traffic_sign/maxspeed.json
index b5179284..7893a27b 100644
--- a/data/presets/traffic_sign/maxspeed.json
+++ b/data/presets/traffic_sign/maxspeed.json
@@ -1,5 +1,5 @@
{
- "icon": "maki-square-stroked",
+ "icon": "fas-directions",
"fields": [
"{traffic_sign}",
"maxspeed"
@@ -11,11 +11,18 @@
"tags": {
"traffic_sign": "maxspeed"
},
+ "locationSet": {
+ "exclude": [
+ "US",
+ "CA",
+ "LR"
+ ]
+ },
"terms": [
+ "highway",
"max speed",
"maximum speed",
- "road",
- "highway"
+ "road"
],
"name": "Speed Limit Sign"
}
diff --git a/data/presets/traffic_sign/variable_message.json b/data/presets/traffic_sign/variable_message.json
index 606c6b82..63eca4fb 100644
--- a/data/presets/traffic_sign/variable_message.json
+++ b/data/presets/traffic_sign/variable_message.json
@@ -12,8 +12,8 @@
"traffic_sign": "variable_message"
},
"terms": [
- "vms",
- "dynamic message sign"
+ "dynamic message sign",
+ "vms"
],
"name": "Variable Message Sign"
}
diff --git a/data/presets/type/_associatedStreet.json b/data/presets/type/_associatedStreet.json
new file mode 100644
index 00000000..ee2f7cf2
--- /dev/null
+++ b/data/presets/type/_associatedStreet.json
@@ -0,0 +1,14 @@
+{
+ "icon": "iD-relation",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "associatedStreet"
+ },
+ "searchable": false,
+ "name": "Associated Street"
+}
diff --git a/data/presets/type/route/climbing.json b/data/presets/type/route/climbing.json
new file mode 100644
index 00000000..885ca155
--- /dev/null
+++ b/data/presets/type/route/climbing.json
@@ -0,0 +1,38 @@
+{
+ "icon": "temaki-climbing",
+ "geometry": [
+ "relation"
+ ],
+ "fields": [
+ "{climbing/route_bottom}"
+ ],
+ "moreFields": [
+ "{climbing/route_bottom}"
+ ],
+ "terms": [
+ "climb",
+ "climbing",
+ "mountain climbing",
+ "rock climbing",
+ "rock climbing route"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "climbing"
+ },
+ "addTags": {
+ "climbing": "route",
+ "route": "climbing",
+ "sport": "climbing",
+ "type": "route"
+ },
+ "reference": {
+ "key": "climbing",
+ "value": "route"
+ },
+ "name": "Climbing Route",
+ "aliases": [
+ "Climb",
+ "Mountaineering Route"
+ ]
+}
diff --git a/data/presets/type/route/train.json b/data/presets/type/route/train.json
index e7747fc4..21b47418 100644
--- a/data/presets/type/route/train.json
+++ b/data/presets/type/route/train.json
@@ -16,7 +16,6 @@
"duration",
"interval",
"opening_hours",
- "opening_hours/covid19",
"roundtrip",
"wheelchair"
],
diff --git a/data/presets/type/route_master.json b/data/presets/type/route_master.json
index d59ddbd6..a187d869 100644
--- a/data/presets/type/route_master.json
+++ b/data/presets/type/route_master.json
@@ -11,7 +11,6 @@
"colour",
"interval",
"opening_hours",
- "opening_hours/covid19",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/type/site/climbing/area.json b/data/presets/type/site/climbing/area.json
new file mode 100644
index 00000000..b075b518
--- /dev/null
+++ b/data/presets/type/site/climbing/area.json
@@ -0,0 +1,30 @@
+{
+ "icon": "temaki-climbing",
+ "fields": [
+ "name"
+ ],
+ "moreFields": [
+ "website"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "climbing": "area",
+ "type": "site"
+ },
+ "addTags": {
+ "climbing": "area",
+ "site": "climbing",
+ "sport": "climbing",
+ "type": "site"
+ },
+ "reference": {
+ "key": "climbing",
+ "value": "crag"
+ },
+ "name": "Climbing Area",
+ "aliases": [
+ "Climbing Region"
+ ]
+}
diff --git a/data/presets/type/site/climbing/crag.json b/data/presets/type/site/climbing/crag.json
new file mode 100644
index 00000000..345563db
--- /dev/null
+++ b/data/presets/type/site/climbing/crag.json
@@ -0,0 +1,30 @@
+{
+ "icon": "temaki-climbing",
+ "fields": [
+ "{climbing/crag}"
+ ],
+ "moreFields": [
+ "{climbing/crag}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "site",
+ "climbing": "crag"
+ },
+ "addTags": {
+ "climbing": "crag",
+ "site": "climbing",
+ "sport": "climbing",
+ "type": "site"
+ },
+ "reference": {
+ "key": "climbing",
+ "value": "crag"
+ },
+ "aliases": [
+ "Climbing Cliff"
+ ],
+ "name": "Climbing Crag"
+}
diff --git a/data/presets/waterway/boatyard.json b/data/presets/waterway/boatyard.json
index 185e3e65..1d03317d 100644
--- a/data/presets/waterway/boatyard.json
+++ b/data/presets/waterway/boatyard.json
@@ -5,11 +5,9 @@
"operator"
],
"moreFields": [
+ "{@templates/contact}",
"address",
- "email",
- "fax",
"gnis/feature_id-US",
- "phone",
"wheelchair"
],
"geometry": [
diff --git a/data/presets/waterway/canal.json b/data/presets/waterway/canal.json
index 24d49826..d5389c07 100644
--- a/data/presets/waterway/canal.json
+++ b/data/presets/waterway/canal.json
@@ -2,7 +2,7 @@
"icon": "iD-waterway-canal",
"fields": [
"name",
- "structure_waterway",
+ "structure_canal",
"width",
"usage_waterway",
"intermittent",
diff --git a/data/presets/waterway/dock.json b/data/presets/waterway/dock.json
index 8caf3194..85c6500f 100644
--- a/data/presets/waterway/dock.json
+++ b/data/presets/waterway/dock.json
@@ -12,9 +12,9 @@
],
"terms": [
"boat",
+ "marine",
"ship",
- "vessel",
- "marine"
+ "vessel"
],
"tags": {
"waterway": "dock"
diff --git a/data/presets/waterway/fuel.json b/data/presets/waterway/fuel.json
index 24cf2496..c9b6643c 100644
--- a/data/presets/waterway/fuel.json
+++ b/data/presets/waterway/fuel.json
@@ -8,14 +8,11 @@
"fuel/fuel_multi"
],
"moreFields": [
+ "{@templates/contact}",
"branch_brand",
"brand",
"building",
- "email",
- "fax",
"payment_multi",
- "opening_hours/covid19",
- "phone",
"seamark/type",
"wheelchair"
],
@@ -25,10 +22,10 @@
"area"
],
"terms": [
- "petrol",
- "gas",
+ "boat",
"diesel",
- "boat"
+ "gas",
+ "petrol"
],
"tags": {
"waterway": "fuel"
diff --git a/data/presets/waterway/milestone.json b/data/presets/waterway/milestone.json
index be1b30c4..03fe8f94 100644
--- a/data/presets/waterway/milestone.json
+++ b/data/presets/waterway/milestone.json
@@ -15,8 +15,8 @@
"waterway": "milestone"
},
"terms": [
- "milestone",
- "marker"
+ "marker",
+ "milestone"
],
"name": "Waterway Milestone"
}
diff --git a/data/presets/waterway/sanitary_dump_station.json b/data/presets/waterway/sanitary_dump_station.json
index 16556b41..95983ca1 100644
--- a/data/presets/waterway/sanitary_dump_station.json
+++ b/data/presets/waterway/sanitary_dump_station.json
@@ -11,7 +11,6 @@
],
"moreFields": [
"opening_hours",
- "opening_hours/covid19",
"seamark/type"
],
"geometry": [
@@ -20,16 +19,16 @@
"area"
],
"terms": [
- "Boat",
- "Watercraft",
- "Sanitary",
- "Dump Station",
- "Pumpout",
- "Pump out",
- "Elsan",
- "CDP",
- "CTDP",
- "Chemical Toilet"
+ "boat",
+ "cdp",
+ "chemical toilet",
+ "ctdp",
+ "dump station",
+ "elsan",
+ "pump out",
+ "pumpout",
+ "sanitary",
+ "watercraft"
],
"tags": {
"waterway": "sanitary_dump_station"
diff --git a/data/presets/waterway/tidal_channel.json b/data/presets/waterway/tidal_channel.json
index 8aea81b4..0df2eb9e 100644
--- a/data/presets/waterway/tidal_channel.json
+++ b/data/presets/waterway/tidal_channel.json
@@ -18,10 +18,10 @@
],
"terms": [
"coastal",
- "pill",
"intertidal",
"mangroves",
"marine",
+ "pill",
"salt marsh",
"tidal creek",
"tidal flat",
diff --git a/data/presets/waterway/water_point.json b/data/presets/waterway/water_point.json
index f5b34459..c3b72a64 100644
--- a/data/presets/waterway/water_point.json
+++ b/data/presets/waterway/water_point.json
@@ -17,9 +17,9 @@
"terms": [
"water faucet",
"water point",
- "water tap",
"water source",
- "water spigot"
+ "water spigot",
+ "water tap"
],
"name": "Marine Drinking Water"
}
diff --git a/dist/deprecated.json b/dist/deprecated.json
index e39f6580..2c0978ac 100644
--- a/dist/deprecated.json
+++ b/dist/deprecated.json
@@ -120,15 +120,6 @@
"amenity": "community_centre"
}
},
- {
- "old": {
- "amenity": "dancing_school"
- },
- "replace": {
- "leisure": "dance",
- "dance:teaching": "yes"
- }
- },
{
"old": {
"amenity": "dog_bin"
@@ -237,6 +228,22 @@
"shop": "kiosk"
}
},
+ {
+ "old": {
+ "amenity": "lifeboat_station"
+ },
+ "replace": {
+ "emergency": "water_rescue"
+ }
+ },
+ {
+ "old": {
+ "amenity": "lockers"
+ },
+ "replace": {
+ "amenity": "locker"
+ }
+ },
{
"old": {
"amenity": "notice_board"
@@ -576,14 +583,6 @@
"building": "commercial"
}
},
- {
- "old": {
- "building": "constraction"
- },
- "replace": {
- "building": "construction"
- }
- },
{
"old": {
"building": "convenience"
@@ -744,14 +743,6 @@
"building": "yes"
}
},
- {
- "old": {
- "building": "under constraction"
- },
- "replace": {
- "building": "construction"
- }
- },
{
"old": {
"building": "under construction"
@@ -840,16 +831,6 @@
"tourism": "camp_pitch"
}
},
- {
- "old": {
- "shop": "clothes",
- "clothes": "second_hand"
- },
- "replace": {
- "shop": "clothes",
- "second_hand": "yes"
- }
- },
{
"old": {
"color": "*"
@@ -927,6 +908,31 @@
"crossing": "traffic_signals"
}
},
+ {
+ "old": {
+ "crossing": "no",
+ "highway": "crossing"
+ },
+ "replace": {
+ "crossing": "no"
+ }
+ },
+ {
+ "old": {
+ "cuisine": "barbeque"
+ },
+ "replace": {
+ "cuisine": "barbecue"
+ }
+ },
+ {
+ "old": {
+ "cuisine": "bbq"
+ },
+ "replace": {
+ "cuisine": "barbecue"
+ }
+ },
{
"old": {
"cuisine": "gluten-free"
@@ -1125,6 +1131,14 @@
"capacity:disabled": "$1"
}
},
+ {
+ "old": {
+ "door": "loadingdock"
+ },
+ "replace": {
+ "amenity": "loading_dock"
+ }
+ },
{
"old": {
"drinkable": "*"
@@ -1174,6 +1188,91 @@
"embassy": "yes"
}
},
+ {
+ "old": {
+ "emergency": "dry_riser_inlet"
+ },
+ "replace": {
+ "emergency": "fire_service_inlet",
+ "fire_mains": "dry"
+ }
+ },
+ {
+ "old": {
+ "emergency": "sprinkler_connection"
+ },
+ "replace": {
+ "emergency": "fire_service_inlet",
+ "fire_sprinkler": "yes"
+ }
+ },
+ {
+ "old": {
+ "emergency": "lifeguard_base"
+ },
+ "replace": {
+ "emergency": "lifeguard",
+ "lifeguard": "base"
+ }
+ },
+ {
+ "old": {
+ "emergency": "lifeguard_platform"
+ },
+ "replace": {
+ "emergency": "lifeguard",
+ "lifeguard": "tower"
+ }
+ },
+ {
+ "old": {
+ "emergency": "lifeguard_tower"
+ },
+ "replace": {
+ "emergency": "lifeguard",
+ "lifeguard": "tower"
+ }
+ },
+ {
+ "old": {
+ "emergency": "water_rescue_station"
+ },
+ "replace": {
+ "emergency": "water_rescue"
+ }
+ },
+ {
+ "old": {
+ "emergency": "lifeboat_station"
+ },
+ "replace": {
+ "emergency": "water_rescue"
+ }
+ },
+ {
+ "old": {
+ "emergency": "ses_station"
+ },
+ "replace": {
+ "emergency": "disaster_response"
+ }
+ },
+ {
+ "old": {
+ "emergency": "marine_rescue"
+ },
+ "replace": {
+ "emergency": "water_rescue"
+ }
+ },
+ {
+ "old": {
+ "emergency_service": "air"
+ },
+ "replace": {
+ "emergency": "air_rescue_service"
+ }
+ },
{
"old": {
"entrance": "emergency_exit"
@@ -1312,6 +1411,14 @@
"sidewalk": "both"
}
},
+ {
+ "old": {
+ "sidewalk": "none"
+ },
+ "replace": {
+ "sidewalk": "no"
+ }
+ },
{
"old": {
"footway": "crossing",
@@ -1519,10 +1626,11 @@
},
{
"old": {
- "highway": "ford"
+ "highway": "path",
+ "ladder": "yes"
},
"replace": {
- "ford": "*"
+ "highway": "ladder"
}
},
{
@@ -1561,6 +1669,14 @@
"archaeological_site": "$1"
}
},
+ {
+ "old": {
+ "industrial": "gas"
+ },
+ "replace": {
+ "utility": "gas"
+ }
+ },
{
"old": {
"information": "citymap"
@@ -1994,6 +2110,14 @@
"sport": "ice_skating"
}
},
+ {
+ "old": {
+ "leisure": "maze"
+ },
+ "replace": {
+ "attraction": "maze"
+ }
+ },
{
"old": {
"leisure": "recreation_ground"
@@ -2002,6 +2126,15 @@
"landuse": "recreation_ground"
}
},
+ {
+ "old": {
+ "leisure": "swimming_pool",
+ "swimming_pool": "hot_tub"
+ },
+ "replace": {
+ "leisure": "hot_tub"
+ }
+ },
{
"old": {
"leisure": "table_tennis_table"
@@ -2225,6 +2358,24 @@
"craft": "winery"
}
},
+ {
+ "old": {
+ "map_type": "tactile_map",
+ "information": "map"
+ },
+ "replace": {
+ "information": "tactile_map"
+ }
+ },
+ {
+ "old": {
+ "map_type": "tactile_model",
+ "information": "map"
+ },
+ "replace": {
+ "information": "tactile_model"
+ }
+ },
{
"old": {
"maxage": "*"
@@ -2465,6 +2616,231 @@
"parking": "lane"
}
},
+ {
+ "old": {
+ "parking:lane:both": "no"
+ },
+ "replace": {
+ "parking:both": "no"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:both": "no_parking"
+ },
+ "replace": {
+ "parking:both": "no",
+ "parking:both:restriction": "no_parking"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:both": "no_stopping"
+ },
+ "replace": {
+ "parking:both": "no",
+ "parking:both:restriction": "no_stopping"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:both": "fire_lane"
+ },
+ "replace": {
+ "parking:both": "no",
+ "parking:both:restriction": "no_stopping",
+ "parking:both:restriction:reason": "fire_lane"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:both": "separate"
+ },
+ "replace": {
+ "parking:both": "separate"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:both": "diagonal"
+ },
+ "replace": {
+ "parking:both": "yes",
+ "parking:both:orientation": "diagonal"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:both": "parallel"
+ },
+ "replace": {
+ "parking:both": "yes",
+ "parking:both:orientation": "parallel"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:both": "perpendicular"
+ },
+ "replace": {
+ "parking:both": "yes",
+ "parking:both:orientation": "perpendicular"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:both:parallel": "on_street"
+ },
+ "replace": {
+ "parking:both": "lane"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:left": "no"
+ },
+ "replace": {
+ "parking:left": "no"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:left": "no_parking"
+ },
+ "replace": {
+ "parking:left": "no",
+ "parking:left:restriction": "no_parking"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:left": "no_stopping"
+ },
+ "replace": {
+ "parking:left": "no",
+ "parking:left:restriction": "no_stopping"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:left": "separate"
+ },
+ "replace": {
+ "parking:left": "separate"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:left": "diagonal"
+ },
+ "replace": {
+ "parking:left": "yes",
+ "parking:left:orientation": "diagonal"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:left": "parallel"
+ },
+ "replace": {
+ "parking:left": "yes",
+ "parking:left:orientation": "parallel"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:left": "perpendicular"
+ },
+ "replace": {
+ "parking:left": "yes",
+ "parking:left:orientation": "perpendicular"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:right": "no"
+ },
+ "replace": {
+ "parking:right": "no"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:right": "no_parking"
+ },
+ "replace": {
+ "parking:right": "no",
+ "parking:right:restriction": "no_parking"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:right": "no_stopping"
+ },
+ "replace": {
+ "parking:right": "no",
+ "parking:right:restriction": "no_stopping"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:right": "separate"
+ },
+ "replace": {
+ "parking:right": "separate"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:right": "diagonal"
+ },
+ "replace": {
+ "parking:right": "yes",
+ "parking:right:orientation": "diagonal"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:right": "parallel"
+ },
+ "replace": {
+ "parking:right": "yes",
+ "parking:right:orientation": "parallel"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:right": "perpendicular"
+ },
+ "replace": {
+ "parking:right": "yes",
+ "parking:right:orientation": "perpendicular"
+ }
+ },
+ {
+ "old": {
+ "parking:lane:right:parallel": "on_street"
+ },
+ "replace": {
+ "parking:right": "lane"
+ }
+ },
+ {
+ "old": {
+ "parking:orientation": "*"
+ },
+ "replace": {
+ "orientation": "$1"
+ }
+ },
+ {
+ "old": {
+ "orientation": "orthogonal"
+ },
+ "replace": {
+ "orientation": "perpendicular"
+ }
+ },
{
"old": {
"parking:orientation": "orthogonal"
@@ -2481,6 +2857,11 @@
"name": "$1"
}
},
+ {
+ "old": {
+ "playground:theme": "playground"
+ }
+ },
{
"old": {
"pole": "transition"
@@ -2863,6 +3244,16 @@
"amenity": "cafe"
}
},
+ {
+ "old": {
+ "shop": "clothes",
+ "clothes": "second_hand"
+ },
+ "replace": {
+ "shop": "clothes",
+ "second_hand": "yes"
+ }
+ },
{
"old": {
"shop": "consulting"
@@ -2997,7 +3388,7 @@
"shop": "organic"
},
"replace": {
- "shop": "supermarket",
+ "shop": "yes",
"organic": "only"
}
},
@@ -3009,14 +3400,6 @@
"shop": "perfumery"
}
},
- {
- "old": {
- "shop": "photo_studio"
- },
- "replace": {
- "craft": "photographer"
- }
- },
{
"old": {
"shop": "real_estate"
@@ -3227,6 +3610,70 @@
"waterway": "stream"
}
},
+ {
+ "old": {
+ "street_cabinet": "broadband"
+ },
+ "replace": {
+ "utility": "telecom"
+ }
+ },
+ {
+ "old": {
+ "street_cabinet": "cable_tv"
+ },
+ "replace": {
+ "utility": "television"
+ }
+ },
+ {
+ "old": {
+ "street_cabinet": "communications"
+ },
+ "replace": {
+ "utility": "telecom"
+ }
+ },
+ {
+ "old": {
+ "street_cabinet": "gas"
+ },
+ "replace": {
+ "utility": "gas"
+ }
+ },
+ {
+ "old": {
+ "street_cabinet": "power"
+ },
+ "replace": {
+ "utility": "power"
+ }
+ },
+ {
+ "old": {
+ "street_cabinet": "street_lighting"
+ },
+ "replace": {
+ "utility": "street_lighting"
+ }
+ },
+ {
+ "old": {
+ "street_cabinet": "telecom"
+ },
+ "replace": {
+ "utility": "telecom"
+ }
+ },
+ {
+ "old": {
+ "survey_date": "*"
+ },
+ "replace": {
+ "survey:date": "$1"
+ }
+ },
{
"old": {
"sustenance": "bar"
@@ -3340,6 +3787,22 @@
"guest_house": "bed_and_breakfast"
}
},
+ {
+ "old": {
+ "tourism": "picnic_table"
+ },
+ "replace": {
+ "leisure": "picnic_table"
+ }
+ },
+ {
+ "old": {
+ "tourism": "resort"
+ },
+ "replace": {
+ "leisure": "resort"
+ }
+ },
{
"old": {
"tower:type": "power"
@@ -3450,6 +3913,15 @@
"transformer": "main"
}
},
+ {
+ "old": {
+ "traffic_calming": "island",
+ "area": "yes"
+ },
+ "replace": {
+ "area:highway": "traffic_island"
+ }
+ },
{
"old": {
"tunnel": "1"
@@ -3828,5 +4300,133 @@
"leaf_cycle": "mixed",
"leaf_type": "mixed"
}
+ },
+ {
+ "old": {
+ "cycleway": "none"
+ },
+ "replace": {
+ "cycleway": "no"
+ }
+ },
+ {
+ "old": {
+ "cycleway:left": "none"
+ },
+ "replace": {
+ "cycleway:left": "no"
+ }
+ },
+ {
+ "old": {
+ "cycleway:right": "none"
+ },
+ "replace": {
+ "cycleway:right": "no"
+ }
+ },
+ {
+ "old": {
+ "cycleway:both": "none"
+ },
+ "replace": {
+ "cycleway:both": "no"
+ }
+ },
+ {
+ "old": {
+ "communication": "pole"
+ },
+ "replace": {
+ "man_made": "utility_pole",
+ "utility": "telecom"
+ }
+ },
+ {
+ "old": {
+ "telephone": "pole"
+ },
+ "replace": {
+ "man_made": "utility_pole",
+ "utility": "telecom"
+ }
+ },
+ {
+ "old": {
+ "telecom": "pole"
+ },
+ "replace": {
+ "man_made": "utility_pole",
+ "utility": "telecom"
+ }
+ },
+ {
+ "old": {
+ "pstn": "pole"
+ },
+ "replace": {
+ "man_made": "utility_pole",
+ "utility": "telecom"
+ }
+ },
+ {
+ "old": {
+ "memorial:type": "stolperstein"
+ },
+ "replace": {
+ "memorial": "stolperstein"
+ }
+ },
+ {
+ "old": {
+ "memorial:text": "*"
+ },
+ "replace": {
+ "inscription": "$1"
+ }
+ },
+ {
+ "old": {
+ "industrial": "brickworks"
+ },
+ "replace": {
+ "industrial": "brickyard"
+ }
+ },
+ {
+ "old": {
+ "cycleway": "opposite"
+ },
+ "replace": {
+ "oneway:bicycle": "no",
+ "cycleway:both": "no"
+ }
+ },
+ {
+ "old": {
+ "cycleway:left": "opposite"
+ },
+ "replace": {
+ "oneway:bicycle": "no",
+ "cycleway:left": "no"
+ }
+ },
+ {
+ "old": {
+ "man_made": "torii"
+ },
+ "replace": {
+ "man_made": "ceremonial_gate",
+ "ceremonial_gate": "torii"
+ }
+ },
+ {
+ "old": {
+ "man_made": "paifang"
+ },
+ "replace": {
+ "man_made": "ceremonial_gate",
+ "ceremonial_gate": "paifang"
+ }
}
]
\ No newline at end of file
diff --git a/dist/deprecated.min.json b/dist/deprecated.min.json
index 7b3a8978..d4478fbe 100644
--- a/dist/deprecated.min.json
+++ b/dist/deprecated.min.json
@@ -1 +1 @@
-[{"old":{"aerialway":"canopy"},"replace":{"aerialway":"zip_line"}},{"old":{"aeroway":"aerobridge"},"replace":{"aeroway":"jet_bridge","highway":"corridor"}},{"old":{"access":"customer"},"replace":{"access":"customers"}},{"old":{"access":"public"},"replace":{"access":"yes"}},{"old":{"aerodrome":"military"},"replace":{"military":"airfield"}},{"old":{"aerodrome:type":"military"},"replace":{"military":"airfield"}},{"old":{"agrarian":"agrcultural_machinry"},"replace":{"agrarian":"agricultural_machinery"}},{"old":{"amenity":"advertising"},"replace":{"advertising":"*"}},{"old":{"amenity":"artwork"},"replace":{"tourism":"artwork"}},{"old":{"amenity":"bail_bonds"},"replace":{"office":"bail_bond_agent"}},{"old":{"amenity":"car_repair"},"replace":{"shop":"car_repair"}},{"old":{"amenity":"changing_room"},"replace":{"amenity":"dressing_room"}},{"old":{"amenity":"citymap_post"},"replace":{"tourism":"information"}},{"old":{"amenity":"club"},"replace":{"club":"*"}},{"old":{"amenity":"community_center"},"replace":{"amenity":"community_centre"}},{"old":{"amenity":"dancing_school"},"replace":{"leisure":"dance","dance:teaching":"yes"}},{"old":{"amenity":"dog_bin"},"replace":{"amenity":"waste_basket","waste":"dog_excrement"}},{"old":{"amenity":"dog_waste_bin"},"replace":{"amenity":"waste_basket","waste":"dog_excrement"}},{"old":{"amenity":"embassy"},"replace":{"office":"diplomatic"}},{"old":{"amenity":"ev_charging"},"replace":{"amenity":"charging_station"}},{"old":{"amenity":"charging_station","car":"*"},"replace":{"amenity":"charging_station","motorcar":"$1"}},{"old":{"amenity":"fire_hydrant"},"replace":{"emergency":"fire_hydrant"}},{"old":{"amenity":"firepit"},"replace":{"leisure":"firepit"}},{"old":{"amenity":"garage"},"replace":{"landuse":"garages"}},{"old":{"amenity":"garages"},"replace":{"landuse":"garages"}},{"old":{"amenity":"givebox"},"replace":{"amenity":"give_box"}},{"old":{"amenity":"gym"},"replace":{"leisure":"fitness_centre"}},{"old":{"amenity":"hotel"},"replace":{"tourism":"hotel"}},{"old":{"amenity":"kiosk"},"replace":{"shop":"kiosk"}},{"old":{"amenity":"notice_board"},"replace":{"advertising":"board"}},{"old":{"amenity":"nursery"},"replace":{"amenity":"kindergarten"}},{"old":{"amenity":"preschool"},"replace":{"amenity":"kindergarten","preschool":"yes"}},{"old":{"amenity":"public_building"},"replace":{"building":"public"}},{"old":{"amenity":"real_estate"},"replace":{"office":"estate_agent"}},{"old":{"amenity":"register_office"},"replace":{"office":"government","government":"register_office"}},{"old":{"amenity":"research_institution"},"replace":{"amenity":"research_institute"}},{"old":{"amenity":"sauna"},"replace":{"leisure":"sauna"}},{"old":{"amenity":"scrapyard"},"replace":{"landuse":"industrial","industrial":"scrap_yard"}},{"old":{"amenity":"shop"},"replace":{"shop":"*"}},{"old":{"amenity":"sloped_curb"},"replace":{"kerb":"lowered"}},{"old":{"amenity":"swimming_pool"},"replace":{"leisure":"swimming_pool"}},{"old":{"amenity":"ticket_booth"},"replace":{"shop":"ticket"}},{"old":{"amenity":"toilet"},"replace":{"amenity":"toilets"}},{"old":{"amenity":"vending_machine","vending":"news_papers"},"replace":{"amenity":"vending_machine","vending":"newspapers"}},{"old":{"amenity":"vending_machine","vending":"parcel_pickup"},"replace":{"amenity":"parcel_locker"}},{"old":{"amenity":"vending_machine","vending":"parcel_mail_in;parcel_pickup"},"replace":{"amenity":"parcel_locker","parcel_mail_in":"yes"}},{"old":{"amenity":"vending_machine","vending":"parcel_pickup;parcel_mail_in"},"replace":{"amenity":"parcel_locker","parcel_mail_in":"yes"}},{"old":{"amenity":"weigh_bridge"},"replace":{"amenity":"weighbridge"}},{"old":{"amenity":"winery"},"replace":{"craft":"winery"}},{"old":{"amenity":"youth_center"},"replace":{"amenity":"community_centre","community_centre":"youth_centre"}},{"old":{"amenity":"youth_centre"},"replace":{"amenity":"community_centre","community_centre":"youth_centre"}},{"old":{"artwork":"*"},"replace":{"artwork_type":"$1"}},{"old":{"artwork:type":"*"},"replace":{"artwork_type":"$1"}},{"old":{"attraction":"ferris_wheel"},"replace":{"attraction":"big_wheel"}},{"old":{"barrier":"chicane"},"replace":{"barrier":"cycle_barrier"}},{"old":{"barrier":"curb"},"replace":{"barrier":"kerb"}},{"old":{"barrier":"embankment"},"replace":{"man_made":"embankment"}},{"old":{"barrier":"railing"},"replace":{"barrier":"fence","fence_type":"railing"}},{"old":{"barrier":"wall","type":"noise_barrier"},"replace":{"barrier":"wall","wall":"noise_barrier"}},{"old":{"barrier":"wire_fence"},"replace":{"barrier":"fence","fence_type":"wire"}},{"old":{"barrier":"wood_fence"},"replace":{"barrier":"fence","fence_type":"wood"}},{"old":{"amenity":"bench","capacity":"*"},"replace":{"amenity":"bench","seats":"$1"}},{"old":{"bicycle:oneway":"*"},"replace":{"oneway:bicycle":"$1"}},{"old":{"bridge":"1"},"replace":{"bridge":"yes"}},{"old":{"bridge":"true"},"replace":{"bridge":"yes"}},{"old":{"building":"apartment"},"replace":{"building":"apartments"}},{"old":{"building":"building"},"replace":{"building":"yes"}},{"old":{"building":"Building"},"replace":{"building":"yes"}},{"old":{"building":"comercial"},"replace":{"building":"commercial"}},{"old":{"building":"constraction"},"replace":{"building":"construction"}},{"old":{"building":"convenience"},"replace":{"building":"retail"}},{"old":{"building":"detached_house"},"replace":{"building":"detached"}},{"old":{"building":"entrance"},"replace":{"entrance":"*"}},{"old":{"building":"family_house"},"replace":{"building":"house"}},{"old":{"building":"home"},"replace":{"building":"house"}},{"old":{"building":"House"},"replace":{"building":"house"}},{"old":{"building":"household"},"replace":{"building":"house"}},{"old":{"building":"offices"},"replace":{"building":"office"}},{"old":{"building":"other"},"replace":{"building":"yes"}},{"old":{"building":"oui"},"replace":{"building":"yes"}},{"old":{"building":"OUI"},"replace":{"building":"yes"}},{"old":{"building":"part"},"replace":{"building:part":"yes"}},{"old":{"building":"pavillion"},"replace":{"building":"pavilion"}},{"old":{"building":"railway_station"},"replace":{"building":"train_station"}},{"old":{"building":"Residential"},"replace":{"building":"residential"}},{"old":{"building":"services"},"replace":{"building":"service"}},{"old":{"building":"shop"},"replace":{"building":"retail"}},{"old":{"building":"shops"},"replace":{"building":"retail"}},{"old":{"building":"Si"},"replace":{"building":"yes"}},{"old":{"building":"Sí"},"replace":{"building":"yes"}},{"old":{"building":"under constraction"},"replace":{"building":"construction"}},{"old":{"building":"under construction"},"replace":{"building":"construction"}},{"old":{"building":"y"},"replace":{"building":"yes"}},{"old":{"building:color":"*"},"replace":{"building:colour":"$1"}},{"old":{"building:height":"*"},"replace":{"height":"$1"}},{"old":{"building:level":"*"},"replace":{"building:levels":"$1"}},{"old":{"building:material":"Brick"},"replace":{"building:material":"brick"}},{"old":{"building:min_height":"*"},"replace":{"min_height":"$1"}},{"old":{"building:roof:colour":"*"},"replace":{"roof:colour":"$1"}},{"old":{"building:roof:shape":"*"},"replace":{"roof:shape":"$1"}},{"old":{"building:type":"*"},"replace":{"building":"$1"}},{"old":{"camp_site":"camp_pitch"},"replace":{"tourism":"camp_pitch"}},{"old":{"shop":"clothes","clothes":"second_hand"},"replace":{"shop":"clothes","second_hand":"yes"}},{"old":{"color":"*"},"replace":{"colour":"$1"}},{"old":{"company":"consulting"},"replace":{"office":"consulting"}},{"old":{"content":"unknown"}},{"old":{"contents":"*"},"replace":{"content":"$1"}},{"old":{"craft":"car_repair"},"replace":{"shop":"car_repair"}},{"old":{"craft":"catering"},"replace":{"craft":"caterer"}},{"old":{"craft":"glass"},"replace":{"craft":"glaziery"}},{"old":{"craft":"sculpter"},"replace":{"craft":"sculptor"}},{"old":{"crossing":"island"},"replace":{"crossing:island":"yes"}},{"old":{"crossing":"traffic_lights"},"replace":{"crossing":"traffic_signals"}},{"old":{"cuisine":"gluten-free"},"replace":{"diet:gluten_free":"*"}},{"old":{"cuisine":"halal"},"replace":{"diet:halal":"*"}},{"old":{"cuisine":"kosher"},"replace":{"diet:kosher":"*"}},{"old":{"cuisine":"vegan"},"replace":{"diet:vegan":"*"}},{"old":{"cuisine":"vegetarian"},"replace":{"diet:vegetarian":"*"}},{"old":{"culvert":"culvert"},"replace":{"tunnel":"culvert"}},{"old":{"culvert":"tunnel"},"replace":{"tunnel":"culvert"}},{"old":{"culvert":"yes"},"replace":{"tunnel":"culvert"}},{"old":{"curb":"*"},"replace":{"kerb":"$1"}},{"old":{"diaper":"1"},"replace":{"changing_table":"yes","changing_table:count":"1"}},{"old":{"diaper":"no"},"replace":{"changing_table":"no"}},{"old":{"diaper":"room"},"replace":{"changing_table":"yes","changing_table:location":"room"}},{"old":{"diaper":"yes"},"replace":{"changing_table":"yes"}},{"old":{"direction":"all"},"replace":{"direction":"both"}},{"old":{"direction":"down","highway":"*"},"replace":{"incline":"down","highway":"$1"}},{"old":{"direction":"downhill"},"replace":{"incline":"down"}},{"old":{"direction":"East"},"replace":{"direction":"E"}},{"old":{"direction":"forward;backward"},"replace":{"direction":"both"}},{"old":{"direction":"North"},"replace":{"direction":"N"}},{"old":{"direction":"South"},"replace":{"direction":"S"}},{"old":{"direction":"up","highway":"*"},"replace":{"incline":"up","highway":"$1"}},{"old":{"direction":"uphill"},"replace":{"incline":"up"}},{"old":{"direction":"West"},"replace":{"direction":"W"}},{"old":{"disabled_spaces":"*"},"replace":{"capacity:disabled":"$1"}},{"old":{"drinkable":"*"},"replace":{"drinking_water":"$1"}},{"old":{"embankment":"1"},"replace":{"embankment":"yes"}},{"old":{"embankment":"false"},"replace":{"embankment":"no"}},{"old":{"embankment":"right","man_made":"embankment"},"replace":{"man_made":"embankment"}},{"old":{"embankment":"true"},"replace":{"embankment":"yes"}},{"old":{"embassy":"embassy"},"replace":{"embassy":"yes"}},{"old":{"entrance":"emergency_exit"},"replace":{"entrance":"emergency"}},{"old":{"entrance":"fire_exit"},"replace":{"entrance":"emergency"}},{"old":{"entrance":"loading_dock"},"replace":{"amenity":"loading_dock"}},{"old":{"entrance":"main_entrance"},"replace":{"entrance":"main"}},{"old":{"entrance":"private"},"replace":{"entrance":"yes","access":"private"}},{"old":{"escalator":"*"},"replace":{"highway":"steps","conveying":"$1"}},{"old":{"fast_food":"pizza"},"replace":{"cuisine":"pizza"}},{"old":{"fast_food":"shawarma"},"replace":{"cuisine":"shawarma"}},{"old":{"fee":"0"},"replace":{"fee":"no"}},{"old":{"fee":"free"},"replace":{"fee":"no"}},{"old":{"fee":"Free"},"replace":{"fee":"no"}},{"old":{"fee":"No"},"replace":{"fee":"no"}},{"old":{"fee":"none"},"replace":{"fee":"no"}},{"old":{"fee":"some"},"replace":{"fee":"yes"}},{"old":{"fee":"Yes"},"replace":{"fee":"yes"}},{"old":{"FIXME":"*"},"replace":{"fixme":"$1"}},{"old":{"footway":"both"},"replace":{"sidewalk":"both"}},{"old":{"footway":"crossing","highway":"cycleway"},"replace":{"cycleway":"crossing","highway":"cycleway"}},{"old":{"footway":"left"},"replace":{"sidewalk":"left"}},{"old":{"footway":"no"},"replace":{"sidewalk":"no"}},{"old":{"footway":"none"},"replace":{"sidewalk":"no"}},{"old":{"footway":"right"},"replace":{"sidewalk":"right"}},{"old":{"footway":"separate"},"replace":{"sidewalk":"separate"}},{"old":{"amenity":"gambling","gambling":"casino"},"replace":{"amenity":"casino"}},{"old":{"leisure":"amusement_arcade","gambling":"*"},"replace":{"leisure":"adult_gaming_centre","gambling":"$1"}},{"old":{"gambling":"slot_machine"},"replace":{"gambling":"slot_machines"}},{"old":{"generator:source":"photovoltaic"},"replace":{"generator:source":"solar","generator:method":"photovoltaic"}},{"old":{"generator:method":"solar"},"replace":{"generator:source":"solar"}},{"old":{"golf":"faiway"},"replace":{"golf":"fairway"}},{"old":{"golf":"putting_green"},"replace":{"golf":"green"}},{"old":{"golf":"sand_trap"},"replace":{"golf":"bunker","natural":"sand"}},{"old":{"golf":"tee_area"},"replace":{"golf":"tee"}},{"old":{"golf":"tee_box"},"replace":{"golf":"tee"}},{"old":{"golf":"teebox"},"replace":{"golf":"tee"}},{"old":{"healthcare":"birthing_center"},"replace":{"healthcare":"birthing_centre"}},{"old":{"healthcare:speciality":"internist"},"replace":{"healthcare:speciality":"internal"}},{"old":{"highway":"abandoned"},"replace":{"abandoned:highway":"*"}},{"old":{"highway":"service","service":"busway"},"replace":{"highway":"busway"}},{"old":{"highway":"bridleway","horse":"no"},"replace":{"highway":"path","horse":"no"}},{"old":{"highway":"cycleway","cycleway":"track"},"replace":{"highway":"cycleway"}},{"old":{"highway":"footway","foot":"no"},"replace":{"highway":"path","foot":"no"}},{"old":{"highway":"ford"},"replace":{"ford":"*"}},{"old":{"highway":"platform"},"replace":{"highway":"platform","public_transport":"platform"}},{"old":{"highway":"stile"},"replace":{"barrier":"stile"}},{"old":{"highway":"unsurfaced"},"replace":{"highway":"road","surface":"unpaved"}},{"old":{"historic":"archaeological_site","site_type":"*"},"replace":{"historic":"archaeological_site","archaeological_site":"$1"}},{"old":{"information":"citymap"},"replace":{"tourism":"information","information":"map","map_type":"street","map_size":"city"}},{"old":{"information":"hikingmap"},"replace":{"tourism":"information","information":"map","map_type":"topo","hiking":"yes"}},{"old":{"information":"bicyclemap"},"replace":{"tourism":"information","information":"map","map_type":"topo","bicyle":"yes"}},{"old":{"information":"nature"},"replace":{"tourism":"information","information":"board","board_type":"nature"}},{"old":{"information":"history"},"replace":{"tourism":"information","information":"board","board_type":"history"}},{"old":{"information":"wild_life"},"replace":{"tourism":"information","information":"board","board_type":"wildlife"}},{"old":{"information":"wildlife"},"replace":{"tourism":"information","information":"board","board_type":"wildlife"}},{"old":{"information":"board","board_type":"map"},"replace":{"tourism":"information","information":"map"}},{"old":{"internet_access":"public"},"replace":{"internet_access":"yes","internet_access:fee":"no"}},{"old":{"internet_access":"wifi"},"replace":{"internet_access":"wlan"}},{"old":{"internet_access":"wi-fi"},"replace":{"internet_access":"wlan"}},{"old":{"internet_access":"WLAN"},"replace":{"internet_access":"wlan"}},{"old":{"internet_access:fee":"0"},"replace":{"internet_access:fee":"no"}},{"old":{"internet_access:fee":"free"},"replace":{"internet_access:fee":"no"}},{"old":{"internet_access:fee":"Free"},"replace":{"internet_access:fee":"no"}},{"old":{"internet_access:fee":"No"},"replace":{"internet_access:fee":"no"}},{"old":{"internet_access:name":"*"},"replace":{"internet_access:ssid":"$1"}},{"old":{"internet_access:type":"*"},"replace":{"internet_access":"$1"}},{"old":{"kerb":"dropped"},"replace":{"kerb":"lowered"}},{"old":{"kerb":"flat"},"replace":{"kerb":"flush"}},{"old":{"lamp_mount":"bent mast"},"replace":{"lamp_mount":"bent_mast"}},{"old":{"lamp_mount":"straight mast"},"replace":{"lamp_mount":"straight_mast"}},{"old":{"lamp_mount":"straightmast"},"replace":{"lamp_mount":"straight_mast"}},{"old":{"lamp_mount":"streight_mast"},"replace":{"lamp_mount":"straight_mast"}},{"old":{"lamp_mount":"wal"},"replace":{"lamp_mount":"wall"}},{"old":{"lamp_mount":"wall mounted"},"replace":{"lamp_mount":"wall"}},{"old":{"lamp_mount":"wall_mount"},"replace":{"lamp_mount":"wall"}},{"old":{"lamp_mount":"wall_mounted"},"replace":{"lamp_mount":"wall"}},{"old":{"landcover":"flower_bed"},"replace":{"landuse":"flowerbed"}},{"old":{"landcover":"flowerbed"},"replace":{"landuse":"flowerbed"}},{"old":{"landuse":"basin"},"replace":{"natural":"water","water":"basin"}},{"old":{"landuse":"churchyard"},"replace":{"landuse":"religious"}},{"old":{"landuse":"conservation"},"replace":{"boundary":"protected_area"}},{"old":{"landuse":"field"},"replace":{"landuse":"farmland"}},{"old":{"landuse":"garden"},"replace":{"leisure":"garden"}},{"old":{"landuse":"pond"},"replace":{"natural":"water","water":"pond"}},{"old":{"landuse":"port"},"replace":{"landuse":"industrial","industrial":"port"}},{"old":{"landuse":"reservoir"},"replace":{"natural":"water","water":"reservoir"}},{"old":{"landuse":"reservoir","reservoir_type":"tailings","natural":"water","water":"reservoir"},"replace":{"man_made":"tailings_pond"}},{"old":{"landuse":"reservoir","reservoir_type":"tailings"},"replace":{"man_made":"tailings_pond"}},{"old":{"landuse":"school"},"replace":{"landuse":"education"}},{"old":{"landuse":"wood"},"replace":{"natural":"wood"}},{"old":{"lawyer":"notary"},"replace":{"office":"notary"}},{"old":{"leisure":"beach"},"replace":{"natural":"beach"}},{"old":{"leisure":"bingo"},"replace":{"amenity":"gambling","gambling":"bingo"}},{"old":{"leisure":"club"},"replace":{"club":"*"}},{"old":{"leisure":"gambling"},"replace":{"amenity":"gambling"}},{"old":{"leisure":"golf_pin"},"replace":{"golf":"pin"}},{"old":{"leisure":"ice_rink","sport":"hockey"},"replace":{"leisure":"ice_rink","sport":"ice_hockey"}},{"old":{"leisure":"ice_rink","sport":"skating"},"replace":{"leisure":"ice_rink","sport":"ice_skating"}},{"old":{"leisure":"recreation_ground"},"replace":{"landuse":"recreation_ground"}},{"old":{"leisure":"table_tennis_table"},"replace":{"leisure":"pitch","sport":"table_tennis"}},{"old":{"leisure":"video_arcade"},"replace":{"leisure":"amusement_arcade"}},{"old":{"Level":"*"},"replace":{"level":"$1"}},{"old":{"LEVEL":"*"},"replace":{"level":"$1"}},{"old":{"levels":"*"},"replace":{"building:levels":"$1"}},{"old":{"man_made":"cut_line"},"replace":{"man_made":"cutline"}},{"old":{"man_made":"flower_bed"},"replace":{"landuse":"flowerbed"}},{"old":{"man_made":"flowerbed"},"replace":{"landuse":"flowerbed"}},{"old":{"man_made":"fuel_storage_tank"},"replace":{"man_made":"storage_tank","content":"fuel"}},{"old":{"man_made":"gas_well"},"replace":{"man_made":"petroleum_well","substance":"gas"}},{"old":{"man_made":"jetty"},"replace":{"man_made":"pier"}},{"old":{"man_made":"mdf"},"replace":{"telecom":"exchange"}},{"old":{"man_made":"MDF"},"replace":{"telecom":"exchange"}},{"old":{"man_made":"oil_tank"},"replace":{"man_made":"storage_tank","content":"oil"}},{"old":{"man_made":"oil_well"},"replace":{"man_made":"petroleum_well","substance":"oil"}},{"old":{"man_made":"telephone_exchange"},"replace":{"telecom":"exchange"}},{"old":{"man_made":"village_pump"},"replace":{"man_made":"water_well"}},{"old":{"man_made":"wastewater_tank"},"replace":{"man_made":"storage_tank","content":"wastewater"}},{"old":{"man_made":"water_tank"},"replace":{"man_made":"storage_tank","content":"water"}},{"old":{"man_made":"weigh_bridge"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"weighbridge"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"weighing_machine"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"weighing_scale"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"weighting machine"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"weighting_machine"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"well"},"replace":{"man_made":"water_well"}},{"old":{"man_made":"winery"},"replace":{"craft":"winery"}},{"old":{"maxage":"*"},"replace":{"max_age":"$1"}},{"old":{"memorial":"plate"},"replace":{"memorial":"plaque"}},{"old":{"men":"*"},"replace":{"male":"$1"}},{"old":{"minage":"*"},"replace":{"min_age":"$1"}},{"old":{"mining_resource":"*"},"replace":{"resource":"$1"}},{"old":{"museum_type":"history"},"replace":{"museum":"history"}},{"old":{"museum_type":"private"},"replace":{"operator:type":"private"}},{"old":{"museum_type":"public"},"replace":{"operator:type":"public"}},{"old":{"natural":"marsh"},"replace":{"natural":"wetland","wetland":"marsh"}},{"old":{"natural":"water","water":"reservoir","reservoir_type":"tailings"},"replace":{"man_made":"tailings_pond"}},{"old":{"natural":"waterfall"},"replace":{"waterway":"waterfall"}},{"old":{"NOTE":"*"},"replace":{"note":"$1"}},{"old":{"office":"administrative"},"replace":{"office":"government"}},{"old":{"office":"consultancy"},"replace":{"office":"consulting"}},{"old":{"office":"consultant"},"replace":{"office":"consulting"}},{"old":{"office":"real_estate"},"replace":{"office":"estate_agent"}},{"old":{"oneway":"1"},"replace":{"oneway":"yes"}},{"old":{"oneway":"alternate"},"replace":{"oneway":"alternating"}},{"old":{"operator:type":"goverment"},"replace":{"operator:type":"government"}},{"old":{"operator:type":"Privado"},"replace":{"operator:type":"private"}},{"old":{"operator:type":"Private"},"replace":{"operator:type":"private"}},{"old":{"operator:type":"Public"},"replace":{"operator:type":"public"}},{"old":{"operator:type":"Publico"},"replace":{"operator:type":"public"}},{"old":{"operator:type":"unknown"}},{"old":{"parking":"covered"},"replace":{"covered":"yes"}},{"old":{"parking":"customers"},"replace":{"access":"customers"}},{"old":{"parking":"entrance"},"replace":{"amenity":"parking_entrance"}},{"old":{"parking":"park_and_ride"},"replace":{"park_ride":"yes"}},{"old":{"parking":"private"},"replace":{"access":"private"}},{"old":{"parking":"street"},"replace":{"parking":"lane"}},{"old":{"parking:orientation":"orthogonal"},"replace":{"parking:orientation":"perpendicular"}},{"old":{"place_name":"*"},"replace":{"name":"$1"}},{"old":{"pole":"transition"},"replace":{"location:transition":"yes"}},{"old":{"pole:type":"branch","branch:type":"cross"},"replace":{"line_management":"cross"}},{"old":{"pole:type":"branch","branch:type":"loop"},"replace":{"line_management":"split"}},{"old":{"pole:type":"branch","branch:type":"split"},"replace":{"line_management":"split"}},{"old":{"pole:type":"branch","branch:type":"tap"},"replace":{"line_management":"branch"}},{"old":{"pole:type":"termination"},"replace":{"line_management":"termination"}},{"old":{"postcode":"*"},"replace":{"addr:postcode":"$1"}},{"old":{"power":"busbar"},"replace":{"power":"line","line":"busbar"}},{"old":{"power":"line","location":"underground"},"replace":{"power":"cable","location":"underground"}},{"old":{"power":"marker"},"replace":{"marker":"*","utility":"power"}},{"old":{"power":"sub_station"},"replace":{"power":"substation"}},{"old":{"power":"substation","location":"kiosk"},"replace":{"power":"substation","man_made":"street_cabinet","street_cabinet":"power"}},{"old":{"power":"underground_cable"},"replace":{"power":"cable","location":"underground"}},{"old":{"power_source":"*"},"replace":{"generator:source":"$1"}},{"old":{"power_rating":"*"},"replace":{"generator:output":"$1"}},{"old":{"public_transport":"station","aerialway":"yes"},"replace":{"public_transport":"station","aerialway":"station"}},{"old":{"pump":"hand_pump"},"replace":{"pump":"manual"}},{"old":{"pump":"electrical_pump"},"replace":{"pump":"powered"}},{"old":{"pump":"no_pump"},"replace":{"pump":"no"}},{"old":{"pump":"power"},"replace":{"pump":"powered"}},{"old":{"railway":"*","abandoned":"yes"},"replace":{"abandoned:railway":"$1"}},{"old":{"railway":"*","disused":"yes"},"replace":{"disused:railway":"$1"}},{"old":{"railway":"platform"},"replace":{"railway":"platform","public_transport":"platform"}},{"old":{"railway":"station"},"replace":{"railway":"station","public_transport":"station"}},{"old":{"railway":"tram_stop"},"replace":{"railway":"tram_stop","public_transport":"stop_position","tram":"yes"}},{"old":{"recommended_speed":"*"},"replace":{"maxspeed:advisory":"$1"}},{"old":{"recommended_speed:backward":"*"},"replace":{"maxspeed:advisory:backward":"$1"}},{"old":{"recommended_speed:forward":"*"},"replace":{"maxspeed:advisory:forward":"$1"}},{"old":{"religion":"catholic"},"replace":{"religion":"christian","denomination":"catholic"}},{"old":{"roof:color":"*"},"replace":{"roof:colour":"$1"}},{"old":{"roof:shape":"half_hipped"},"replace":{"roof:shape":"half-hipped"}},{"old":{"route":"ncn"},"replace":{"route":"bicycle","network":"ncn"}},{"old":{"service":"drive_through"},"replace":{"service":"drive-through"}},{"old":{"shop":"adult"},"replace":{"shop":"erotic"}},{"old":{"shop":"antique"},"replace":{"shop":"antiques"}},{"old":{"shop":"army_surplus"},"replace":{"shop":"military_surplus"}},{"old":{"shop":"auto_parts"},"replace":{"shop":"car_parts"}},{"old":{"shop":"baby"},"replace":{"shop":"baby_goods"}},{"old":{"shop":"baby_care"},"replace":{"shop":"baby_goods"}},{"old":{"shop":"bags"},"replace":{"shop":"bag"}},{"old":{"shop":"bail_bond"},"replace":{"office":"bail_bond_agent"}},{"old":{"shop":"bail_bonds"},"replace":{"office":"bail_bond_agent"}},{"old":{"shop":"betting"},"replace":{"shop":"bookmaker"}},{"old":{"shop":"boutique"},"replace":{"shop":"clothes"}},{"old":{"shop":"cafe"},"replace":{"amenity":"cafe"}},{"old":{"shop":"consulting"},"replace":{"office":"consulting"}},{"old":{"shop":"dive"},"replace":{"shop":"scuba_diving"}},{"old":{"shop":"fashion"},"replace":{"shop":"clothes"}},{"old":{"shop":"fish"},"replace":{"shop":"seafood"}},{"old":{"shop":"fishmonger"},"replace":{"shop":"seafood"}},{"old":{"shop":"furnace"},"replace":{"shop":"fireplace"}},{"old":{"shop":"gallery"},"replace":{"shop":"art"}},{"old":{"shop":"general_store"},"replace":{"shop":"general"}},{"old":{"shop":"insurance"},"replace":{"office":"insurance"}},{"old":{"shop":"jewellery"},"replace":{"shop":"jewelry"}},{"old":{"shop":"lingerie"},"replace":{"shop":"clothes","clothes":"underwear"}},{"old":{"shop":"luggage"},"replace":{"shop":"bag"}},{"old":{"shop":"mattress"},"replace":{"shop":"bed"}},{"old":{"shop":"money_transfer"},"replace":{"amenity":"money_transfer"}},{"old":{"shop":"moneylender"},"replace":{"shop":"money_lender"}},{"old":{"shop":"office_supplies"},"replace":{"shop":"stationery"}},{"old":{"shop":"organic"},"replace":{"shop":"supermarket","organic":"only"}},{"old":{"shop":"perfume"},"replace":{"shop":"perfumery"}},{"old":{"shop":"photo_studio"},"replace":{"craft":"photographer"}},{"old":{"shop":"real_estate"},"replace":{"office":"estate_agent"}},{"old":{"shop":"telecommunications"},"replace":{"shop":"telecommunication"}},{"old":{"shop":"tickets"},"replace":{"shop":"ticket"}},{"old":{"shop":"underwear"},"replace":{"shop":"clothes","clothes":"underwear"}},{"old":{"shop":"winery"},"replace":{"craft":"winery"}},{"old":{"sloped_curb":"0"},"replace":{"kerb":"flush"}},{"old":{"sloped_curb":"0.00"},"replace":{"kerb":"flush"}},{"old":{"sloped_curb":"0.01"},"replace":{"kerb":"lowered","kerb:height":"1 cm"}},{"old":{"sloped_curb":"0.02"},"replace":{"kerb":"lowered","kerb:height":"2 cm"}},{"old":{"sloped_curb":"0.03"},"replace":{"kerb":"lowered","kerb:height":"3 cm"}},{"old":{"sloped_curb":"at_grade"},"replace":{"kerb":"flush"}},{"old":{"sloped_curb":"both"},"replace":{"kerb":"lowered"}},{"old":{"sloped_curb":"flush"},"replace":{"kerb":"flush"}},{"old":{"sloped_curb":"low"},"replace":{"kerb":"lowered"}},{"old":{"sloped_curb":"no"},"replace":{"kerb":"raised"}},{"old":{"sloped_curb":"yes"},"replace":{"kerb":"lowered"}},{"old":{"sport":"horse_shoes"},"replace":{"sport":"horseshoes"}},{"old":{"sport":"horseshoe"},"replace":{"sport":"horseshoes"}},{"old":{"sport":"shuffle_board"},"replace":{"sport":"shuffleboard"}},{"old":{"sport":"team_handball"},"replace":{"sport":"handball"}},{"old":{"station":"light_rail"},"replace":{"station":"light_rail","light_rail":"yes"}},{"old":{"station":"monorail"},"replace":{"station":"monorail","monorail":"yes"}},{"old":{"station":"subway"},"replace":{"station":"subway","subway":"yes"}},{"old":{"station":"train"},"replace":{"station":"train","train":"yes"}},{"old":{"stream":"intermittent","waterway":"stream"},"replace":{"intermittent":"yes","waterway":"stream"}},{"old":{"sustenance":"bar"},"replace":{"amenity":"bar"}},{"old":{"sustenance":"cafe"},"replace":{"amenity":"cafe"}},{"old":{"sustenance":"pub"},"replace":{"amenity":"pub"}},{"old":{"sustenance":"restaurant"},"replace":{"amenity":"restaurant"}},{"old":{"theatre:type":"amphitheatre"},"replace":{"theatre:type":"amphi"}},{"old":{"todo":"*"},"replace":{"fixme":"$1"}},{"old":{"TODO":"*"},"replace":{"fixme":"$1"}},{"old":{"toilets:disposal":"longdrop"},"replace":{"toilets:disposal":"pitlatrine"}},{"old":{"toilets:disposal":"pit_latrine"},"replace":{"toilets:disposal":"pitlatrine"}},{"old":{"toilets:type":"flush"},"replace":{"toilets:disposal":"flush"}},{"old":{"toilets:type":"pit"},"replace":{"toilets:disposal":"pitlatrine"}},{"old":{"toilets:type":"pitlatrine"},"replace":{"toilets:disposal":"pitlatrine"}},{"old":{"toilets:type":"pit latrine"},"replace":{"toilets:disposal":"pitlatrine"}},{"old":{"tourism":"bed_and_breakfast"},"replace":{"tourism":"guest_house","guest_house":"bed_and_breakfast"}},{"old":{"tower:type":"power"},"replace":{"power":"tower"}},{"old":{"tower:type":"anchor"},"replace":{"line_attachment":"anchor"}},{"old":{"tower:type":"branch","branch:type":"cross"},"replace":{"line_management":"cross"}},{"old":{"tower:type":"branch","branch:type":"loop"},"replace":{"line_management":"split"}},{"old":{"tower:type":"branch","branch:type":"split"},"replace":{"line_management":"split"}},{"old":{"tower:type":"branch","branch:type":"tap"},"replace":{"line_management":"branch"}},{"old":{"tower:type":"suspension"},"replace":{"line_attachment":"suspension"}},{"old":{"tower:type":"termination"},"replace":{"line_management":"termination"}},{"old":{"tower:type":"transposing"},"replace":{"line_management":"transpose"}},{"old":{"townhall:village":"yes"},"replace":{"amenity":"townhall","townhall:type":"village"}},{"old":{"transformer":"auto"},"replace":{"transformer":"yes","windings:auto":"yes"}},{"old":{"transformer":"minor_distribution"},"replace":{"transformer":"distribution"}},{"old":{"transformer":"traction"},"replace":{"transformer":"main"}},{"old":{"tunnel":"1"},"replace":{"tunnel":"yes"}},{"old":{"type":"audio","amenity":"studio"},"replace":{"studio":"audio","amenity":"studio"}},{"old":{"type":"broad_leaved"},"replace":{"leaf_type":"broadleaved"}},{"old":{"type":"caldera"},"replace":{"volcano:type":"caldera"}},{"old":{"type":"conifer"},"replace":{"leaf_type":"needleleaved"}},{"old":{"type":"deciduous"},"replace":{"leaf_cycle":"deciduous"}},{"old":{"type":"extinct"},"replace":{"volcano:status":"extinct"}},{"old":{"type":"gas","man_made":"pipeline"},"replace":{"substance":"gas","man_made":"pipeline"}},{"old":{"type":"gas","man_made":"pumping_rig"},"replace":{"substance":"gas","man_made":"pumping_rig"}},{"old":{"type":"gas","pipeline":"*"},"replace":{"substance":"gas","pipeline":"$1"}},{"old":{"type":"oil","man_made":"pipeline"},"replace":{"substance":"oil","man_made":"pipeline"}},{"old":{"type":"oil","man_made":"pumping_rig"},"replace":{"substance":"oil","man_made":"pumping_rig"}},{"old":{"type":"oil","pipeline":"*"},"replace":{"substance":"oil","pipeline":"$1"}},{"old":{"type":"scoria"},"replace":{"volcano:type":"scoria"}},{"old":{"type":"shield"},"replace":{"volcano:type":"shield"}},{"old":{"type":"strato"},"replace":{"volcano:type":"stratovolcano"}},{"old":{"type":"video","amenity":"studio"},"replace":{"studio":"video","amenity":"studio"}},{"old":{"type":"water","man_made":"pipeline"},"replace":{"substance":"water","man_made":"pipeline"}},{"old":{"type":"water","man_made":"reservoir_covered"},"replace":{"content":"water","man_made":"reservoir_covered"}},{"old":{"type":"water","pipeline":"*"},"replace":{"substance":"water","pipeline":"$1"}},{"old":{"unnamed":"*"},"replace":{"noname":"$1"}},{"old":{"vhf_channel":"*"},"replace":{"vhf":"$1"}},{"old":{"volcano":"extinct"},"replace":{"volcano:status":"extinct"}},{"old":{"voltage-high":"*","transformer":"generator"},"replace":{"voltage:secondary":"$1","transformer":"generator"}},{"old":{"voltage-low":"*","transformer":"generator"},"replace":{"voltage:primary":"$1","transformer":"generator"}},{"old":{"voltage-high":"*"},"replace":{"voltage:primary":"$1"}},{"old":{"voltage-low":"*"},"replace":{"voltage:secondary":"$1"}},{"old":{"wall_type":"noise_barrier"},"replace":{"wall":"noise_barrier"}},{"old":{"water":"intermittent"},"replace":{"natural":"water","intermittent":"yes"}},{"old":{"water":"riverbank"},"replace":{"natural":"water","water":"river"}},{"old":{"water":"salt"},"replace":{"natural":"water","salt":"yes"}},{"old":{"water":"tidal"},"replace":{"natural":"water","tidal":"yes"}},{"old":{"waterway":"aqueduct"},"replace":{"waterway":"canal","bridge":"aqueduct"}},{"old":{"waterway":"lock"},"replace":{"waterway":"canal","lock":"yes"}},{"old":{"waterway":"riverbank"},"replace":{"natural":"water","water":"river"}},{"old":{"waterway:vhf_channel":"*"},"replace":{"vhf":"$1"}},{"old":{"wifi":"yes"},"replace":{"internet_access":"wlan"}},{"old":{"wifi":"free"},"replace":{"internet_access":"wlan","internet_access:fee":"no"}},{"old":{"women":"*"},"replace":{"female":"$1"}},{"old":{"wood":"coniferous"},"replace":{"leaf_type":"needleleaved"}},{"old":{"wood":"deciduous"},"replace":{"leaf_cycle":"deciduous"}},{"old":{"wood":"evergreen"},"replace":{"leaf_cycle":"evergreen"}},{"old":{"wood":"mixed"},"replace":{"leaf_cycle":"mixed","leaf_type":"mixed"}}]
\ No newline at end of file
+[{"old":{"aerialway":"canopy"},"replace":{"aerialway":"zip_line"}},{"old":{"aeroway":"aerobridge"},"replace":{"aeroway":"jet_bridge","highway":"corridor"}},{"old":{"access":"customer"},"replace":{"access":"customers"}},{"old":{"access":"public"},"replace":{"access":"yes"}},{"old":{"aerodrome":"military"},"replace":{"military":"airfield"}},{"old":{"aerodrome:type":"military"},"replace":{"military":"airfield"}},{"old":{"agrarian":"agrcultural_machinry"},"replace":{"agrarian":"agricultural_machinery"}},{"old":{"amenity":"advertising"},"replace":{"advertising":"*"}},{"old":{"amenity":"artwork"},"replace":{"tourism":"artwork"}},{"old":{"amenity":"bail_bonds"},"replace":{"office":"bail_bond_agent"}},{"old":{"amenity":"car_repair"},"replace":{"shop":"car_repair"}},{"old":{"amenity":"changing_room"},"replace":{"amenity":"dressing_room"}},{"old":{"amenity":"citymap_post"},"replace":{"tourism":"information"}},{"old":{"amenity":"club"},"replace":{"club":"*"}},{"old":{"amenity":"community_center"},"replace":{"amenity":"community_centre"}},{"old":{"amenity":"dog_bin"},"replace":{"amenity":"waste_basket","waste":"dog_excrement"}},{"old":{"amenity":"dog_waste_bin"},"replace":{"amenity":"waste_basket","waste":"dog_excrement"}},{"old":{"amenity":"embassy"},"replace":{"office":"diplomatic"}},{"old":{"amenity":"ev_charging"},"replace":{"amenity":"charging_station"}},{"old":{"amenity":"charging_station","car":"*"},"replace":{"amenity":"charging_station","motorcar":"$1"}},{"old":{"amenity":"fire_hydrant"},"replace":{"emergency":"fire_hydrant"}},{"old":{"amenity":"firepit"},"replace":{"leisure":"firepit"}},{"old":{"amenity":"garage"},"replace":{"landuse":"garages"}},{"old":{"amenity":"garages"},"replace":{"landuse":"garages"}},{"old":{"amenity":"givebox"},"replace":{"amenity":"give_box"}},{"old":{"amenity":"gym"},"replace":{"leisure":"fitness_centre"}},{"old":{"amenity":"hotel"},"replace":{"tourism":"hotel"}},{"old":{"amenity":"kiosk"},"replace":{"shop":"kiosk"}},{"old":{"amenity":"lifeboat_station"},"replace":{"emergency":"water_rescue"}},{"old":{"amenity":"lockers"},"replace":{"amenity":"locker"}},{"old":{"amenity":"notice_board"},"replace":{"advertising":"board"}},{"old":{"amenity":"nursery"},"replace":{"amenity":"kindergarten"}},{"old":{"amenity":"preschool"},"replace":{"amenity":"kindergarten","preschool":"yes"}},{"old":{"amenity":"public_building"},"replace":{"building":"public"}},{"old":{"amenity":"real_estate"},"replace":{"office":"estate_agent"}},{"old":{"amenity":"register_office"},"replace":{"office":"government","government":"register_office"}},{"old":{"amenity":"research_institution"},"replace":{"amenity":"research_institute"}},{"old":{"amenity":"sauna"},"replace":{"leisure":"sauna"}},{"old":{"amenity":"scrapyard"},"replace":{"landuse":"industrial","industrial":"scrap_yard"}},{"old":{"amenity":"shop"},"replace":{"shop":"*"}},{"old":{"amenity":"sloped_curb"},"replace":{"kerb":"lowered"}},{"old":{"amenity":"swimming_pool"},"replace":{"leisure":"swimming_pool"}},{"old":{"amenity":"ticket_booth"},"replace":{"shop":"ticket"}},{"old":{"amenity":"toilet"},"replace":{"amenity":"toilets"}},{"old":{"amenity":"vending_machine","vending":"news_papers"},"replace":{"amenity":"vending_machine","vending":"newspapers"}},{"old":{"amenity":"vending_machine","vending":"parcel_pickup"},"replace":{"amenity":"parcel_locker"}},{"old":{"amenity":"vending_machine","vending":"parcel_mail_in;parcel_pickup"},"replace":{"amenity":"parcel_locker","parcel_mail_in":"yes"}},{"old":{"amenity":"vending_machine","vending":"parcel_pickup;parcel_mail_in"},"replace":{"amenity":"parcel_locker","parcel_mail_in":"yes"}},{"old":{"amenity":"weigh_bridge"},"replace":{"amenity":"weighbridge"}},{"old":{"amenity":"winery"},"replace":{"craft":"winery"}},{"old":{"amenity":"youth_center"},"replace":{"amenity":"community_centre","community_centre":"youth_centre"}},{"old":{"amenity":"youth_centre"},"replace":{"amenity":"community_centre","community_centre":"youth_centre"}},{"old":{"artwork":"*"},"replace":{"artwork_type":"$1"}},{"old":{"artwork:type":"*"},"replace":{"artwork_type":"$1"}},{"old":{"attraction":"ferris_wheel"},"replace":{"attraction":"big_wheel"}},{"old":{"barrier":"chicane"},"replace":{"barrier":"cycle_barrier"}},{"old":{"barrier":"curb"},"replace":{"barrier":"kerb"}},{"old":{"barrier":"embankment"},"replace":{"man_made":"embankment"}},{"old":{"barrier":"railing"},"replace":{"barrier":"fence","fence_type":"railing"}},{"old":{"barrier":"wall","type":"noise_barrier"},"replace":{"barrier":"wall","wall":"noise_barrier"}},{"old":{"barrier":"wire_fence"},"replace":{"barrier":"fence","fence_type":"wire"}},{"old":{"barrier":"wood_fence"},"replace":{"barrier":"fence","fence_type":"wood"}},{"old":{"amenity":"bench","capacity":"*"},"replace":{"amenity":"bench","seats":"$1"}},{"old":{"bicycle:oneway":"*"},"replace":{"oneway:bicycle":"$1"}},{"old":{"bridge":"1"},"replace":{"bridge":"yes"}},{"old":{"bridge":"true"},"replace":{"bridge":"yes"}},{"old":{"building":"apartment"},"replace":{"building":"apartments"}},{"old":{"building":"building"},"replace":{"building":"yes"}},{"old":{"building":"Building"},"replace":{"building":"yes"}},{"old":{"building":"comercial"},"replace":{"building":"commercial"}},{"old":{"building":"convenience"},"replace":{"building":"retail"}},{"old":{"building":"detached_house"},"replace":{"building":"detached"}},{"old":{"building":"entrance"},"replace":{"entrance":"*"}},{"old":{"building":"family_house"},"replace":{"building":"house"}},{"old":{"building":"home"},"replace":{"building":"house"}},{"old":{"building":"House"},"replace":{"building":"house"}},{"old":{"building":"household"},"replace":{"building":"house"}},{"old":{"building":"offices"},"replace":{"building":"office"}},{"old":{"building":"other"},"replace":{"building":"yes"}},{"old":{"building":"oui"},"replace":{"building":"yes"}},{"old":{"building":"OUI"},"replace":{"building":"yes"}},{"old":{"building":"part"},"replace":{"building:part":"yes"}},{"old":{"building":"pavillion"},"replace":{"building":"pavilion"}},{"old":{"building":"railway_station"},"replace":{"building":"train_station"}},{"old":{"building":"Residential"},"replace":{"building":"residential"}},{"old":{"building":"services"},"replace":{"building":"service"}},{"old":{"building":"shop"},"replace":{"building":"retail"}},{"old":{"building":"shops"},"replace":{"building":"retail"}},{"old":{"building":"Si"},"replace":{"building":"yes"}},{"old":{"building":"Sí"},"replace":{"building":"yes"}},{"old":{"building":"under construction"},"replace":{"building":"construction"}},{"old":{"building":"y"},"replace":{"building":"yes"}},{"old":{"building:color":"*"},"replace":{"building:colour":"$1"}},{"old":{"building:height":"*"},"replace":{"height":"$1"}},{"old":{"building:level":"*"},"replace":{"building:levels":"$1"}},{"old":{"building:material":"Brick"},"replace":{"building:material":"brick"}},{"old":{"building:min_height":"*"},"replace":{"min_height":"$1"}},{"old":{"building:roof:colour":"*"},"replace":{"roof:colour":"$1"}},{"old":{"building:roof:shape":"*"},"replace":{"roof:shape":"$1"}},{"old":{"building:type":"*"},"replace":{"building":"$1"}},{"old":{"camp_site":"camp_pitch"},"replace":{"tourism":"camp_pitch"}},{"old":{"color":"*"},"replace":{"colour":"$1"}},{"old":{"company":"consulting"},"replace":{"office":"consulting"}},{"old":{"content":"unknown"}},{"old":{"contents":"*"},"replace":{"content":"$1"}},{"old":{"craft":"car_repair"},"replace":{"shop":"car_repair"}},{"old":{"craft":"catering"},"replace":{"craft":"caterer"}},{"old":{"craft":"glass"},"replace":{"craft":"glaziery"}},{"old":{"craft":"sculpter"},"replace":{"craft":"sculptor"}},{"old":{"crossing":"island"},"replace":{"crossing:island":"yes"}},{"old":{"crossing":"traffic_lights"},"replace":{"crossing":"traffic_signals"}},{"old":{"crossing":"no","highway":"crossing"},"replace":{"crossing":"no"}},{"old":{"cuisine":"barbeque"},"replace":{"cuisine":"barbecue"}},{"old":{"cuisine":"bbq"},"replace":{"cuisine":"barbecue"}},{"old":{"cuisine":"gluten-free"},"replace":{"diet:gluten_free":"*"}},{"old":{"cuisine":"halal"},"replace":{"diet:halal":"*"}},{"old":{"cuisine":"kosher"},"replace":{"diet:kosher":"*"}},{"old":{"cuisine":"vegan"},"replace":{"diet:vegan":"*"}},{"old":{"cuisine":"vegetarian"},"replace":{"diet:vegetarian":"*"}},{"old":{"culvert":"culvert"},"replace":{"tunnel":"culvert"}},{"old":{"culvert":"tunnel"},"replace":{"tunnel":"culvert"}},{"old":{"culvert":"yes"},"replace":{"tunnel":"culvert"}},{"old":{"curb":"*"},"replace":{"kerb":"$1"}},{"old":{"diaper":"1"},"replace":{"changing_table":"yes","changing_table:count":"1"}},{"old":{"diaper":"no"},"replace":{"changing_table":"no"}},{"old":{"diaper":"room"},"replace":{"changing_table":"yes","changing_table:location":"room"}},{"old":{"diaper":"yes"},"replace":{"changing_table":"yes"}},{"old":{"direction":"all"},"replace":{"direction":"both"}},{"old":{"direction":"down","highway":"*"},"replace":{"incline":"down","highway":"$1"}},{"old":{"direction":"downhill"},"replace":{"incline":"down"}},{"old":{"direction":"East"},"replace":{"direction":"E"}},{"old":{"direction":"forward;backward"},"replace":{"direction":"both"}},{"old":{"direction":"North"},"replace":{"direction":"N"}},{"old":{"direction":"South"},"replace":{"direction":"S"}},{"old":{"direction":"up","highway":"*"},"replace":{"incline":"up","highway":"$1"}},{"old":{"direction":"uphill"},"replace":{"incline":"up"}},{"old":{"direction":"West"},"replace":{"direction":"W"}},{"old":{"disabled_spaces":"*"},"replace":{"capacity:disabled":"$1"}},{"old":{"door":"loadingdock"},"replace":{"amenity":"loading_dock"}},{"old":{"drinkable":"*"},"replace":{"drinking_water":"$1"}},{"old":{"embankment":"1"},"replace":{"embankment":"yes"}},{"old":{"embankment":"false"},"replace":{"embankment":"no"}},{"old":{"embankment":"right","man_made":"embankment"},"replace":{"man_made":"embankment"}},{"old":{"embankment":"true"},"replace":{"embankment":"yes"}},{"old":{"embassy":"embassy"},"replace":{"embassy":"yes"}},{"old":{"emergency":"dry_riser_inlet"},"replace":{"emergency":"fire_service_inlet","fire_mains":"dry"}},{"old":{"emergency":"sprinkler_connection"},"replace":{"emergency":"fire_service_inlet","fire_sprinkler":"yes"}},{"old":{"emergency":"lifeguard_base"},"replace":{"emergency":"lifeguard","lifeguard":"base"}},{"old":{"emergency":"lifeguard_platform"},"replace":{"emergency":"lifeguard","lifeguard":"tower"}},{"old":{"emergency":"lifeguard_tower"},"replace":{"emergency":"lifeguard","lifeguard":"tower"}},{"old":{"emergency":"water_rescue_station"},"replace":{"emergency":"water_rescue"}},{"old":{"emergency":"lifeboat_station"},"replace":{"emergency":"water_rescue"}},{"old":{"emergency":"ses_station"},"replace":{"emergency":"disaster_response"}},{"old":{"emergency":"marine_rescue"},"replace":{"emergency":"water_rescue"}},{"old":{"emergency_service":"air"},"replace":{"emergency":"air_rescue_service"}},{"old":{"entrance":"emergency_exit"},"replace":{"entrance":"emergency"}},{"old":{"entrance":"fire_exit"},"replace":{"entrance":"emergency"}},{"old":{"entrance":"loading_dock"},"replace":{"amenity":"loading_dock"}},{"old":{"entrance":"main_entrance"},"replace":{"entrance":"main"}},{"old":{"entrance":"private"},"replace":{"entrance":"yes","access":"private"}},{"old":{"escalator":"*"},"replace":{"highway":"steps","conveying":"$1"}},{"old":{"fast_food":"pizza"},"replace":{"cuisine":"pizza"}},{"old":{"fast_food":"shawarma"},"replace":{"cuisine":"shawarma"}},{"old":{"fee":"0"},"replace":{"fee":"no"}},{"old":{"fee":"free"},"replace":{"fee":"no"}},{"old":{"fee":"Free"},"replace":{"fee":"no"}},{"old":{"fee":"No"},"replace":{"fee":"no"}},{"old":{"fee":"none"},"replace":{"fee":"no"}},{"old":{"fee":"some"},"replace":{"fee":"yes"}},{"old":{"fee":"Yes"},"replace":{"fee":"yes"}},{"old":{"FIXME":"*"},"replace":{"fixme":"$1"}},{"old":{"footway":"both"},"replace":{"sidewalk":"both"}},{"old":{"sidewalk":"none"},"replace":{"sidewalk":"no"}},{"old":{"footway":"crossing","highway":"cycleway"},"replace":{"cycleway":"crossing","highway":"cycleway"}},{"old":{"footway":"left"},"replace":{"sidewalk":"left"}},{"old":{"footway":"no"},"replace":{"sidewalk":"no"}},{"old":{"footway":"none"},"replace":{"sidewalk":"no"}},{"old":{"footway":"right"},"replace":{"sidewalk":"right"}},{"old":{"footway":"separate"},"replace":{"sidewalk":"separate"}},{"old":{"amenity":"gambling","gambling":"casino"},"replace":{"amenity":"casino"}},{"old":{"leisure":"amusement_arcade","gambling":"*"},"replace":{"leisure":"adult_gaming_centre","gambling":"$1"}},{"old":{"gambling":"slot_machine"},"replace":{"gambling":"slot_machines"}},{"old":{"generator:source":"photovoltaic"},"replace":{"generator:source":"solar","generator:method":"photovoltaic"}},{"old":{"generator:method":"solar"},"replace":{"generator:source":"solar"}},{"old":{"golf":"faiway"},"replace":{"golf":"fairway"}},{"old":{"golf":"putting_green"},"replace":{"golf":"green"}},{"old":{"golf":"sand_trap"},"replace":{"golf":"bunker","natural":"sand"}},{"old":{"golf":"tee_area"},"replace":{"golf":"tee"}},{"old":{"golf":"tee_box"},"replace":{"golf":"tee"}},{"old":{"golf":"teebox"},"replace":{"golf":"tee"}},{"old":{"healthcare":"birthing_center"},"replace":{"healthcare":"birthing_centre"}},{"old":{"healthcare:speciality":"internist"},"replace":{"healthcare:speciality":"internal"}},{"old":{"highway":"abandoned"},"replace":{"abandoned:highway":"*"}},{"old":{"highway":"service","service":"busway"},"replace":{"highway":"busway"}},{"old":{"highway":"bridleway","horse":"no"},"replace":{"highway":"path","horse":"no"}},{"old":{"highway":"cycleway","cycleway":"track"},"replace":{"highway":"cycleway"}},{"old":{"highway":"footway","foot":"no"},"replace":{"highway":"path","foot":"no"}},{"old":{"highway":"path","ladder":"yes"},"replace":{"highway":"ladder"}},{"old":{"highway":"platform"},"replace":{"highway":"platform","public_transport":"platform"}},{"old":{"highway":"stile"},"replace":{"barrier":"stile"}},{"old":{"highway":"unsurfaced"},"replace":{"highway":"road","surface":"unpaved"}},{"old":{"historic":"archaeological_site","site_type":"*"},"replace":{"historic":"archaeological_site","archaeological_site":"$1"}},{"old":{"industrial":"gas"},"replace":{"utility":"gas"}},{"old":{"information":"citymap"},"replace":{"tourism":"information","information":"map","map_type":"street","map_size":"city"}},{"old":{"information":"hikingmap"},"replace":{"tourism":"information","information":"map","map_type":"topo","hiking":"yes"}},{"old":{"information":"bicyclemap"},"replace":{"tourism":"information","information":"map","map_type":"topo","bicyle":"yes"}},{"old":{"information":"nature"},"replace":{"tourism":"information","information":"board","board_type":"nature"}},{"old":{"information":"history"},"replace":{"tourism":"information","information":"board","board_type":"history"}},{"old":{"information":"wild_life"},"replace":{"tourism":"information","information":"board","board_type":"wildlife"}},{"old":{"information":"wildlife"},"replace":{"tourism":"information","information":"board","board_type":"wildlife"}},{"old":{"information":"board","board_type":"map"},"replace":{"tourism":"information","information":"map"}},{"old":{"internet_access":"public"},"replace":{"internet_access":"yes","internet_access:fee":"no"}},{"old":{"internet_access":"wifi"},"replace":{"internet_access":"wlan"}},{"old":{"internet_access":"wi-fi"},"replace":{"internet_access":"wlan"}},{"old":{"internet_access":"WLAN"},"replace":{"internet_access":"wlan"}},{"old":{"internet_access:fee":"0"},"replace":{"internet_access:fee":"no"}},{"old":{"internet_access:fee":"free"},"replace":{"internet_access:fee":"no"}},{"old":{"internet_access:fee":"Free"},"replace":{"internet_access:fee":"no"}},{"old":{"internet_access:fee":"No"},"replace":{"internet_access:fee":"no"}},{"old":{"internet_access:name":"*"},"replace":{"internet_access:ssid":"$1"}},{"old":{"internet_access:type":"*"},"replace":{"internet_access":"$1"}},{"old":{"kerb":"dropped"},"replace":{"kerb":"lowered"}},{"old":{"kerb":"flat"},"replace":{"kerb":"flush"}},{"old":{"lamp_mount":"bent mast"},"replace":{"lamp_mount":"bent_mast"}},{"old":{"lamp_mount":"straight mast"},"replace":{"lamp_mount":"straight_mast"}},{"old":{"lamp_mount":"straightmast"},"replace":{"lamp_mount":"straight_mast"}},{"old":{"lamp_mount":"streight_mast"},"replace":{"lamp_mount":"straight_mast"}},{"old":{"lamp_mount":"wal"},"replace":{"lamp_mount":"wall"}},{"old":{"lamp_mount":"wall mounted"},"replace":{"lamp_mount":"wall"}},{"old":{"lamp_mount":"wall_mount"},"replace":{"lamp_mount":"wall"}},{"old":{"lamp_mount":"wall_mounted"},"replace":{"lamp_mount":"wall"}},{"old":{"landcover":"flower_bed"},"replace":{"landuse":"flowerbed"}},{"old":{"landcover":"flowerbed"},"replace":{"landuse":"flowerbed"}},{"old":{"landuse":"basin"},"replace":{"natural":"water","water":"basin"}},{"old":{"landuse":"churchyard"},"replace":{"landuse":"religious"}},{"old":{"landuse":"conservation"},"replace":{"boundary":"protected_area"}},{"old":{"landuse":"field"},"replace":{"landuse":"farmland"}},{"old":{"landuse":"garden"},"replace":{"leisure":"garden"}},{"old":{"landuse":"pond"},"replace":{"natural":"water","water":"pond"}},{"old":{"landuse":"port"},"replace":{"landuse":"industrial","industrial":"port"}},{"old":{"landuse":"reservoir"},"replace":{"natural":"water","water":"reservoir"}},{"old":{"landuse":"reservoir","reservoir_type":"tailings","natural":"water","water":"reservoir"},"replace":{"man_made":"tailings_pond"}},{"old":{"landuse":"reservoir","reservoir_type":"tailings"},"replace":{"man_made":"tailings_pond"}},{"old":{"landuse":"school"},"replace":{"landuse":"education"}},{"old":{"landuse":"wood"},"replace":{"natural":"wood"}},{"old":{"lawyer":"notary"},"replace":{"office":"notary"}},{"old":{"leisure":"beach"},"replace":{"natural":"beach"}},{"old":{"leisure":"bingo"},"replace":{"amenity":"gambling","gambling":"bingo"}},{"old":{"leisure":"club"},"replace":{"club":"*"}},{"old":{"leisure":"gambling"},"replace":{"amenity":"gambling"}},{"old":{"leisure":"golf_pin"},"replace":{"golf":"pin"}},{"old":{"leisure":"ice_rink","sport":"hockey"},"replace":{"leisure":"ice_rink","sport":"ice_hockey"}},{"old":{"leisure":"ice_rink","sport":"skating"},"replace":{"leisure":"ice_rink","sport":"ice_skating"}},{"old":{"leisure":"maze"},"replace":{"attraction":"maze"}},{"old":{"leisure":"recreation_ground"},"replace":{"landuse":"recreation_ground"}},{"old":{"leisure":"swimming_pool","swimming_pool":"hot_tub"},"replace":{"leisure":"hot_tub"}},{"old":{"leisure":"table_tennis_table"},"replace":{"leisure":"pitch","sport":"table_tennis"}},{"old":{"leisure":"video_arcade"},"replace":{"leisure":"amusement_arcade"}},{"old":{"Level":"*"},"replace":{"level":"$1"}},{"old":{"LEVEL":"*"},"replace":{"level":"$1"}},{"old":{"levels":"*"},"replace":{"building:levels":"$1"}},{"old":{"man_made":"cut_line"},"replace":{"man_made":"cutline"}},{"old":{"man_made":"flower_bed"},"replace":{"landuse":"flowerbed"}},{"old":{"man_made":"flowerbed"},"replace":{"landuse":"flowerbed"}},{"old":{"man_made":"fuel_storage_tank"},"replace":{"man_made":"storage_tank","content":"fuel"}},{"old":{"man_made":"gas_well"},"replace":{"man_made":"petroleum_well","substance":"gas"}},{"old":{"man_made":"jetty"},"replace":{"man_made":"pier"}},{"old":{"man_made":"mdf"},"replace":{"telecom":"exchange"}},{"old":{"man_made":"MDF"},"replace":{"telecom":"exchange"}},{"old":{"man_made":"oil_tank"},"replace":{"man_made":"storage_tank","content":"oil"}},{"old":{"man_made":"oil_well"},"replace":{"man_made":"petroleum_well","substance":"oil"}},{"old":{"man_made":"telephone_exchange"},"replace":{"telecom":"exchange"}},{"old":{"man_made":"village_pump"},"replace":{"man_made":"water_well"}},{"old":{"man_made":"wastewater_tank"},"replace":{"man_made":"storage_tank","content":"wastewater"}},{"old":{"man_made":"water_tank"},"replace":{"man_made":"storage_tank","content":"water"}},{"old":{"man_made":"weigh_bridge"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"weighbridge"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"weighing_machine"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"weighing_scale"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"weighting machine"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"weighting_machine"},"replace":{"amenity":"weighbridge"}},{"old":{"man_made":"well"},"replace":{"man_made":"water_well"}},{"old":{"man_made":"winery"},"replace":{"craft":"winery"}},{"old":{"map_type":"tactile_map","information":"map"},"replace":{"information":"tactile_map"}},{"old":{"map_type":"tactile_model","information":"map"},"replace":{"information":"tactile_model"}},{"old":{"maxage":"*"},"replace":{"max_age":"$1"}},{"old":{"memorial":"plate"},"replace":{"memorial":"plaque"}},{"old":{"men":"*"},"replace":{"male":"$1"}},{"old":{"minage":"*"},"replace":{"min_age":"$1"}},{"old":{"mining_resource":"*"},"replace":{"resource":"$1"}},{"old":{"museum_type":"history"},"replace":{"museum":"history"}},{"old":{"museum_type":"private"},"replace":{"operator:type":"private"}},{"old":{"museum_type":"public"},"replace":{"operator:type":"public"}},{"old":{"natural":"marsh"},"replace":{"natural":"wetland","wetland":"marsh"}},{"old":{"natural":"water","water":"reservoir","reservoir_type":"tailings"},"replace":{"man_made":"tailings_pond"}},{"old":{"natural":"waterfall"},"replace":{"waterway":"waterfall"}},{"old":{"NOTE":"*"},"replace":{"note":"$1"}},{"old":{"office":"administrative"},"replace":{"office":"government"}},{"old":{"office":"consultancy"},"replace":{"office":"consulting"}},{"old":{"office":"consultant"},"replace":{"office":"consulting"}},{"old":{"office":"real_estate"},"replace":{"office":"estate_agent"}},{"old":{"oneway":"1"},"replace":{"oneway":"yes"}},{"old":{"oneway":"alternate"},"replace":{"oneway":"alternating"}},{"old":{"operator:type":"goverment"},"replace":{"operator:type":"government"}},{"old":{"operator:type":"Privado"},"replace":{"operator:type":"private"}},{"old":{"operator:type":"Private"},"replace":{"operator:type":"private"}},{"old":{"operator:type":"Public"},"replace":{"operator:type":"public"}},{"old":{"operator:type":"Publico"},"replace":{"operator:type":"public"}},{"old":{"operator:type":"unknown"}},{"old":{"parking":"covered"},"replace":{"covered":"yes"}},{"old":{"parking":"customers"},"replace":{"access":"customers"}},{"old":{"parking":"entrance"},"replace":{"amenity":"parking_entrance"}},{"old":{"parking":"park_and_ride"},"replace":{"park_ride":"yes"}},{"old":{"parking":"private"},"replace":{"access":"private"}},{"old":{"parking":"street"},"replace":{"parking":"lane"}},{"old":{"parking:lane:both":"no"},"replace":{"parking:both":"no"}},{"old":{"parking:lane:both":"no_parking"},"replace":{"parking:both":"no","parking:both:restriction":"no_parking"}},{"old":{"parking:lane:both":"no_stopping"},"replace":{"parking:both":"no","parking:both:restriction":"no_stopping"}},{"old":{"parking:lane:both":"fire_lane"},"replace":{"parking:both":"no","parking:both:restriction":"no_stopping","parking:both:restriction:reason":"fire_lane"}},{"old":{"parking:lane:both":"separate"},"replace":{"parking:both":"separate"}},{"old":{"parking:lane:both":"diagonal"},"replace":{"parking:both":"yes","parking:both:orientation":"diagonal"}},{"old":{"parking:lane:both":"parallel"},"replace":{"parking:both":"yes","parking:both:orientation":"parallel"}},{"old":{"parking:lane:both":"perpendicular"},"replace":{"parking:both":"yes","parking:both:orientation":"perpendicular"}},{"old":{"parking:lane:both:parallel":"on_street"},"replace":{"parking:both":"lane"}},{"old":{"parking:lane:left":"no"},"replace":{"parking:left":"no"}},{"old":{"parking:lane:left":"no_parking"},"replace":{"parking:left":"no","parking:left:restriction":"no_parking"}},{"old":{"parking:lane:left":"no_stopping"},"replace":{"parking:left":"no","parking:left:restriction":"no_stopping"}},{"old":{"parking:lane:left":"separate"},"replace":{"parking:left":"separate"}},{"old":{"parking:lane:left":"diagonal"},"replace":{"parking:left":"yes","parking:left:orientation":"diagonal"}},{"old":{"parking:lane:left":"parallel"},"replace":{"parking:left":"yes","parking:left:orientation":"parallel"}},{"old":{"parking:lane:left":"perpendicular"},"replace":{"parking:left":"yes","parking:left:orientation":"perpendicular"}},{"old":{"parking:lane:right":"no"},"replace":{"parking:right":"no"}},{"old":{"parking:lane:right":"no_parking"},"replace":{"parking:right":"no","parking:right:restriction":"no_parking"}},{"old":{"parking:lane:right":"no_stopping"},"replace":{"parking:right":"no","parking:right:restriction":"no_stopping"}},{"old":{"parking:lane:right":"separate"},"replace":{"parking:right":"separate"}},{"old":{"parking:lane:right":"diagonal"},"replace":{"parking:right":"yes","parking:right:orientation":"diagonal"}},{"old":{"parking:lane:right":"parallel"},"replace":{"parking:right":"yes","parking:right:orientation":"parallel"}},{"old":{"parking:lane:right":"perpendicular"},"replace":{"parking:right":"yes","parking:right:orientation":"perpendicular"}},{"old":{"parking:lane:right:parallel":"on_street"},"replace":{"parking:right":"lane"}},{"old":{"parking:orientation":"*"},"replace":{"orientation":"$1"}},{"old":{"orientation":"orthogonal"},"replace":{"orientation":"perpendicular"}},{"old":{"parking:orientation":"orthogonal"},"replace":{"parking:orientation":"perpendicular"}},{"old":{"place_name":"*"},"replace":{"name":"$1"}},{"old":{"playground:theme":"playground"}},{"old":{"pole":"transition"},"replace":{"location:transition":"yes"}},{"old":{"pole:type":"branch","branch:type":"cross"},"replace":{"line_management":"cross"}},{"old":{"pole:type":"branch","branch:type":"loop"},"replace":{"line_management":"split"}},{"old":{"pole:type":"branch","branch:type":"split"},"replace":{"line_management":"split"}},{"old":{"pole:type":"branch","branch:type":"tap"},"replace":{"line_management":"branch"}},{"old":{"pole:type":"termination"},"replace":{"line_management":"termination"}},{"old":{"postcode":"*"},"replace":{"addr:postcode":"$1"}},{"old":{"power":"busbar"},"replace":{"power":"line","line":"busbar"}},{"old":{"power":"line","location":"underground"},"replace":{"power":"cable","location":"underground"}},{"old":{"power":"marker"},"replace":{"marker":"*","utility":"power"}},{"old":{"power":"sub_station"},"replace":{"power":"substation"}},{"old":{"power":"substation","location":"kiosk"},"replace":{"power":"substation","man_made":"street_cabinet","street_cabinet":"power"}},{"old":{"power":"underground_cable"},"replace":{"power":"cable","location":"underground"}},{"old":{"power_source":"*"},"replace":{"generator:source":"$1"}},{"old":{"power_rating":"*"},"replace":{"generator:output":"$1"}},{"old":{"public_transport":"station","aerialway":"yes"},"replace":{"public_transport":"station","aerialway":"station"}},{"old":{"pump":"hand_pump"},"replace":{"pump":"manual"}},{"old":{"pump":"electrical_pump"},"replace":{"pump":"powered"}},{"old":{"pump":"no_pump"},"replace":{"pump":"no"}},{"old":{"pump":"power"},"replace":{"pump":"powered"}},{"old":{"railway":"*","abandoned":"yes"},"replace":{"abandoned:railway":"$1"}},{"old":{"railway":"*","disused":"yes"},"replace":{"disused:railway":"$1"}},{"old":{"railway":"platform"},"replace":{"railway":"platform","public_transport":"platform"}},{"old":{"railway":"station"},"replace":{"railway":"station","public_transport":"station"}},{"old":{"railway":"tram_stop"},"replace":{"railway":"tram_stop","public_transport":"stop_position","tram":"yes"}},{"old":{"recommended_speed":"*"},"replace":{"maxspeed:advisory":"$1"}},{"old":{"recommended_speed:backward":"*"},"replace":{"maxspeed:advisory:backward":"$1"}},{"old":{"recommended_speed:forward":"*"},"replace":{"maxspeed:advisory:forward":"$1"}},{"old":{"religion":"catholic"},"replace":{"religion":"christian","denomination":"catholic"}},{"old":{"roof:color":"*"},"replace":{"roof:colour":"$1"}},{"old":{"roof:shape":"half_hipped"},"replace":{"roof:shape":"half-hipped"}},{"old":{"route":"ncn"},"replace":{"route":"bicycle","network":"ncn"}},{"old":{"service":"drive_through"},"replace":{"service":"drive-through"}},{"old":{"shop":"adult"},"replace":{"shop":"erotic"}},{"old":{"shop":"antique"},"replace":{"shop":"antiques"}},{"old":{"shop":"army_surplus"},"replace":{"shop":"military_surplus"}},{"old":{"shop":"auto_parts"},"replace":{"shop":"car_parts"}},{"old":{"shop":"baby"},"replace":{"shop":"baby_goods"}},{"old":{"shop":"baby_care"},"replace":{"shop":"baby_goods"}},{"old":{"shop":"bags"},"replace":{"shop":"bag"}},{"old":{"shop":"bail_bond"},"replace":{"office":"bail_bond_agent"}},{"old":{"shop":"bail_bonds"},"replace":{"office":"bail_bond_agent"}},{"old":{"shop":"betting"},"replace":{"shop":"bookmaker"}},{"old":{"shop":"boutique"},"replace":{"shop":"clothes"}},{"old":{"shop":"cafe"},"replace":{"amenity":"cafe"}},{"old":{"shop":"clothes","clothes":"second_hand"},"replace":{"shop":"clothes","second_hand":"yes"}},{"old":{"shop":"consulting"},"replace":{"office":"consulting"}},{"old":{"shop":"dive"},"replace":{"shop":"scuba_diving"}},{"old":{"shop":"fashion"},"replace":{"shop":"clothes"}},{"old":{"shop":"fish"},"replace":{"shop":"seafood"}},{"old":{"shop":"fishmonger"},"replace":{"shop":"seafood"}},{"old":{"shop":"furnace"},"replace":{"shop":"fireplace"}},{"old":{"shop":"gallery"},"replace":{"shop":"art"}},{"old":{"shop":"general_store"},"replace":{"shop":"general"}},{"old":{"shop":"insurance"},"replace":{"office":"insurance"}},{"old":{"shop":"jewellery"},"replace":{"shop":"jewelry"}},{"old":{"shop":"lingerie"},"replace":{"shop":"clothes","clothes":"underwear"}},{"old":{"shop":"luggage"},"replace":{"shop":"bag"}},{"old":{"shop":"mattress"},"replace":{"shop":"bed"}},{"old":{"shop":"money_transfer"},"replace":{"amenity":"money_transfer"}},{"old":{"shop":"moneylender"},"replace":{"shop":"money_lender"}},{"old":{"shop":"office_supplies"},"replace":{"shop":"stationery"}},{"old":{"shop":"organic"},"replace":{"shop":"yes","organic":"only"}},{"old":{"shop":"perfume"},"replace":{"shop":"perfumery"}},{"old":{"shop":"real_estate"},"replace":{"office":"estate_agent"}},{"old":{"shop":"telecommunications"},"replace":{"shop":"telecommunication"}},{"old":{"shop":"tickets"},"replace":{"shop":"ticket"}},{"old":{"shop":"underwear"},"replace":{"shop":"clothes","clothes":"underwear"}},{"old":{"shop":"winery"},"replace":{"craft":"winery"}},{"old":{"sloped_curb":"0"},"replace":{"kerb":"flush"}},{"old":{"sloped_curb":"0.00"},"replace":{"kerb":"flush"}},{"old":{"sloped_curb":"0.01"},"replace":{"kerb":"lowered","kerb:height":"1 cm"}},{"old":{"sloped_curb":"0.02"},"replace":{"kerb":"lowered","kerb:height":"2 cm"}},{"old":{"sloped_curb":"0.03"},"replace":{"kerb":"lowered","kerb:height":"3 cm"}},{"old":{"sloped_curb":"at_grade"},"replace":{"kerb":"flush"}},{"old":{"sloped_curb":"both"},"replace":{"kerb":"lowered"}},{"old":{"sloped_curb":"flush"},"replace":{"kerb":"flush"}},{"old":{"sloped_curb":"low"},"replace":{"kerb":"lowered"}},{"old":{"sloped_curb":"no"},"replace":{"kerb":"raised"}},{"old":{"sloped_curb":"yes"},"replace":{"kerb":"lowered"}},{"old":{"sport":"horse_shoes"},"replace":{"sport":"horseshoes"}},{"old":{"sport":"horseshoe"},"replace":{"sport":"horseshoes"}},{"old":{"sport":"shuffle_board"},"replace":{"sport":"shuffleboard"}},{"old":{"sport":"team_handball"},"replace":{"sport":"handball"}},{"old":{"station":"light_rail"},"replace":{"station":"light_rail","light_rail":"yes"}},{"old":{"station":"monorail"},"replace":{"station":"monorail","monorail":"yes"}},{"old":{"station":"subway"},"replace":{"station":"subway","subway":"yes"}},{"old":{"station":"train"},"replace":{"station":"train","train":"yes"}},{"old":{"stream":"intermittent","waterway":"stream"},"replace":{"intermittent":"yes","waterway":"stream"}},{"old":{"street_cabinet":"broadband"},"replace":{"utility":"telecom"}},{"old":{"street_cabinet":"cable_tv"},"replace":{"utility":"television"}},{"old":{"street_cabinet":"communications"},"replace":{"utility":"telecom"}},{"old":{"street_cabinet":"gas"},"replace":{"utility":"gas"}},{"old":{"street_cabinet":"power"},"replace":{"utility":"power"}},{"old":{"street_cabinet":"street_lighting"},"replace":{"utility":"street_lighting"}},{"old":{"street_cabinet":"telecom"},"replace":{"utility":"telecom"}},{"old":{"survey_date":"*"},"replace":{"survey:date":"$1"}},{"old":{"sustenance":"bar"},"replace":{"amenity":"bar"}},{"old":{"sustenance":"cafe"},"replace":{"amenity":"cafe"}},{"old":{"sustenance":"pub"},"replace":{"amenity":"pub"}},{"old":{"sustenance":"restaurant"},"replace":{"amenity":"restaurant"}},{"old":{"theatre:type":"amphitheatre"},"replace":{"theatre:type":"amphi"}},{"old":{"todo":"*"},"replace":{"fixme":"$1"}},{"old":{"TODO":"*"},"replace":{"fixme":"$1"}},{"old":{"toilets:disposal":"longdrop"},"replace":{"toilets:disposal":"pitlatrine"}},{"old":{"toilets:disposal":"pit_latrine"},"replace":{"toilets:disposal":"pitlatrine"}},{"old":{"toilets:type":"flush"},"replace":{"toilets:disposal":"flush"}},{"old":{"toilets:type":"pit"},"replace":{"toilets:disposal":"pitlatrine"}},{"old":{"toilets:type":"pitlatrine"},"replace":{"toilets:disposal":"pitlatrine"}},{"old":{"toilets:type":"pit latrine"},"replace":{"toilets:disposal":"pitlatrine"}},{"old":{"tourism":"bed_and_breakfast"},"replace":{"tourism":"guest_house","guest_house":"bed_and_breakfast"}},{"old":{"tourism":"picnic_table"},"replace":{"leisure":"picnic_table"}},{"old":{"tourism":"resort"},"replace":{"leisure":"resort"}},{"old":{"tower:type":"power"},"replace":{"power":"tower"}},{"old":{"tower:type":"anchor"},"replace":{"line_attachment":"anchor"}},{"old":{"tower:type":"branch","branch:type":"cross"},"replace":{"line_management":"cross"}},{"old":{"tower:type":"branch","branch:type":"loop"},"replace":{"line_management":"split"}},{"old":{"tower:type":"branch","branch:type":"split"},"replace":{"line_management":"split"}},{"old":{"tower:type":"branch","branch:type":"tap"},"replace":{"line_management":"branch"}},{"old":{"tower:type":"suspension"},"replace":{"line_attachment":"suspension"}},{"old":{"tower:type":"termination"},"replace":{"line_management":"termination"}},{"old":{"tower:type":"transposing"},"replace":{"line_management":"transpose"}},{"old":{"townhall:village":"yes"},"replace":{"amenity":"townhall","townhall:type":"village"}},{"old":{"transformer":"auto"},"replace":{"transformer":"yes","windings:auto":"yes"}},{"old":{"transformer":"minor_distribution"},"replace":{"transformer":"distribution"}},{"old":{"transformer":"traction"},"replace":{"transformer":"main"}},{"old":{"traffic_calming":"island","area":"yes"},"replace":{"area:highway":"traffic_island"}},{"old":{"tunnel":"1"},"replace":{"tunnel":"yes"}},{"old":{"type":"audio","amenity":"studio"},"replace":{"studio":"audio","amenity":"studio"}},{"old":{"type":"broad_leaved"},"replace":{"leaf_type":"broadleaved"}},{"old":{"type":"caldera"},"replace":{"volcano:type":"caldera"}},{"old":{"type":"conifer"},"replace":{"leaf_type":"needleleaved"}},{"old":{"type":"deciduous"},"replace":{"leaf_cycle":"deciduous"}},{"old":{"type":"extinct"},"replace":{"volcano:status":"extinct"}},{"old":{"type":"gas","man_made":"pipeline"},"replace":{"substance":"gas","man_made":"pipeline"}},{"old":{"type":"gas","man_made":"pumping_rig"},"replace":{"substance":"gas","man_made":"pumping_rig"}},{"old":{"type":"gas","pipeline":"*"},"replace":{"substance":"gas","pipeline":"$1"}},{"old":{"type":"oil","man_made":"pipeline"},"replace":{"substance":"oil","man_made":"pipeline"}},{"old":{"type":"oil","man_made":"pumping_rig"},"replace":{"substance":"oil","man_made":"pumping_rig"}},{"old":{"type":"oil","pipeline":"*"},"replace":{"substance":"oil","pipeline":"$1"}},{"old":{"type":"scoria"},"replace":{"volcano:type":"scoria"}},{"old":{"type":"shield"},"replace":{"volcano:type":"shield"}},{"old":{"type":"strato"},"replace":{"volcano:type":"stratovolcano"}},{"old":{"type":"video","amenity":"studio"},"replace":{"studio":"video","amenity":"studio"}},{"old":{"type":"water","man_made":"pipeline"},"replace":{"substance":"water","man_made":"pipeline"}},{"old":{"type":"water","man_made":"reservoir_covered"},"replace":{"content":"water","man_made":"reservoir_covered"}},{"old":{"type":"water","pipeline":"*"},"replace":{"substance":"water","pipeline":"$1"}},{"old":{"unnamed":"*"},"replace":{"noname":"$1"}},{"old":{"vhf_channel":"*"},"replace":{"vhf":"$1"}},{"old":{"volcano":"extinct"},"replace":{"volcano:status":"extinct"}},{"old":{"voltage-high":"*","transformer":"generator"},"replace":{"voltage:secondary":"$1","transformer":"generator"}},{"old":{"voltage-low":"*","transformer":"generator"},"replace":{"voltage:primary":"$1","transformer":"generator"}},{"old":{"voltage-high":"*"},"replace":{"voltage:primary":"$1"}},{"old":{"voltage-low":"*"},"replace":{"voltage:secondary":"$1"}},{"old":{"wall_type":"noise_barrier"},"replace":{"wall":"noise_barrier"}},{"old":{"water":"intermittent"},"replace":{"natural":"water","intermittent":"yes"}},{"old":{"water":"riverbank"},"replace":{"natural":"water","water":"river"}},{"old":{"water":"salt"},"replace":{"natural":"water","salt":"yes"}},{"old":{"water":"tidal"},"replace":{"natural":"water","tidal":"yes"}},{"old":{"waterway":"aqueduct"},"replace":{"waterway":"canal","bridge":"aqueduct"}},{"old":{"waterway":"lock"},"replace":{"waterway":"canal","lock":"yes"}},{"old":{"waterway":"riverbank"},"replace":{"natural":"water","water":"river"}},{"old":{"waterway:vhf_channel":"*"},"replace":{"vhf":"$1"}},{"old":{"wifi":"yes"},"replace":{"internet_access":"wlan"}},{"old":{"wifi":"free"},"replace":{"internet_access":"wlan","internet_access:fee":"no"}},{"old":{"women":"*"},"replace":{"female":"$1"}},{"old":{"wood":"coniferous"},"replace":{"leaf_type":"needleleaved"}},{"old":{"wood":"deciduous"},"replace":{"leaf_cycle":"deciduous"}},{"old":{"wood":"evergreen"},"replace":{"leaf_cycle":"evergreen"}},{"old":{"wood":"mixed"},"replace":{"leaf_cycle":"mixed","leaf_type":"mixed"}},{"old":{"cycleway":"none"},"replace":{"cycleway":"no"}},{"old":{"cycleway:left":"none"},"replace":{"cycleway:left":"no"}},{"old":{"cycleway:right":"none"},"replace":{"cycleway:right":"no"}},{"old":{"cycleway:both":"none"},"replace":{"cycleway:both":"no"}},{"old":{"communication":"pole"},"replace":{"man_made":"utility_pole","utility":"telecom"}},{"old":{"telephone":"pole"},"replace":{"man_made":"utility_pole","utility":"telecom"}},{"old":{"telecom":"pole"},"replace":{"man_made":"utility_pole","utility":"telecom"}},{"old":{"pstn":"pole"},"replace":{"man_made":"utility_pole","utility":"telecom"}},{"old":{"memorial:type":"stolperstein"},"replace":{"memorial":"stolperstein"}},{"old":{"memorial:text":"*"},"replace":{"inscription":"$1"}},{"old":{"industrial":"brickworks"},"replace":{"industrial":"brickyard"}},{"old":{"cycleway":"opposite"},"replace":{"oneway:bicycle":"no","cycleway:both":"no"}},{"old":{"cycleway:left":"opposite"},"replace":{"oneway:bicycle":"no","cycleway:left":"no"}},{"old":{"man_made":"torii"},"replace":{"man_made":"ceremonial_gate","ceremonial_gate":"torii"}},{"old":{"man_made":"paifang"},"replace":{"man_made":"ceremonial_gate","ceremonial_gate":"paifang"}}]
\ No newline at end of file
diff --git a/dist/discarded.json b/dist/discarded.json
index e4d1d00b..af6fc609 100644
--- a/dist/discarded.json
+++ b/dist/discarded.json
@@ -1,6 +1,5 @@
{
"created_by": true,
- "converted_by": true,
"odbl": true,
"odbl:note": true,
"tiger:upload_uuid": true,
@@ -45,5 +44,15 @@
"yh:TOTYUMONO": true,
"yh:TYPE": true,
"yh:WIDTH": true,
- "yh:WIDTH_RANK": true
+ "yh:WIDTH_RANK": true,
+ "LINZ2OSM:dataset": true,
+ "LINZ2OSM:layer": true,
+ "LINZ2OSM:source_version": true,
+ "LINZ:dataset": true,
+ "LINZ:layer": true,
+ "LINZ:source_version": true,
+ "linz2osm:objectid": true,
+ "fid": true,
+ "import_uuid": true,
+ "gnis:import_uuid": true
}
\ No newline at end of file
diff --git a/dist/discarded.min.json b/dist/discarded.min.json
index 33c3ed43..57abd434 100644
--- a/dist/discarded.min.json
+++ b/dist/discarded.min.json
@@ -1 +1 @@
-{"created_by":true,"converted_by":true,"odbl":true,"odbl:note":true,"tiger:upload_uuid":true,"tiger:tlid":true,"tiger:source":true,"tiger:separated":true,"geobase:datasetName":true,"geobase:uuid":true,"osmarender:nameDirection":true,"osmarender:renderName":true,"osmarender:renderRef":true,"osmarender:rendernames":true,"sub_sea:type":true,"KSJ2:ADS":true,"KSJ2:ARE":true,"KSJ2:AdminArea":true,"KSJ2:COP_label":true,"KSJ2:DFD":true,"KSJ2:INT":true,"KSJ2:INT_label":true,"KSJ2:LOC":true,"KSJ2:LPN":true,"KSJ2:OPC":true,"KSJ2:PubFacAdmin":true,"KSJ2:RAC":true,"KSJ2:RAC_label":true,"KSJ2:RIC":true,"KSJ2:RIN":true,"KSJ2:WSC":true,"KSJ2:coordinate":true,"KSJ2:curve_id":true,"KSJ2:curve_type":true,"KSJ2:filename":true,"KSJ2:lake_id":true,"KSJ2:lat":true,"KSJ2:long":true,"KSJ2:river_id":true,"SK53_bulk:load":true,"yh:LINE_NAME":true,"yh:LINE_NUM":true,"yh:STRUCTURE":true,"yh:TOTYUMONO":true,"yh:TYPE":true,"yh:WIDTH":true,"yh:WIDTH_RANK":true}
\ No newline at end of file
+{"created_by":true,"odbl":true,"odbl:note":true,"tiger:upload_uuid":true,"tiger:tlid":true,"tiger:source":true,"tiger:separated":true,"geobase:datasetName":true,"geobase:uuid":true,"osmarender:nameDirection":true,"osmarender:renderName":true,"osmarender:renderRef":true,"osmarender:rendernames":true,"sub_sea:type":true,"KSJ2:ADS":true,"KSJ2:ARE":true,"KSJ2:AdminArea":true,"KSJ2:COP_label":true,"KSJ2:DFD":true,"KSJ2:INT":true,"KSJ2:INT_label":true,"KSJ2:LOC":true,"KSJ2:LPN":true,"KSJ2:OPC":true,"KSJ2:PubFacAdmin":true,"KSJ2:RAC":true,"KSJ2:RAC_label":true,"KSJ2:RIC":true,"KSJ2:RIN":true,"KSJ2:WSC":true,"KSJ2:coordinate":true,"KSJ2:curve_id":true,"KSJ2:curve_type":true,"KSJ2:filename":true,"KSJ2:lake_id":true,"KSJ2:lat":true,"KSJ2:long":true,"KSJ2:river_id":true,"SK53_bulk:load":true,"yh:LINE_NAME":true,"yh:LINE_NUM":true,"yh:STRUCTURE":true,"yh:TOTYUMONO":true,"yh:TYPE":true,"yh:WIDTH":true,"yh:WIDTH_RANK":true,"LINZ2OSM:dataset":true,"LINZ2OSM:layer":true,"LINZ2OSM:source_version":true,"LINZ:dataset":true,"LINZ:layer":true,"LINZ:source_version":true,"linz2osm:objectid":true,"fid":true,"import_uuid":true,"gnis:import_uuid":true}
\ No newline at end of file
diff --git a/dist/fields.json b/dist/fields.json
index b1c48eeb..bc2ee791 100644
--- a/dist/fields.json
+++ b/dist/fields.json
@@ -1,337 +1,56 @@
{
- "access_aisle": {
- "key": "access_aisle",
- "type": "combo"
+ "wood_provided": {
+ "key": "wood_provided",
+ "type": "check",
+ "locationSet": {
+ "include": [
+ "ch",
+ "dk",
+ "fi",
+ "se"
+ ]
+ }
},
- "access_simple": {
- "key": "access",
- "type": "combo",
- "autoSuggestions": false,
- "options": [
- "yes",
- "private",
- "permissive",
- "customers",
- "permit",
- "unknown",
- "no"
- ]
- },
- "access": {
- "keys": [
- "access",
- "foot",
- "motor_vehicle",
- "bicycle",
- "horse"
- ],
- "reference": {
- "key": "access"
- },
- "type": "access",
- "options": [
- "yes",
- "no",
- "permissive",
- "private",
- "designated",
- "destination",
- "customers",
- "dismount",
- "permit",
- "unknown"
- ]
- },
- "activity": {
- "keys": [
- "hiking",
- "bicycle",
- "mtb",
- "horse",
- "ski"
- ],
- "type": "manyCombo",
- "options": [
- "hiking",
- "bicycle",
- "mtb",
- "horse",
- "ski"
- ]
- },
- "addr/interpolation": {
- "key": "addr:interpolation",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "all",
- "even",
- "odd",
- "alphabetic"
- ]
- },
- "address": {
- "type": "address",
- "key": "addr",
- "keys": [
- "addr:block_number",
- "addr:city",
- "addr:block_number",
- "addr:conscriptionnumber",
- "addr:county",
- "addr:country",
- "addr:county",
- "addr:district",
- "addr:floor",
- "addr:hamlet",
- "addr:housename",
- "addr:housenumber",
- "addr:neighbourhood",
- "addr:place",
- "addr:postcode",
- "addr:province",
- "addr:quarter",
- "addr:state",
- "addr:street",
- "addr:subdistrict",
- "addr:suburb",
- "addr:unit"
- ]
- },
- "admin_level": {
- "key": "admin_level",
+ "windings": {
+ "key": "windings",
"type": "number",
"minValue": 1
},
- "aerialway": {
- "key": "aerialway",
- "type": "typeCombo"
- },
- "aerialway/access": {
- "key": "aerialway:access",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "entry",
- "exit",
- "both"
- ]
- },
- "aerialway/bubble": {
- "key": "aerialway:bubble",
- "type": "check"
- },
- "aerialway/capacity": {
- "key": "aerialway:capacity",
- "type": "number",
- "minValue": 0
- },
- "aerialway/duration": {
- "key": "aerialway:duration",
- "type": "number",
- "minValue": 0
- },
- "aerialway/heating": {
- "key": "aerialway:heating",
- "type": "check"
- },
- "aerialway/occupancy": {
- "key": "aerialway:occupancy",
- "type": "number",
- "minValue": 0
- },
- "aerialway/summer/access": {
- "key": "aerialway:summer:access",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "entry",
- "exit",
- "both"
- ]
- },
- "aeroway": {
- "key": "aeroway",
- "type": "typeCombo"
- },
- "agrarian": {
- "key": "agrarian",
- "type": "semiCombo"
- },
- "air_conditioning": {
- "key": "air_conditioning",
- "type": "check"
- },
- "amenity": {
- "key": "amenity",
- "type": "typeCombo"
- },
- "animal_boarding": {
- "key": "animal_boarding",
- "type": "semiCombo"
- },
- "animal_breeding": {
- "key": "animal_breeding",
- "type": "semiCombo"
- },
- "animal_shelter": {
- "key": "animal_shelter",
- "type": "semiCombo"
- },
- "archaeological_site": {
- "key": "archaeological_site",
- "type": "combo"
- },
- "architect": {
- "key": "architect",
- "type": "text"
- },
- "area/highway": {
- "key": "area:highway",
- "type": "typeCombo"
- },
- "artist": {
- "key": "artist_name",
- "type": "text"
- },
- "artwork_type": {
- "key": "artwork_type",
- "type": "combo",
- "options": [
- "sculpture",
- "statue",
- "mural",
- "installation",
- "graffiti",
- "bust",
- "painting",
- "mosaic",
- "relief"
- ]
- },
- "ascent": {
- "key": "ascent",
- "minValue": 0,
- "type": "number"
- },
- "atm": {
- "key": "atm",
- "type": "check"
- },
- "attraction": {
- "key": "attraction",
- "type": "typeCombo"
- },
- "automated": {
- "key": "automated",
- "type": "check"
- },
- "baby_feeding": {
- "key": "baby_feeding",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "room",
- "yes",
- "no"
- ]
- },
- "baby_seat": {
- "key": "baby",
- "type": "check"
- },
- "backcountry": {
- "key": "backcountry",
- "type": "check"
- },
- "backrest": {
- "key": "backrest",
- "type": "check"
- },
- "bar": {
- "key": "bar",
- "type": "check"
- },
- "barrier_planter": {
- "key": "barrier",
- "type": "defaultCheck",
- "geometry": [
- "vertex"
+ "wikipedia": {
+ "key": "wikipedia",
+ "keys": [
+ "wikipedia"
],
- "options": [
- "undefined",
- "planter"
- ]
+ "type": "wikipedia",
+ "universal": true
},
- "barrier": {
- "key": "barrier",
+ "wikimedia_commons": {
+ "key": "wikimedia_commons",
+ "type": "identifier",
+ "urlFormat": "https://commons.wikimedia.org/wiki/{value}",
+ "pattern": "^(?:File|Category):.{1,}",
+ "universal": true
+ },
+ "wikidata": {
+ "key": "wikidata",
+ "keys": [
+ "wikidata",
+ "wikipedia"
+ ],
+ "type": "wikidata",
+ "universal": true
+ },
+ "width": {
+ "key": "width",
+ "type": "number",
+ "minValue": 0
+ },
+ "wholesale": {
+ "key": "wholesale",
"type": "typeCombo"
},
- "basin": {
- "key": "basin",
- "type": "combo",
- "options": [
- "detention",
- "evaporation",
- "infiltration",
- "retention"
- ]
- },
- "bath/open_air": {
- "key": "bath:open_air",
- "type": "check"
- },
- "bath/sand_bath": {
- "key": "bath:sand_bath",
- "type": "check"
- },
- "bath/type": {
- "key": "bath:type",
- "type": "combo"
- },
- "beauty": {
- "key": "beauty",
- "type": "semiCombo",
- "options": [
- "nails",
- "tanning",
- "cosmetics",
- "spa",
- "skin_care",
- "waxing",
- "hair_removal"
- ]
- },
- "bench": {
- "key": "bench",
- "type": "check"
- },
- "bicycle_parking": {
- "key": "bicycle_parking",
- "type": "combo",
- "options": [
- "stands",
- "wall_loops",
- "shed",
- "lockers",
- "building",
- "handlebar_holder"
- ]
- },
- "bike_ride": {
- "key": "bike_ride",
- "type": "check"
- },
- "bin": {
- "key": "bin",
- "type": "check"
- },
- "blind": {
- "key": "blind",
+ "wheelchair": {
+ "key": "wheelchair",
"type": "radio",
"options": [
"yes",
@@ -339,396 +58,3413 @@
"no"
]
},
- "blood_components": {
- "key": "blood:",
- "type": "multiCombo",
- "options": [
- "whole",
- "plasma",
- "platelets",
- "stemcells"
- ]
- },
- "board_type": {
- "key": "board_type",
+ "wetland": {
+ "key": "wetland",
"type": "combo",
"options": [
- "art",
- "astronomy",
- "geology",
- "history",
- "nature",
- "notice",
- "plants",
- "welcome_sign",
- "wildlife"
+ "marsh",
+ "reedbed",
+ "saltmarsh",
+ "tidalflat",
+ "wet_meadow",
+ "swamp",
+ "mangrove",
+ "bog",
+ "fen",
+ "string_bog"
]
},
- "bollard": {
- "key": "bollard",
+ "website": {
+ "key": "website",
+ "keys": [
+ "website",
+ "contact:website"
+ ],
+ "type": "url",
+ "universal": true
+ },
+ "waterway": {
+ "key": "waterway",
+ "type": "typeCombo"
+ },
+ "water_source": {
+ "key": "water_source",
"type": "combo",
"options": [
- "fixed",
- "flexible",
- "foldable",
- "removable",
- "rising"
+ "main",
+ "water_tank",
+ "pond",
+ "river",
+ "stream",
+ "groundwater"
]
},
- "booth": {
- "key": "booth",
- "type": "combo",
- "caseSensitive": true
- },
- "bottle": {
- "key": "bottle",
+ "water_point": {
+ "key": "water_point",
"type": "check"
},
- "boules": {
- "key": "boules",
- "type": "typeCombo"
- },
- "boundary": {
- "key": "boundary",
+ "water": {
+ "key": "water",
"type": "combo"
},
- "branch_brand": {
- "key": "branch",
- "type": "text"
+ "waste": {
+ "key": "waste",
+ "type": "semiCombo",
+ "options": [
+ "cigarettes",
+ "dog_excrement",
+ "organic",
+ "trash"
+ ]
},
- "brand": {
- "key": "brand",
- "type": "text"
- },
- "brewery": {
- "key": "brewery",
- "type": "semiCombo"
- },
- "bridge_combo": {
- "key": "bridge",
+ "wall": {
+ "key": "wall",
"type": "combo"
},
- "bridge": {
- "key": "bridge",
- "type": "typeCombo",
- "usage": "group"
- },
- "bridge/support": {
- "key": "bridge:support",
- "type": "typeCombo"
- },
- "building_area_yes": {
- "key": "building",
+ "voltage_electrified": {
+ "key": "voltage",
"type": "combo",
- "default": "yes",
- "geometry": [
- "area"
- ],
- "label": "{building}"
- },
- "building_area": {
- "key": "building",
- "type": "combo",
- "geometry": [
- "area"
- ],
- "label": "{building}"
- },
- "building": {
- "key": "building",
- "type": "combo"
- },
- "building/flats": {
- "key": "building:flats",
- "type": "number",
- "minValue": 0
- },
- "building/levels_building": {
- "key": "building:levels",
- "type": "number",
- "minValue": 0,
- "label": "{building/levels}",
- "placeholder": "{building/levels}",
+ "label": "{voltage}",
"prerequisiteTag": {
- "key": "building",
+ "key": "electrified",
"valueNot": "no"
}
},
- "building/levels": {
- "key": "building:levels",
- "type": "number",
- "minValue": 0
- },
- "building/levels/underground": {
- "key": "building:levels:underground",
- "type": "number",
- "minValue": 0
- },
- "building/material": {
- "key": "building:material",
+ "voltage": {
+ "key": "voltage",
"type": "combo"
},
- "building/part": {
- "key": "building:part",
+ "visibility": {
+ "key": "visibility",
"type": "combo",
- "default": "yes"
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "house",
+ "street",
+ "area"
+ ]
},
- "building/prefabricated": {
- "key": "building:prefabricated",
+ "video_calls": {
+ "key": "video",
"type": "check"
},
- "bunker_type": {
- "key": "bunker_type",
+ "via": {
+ "key": "via",
+ "type": "semiCombo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "vhf": {
+ "key": "vhf",
+ "type": "text"
+ },
+ "vending": {
+ "key": "vending",
+ "type": "semiCombo",
+ "options": [
+ "bicycle_tube",
+ "bread",
+ "cigarettes",
+ "coffee",
+ "condoms",
+ "drinks",
+ "e-cigarettes",
+ "eggs",
+ "electronics",
+ "elongated_coin",
+ "excrement_bags",
+ "feminine_hygiene",
+ "food",
+ "fuel",
+ "ice_cream",
+ "ice_cubes",
+ "milk",
+ "newspapers",
+ "parking_tickets",
+ "pizza",
+ "public_transport_tickets",
+ "stamps",
+ "sweets",
+ "water"
+ ]
+ },
+ "vehicles": {
+ "keys": [
+ "bus",
+ "trolleybus",
+ "tram",
+ "train",
+ "subway",
+ "light_rail",
+ "monorail",
+ "ferry"
+ ],
+ "type": "manyCombo",
+ "reference": {
+ "key": "public_transport"
+ },
+ "prerequisiteTag": {
+ "keyNot": "aerialway"
+ },
+ "options": [
+ "bus",
+ "trolleybus",
+ "tram",
+ "train",
+ "subway",
+ "light_rail",
+ "monorail",
+ "ferry"
+ ]
+ },
+ "valve": {
+ "key": "valve",
"type": "combo"
},
- "button_operated": {
- "key": "button_operated",
+ "utility_semi": {
+ "key": "utility",
+ "type": "semiCombo"
+ },
+ "utility": {
+ "key": "utility",
+ "type": "typeCombo",
+ "options": [
+ "gas",
+ "oil",
+ "power",
+ "sewerage",
+ "street_lighting",
+ "telecom",
+ "water"
+ ]
+ },
+ "usage_waterway": {
+ "key": "usage",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "transportation",
+ "transmission",
+ "irrigation",
+ "headrace",
+ "tailrace",
+ "spillway"
+ ]
+ },
+ "usage_rail": {
+ "key": "usage",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "main",
+ "branch",
+ "industrial",
+ "military",
+ "test",
+ "tourism"
+ ]
+ },
+ "two_sided": {
+ "key": "two_sided",
+ "type": "defaultCheck",
+ "geometry": [
+ "line"
+ ],
+ "options": [
+ "undefined",
+ "yes"
+ ]
+ },
+ "turning_circle": {
+ "key": "turning_circle",
+ "type": "combo"
+ },
+ "tunnel_combo": {
+ "key": "tunnel",
+ "type": "combo",
+ "options": [
+ "avalanche_protector",
+ "building_passage",
+ "culvert",
+ "flooded"
+ ]
+ },
+ "tunnel": {
+ "key": "tunnel",
+ "type": "typeCombo",
+ "usage": "group",
+ "stringsCrossReference": "{tunnel_combo}"
+ },
+ "trolley_wire": {
+ "key": "trolley_wire",
"type": "check"
},
- "cables": {
- "key": "cables",
- "type": "number",
- "minValue": 1
+ "trench": {
+ "key": "trench",
+ "type": "combo"
},
- "cai_scale-IT": {
- "key": "cai_scale",
+ "trees": {
+ "key": "trees",
+ "type": "semiCombo"
+ },
+ "transformer": {
+ "key": "transformer",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "main",
+ "distribution",
+ "generator",
+ "converter",
+ "phase_angle_regulator",
+ "auxiliary",
+ "yes"
+ ]
+ },
+ "trail_visibility": {
+ "key": "trail_visibility",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "excellent",
+ "good",
+ "intermediate",
+ "bad",
+ "horrible",
+ "no"
+ ]
+ },
+ "traffic_signals": {
+ "key": "traffic_signals",
+ "type": "combo",
+ "default": "signal"
+ },
+ "traffic_sign": {
+ "key": "traffic_sign",
+ "type": "typeCombo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "traffic_calming_road": {
+ "key": "traffic_calming",
+ "type": "typeCombo",
+ "stringsCrossReference": "{traffic_calming}",
+ "iconsCrossReference": "{traffic_calming}"
+ },
+ "traffic_calming": {
+ "key": "traffic_calming",
+ "type": "typeCombo",
+ "icons": {
+ "bump": "roentgen-bump",
+ "cushion": "roentgen-traffic_cushion",
+ "dip": "roentgen-dip",
+ "double_dip": "roentgen-double_dip",
+ "hump": "roentgen-hump",
+ "mini_bumps": "roentgen-mini_bumps",
+ "rumble_strip": "roentgen-rumble_strip",
+ "table": "roentgen-traffic_table"
+ },
+ "options": [
+ "bump",
+ "chicane",
+ "choker",
+ "choked_table",
+ "cushion",
+ "dip",
+ "double_dip",
+ "hump",
+ "island",
+ "mini_bumps",
+ "rumble_strip",
+ "table"
+ ]
+ },
+ "trade": {
+ "key": "trade",
+ "type": "typeCombo"
+ },
+ "tracktype": {
+ "key": "tracktype",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "grade1",
+ "grade2",
+ "grade3",
+ "grade4",
+ "grade5"
+ ]
+ },
+ "tourism": {
+ "key": "tourism",
+ "type": "typeCombo"
+ },
+ "tomb": {
+ "key": "tomb",
+ "type": "typeCombo",
+ "options": [
+ "columbarium",
+ "crypt",
+ "dolmen",
+ "hypogeum",
+ "mausoleum",
+ "pyramid",
+ "rock-cut",
+ "sarcophagus",
+ "table",
+ "tumulus",
+ "vault",
+ "war_grave"
+ ]
+ },
+ "toll": {
+ "key": "toll",
+ "type": "check"
+ },
+ "toilets": {
+ "key": "toilets",
+ "type": "check"
+ },
+ "to": {
+ "key": "to",
+ "type": "text"
+ },
+ "tidal": {
+ "key": "tidal",
+ "type": "check"
+ },
+ "tents": {
+ "key": "tents",
+ "type": "check"
+ },
+ "telecom": {
+ "key": "telecom",
+ "type": "combo",
+ "options": [
+ "connection_point",
+ "data_center",
+ "distribution_point",
+ "exchange",
+ "service_device"
+ ]
+ },
+ "tee": {
+ "key": "tee",
+ "type": "semiCombo",
+ "reference": {
+ "key": "golf",
+ "value": "tee"
+ }
+ },
+ "taxon": {
+ "key": "taxon",
"type": "combo",
"snake_case": false,
+ "caseSensitive": true
+ },
+ "taxi_vehicle": {
+ "key": "taxi_vehicle",
+ "type": "semiCombo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "motorcar",
+ "motorcycle",
+ "auto_rickshaw",
+ "cycle_rickshaw"
+ ]
+ },
+ "target": {
+ "key": "target",
+ "type": "combo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "takeaway": {
+ "key": "takeaway",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "yes",
+ "no",
+ "only"
+ ]
+ },
+ "tactile_paving": {
+ "key": "tactile_paving",
+ "type": "check"
+ },
+ "switch": {
+ "key": "switch",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "mechanical",
+ "circuit_breaker",
+ "disconnector",
+ "earthing"
+ ]
+ },
+ "swimming_pool": {
+ "key": "swimming_pool",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": true,
+ "options": [
+ "swimming",
+ "plunge",
+ "wading",
+ "spa",
+ "wave_pool",
+ "lazy_river",
+ "personal",
+ "kids"
+ ]
+ },
+ "surveillance": {
+ "key": "surveillance",
+ "type": "combo"
+ },
+ "surface": {
+ "key": "surface",
+ "type": "combo",
+ "options": [
+ "artificial_turf",
+ "asphalt",
+ "clay",
+ "compacted",
+ "concrete",
+ "concrete:lanes",
+ "concrete:plates",
+ "dirt",
+ "fine_gravel",
+ "grass",
+ "grass_paver",
+ "gravel",
+ "ground",
+ "metal",
+ "mud",
+ "paved",
+ "paving_stones",
+ "pebblestone",
+ "salt",
+ "sand",
+ "sett",
+ "tartan",
+ "unhewn_cobblestone",
+ "unpaved",
+ "wood",
+ "woodchips"
+ ]
+ },
+ "support": {
+ "key": "support",
+ "type": "combo"
+ },
+ "supervised": {
+ "key": "supervised",
+ "type": "check"
+ },
+ "substation_pipeline": {
+ "key": "substation",
+ "type": "typeCombo",
+ "autoSuggestions": false,
+ "options": [
+ "transmission",
+ "distribution",
+ "minor_distribution",
+ "industrial",
+ "compression",
+ "measurement",
+ "valve",
+ "valve_group",
+ "inspection_gauge",
+ "field_gathering"
+ ]
+ },
+ "substation": {
+ "key": "substation",
+ "type": "typeCombo",
+ "autoSuggestions": false,
+ "options": [
+ "transmission",
+ "distribution",
+ "minor_distribution",
+ "industrial",
+ "generation",
+ "transition",
+ "traction",
+ "converter",
+ "compensation"
+ ]
+ },
+ "substance": {
+ "key": "substance",
+ "type": "combo",
+ "options": [
+ "fuel",
+ "gas",
+ "hot_water",
+ "oil",
+ "rainwater",
+ "sewage",
+ "water"
+ ]
+ },
+ "subject": {
+ "key": "subject",
+ "type": "text"
+ },
+ "studio": {
+ "key": "studio",
+ "type": "combo"
+ },
+ "structure_waterway": {
+ "type": "structureRadio",
+ "keys": [
+ "tunnel"
+ ],
+ "options": [
+ "tunnel"
+ ]
+ },
+ "structure_power": {
+ "type": "combo",
+ "key": "structure",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "lattice",
+ "solid",
+ "tubular"
+ ]
+ },
+ "structure_canal": {
+ "type": "structureRadio",
+ "keys": [
+ "bridge",
+ "tunnel"
+ ],
+ "options": [
+ "bridge",
+ "tunnel"
+ ]
+ },
+ "structure": {
+ "type": "structureRadio",
+ "keys": [
+ "bridge",
+ "tunnel",
+ "embankment",
+ "cutting",
+ "ford"
+ ],
+ "options": [
+ "bridge",
+ "tunnel",
+ "embankment",
+ "cutting",
+ "ford"
+ ]
+ },
+ "stroller": {
+ "key": "stroller",
+ "type": "radio",
+ "options": [
+ "yes",
+ "limited",
+ "no"
+ ]
+ },
+ "street_cabinet": {
+ "key": "street_cabinet",
+ "type": "combo"
+ },
+ "stop": {
+ "key": "stop",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "all",
+ "minor"
+ ]
+ },
+ "stile": {
+ "key": "stile",
+ "type": "combo"
+ },
+ "step_count": {
+ "key": "step_count",
+ "type": "number",
+ "minValue": 0
+ },
+ "static_caravans": {
+ "key": "static_caravans",
+ "type": "check"
+ },
+ "start_date": {
+ "key": "start_date",
+ "type": "date",
+ "universal": true
+ },
+ "stars": {
+ "key": "stars",
+ "type": "combo"
+ },
+ "sport": {
+ "key": "sport",
+ "type": "semiCombo",
+ "options": [
+ "10pin",
+ "9pin",
+ "american_football",
+ "athletics",
+ "badminton",
+ "baseball",
+ "basketball",
+ "beachvolleyball",
+ "billiards",
+ "bmx",
+ "boules",
+ "bowls",
+ "canoe",
+ "chess",
+ "climbing",
+ "cricket",
+ "curling",
+ "cycling",
+ "darts",
+ "disc_golf",
+ "dog_racing",
+ "equestrian",
+ "fitness",
+ "free_flying",
+ "futsal",
+ "gaelic_games",
+ "golf",
+ "gymnastics",
+ "handball",
+ "horse_racing",
+ "ice_hockey",
+ "ice_skating",
+ "ice_stock",
+ "karting",
+ "motocross",
+ "motor",
+ "multi",
+ "netball",
+ "orienteering",
+ "padel",
+ "pelota",
+ "rugby_union",
+ "running",
+ "scuba_diving",
+ "shooting",
+ "skateboard",
+ "skiing",
+ "ski_jumping",
+ "soccer",
+ "softball",
+ "speedway",
+ "swimming",
+ "table_tennis",
+ "tennis",
+ "volleyball",
+ "yoga"
+ ]
+ },
+ "species": {
+ "key": "species",
+ "type": "combo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "spacing": {
+ "key": "spacing",
+ "type": "number",
+ "snake_case": false,
+ "prerequisiteTag": {
+ "key": "cycle_barrier",
+ "valueNot": "single"
+ }
+ },
+ "source": {
+ "key": "source",
+ "type": "semiCombo",
+ "usage": "changeset",
+ "snake_case": false,
"caseSensitive": true,
"autoSuggestions": false,
+ "options": [
+ "survey",
+ "local knowledge",
+ "aerial imagery",
+ "gps",
+ "streetlevel imagery",
+ "osm notes"
+ ]
+ },
+ "social_facility_for": {
+ "key": "social_facility:for",
+ "type": "combo",
+ "options": [
+ "abused",
+ "child",
+ "dementia",
+ "disabled",
+ "diseased",
+ "displaced",
+ "drug_addicted",
+ "homeless",
+ "juvenile",
+ "mental_health",
+ "migrant",
+ "orphan",
+ "refugee",
+ "senior",
+ "terminally_ill",
+ "underprivileged",
+ "unemployed",
+ "veteran",
+ "victim",
+ "woman"
+ ]
+ },
+ "social_facility": {
+ "key": "social_facility",
+ "type": "combo",
+ "options": [
+ "ambulatory_care",
+ "assisted_living",
+ "day_care",
+ "food_bank",
+ "group_home",
+ "nursing_home",
+ "outreach",
+ "shelter",
+ "workshop"
+ ]
+ },
+ "sms": {
+ "key": "sms",
+ "type": "check"
+ },
+ "smoothness": {
+ "key": "smoothness",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "excellent",
+ "good",
+ "intermediate",
+ "bad",
+ "very_bad",
+ "horrible",
+ "very_horrible",
+ "impassable"
+ ]
+ },
+ "smoking": {
+ "key": "smoking",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "no",
+ "separated",
+ "isolated",
+ "outside",
+ "yes",
+ "dedicated"
+ ]
+ },
+ "site": {
+ "key": "site",
+ "type": "combo"
+ },
+ "side": {
+ "key": "side",
+ "type": "combo",
+ "autoSuggestions": false,
+ "options": [
+ "left",
+ "right"
+ ]
+ },
+ "shower": {
+ "key": "shower",
+ "type": "check"
+ },
+ "short_name": {
+ "key": "short_name",
+ "type": "localized",
+ "universal": true,
+ "prerequisiteTag": {
+ "key": "name"
+ }
+ },
+ "shop": {
+ "key": "shop",
+ "type": "typeCombo"
+ },
+ "shoes": {
+ "key": "shoes",
+ "type": "semiCombo"
+ },
+ "shelter_type": {
+ "key": "shelter_type",
+ "type": "combo",
+ "icons": {
+ "public_transport": "temaki-transit_shelter",
+ "picnic_shelter": "temaki-picnic_shelter",
+ "lean_to": "temaki-sleep_shelter",
+ "field_shelter": "temaki-horse_shelter"
+ }
+ },
+ "shelter": {
+ "key": "shelter",
+ "type": "check"
+ },
+ "service_times": {
+ "key": "service_times",
+ "type": "text"
+ },
+ "service_rail": {
+ "key": "service",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "spur",
+ "yard",
+ "siding",
+ "crossover"
+ ]
+ },
+ "service": {
+ "key": "service",
+ "type": "combo",
+ "autoSuggestions": false,
+ "options": [
+ "driveway",
+ "parking_aisle",
+ "alley",
+ "drive-through",
+ "emergency_access"
+ ]
+ },
+ "self_service": {
+ "key": "self_service",
+ "type": "check"
+ },
+ "self_checkout": {
+ "key": "self_checkout",
+ "type": "radio",
+ "options": [
+ "yes",
+ "only",
+ "no"
+ ]
+ },
+ "segregated": {
+ "key": "segregated",
+ "type": "check"
+ },
+ "second_hand": {
+ "key": "second_hand",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "yes",
+ "no",
+ "only"
+ ]
+ },
+ "seats": {
+ "key": "seats",
+ "type": "number",
+ "minValue": 0
+ },
+ "seasonal": {
+ "key": "seasonal",
+ "type": "check"
+ },
+ "scuba_diving": {
+ "key": "scuba_diving:",
+ "type": "multiCombo",
+ "options": [
+ "air_filling",
+ "courses",
+ "filling",
+ "hobby",
+ "nitrox_filling",
+ "oxygen_filling",
+ "rental",
+ "repair",
+ "trimix_filling"
+ ],
+ "autoSuggestions": false
+ },
+ "screen": {
+ "key": "screen",
+ "type": "number",
+ "minValue": 0
+ },
+ "sanitary_dump_station": {
+ "key": "sanitary_dump_station",
+ "type": "check"
+ },
+ "sample_collection": {
+ "key": "sample_collection",
+ "type": "semiCombo",
+ "reference": {
+ "key": "healthcare",
+ "value": "sample_collection"
+ }
+ },
+ "salt": {
+ "key": "salt",
+ "type": "check"
+ },
+ "sac_scale": {
+ "key": "sac_scale",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "strolling",
+ "hiking",
+ "mountain_hiking",
+ "demanding_mountain_hiking",
+ "alpine_hiking",
+ "demanding_alpine_hiking",
+ "difficult_alpine_hiking"
+ ]
+ },
+ "rwn_ref": {
+ "key": "rwn_ref",
+ "type": "text"
+ },
+ "ruins": {
+ "key": "ruins",
+ "type": "combo"
+ },
+ "royal_cypher-GB": {
+ "key": "royal_cypher",
+ "type": "typeCombo",
+ "autoSuggestions": false,
"customValues": false,
"locationSet": {
"include": [
- "IT"
+ "gb"
]
},
"options": [
- "T",
- "E",
- "EE",
- "EEA",
- "EAI"
+ "VR",
+ "EVIIR",
+ "EVIIIR",
+ "GR",
+ "GVIR",
+ "EIIR",
+ "CIIIR",
+ "scottish_crown",
+ "no"
]
},
- "camera/direction": {
- "key": "camera:direction",
- "type": "number",
- "increment": 5
- },
- "camera/mount": {
- "key": "camera:mount",
+ "route_master": {
+ "key": "route_master",
"type": "combo"
},
- "camera/type": {
- "key": "camera:type",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "fixed",
- "panning",
- "dome"
- ]
+ "route": {
+ "key": "route",
+ "type": "combo"
},
- "capacity_parking": {
- "key": "capacity",
- "type": "number",
- "minValue": 0
- },
- "capacity_volume": {
- "key": "capacity",
- "type": "number",
- "minValue": 0
- },
- "capacity": {
- "key": "capacity",
- "type": "number",
- "minValue": 0
- },
- "capacity/caravans": {
- "key": "capacity:caravans",
- "type": "number",
- "minValue": 0
- },
- "capacity/disabled_parking": {
- "key": "capacity:disabled",
- "type": "number",
- "minValue": 0
- },
- "capacity/persons": {
- "key": "capacity:persons",
- "type": "number",
- "minValue": 0
- },
- "capacity/tents": {
- "key": "capacity:tents",
- "type": "number",
- "minValue": 0,
- "prerequisiteTag": {
- "key": "tents",
- "valueNot": "no"
- }
- },
- "cash_in": {
- "key": "cash_in",
+ "roundtrip": {
+ "key": "roundtrip",
"type": "check"
},
- "castle_type": {
- "key": "castle_type",
- "type": "combo",
- "options": [
- "defensive",
- "palace",
- "stately",
- "manor",
- "fortress",
- "castrum",
- "shiro",
- "kremlin",
- "hillfort"
- ]
+ "rooms": {
+ "key": "rooms",
+ "type": "number",
+ "minValue": 0
},
- "changing_table": {
- "key": "changing_table",
- "type": "check"
- },
- "charge_fee": {
- "key": "charge",
- "type": "text",
- "prerequisiteTag": {
- "key": "fee",
- "valueNot": "no"
- }
- },
- "charge_toll": {
- "key": "charge",
- "type": "text",
- "prerequisiteTag": {
- "key": "toll",
- "valueNot": "no"
- }
- },
- "check_date": {
- "key": "check_date",
- "type": "text"
- },
- "circumference": {
- "key": "circumference",
- "type": "combo",
- "snake_case": false
- },
- "clothes": {
- "key": "clothes",
- "type": "semiCombo"
- },
- "club": {
- "key": "club",
- "type": "typeCombo"
- },
- "collection_times": {
- "key": "collection_times",
- "type": "text"
- },
- "collector": {
- "key": "collector",
- "type": "semiCombo"
- },
- "colour": {
- "key": "colour",
- "type": "colour"
- },
- "comment": {
- "key": "comment",
- "type": "textarea",
- "usage": "changeset"
- },
- "communication_multi": {
- "key": "communication:",
- "type": "multiCombo"
- },
- "connectivity": {
- "key": "connectivity",
- "type": "text"
- },
- "construction": {
- "key": "construction",
+ "room": {
+ "key": "room",
"type": "combo"
},
- "consulate": {
- "key": "consulate",
- "type": "combo"
- },
- "consulting": {
- "key": "consulting",
- "type": "semiCombo"
- },
- "contact/webcam": {
- "key": "contact:webcam",
- "type": "url"
- },
- "content": {
- "key": "content",
- "type": "combo",
- "options": [
- "silage",
- "water",
- "oil",
- "fuel",
- "slurry",
- "gas",
- "manure",
- "sewage"
+ "restrictions": {
+ "type": "restrictions",
+ "geometry": [
+ "vertex"
],
- "autoSuggestions": false
+ "usage": "manual",
+ "reference": {
+ "rtype": "restriction"
+ }
},
- "conveying_escalator": {
- "key": "conveying",
- "type": "check"
+ "restriction": {
+ "key": "restriction",
+ "type": "combo"
},
- "conveying": {
- "key": "conveying",
- "type": "typeCombo",
+ "resource": {
+ "key": "resource",
+ "type": "semiCombo",
+ "options": [
+ "aggregate",
+ "clay",
+ "coal",
+ "gold",
+ "gravel",
+ "iron_ore",
+ "limestone",
+ "peat",
+ "sand"
+ ]
+ },
+ "resort": {
+ "key": "resort",
+ "type": "combo"
+ },
+ "residential": {
+ "key": "residential",
+ "type": "combo"
+ },
+ "reservation": {
+ "key": "reservation",
+ "type": "combo",
"autoSuggestions": false,
"customValues": false,
"options": [
- "forward",
- "backward",
- "reversible"
+ "yes",
+ "no",
+ "required",
+ "recommended"
]
},
- "country_flag": {
- "key": "country",
+ "religion": {
+ "key": "religion",
"type": "combo",
+ "options": [
+ "bahai",
+ "benzhu",
+ "buddhist",
+ "caodaism",
+ "chinese_folk",
+ "christian",
+ "confucian",
+ "hindu",
+ "jain",
+ "jewish",
+ "multifaith",
+ "muslim",
+ "none",
+ "pagan",
+ "shinto",
+ "sikh",
+ "spiritualist",
+ "taoist",
+ "tenrikyo",
+ "unitarian_universalist",
+ "vietnamese_folk",
+ "voodoo"
+ ]
+ },
+ "relation": {
+ "key": "type",
+ "type": "combo"
+ },
+ "reg_name": {
+ "key": "reg_name",
+ "type": "localized",
+ "universal": true,
"prerequisiteTag": {
- "key": "flag:type",
- "value": "national"
+ "key": "name"
}
},
- "country": {
- "key": "country",
+ "ref_taxiway": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_stop_position": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_sector": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_runway": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_route": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_room_number": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_road_number": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_rail": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_platform": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_highway_junction": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_golf_hole": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_disc_golf_hole": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref_bridge_number": {
+ "key": "ref",
+ "type": "text",
+ "label": "{bridge/ref}"
+ },
+ "ref_aeroway_gate": {
+ "key": "ref",
+ "type": "text"
+ },
+ "ref": {
+ "key": "ref",
+ "type": "text"
+ },
+ "recycling_type": {
+ "key": "recycling_type",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "container",
+ "centre"
+ ]
+ },
+ "recycling_accepts": {
+ "key": "recycling:",
+ "type": "multiCombo",
+ "caseSensitive": true,
+ "options": [
+ "glass_bottles",
+ "glass",
+ "paper",
+ "plastic",
+ "clothes",
+ "cans",
+ "batteries",
+ "shoes",
+ "green_waste",
+ "plastic_packaging",
+ "plastic_bottles",
+ "cardboard",
+ "scrap_metal",
+ "cooking_oil",
+ "engine_oil"
+ ]
+ },
+ "real_fire-GB-IE": {
+ "locationSet": {
+ "include": [
+ "gb",
+ "ie"
+ ]
+ },
+ "key": "real_fire",
+ "type": "check"
+ },
+ "rcn_ref": {
+ "key": "rcn_ref",
+ "type": "text"
+ },
+ "rating": {
+ "key": "rating",
"type": "combo",
"snake_case": false,
"caseSensitive": true
},
- "couplings": {
- "key": "couplings",
+ "ramp": {
+ "key": "ramp",
+ "type": "combo",
+ "customValues": false,
+ "options": [
+ "yes",
+ "no",
+ "separate"
+ ]
+ },
+ "railway": {
+ "key": "railway",
+ "type": "typeCombo"
+ },
+ "pump": {
+ "key": "pump",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "yes",
+ "manual",
+ "powered",
+ "no"
+ ]
+ },
+ "product": {
+ "key": "product",
+ "type": "semiCombo"
+ },
+ "produce": {
+ "key": "produce",
+ "type": "semiCombo"
+ },
+ "preschool": {
+ "key": "preschool",
+ "type": "check"
+ },
+ "power_supply": {
+ "key": "power_supply",
+ "type": "check"
+ },
+ "power": {
+ "key": "power",
+ "type": "typeCombo"
+ },
+ "post": {
+ "type": "address",
+ "key": "post",
+ "keys": [
+ "post:block_number",
+ "post:city",
+ "post:conscriptionnumber",
+ "post:county",
+ "post:country",
+ "post:district",
+ "post:floor",
+ "post:hamlet",
+ "post:housename",
+ "post:housenumber",
+ "post:neighbourhood",
+ "post:place",
+ "post:postcode",
+ "post:province",
+ "post:quarter",
+ "post:state",
+ "post:street",
+ "post:subdistrict",
+ "post:suburb",
+ "post:unit"
+ ]
+ },
+ "portable": {
+ "key": "portable",
+ "type": "check"
+ },
+ "population": {
+ "key": "population",
+ "type": "number",
+ "minValue": 0
+ },
+ "polling_station": {
+ "key": "polling_station",
+ "type": "check"
+ },
+ "plots": {
+ "key": "plots",
+ "type": "number",
+ "minValue": 0
+ },
+ "playground": {
+ "key": "playground",
+ "type": "combo",
+ "options": [
+ "activitypanel",
+ "aerialrotator",
+ "archimedes_screw",
+ "balance",
+ "balancebeam",
+ "ball_pool",
+ "bannister_bars",
+ "basketrotator",
+ "basketswing",
+ "belt_bridge",
+ "blackboard",
+ "bridge",
+ "cushion",
+ "chute",
+ "climbing",
+ "climbing_pole",
+ "climbing_slope",
+ "climbingframe",
+ "climbingwall",
+ "dome",
+ "excavator",
+ "exercise",
+ "funnel_ball",
+ "hammock",
+ "hamster_wheel",
+ "hopscotch",
+ "horizontal_bar",
+ "ladder",
+ "map",
+ "maze",
+ "marble_run",
+ "monkey_bars",
+ "mound",
+ "musical_instrument",
+ "parallel_bars",
+ "platform",
+ "playhouse",
+ "pump",
+ "ride_on",
+ "rope_swing",
+ "rope_traverse",
+ "rotator",
+ "roundabout",
+ "sand",
+ "sand_pulley",
+ "sand_seesaw",
+ "sand_wheel",
+ "sandpit",
+ "seat",
+ "seesaw",
+ "sieve",
+ "sledding",
+ "slide",
+ "speaking_tube",
+ "spinner",
+ "spinner_bowl",
+ "spinning_circle",
+ "spinning_disc",
+ "spring_board",
+ "springy",
+ "splash_pad",
+ "stepping_post",
+ "stepping_stone",
+ "steps",
+ "structure",
+ "swing",
+ "baby_swing",
+ "tire_swing",
+ "table",
+ "teenshelter",
+ "track",
+ "trampoline",
+ "tunnel_tube",
+ "water",
+ "water_barrier",
+ "water_basin",
+ "water_cannon",
+ "water_channel",
+ "water_seesaw",
+ "water_sprayer",
+ "water_stream",
+ "water_wheel",
+ "wobble_bridge",
+ "youth_bench",
+ "zipwire"
+ ]
+ },
+ "plant": {
+ "key": "plant",
+ "type": "combo"
+ },
+ "place": {
+ "key": "place",
+ "type": "typeCombo"
+ },
+ "pipeline": {
+ "key": "pipeline",
+ "type": "typeCombo"
+ },
+ "picnic_table": {
+ "key": "picnic_table",
+ "type": "check"
+ },
+ "phone": {
+ "key": "phone",
+ "keys": [
+ "phone",
+ "contact:phone"
+ ],
+ "type": "tel"
+ },
+ "phases": {
+ "key": "phases",
"type": "number",
"minValue": 1
},
- "covered_no": {
- "key": "covered",
+ "payment_multi_fee": {
+ "key": "payment:",
+ "type": "multiCombo",
+ "label": "{payment_multi}",
+ "prerequisiteTag": {
+ "key": "fee",
+ "valueNot": "no"
+ },
+ "stringsCrossReference": "{payment_multi}"
+ },
+ "payment_multi": {
+ "key": "payment:",
+ "type": "multiCombo",
+ "reference": {
+ "key": "payment:*"
+ },
+ "options": [
+ "account_cards",
+ "app",
+ "cards",
+ "cash",
+ "cheque",
+ "coins",
+ "contactless",
+ "credit_cards",
+ "cryptocurrencies",
+ "debit_cards",
+ "electronic_purses",
+ "notes",
+ "prepaid_ticket",
+ "telephone_cards",
+ "alipay",
+ "american_express",
+ "apple_pay",
+ "bancomat",
+ "blik",
+ "clipper",
+ "diners_club",
+ "discover_card",
+ "dkv",
+ "ep_easycard",
+ "ep_geldkarte",
+ "ep_ipass",
+ "girocard",
+ "google_pay",
+ "jcb",
+ "maestro",
+ "mastercard",
+ "mastercard_contactless",
+ "paypal",
+ "unionpay",
+ "uta",
+ "v_pay",
+ "visa",
+ "visa_debit",
+ "visa_electron",
+ "wechat"
+ ]
+ },
+ "parking_space": {
+ "key": "parking_space",
+ "type": "combo"
+ },
+ "parking_entrance": {
+ "key": "parking",
+ "type": "combo",
+ "stringsCrossReference": "{parking}",
+ "options": [
+ "underground",
+ "multi-storey",
+ "surface"
+ ],
+ "autoSuggestions": false,
+ "customValues": true
+ },
+ "parking": {
+ "key": "parking",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "surface",
+ "street_side",
+ "lane",
+ "underground",
+ "multi-storey",
+ "rooftop",
+ "carports",
+ "garage_boxes",
+ "sheds",
+ "layby",
+ "on_kerb",
+ "half_on_kerb",
+ "shoulder"
+ ]
+ },
+ "park_ride": {
+ "key": "park_ride",
+ "type": "check"
+ },
+ "parcel_pickup": {
+ "key": "parcel_pickup",
"type": "check",
- "label": "{covered}",
"options": [
"undefined",
"yes",
"no"
]
},
- "covered": {
- "key": "covered",
+ "parcel_dropoff": {
+ "key": "parcel_mail_in",
"type": "check"
},
+ "par": {
+ "key": "par",
+ "type": "number",
+ "minValue": 1
+ },
+ "panoramax": {
+ "key": "panoramax",
+ "type": "identifier",
+ "urlFormat": "https://api.panoramax.xyz/#focus=pic&pic={value}",
+ "pattern": "^[a-zA-Z0-9-]{36,}$",
+ "universal": true
+ },
+ "overlap": {
+ "key": "overlap",
+ "type": "number",
+ "snake_case": false,
+ "prerequisiteTag": {
+ "key": "cycle_barrier",
+ "valueNot": "single"
+ }
+ },
+ "outdoor_seating": {
+ "key": "outdoor_seating",
+ "type": "check"
+ },
+ "organic": {
+ "key": "organic",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "no",
+ "yes",
+ "only"
+ ]
+ },
+ "operator": {
+ "key": "operator",
+ "type": "text"
+ },
+ "opening_hours": {
+ "key": "opening_hours",
+ "type": "combo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "opening_date": {
+ "key": "opening_date",
+ "type": "date"
+ },
+ "opening": {
+ "key": "opening",
+ "type": "number",
+ "snake_case": false,
+ "prerequisiteTag": {
+ "key": "cycle_barrier",
+ "valueNot": "single"
+ }
+ },
+ "openfire": {
+ "key": "openfire",
+ "type": "check"
+ },
+ "oneway_yes": {
+ "key": "oneway",
+ "type": "onewayCheck",
+ "label": "{oneway}",
+ "options": [
+ "undefined",
+ "yes",
+ "no",
+ "reversible",
+ "alternating"
+ ]
+ },
+ "oneway": {
+ "key": "oneway",
+ "type": "onewayCheck",
+ "options": [
+ "undefined",
+ "yes",
+ "no",
+ "reversible",
+ "alternating"
+ ]
+ },
+ "official_name": {
+ "key": "official_name",
+ "type": "localized",
+ "universal": true,
+ "prerequisiteTag": {
+ "key": "name"
+ }
+ },
+ "office": {
+ "key": "office",
+ "type": "typeCombo",
+ "options": [
+ "accountant",
+ "adoption_agency",
+ "advertising_agency",
+ "architect",
+ "association",
+ "charity",
+ "company",
+ "construction_company",
+ "consulting",
+ "courier",
+ "coworking",
+ "diplomatic",
+ "educational_institution",
+ "employment_agency",
+ "energy_supplier",
+ "engineer",
+ "estate_agent",
+ "financial",
+ "financial_advisor",
+ "forestry",
+ "foundation",
+ "government",
+ "graphic_design",
+ "guide",
+ "insurance",
+ "it",
+ "lawyer",
+ "logistics",
+ "moving_company",
+ "newspaper",
+ "ngo",
+ "notary",
+ "physician",
+ "political_party",
+ "private_investigator",
+ "property_management",
+ "quango",
+ "religion",
+ "research",
+ "security",
+ "surveyor",
+ "tax_advisor",
+ "telecommunication",
+ "therapist",
+ "travel_agent",
+ "union",
+ "water_utility"
+ ]
+ },
+ "nudism": {
+ "key": "nudism",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "customary",
+ "designated",
+ "no",
+ "obligatory",
+ "permissive",
+ "yes"
+ ]
+ },
+ "note": {
+ "key": "note",
+ "type": "textarea",
+ "universal": true
+ },
+ "network_road": {
+ "key": "network",
+ "type": "networkCombo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "network_horse": {
+ "key": "network",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "lhn",
+ "rhn",
+ "nhn",
+ "ihn"
+ ]
+ },
+ "network_foot": {
+ "key": "network",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "lwn",
+ "rwn",
+ "nwn",
+ "iwn"
+ ]
+ },
+ "network_bicycle": {
+ "key": "network",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "lcn",
+ "rcn",
+ "ncn",
+ "icn"
+ ]
+ },
+ "network": {
+ "key": "network",
+ "type": "text"
+ },
+ "natural": {
+ "key": "natural",
+ "type": "typeCombo"
+ },
+ "nat_name": {
+ "key": "nat_name",
+ "type": "localized",
+ "universal": true,
+ "prerequisiteTag": {
+ "key": "name"
+ }
+ },
+ "name": {
+ "key": "name",
+ "type": "localized",
+ "universal": true
+ },
+ "museum": {
+ "key": "museum",
+ "type": "combo"
+ },
+ "mooring": {
+ "key": "mooring",
+ "type": "combo",
+ "options": [
+ "yes",
+ "no",
+ "private",
+ "commercial",
+ "guest"
+ ]
+ },
+ "monitoring_multi": {
+ "key": "monitoring:",
+ "type": "multiCombo"
+ },
+ "model": {
+ "key": "model",
+ "type": "combo",
+ "caseSensitive": true
+ },
+ "mobile": {
+ "key": "mobile",
+ "keys": [
+ "mobile",
+ "contact:mobile"
+ ],
+ "type": "tel"
+ },
+ "minspeed": {
+ "key": "minspeed",
+ "type": "roadspeed"
+ },
+ "min_height": {
+ "key": "min_height",
+ "minValue": 0,
+ "type": "number",
+ "prerequisiteTag": {
+ "key": "height"
+ }
+ },
+ "min_age": {
+ "key": "min_age",
+ "type": "number",
+ "minValue": 0
+ },
+ "mimics": {
+ "key": "mimics",
+ "type": "combo"
+ },
+ "military_service": {
+ "key": "military_service",
+ "type": "combo",
+ "options": [
+ "air_force",
+ "army",
+ "coast_guard",
+ "marines",
+ "navy"
+ ]
+ },
+ "microbrewery": {
+ "key": "microbrewery",
+ "type": "check"
+ },
+ "message": {
+ "key": "message",
+ "type": "combo"
+ },
+ "memorial": {
+ "key": "memorial",
+ "type": "combo",
+ "options": [
+ "blue_plaque",
+ "bust",
+ "cross",
+ "ghost_bike",
+ "obelisk",
+ "plaque",
+ "sculpture",
+ "statue",
+ "stele",
+ "stolperstein",
+ "stone",
+ "war_memorial"
+ ]
+ },
+ "maxwidth": {
+ "key": "maxwidth",
+ "type": "roadheight",
+ "snake_case": false
+ },
+ "maxweight_bridge": {
+ "key": "maxweight",
+ "type": "combo",
+ "label": "{maxweight}",
+ "snake_case": false,
+ "prerequisiteTag": {
+ "key": "bridge",
+ "valueNot": "no"
+ }
+ },
+ "maxweight": {
+ "key": "maxweight",
+ "type": "combo",
+ "snake_case": false
+ },
+ "maxstay": {
+ "key": "maxstay",
+ "type": "combo",
+ "options": [
+ "15 minutes",
+ "30 minutes",
+ "45 minutes",
+ "1 hour",
+ "1.5 hours",
+ "2 hours",
+ "2.5 hours",
+ "3 hours",
+ "4 hours",
+ "1 day",
+ "2 days"
+ ],
+ "autoSuggestions": false,
+ "snake_case": false
+ },
+ "maxspeed": {
+ "key": "maxspeed",
+ "type": "roadspeed"
+ },
+ "maxlength": {
+ "key": "maxlength",
+ "type": "roadheight",
+ "snake_case": false
+ },
+ "maxheight": {
+ "key": "maxheight",
+ "type": "roadheight",
+ "snake_case": false
+ },
+ "maxaxleload_bridge": {
+ "key": "maxaxleload",
+ "type": "combo",
+ "snake_case": false,
+ "prerequisiteTag": {
+ "key": "bridge",
+ "valueNot": "no"
+ }
+ },
+ "max_age": {
+ "key": "max_age",
+ "type": "number",
+ "minValue": 0
+ },
+ "mattress": {
+ "key": "mattress",
+ "type": "check"
+ },
+ "material": {
+ "key": "material",
+ "type": "combo",
+ "options": [
+ "adobe",
+ "aluminium",
+ "brass",
+ "brick",
+ "bronze",
+ "concrete",
+ "dry_stone",
+ "glass",
+ "granite",
+ "iron",
+ "limestone",
+ "marble",
+ "metal",
+ "plastic",
+ "reinforced_concrete",
+ "rock",
+ "sand",
+ "sandstone",
+ "soil",
+ "steel",
+ "stone",
+ "wood"
+ ]
+ },
+ "marker": {
+ "key": "marker",
+ "type": "typeCombo",
+ "options": [
+ "aerial",
+ "ground",
+ "pedestal",
+ "plate",
+ "post",
+ "stone"
+ ]
+ },
+ "mapillary": {
+ "key": "mapillary",
+ "type": "identifier",
+ "urlFormat": "https://mapillary.com/app/?focus=photo&pKey={value}",
+ "pattern": "^[a-zA-Z0-9-_]{1,}$",
+ "universal": true
+ },
+ "map_type": {
+ "key": "map_type",
+ "type": "typeCombo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "topo",
+ "street",
+ "scheme",
+ "toposcope"
+ ]
+ },
+ "map_size": {
+ "key": "map_size",
+ "type": "typeCombo"
+ },
+ "manufacturer": {
+ "key": "manufacturer",
+ "type": "combo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "manhole": {
+ "key": "manhole",
+ "type": "typeCombo"
+ },
+ "man_made": {
+ "key": "man_made",
+ "type": "typeCombo"
+ },
+ "locked": {
+ "key": "locked",
+ "type": "check"
+ },
+ "lockable": {
+ "key": "lockable",
+ "type": "check"
+ },
+ "lock": {
+ "key": "lock",
+ "type": "check"
+ },
+ "location_pool": {
+ "key": "location",
+ "type": "combo",
+ "label": "{location}",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "outdoor",
+ "indoor",
+ "roof"
+ ]
+ },
+ "location": {
+ "key": "location",
+ "type": "combo"
+ },
+ "loc_name": {
+ "key": "loc_name",
+ "type": "localized",
+ "universal": true,
+ "prerequisiteTag": {
+ "key": "name"
+ }
+ },
+ "lit": {
+ "key": "lit",
+ "type": "check"
+ },
+ "line_management": {
+ "key": "line_management",
+ "type": "combo"
+ },
+ "line_attachment": {
+ "key": "line_attachment",
+ "type": "combo"
+ },
+ "lifeguard_check": {
+ "key": "lifeguard",
+ "type": "check"
+ },
+ "lifeguard": {
+ "key": "lifeguard",
+ "type": "radio",
+ "options": [
+ "base",
+ "tower"
+ ]
+ },
+ "license_classes": {
+ "key": "license_classes",
+ "type": "semiCombo"
+ },
+ "liaison": {
+ "key": "liaison",
+ "type": "combo"
+ },
+ "level_semi": {
+ "key": "level",
+ "type": "semiCombo"
+ },
+ "level": {
+ "key": "level",
+ "type": "combo",
+ "prerequisiteTag": {
+ "keyNot": "building"
+ }
+ },
+ "length": {
+ "key": "length",
+ "type": "number",
+ "minValue": 0
+ },
+ "leisure": {
+ "key": "leisure",
+ "type": "typeCombo"
+ },
+ "leaf_type_singular": {
+ "key": "leaf_type",
+ "type": "combo",
+ "stringsCrossReference": "{leaf_type}",
+ "iconsCrossReference": "{leaf_type}",
+ "options": [
+ "broadleaved",
+ "needleleaved",
+ "leafless"
+ ],
+ "autoSuggestions": false,
+ "customValues": false
+ },
+ "leaf_type": {
+ "key": "leaf_type",
+ "type": "combo",
+ "icons": {
+ "broadleaved": "maki-park",
+ "needleleaved": "roentgen-needleleaved_tree"
+ },
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "broadleaved",
+ "needleleaved",
+ "mixed",
+ "leafless"
+ ]
+ },
+ "leaf_cycle_singular": {
+ "key": "leaf_cycle",
+ "type": "combo",
+ "label": "{leaf_cycle}",
+ "stringsCrossReference": "{leaf_cycle}",
+ "options": [
+ "evergreen",
+ "deciduous",
+ "semi_evergreen",
+ "semi_deciduous"
+ ],
+ "autoSuggestions": false,
+ "customValues": false
+ },
+ "leaf_cycle": {
+ "key": "leaf_cycle",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "evergreen",
+ "deciduous",
+ "semi_evergreen",
+ "semi_deciduous",
+ "mixed"
+ ]
+ },
+ "layer_1": {
+ "key": "layer",
+ "type": "number",
+ "label": "{layer}",
+ "default": "1"
+ },
+ "layer": {
+ "key": "layer",
+ "type": "number"
+ },
+ "language_multi": {
+ "key": "language:",
+ "type": "multiCombo"
+ },
+ "lanes": {
+ "key": "lanes",
+ "type": "number",
+ "minValue": 0
+ },
+ "lane_markings": {
+ "key": "lane_markings",
+ "type": "check"
+ },
+ "landuse": {
+ "key": "landuse",
+ "type": "typeCombo"
+ },
+ "lamp_type": {
+ "key": "lamp_type",
+ "type": "combo"
+ },
+ "lamp_mount": {
+ "key": "lamp_mount",
+ "type": "combo"
+ },
+ "label": {
+ "key": "label",
+ "type": "textarea"
+ },
+ "kneipp_water_cure_multi": {
+ "key": "kneipp_water_cure:",
+ "type": "multiCombo",
+ "options": [
+ "foot",
+ "arm",
+ "face"
+ ]
+ },
+ "kitchen": {
+ "key": "kitchen",
+ "type": "check"
+ },
+ "kerb": {
+ "key": "kerb",
+ "type": "combo",
+ "icons": {
+ "raised": "temaki-kerb-raised",
+ "lowered": "temaki-kerb-lowered",
+ "flush": "temaki-kerb-flush",
+ "rolled": "temaki-kerb-rolled"
+ },
+ "options": [
+ "flush",
+ "lowered",
+ "no",
+ "raised",
+ "rolled",
+ "yes"
+ ]
+ },
+ "junction_line": {
+ "key": "junction",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "roundabout",
+ "circular",
+ "jughandle"
+ ]
+ },
+ "irrigation_pivot": {
+ "key": "irrigation",
+ "type": "defaultCheck",
+ "options": [
+ "undefined",
+ "pivot"
+ ]
+ },
+ "interval": {
+ "key": "interval",
+ "type": "text"
+ },
+ "internet_access": {
+ "key": "internet_access",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "yes",
+ "no",
+ "wlan",
+ "wired",
+ "terminal"
+ ]
+ },
+ "intermittent_yes": {
+ "key": "intermittent",
+ "type": "check",
+ "label": "{intermittent}",
+ "default": "yes"
+ },
+ "intermittent": {
+ "key": "intermittent",
+ "type": "check"
+ },
+ "inscription": {
+ "key": "inscription",
+ "type": "textarea"
+ },
+ "information": {
+ "key": "information",
+ "type": "typeCombo"
+ },
+ "informal": {
+ "key": "informal",
+ "type": "check"
+ },
+ "industrial": {
+ "key": "industrial",
+ "type": "combo"
+ },
+ "indoor_type": {
+ "key": "indoor",
+ "type": "typeCombo"
+ },
+ "indoor": {
+ "key": "indoor",
+ "type": "check"
+ },
+ "incline_steps": {
+ "key": "incline",
+ "type": "combo",
+ "label": "{incline}",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "up",
+ "down"
+ ]
+ },
+ "incline": {
+ "key": "incline",
+ "type": "combo"
+ },
+ "image": {
+ "key": "image",
+ "type": "url",
+ "universal": true
+ },
+ "icao": {
+ "key": "icao",
+ "type": "text"
+ },
+ "iata": {
+ "key": "iata",
+ "type": "text"
+ },
+ "house": {
+ "key": "house",
+ "type": "combo",
+ "autoSuggestions": false,
+ "options": [
+ "bungalow",
+ "detached",
+ "link-detached",
+ "maisonette",
+ "semi-detached",
+ "terrace",
+ "terraced"
+ ]
+ },
+ "hot_water": {
+ "key": "hot_water",
+ "type": "check"
+ },
+ "horse_scale": {
+ "key": "horse_scale",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "common",
+ "demanding",
+ "difficult",
+ "critical",
+ "dangerous",
+ "impossible"
+ ]
+ },
+ "horse_riding": {
+ "key": "leisure",
+ "type": "defaultCheck",
+ "reference": {
+ "key": "leisure",
+ "value": "horse_riding"
+ },
+ "options": [
+ "undefined",
+ "horse_riding"
+ ]
+ },
+ "hoops": {
+ "key": "hoops",
+ "type": "number",
+ "minValue": 0
+ },
+ "historic": {
+ "key": "historic",
+ "type": "typeCombo",
+ "options": [
+ "archaeological_site",
+ "bomb_crater",
+ "boundary_stone",
+ "building",
+ "castle",
+ "charcoal_pile",
+ "church",
+ "city_gate",
+ "citywalls",
+ "fort",
+ "manor",
+ "memorial",
+ "milestone",
+ "millstone",
+ "mine",
+ "mine_shaft",
+ "monument",
+ "pillory",
+ "railway",
+ "ruins",
+ "shieling",
+ "tomb",
+ "wayside_cross",
+ "wayside_shrine",
+ "wreck"
+ ]
+ },
+ "highway_cartpath": {
+ "key": "highway",
+ "type": "typeCombo",
+ "autoSuggestions": false,
+ "options": [
+ "path",
+ "service"
+ ]
+ },
+ "highway": {
+ "key": "highway",
+ "type": "typeCombo"
+ },
+ "highspeed": {
+ "key": "highspeed",
+ "type": "check"
+ },
+ "highchair": {
+ "key": "highchair",
+ "type": "check"
+ },
+ "height_building": {
+ "key": "height",
+ "minValue": 0,
+ "type": "number",
+ "prerequisiteTag": {
+ "key": "building",
+ "valueNot": "no"
+ }
+ },
+ "height": {
+ "key": "height",
+ "minValue": 0,
+ "type": "number"
+ },
+ "heating": {
+ "key": "heating",
+ "type": "check"
+ },
+ "healthcare_therapist": {
+ "key": "healthcare",
+ "type": "typeCombo",
+ "options": [
+ "physiotherapist",
+ "psychotherapist",
+ "occupational_therapist",
+ "speech_therapist"
+ ],
+ "autoSuggestions": false,
+ "label": "{healthcare}"
+ },
+ "healthcare": {
+ "key": "healthcare",
+ "type": "typeCombo",
+ "options": [
+ "alternative",
+ "audiologist",
+ "birthing_centre",
+ "blood_bank",
+ "blood_donation",
+ "clinic",
+ "community_health_worker",
+ "counselling",
+ "dentist",
+ "dialysis",
+ "doctor",
+ "hospice",
+ "hospital",
+ "laboratory",
+ "midwife",
+ "nurse",
+ "occupational_therapist",
+ "optometrist",
+ "pharmacy",
+ "physiotherapist",
+ "podiatrist",
+ "psychotherapist",
+ "rehabilitation",
+ "sample_collection",
+ "speech_therapist",
+ "vaccination_centre"
+ ]
+ },
+ "hazard_boundary": {
+ "key": "hazard",
+ "type": "combo",
+ "options": [
+ "archery_range",
+ "avalanche",
+ "biohazard",
+ "contamination",
+ "electricity",
+ "shooting_range",
+ "hole",
+ "minefield",
+ "nuclear",
+ "quicksand"
+ ]
+ },
+ "hashtags": {
+ "key": "hashtags",
+ "type": "semiCombo",
+ "usage": "changeset",
+ "autoSuggestions": false,
+ "caseSensitive": true
+ },
+ "handrest": {
+ "key": "handrest",
+ "type": "check",
+ "default": "yes"
+ },
+ "handrail": {
+ "key": "handrail",
+ "type": "check"
+ },
+ "handicap": {
+ "key": "handicap",
+ "type": "number"
+ },
+ "guest_house": {
+ "key": "guest_house",
+ "type": "combo"
+ },
+ "group_only": {
+ "key": "group_only",
+ "type": "check"
+ },
+ "grape_variety": {
+ "key": "grape_variety",
+ "type": "semiCombo"
+ },
+ "grades": {
+ "key": "grades",
+ "type": "combo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "government": {
+ "key": "government",
+ "type": "typeCombo"
+ },
+ "genus": {
+ "key": "genus",
+ "type": "combo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "gender_simple": {
+ "type": "manyCombo",
+ "keys": [
+ "female",
+ "male"
+ ],
+ "label": "{gender}",
+ "stringsCrossReference": "{gender}",
+ "options": [
+ "female",
+ "male"
+ ]
+ },
+ "gender": {
+ "type": "manyCombo",
+ "keys": [
+ "male",
+ "female",
+ "unisex"
+ ],
+ "options": [
+ "male",
+ "female",
+ "unisex"
+ ]
+ },
+ "gauge": {
+ "key": "gauge",
+ "type": "combo"
+ },
+ "gambling": {
+ "key": "gambling",
+ "type": "semiCombo"
+ },
+ "fuel": {
+ "key": "fuel",
+ "type": "combo"
+ },
+ "from": {
+ "key": "from",
+ "type": "text"
+ },
+ "frequency_electrified": {
+ "key": "frequency",
+ "type": "combo",
+ "label": "{frequency}",
+ "prerequisiteTag": {
+ "key": "electrified",
+ "valueNot": "no"
+ }
+ },
+ "frequency": {
+ "key": "frequency",
+ "type": "combo"
+ },
+ "fountain": {
+ "key": "fountain",
+ "type": "combo"
+ },
+ "fortification_type": {
+ "key": "fortification_type",
+ "type": "combo",
+ "prerequisiteTag": {
+ "key": "archaeological_site",
+ "value": "fortification"
+ }
+ },
+ "ford": {
+ "key": "ford",
+ "type": "typeCombo",
+ "usage": "group"
+ },
+ "footrest": {
+ "key": "footrest",
+ "type": "check"
+ },
+ "flood_prone": {
+ "key": "flood_prone",
+ "type": "check"
+ },
+ "floating": {
+ "key": "floating",
+ "type": "check"
+ },
+ "flashing_lights": {
+ "key": "flashing_lights",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "button",
+ "always",
+ "sensor",
+ "button;sensor",
+ "no",
+ "yes"
+ ]
+ },
+ "fixme": {
+ "key": "fixme",
+ "type": "textarea",
+ "universal": true
+ },
+ "fitness_station": {
+ "key": "fitness_station",
+ "type": "typeCombo"
+ },
+ "fishing": {
+ "key": "fishing",
+ "type": "combo"
+ },
+ "fireplace": {
+ "key": "fireplace",
+ "type": "check"
+ },
+ "fire_sprinkler": {
+ "key": "fire_sprinkler",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "dry",
+ "wet",
+ "pre-action",
+ "yes",
+ "no"
+ ]
+ },
+ "fire_service_inlet": {
+ "key": "fire_service_inlet",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "pillar",
+ "underground",
+ "wall",
+ "pipe"
+ ]
+ },
+ "fire_mains": {
+ "key": "fire_mains",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "dry",
+ "wet",
+ "yes",
+ "no"
+ ]
+ },
+ "fence_type": {
+ "key": "fence_type",
+ "type": "combo"
+ },
+ "fee": {
+ "key": "fee",
+ "type": "check"
+ },
+ "fax": {
+ "key": "fax",
+ "keys": [
+ "fax",
+ "contact:fax"
+ ],
+ "type": "tel"
+ },
+ "faces": {
+ "key": "faces",
+ "type": "number",
+ "minValue": 0
+ },
+ "expressway-US": {
+ "key": "expressway",
+ "type": "check",
+ "locationSet": {
+ "include": [
+ "US"
+ ]
+ }
+ },
+ "expected_rwn_route_relations": {
+ "key": "expected_rwn_route_relations",
+ "type": "number"
+ },
+ "expected_rcn_route_relations": {
+ "key": "expected_rcn_route_relations",
+ "type": "number"
+ },
+ "except": {
+ "key": "except",
+ "type": "combo"
+ },
+ "entrance": {
+ "key": "entrance",
+ "type": "typeCombo",
+ "options": [
+ "yes",
+ "main",
+ "secondary",
+ "service",
+ "shop",
+ "exit",
+ "entrance",
+ "emergency",
+ "staircase",
+ "home",
+ "garage"
+ ]
+ },
+ "enforcement": {
+ "key": "enforcement",
+ "type": "combo"
+ },
+ "emergency_ward_entrance": {
+ "key": "emergency_ward_entrance",
+ "type": "combo"
+ },
+ "emergency_combo": {
+ "key": "emergency",
+ "type": "combo"
+ },
+ "emergency": {
+ "key": "emergency",
+ "type": "check"
+ },
+ "embassy": {
+ "key": "embassy",
+ "type": "combo",
+ "autoSuggestions": false,
+ "options": [
+ "yes",
+ "residence",
+ "high_commission",
+ "mission",
+ "branch_embassy",
+ "nunciature",
+ "delegation",
+ "interests_section"
+ ]
+ },
+ "embankment": {
+ "key": "embankment",
+ "type": "typeCombo",
+ "usage": "group"
+ },
+ "email": {
+ "key": "email",
+ "keys": [
+ "email",
+ "contact:email"
+ ],
+ "type": "email"
+ },
+ "electrified": {
+ "key": "electrified",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "contact_line",
+ "rail",
+ "yes",
+ "no"
+ ]
+ },
+ "ele_node": {
+ "key": "ele",
+ "type": "number",
+ "label": "{ele}",
+ "universal": true,
+ "geometry": [
+ "point",
+ "vertex"
+ ]
+ },
+ "ele": {
+ "key": "ele",
+ "type": "number",
+ "geometry": [
+ "line",
+ "area",
+ "relation"
+ ]
+ },
+ "education": {
+ "key": "education",
+ "type": "typeCombo",
+ "options": [
+ "college",
+ "dancing_school",
+ "driving_school",
+ "kindergarten",
+ "language_school",
+ "music_school",
+ "prep_school",
+ "school",
+ "university"
+ ]
+ },
+ "duration": {
+ "key": "duration",
+ "type": "text"
+ },
+ "drive_through": {
+ "key": "drive_through",
+ "type": "check"
+ },
+ "drinking_water_available": {
+ "key": "drinking_water",
+ "type": "check"
+ },
+ "drinking_water": {
+ "key": "drinking_water",
+ "type": "check"
+ },
+ "drink_multi": {
+ "key": "drink:",
+ "type": "multiCombo"
+ },
+ "door_type": {
+ "key": "door",
+ "type": "typeCombo"
+ },
+ "door": {
+ "key": "door",
+ "type": "combo"
+ },
+ "dog_yes": {
+ "key": "dog",
+ "type": "combo",
+ "label": "{dog}",
+ "options": [
+ "leashed",
+ "unleashed"
+ ],
+ "stringsCrossReference": "{dog}",
+ "autoSuggestions": false,
+ "customValues": false
+ },
+ "dog_check": {
+ "key": "dog",
+ "type": "check"
+ },
+ "dog": {
+ "key": "dog",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "yes",
+ "leashed",
+ "unleashed",
+ "no"
+ ]
+ },
+ "dock": {
+ "key": "dock",
+ "type": "combo",
+ "options": [
+ "drydock",
+ "floating",
+ "tidal"
+ ]
+ },
+ "distance": {
+ "key": "distance",
+ "type": "text"
+ },
+ "display": {
+ "key": "display",
+ "type": "combo",
+ "autoSuggestions": false,
+ "options": [
+ "analog",
+ "digital",
+ "sundial",
+ "unorthodox"
+ ]
+ },
+ "dispensing": {
+ "key": "dispensing",
+ "type": "check"
+ },
+ "direction_vertex_dual": {
+ "key": "direction",
+ "type": "combo",
+ "label": "{direction_vertex}",
+ "stringsCrossReference": "{direction_vertex}",
+ "options": [
+ "forward",
+ "backward"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "autoSuggestions": false,
+ "customValues": false
+ },
+ "direction_vertex": {
+ "key": "direction",
+ "type": "combo",
+ "geometry": [
+ "vertex"
+ ],
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "forward",
+ "backward",
+ "both"
+ ]
+ },
+ "direction_point": {
+ "key": "direction",
+ "type": "number",
+ "label": "{direction}",
+ "increment": 5,
+ "geometry": [
+ "point"
+ ]
+ },
+ "direction_clock": {
+ "key": "direction",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "clockwise",
+ "anticlockwise"
+ ]
+ },
+ "direction_cardinal-US-CA-NZ": {
+ "key": "direction",
+ "type": "combo",
+ "autoSuggestions": false,
+ "locationSet": {
+ "include": [
+ "CA",
+ "NZ",
+ "US"
+ ]
+ },
+ "options": [
+ "north",
+ "south",
+ "east",
+ "west"
+ ]
+ },
+ "direction": {
+ "key": "direction",
+ "type": "number",
+ "increment": 5
+ },
+ "diplomatic": {
+ "key": "diplomatic",
+ "type": "combo",
+ "options": [
+ "consulate",
+ "embassy",
+ "liaison"
+ ]
+ },
+ "diet_multi": {
+ "key": "diet:",
+ "type": "multiCombo",
+ "options": [
+ "vegetarian",
+ "vegan",
+ "halal",
+ "gluten_free",
+ "kosher",
+ "lactose_free",
+ "pescetarian"
+ ]
+ },
+ "diameter_crown": {
+ "key": "diameter_crown",
+ "type": "combo",
+ "snake_case": false
+ },
+ "diameter": {
+ "key": "diameter",
+ "type": "combo",
+ "snake_case": false
+ },
+ "devices": {
+ "key": "devices",
+ "type": "number",
+ "minValue": 0
+ },
+ "destination_waterway": {
+ "key": "destination",
+ "type": "text"
+ },
+ "destination_oneway": {
+ "key": "destination",
+ "type": "semiCombo",
+ "label": "{destination}",
+ "prerequisiteTag": {
+ "key": "oneway",
+ "value": "yes"
+ },
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "destination": {
+ "key": "destination",
+ "type": "semiCombo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "design_power_tower": {
+ "key": "design",
+ "type": "combo",
+ "label": "{design}",
+ "icons": {
+ "one-level": "roentgen-power_tower_1_level",
+ "two-level": "roentgen-power_tower_2_level",
+ "three-level": "roentgen-power_tower_3_level",
+ "four-level": "roentgen-power_tower_4_level",
+ "asymmetric": "roentgen-power_tower_asymmetric",
+ "triangle": "roentgen-power_tower_triangle",
+ "flag": "roentgen-power_tower_flag",
+ "delta": "roentgen-power_tower_delta",
+ "delta_two-level": "roentgen-power_tower_delta_2_level",
+ "delta_tree-level": "roentgen-power_tower_delta_3_level",
+ "donau": "roentgen-power_tower_donau",
+ "barrel": "roentgen-power_tower_barrel",
+ "x-frame": "roentgen-power_tower_x_frame",
+ "y-frame": "roentgen-power_tower_y_frame",
+ "h-frame": "roentgen-power_tower_h_frame",
+ "h-frame_two-level": "roentgen-power_tower_h_frame_2_level",
+ "guyed_h-frame": "roentgen-power_tower_guyed_h_frame",
+ "portal": "roentgen-power_tower_portal",
+ "portal_two-level": "roentgen-power_tower_portal_2_level",
+ "portal_three-level": "roentgen-power_tower_portal_3_level"
+ }
+ },
+ "design_power_pole": {
+ "key": "design",
+ "type": "combo",
+ "label": "{design}",
+ "icons": {
+ "one-level": "roentgen-power_pole_1_level",
+ "two-level": "roentgen-power_pole_2_level",
+ "three-level": "roentgen-power_pole_3_level",
+ "four-level": "roentgen-power_pole_4_level",
+ "asymmetric": "roentgen-power_pole_asymmetric",
+ "triangle": "roentgen-power_pole_triangle",
+ "flag": "roentgen-power_pole_flag",
+ "delta": "roentgen-power_pole_delta",
+ "armless": "roentgen-power_pole_armless",
+ "armless_asymmetric": "roentgen-power_pole_asymmetric_armless",
+ "armless_triangle": "roentgen-power_pole_triangle_armless"
+ }
+ },
+ "design": {
+ "key": "design",
+ "type": "combo",
+ "usage": "manual"
+ },
+ "description": {
+ "key": "description",
+ "type": "textarea",
+ "universal": true
+ },
+ "descent": {
+ "key": "descent",
+ "minValue": 0,
+ "type": "number"
+ },
+ "depth": {
+ "key": "depth",
+ "minValue": 0,
+ "type": "number"
+ },
+ "depot": {
+ "key": "depot",
+ "type": "combo"
+ },
+ "departures_board": {
+ "key": "departures_board",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "yes",
+ "timetable",
+ "realtime",
+ "no"
+ ]
+ },
+ "denotation": {
+ "key": "denotation",
+ "type": "combo"
+ },
+ "denomination": {
+ "key": "denomination",
+ "type": "combo",
+ "prerequisiteTag": {
+ "key": "religion",
+ "valueNot": "none"
+ }
+ },
+ "delivery": {
+ "key": "delivery",
+ "type": "check"
+ },
+ "deflection": {
+ "key": "deflection",
+ "type": "number",
+ "increment": 5,
+ "prerequisiteTag": {
+ "key": "cycle_barrier",
+ "value": "diagonal"
+ }
+ },
+ "date": {
+ "key": "date",
+ "type": "check"
+ },
+ "cycleway": {
+ "key": "cycleway",
+ "keys": [
+ "cycleway:left",
+ "cycleway:right"
+ ],
+ "reference": {
+ "key": "cycleway"
+ },
+ "type": "directionalCombo",
+ "autoSuggestions": true,
+ "options": [
+ "no",
+ "lane",
+ "shared_lane",
+ "track",
+ "share_busway",
+ "separate",
+ "opposite_lane",
+ "opposite"
+ ]
+ },
+ "cyclestreet-BE-NL": {
+ "key": "cyclestreet",
+ "type": "defaultCheck",
+ "label": "{bicycle_road}",
+ "locationSet": {
+ "include": [
+ "BE",
+ "NL"
+ ]
+ },
+ "stringsCrossReference": "{bicycle_road}"
+ },
+ "cycle_network": {
+ "key": "cycle_network",
+ "type": "networkCombo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "cycle_barrier": {
+ "key": "cycle_barrier",
+ "type": "combo",
+ "customValues": false,
+ "autoSuggestions": false,
+ "options": [
+ "single",
+ "double",
+ "triple",
+ "diagonal",
+ "tilted"
+ ]
+ },
+ "cutting": {
+ "key": "cutting",
+ "type": "typeCombo",
+ "usage": "group"
+ },
+ "currency_multi": {
+ "key": "currency:",
+ "type": "multiCombo",
+ "caseSensitive": true
+ },
+ "cuisine": {
+ "key": "cuisine",
+ "type": "semiCombo",
+ "options": [
+ "pizza",
+ "burger",
+ "coffee_shop",
+ "regional",
+ "italian",
+ "sandwich",
+ "chinese",
+ "chicken",
+ "japanese",
+ "kebab",
+ "mexican",
+ "american",
+ "asian",
+ "ice_cream",
+ "indian",
+ "sushi",
+ "seafood",
+ "thai",
+ "french",
+ "german",
+ "breakfast",
+ "greek",
+ "steak_house",
+ "fish_and_chips",
+ "korean",
+ "barbecue",
+ "donut",
+ "noodle",
+ "vietnamese",
+ "fish",
+ "turkish",
+ "cake",
+ "pasta",
+ "tex-mex",
+ "bubble_tea",
+ "ramen",
+ "mediterranean",
+ "spanish",
+ "friture",
+ "tea",
+ "grill",
+ "juice",
+ "salad",
+ "crepe",
+ "hot_dog",
+ "pancake",
+ "dessert",
+ "diner",
+ "tapas",
+ "portuguese",
+ "beef_bowl",
+ "russian",
+ "indonesian",
+ "wings",
+ "lebanese",
+ "arab",
+ "curry",
+ "malaysian",
+ "bagel",
+ "georgian",
+ "polish",
+ "african",
+ "western",
+ "sausage",
+ "filipino",
+ "caribbean",
+ "soba",
+ "peruvian",
+ "brazilian",
+ "oriental",
+ "fine_dining",
+ "frozen_yogurt",
+ "argentinian",
+ "balkan",
+ "bavarian",
+ "shawarma",
+ "persian",
+ "middle_eastern",
+ "pastry",
+ "soup",
+ "fries",
+ "taiwanese",
+ "bistro",
+ "european",
+ "moroccan",
+ "hawaiian",
+ "brunch",
+ "udon",
+ "ukrainian"
+ ]
+ },
+ "crossing_raised": {
+ "key": "traffic_calming",
+ "type": "defaultCheck",
+ "options": [
+ "undefined",
+ "table"
+ ]
+ },
+ "crossing": {
+ "key": "crossing",
+ "type": "combo",
+ "options": [
+ "traffic_signals",
+ "uncontrolled",
+ "unmarked"
+ ]
+ },
+ "crop": {
+ "key": "crop",
+ "type": "semiCombo",
+ "options": [
+ "asparagus",
+ "barley",
+ "beet",
+ "cassava",
+ "coffee",
+ "cotton",
+ "cranberries",
+ "fast_growing_wood",
+ "flowers",
+ "grape",
+ "grass",
+ "hop",
+ "lavender",
+ "maize",
+ "potato",
+ "rape",
+ "rice",
+ "strawberry",
+ "sugar_beet",
+ "sugarcane",
+ "sunflower",
+ "soy",
+ "tea",
+ "tobacco",
+ "vegetable",
+ "wheat"
+ ]
+ },
"craft": {
"key": "craft",
"type": "typeCombo",
@@ -791,409 +3527,959 @@
"winery"
]
},
- "crane/type": {
- "key": "crane:type",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "portal_crane",
- "floor-mounted_crane",
- "travel_lift",
- "gantry_crane",
- "tower_crane"
- ]
- },
- "crop": {
- "key": "crop",
- "type": "semiCombo",
- "options": [
- "asparagus",
- "barley",
- "beet",
- "cassava",
- "coffee",
- "cotton",
- "cranberries",
- "fast_growing_wood",
- "flowers",
- "grape",
- "grass",
- "hop",
- "lavender",
- "maize",
- "potato",
- "rape",
- "rice",
- "strawberry",
- "sugar_beet",
- "sugarcane",
- "sunflower",
- "soy",
- "tea",
- "tobacco",
- "vegetable",
- "wheat"
- ]
- },
- "crossing_raised": {
- "key": "traffic_calming",
- "type": "defaultCheck",
+ "covered_no": {
+ "key": "covered",
+ "type": "check",
+ "label": "{covered}",
"options": [
"undefined",
- "table"
- ]
- },
- "crossing": {
- "key": "crossing",
- "type": "combo",
- "options": [
- "traffic_signals",
- "uncontrolled",
- "unmarked"
- ]
- },
- "crossing/barrier": {
- "key": "crossing:barrier",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "full",
- "double_half",
- "half",
- "no",
- "yes"
- ]
- },
- "crossing/bell": {
- "key": "crossing:bell",
- "type": "check"
- },
- "crossing/island": {
- "key": "crossing:island",
- "type": "check"
- },
- "crossing/light": {
- "key": "crossing:light",
- "type": "check"
- },
- "crossing/markings": {
- "key": "crossing:markings",
- "type": "combo",
- "options": [
- "zebra",
- "lines",
- "no",
- "ladder",
- "dots",
- "dashes",
"yes",
- "surface",
- "ladder:skewed",
- "pictograms",
- "lines:paired",
- "zebra:double",
- "zebra:paired",
- "zebra:bicolour",
- "ladder:paired"
- ]
- },
- "cuisine": {
- "key": "cuisine",
- "type": "semiCombo",
- "options": [
- "pizza",
- "burger",
- "regional",
- "coffee_shop",
- "italian",
- "chinese",
- "sandwich",
- "japanese",
- "mexican",
- "kebab",
- "indian",
- "chicken",
- "fish",
- "asian",
- "french",
- "spanish",
- "portuguese",
- "russian",
- "polish",
- "thai",
- "korean",
- "american",
- "seafood",
- "sushi",
- "ice_cream",
- "german",
- "greek",
- "vietnamese",
- "turkish",
- "lebanese",
- "indonesian",
- "malaysian",
- "taiwanese",
- "juice",
- "bubble_tea",
- "hot_dog",
- "cake",
- "pankcake",
- "pasta",
- "salad",
- "chocolate",
- "dessert",
- "steak_house",
- "donut"
- ]
- },
- "currency_multi": {
- "key": "currency:",
- "type": "multiCombo",
- "caseSensitive": true
- },
- "cutting": {
- "key": "cutting",
- "type": "typeCombo",
- "usage": "group"
- },
- "cycle_network": {
- "key": "cycle_network",
- "type": "networkCombo",
- "snake_case": false,
- "caseSensitive": true
- },
- "cycleway": {
- "keys": [
- "cycleway",
- "cycleway:left",
- "cycleway:right"
- ],
- "reference": {
- "key": "cycleway"
- },
- "type": "cycleway",
- "autoSuggestions": true,
- "options": [
- "no",
- "lane",
- "shared_lane",
- "track",
- "share_busway",
- "opposite_lane",
- "opposite",
- "separate"
- ]
- },
- "dance/style": {
- "key": "dance:style",
- "type": "semiCombo"
- },
- "date": {
- "key": "date",
- "type": "check"
- },
- "defibrillator/location": {
- "key": "defibrillator:location",
- "type": "textarea"
- },
- "delivery": {
- "key": "delivery",
- "type": "check"
- },
- "denomination": {
- "key": "denomination",
- "type": "combo",
- "prerequisiteTag": {
- "key": "religion",
- "valueNot": "none"
- }
- },
- "denotation": {
- "key": "denotation",
- "type": "combo"
- },
- "departures_board": {
- "key": "departures_board",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "yes",
- "timetable",
- "realtime",
"no"
]
},
- "deposit/trolley": {
- "key": "trolley:deposit",
+ "covered": {
+ "key": "covered",
"type": "check"
},
- "depth": {
- "key": "depth",
- "minValue": 0,
- "type": "number"
+ "couplings": {
+ "key": "couplings",
+ "type": "number",
+ "minValue": 1
},
- "descent": {
- "key": "descent",
- "minValue": 0,
- "type": "number"
- },
- "description": {
- "key": "description",
- "type": "textarea",
- "universal": true
- },
- "design": {
- "key": "design",
- "type": "combo"
- },
- "destination_oneway": {
- "key": "destination",
- "type": "semiCombo",
- "label": "{destination}",
+ "country_flag": {
+ "key": "country",
+ "type": "combo",
"prerequisiteTag": {
- "key": "oneway",
- "value": "yes"
- },
- "snake_case": false
- },
- "destination_waterway": {
- "key": "destination",
- "type": "text"
- },
- "destination": {
- "key": "destination",
- "type": "semiCombo",
- "snake_case": false,
- "caseSensitive": true
- },
- "destination/ref_oneway": {
- "key": "destination:ref",
- "type": "semiCombo",
- "label": "{destination/ref}",
- "prerequisiteTag": {
- "key": "oneway",
- "value": "yes"
+ "key": "flag:type",
+ "value": "national"
},
"snake_case": false,
"caseSensitive": true
},
- "destination/ref": {
- "key": "destination:ref",
- "type": "semiCombo",
+ "country": {
+ "key": "country",
+ "type": "combo",
"snake_case": false,
"caseSensitive": true
},
- "destination/symbol_oneway": {
- "key": "destination:symbol",
- "type": "semiCombo",
- "label": "{destination/symbol}",
- "prerequisiteTag": {
- "key": "oneway",
- "value": "yes"
- }
+ "count": {
+ "key": "count",
+ "type": "number",
+ "minValue": 1
},
- "destination/symbol": {
- "key": "destination:symbol",
+ "conveying_escalator": {
+ "key": "conveying",
+ "type": "check"
+ },
+ "conveying": {
+ "key": "conveying",
+ "type": "typeCombo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "forward",
+ "backward",
+ "reversible"
+ ]
+ },
+ "content": {
+ "key": "content",
+ "type": "combo",
+ "options": [
+ "silage",
+ "water",
+ "oil",
+ "fuel",
+ "slurry",
+ "gas",
+ "manure",
+ "sewage"
+ ],
+ "autoSuggestions": false
+ },
+ "consulting": {
+ "key": "consulting",
"type": "semiCombo"
},
- "devices": {
- "key": "devices",
+ "consulate": {
+ "key": "consulate",
+ "type": "combo",
+ "options": [
+ "consulate_general",
+ "honorary_consul",
+ "yes",
+ "consular_office",
+ "consular_agency",
+ "residence"
+ ]
+ },
+ "construction": {
+ "key": "construction",
+ "type": "combo"
+ },
+ "connectivity": {
+ "key": "connectivity",
+ "type": "text"
+ },
+ "community_centre": {
+ "key": "community_centre",
+ "type": "combo",
+ "options": [
+ "club_home",
+ "community_hall",
+ "cultural_centre",
+ "family_centre",
+ "parish_hall",
+ "village_hall",
+ "youth_centre"
+ ]
+ },
+ "communication_multi": {
+ "key": "communication:",
+ "type": "multiCombo"
+ },
+ "comment": {
+ "key": "comment",
+ "type": "textarea",
+ "usage": "changeset"
+ },
+ "colour": {
+ "key": "colour",
+ "type": "colour"
+ },
+ "collector": {
+ "key": "collector",
+ "type": "semiCombo",
+ "options": [
+ "coins",
+ "stamps",
+ "comics"
+ ]
+ },
+ "collection_times": {
+ "key": "collection_times",
+ "type": "text"
+ },
+ "club": {
+ "key": "club",
+ "type": "typeCombo"
+ },
+ "clothes": {
+ "key": "clothes",
+ "type": "semiCombo",
+ "options": [
+ "babies",
+ "children",
+ "denim",
+ "fur",
+ "hats",
+ "maternity",
+ "men",
+ "motorcycle",
+ "oversize",
+ "socks",
+ "sports",
+ "suits",
+ "swimwear",
+ "traditional",
+ "underwear",
+ "wedding",
+ "women",
+ "workwear"
+ ]
+ },
+ "circumference": {
+ "key": "circumference",
+ "type": "combo",
+ "snake_case": false
+ },
+ "check_date": {
+ "key": "check_date",
+ "type": "date",
+ "universal": true
+ },
+ "charge_toll": {
+ "key": "charge",
+ "type": "text",
+ "prerequisiteTag": {
+ "key": "toll",
+ "valueNot": "no"
+ }
+ },
+ "charge_fee": {
+ "key": "charge",
+ "type": "text",
+ "prerequisiteTag": {
+ "key": "fee",
+ "valueNot": "no"
+ }
+ },
+ "changing_table": {
+ "key": "changing_table",
+ "type": "check"
+ },
+ "ceremonial_gate": {
+ "key": "ceremonial_gate",
+ "type": "combo",
+ "options": [
+ "torii",
+ "paifang",
+ "hongsalmun",
+ "iljumun"
+ ]
+ },
+ "castle_type": {
+ "key": "castle_type",
+ "type": "combo",
+ "options": [
+ "defensive",
+ "palace",
+ "stately",
+ "manor",
+ "fortress",
+ "castrum",
+ "shiro",
+ "kremlin",
+ "hillfort"
+ ]
+ },
+ "cash_in": {
+ "key": "cash_in",
+ "type": "check"
+ },
+ "caravans": {
+ "key": "caravans",
+ "type": "check"
+ },
+ "capacity_volume": {
+ "key": "capacity",
"type": "number",
"minValue": 0
},
- "diameter_crown": {
- "key": "diameter_crown",
- "type": "combo",
- "snake_case": false
+ "capacity_parking": {
+ "key": "capacity",
+ "type": "number",
+ "minValue": 0
},
- "diameter": {
- "key": "diameter",
- "type": "combo",
- "snake_case": false
+ "capacity": {
+ "key": "capacity",
+ "type": "number",
+ "minValue": 0
},
- "diet_multi": {
- "key": "diet:",
- "type": "multiCombo",
+ "camp_site": {
+ "key": "camp_site",
+ "type": "combo",
"options": [
- "vegetarian",
- "vegan",
- "halal",
- "gluten_free",
- "kosher",
- "lactose_free",
- "pescetarian"
- ]
+ "basic",
+ "standard",
+ "serviced",
+ "deluxe"
+ ],
+ "autoSuggestions": false
},
- "diplomatic": {
- "key": "diplomatic",
- "type": "combo"
- },
- "diplomatic/services": {
- "key": "diplomatic:services:",
- "type": "multiCombo"
- },
- "direction_cardinal-US-CA-NZ": {
- "key": "direction",
+ "cai_scale-IT": {
+ "key": "cai_scale",
"type": "combo",
+ "snake_case": false,
+ "caseSensitive": true,
"autoSuggestions": false,
+ "customValues": false,
"locationSet": {
"include": [
- "CA",
- "NZ",
- "US"
+ "IT"
]
},
"options": [
- "north",
- "south",
- "east",
- "west"
+ "T",
+ "E",
+ "EE",
+ "EEA",
+ "EAI"
]
},
- "direction_clock": {
- "key": "direction",
+ "cables": {
+ "key": "cables",
+ "type": "number",
+ "minValue": 1
+ },
+ "cabins": {
+ "key": "cabins",
+ "type": "check"
+ },
+ "button_operated": {
+ "key": "button_operated",
+ "type": "check"
+ },
+ "bunker_type": {
+ "key": "bunker_type",
+ "type": "combo"
+ },
+ "building_area_yes": {
+ "key": "building",
+ "type": "combo",
+ "default": "yes",
+ "geometry": [
+ "area"
+ ],
+ "label": "{building}"
+ },
+ "building_area": {
+ "key": "building",
+ "type": "combo",
+ "geometry": [
+ "area"
+ ],
+ "label": "{building}"
+ },
+ "building": {
+ "key": "building",
+ "type": "combo",
+ "options": [
+ "allotment_house",
+ "apartments",
+ "barn",
+ "boathouse",
+ "bungalow",
+ "bunker",
+ "cabin",
+ "carport",
+ "cathedral",
+ "chapel",
+ "church",
+ "civic",
+ "college",
+ "commercial",
+ "construction",
+ "cowshed",
+ "detached",
+ "dormitory",
+ "farm",
+ "farm_auxiliary",
+ "fire_station",
+ "garage",
+ "garages",
+ "ger",
+ "grandstand",
+ "greenhouse",
+ "hangar",
+ "hospital",
+ "hotel",
+ "house",
+ "houseboat",
+ "hut",
+ "industrial",
+ "kindergarten",
+ "manufacture",
+ "mosque",
+ "office",
+ "outbuilding",
+ "pavilion",
+ "public",
+ "residential",
+ "retail",
+ "riding_hall",
+ "roof",
+ "ruins",
+ "school",
+ "semidetached_house",
+ "service",
+ "shed",
+ "stable",
+ "stadium",
+ "static_caravan",
+ "sty",
+ "synagogue",
+ "temple",
+ "terrace",
+ "train_station",
+ "transportation",
+ "university",
+ "warehouse",
+ "container"
+ ]
+ },
+ "bridge_combo": {
+ "key": "bridge",
+ "type": "combo",
+ "options": [
+ "aqueduct",
+ "boardwalk",
+ "cantilever",
+ "covered",
+ "low_water_crossing",
+ "movable",
+ "trestle",
+ "viaduct"
+ ]
+ },
+ "bridge": {
+ "key": "bridge",
+ "type": "typeCombo",
+ "usage": "group",
+ "stringsCrossReference": "{bridge_combo}"
+ },
+ "brewery": {
+ "key": "brewery",
+ "type": "semiCombo"
+ },
+ "brand": {
+ "key": "brand",
+ "type": "text"
+ },
+ "branch_brand": {
+ "key": "branch",
+ "type": "text"
+ },
+ "boundary": {
+ "key": "boundary",
+ "type": "combo"
+ },
+ "boules": {
+ "key": "boules",
+ "type": "typeCombo"
+ },
+ "bottle": {
+ "key": "bottle",
+ "type": "check"
+ },
+ "booth": {
+ "key": "booth",
+ "type": "combo",
+ "caseSensitive": true
+ },
+ "books": {
+ "key": "books",
+ "type": "semiCombo"
+ },
+ "bollard": {
+ "key": "bollard",
+ "type": "combo",
+ "options": [
+ "fixed",
+ "flexible",
+ "foldable",
+ "removable",
+ "rising"
+ ]
+ },
+ "board_type": {
+ "key": "board_type",
+ "type": "combo",
+ "options": [
+ "art",
+ "astronomy",
+ "geology",
+ "history",
+ "nature",
+ "notice",
+ "plants",
+ "welcome_sign",
+ "wildlife"
+ ]
+ },
+ "blood_components": {
+ "key": "blood:",
+ "type": "multiCombo",
+ "options": [
+ "whole",
+ "plasma",
+ "platelets",
+ "stemcells"
+ ]
+ },
+ "blind": {
+ "key": "blind",
+ "type": "radio",
+ "options": [
+ "yes",
+ "limited",
+ "no"
+ ]
+ },
+ "bin": {
+ "key": "bin",
+ "type": "check"
+ },
+ "bike_ride": {
+ "key": "bike_ride",
+ "type": "check"
+ },
+ "bicycle_road": {
+ "key": "bicycle_road",
+ "type": "defaultCheck",
+ "locationSet": {
+ "exclude": [
+ "BE",
+ "NL"
+ ]
+ },
+ "options": [
+ "undefined",
+ "yes"
+ ]
+ },
+ "bicycle_parking": {
+ "key": "bicycle_parking",
+ "type": "combo",
+ "options": [
+ "stands",
+ "wall_loops",
+ "shed",
+ "lockers",
+ "building",
+ "handlebar_holder"
+ ]
+ },
+ "bench": {
+ "key": "bench",
+ "type": "check"
+ },
+ "beauty": {
+ "key": "beauty",
+ "type": "semiCombo",
+ "options": [
+ "nails",
+ "tanning",
+ "cosmetics",
+ "spa",
+ "skin_care",
+ "waxing",
+ "hair_removal"
+ ]
+ },
+ "basin": {
+ "key": "basin",
+ "type": "combo",
+ "options": [
+ "detention",
+ "evaporation",
+ "infiltration",
+ "retention"
+ ]
+ },
+ "barrier_planter": {
+ "key": "barrier",
+ "type": "defaultCheck",
+ "geometry": [
+ "vertex"
+ ],
+ "options": [
+ "undefined",
+ "planter"
+ ]
+ },
+ "barrier": {
+ "key": "barrier",
+ "type": "typeCombo",
+ "options": [
+ "fence",
+ "gate",
+ "wall",
+ "hedge",
+ "kerb",
+ "bollard",
+ "lift_gate",
+ "retaining_wall",
+ "block",
+ "guard_rail",
+ "cycle_barrier",
+ "stile",
+ "entrance",
+ "swing_gate",
+ "cattle_grid",
+ "ditch",
+ "toll_booth",
+ "city_wall",
+ "kissing_gate",
+ "chain",
+ "jersey_barrier",
+ "height_restrictor",
+ "turnstile"
+ ]
+ },
+ "bar": {
+ "key": "bar",
+ "type": "check"
+ },
+ "backrest": {
+ "key": "backrest",
+ "type": "check"
+ },
+ "backcountry": {
+ "key": "backcountry",
+ "type": "check"
+ },
+ "baby_seat": {
+ "key": "baby",
+ "type": "check"
+ },
+ "baby_feeding": {
+ "key": "baby_feeding",
"type": "combo",
"autoSuggestions": false,
"customValues": false,
"options": [
- "clockwise",
- "anticlockwise"
+ "room",
+ "yes",
+ "no"
]
},
- "direction_point": {
- "key": "direction",
- "type": "number",
- "label": "{direction}",
- "increment": 5,
- "geometry": [
- "point"
- ]
+ "automated": {
+ "key": "automated",
+ "type": "check"
},
- "direction_vertex_dual": {
- "key": "direction",
- "type": "combo",
- "label": "{direction_vertex}",
- "stringsCrossReference": "{direction_vertex}",
+ "attraction": {
+ "key": "attraction",
+ "type": "typeCombo",
"options": [
- "forward",
- "backward"
- ],
- "geometry": [
- "vertex"
- ],
- "autoSuggestions": false,
- "customValues": false
+ "animal",
+ "water_slide",
+ "amusement_ride",
+ "roller_coaster",
+ "carousel",
+ "maze",
+ "summer_toboggan",
+ "big_wheel",
+ "train",
+ "bumper_car",
+ "bungee_jumping",
+ "dark_ride",
+ "drop_tower",
+ "kiddie_ride",
+ "log_flume",
+ "pirate_ship",
+ "river_rafting",
+ "swing_carousel",
+ "alpine_coaster"
+ ]
},
- "direction_vertex": {
- "key": "direction",
+ "atm": {
+ "key": "atm",
+ "type": "check"
+ },
+ "athletics_track": {
+ "key": "athletics",
+ "type": "semiCombo",
+ "options": [
+ "javelin_throw",
+ "long_jump",
+ "pole_vault",
+ "running",
+ "sprint",
+ "steeplechase",
+ "triple_jump"
+ ]
+ },
+ "athletics_pitch": {
+ "key": "athletics",
+ "type": "semiCombo",
+ "options": [
+ "discus_throw",
+ "hammer_throw",
+ "high_jump",
+ "javelin_throw",
+ "long_jump",
+ "pole_vault",
+ "shot_put",
+ "triple_jump"
+ ]
+ },
+ "ascent": {
+ "key": "ascent",
+ "minValue": 0,
+ "type": "number"
+ },
+ "artwork_type": {
+ "key": "artwork_type",
"type": "combo",
- "geometry": [
- "vertex"
+ "options": [
+ "sculpture",
+ "statue",
+ "mural",
+ "installation",
+ "graffiti",
+ "bust",
+ "painting",
+ "mosaic",
+ "relief",
+ "stone",
+ "tilework"
+ ]
+ },
+ "artist": {
+ "key": "artist_name",
+ "type": "text"
+ },
+ "armrest": {
+ "key": "armrest",
+ "type": "check",
+ "options": [
+ "undefined",
+ "yes",
+ "no"
+ ]
+ },
+ "architect": {
+ "key": "architect",
+ "type": "text"
+ },
+ "archaeological_site": {
+ "key": "archaeological_site",
+ "type": "combo",
+ "options": [
+ "baths",
+ "city",
+ "crannog",
+ "enclosure",
+ "fortification",
+ "hut_circle",
+ "megalith",
+ "necropolis",
+ "petroglyph",
+ "roman_circus",
+ "roman_villa",
+ "settlement",
+ "tumulus"
+ ]
+ },
+ "animal_shelter": {
+ "key": "animal_shelter",
+ "type": "semiCombo"
+ },
+ "animal_breeding": {
+ "key": "animal_breeding",
+ "type": "semiCombo"
+ },
+ "animal_boarding": {
+ "key": "animal_boarding",
+ "type": "semiCombo"
+ },
+ "amenity": {
+ "key": "amenity",
+ "type": "typeCombo"
+ },
+ "alt_name": {
+ "key": "alt_name",
+ "type": "localized",
+ "universal": true,
+ "prerequisiteTag": {
+ "key": "name"
+ }
+ },
+ "air_conditioning": {
+ "key": "air_conditioning",
+ "type": "check"
+ },
+ "agrarian": {
+ "key": "agrarian",
+ "type": "semiCombo"
+ },
+ "aeroway": {
+ "key": "aeroway",
+ "type": "typeCombo"
+ },
+ "aerialway": {
+ "key": "aerialway",
+ "type": "typeCombo"
+ },
+ "advertising": {
+ "key": "advertising",
+ "type": "typeCombo"
+ },
+ "admin_level": {
+ "key": "admin_level",
+ "type": "number",
+ "minValue": 1
+ },
+ "address": {
+ "type": "address",
+ "key": "addr",
+ "reference": {
+ "key": "addr:*"
+ },
+ "keys": [
+ "addr:block_number",
+ "addr:city",
+ "addr:conscriptionnumber",
+ "addr:country",
+ "addr:county",
+ "addr:district",
+ "addr:floor",
+ "addr:hamlet",
+ "addr:housename",
+ "addr:housenumber",
+ "addr:neighbourhood",
+ "addr:place",
+ "addr:postcode",
+ "addr:province",
+ "addr:quarter",
+ "addr:state",
+ "addr:street",
+ "addr:subdistrict",
+ "addr:suburb",
+ "addr:town",
+ "addr:unit"
+ ]
+ },
+ "activity": {
+ "keys": [
+ "hiking",
+ "bicycle",
+ "mtb",
+ "horse",
+ "ski"
],
+ "type": "manyCombo",
+ "options": [
+ "hiking",
+ "bicycle",
+ "mtb",
+ "horse",
+ "ski"
+ ]
+ },
+ "access_simple": {
+ "key": "access",
+ "type": "combo",
+ "autoSuggestions": false,
+ "options": [
+ "yes",
+ "private",
+ "permissive",
+ "customers",
+ "permit",
+ "unknown",
+ "no"
+ ]
+ },
+ "access_aisle": {
+ "key": "access_aisle",
+ "type": "combo"
+ },
+ "access": {
+ "keys": [
+ "access",
+ "foot",
+ "motor_vehicle",
+ "bicycle",
+ "horse"
+ ],
+ "reference": {
+ "key": "access"
+ },
+ "type": "access",
+ "options": [
+ "yes",
+ "no",
+ "permissive",
+ "private",
+ "designated",
+ "destination",
+ "customers",
+ "dismount",
+ "permit",
+ "unknown"
+ ]
+ },
+ "windings/configuration": {
+ "key": "windings:configuration",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "star",
+ "delta",
+ "open-delta",
+ "zigzag",
+ "open",
+ "scott",
+ "leblanc"
+ ]
+ },
+ "windings/auto": {
+ "key": "windings:auto",
+ "type": "check",
+ "options": [
+ "undefined",
+ "yes",
+ "no"
+ ]
+ },
+ "website/menu": {
+ "key": "website:menu",
+ "type": "url"
+ },
+ "water_tank/volume": {
+ "key": "water_tank:volume",
+ "type": "text"
+ },
+ "voltage/tertiary": {
+ "key": "voltage:tertiary",
+ "type": "combo"
+ },
+ "voltage/secondary": {
+ "key": "voltage:secondary",
+ "type": "combo"
+ },
+ "voltage/primary": {
+ "key": "voltage:primary",
+ "type": "combo"
+ },
+ "volcano/type": {
+ "key": "volcano:type",
+ "type": "combo",
+ "icons": {
+ "stratovolcano": "roentgen-stratovolcano___smoke_2",
+ "shield": "roentgen-shield_volcano___smoke_2",
+ "scoria": "roentgen-volcanic_cone___smoke_2"
+ },
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "stratovolcano",
+ "shield",
+ "scoria"
+ ]
+ },
+ "volcano/status": {
+ "key": "volcano:status",
+ "type": "combo",
+ "icons": {
+ "active": "roentgen-stratovolcano___lava",
+ "dormant": "roentgen-stratovolcano___smoke",
+ "extinct": "roentgen-stratovolcano"
+ },
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "active",
+ "dormant",
+ "extinct"
+ ]
+ },
+ "traffic_signals/vibration": {
+ "key": "traffic_signals:vibration",
+ "type": "check"
+ },
+ "traffic_signals/sound": {
+ "key": "traffic_signals:sound",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "yes",
+ "no",
+ "locate",
+ "walk"
+ ]
+ },
+ "traffic_signals/minimap": {
+ "key": "traffic_signals:minimap",
+ "type": "check"
+ },
+ "traffic_signals/direction": {
+ "key": "traffic_signals:direction",
+ "type": "combo",
"autoSuggestions": false,
"customValues": false,
"options": [
@@ -1202,440 +4488,708 @@
"both"
]
},
- "direction": {
- "key": "direction",
- "type": "number",
- "increment": 5
- },
- "dispensing": {
- "key": "dispensing",
+ "traffic_signals/countdown": {
+ "key": "traffic_signals:countdown",
"type": "check"
},
- "display": {
- "key": "display",
- "type": "combo",
- "autoSuggestions": false,
- "options": [
- "analog",
- "digital",
- "sundial",
- "unorthodox"
- ]
+ "traffic_signals/arrow": {
+ "key": "traffic_signals:arrow",
+ "type": "check"
},
- "distance": {
- "key": "distance",
- "type": "text"
- },
- "disused/amenity": {
- "key": "disused:amenity",
- "type": "typeCombo"
- },
- "disused/railway": {
- "key": "disused:railway",
- "type": "typeCombo"
- },
- "disused/shop": {
- "key": "disused:shop",
- "type": "typeCombo"
- },
- "dock": {
- "key": "dock",
- "type": "combo"
- },
- "dog": {
- "key": "dog",
+ "traffic_sign/direction": {
+ "key": "traffic_sign:direction",
"type": "combo",
"autoSuggestions": false,
"customValues": false,
- "options": [
- "yes",
- "leashed",
- "no"
- ]
- },
- "door_type": {
- "key": "door",
- "type": "typeCombo"
- },
- "door": {
- "key": "door",
- "type": "combo"
- },
- "drink_multi": {
- "key": "drink:",
- "type": "multiCombo"
- },
- "drinking_water_available": {
- "key": "drinking_water",
- "type": "check"
- },
- "drinking_water": {
- "key": "drinking_water",
- "type": "check"
- },
- "drive_through": {
- "key": "drive_through",
- "type": "check"
- },
- "duration": {
- "key": "duration",
- "type": "text"
- },
- "ele_node": {
- "key": "ele",
- "type": "number",
- "label": "{ele}",
- "universal": true,
"geometry": [
- "point",
"vertex"
+ ],
+ "options": [
+ "forward",
+ "backward",
+ "both"
]
},
- "ele": {
- "key": "ele",
+ "townhall/type": {
+ "key": "townhall:type",
+ "type": "combo"
+ },
+ "tower/type": {
+ "key": "tower:type",
+ "type": "combo"
+ },
+ "tower/platforms": {
+ "key": "tower:platforms",
"type": "number",
- "geometry": [
- "line",
- "area",
- "relation"
- ]
+ "minValue": 1
},
- "electrified": {
- "key": "electrified",
+ "tower/construction": {
+ "key": "tower:construction",
"type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "contact_line",
- "rail",
- "yes",
- "no"
- ]
- },
- "email": {
- "key": "email",
- "type": "email"
- },
- "embankment": {
- "key": "embankment",
- "type": "typeCombo",
- "usage": "group"
- },
- "embassy": {
- "key": "embassy",
- "type": "combo",
- "autoSuggestions": false,
- "options": [
- "yes",
- "residence",
- "high_commission",
- "mission",
- "branch_embassy",
- "nunciature",
- "delegation",
- "interests_section"
- ]
- },
- "emergency_combo": {
- "key": "emergency",
- "type": "combo"
- },
- "emergency_ward_entrance": {
- "key": "emergency_ward_entrance",
- "type": "combo"
- },
- "emergency": {
- "key": "emergency",
- "type": "check"
- },
- "enforcement": {
- "key": "enforcement",
- "type": "combo"
- },
- "entrance": {
- "key": "entrance",
- "type": "typeCombo",
- "options": [
- "yes",
- "main",
- "secondary",
- "service",
- "exit",
- "entrance",
- "emergency",
- "staircase",
- "home",
- "garage"
- ]
- },
- "except": {
- "key": "except",
- "type": "combo"
- },
- "expected_rcn_route_relations": {
- "key": "expected_rcn_route_relations",
- "type": "number"
- },
- "expected_rwn_route_relations": {
- "key": "expected_rwn_route_relations",
- "type": "number"
- },
- "expressway-US": {
- "key": "expressway",
- "type": "check",
- "locationSet": {
- "include": [
- "US"
- ]
+ "icons": {
+ "freestanding": "roentgen-tube",
+ "guyed_lattice": "roentgen-lattice_guyed",
+ "guyed_tube": "roentgen-tube_guyed",
+ "lattice": "roentgen-lattice",
+ "dish": "fas-satellite-dish"
}
},
- "faces": {
- "key": "faces",
- "type": "number",
- "minValue": 0
- },
- "fax": {
- "key": "fax",
- "type": "tel"
- },
- "fee": {
- "key": "fee",
- "type": "check"
- },
- "fence_type": {
- "key": "fence_type",
- "type": "combo"
- },
- "fire_hydrant/diameter": {
- "key": "fire_hydrant:diameter",
- "type": "combo",
- "snake_case": false
- },
- "fire_hydrant/position": {
- "key": "fire_hydrant:position",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "green",
- "lane",
- "sidewalk",
- "parking_lot"
- ]
- },
- "fire_hydrant/pressure": {
- "key": "fire_hydrant:pressure",
- "type": "combo",
- "snake_case": false,
- "caseSensitive": true
- },
- "fire_hydrant/type": {
- "key": "fire_hydrant:type",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "pillar",
- "underground",
- "wall",
- "pipe"
- ]
- },
- "fireplace": {
- "key": "fireplace",
- "type": "check"
- },
- "fishing": {
- "key": "fishing",
- "type": "combo"
- },
- "fitness_station": {
- "key": "fitness_station",
- "type": "typeCombo"
- },
- "fixme": {
- "key": "fixme",
- "type": "textarea",
- "universal": true
- },
- "flag/name": {
- "key": "flag:name",
- "type": "text"
- },
- "flag/type": {
- "key": "flag:type",
- "type": "combo"
- },
- "flag/wikidata": {
- "key": "flag:wikidata",
- "keys": [
- "flag:wikidata",
- "flag:wikipedia"
- ],
- "type": "wikidata"
- },
- "flashing_lights": {
- "key": "flashing_lights",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "button",
- "always",
- "sensor",
- "button;sensor",
- "no",
- "yes"
- ]
- },
- "floating": {
- "key": "floating",
- "type": "check"
- },
- "flood_prone": {
- "key": "flood_prone",
- "type": "check"
- },
- "ford": {
- "key": "ford",
- "type": "typeCombo",
- "usage": "group"
- },
- "fountain": {
- "key": "fountain",
- "type": "combo"
- },
- "frequency_electrified": {
- "key": "frequency",
- "type": "combo",
- "label": "{frequency}",
+ "toilets/wheelchair": {
+ "key": "toilets:wheelchair",
+ "type": "radio",
"prerequisiteTag": {
- "key": "electrified",
+ "key": "toilets",
+ "valueNot": "no"
+ },
+ "options": [
+ "yes",
+ "limited",
+ "no"
+ ]
+ },
+ "toilets/position": {
+ "key": "toilets:position",
+ "type": "semiCombo"
+ },
+ "toilets/menstrual_products_poi": {
+ "key": "toilets:menstrual_products",
+ "type": "radio",
+ "stringsCrossReference": "{toilets/menstrual_products}",
+ "label": "{toilets/menstrual_products}",
+ "prerequisiteTag": {
+ "key": "toilets",
"valueNot": "no"
}
},
- "frequency": {
- "key": "frequency",
- "type": "combo"
- },
- "from": {
- "key": "from",
- "type": "text"
- },
- "fuel": {
- "key": "fuel",
- "type": "combo"
- },
- "fuel/fuel_multi-RU": {
- "key": "fuel:",
- "type": "multiCombo",
- "label": "{fuel/fuel_multi}",
- "stringsCrossReference": "{fuel/fuel_multi}",
+ "toilets/menstrual_products": {
+ "key": "toilets:menstrual_products",
+ "type": "radio",
"options": [
- "diesel",
- "octane_80",
- "octane_92",
- "octane_95",
- "octane_98",
- "octane_100",
- "lpg",
- "cng"
- ],
+ "yes",
+ "limited",
+ "no"
+ ]
+ },
+ "toilets/handwashing": {
+ "key": "toilets:handwashing",
+ "type": "check"
+ },
+ "toilets/disposal": {
+ "key": "toilets:disposal",
+ "type": "combo",
"autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "flush",
+ "pitlatrine",
+ "chemical",
+ "bucket"
+ ]
+ },
+ "telescope/type": {
+ "key": "telescope:type",
+ "type": "combo",
+ "icons": {
+ "optical": "temaki-telescope",
+ "radio": "roentgen-telescope-radio"
+ },
+ "autoSuggestions": true,
+ "customValues": true,
+ "options": [
+ "optical",
+ "radio"
+ ]
+ },
+ "telecom/medium": {
+ "key": "telecom:medium",
+ "type": "combo"
+ },
+ "survey_point/structure": {
+ "key": "survey_point:structure",
+ "type": "combo",
+ "options": [
+ "beacon",
+ "block",
+ "pole",
+ "pillar",
+ "bracket",
+ "plaque",
+ "medallion",
+ "cairn",
+ "pin",
+ "indented_pin",
+ "cut",
+ "magnet"
+ ]
+ },
+ "survey_point/purpose": {
+ "key": "survey_point:purpose",
+ "type": "combo",
+ "options": [
+ "horizontal",
+ "vertical",
+ "both"
+ ]
+ },
+ "survey_point/datum_aligned": {
+ "key": "survey_point:datum_aligned",
+ "type": "check"
+ },
+ "survey/date": {
+ "key": "survey:date",
+ "type": "date"
+ },
+ "surveillance/zone": {
+ "key": "surveillance:zone",
+ "type": "combo"
+ },
+ "surveillance/type": {
+ "key": "surveillance:type",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "camera",
+ "guard",
+ "ALPR"
+ ]
+ },
+ "summit/cross": {
+ "key": "summit:cross",
+ "type": "check"
+ },
+ "subject/wikidata": {
+ "key": "subject:wikidata",
+ "keys": [
+ "subject:wikidata",
+ "subject:wikipedia"
+ ],
+ "type": "wikidata"
+ },
+ "sport/sport_racing_nonmotor": {
+ "key": "sport",
+ "type": "semiCombo",
+ "options": [
+ "running",
+ "cycling",
+ "bmx",
+ "horse_racing",
+ "dog_racing",
+ "athletics"
+ ],
+ "stringsCrossReference": "{sport}",
+ "autoSuggestions": false
+ },
+ "sport/sport_racing_motor": {
+ "key": "sport",
+ "type": "semiCombo",
+ "options": [
+ "motor",
+ "karting",
+ "motocross",
+ "speedway"
+ ],
+ "stringsCrossReference": "{sport}",
+ "autoSuggestions": false
+ },
+ "sport/sport_pub": {
+ "key": "sport",
+ "type": "semiCombo",
+ "options": [
+ "table_soccer",
+ "billiards",
+ "darts"
+ ],
+ "stringsCrossReference": "{sport}",
+ "autoSuggestions": false
+ },
+ "sport/sport_ice": {
+ "key": "sport",
+ "type": "semiCombo",
+ "options": [
+ "ice_skating",
+ "ice_hockey",
+ "curling",
+ "ice_stock",
+ "multi"
+ ],
+ "stringsCrossReference": "{sport}",
+ "autoSuggestions": false
+ },
+ "species/wikidata": {
+ "key": "species:wikidata",
+ "keys": [
+ "species:wikidata",
+ "species:wikipedia"
+ ],
+ "type": "wikidata"
+ },
+ "source/population": {
+ "key": "source:population",
+ "type": "combo",
+ "prerequisiteTag": {
+ "key": "population"
+ },
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "siren/type": {
+ "key": "siren:type",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "pneumatic",
+ "electronic",
+ "other"
+ ]
+ },
+ "siren/purpose": {
+ "key": "siren:purpose",
+ "type": "combo"
+ },
+ "service/vehicle": {
+ "key": "service:vehicle:",
+ "type": "multiCombo"
+ },
+ "service/bicycle": {
+ "key": "service:bicycle:",
+ "type": "multiCombo"
+ },
+ "seamark/type": {
+ "key": "seamark:type",
+ "type": "combo"
+ },
+ "seamark/wreck/category": {
+ "key": "seamark:wreck:category",
+ "type": "combo"
+ },
+ "seamark/rescue_station/category": {
+ "key": "seamark:rescue_station:category",
+ "type": "semiCombo",
+ "options": [
+ "lifeboat",
+ "lifeboat_on_mooring",
+ "seaplane",
+ "aircraft",
+ "hovercraft",
+ "radio",
+ "first_aid",
+ "refuge_shipwrecked",
+ "refuge_intertidal",
+ "tug"
+ ]
+ },
+ "seamark/mooring/category": {
+ "key": "seamark:mooring:category",
+ "type": "combo"
+ },
+ "seamark/harbour/category_marina": {
+ "key": "seamark:harbour:category",
+ "type": "check",
+ "options": [
+ "marina",
+ "marina_no_facilities"
+ ]
+ },
+ "seamark/buoy_lateral/system": {
+ "key": "seamark:buoy_lateral:system",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "iala-a",
+ "iala-b",
+ "cevni",
+ "other"
+ ]
+ },
+ "seamark/buoy_lateral/shape": {
+ "key": "seamark:buoy_lateral:shape",
+ "type": "combo"
+ },
+ "seamark/buoy_lateral/colour": {
+ "key": "seamark:buoy_lateral:colour",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "red",
+ "green",
+ "red;white;red;white",
+ "green;white;green;white",
+ "red;green;red",
+ "green;red;green",
+ "white",
+ "yellow"
+ ]
+ },
+ "seamark/buoy_lateral/category": {
+ "key": "seamark:buoy_lateral:category",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "port",
+ "starboard",
+ "channel_left",
+ "channel_right",
+ "waterway_left",
+ "waterway_right",
+ "danger_left",
+ "danger_right",
+ "preferred_channel_port",
+ "preferred_channel_starboard"
+ ]
+ },
+ "seamark/beacon_lateral/system": {
+ "key": "seamark:beacon_lateral:system",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "iala-a",
+ "iala-b",
+ "cevni",
+ "other"
+ ]
+ },
+ "seamark/beacon_lateral/shape": {
+ "key": "seamark:beacon_lateral:shape",
+ "type": "combo"
+ },
+ "seamark/beacon_lateral/colour": {
+ "key": "seamark:beacon_lateral:colour",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "red",
+ "green",
+ "grey"
+ ]
+ },
+ "seamark/beacon_lateral/category": {
+ "key": "seamark:beacon_lateral:category",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "port",
+ "starboard",
+ "waterway_left",
+ "waterway_right",
+ "danger_left",
+ "danger_right"
+ ]
+ },
+ "seamark/beacon_isolated_danger/shape": {
+ "key": "seamark:beacon_isolated_danger:shape",
+ "type": "combo"
+ },
+ "rotor/diameter": {
+ "key": "rotor:diameter",
+ "minValue": 0,
+ "type": "number"
+ },
+ "roof/shape": {
+ "key": "roof:shape",
+ "type": "combo",
+ "autoSuggestions": true,
+ "customValues": false,
+ "options": [
+ "flat",
+ "gabled",
+ "gabled_height_moved",
+ "skillion",
+ "hipped",
+ "half-hipped",
+ "side_hipped",
+ "side_half-hipped",
+ "mansard",
+ "gambrel",
+ "hipped-and-gabled",
+ "pyramidal",
+ "crosspitched",
+ "sawtooth",
+ "butterfly",
+ "cone",
+ "dome",
+ "onion",
+ "round"
+ ]
+ },
+ "roof/height": {
+ "key": "roof:height",
+ "minValue": 0,
+ "type": "number"
+ },
+ "roof/colour": {
+ "key": "roof:colour",
+ "type": "colour"
+ },
+ "roller_coaster/track": {
+ "key": "roller_coaster:track",
+ "type": "combo",
+ "options": [
+ "lift_hill",
+ "launch_straight",
+ "brake_run",
+ "station",
+ "moving",
+ "waiting",
+ "maintenance"
+ ]
+ },
+ "ref/vatin": {
+ "key": "ref:vatin",
+ "type": "identifier",
"locationSet": {
- "include": [
- "RU"
+ "exclude": [
+ "ai",
+ "ao",
+ "bm",
+ "bn",
+ "bt",
+ "cu",
+ "dj",
+ "er",
+ "fk",
+ "fm",
+ "gg",
+ "gi",
+ "gs",
+ "hk",
+ "io",
+ "iq",
+ "ki",
+ "km",
+ "kp",
+ "kw",
+ "ky",
+ "lr",
+ "ly",
+ "mh",
+ "mm",
+ "mo",
+ "ms",
+ "mv",
+ "nr",
+ "om",
+ "pn",
+ "pw",
+ "qa",
+ "sb",
+ "sh",
+ "sm",
+ "so",
+ "sr",
+ "ss",
+ "st",
+ "sy",
+ "sz",
+ "tc",
+ "tl",
+ "tv",
+ "us",
+ "va",
+ "vg",
+ "xk",
+ "ye"
]
}
},
- "fuel/fuel_multi": {
- "key": "fuel:",
- "type": "multiCombo",
- "autoSuggestions": true,
- "caseSensitive": true,
+ "ref/isil": {
+ "key": "ref:isil",
+ "type": "text"
+ },
+ "ref/edubase-GB": {
+ "key": "ref:edubase",
+ "type": "identifier",
+ "urlFormat": "https://get-information-schools.service.gov.uk/Establishments/Establishment/Details/{value}",
+ "pattern": "^[0-9]{1,}$",
"locationSet": {
- "exclude": [
- "RU"
+ "include": [
+ "gb"
]
- },
- "options": [
- "diesel",
- "GTL_diesel",
- "HGV_diesel",
- "biodiesel",
- "octane_80",
- "octane_85",
- "octane_87",
- "octane_88",
- "octane_89",
- "octane_90",
- "octane_91",
- "octane_92",
- "octane_93",
- "octane_95",
- "octane_97",
- "octane_98",
- "octane_100",
- "e10",
- "e85",
- "lpg",
- "cng",
- "propane",
- "LH2",
- "h70",
- "adblue",
- "adblue:canister"
- ]
+ }
},
- "gambling": {
- "key": "gambling",
- "type": "semiCombo"
+ "ref/linz/place_id-NZ": {
+ "key": "ref:linz:place_id",
+ "type": "identifier",
+ "urlFormat": "http://gazetteer.linz.govt.nz/place/{value}",
+ "pattern": "^[0-9;]{1,}$",
+ "universal": true,
+ "locationSet": {
+ "include": [
+ "nz",
+ "aq"
+ ]
+ }
},
- "garden/type": {
- "key": "garden:type",
- "type": "combo"
+ "ref/FR/siret-FR": {
+ "key": "ref:FR:SIRET",
+ "type": "identifier",
+ "urlFormat": "https://annuaire-entreprises.data.gouv.fr/etablissement/{value}",
+ "pattern": "^MONACO[A-Z\\d]{5}001|\\d{9}([1-7]\\d{3}|0[1-9]\\d{2}|00[1-9]\\d|000[1-9])\\d$",
+ "locationSet": {
+ "include": [
+ "fr"
+ ]
+ }
},
- "gauge": {
- "key": "gauge",
- "type": "combo"
+ "railway/track_ref": {
+ "key": "railway:track_ref",
+ "type": "text"
},
- "gender": {
- "type": "radio",
- "keys": [
- "male",
- "female",
- "unisex"
- ],
- "options": [
- "male",
- "female",
- "unisex"
- ]
- },
- "generator/method": {
- "key": "generator:method",
+ "railway/switch": {
+ "key": "railway:switch",
"type": "combo",
"autoSuggestions": false,
+ "customValues": true,
"options": [
- "fission",
- "fusion",
- "wind_turbine",
- "water-storage",
- "water-pumped-storage",
- "run-of-the-river",
- "barrage",
- "stream",
- "thermal",
- "photovoltaic",
- "combustion",
- "gasification",
- "anaerobic_digestion"
+ "default",
+ "double_slip",
+ "single_slip",
+ "wye",
+ "three_way",
+ "abt"
]
},
- "generator/method/hydro": {
- "key": "generator:method",
+ "railway/position": {
+ "key": "railway:position",
+ "type": "text"
+ },
+ "railway/signal/direction": {
+ "key": "railway:signal:direction",
"type": "combo",
- "label": "{generator/method}",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "forward",
+ "backward",
+ "both"
+ ]
+ },
+ "public_bookcase/type": {
+ "key": "public_bookcase:type",
+ "type": "combo"
+ },
+ "post_box/type": {
+ "key": "post_box:type",
+ "locationSet": {
+ "exclude": [
+ "gb"
+ ]
+ },
+ "type": "typeCombo",
+ "autoSuggestions": true,
+ "customValues": true,
+ "options": [
+ "pillar",
+ "lamp",
+ "wall"
+ ]
+ },
+ "post_box/type-GB": {
+ "key": "post_box:type",
+ "locationSet": {
+ "include": [
+ "gb"
+ ]
+ },
+ "type": "typeCombo",
+ "label": "{post_box/type}",
+ "stringsCrossReference": "{post_box/type}",
+ "options": [
+ "pillar",
+ "lamp",
+ "wall"
+ ],
+ "autoSuggestions": false,
+ "customValues": false
+ },
+ "population/date": {
+ "key": "population:date",
+ "type": "text",
+ "prerequisiteTag": {
+ "key": "population"
+ }
+ },
+ "playground/theme": {
+ "key": "playground:theme",
+ "type": "combo"
+ },
+ "plant/source": {
+ "key": "plant:source",
+ "type": "combo",
+ "stringsCrossReference": "{generator/source}"
+ },
+ "plant/output": {
+ "key": "plant:output",
+ "type": "multiCombo",
+ "autoSuggestions": false,
+ "options": [
+ "electricity",
+ "hot_water",
+ "hot_air",
+ "cold_water",
+ "cold_air",
+ "compressed_air",
+ "steam",
+ "vacuum"
+ ]
+ },
+ "plant/method": {
+ "key": "plant:method",
+ "type": "combo",
+ "stringsCrossReference": "{generator/method}",
+ "autoSuggestions": false
+ },
+ "plant/output/electricity": {
+ "key": "plant:output:electricity",
+ "type": "typeCombo",
+ "snake_case": false,
+ "caseSensitive": true,
+ "prerequisiteTag": {
+ "key": "plant:output:electricity",
+ "valueNot": "no"
+ }
+ },
+ "plant/method/waste": {
+ "key": "plant:method",
+ "type": "combo",
+ "label": "{plant/method}",
+ "stringsCrossReference": "{generator/method}",
+ "options": [
+ "combustion",
+ "gasification"
+ ],
+ "autoSuggestions": false,
+ "prerequisiteTag": {
+ "key": "plant:source",
+ "value": "waste"
+ }
+ },
+ "plant/method/solar": {
+ "key": "plant:method",
+ "type": "combo",
+ "label": "{plant/method}",
+ "stringsCrossReference": "{generator/method}",
+ "options": [
+ "thermal",
+ "photovoltaic"
+ ],
+ "autoSuggestions": false,
+ "prerequisiteTag": {
+ "key": "plant:source",
+ "value": "solar"
+ }
+ },
+ "plant/method/hydro": {
+ "key": "plant:method",
+ "type": "combo",
+ "label": "{plant/method}",
"stringsCrossReference": "{generator/method}",
"options": [
"water-storage",
@@ -1644,102 +5198,416 @@
],
"autoSuggestions": false,
"prerequisiteTag": {
- "key": "generator:source",
+ "key": "plant:source",
"value": "hydro"
}
},
- "generator/output/electricity": {
- "key": "generator:output:electricity",
+ "piste/type": {
+ "key": "piste:type",
"type": "typeCombo",
- "snake_case": false,
- "caseSensitive": true
- },
- "generator/source": {
- "key": "generator:source",
- "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
"options": [
- "nuclear",
- "wind",
- "hydro",
- "tidal",
- "wave",
- "geothermal",
- "solar",
- "coal",
- "gas",
- "biomass",
- "biofuel",
- "biogas",
- "oil",
- "diesel",
- "gasoline",
- "waste",
- "battery"
+ "downhill",
+ "nordic",
+ "skitour",
+ "sled",
+ "hike",
+ "sleigh",
+ "ice_skate",
+ "snow_park",
+ "playground",
+ "connection",
+ "ski_jump"
]
},
- "generator/type": {
- "key": "generator:type",
- "type": "combo"
- },
- "genus": {
- "key": "genus",
+ "piste/grooming_nordic": {
+ "key": "piste:grooming",
"type": "combo",
- "snake_case": false,
- "caseSensitive": true
+ "label": "{piste/grooming}",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "classic",
+ "backcountry",
+ "classic+skating",
+ "scooter",
+ "skating"
+ ]
},
- "geyser/height": {
- "key": "geyser:height",
- "type": "text"
+ "piste/grooming_hike": {
+ "key": "piste:grooming",
+ "type": "combo",
+ "label": "{piste/grooming}",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "classic",
+ "backcountry"
+ ]
},
- "gnis/feature_id-US": {
- "key": "gnis:feature_id",
- "type": "identifier",
- "urlFormat": "https://edits.nationalmap.gov/apps/gaz-domestic/public/summary/{value}",
- "pattern": "^[0-9]{1,}$",
- "locationSet": {
- "include": [
- "us"
- ]
+ "piste/grooming_downhill": {
+ "key": "piste:grooming",
+ "type": "combo",
+ "label": "{piste/grooming}",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "classic",
+ "mogul",
+ "backcountry"
+ ]
+ },
+ "piste/grooming": {
+ "key": "piste:grooming",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "classic",
+ "mogul",
+ "backcountry",
+ "classic+skating",
+ "scooter",
+ "skating"
+ ]
+ },
+ "piste/difficulty_skitour": {
+ "key": "piste:difficulty",
+ "type": "combo",
+ "label": "{piste/difficulty}",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "novice",
+ "easy",
+ "intermediate",
+ "advanced",
+ "expert",
+ "freeride",
+ "extreme"
+ ]
+ },
+ "piste/difficulty_nordic": {
+ "key": "piste:difficulty",
+ "type": "combo",
+ "label": "{piste/difficulty}",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "novice",
+ "easy",
+ "intermediate",
+ "advanced",
+ "expert"
+ ]
+ },
+ "piste/difficulty_downhill": {
+ "key": "piste:difficulty",
+ "type": "combo",
+ "label": "{piste/difficulty}",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "novice",
+ "easy",
+ "intermediate",
+ "advanced",
+ "expert",
+ "freeride",
+ "extreme"
+ ]
+ },
+ "piste/difficulty": {
+ "key": "piste:difficulty",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "novice",
+ "easy",
+ "intermediate",
+ "advanced",
+ "expert",
+ "freeride",
+ "extreme"
+ ]
+ },
+ "parking/side/parking": {
+ "key": "parking:both",
+ "keys": [
+ "parking:left",
+ "parking:right"
+ ],
+ "reference": {
+ "key": "parking"
+ },
+ "type": "directionalCombo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "lane",
+ "street_side",
+ "on_kerb",
+ "half_on_kerb",
+ "shoulder",
+ "no",
+ "separate",
+ "yes"
+ ]
+ },
+ "parking/side/orientation": {
+ "key": "parking:both:orientation",
+ "keys": [
+ "parking:left:orientation",
+ "parking:right:orientation"
+ ],
+ "reference": {
+ "key": "orientation"
+ },
+ "type": "directionalCombo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "parallel",
+ "diagonal",
+ "perpendicular"
+ ]
+ },
+ "orientation/orientation_parking": {
+ "key": "orientation",
+ "type": "combo",
+ "options": [
+ "parallel",
+ "diagonal",
+ "perpendicular"
+ ],
+ "stringsCrossReference": "{parking/side/orientation}",
+ "autoSuggestions": false
+ },
+ "operator/type": {
+ "key": "operator:type",
+ "type": "combo",
+ "prerequisiteTag": {
+ "key": "operator"
}
},
- "government": {
- "key": "government",
- "type": "typeCombo"
- },
- "grades": {
- "key": "grades",
+ "opening_hours/drive_through": {
+ "key": "opening_hours:drive_through",
"type": "combo",
+ "prerequisiteTag": {
+ "key": "drive_through",
+ "value": "yes"
+ },
"snake_case": false,
"caseSensitive": true
},
- "grape_variety": {
- "key": "grape_variety",
- "type": "semiCombo"
+ "oneway/bicycle": {
+ "key": "oneway:bicycle",
+ "type": "check",
+ "prerequisiteTag": {
+ "key": "oneway"
+ }
},
- "group_only": {
- "key": "group_only",
- "type": "check"
+ "not/name": {
+ "key": "not:name",
+ "type": "semiCombo",
+ "snake_case": false,
+ "caseSensitive": true
},
- "guest_house": {
- "key": "guest_house",
+ "network/type": {
+ "key": "network:type",
+ "type": "combo",
+ "prerequisiteTag": {
+ "key": "network"
+ }
+ },
+ "mtb/scale": {
+ "key": "mtb:scale",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "0",
+ "1",
+ "2",
+ "3",
+ "4",
+ "5",
+ "6"
+ ]
+ },
+ "mtb/scale/uphill": {
+ "key": "mtb:scale:uphill",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "0",
+ "1",
+ "2",
+ "3",
+ "4",
+ "5"
+ ]
+ },
+ "mtb/scale/imba": {
+ "key": "mtb:scale:imba",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "0",
+ "1",
+ "2",
+ "3",
+ "4"
+ ]
+ },
+ "model/wikidata": {
+ "key": "model:wikidata",
+ "keys": [
+ "model:wikidata",
+ "model:wikipedia"
+ ],
+ "type": "wikidata"
+ },
+ "memorial/addr_subtags": {
+ "type": "address",
+ "key": "memorial:addr",
+ "keys": [
+ "memorial:addr:city",
+ "memorial:addr:housename",
+ "memorial:addr:housenumber",
+ "memorial:addr:place",
+ "memorial:addr:postcode",
+ "memorial:addr:street"
+ ],
+ "label": "{memorial/addr}",
+ "prerequisiteTag": {
+ "key": "memorial:addr:street"
+ }
+ },
+ "memorial/addr": {
+ "type": "text",
+ "key": "memorial:addr",
+ "prerequisiteTag": {
+ "keyNot": "memorial:addr:street"
+ }
+ },
+ "maxwidth/physical": {
+ "key": "maxwidth:physical",
+ "type": "roadheight",
+ "snake_case": false
+ },
+ "maxspeed/hgv": {
+ "key": "maxspeed:hgv",
+ "type": "roadspeed"
+ },
+ "maxspeed/advisory": {
+ "key": "maxspeed:advisory",
+ "type": "roadspeed"
+ },
+ "manufacturer/wikidata": {
+ "key": "manufacturer:wikidata",
+ "keys": [
+ "manufacturer:wikidata",
+ "manufacturer:wikipedia"
+ ],
+ "type": "wikidata"
+ },
+ "lift_gate/type": {
+ "key": "lift_gate:type",
+ "type": "combo",
+ "reference": {
+ "key": "barrier",
+ "value": "lift_gate"
+ },
+ "options": [
+ "single",
+ "double"
+ ]
+ },
+ "kerb/kerb_barrier": {
+ "key": "kerb",
+ "type": "combo",
+ "stringsCrossReference": "{kerb}",
+ "options": [
+ "flush",
+ "lowered",
+ "raised",
+ "rolled"
+ ],
+ "autoSuggestions": false,
+ "iconsCrossReference": "{kerb}"
+ },
+ "kerb/height": {
+ "key": "kerb:height",
+ "type": "combo",
+ "snake_case": false
+ },
+ "junction/ref_oneway": {
+ "key": "junction:ref",
+ "type": "text",
+ "prerequisiteTag": {
+ "key": "oneway",
+ "value": "yes"
+ }
+ },
+ "internet_access/ssid": {
+ "key": "internet_access:ssid",
+ "type": "text",
+ "prerequisiteTag": {
+ "key": "internet_access",
+ "valueNot": "no"
+ }
+ },
+ "internet_access/fee": {
+ "key": "internet_access:fee",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "prerequisiteTag": {
+ "key": "internet_access",
+ "valueNot": "no"
+ },
+ "options": [
+ "no",
+ "yes",
+ "customers"
+ ]
+ },
+ "holding_position/type": {
+ "key": "holding_position:type",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "runway",
+ "intermediate",
+ "ILS"
+ ]
+ },
+ "historic/civilization": {
+ "key": "historic:civilization",
"type": "combo"
},
- "handicap": {
- "key": "handicap",
- "type": "number"
- },
- "handrail": {
- "key": "handrail",
+ "historic/wreck/visible_at_low_tide": {
+ "key": "wreck:visible_at_low_tide",
"type": "check"
},
- "hashtags": {
- "key": "hashtags",
- "type": "semiCombo",
- "usage": "changeset"
+ "historic/wreck/visible_at_high_tide": {
+ "key": "wreck:visible_at_high_tide",
+ "type": "check"
},
- "healthcare": {
- "key": "healthcare",
- "type": "typeCombo"
+ "historic/wreck/date_sunk": {
+ "key": "wreck:date_sunk",
+ "type": "date"
+ },
+ "height/hub": {
+ "key": "height:hub",
+ "minValue": 0,
+ "type": "number"
},
"healthcare/speciality": {
"key": "healthcare:speciality",
@@ -1832,1060 +5700,78 @@
"vascular_surgery"
]
},
- "heating": {
- "key": "heating",
- "type": "check"
- },
- "height_building": {
- "key": "height",
- "minValue": 0,
- "type": "number",
- "prerequisiteTag": {
- "key": "building",
- "valueNot": "no"
- }
- },
- "height": {
- "key": "height",
- "minValue": 0,
- "type": "number"
- },
- "height/hub": {
- "key": "height:hub",
- "minValue": 0,
- "type": "number"
- },
- "highchair": {
- "key": "highchair",
- "type": "check"
- },
- "highspeed": {
- "key": "highspeed",
- "type": "check"
- },
- "highway_cartpath": {
- "key": "highway",
- "type": "typeCombo",
- "autoSuggestions": false,
- "options": [
- "path",
- "service"
- ]
- },
- "highway": {
- "key": "highway",
- "type": "typeCombo"
- },
- "historic": {
- "key": "historic",
- "type": "typeCombo"
- },
- "historic/civilization": {
- "key": "historic:civilization",
- "type": "combo"
- },
- "historic/wreck/date_sunk": {
- "key": "wreck:date_sunk",
- "type": "text"
- },
- "historic/wreck/visible_at_high_tide": {
- "key": "wreck:visible_at_high_tide",
- "type": "check"
- },
- "historic/wreck/visible_at_low_tide": {
- "key": "wreck:visible_at_low_tide",
- "type": "check"
- },
- "holding_position/type": {
- "key": "holding_position:type",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "runway",
- "intermediate",
- "ILS"
- ]
- },
- "hoops": {
- "key": "hoops",
- "type": "number",
- "minValue": 0
- },
- "horse_dressage": {
- "key": "sport",
- "type": "check",
- "reference": {
- "key": "sport",
- "value": "equestrian"
- },
- "options": [
- "undefined",
- "equestrian"
- ]
- },
- "horse_riding": {
- "key": "leisure",
- "type": "check",
- "reference": {
- "key": "leisure",
- "value": "horse_riding"
- },
- "options": [
- "undefined",
- "horse_riding"
- ]
- },
- "horse_scale": {
- "key": "horse_scale",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "common",
- "demanding",
- "difficult",
- "critical",
- "dangerous",
- "impossible"
- ]
- },
- "horse_stables": {
- "key": "amenity",
- "type": "check",
- "reference": {
- "key": "amenity",
- "value": "stables"
- },
- "options": [
- "undefined",
- "stables"
- ]
- },
- "hot_water": {
- "key": "hot_water",
- "type": "check"
- },
- "iata": {
- "key": "iata",
- "type": "text"
- },
- "icao": {
- "key": "icao",
- "type": "text"
- },
- "image": {
- "key": "image",
- "type": "url",
- "universal": true
- },
- "incline_steps": {
- "key": "incline",
- "type": "combo",
- "label": "{incline}",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "up",
- "down"
- ]
- },
- "incline": {
- "key": "incline",
- "type": "combo"
- },
- "indoor_type": {
- "key": "indoor",
- "type": "typeCombo"
- },
- "indoor": {
- "key": "indoor",
- "type": "check"
- },
- "industrial": {
- "key": "industrial",
- "type": "combo"
- },
- "informal": {
- "key": "informal",
- "type": "check"
- },
- "information": {
- "key": "information",
- "type": "typeCombo"
- },
- "inscription": {
- "key": "inscription",
- "type": "textarea"
- },
- "intermittent_yes": {
- "key": "intermittent",
- "type": "check",
- "label": "{intermittent}",
- "default": "yes"
- },
- "intermittent": {
- "key": "intermittent",
- "type": "check"
- },
- "internet_access": {
- "key": "internet_access",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "yes",
- "no",
- "wlan",
- "wired",
- "terminal"
- ]
- },
- "internet_access/fee": {
- "key": "internet_access:fee",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "prerequisiteTag": {
- "key": "internet_access",
- "valueNot": "no"
- },
- "options": [
- "no",
- "yes",
- "customers"
- ]
- },
- "internet_access/ssid": {
- "key": "internet_access:ssid",
- "type": "text",
- "prerequisiteTag": {
- "key": "internet_access",
- "valueNot": "no"
- }
- },
- "interval": {
- "key": "interval",
- "type": "text"
- },
- "junction_line": {
- "key": "junction",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "roundabout",
- "circular",
- "jughandle"
- ]
- },
- "junction/ref_oneway": {
- "key": "junction:ref",
- "type": "text",
- "prerequisiteTag": {
- "key": "oneway",
- "value": "yes"
- }
- },
- "kerb": {
- "key": "kerb",
- "type": "combo"
- },
- "kerb/height": {
- "key": "kerb:height",
- "type": "combo",
- "snake_case": false
- },
- "kitchen": {
- "key": "kitchen",
- "type": "check"
- },
- "kneipp_water_cure_multi": {
- "key": "kneipp_water_cure:",
- "type": "multiCombo"
- },
- "label": {
- "key": "label",
- "type": "textarea"
- },
- "lamp_mount": {
- "key": "lamp_mount",
- "type": "combo"
- },
- "lamp_type": {
- "key": "lamp_type",
- "type": "combo"
- },
- "landuse": {
- "key": "landuse",
- "type": "typeCombo"
- },
- "lane_markings": {
- "key": "lane_markings",
- "type": "check"
- },
- "lanes": {
- "key": "lanes",
- "type": "number",
- "minValue": 0
- },
- "language_multi": {
- "key": "language:",
- "type": "multiCombo"
- },
- "layer": {
- "key": "layer",
- "type": "number"
- },
- "leaf_cycle_singular": {
- "key": "leaf_cycle",
- "type": "combo",
- "label": "{leaf_cycle}",
- "stringsCrossReference": "{leaf_cycle}",
- "options": [
- "evergreen",
- "deciduous",
- "semi_evergreen",
- "semi_deciduous"
- ],
- "autoSuggestions": false,
- "customValues": false
- },
- "leaf_cycle": {
- "key": "leaf_cycle",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "evergreen",
- "deciduous",
- "semi_evergreen",
- "semi_deciduous",
- "mixed"
- ]
- },
- "leaf_type_singular": {
- "key": "leaf_type",
- "type": "combo",
- "stringsCrossReference": "{leaf_type}",
- "options": [
- "broadleaved",
- "needleleaved",
- "leafless"
- ],
- "autoSuggestions": false,
- "customValues": false
- },
- "leaf_type": {
- "key": "leaf_type",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "broadleaved",
- "needleleaved",
- "mixed",
- "leafless"
- ]
- },
- "leisure": {
- "key": "leisure",
- "type": "typeCombo"
- },
- "length": {
- "key": "length",
- "type": "number",
- "minValue": 0
- },
- "level_semi": {
- "key": "level",
- "type": "semiCombo"
- },
- "level": {
- "key": "level",
- "type": "combo",
- "prerequisiteTag": {
- "keyNot": "building"
- }
- },
- "liaison": {
- "key": "liaison",
- "type": "combo"
- },
- "license_classes": {
- "key": "license_classes",
- "type": "semiCombo"
- },
- "lifeguard": {
- "key": "lifeguard",
- "type": "check"
- },
- "line_attachment": {
- "key": "line_attachment",
- "type": "combo"
- },
- "line_management": {
- "key": "line_management",
- "type": "combo"
- },
- "lit": {
- "key": "lit",
- "type": "check"
- },
- "location_pool": {
- "key": "location",
- "type": "combo",
- "label": "{location}",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "outdoor",
- "indoor",
- "roof"
- ]
- },
- "location": {
- "key": "location",
- "type": "combo"
- },
- "lock": {
- "key": "lock",
- "type": "check"
- },
- "lockable": {
- "key": "lockable",
- "type": "check"
- },
- "locked": {
- "key": "locked",
- "type": "check"
- },
- "man_made": {
- "key": "man_made",
- "type": "typeCombo"
- },
- "manhole": {
- "key": "manhole",
- "type": "typeCombo"
- },
- "manufacturer": {
- "key": "manufacturer",
- "type": "combo",
- "snake_case": false,
- "caseSensitive": true
- },
- "map_size": {
- "key": "map_size",
- "type": "typeCombo"
- },
- "map_type": {
- "key": "map_type",
- "type": "typeCombo"
- },
- "mapillary": {
- "key": "mapillary",
+ "gnis/feature_id-US": {
+ "key": "gnis:feature_id",
"type": "identifier",
- "urlFormat": "https://mapillary.com/app/?focus=photo&pKey={value}",
- "pattern": "^[a-zA-Z0-9-_]{1,}$",
- "universal": true
- },
- "marker": {
- "key": "marker",
- "type": "typeCombo"
- },
- "material": {
- "key": "material",
- "type": "combo"
- },
- "mattress": {
- "key": "mattress",
- "type": "check"
- },
- "max_age": {
- "key": "max_age",
- "type": "number",
- "minValue": 0
- },
- "maxheight": {
- "key": "maxheight",
- "type": "roadheight",
- "snake_case": false
- },
- "maxspeed": {
- "key": "maxspeed",
- "type": "roadspeed"
- },
- "maxspeed/advisory": {
- "key": "maxspeed:advisory",
- "type": "roadspeed"
- },
- "maxspeed/hgv": {
- "key": "maxspeed:hgv",
- "type": "roadspeed"
- },
- "maxstay": {
- "key": "maxstay",
- "type": "combo",
- "options": [
- "15 minutes",
- "30 minutes",
- "45 minutes",
- "1 hour",
- "1.5 hours",
- "2 hours",
- "2.5 hours",
- "3 hours",
- "4 hours",
- "1 day",
- "2 days"
- ],
- "autoSuggestions": false,
- "snake_case": false
- },
- "maxweight_bridge": {
- "key": "maxweight",
- "type": "combo",
- "label": "{maxweight}",
- "snake_case": false,
- "prerequisiteTag": {
- "key": "bridge",
- "valueNot": "no"
+ "urlFormat": "https://edits.nationalmap.gov/apps/gaz-domestic/public/summary/{value}",
+ "pattern": "^[1-9][0-9]*$",
+ "locationSet": {
+ "include": [
+ "us"
+ ]
}
},
- "maxweight": {
- "key": "maxweight",
- "type": "combo",
- "snake_case": false
- },
- "maxwidth": {
- "key": "maxwidth",
- "type": "roadheight",
- "snake_case": false
- },
- "memorial": {
- "key": "memorial",
- "type": "combo"
- },
- "microbrewery": {
- "key": "microbrewery",
- "type": "check"
- },
- "military_service": {
- "key": "military_service",
- "type": "combo"
- },
- "mimics": {
- "key": "mimics",
- "type": "combo"
- },
- "min_age": {
- "key": "min_age",
- "type": "number",
- "minValue": 0
- },
- "min_height": {
- "key": "min_height",
- "minValue": 0,
- "type": "number",
- "prerequisiteTag": {
- "key": "height"
- }
- },
- "minspeed": {
- "key": "minspeed",
- "type": "roadspeed"
- },
- "model": {
- "key": "model",
- "type": "combo",
- "caseSensitive": true
- },
- "monitoring_multi": {
- "key": "monitoring:",
- "type": "multiCombo"
- },
- "mtb/scale": {
- "key": "mtb:scale",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "0",
- "1",
- "2",
- "3",
- "4",
- "5",
- "6"
- ]
- },
- "mtb/scale/imba": {
- "key": "mtb:scale:imba",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "0",
- "1",
- "2",
- "3",
- "4"
- ]
- },
- "mtb/scale/uphill": {
- "key": "mtb:scale:uphill",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "0",
- "1",
- "2",
- "3",
- "4",
- "5"
- ]
- },
- "museum": {
- "key": "museum",
- "type": "combo"
- },
- "name": {
- "key": "name",
- "type": "localized",
- "universal": true
- },
- "natural": {
- "key": "natural",
- "type": "typeCombo"
- },
- "network_bicycle": {
- "key": "network",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "lcn",
- "rcn",
- "ncn",
- "icn"
- ]
- },
- "network_foot": {
- "key": "network",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "lwn",
- "rwn",
- "nwn",
- "iwn"
- ]
- },
- "network_horse": {
- "key": "network",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "lhn",
- "rhn",
- "nhn",
- "ihn"
- ]
- },
- "network_road": {
- "key": "network",
- "type": "networkCombo",
- "snake_case": false,
- "caseSensitive": true
- },
- "network": {
- "key": "network",
+ "geyser/height": {
+ "key": "geyser:height",
"type": "text"
},
- "network/type": {
- "key": "network:type",
- "type": "combo",
- "prerequisiteTag": {
- "key": "network"
- }
- },
- "not/name": {
- "key": "not:name",
- "type": "semiCombo",
- "snake_case": false,
- "caseSensitive": true
- },
- "note": {
- "key": "note",
- "type": "textarea",
- "universal": true
- },
- "office": {
- "key": "office",
- "type": "typeCombo"
- },
- "oneway_yes": {
- "key": "oneway",
- "type": "onewayCheck",
- "label": "{oneway}",
- "options": [
- "undefined",
- "yes",
- "no",
- "reversible",
- "alternating"
- ]
- },
- "oneway": {
- "key": "oneway",
- "type": "onewayCheck",
- "options": [
- "undefined",
- "yes",
- "no",
- "reversible",
- "alternating"
- ]
- },
- "oneway/bicycle": {
- "key": "oneway:bicycle",
- "type": "check",
- "prerequisiteTag": {
- "key": "oneway"
- }
- },
- "openfire": {
- "key": "openfire",
- "type": "check"
- },
- "opening_date": {
- "key": "opening_date",
- "type": "text"
- },
- "opening_hours": {
- "key": "opening_hours",
- "type": "combo",
- "snake_case": false,
- "caseSensitive": true
- },
- "opening_hours/covid19": {
- "key": "opening_hours:covid19",
- "type": "combo",
- "snake_case": false,
- "caseSensitive": true
- },
- "operator": {
- "key": "operator",
- "type": "text"
- },
- "operator/type": {
- "key": "operator:type",
- "type": "combo",
- "prerequisiteTag": {
- "key": "operator"
- }
- },
- "organic": {
- "key": "organic",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "no",
- "yes",
- "only"
- ]
- },
- "outdoor_seating": {
- "key": "outdoor_seating",
- "type": "check"
- },
- "par": {
- "key": "par",
- "type": "number",
- "minValue": 1
- },
- "parcel_dropoff": {
- "key": "parcel_mail_in",
- "type": "check"
- },
- "parcel_pickup": {
- "key": "parcel_pickup",
- "type": "check",
- "options": [
- "undefined",
- "yes",
- "no"
- ]
- },
- "park_ride": {
- "key": "park_ride",
- "type": "check"
- },
- "parking_entrance": {
- "key": "parking",
- "type": "combo",
- "stringsCrossReference": "{parking}",
- "options": [
- "underground",
- "multi-storey",
- "surface"
- ],
- "autoSuggestions": false,
- "customValues": true
- },
- "parking_space": {
- "key": "parking_space",
+ "generator/type": {
+ "key": "generator:type",
"type": "combo"
},
- "parking": {
- "key": "parking",
+ "generator/source": {
+ "key": "generator:source",
"type": "combo",
- "autoSuggestions": false,
- "customValues": false,
"options": [
- "surface",
- "underground",
- "multi-storey",
- "lane",
- "carports",
- "garage_boxes",
- "rooftop",
- "sheds",
- "street_side",
- "layby"
+ "nuclear",
+ "wind",
+ "hydro",
+ "tidal",
+ "wave",
+ "geothermal",
+ "solar",
+ "coal",
+ "gas",
+ "biomass",
+ "biofuel",
+ "biogas",
+ "oil",
+ "diesel",
+ "gasoline",
+ "waste",
+ "battery"
]
},
- "parking/orientation": {
- "key": "parking:orientation",
+ "generator/method": {
+ "key": "generator:method",
"type": "combo",
"autoSuggestions": false,
"options": [
- "parallel",
- "diagonal",
- "perpendicular"
+ "fission",
+ "fusion",
+ "wind_turbine",
+ "water-storage",
+ "water-pumped-storage",
+ "run-of-the-river",
+ "barrage",
+ "stream",
+ "thermal",
+ "photovoltaic",
+ "combustion",
+ "gasification",
+ "anaerobic_digestion"
]
},
- "payment_multi_fee": {
- "key": "payment:",
- "type": "multiCombo",
- "label": "{payment_multi}",
- "prerequisiteTag": {
- "key": "fee",
- "valueNot": "no"
- },
- "stringsCrossReference": "{payment_multi}"
- },
- "payment_multi": {
- "key": "payment:",
- "type": "multiCombo",
- "options": [
- "account_cards",
- "app",
- "cards",
- "cash",
- "cheque",
- "coins",
- "contactless",
- "credit_cards",
- "cryptocurrencies",
- "debit_cards",
- "electronic_purses",
- "notes",
- "prepaid_ticket",
- "telephone_cards",
- "alipay",
- "american_express",
- "apple_pay",
- "bancomat",
- "blik",
- "clipper",
- "diners_club",
- "discover_card",
- "dkv",
- "ep_easycard",
- "ep_geldkarte",
- "ep_ipass",
- "girocard",
- "google_pay",
- "jcb",
- "maestro",
- "mastercard",
- "mastercard_contactless",
- "paypal",
- "unionpay",
- "uta",
- "v_pay",
- "visa",
- "visa_debit",
- "visa_electron",
- "wechat"
- ]
- },
- "phases": {
- "key": "phases",
- "type": "number",
- "minValue": 1
- },
- "phone": {
- "key": "phone",
- "type": "tel"
- },
- "pipeline": {
- "key": "pipeline",
- "type": "typeCombo"
- },
- "piste/difficulty_downhill": {
- "key": "piste:difficulty",
- "type": "combo",
- "label": "{piste/difficulty}",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "novice",
- "easy",
- "intermediate",
- "advanced",
- "expert",
- "freeride",
- "extreme"
- ]
- },
- "piste/difficulty_nordic": {
- "key": "piste:difficulty",
- "type": "combo",
- "label": "{piste/difficulty}",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "novice",
- "easy",
- "intermediate",
- "advanced",
- "expert"
- ]
- },
- "piste/difficulty_skitour": {
- "key": "piste:difficulty",
- "type": "combo",
- "label": "{piste/difficulty}",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "novice",
- "easy",
- "intermediate",
- "advanced",
- "expert",
- "freeride",
- "extreme"
- ]
- },
- "piste/difficulty": {
- "key": "piste:difficulty",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "novice",
- "easy",
- "intermediate",
- "advanced",
- "expert",
- "freeride",
- "extreme"
- ]
- },
- "piste/grooming_downhill": {
- "key": "piste:grooming",
- "type": "combo",
- "label": "{piste/grooming}",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "classic",
- "mogul",
- "backcountry"
- ]
- },
- "piste/grooming_hike": {
- "key": "piste:grooming",
- "type": "combo",
- "label": "{piste/grooming}",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "classic",
- "backcountry"
- ]
- },
- "piste/grooming_nordic": {
- "key": "piste:grooming",
- "type": "combo",
- "label": "{piste/grooming}",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "classic",
- "backcountry",
- "classic+skating",
- "scooter",
- "skating"
- ]
- },
- "piste/grooming": {
- "key": "piste:grooming",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "classic",
- "mogul",
- "backcountry",
- "classic+skating",
- "scooter",
- "skating"
- ]
- },
- "piste/type": {
- "key": "piste:type",
+ "generator/output/electricity": {
+ "key": "generator:output:electricity",
"type": "typeCombo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "downhill",
- "nordic",
- "skitour",
- "sled",
- "hike",
- "sleigh",
- "ice_skate",
- "snow_park",
- "playground",
- "connection"
- ]
+ "snake_case": false,
+ "caseSensitive": true
},
- "place": {
- "key": "place",
- "type": "typeCombo"
- },
- "plant": {
- "key": "plant",
- "type": "combo"
- },
- "plant/method": {
- "key": "plant:method",
+ "generator/method/hydro": {
+ "key": "generator:method",
"type": "combo",
- "stringsCrossReference": "{generator/method}",
- "autoSuggestions": false
- },
- "plant/method/hydro": {
- "key": "plant:method",
- "type": "combo",
- "label": "{plant/method}",
+ "label": "{generator/method}",
"stringsCrossReference": "{generator/method}",
"options": [
"water-storage",
@@ -2894,1693 +5780,873 @@
],
"autoSuggestions": false,
"prerequisiteTag": {
- "key": "plant:source",
+ "key": "generator:source",
"value": "hydro"
}
},
- "plant/method/solar": {
- "key": "plant:method",
- "type": "combo",
- "label": "{plant/method}",
- "stringsCrossReference": "{generator/method}",
- "options": [
- "thermal",
- "photovoltaic"
- ],
- "autoSuggestions": false,
- "prerequisiteTag": {
- "key": "plant:source",
- "value": "solar"
- }
+ "garden/type": {
+ "key": "garden:type",
+ "type": "combo"
},
- "plant/method/waste": {
- "key": "plant:method",
- "type": "combo",
- "label": "{plant/method}",
- "stringsCrossReference": "{generator/method}",
- "options": [
- "combustion",
- "gasification"
- ],
- "autoSuggestions": false,
- "prerequisiteTag": {
- "key": "plant:source",
- "value": "waste"
- }
- },
- "plant/output": {
- "key": "plant:output",
+ "fuel/fuel_multi": {
+ "key": "fuel:",
"type": "multiCombo",
- "autoSuggestions": false,
- "options": [
- "electricity",
- "hot_water",
- "hot_air",
- "cold_water",
- "cold_air",
- "compressed_air",
- "steam",
- "vacuum"
- ]
- },
- "plant/output/electricity": {
- "key": "plant:output:electricity",
- "type": "typeCombo",
- "snake_case": false,
+ "autoSuggestions": true,
"caseSensitive": true,
- "prerequisiteTag": {
- "key": "plant:output:electricity",
- "valueNot": "no"
- }
- },
- "plant/source": {
- "key": "plant:source",
- "type": "combo",
- "stringsCrossReference": "{generator/source}"
- },
- "playground": {
- "key": "playground",
- "type": "combo"
- },
- "playground/theme": {
- "key": "playground:theme",
- "type": "combo"
- },
- "plots": {
- "key": "plots",
- "type": "number",
- "minValue": 0
- },
- "polling_station": {
- "key": "polling_station",
- "type": "check"
- },
- "population": {
- "key": "population",
- "type": "number",
- "minValue": 0
- },
- "population/date": {
- "key": "population:date",
- "type": "text",
- "prerequisiteTag": {
- "key": "population"
- }
- },
- "portable": {
- "key": "portable",
- "type": "check"
- },
- "post": {
- "type": "address",
- "key": "post",
- "keys": [
- "post:block_number",
- "post:city",
- "post:block_number",
- "post:conscriptionnumber",
- "post:county",
- "post:country",
- "post:county",
- "post:district",
- "post:floor",
- "post:hamlet",
- "post:housename",
- "post:housenumber",
- "post:neighbourhood",
- "post:place",
- "post:postcode",
- "post:province",
- "post:quarter",
- "post:state",
- "post:street",
- "post:subdistrict",
- "post:suburb",
- "post:unit"
- ]
- },
- "power_supply": {
- "key": "power_supply",
- "type": "check"
- },
- "power": {
- "key": "power",
- "type": "typeCombo"
- },
- "preschool": {
- "key": "preschool",
- "type": "check"
- },
- "produce": {
- "key": "produce",
- "type": "semiCombo"
- },
- "product": {
- "key": "product",
- "type": "semiCombo"
- },
- "public_bookcase/type": {
- "key": "public_bookcase:type",
- "type": "combo"
- },
- "pump": {
- "key": "pump",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "yes",
- "manual",
- "powered",
- "no"
- ]
- },
- "railway": {
- "key": "railway",
- "type": "typeCombo"
- },
- "railway/position": {
- "key": "railway:position",
- "type": "text"
- },
- "railway/signal/direction": {
- "key": "railway:signal:direction",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "forward",
- "backward",
- "both"
- ]
- },
- "ramp": {
- "key": "ramp",
- "type": "check"
- },
- "rating": {
- "key": "rating",
- "type": "combo",
- "snake_case": false,
- "caseSensitive": true
- },
- "rcn_ref": {
- "key": "rcn_ref",
- "type": "text"
- },
- "real_fire-GB-IE": {
- "locationSet": {
- "include": [
- "gb",
- "ie"
- ]
- },
- "key": "real_fire",
- "type": "check"
- },
- "recycling_accepts": {
- "key": "recycling:",
- "type": "multiCombo",
- "caseSensitive": true,
- "options": [
- "glass_bottles",
- "glass",
- "paper",
- "plastic",
- "clothes",
- "cans",
- "batteries",
- "shoes",
- "green_waste",
- "plastic_packaging",
- "plastic_bottles",
- "cardboard",
- "scrap_metal",
- "cooking_oil",
- "engine_oil"
- ]
- },
- "recycling_type": {
- "key": "recycling_type",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "container",
- "centre"
- ]
- },
- "ref_aeroway_gate": {
- "key": "ref",
- "type": "text"
- },
- "ref_disc_golf_hole": {
- "key": "ref",
- "type": "text"
- },
- "ref_golf_hole": {
- "key": "ref",
- "type": "text"
- },
- "ref_highway_junction": {
- "key": "ref",
- "type": "text"
- },
- "ref_platform": {
- "key": "ref",
- "type": "text"
- },
- "ref_road_number": {
- "key": "ref",
- "type": "text"
- },
- "ref_room_number": {
- "key": "ref",
- "type": "text"
- },
- "ref_route": {
- "key": "ref",
- "type": "text"
- },
- "ref_runway": {
- "key": "ref",
- "type": "text"
- },
- "ref_sector": {
- "key": "ref",
- "type": "text"
- },
- "ref_stop_position": {
- "key": "ref",
- "type": "text"
- },
- "ref_taxiway": {
- "key": "ref",
- "type": "text"
- },
- "ref": {
- "key": "ref",
- "type": "text"
- },
- "ref/FR/siret-FR": {
- "key": "ref:FR:SIRET",
- "type": "identifier",
- "urlFormat": "https://annuaire-entreprises.data.gouv.fr/etablissement/{value}",
- "pattern": "^[0-9]{9}([1-7][0-9]{3}|0[1-9][0-9]{2}|00[1-9][0-9]|000[1-9])[0-9]$",
- "locationSet": {
- "include": [
- "fr"
- ]
- }
- },
- "ref/isil": {
- "key": "ref:isil",
- "type": "text"
- },
- "ref/vatin": {
- "key": "ref:vatin",
- "type": "identifier",
"locationSet": {
"exclude": [
- "ai",
- "ao",
- "bm",
- "bn",
- "bt",
- "cu",
- "dj",
- "er",
- "fk",
- "fm",
- "gg",
- "gi",
- "gs",
- "hk",
- "io",
- "iq",
- "ki",
- "km",
- "kp",
- "kw",
- "ky",
- "lr",
- "ly",
- "mh",
- "mm",
- "mo",
- "ms",
- "mv",
- "nr",
- "om",
- "pn",
- "pw",
- "qa",
- "sb",
- "sh",
- "sm",
- "so",
- "sr",
- "ss",
- "st",
- "sy",
- "sz",
- "tc",
- "tl",
- "tv",
- "us",
- "va",
- "vg",
- "xk",
- "ye"
+ "RU"
+ ]
+ },
+ "options": [
+ "diesel",
+ "GTL_diesel",
+ "HGV_diesel",
+ "biodiesel",
+ "octane_80",
+ "octane_85",
+ "octane_87",
+ "octane_88",
+ "octane_89",
+ "octane_90",
+ "octane_91",
+ "octane_92",
+ "octane_93",
+ "octane_95",
+ "octane_97",
+ "octane_98",
+ "octane_100",
+ "e5",
+ "e10",
+ "e85",
+ "lpg",
+ "lng",
+ "cng",
+ "propane",
+ "LH2",
+ "h70",
+ "adblue",
+ "adblue:canister"
+ ]
+ },
+ "fuel/fuel_multi-RU": {
+ "key": "fuel:",
+ "type": "multiCombo",
+ "label": "{fuel/fuel_multi}",
+ "stringsCrossReference": "{fuel/fuel_multi}",
+ "options": [
+ "diesel",
+ "octane_80",
+ "octane_92",
+ "octane_95",
+ "octane_98",
+ "octane_100",
+ "lpg",
+ "cng"
+ ],
+ "autoSuggestions": false,
+ "locationSet": {
+ "include": [
+ "RU"
]
}
},
- "relation": {
- "key": "type",
- "type": "combo"
- },
- "religion": {
- "key": "religion",
- "type": "combo",
- "options": [
- "bahai",
- "benzhu",
- "buddhist",
- "caodaism",
- "chinese_folk",
- "christian",
- "confucian",
- "hindu",
- "jain",
- "jewish",
- "multifaith",
- "muslim",
- "none",
- "pagan",
- "shinto",
- "sikh",
- "spiritualist",
- "taoist",
- "tenrikyo",
- "unitarian_universalist",
- "vietnamese_folk",
- "voodoo"
- ]
- },
- "reservation": {
- "key": "reservation",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "yes",
- "no",
- "required",
- "recommended"
- ]
- },
- "residential": {
- "key": "residential",
- "type": "combo"
- },
- "resort": {
- "key": "resort",
- "type": "combo"
- },
- "resource": {
- "key": "resource",
- "type": "semiCombo"
- },
- "restriction": {
- "key": "restriction",
- "type": "combo"
- },
- "restrictions": {
- "type": "restrictions",
- "geometry": [
- "vertex"
- ],
- "usage": "manual",
- "reference": {
- "rtype": "restriction"
- }
- },
- "roof/colour": {
- "key": "roof:colour",
- "type": "colour"
- },
- "room": {
- "key": "room",
- "type": "combo"
- },
- "rooms": {
- "key": "rooms",
- "type": "number",
- "minValue": 0
- },
- "rotor/diameter": {
- "key": "rotor:diameter",
- "minValue": 0,
- "type": "number"
- },
- "roundtrip": {
- "key": "roundtrip",
- "type": "check"
- },
- "route_master": {
- "key": "route_master",
- "type": "combo"
- },
- "route": {
- "key": "route",
- "type": "combo"
- },
- "ruins": {
- "key": "ruins",
- "type": "combo"
- },
- "rwn_ref": {
- "key": "rwn_ref",
- "type": "text"
- },
- "sac_scale": {
- "key": "sac_scale",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "hiking",
- "mountain_hiking",
- "demanding_mountain_hiking",
- "alpine_hiking",
- "demanding_alpine_hiking",
- "difficult_alpine_hiking"
- ]
- },
- "salt": {
- "key": "salt",
- "type": "check"
- },
- "sample_collection": {
- "key": "sample_collection",
- "type": "semiCombo",
- "reference": {
- "key": "healthcare",
- "value": "sample_collection"
- }
- },
- "sanitary_dump_station": {
- "key": "sanitary_dump_station",
- "type": "check"
- },
- "screen": {
- "key": "screen",
- "type": "number",
- "minValue": 0
- },
- "scuba_diving": {
- "key": "scuba_diving:",
- "type": "multiCombo",
- "options": [
- "repair",
- "courses",
- "rental",
- "filling",
- "air_filling",
- "nitrox_filling",
- "trimix_filling",
- "oxygen_filling"
- ],
- "autoSuggestions": false
- },
- "seamark/beacon_isolated_danger/shape": {
- "key": "seamark:beacon_isolated_danger:shape",
- "type": "combo"
- },
- "seamark/beacon_lateral/category": {
- "key": "seamark:beacon_lateral:category",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "port",
- "starboard",
- "waterway_left",
- "waterway_right",
- "danger_left",
- "danger_right"
- ]
- },
- "seamark/beacon_lateral/colour": {
- "key": "seamark:beacon_lateral:colour",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "red",
- "green",
- "grey"
- ]
- },
- "seamark/beacon_lateral/shape": {
- "key": "seamark:beacon_lateral:shape",
- "type": "combo"
- },
- "seamark/beacon_lateral/system": {
- "key": "seamark:beacon_lateral:system",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "iala-a",
- "iala-b",
- "cevni",
- "other"
- ]
- },
- "seamark/buoy_lateral/category": {
- "key": "seamark:buoy_lateral:category",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "port",
- "starboard",
- "channel_left",
- "channel_right",
- "waterway_left",
- "waterway_right",
- "danger_left",
- "danger_right",
- "preferred_channel_port",
- "preferred_channel_starboard"
- ]
- },
- "seamark/buoy_lateral/colour": {
- "key": "seamark:buoy_lateral:colour",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "red",
- "green",
- "red;white;red;white",
- "green;white;green;white",
- "red;green;red",
- "green;red;green",
- "white",
- "yellow"
- ]
- },
- "seamark/buoy_lateral/shape": {
- "key": "seamark:buoy_lateral:shape",
- "type": "combo"
- },
- "seamark/buoy_lateral/system": {
- "key": "seamark:buoy_lateral:system",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "iala-a",
- "iala-b",
- "cevni",
- "other"
- ]
- },
- "seamark/mooring/category": {
- "key": "seamark:mooring:category",
- "type": "combo"
- },
- "seamark/rescue_station/category": {
- "key": "seamark:rescue_station:category",
- "type": "semiCombo",
- "options": [
- "lifeboat",
- "lifeboat_on_mooring",
- "seaplane",
- "aircraft",
- "hovercraft",
- "radio",
- "first_aid",
- "refuge_shipwrecked",
- "refuge_intertidal",
- "tug"
- ]
- },
- "seamark/type": {
- "key": "seamark:type",
- "type": "combo"
- },
- "seamark/wreck/category": {
- "key": "seamark:wreck:category",
- "type": "combo"
- },
- "seasonal": {
- "key": "seasonal",
- "type": "check"
- },
- "seats": {
- "key": "seats",
- "type": "number",
- "minValue": 0
- },
- "second_hand": {
- "key": "second_hand",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "yes",
- "no",
- "only"
- ]
- },
- "segregated": {
- "key": "segregated",
- "type": "check"
- },
- "self_service": {
- "key": "self_service",
- "type": "check"
- },
- "service_rail": {
- "key": "service",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "spur",
- "yard",
- "siding",
- "crossover"
- ]
- },
- "service_times": {
- "key": "service_times",
- "type": "text"
- },
- "service": {
- "key": "service",
- "type": "combo",
- "autoSuggestions": false,
- "options": [
- "driveway",
- "parking_aisle",
- "alley",
- "drive-through",
- "emergency_access"
- ]
- },
- "service/bicycle": {
- "key": "service:bicycle:",
- "type": "multiCombo"
- },
- "service/vehicle": {
- "key": "service:vehicle:",
- "type": "multiCombo"
- },
- "shelter_type": {
- "key": "shelter_type",
- "type": "combo"
- },
- "shelter": {
- "key": "shelter",
- "type": "check"
- },
- "shoes": {
- "key": "shoes",
- "type": "semiCombo"
- },
- "shop": {
- "key": "shop",
- "type": "typeCombo"
- },
- "shower": {
- "key": "shower",
- "type": "check"
- },
- "siren/purpose": {
- "key": "siren:purpose",
- "type": "combo"
- },
- "siren/type": {
- "key": "siren:type",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "pneumatic",
- "electronic",
- "other"
- ]
- },
- "site": {
- "key": "site",
- "type": "combo"
- },
- "smoking": {
- "key": "smoking",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "no",
- "separated",
- "isolated",
- "outside",
- "yes",
- "dedicated"
- ]
- },
- "smoothness": {
- "key": "smoothness",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "excellent",
- "good",
- "intermediate",
- "bad",
- "very_bad",
- "horrible",
- "very_horrible",
- "impassable"
- ]
- },
- "sms": {
- "key": "sms",
- "type": "check"
- },
- "social_facility_for": {
- "key": "social_facility:for",
- "type": "combo"
- },
- "social_facility": {
- "key": "social_facility",
- "type": "combo",
- "options": [
- "ambulatory_care",
- "assisted_living",
- "day_care",
- "food_bank",
- "group_home",
- "nursing_home",
- "outreach",
- "shelter",
- "workshop"
- ]
- },
- "source": {
- "key": "source",
- "type": "semiCombo",
- "universal": true,
- "snake_case": false,
- "caseSensitive": true,
- "autoSuggestions": false,
- "options": [
- "survey",
- "local knowledge",
- "aerial imagery",
- "gps",
- "streetlevel imagery",
- "osm notes"
- ]
- },
- "source/population": {
- "key": "source:population",
- "type": "combo",
- "prerequisiteTag": {
- "key": "population"
- },
- "snake_case": false,
- "caseSensitive": true
- },
- "species": {
- "key": "species",
- "type": "combo",
- "snake_case": false,
- "caseSensitive": true
- },
- "species/wikidata": {
- "key": "species:wikidata",
+ "flag/wikidata": {
+ "key": "flag:wikidata",
"keys": [
- "species:wikidata",
- "species:wikipedia"
+ "flag:wikidata",
+ "flag:wikipedia"
],
"type": "wikidata"
},
- "sport_ice": {
- "key": "sport",
- "type": "semiCombo",
- "autoSuggestions": false,
- "options": [
- "ice_skating",
- "ice_hockey",
- "curling",
- "ice_stock",
- "multi"
- ]
- },
- "sport_pub": {
- "key": "sport",
- "type": "semiCombo",
- "autoSuggestions": false,
- "options": [
- "table_soccer",
- "billiards",
- "darts"
- ]
- },
- "sport_racing_motor": {
- "key": "sport",
- "type": "semiCombo",
- "autoSuggestions": false,
- "options": [
- "motor",
- "karting",
- "motocross",
- "speedway"
- ]
- },
- "sport_racing_nonmotor": {
- "key": "sport",
- "type": "semiCombo",
- "autoSuggestions": false,
- "options": [
- "running",
- "cycling",
- "bmx",
- "horse_racing",
- "dog_racing"
- ]
- },
- "sport": {
- "key": "sport",
- "type": "semiCombo"
- },
- "stars": {
- "key": "stars",
+ "flag/type": {
+ "key": "flag:type",
"type": "combo"
},
- "start_date": {
- "key": "start_date",
- "type": "text",
- "universal": true
+ "flag/name": {
+ "key": "flag:name",
+ "type": "text"
},
- "step_count": {
- "key": "step_count",
+ "fire_hydrant/type": {
+ "key": "fire_hydrant:type",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "pillar",
+ "underground",
+ "wall",
+ "pipe"
+ ]
+ },
+ "fire_hydrant/pressure": {
+ "key": "fire_hydrant:pressure",
+ "type": "combo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "fire_hydrant/position": {
+ "key": "fire_hydrant:position",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "green",
+ "lane",
+ "sidewalk",
+ "parking_lot"
+ ]
+ },
+ "fire_hydrant/diameter": {
+ "key": "fire_hydrant:diameter",
+ "type": "combo",
+ "snake_case": false
+ },
+ "fhrs/id-GB": {
+ "key": "fhrs:id",
+ "type": "identifier",
+ "urlFormat": "https://ratings.food.gov.uk/business/en-GB/{value}",
+ "pattern": "^[0-9]{1,}$",
+ "locationSet": {
+ "include": [
+ "gb"
+ ]
+ }
+ },
+ "door/width": {
+ "key": "door:width",
+ "minValue": 0,
+ "type": "number"
+ },
+ "door/height": {
+ "key": "door:height",
+ "minValue": 0,
+ "type": "number"
+ },
+ "dock/width": {
+ "key": "dock:width",
+ "minValue": 0,
+ "type": "number"
+ },
+ "dock/height": {
+ "key": "dock:height",
+ "minValue": 0,
+ "type": "number"
+ },
+ "disused/shop": {
+ "key": "disused:shop",
+ "type": "typeCombo"
+ },
+ "disused/railway": {
+ "key": "disused:railway",
+ "type": "typeCombo"
+ },
+ "disused/amenity": {
+ "key": "disused:amenity",
+ "type": "typeCombo"
+ },
+ "diplomatic/services": {
+ "key": "diplomatic:services:",
+ "type": "multiCombo"
+ },
+ "destination/symbol_oneway": {
+ "key": "destination:symbol",
+ "type": "semiCombo",
+ "label": "{destination/symbol}",
+ "prerequisiteTag": {
+ "key": "oneway",
+ "value": "yes"
+ }
+ },
+ "destination/symbol": {
+ "key": "destination:symbol",
+ "type": "semiCombo"
+ },
+ "destination/ref_oneway": {
+ "key": "destination:ref",
+ "type": "semiCombo",
+ "label": "{destination/ref}",
+ "prerequisiteTag": {
+ "key": "oneway",
+ "value": "yes"
+ },
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "destination/ref": {
+ "key": "destination:ref",
+ "type": "semiCombo",
+ "snake_case": false,
+ "caseSensitive": true
+ },
+ "deposit/trolley": {
+ "key": "trolley:deposit",
+ "type": "check"
+ },
+ "defibrillator/location": {
+ "key": "defibrillator:location",
+ "type": "textarea"
+ },
+ "dance/teaching": {
+ "key": "dance:teaching",
+ "type": "check"
+ },
+ "dance/style": {
+ "key": "dance:style",
+ "type": "semiCombo"
+ },
+ "cycle_barrier/installation": {
+ "key": "cycle_barrier:installation",
+ "type": "combo",
+ "customValues": false,
+ "autoSuggestions": false,
+ "options": [
+ "fixed",
+ "openable",
+ "removable"
+ ]
+ },
+ "crossing/markings_yes": {
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "default": "yes",
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "locationSet": {
+ "exclude": [
+ "BG",
+ "DE",
+ "AT",
+ "CH",
+ "PL"
+ ]
+ }
+ },
+ "crossing/markings_yes-PL": {
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "default": "yes",
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "dots",
+ "surface",
+ "yes",
+ "no"
+ ],
+ "locationSet": {
+ "include": [
+ "PL"
+ ]
+ }
+ },
+ "crossing/markings_yes-DE-AT-CH": {
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "default": "yes",
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "yes",
+ "no",
+ "dots",
+ "dashes",
+ "surface"
+ ],
+ "locationSet": {
+ "include": [
+ "DE",
+ "AT",
+ "CH"
+ ]
+ }
+ },
+ "crossing/markings_yes-BG": {
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "default": "yes",
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "no",
+ "dots",
+ "dashes",
+ "yes"
+ ],
+ "locationSet": {
+ "include": [
+ "BG"
+ ]
+ }
+ },
+ "crossing/markings": {
+ "key": "crossing:markings",
+ "type": "combo",
+ "icons": {
+ "zebra": "iD-crossing_markings-zebra",
+ "lines": "iD-crossing_markings-lines",
+ "ladder": "iD-crossing_markings-ladder",
+ "dots": "iD-crossing_markings-dots",
+ "dashes": "iD-crossing_markings-dashes",
+ "surface": "iD-crossing_markings-surface",
+ "ladder:skewed": "iD-crossing_markings-ladder_skewed",
+ "lines:paired": "iD-crossing_markings-lines_paired",
+ "zebra:double": "iD-crossing_markings-zebra_double",
+ "zebra:paired": "iD-crossing_markings-zebra_paired",
+ "zebra:bicolour": "iD-crossing_markings-zebra_bicolour",
+ "ladder:paired": "iD-crossing_markings-ladder_paired"
+ },
+ "locationSet": {
+ "exclude": [
+ "BG",
+ "DE",
+ "AT",
+ "CH",
+ "PL"
+ ]
+ },
+ "options": [
+ "zebra",
+ "lines",
+ "no",
+ "ladder",
+ "dots",
+ "dashes",
+ "yes",
+ "surface",
+ "ladder:skewed",
+ "pictograms",
+ "lines:paired",
+ "zebra:double",
+ "zebra:paired",
+ "zebra:bicolour",
+ "ladder:paired"
+ ]
+ },
+ "crossing/markings-PL": {
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "dots",
+ "surface",
+ "yes",
+ "no"
+ ],
+ "locationSet": {
+ "include": [
+ "PL"
+ ]
+ }
+ },
+ "crossing/markings-DE-AT-CH": {
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "yes",
+ "no",
+ "dots",
+ "dashes",
+ "surface"
+ ],
+ "locationSet": {
+ "include": [
+ "DE",
+ "AT",
+ "CH"
+ ]
+ }
+ },
+ "crossing/markings-BG": {
+ "key": "crossing:markings",
+ "type": "combo",
+ "label": "{crossing/markings}",
+ "autoSuggestions": false,
+ "stringsCrossReference": "{crossing/markings}",
+ "iconsCrossReference": "{crossing/markings}",
+ "options": [
+ "zebra",
+ "no",
+ "dots",
+ "dashes",
+ "yes"
+ ],
+ "locationSet": {
+ "include": [
+ "BG"
+ ]
+ }
+ },
+ "crossing/light": {
+ "key": "crossing:light",
+ "type": "check"
+ },
+ "crossing/island": {
+ "key": "crossing:island",
+ "type": "check"
+ },
+ "crossing/bell": {
+ "key": "crossing:bell",
+ "type": "check"
+ },
+ "crossing/barrier": {
+ "key": "crossing:barrier",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "full",
+ "double_half",
+ "half",
+ "no",
+ "yes"
+ ]
+ },
+ "crane/type": {
+ "key": "crane:type",
+ "type": "combo",
+ "icons": {
+ "portal_crane": "roentgen-crane_portal",
+ "gantry_crane": "roentgen-crane_gantry",
+ "tower_crane": "roentgen-crane",
+ "travel_lift": "roentgen-crane_travel_lift"
+ },
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "portal_crane",
+ "floor-mounted_crane",
+ "travel_lift",
+ "gantry_crane",
+ "tower_crane"
+ ]
+ },
+ "contact/webcam": {
+ "key": "contact:webcam",
+ "type": "url"
+ },
+ "contact/facebook": {
+ "key": "contact:facebook",
+ "type": "url"
+ },
+ "climbing/trad": {
+ "key": "climbing:trad",
+ "type": "check"
+ },
+ "climbing/sport": {
+ "key": "climbing:sport",
+ "type": "check"
+ },
+ "climbing/length": {
+ "key": "climbing:length",
"type": "number",
"minValue": 0
},
- "stile": {
- "key": "stile",
+ "climbing/bolts": {
+ "key": "climbing:bolts",
+ "type": "number",
+ "minValue": 0,
+ "prerequisiteTag": {
+ "key": "climbing:sport",
+ "value": "yes"
+ }
+ },
+ "climbing/grade/yds_class": {
+ "key": "climbing:grade:yds_class",
+ "type": "combo",
+ "caseSensitive": false,
+ "customValues": true,
+ "autoSuggestions": false,
+ "options": [
+ "5",
+ "5.1",
+ "5.2",
+ "5.3",
+ "5.4",
+ "5.5",
+ "5.6",
+ "5.7",
+ "5.8",
+ "5.9",
+ "5.10a",
+ "5.10b",
+ "5.10c",
+ "5.10d",
+ "5.11a",
+ "5.11b",
+ "5.11c",
+ "5.11d",
+ "5.12a",
+ "5.12b",
+ "5.12c",
+ "5.12d",
+ "5.13a",
+ "5.13b",
+ "5.13c",
+ "5.13d",
+ "5.14a",
+ "5.14b",
+ "5.14c",
+ "5.14d",
+ "5.15a",
+ "5.15b",
+ "5.15c",
+ "5.15d"
+ ]
+ },
+ "climbing/grade/uiaa": {
+ "key": "climbing:grade:uiaa",
+ "type": "combo",
+ "caseSensitive": false,
+ "customValues": true,
+ "autoSuggestions": false,
+ "options": [
+ "1-",
+ "1",
+ "1+",
+ "2-",
+ "2",
+ "2+",
+ "3-",
+ "3",
+ "3+",
+ "4-",
+ "4",
+ "4+",
+ "5-",
+ "5",
+ "5+",
+ "6-",
+ "6",
+ "6+",
+ "7-",
+ "7",
+ "7+",
+ "8-",
+ "8",
+ "8+",
+ "9-",
+ "9",
+ "9+",
+ "10-",
+ "10",
+ "10+",
+ "11-",
+ "11",
+ "11+",
+ "12-",
+ "12",
+ "12+",
+ "13-",
+ "13",
+ "13+",
+ "14-"
+ ]
+ },
+ "climbing/grade/saxon": {
+ "key": "climbing:grade:saxon",
+ "type": "combo",
+ "caseSensitive": true,
+ "customValues": true,
+ "autoSuggestions": false,
+ "options": [
+ "I",
+ "II",
+ "III",
+ "IV",
+ "V",
+ "VI",
+ "VIIa",
+ "VIIb",
+ "VII",
+ "VIIc",
+ "VIIIa",
+ "VIIIb",
+ "VIIIc",
+ "IXa",
+ "IXb",
+ "IXc",
+ "Xa",
+ "Xb",
+ "Xc",
+ "XIa",
+ "XIb",
+ "XIc",
+ "XIIa",
+ "XIIb",
+ "XIIc",
+ "XIIIa",
+ "XIIIb",
+ "XIIIc"
+ ]
+ },
+ "climbing/grade/french": {
+ "key": "climbing:grade:french",
+ "type": "combo",
+ "caseSensitive": false,
+ "customValues": true,
+ "autoSuggestions": false,
+ "options": [
+ "1",
+ "2",
+ "3-",
+ "3",
+ "3+",
+ "4a",
+ "4b",
+ "4c",
+ "5a",
+ "5b",
+ "5c",
+ "5c+",
+ "6a",
+ "6a+",
+ "6b",
+ "6b+",
+ "6c",
+ "6c+",
+ "7a",
+ "7a+",
+ "7b",
+ "7b+",
+ "7c",
+ "7c+",
+ "8a",
+ "8a+",
+ "8b",
+ "8b+",
+ "8c",
+ "8c+",
+ "9a",
+ "9a+",
+ "9b",
+ "9b+",
+ "9c",
+ "9c+",
+ "10a"
+ ]
+ },
+ "capacity/tents": {
+ "key": "capacity:tents",
+ "type": "number",
+ "minValue": 0,
+ "prerequisiteTag": {
+ "key": "tents",
+ "valueNot": "no"
+ }
+ },
+ "capacity/persons": {
+ "key": "capacity:persons",
+ "type": "number",
+ "minValue": 0
+ },
+ "capacity/disabled_parking": {
+ "key": "capacity:disabled",
+ "type": "number",
+ "minValue": 0
+ },
+ "capacity/caravans": {
+ "key": "capacity:caravans",
+ "type": "number",
+ "minValue": 0,
+ "prerequisiteTag": {
+ "key": "caravans",
+ "valueNot": "no"
+ }
+ },
+ "camera/type": {
+ "key": "camera:type",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "fixed",
+ "panning",
+ "dome"
+ ]
+ },
+ "camera/mount": {
+ "key": "camera:mount",
"type": "combo"
},
- "stop": {
- "key": "stop",
+ "camera/direction": {
+ "key": "camera:direction",
+ "type": "number",
+ "increment": 5
+ },
+ "building/prefabricated": {
+ "key": "building:prefabricated",
+ "type": "check"
+ },
+ "building/part": {
+ "key": "building:part",
+ "type": "combo",
+ "default": "yes"
+ },
+ "building/material": {
+ "key": "building:material",
+ "type": "combo"
+ },
+ "building/levels_building": {
+ "key": "building:levels",
+ "type": "number",
+ "minValue": 0,
+ "label": "{building/levels}",
+ "placeholder": "{building/levels}",
+ "prerequisiteTag": {
+ "key": "building",
+ "valueNot": "no"
+ }
+ },
+ "building/levels": {
+ "key": "building:levels",
+ "type": "number",
+ "minValue": 0
+ },
+ "building/flats": {
+ "key": "building:flats",
+ "type": "number",
+ "minValue": 0
+ },
+ "building/colour": {
+ "key": "building:colour",
+ "type": "colour"
+ },
+ "building/levels/underground": {
+ "key": "building:levels:underground",
+ "type": "number",
+ "minValue": 0
+ },
+ "bridge/support": {
+ "key": "bridge:support",
+ "type": "typeCombo"
+ },
+ "bridge/ref": {
+ "key": "bridge:ref",
+ "type": "text",
+ "reference": {
+ "key": "bridge"
+ },
+ "prerequisiteTag": {
+ "key": "bridge",
+ "valueNot": "no"
+ }
+ },
+ "bath/type": {
+ "key": "bath:type",
+ "type": "combo",
+ "options": [
+ "hammam",
+ "hot_spring",
+ "lake",
+ "onsen",
+ "thermal"
+ ]
+ },
+ "bath/sand_bath-JP": {
+ "key": "bath:sand_bath",
+ "type": "check",
+ "locationSet": {
+ "include": [
+ "JP"
+ ]
+ }
+ },
+ "bath/open_air": {
+ "key": "bath:open_air",
+ "type": "check"
+ },
+ "area/highway": {
+ "key": "area:highway",
+ "type": "typeCombo"
+ },
+ "aircraft/type": {
+ "key": "aircraft:type",
+ "type": "semiCombo",
+ "options": [
+ "military",
+ "helicopter",
+ "airliner",
+ "jet",
+ "fixed_wing",
+ "cargo",
+ "glider"
+ ]
+ },
+ "aerialway/occupancy": {
+ "key": "aerialway:occupancy",
+ "type": "number",
+ "minValue": 0
+ },
+ "aerialway/heating": {
+ "key": "aerialway:heating",
+ "type": "check"
+ },
+ "aerialway/duration": {
+ "key": "aerialway:duration",
+ "type": "number",
+ "minValue": 0
+ },
+ "aerialway/capacity": {
+ "key": "aerialway:capacity",
+ "type": "number",
+ "minValue": 0
+ },
+ "aerialway/bubble": {
+ "key": "aerialway:bubble",
+ "type": "check"
+ },
+ "aerialway/access": {
+ "key": "aerialway:access",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "entry",
+ "exit",
+ "both"
+ ]
+ },
+ "aerialway/summer/access": {
+ "key": "aerialway:summer:access",
+ "type": "combo",
+ "autoSuggestions": false,
+ "customValues": false,
+ "options": [
+ "entry",
+ "exit",
+ "both"
+ ]
+ },
+ "addr/interpolation": {
+ "key": "addr:interpolation",
"type": "combo",
"autoSuggestions": false,
"customValues": false,
"options": [
"all",
- "minor"
- ]
- },
- "street_cabinet": {
- "key": "street_cabinet",
- "type": "combo"
- },
- "stroller": {
- "key": "stroller",
- "type": "radio",
- "options": [
- "yes",
- "limited",
- "no"
- ]
- },
- "structure_power": {
- "type": "combo",
- "key": "structure",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "lattice",
- "solid",
- "tubular"
- ]
- },
- "structure_waterway": {
- "type": "structureRadio",
- "keys": [
- "tunnel"
- ],
- "options": [
- "tunnel"
- ]
- },
- "structure": {
- "type": "structureRadio",
- "keys": [
- "bridge",
- "tunnel",
- "embankment",
- "cutting",
- "ford"
- ],
- "options": [
- "bridge",
- "tunnel",
- "embankment",
- "cutting",
- "ford"
- ]
- },
- "studio": {
- "key": "studio",
- "type": "combo"
- },
- "subject": {
- "key": "subject",
- "type": "text"
- },
- "subject/wikidata": {
- "key": "subject:wikidata",
- "keys": [
- "subject:wikidata",
- "subject:wikipedia"
- ],
- "type": "wikidata"
- },
- "substance": {
- "key": "substance",
- "type": "combo"
- },
- "substation_pipeline": {
- "key": "substation",
- "type": "typeCombo",
- "autoSuggestions": false,
- "options": [
- "transmission",
- "distribution",
- "minor_distribution",
- "industrial",
- "compression",
- "measurement",
- "valve",
- "valve_group",
- "inspection_gauge",
- "field_gathering"
- ]
- },
- "substation": {
- "key": "substation",
- "type": "typeCombo",
- "autoSuggestions": false,
- "options": [
- "transmission",
- "distribution",
- "minor_distribution",
- "industrial",
- "generation",
- "transition",
- "traction",
- "converter",
- "compensation"
- ]
- },
- "supervised": {
- "key": "supervised",
- "type": "check"
- },
- "support": {
- "key": "support",
- "type": "combo"
- },
- "surface": {
- "key": "surface",
- "type": "combo",
- "options": [
- "asphalt",
- "unpaved",
- "paved",
- "ground",
- "gravel",
- "compacted",
- "concrete",
- "paving_stones",
- "sett",
- "dirt",
- "grass",
- "sand",
- "wood",
- "metal",
- "artificial_turf",
- "unhewn_cobblestone",
- "mud",
- "woodchips",
- "salt"
- ]
- },
- "surveillance": {
- "key": "surveillance",
- "type": "combo"
- },
- "surveillance/type": {
- "key": "surveillance:type",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "camera",
- "guard",
- "ALPR"
- ]
- },
- "surveillance/zone": {
- "key": "surveillance:zone",
- "type": "combo"
- },
- "survey_point/datum_aligned": {
- "key": "survey_point:datum_aligned",
- "type": "check"
- },
- "survey_point/purpose": {
- "key": "survey_point:purpose",
- "type": "combo",
- "options": [
- "horizontal",
- "vertical",
- "both"
- ]
- },
- "survey_point/structure": {
- "key": "survey_point:structure",
- "type": "combo",
- "options": [
- "beacon",
- "block",
- "pole",
- "pillar",
- "bracket",
- "plaque",
- "medallion",
- "cairn",
- "pin",
- "indented_pin",
- "cut",
- "magnet"
- ]
- },
- "survey/date": {
- "key": "survey:date",
- "type": "text"
- },
- "swimming_pool": {
- "key": "swimming_pool",
- "type": "combo"
- },
- "switch": {
- "key": "switch",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "mechanical",
- "circuit_breaker",
- "disconnector",
- "earthing"
- ]
- },
- "tactile_paving": {
- "key": "tactile_paving",
- "type": "check"
- },
- "takeaway": {
- "key": "takeaway",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "yes",
- "no",
- "only"
- ]
- },
- "target": {
- "key": "target",
- "type": "combo",
- "snake_case": false,
- "caseSensitive": true
- },
- "taxon": {
- "key": "taxon",
- "type": "combo",
- "snake_case": false,
- "caseSensitive": true
- },
- "tee": {
- "key": "tee",
- "type": "semiCombo",
- "reference": {
- "key": "golf",
- "value": "tee"
- }
- },
- "telecom": {
- "key": "telecom",
- "type": "combo"
- },
- "telecom/medium": {
- "key": "telecom:medium",
- "type": "combo"
- },
- "tidal": {
- "key": "tidal",
- "type": "check"
- },
- "to": {
- "key": "to",
- "type": "text"
- },
- "toilets": {
- "key": "toilets",
- "type": "check"
- },
- "toilets/disposal": {
- "key": "toilets:disposal",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "flush",
- "pitlatrine",
- "chemical",
- "bucket"
- ]
- },
- "toilets/handwashing": {
- "key": "toilets:handwashing",
- "type": "check"
- },
- "toilets/position": {
- "key": "toilets:position",
- "type": "semiCombo"
- },
- "toilets/wheelchair": {
- "key": "toilets:wheelchair",
- "type": "radio",
- "prerequisiteTag": {
- "key": "toilets",
- "valueNot": "no"
- },
- "options": [
- "yes",
- "limited",
- "no"
- ]
- },
- "toll": {
- "key": "toll",
- "type": "check"
- },
- "tomb": {
- "key": "tomb",
- "type": "typeCombo"
- },
- "tourism": {
- "key": "tourism",
- "type": "typeCombo"
- },
- "tower/construction": {
- "key": "tower:construction",
- "type": "combo"
- },
- "tower/platforms": {
- "key": "tower:platforms",
- "type": "number",
- "minValue": 1
- },
- "tower/type": {
- "key": "tower:type",
- "type": "combo"
- },
- "townhall/type": {
- "key": "townhall:type",
- "type": "combo"
- },
- "tracktype": {
- "key": "tracktype",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "grade1",
- "grade2",
- "grade3",
- "grade4",
- "grade5"
- ]
- },
- "trade": {
- "key": "trade",
- "type": "typeCombo"
- },
- "traffic_calming": {
- "key": "traffic_calming",
- "type": "typeCombo",
- "options": [
- "bump",
- "chicane",
- "choker",
- "choked_table",
- "cushion",
- "dip",
- "double_dip",
- "hump",
- "island",
- "mini_bumps",
- "rumble_strip",
- "table"
- ]
- },
- "traffic_sign": {
- "key": "traffic_sign",
- "type": "typeCombo",
- "snake_case": false,
- "caseSensitive": true
- },
- "traffic_sign/direction": {
- "key": "traffic_sign:direction",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "geometry": [
- "vertex"
- ],
- "options": [
- "forward",
- "backward",
- "both"
- ]
- },
- "traffic_signals": {
- "key": "traffic_signals",
- "type": "combo",
- "default": "signal"
- },
- "traffic_signals/arrow": {
- "key": "traffic_signals:arrow",
- "type": "check"
- },
- "traffic_signals/countdown": {
- "key": "traffic_signals:countdown",
- "type": "check"
- },
- "traffic_signals/direction": {
- "key": "traffic_signals:direction",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "forward",
- "backward",
- "both"
- ]
- },
- "traffic_signals/minimap": {
- "key": "traffic_signals:minimap",
- "type": "check"
- },
- "traffic_signals/sound": {
- "key": "traffic_signals:sound",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "yes",
- "no",
- "locate",
- "walk"
- ]
- },
- "traffic_signals/vibration": {
- "key": "traffic_signals:vibration",
- "type": "check"
- },
- "trail_visibility": {
- "key": "trail_visibility",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "excellent",
- "good",
- "intermediate",
- "bad",
- "horrible",
- "no"
- ]
- },
- "transformer": {
- "key": "transformer",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "main",
- "distribution",
- "generator",
- "converter",
- "phase_angle_regulator",
- "auxiliary",
- "yes"
- ]
- },
- "trees": {
- "key": "trees",
- "type": "semiCombo"
- },
- "trench": {
- "key": "trench",
- "type": "combo"
- },
- "trolley_wire": {
- "key": "trolley_wire",
- "type": "check"
- },
- "tunnel_combo": {
- "key": "tunnel",
- "type": "combo",
- "options": [
- "avalanche_protector",
- "building_passage",
- "culvert",
- "flooded"
- ]
- },
- "tunnel": {
- "key": "tunnel",
- "type": "typeCombo",
- "usage": "group"
- },
- "turning_circle": {
- "key": "turning_circle",
- "type": "combo"
- },
- "two_sided": {
- "key": "two_sided",
- "type": "defaultCheck",
- "geometry": [
- "line"
- ],
- "options": [
- "undefined",
- "yes"
- ]
- },
- "usage_rail": {
- "key": "usage",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "main",
- "branch",
- "industrial",
- "military",
- "test",
- "tourism"
- ]
- },
- "usage_waterway": {
- "key": "usage",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "transportation",
- "transmission",
- "irrigation",
- "headrace",
- "tailrace",
- "spillway"
- ]
- },
- "utility_semi": {
- "key": "utility",
- "type": "semiCombo"
- },
- "utility": {
- "key": "utility",
- "type": "typeCombo",
- "options": [
- "gas",
- "oil",
- "power",
- "sewerage",
- "street_lighting",
- "telecom",
- "water"
- ]
- },
- "valve": {
- "key": "valve",
- "type": "combo"
- },
- "vehicles": {
- "keys": [
- "bus",
- "trolleybus",
- "tram",
- "train",
- "subway",
- "light_rail",
- "monorail",
- "ferry"
- ],
- "type": "manyCombo",
- "reference": {
- "key": "public_transport"
- },
- "prerequisiteTag": {
- "keyNot": "aerialway"
- },
- "options": [
- "bus",
- "trolleybus",
- "tram",
- "train",
- "subway",
- "light_rail",
- "monorail",
- "ferry"
- ]
- },
- "vending": {
- "key": "vending",
- "type": "semiCombo"
- },
- "vhf": {
- "key": "vhf",
- "type": "text"
- },
- "via": {
- "key": "via",
- "type": "semiCombo",
- "snake_case": false,
- "caseSensitive": true
- },
- "video_calls": {
- "key": "video",
- "type": "check"
- },
- "visibility": {
- "key": "visibility",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "house",
- "street",
- "area"
- ]
- },
- "volcano/status": {
- "key": "volcano:status",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "active",
- "dormant",
- "extinct"
- ]
- },
- "volcano/type": {
- "key": "volcano:type",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "stratovolcano",
- "shield",
- "scoria"
- ]
- },
- "voltage_electrified": {
- "key": "voltage",
- "type": "combo",
- "label": "{voltage}",
- "prerequisiteTag": {
- "key": "electrified",
- "valueNot": "no"
- }
- },
- "voltage": {
- "key": "voltage",
- "type": "combo"
- },
- "voltage/primary": {
- "key": "voltage:primary",
- "type": "combo"
- },
- "voltage/secondary": {
- "key": "voltage:secondary",
- "type": "combo"
- },
- "voltage/tertiary": {
- "key": "voltage:tertiary",
- "type": "combo"
- },
- "wall": {
- "key": "wall",
- "type": "combo"
- },
- "waste": {
- "key": "waste",
- "type": "semiCombo"
- },
- "water_point": {
- "key": "water_point",
- "type": "check"
- },
- "water_source": {
- "key": "water_source",
- "type": "combo",
- "options": [
- "main",
- "water_tank",
- "pond",
- "river",
- "stream"
- ]
- },
- "water_tank/volume": {
- "key": "water_tank:volume",
- "type": "text"
- },
- "water": {
- "key": "water",
- "type": "combo"
- },
- "waterway": {
- "key": "waterway",
- "type": "typeCombo"
- },
- "website": {
- "key": "website",
- "type": "url",
- "universal": true
- },
- "wetland": {
- "key": "wetland",
- "type": "combo",
- "options": [
- "marsh",
- "reedbed",
- "saltmarsh",
- "tidalflat",
- "wet_meadow",
- "swamp",
- "mangrove",
- "bog",
- "fen",
- "string_bog"
- ]
- },
- "wheelchair": {
- "key": "wheelchair",
- "type": "radio",
- "options": [
- "yes",
- "limited",
- "no"
- ]
- },
- "wholesale": {
- "key": "wholesale",
- "type": "typeCombo"
- },
- "width": {
- "key": "width",
- "type": "number",
- "minValue": 0
- },
- "wikidata": {
- "key": "wikidata",
- "keys": [
- "wikidata",
- "wikipedia"
- ],
- "type": "wikidata",
- "universal": true
- },
- "wikimedia_commons": {
- "key": "wikimedia_commons",
- "type": "identifier",
- "urlFormat": "https://commons.wikimedia.org/wiki/{value}",
- "pattern": "^(?:File|Category):.{1,}",
- "universal": true
- },
- "wikipedia": {
- "key": "wikipedia",
- "keys": [
- "wikipedia",
- "wikidata"
- ],
- "type": "wikipedia",
- "universal": true
- },
- "windings": {
- "key": "windings",
- "type": "number",
- "minValue": 1
- },
- "windings/auto": {
- "key": "windings:auto",
- "type": "check",
- "options": [
- "undefined",
- "yes",
- "no"
- ]
- },
- "windings/configuration": {
- "key": "windings:configuration",
- "type": "combo",
- "autoSuggestions": false,
- "customValues": false,
- "options": [
- "star",
- "delta",
- "open-delta",
- "zigzag",
- "open",
- "scott",
- "leblanc"
+ "even",
+ "odd",
+ "alphabetic"
]
}
}
\ No newline at end of file
diff --git a/dist/fields.min.json b/dist/fields.min.json
index 4c8cd771..2b7955a9 100644
--- a/dist/fields.min.json
+++ b/dist/fields.min.json
@@ -1 +1 @@
-{"access_aisle":{"key":"access_aisle","type":"combo"},"access_simple":{"key":"access","type":"combo","autoSuggestions":false,"options":["yes","private","permissive","customers","permit","unknown","no"]},"access":{"keys":["access","foot","motor_vehicle","bicycle","horse"],"reference":{"key":"access"},"type":"access","options":["yes","no","permissive","private","designated","destination","customers","dismount","permit","unknown"]},"activity":{"keys":["hiking","bicycle","mtb","horse","ski"],"type":"manyCombo","options":["hiking","bicycle","mtb","horse","ski"]},"addr/interpolation":{"key":"addr:interpolation","type":"combo","autoSuggestions":false,"customValues":false,"options":["all","even","odd","alphabetic"]},"address":{"type":"address","key":"addr","keys":["addr:block_number","addr:city","addr:block_number","addr:conscriptionnumber","addr:county","addr:country","addr:county","addr:district","addr:floor","addr:hamlet","addr:housename","addr:housenumber","addr:neighbourhood","addr:place","addr:postcode","addr:province","addr:quarter","addr:state","addr:street","addr:subdistrict","addr:suburb","addr:unit"]},"admin_level":{"key":"admin_level","type":"number","minValue":1},"aerialway":{"key":"aerialway","type":"typeCombo"},"aerialway/access":{"key":"aerialway:access","type":"combo","autoSuggestions":false,"customValues":false,"options":["entry","exit","both"]},"aerialway/bubble":{"key":"aerialway:bubble","type":"check"},"aerialway/capacity":{"key":"aerialway:capacity","type":"number","minValue":0},"aerialway/duration":{"key":"aerialway:duration","type":"number","minValue":0},"aerialway/heating":{"key":"aerialway:heating","type":"check"},"aerialway/occupancy":{"key":"aerialway:occupancy","type":"number","minValue":0},"aerialway/summer/access":{"key":"aerialway:summer:access","type":"combo","autoSuggestions":false,"customValues":false,"options":["entry","exit","both"]},"aeroway":{"key":"aeroway","type":"typeCombo"},"agrarian":{"key":"agrarian","type":"semiCombo"},"air_conditioning":{"key":"air_conditioning","type":"check"},"amenity":{"key":"amenity","type":"typeCombo"},"animal_boarding":{"key":"animal_boarding","type":"semiCombo"},"animal_breeding":{"key":"animal_breeding","type":"semiCombo"},"animal_shelter":{"key":"animal_shelter","type":"semiCombo"},"archaeological_site":{"key":"archaeological_site","type":"combo"},"architect":{"key":"architect","type":"text"},"area/highway":{"key":"area:highway","type":"typeCombo"},"artist":{"key":"artist_name","type":"text"},"artwork_type":{"key":"artwork_type","type":"combo","options":["sculpture","statue","mural","installation","graffiti","bust","painting","mosaic","relief"]},"ascent":{"key":"ascent","minValue":0,"type":"number"},"atm":{"key":"atm","type":"check"},"attraction":{"key":"attraction","type":"typeCombo"},"automated":{"key":"automated","type":"check"},"baby_feeding":{"key":"baby_feeding","type":"combo","autoSuggestions":false,"customValues":false,"options":["room","yes","no"]},"baby_seat":{"key":"baby","type":"check"},"backcountry":{"key":"backcountry","type":"check"},"backrest":{"key":"backrest","type":"check"},"bar":{"key":"bar","type":"check"},"barrier_planter":{"key":"barrier","type":"defaultCheck","geometry":["vertex"],"options":["undefined","planter"]},"barrier":{"key":"barrier","type":"typeCombo"},"basin":{"key":"basin","type":"combo","options":["detention","evaporation","infiltration","retention"]},"bath/open_air":{"key":"bath:open_air","type":"check"},"bath/sand_bath":{"key":"bath:sand_bath","type":"check"},"bath/type":{"key":"bath:type","type":"combo"},"beauty":{"key":"beauty","type":"semiCombo","options":["nails","tanning","cosmetics","spa","skin_care","waxing","hair_removal"]},"bench":{"key":"bench","type":"check"},"bicycle_parking":{"key":"bicycle_parking","type":"combo","options":["stands","wall_loops","shed","lockers","building","handlebar_holder"]},"bike_ride":{"key":"bike_ride","type":"check"},"bin":{"key":"bin","type":"check"},"blind":{"key":"blind","type":"radio","options":["yes","limited","no"]},"blood_components":{"key":"blood:","type":"multiCombo","options":["whole","plasma","platelets","stemcells"]},"board_type":{"key":"board_type","type":"combo","options":["art","astronomy","geology","history","nature","notice","plants","welcome_sign","wildlife"]},"bollard":{"key":"bollard","type":"combo","options":["fixed","flexible","foldable","removable","rising"]},"booth":{"key":"booth","type":"combo","caseSensitive":true},"bottle":{"key":"bottle","type":"check"},"boules":{"key":"boules","type":"typeCombo"},"boundary":{"key":"boundary","type":"combo"},"branch_brand":{"key":"branch","type":"text"},"brand":{"key":"brand","type":"text"},"brewery":{"key":"brewery","type":"semiCombo"},"bridge_combo":{"key":"bridge","type":"combo"},"bridge":{"key":"bridge","type":"typeCombo","usage":"group"},"bridge/support":{"key":"bridge:support","type":"typeCombo"},"building_area_yes":{"key":"building","type":"combo","default":"yes","geometry":["area"],"label":"{building}"},"building_area":{"key":"building","type":"combo","geometry":["area"],"label":"{building}"},"building":{"key":"building","type":"combo"},"building/flats":{"key":"building:flats","type":"number","minValue":0},"building/levels_building":{"key":"building:levels","type":"number","minValue":0,"label":"{building/levels}","placeholder":"{building/levels}","prerequisiteTag":{"key":"building","valueNot":"no"}},"building/levels":{"key":"building:levels","type":"number","minValue":0},"building/levels/underground":{"key":"building:levels:underground","type":"number","minValue":0},"building/material":{"key":"building:material","type":"combo"},"building/part":{"key":"building:part","type":"combo","default":"yes"},"building/prefabricated":{"key":"building:prefabricated","type":"check"},"bunker_type":{"key":"bunker_type","type":"combo"},"button_operated":{"key":"button_operated","type":"check"},"cables":{"key":"cables","type":"number","minValue":1},"cai_scale-IT":{"key":"cai_scale","type":"combo","snake_case":false,"caseSensitive":true,"autoSuggestions":false,"customValues":false,"locationSet":{"include":["IT"]},"options":["T","E","EE","EEA","EAI"]},"camera/direction":{"key":"camera:direction","type":"number","increment":5},"camera/mount":{"key":"camera:mount","type":"combo"},"camera/type":{"key":"camera:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["fixed","panning","dome"]},"capacity_parking":{"key":"capacity","type":"number","minValue":0},"capacity_volume":{"key":"capacity","type":"number","minValue":0},"capacity":{"key":"capacity","type":"number","minValue":0},"capacity/caravans":{"key":"capacity:caravans","type":"number","minValue":0},"capacity/disabled_parking":{"key":"capacity:disabled","type":"number","minValue":0},"capacity/persons":{"key":"capacity:persons","type":"number","minValue":0},"capacity/tents":{"key":"capacity:tents","type":"number","minValue":0,"prerequisiteTag":{"key":"tents","valueNot":"no"}},"cash_in":{"key":"cash_in","type":"check"},"castle_type":{"key":"castle_type","type":"combo","options":["defensive","palace","stately","manor","fortress","castrum","shiro","kremlin","hillfort"]},"changing_table":{"key":"changing_table","type":"check"},"charge_fee":{"key":"charge","type":"text","prerequisiteTag":{"key":"fee","valueNot":"no"}},"charge_toll":{"key":"charge","type":"text","prerequisiteTag":{"key":"toll","valueNot":"no"}},"check_date":{"key":"check_date","type":"text"},"circumference":{"key":"circumference","type":"combo","snake_case":false},"clothes":{"key":"clothes","type":"semiCombo"},"club":{"key":"club","type":"typeCombo"},"collection_times":{"key":"collection_times","type":"text"},"collector":{"key":"collector","type":"semiCombo"},"colour":{"key":"colour","type":"colour"},"comment":{"key":"comment","type":"textarea","usage":"changeset"},"communication_multi":{"key":"communication:","type":"multiCombo"},"connectivity":{"key":"connectivity","type":"text"},"construction":{"key":"construction","type":"combo"},"consulate":{"key":"consulate","type":"combo"},"consulting":{"key":"consulting","type":"semiCombo"},"contact/webcam":{"key":"contact:webcam","type":"url"},"content":{"key":"content","type":"combo","options":["silage","water","oil","fuel","slurry","gas","manure","sewage"],"autoSuggestions":false},"conveying_escalator":{"key":"conveying","type":"check"},"conveying":{"key":"conveying","type":"typeCombo","autoSuggestions":false,"customValues":false,"options":["forward","backward","reversible"]},"country_flag":{"key":"country","type":"combo","prerequisiteTag":{"key":"flag:type","value":"national"}},"country":{"key":"country","type":"combo","snake_case":false,"caseSensitive":true},"couplings":{"key":"couplings","type":"number","minValue":1},"covered_no":{"key":"covered","type":"check","label":"{covered}","options":["undefined","yes","no"]},"covered":{"key":"covered","type":"check"},"craft":{"key":"craft","type":"typeCombo","options":["agricultural_engines","basket_maker","beekeeper","blacksmith","boatbuilder","bookbinder","brewery","builder","carpenter","carpet_layer","caterer","chimney_sweeper","cleaning","clockmaker","confectionery","distillery","dressmaker","electronics_repair","electrician","floorer","gardener","glaziery","grinding_mill","handicraft","hvac","insulation","jeweller","joiner","key_cutter","locksmith","metal_construction","oil_mill","painter","parquet_layer","photographer","photographic_laboratory","plasterer","plumber","pottery","rigger","roofer","saddler","sailmaker","sawmill","scaffolder","sculptor","shoemaker","signmaker","stonemason","tailor","tiler","tinsmith","upholsterer","watchmaker","window_construction","winery"]},"crane/type":{"key":"crane:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["portal_crane","floor-mounted_crane","travel_lift","gantry_crane","tower_crane"]},"crop":{"key":"crop","type":"semiCombo","options":["asparagus","barley","beet","cassava","coffee","cotton","cranberries","fast_growing_wood","flowers","grape","grass","hop","lavender","maize","potato","rape","rice","strawberry","sugar_beet","sugarcane","sunflower","soy","tea","tobacco","vegetable","wheat"]},"crossing_raised":{"key":"traffic_calming","type":"defaultCheck","options":["undefined","table"]},"crossing":{"key":"crossing","type":"combo","options":["traffic_signals","uncontrolled","unmarked"]},"crossing/barrier":{"key":"crossing:barrier","type":"combo","autoSuggestions":false,"customValues":false,"options":["full","double_half","half","no","yes"]},"crossing/bell":{"key":"crossing:bell","type":"check"},"crossing/island":{"key":"crossing:island","type":"check"},"crossing/light":{"key":"crossing:light","type":"check"},"crossing/markings":{"key":"crossing:markings","type":"combo","options":["zebra","lines","no","ladder","dots","dashes","yes","surface","ladder:skewed","pictograms","lines:paired","zebra:double","zebra:paired","zebra:bicolour","ladder:paired"]},"cuisine":{"key":"cuisine","type":"semiCombo","options":["pizza","burger","regional","coffee_shop","italian","chinese","sandwich","japanese","mexican","kebab","indian","chicken","fish","asian","french","spanish","portuguese","russian","polish","thai","korean","american","seafood","sushi","ice_cream","german","greek","vietnamese","turkish","lebanese","indonesian","malaysian","taiwanese","juice","bubble_tea","hot_dog","cake","pankcake","pasta","salad","chocolate","dessert","steak_house","donut"]},"currency_multi":{"key":"currency:","type":"multiCombo","caseSensitive":true},"cutting":{"key":"cutting","type":"typeCombo","usage":"group"},"cycle_network":{"key":"cycle_network","type":"networkCombo","snake_case":false,"caseSensitive":true},"cycleway":{"keys":["cycleway","cycleway:left","cycleway:right"],"reference":{"key":"cycleway"},"type":"cycleway","autoSuggestions":true,"options":["no","lane","shared_lane","track","share_busway","opposite_lane","opposite","separate"]},"dance/style":{"key":"dance:style","type":"semiCombo"},"date":{"key":"date","type":"check"},"defibrillator/location":{"key":"defibrillator:location","type":"textarea"},"delivery":{"key":"delivery","type":"check"},"denomination":{"key":"denomination","type":"combo","prerequisiteTag":{"key":"religion","valueNot":"none"}},"denotation":{"key":"denotation","type":"combo"},"departures_board":{"key":"departures_board","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","timetable","realtime","no"]},"deposit/trolley":{"key":"trolley:deposit","type":"check"},"depth":{"key":"depth","minValue":0,"type":"number"},"descent":{"key":"descent","minValue":0,"type":"number"},"description":{"key":"description","type":"textarea","universal":true},"design":{"key":"design","type":"combo"},"destination_oneway":{"key":"destination","type":"semiCombo","label":"{destination}","prerequisiteTag":{"key":"oneway","value":"yes"},"snake_case":false},"destination_waterway":{"key":"destination","type":"text"},"destination":{"key":"destination","type":"semiCombo","snake_case":false,"caseSensitive":true},"destination/ref_oneway":{"key":"destination:ref","type":"semiCombo","label":"{destination/ref}","prerequisiteTag":{"key":"oneway","value":"yes"},"snake_case":false,"caseSensitive":true},"destination/ref":{"key":"destination:ref","type":"semiCombo","snake_case":false,"caseSensitive":true},"destination/symbol_oneway":{"key":"destination:symbol","type":"semiCombo","label":"{destination/symbol}","prerequisiteTag":{"key":"oneway","value":"yes"}},"destination/symbol":{"key":"destination:symbol","type":"semiCombo"},"devices":{"key":"devices","type":"number","minValue":0},"diameter_crown":{"key":"diameter_crown","type":"combo","snake_case":false},"diameter":{"key":"diameter","type":"combo","snake_case":false},"diet_multi":{"key":"diet:","type":"multiCombo","options":["vegetarian","vegan","halal","gluten_free","kosher","lactose_free","pescetarian"]},"diplomatic":{"key":"diplomatic","type":"combo"},"diplomatic/services":{"key":"diplomatic:services:","type":"multiCombo"},"direction_cardinal-US-CA-NZ":{"key":"direction","type":"combo","autoSuggestions":false,"locationSet":{"include":["CA","NZ","US"]},"options":["north","south","east","west"]},"direction_clock":{"key":"direction","type":"combo","autoSuggestions":false,"customValues":false,"options":["clockwise","anticlockwise"]},"direction_point":{"key":"direction","type":"number","label":"{direction}","increment":5,"geometry":["point"]},"direction_vertex_dual":{"key":"direction","type":"combo","label":"{direction_vertex}","stringsCrossReference":"{direction_vertex}","options":["forward","backward"],"geometry":["vertex"],"autoSuggestions":false,"customValues":false},"direction_vertex":{"key":"direction","type":"combo","geometry":["vertex"],"autoSuggestions":false,"customValues":false,"options":["forward","backward","both"]},"direction":{"key":"direction","type":"number","increment":5},"dispensing":{"key":"dispensing","type":"check"},"display":{"key":"display","type":"combo","autoSuggestions":false,"options":["analog","digital","sundial","unorthodox"]},"distance":{"key":"distance","type":"text"},"disused/amenity":{"key":"disused:amenity","type":"typeCombo"},"disused/railway":{"key":"disused:railway","type":"typeCombo"},"disused/shop":{"key":"disused:shop","type":"typeCombo"},"dock":{"key":"dock","type":"combo"},"dog":{"key":"dog","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","leashed","no"]},"door_type":{"key":"door","type":"typeCombo"},"door":{"key":"door","type":"combo"},"drink_multi":{"key":"drink:","type":"multiCombo"},"drinking_water_available":{"key":"drinking_water","type":"check"},"drinking_water":{"key":"drinking_water","type":"check"},"drive_through":{"key":"drive_through","type":"check"},"duration":{"key":"duration","type":"text"},"ele_node":{"key":"ele","type":"number","label":"{ele}","universal":true,"geometry":["point","vertex"]},"ele":{"key":"ele","type":"number","geometry":["line","area","relation"]},"electrified":{"key":"electrified","type":"combo","autoSuggestions":false,"customValues":false,"options":["contact_line","rail","yes","no"]},"email":{"key":"email","type":"email"},"embankment":{"key":"embankment","type":"typeCombo","usage":"group"},"embassy":{"key":"embassy","type":"combo","autoSuggestions":false,"options":["yes","residence","high_commission","mission","branch_embassy","nunciature","delegation","interests_section"]},"emergency_combo":{"key":"emergency","type":"combo"},"emergency_ward_entrance":{"key":"emergency_ward_entrance","type":"combo"},"emergency":{"key":"emergency","type":"check"},"enforcement":{"key":"enforcement","type":"combo"},"entrance":{"key":"entrance","type":"typeCombo","options":["yes","main","secondary","service","exit","entrance","emergency","staircase","home","garage"]},"except":{"key":"except","type":"combo"},"expected_rcn_route_relations":{"key":"expected_rcn_route_relations","type":"number"},"expected_rwn_route_relations":{"key":"expected_rwn_route_relations","type":"number"},"expressway-US":{"key":"expressway","type":"check","locationSet":{"include":["US"]}},"faces":{"key":"faces","type":"number","minValue":0},"fax":{"key":"fax","type":"tel"},"fee":{"key":"fee","type":"check"},"fence_type":{"key":"fence_type","type":"combo"},"fire_hydrant/diameter":{"key":"fire_hydrant:diameter","type":"combo","snake_case":false},"fire_hydrant/position":{"key":"fire_hydrant:position","type":"combo","autoSuggestions":false,"customValues":false,"options":["green","lane","sidewalk","parking_lot"]},"fire_hydrant/pressure":{"key":"fire_hydrant:pressure","type":"combo","snake_case":false,"caseSensitive":true},"fire_hydrant/type":{"key":"fire_hydrant:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["pillar","underground","wall","pipe"]},"fireplace":{"key":"fireplace","type":"check"},"fishing":{"key":"fishing","type":"combo"},"fitness_station":{"key":"fitness_station","type":"typeCombo"},"fixme":{"key":"fixme","type":"textarea","universal":true},"flag/name":{"key":"flag:name","type":"text"},"flag/type":{"key":"flag:type","type":"combo"},"flag/wikidata":{"key":"flag:wikidata","keys":["flag:wikidata","flag:wikipedia"],"type":"wikidata"},"flashing_lights":{"key":"flashing_lights","type":"combo","autoSuggestions":false,"customValues":false,"options":["button","always","sensor","button;sensor","no","yes"]},"floating":{"key":"floating","type":"check"},"flood_prone":{"key":"flood_prone","type":"check"},"ford":{"key":"ford","type":"typeCombo","usage":"group"},"fountain":{"key":"fountain","type":"combo"},"frequency_electrified":{"key":"frequency","type":"combo","label":"{frequency}","prerequisiteTag":{"key":"electrified","valueNot":"no"}},"frequency":{"key":"frequency","type":"combo"},"from":{"key":"from","type":"text"},"fuel":{"key":"fuel","type":"combo"},"fuel/fuel_multi-RU":{"key":"fuel:","type":"multiCombo","label":"{fuel/fuel_multi}","stringsCrossReference":"{fuel/fuel_multi}","options":["diesel","octane_80","octane_92","octane_95","octane_98","octane_100","lpg","cng"],"autoSuggestions":false,"locationSet":{"include":["RU"]}},"fuel/fuel_multi":{"key":"fuel:","type":"multiCombo","autoSuggestions":true,"caseSensitive":true,"locationSet":{"exclude":["RU"]},"options":["diesel","GTL_diesel","HGV_diesel","biodiesel","octane_80","octane_85","octane_87","octane_88","octane_89","octane_90","octane_91","octane_92","octane_93","octane_95","octane_97","octane_98","octane_100","e10","e85","lpg","cng","propane","LH2","h70","adblue","adblue:canister"]},"gambling":{"key":"gambling","type":"semiCombo"},"garden/type":{"key":"garden:type","type":"combo"},"gauge":{"key":"gauge","type":"combo"},"gender":{"type":"radio","keys":["male","female","unisex"],"options":["male","female","unisex"]},"generator/method":{"key":"generator:method","type":"combo","autoSuggestions":false,"options":["fission","fusion","wind_turbine","water-storage","water-pumped-storage","run-of-the-river","barrage","stream","thermal","photovoltaic","combustion","gasification","anaerobic_digestion"]},"generator/method/hydro":{"key":"generator:method","type":"combo","label":"{generator/method}","stringsCrossReference":"{generator/method}","options":["water-storage","water-pumped-storage","run-of-the-river"],"autoSuggestions":false,"prerequisiteTag":{"key":"generator:source","value":"hydro"}},"generator/output/electricity":{"key":"generator:output:electricity","type":"typeCombo","snake_case":false,"caseSensitive":true},"generator/source":{"key":"generator:source","type":"combo","options":["nuclear","wind","hydro","tidal","wave","geothermal","solar","coal","gas","biomass","biofuel","biogas","oil","diesel","gasoline","waste","battery"]},"generator/type":{"key":"generator:type","type":"combo"},"genus":{"key":"genus","type":"combo","snake_case":false,"caseSensitive":true},"geyser/height":{"key":"geyser:height","type":"text"},"gnis/feature_id-US":{"key":"gnis:feature_id","type":"identifier","urlFormat":"https://edits.nationalmap.gov/apps/gaz-domestic/public/summary/{value}","pattern":"^[0-9]{1,}$","locationSet":{"include":["us"]}},"government":{"key":"government","type":"typeCombo"},"grades":{"key":"grades","type":"combo","snake_case":false,"caseSensitive":true},"grape_variety":{"key":"grape_variety","type":"semiCombo"},"group_only":{"key":"group_only","type":"check"},"guest_house":{"key":"guest_house","type":"combo"},"handicap":{"key":"handicap","type":"number"},"handrail":{"key":"handrail","type":"check"},"hashtags":{"key":"hashtags","type":"semiCombo","usage":"changeset"},"healthcare":{"key":"healthcare","type":"typeCombo"},"healthcare/speciality":{"key":"healthcare:speciality","type":"semiCombo","options":["abortion","acupuncture","allergology","anaesthetics","angiology","anthroposophical","applied_kinesiology","aromatherapy","ayurveda","behavior","biochemistry","biology","blood_check","body","cardiology","cardiothoracic_surgery","child_psychiatry","chiropractic","clinical_pathology","community","depth","dermatology","dermatovenereology","diabetology","diagnostic_radiology","emergency","endocrinology","fertility","gastroenterology","general","geriatrics","gynaecology","haematology","hepatology","herbalism","homeopathy","humanistic","hydrotherapy","hypnosis","infectious_diseases","intensive","internal","dental_oral_maxillo_facial_surgery","naturopathy","neonatology","nephrology","neurology","neuropsychiatry","neurosurgery","nuclear","occupational","oncology","ophthalmology","orthodontics","orthopaedics","osteopathy","otolaryngology","paediatric_surgery","paediatrics","palliative","pathology","physiatry","plastic_surgery","podiatry","proctology","psychiatry","pulmonology","radiology","radiotherapy","reflexology","reiki","rheumatology","shiatsu","stomatology","surgery","systemic","traditional_chinese_medicine","transplant","trauma","tropical","tuina","unani","urology","vaccination","vascular_surgery"]},"heating":{"key":"heating","type":"check"},"height_building":{"key":"height","minValue":0,"type":"number","prerequisiteTag":{"key":"building","valueNot":"no"}},"height":{"key":"height","minValue":0,"type":"number"},"height/hub":{"key":"height:hub","minValue":0,"type":"number"},"highchair":{"key":"highchair","type":"check"},"highspeed":{"key":"highspeed","type":"check"},"highway_cartpath":{"key":"highway","type":"typeCombo","autoSuggestions":false,"options":["path","service"]},"highway":{"key":"highway","type":"typeCombo"},"historic":{"key":"historic","type":"typeCombo"},"historic/civilization":{"key":"historic:civilization","type":"combo"},"historic/wreck/date_sunk":{"key":"wreck:date_sunk","type":"text"},"historic/wreck/visible_at_high_tide":{"key":"wreck:visible_at_high_tide","type":"check"},"historic/wreck/visible_at_low_tide":{"key":"wreck:visible_at_low_tide","type":"check"},"holding_position/type":{"key":"holding_position:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["runway","intermediate","ILS"]},"hoops":{"key":"hoops","type":"number","minValue":0},"horse_dressage":{"key":"sport","type":"check","reference":{"key":"sport","value":"equestrian"},"options":["undefined","equestrian"]},"horse_riding":{"key":"leisure","type":"check","reference":{"key":"leisure","value":"horse_riding"},"options":["undefined","horse_riding"]},"horse_scale":{"key":"horse_scale","type":"combo","autoSuggestions":false,"customValues":false,"options":["common","demanding","difficult","critical","dangerous","impossible"]},"horse_stables":{"key":"amenity","type":"check","reference":{"key":"amenity","value":"stables"},"options":["undefined","stables"]},"hot_water":{"key":"hot_water","type":"check"},"iata":{"key":"iata","type":"text"},"icao":{"key":"icao","type":"text"},"image":{"key":"image","type":"url","universal":true},"incline_steps":{"key":"incline","type":"combo","label":"{incline}","autoSuggestions":false,"customValues":false,"options":["up","down"]},"incline":{"key":"incline","type":"combo"},"indoor_type":{"key":"indoor","type":"typeCombo"},"indoor":{"key":"indoor","type":"check"},"industrial":{"key":"industrial","type":"combo"},"informal":{"key":"informal","type":"check"},"information":{"key":"information","type":"typeCombo"},"inscription":{"key":"inscription","type":"textarea"},"intermittent_yes":{"key":"intermittent","type":"check","label":"{intermittent}","default":"yes"},"intermittent":{"key":"intermittent","type":"check"},"internet_access":{"key":"internet_access","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","no","wlan","wired","terminal"]},"internet_access/fee":{"key":"internet_access:fee","type":"combo","autoSuggestions":false,"customValues":false,"prerequisiteTag":{"key":"internet_access","valueNot":"no"},"options":["no","yes","customers"]},"internet_access/ssid":{"key":"internet_access:ssid","type":"text","prerequisiteTag":{"key":"internet_access","valueNot":"no"}},"interval":{"key":"interval","type":"text"},"junction_line":{"key":"junction","type":"combo","autoSuggestions":false,"customValues":false,"options":["roundabout","circular","jughandle"]},"junction/ref_oneway":{"key":"junction:ref","type":"text","prerequisiteTag":{"key":"oneway","value":"yes"}},"kerb":{"key":"kerb","type":"combo"},"kerb/height":{"key":"kerb:height","type":"combo","snake_case":false},"kitchen":{"key":"kitchen","type":"check"},"kneipp_water_cure_multi":{"key":"kneipp_water_cure:","type":"multiCombo"},"label":{"key":"label","type":"textarea"},"lamp_mount":{"key":"lamp_mount","type":"combo"},"lamp_type":{"key":"lamp_type","type":"combo"},"landuse":{"key":"landuse","type":"typeCombo"},"lane_markings":{"key":"lane_markings","type":"check"},"lanes":{"key":"lanes","type":"number","minValue":0},"language_multi":{"key":"language:","type":"multiCombo"},"layer":{"key":"layer","type":"number"},"leaf_cycle_singular":{"key":"leaf_cycle","type":"combo","label":"{leaf_cycle}","stringsCrossReference":"{leaf_cycle}","options":["evergreen","deciduous","semi_evergreen","semi_deciduous"],"autoSuggestions":false,"customValues":false},"leaf_cycle":{"key":"leaf_cycle","type":"combo","autoSuggestions":false,"customValues":false,"options":["evergreen","deciduous","semi_evergreen","semi_deciduous","mixed"]},"leaf_type_singular":{"key":"leaf_type","type":"combo","stringsCrossReference":"{leaf_type}","options":["broadleaved","needleleaved","leafless"],"autoSuggestions":false,"customValues":false},"leaf_type":{"key":"leaf_type","type":"combo","autoSuggestions":false,"customValues":false,"options":["broadleaved","needleleaved","mixed","leafless"]},"leisure":{"key":"leisure","type":"typeCombo"},"length":{"key":"length","type":"number","minValue":0},"level_semi":{"key":"level","type":"semiCombo"},"level":{"key":"level","type":"combo","prerequisiteTag":{"keyNot":"building"}},"liaison":{"key":"liaison","type":"combo"},"license_classes":{"key":"license_classes","type":"semiCombo"},"lifeguard":{"key":"lifeguard","type":"check"},"line_attachment":{"key":"line_attachment","type":"combo"},"line_management":{"key":"line_management","type":"combo"},"lit":{"key":"lit","type":"check"},"location_pool":{"key":"location","type":"combo","label":"{location}","autoSuggestions":false,"customValues":false,"options":["outdoor","indoor","roof"]},"location":{"key":"location","type":"combo"},"lock":{"key":"lock","type":"check"},"lockable":{"key":"lockable","type":"check"},"locked":{"key":"locked","type":"check"},"man_made":{"key":"man_made","type":"typeCombo"},"manhole":{"key":"manhole","type":"typeCombo"},"manufacturer":{"key":"manufacturer","type":"combo","snake_case":false,"caseSensitive":true},"map_size":{"key":"map_size","type":"typeCombo"},"map_type":{"key":"map_type","type":"typeCombo"},"mapillary":{"key":"mapillary","type":"identifier","urlFormat":"https://mapillary.com/app/?focus=photo&pKey={value}","pattern":"^[a-zA-Z0-9-_]{1,}$","universal":true},"marker":{"key":"marker","type":"typeCombo"},"material":{"key":"material","type":"combo"},"mattress":{"key":"mattress","type":"check"},"max_age":{"key":"max_age","type":"number","minValue":0},"maxheight":{"key":"maxheight","type":"roadheight","snake_case":false},"maxspeed":{"key":"maxspeed","type":"roadspeed"},"maxspeed/advisory":{"key":"maxspeed:advisory","type":"roadspeed"},"maxspeed/hgv":{"key":"maxspeed:hgv","type":"roadspeed"},"maxstay":{"key":"maxstay","type":"combo","options":["15 minutes","30 minutes","45 minutes","1 hour","1.5 hours","2 hours","2.5 hours","3 hours","4 hours","1 day","2 days"],"autoSuggestions":false,"snake_case":false},"maxweight_bridge":{"key":"maxweight","type":"combo","label":"{maxweight}","snake_case":false,"prerequisiteTag":{"key":"bridge","valueNot":"no"}},"maxweight":{"key":"maxweight","type":"combo","snake_case":false},"maxwidth":{"key":"maxwidth","type":"roadheight","snake_case":false},"memorial":{"key":"memorial","type":"combo"},"microbrewery":{"key":"microbrewery","type":"check"},"military_service":{"key":"military_service","type":"combo"},"mimics":{"key":"mimics","type":"combo"},"min_age":{"key":"min_age","type":"number","minValue":0},"min_height":{"key":"min_height","minValue":0,"type":"number","prerequisiteTag":{"key":"height"}},"minspeed":{"key":"minspeed","type":"roadspeed"},"model":{"key":"model","type":"combo","caseSensitive":true},"monitoring_multi":{"key":"monitoring:","type":"multiCombo"},"mtb/scale":{"key":"mtb:scale","type":"combo","autoSuggestions":false,"customValues":false,"options":["0","1","2","3","4","5","6"]},"mtb/scale/imba":{"key":"mtb:scale:imba","type":"combo","autoSuggestions":false,"customValues":false,"options":["0","1","2","3","4"]},"mtb/scale/uphill":{"key":"mtb:scale:uphill","type":"combo","autoSuggestions":false,"customValues":false,"options":["0","1","2","3","4","5"]},"museum":{"key":"museum","type":"combo"},"name":{"key":"name","type":"localized","universal":true},"natural":{"key":"natural","type":"typeCombo"},"network_bicycle":{"key":"network","type":"combo","autoSuggestions":false,"customValues":false,"options":["lcn","rcn","ncn","icn"]},"network_foot":{"key":"network","type":"combo","autoSuggestions":false,"customValues":false,"options":["lwn","rwn","nwn","iwn"]},"network_horse":{"key":"network","type":"combo","autoSuggestions":false,"customValues":false,"options":["lhn","rhn","nhn","ihn"]},"network_road":{"key":"network","type":"networkCombo","snake_case":false,"caseSensitive":true},"network":{"key":"network","type":"text"},"network/type":{"key":"network:type","type":"combo","prerequisiteTag":{"key":"network"}},"not/name":{"key":"not:name","type":"semiCombo","snake_case":false,"caseSensitive":true},"note":{"key":"note","type":"textarea","universal":true},"office":{"key":"office","type":"typeCombo"},"oneway_yes":{"key":"oneway","type":"onewayCheck","label":"{oneway}","options":["undefined","yes","no","reversible","alternating"]},"oneway":{"key":"oneway","type":"onewayCheck","options":["undefined","yes","no","reversible","alternating"]},"oneway/bicycle":{"key":"oneway:bicycle","type":"check","prerequisiteTag":{"key":"oneway"}},"openfire":{"key":"openfire","type":"check"},"opening_date":{"key":"opening_date","type":"text"},"opening_hours":{"key":"opening_hours","type":"combo","snake_case":false,"caseSensitive":true},"opening_hours/covid19":{"key":"opening_hours:covid19","type":"combo","snake_case":false,"caseSensitive":true},"operator":{"key":"operator","type":"text"},"operator/type":{"key":"operator:type","type":"combo","prerequisiteTag":{"key":"operator"}},"organic":{"key":"organic","type":"combo","autoSuggestions":false,"customValues":false,"options":["no","yes","only"]},"outdoor_seating":{"key":"outdoor_seating","type":"check"},"par":{"key":"par","type":"number","minValue":1},"parcel_dropoff":{"key":"parcel_mail_in","type":"check"},"parcel_pickup":{"key":"parcel_pickup","type":"check","options":["undefined","yes","no"]},"park_ride":{"key":"park_ride","type":"check"},"parking_entrance":{"key":"parking","type":"combo","stringsCrossReference":"{parking}","options":["underground","multi-storey","surface"],"autoSuggestions":false,"customValues":true},"parking_space":{"key":"parking_space","type":"combo"},"parking":{"key":"parking","type":"combo","autoSuggestions":false,"customValues":false,"options":["surface","underground","multi-storey","lane","carports","garage_boxes","rooftop","sheds","street_side","layby"]},"parking/orientation":{"key":"parking:orientation","type":"combo","autoSuggestions":false,"options":["parallel","diagonal","perpendicular"]},"payment_multi_fee":{"key":"payment:","type":"multiCombo","label":"{payment_multi}","prerequisiteTag":{"key":"fee","valueNot":"no"},"stringsCrossReference":"{payment_multi}"},"payment_multi":{"key":"payment:","type":"multiCombo","options":["account_cards","app","cards","cash","cheque","coins","contactless","credit_cards","cryptocurrencies","debit_cards","electronic_purses","notes","prepaid_ticket","telephone_cards","alipay","american_express","apple_pay","bancomat","blik","clipper","diners_club","discover_card","dkv","ep_easycard","ep_geldkarte","ep_ipass","girocard","google_pay","jcb","maestro","mastercard","mastercard_contactless","paypal","unionpay","uta","v_pay","visa","visa_debit","visa_electron","wechat"]},"phases":{"key":"phases","type":"number","minValue":1},"phone":{"key":"phone","type":"tel"},"pipeline":{"key":"pipeline","type":"typeCombo"},"piste/difficulty_downhill":{"key":"piste:difficulty","type":"combo","label":"{piste/difficulty}","autoSuggestions":false,"customValues":false,"options":["novice","easy","intermediate","advanced","expert","freeride","extreme"]},"piste/difficulty_nordic":{"key":"piste:difficulty","type":"combo","label":"{piste/difficulty}","autoSuggestions":false,"customValues":false,"options":["novice","easy","intermediate","advanced","expert"]},"piste/difficulty_skitour":{"key":"piste:difficulty","type":"combo","label":"{piste/difficulty}","autoSuggestions":false,"customValues":false,"options":["novice","easy","intermediate","advanced","expert","freeride","extreme"]},"piste/difficulty":{"key":"piste:difficulty","type":"combo","autoSuggestions":false,"customValues":false,"options":["novice","easy","intermediate","advanced","expert","freeride","extreme"]},"piste/grooming_downhill":{"key":"piste:grooming","type":"combo","label":"{piste/grooming}","autoSuggestions":false,"customValues":false,"options":["classic","mogul","backcountry"]},"piste/grooming_hike":{"key":"piste:grooming","type":"combo","label":"{piste/grooming}","autoSuggestions":false,"customValues":false,"options":["classic","backcountry"]},"piste/grooming_nordic":{"key":"piste:grooming","type":"combo","label":"{piste/grooming}","autoSuggestions":false,"customValues":false,"options":["classic","backcountry","classic+skating","scooter","skating"]},"piste/grooming":{"key":"piste:grooming","type":"combo","autoSuggestions":false,"customValues":false,"options":["classic","mogul","backcountry","classic+skating","scooter","skating"]},"piste/type":{"key":"piste:type","type":"typeCombo","autoSuggestions":false,"customValues":false,"options":["downhill","nordic","skitour","sled","hike","sleigh","ice_skate","snow_park","playground","connection"]},"place":{"key":"place","type":"typeCombo"},"plant":{"key":"plant","type":"combo"},"plant/method":{"key":"plant:method","type":"combo","stringsCrossReference":"{generator/method}","autoSuggestions":false},"plant/method/hydro":{"key":"plant:method","type":"combo","label":"{plant/method}","stringsCrossReference":"{generator/method}","options":["water-storage","water-pumped-storage","run-of-the-river"],"autoSuggestions":false,"prerequisiteTag":{"key":"plant:source","value":"hydro"}},"plant/method/solar":{"key":"plant:method","type":"combo","label":"{plant/method}","stringsCrossReference":"{generator/method}","options":["thermal","photovoltaic"],"autoSuggestions":false,"prerequisiteTag":{"key":"plant:source","value":"solar"}},"plant/method/waste":{"key":"plant:method","type":"combo","label":"{plant/method}","stringsCrossReference":"{generator/method}","options":["combustion","gasification"],"autoSuggestions":false,"prerequisiteTag":{"key":"plant:source","value":"waste"}},"plant/output":{"key":"plant:output","type":"multiCombo","autoSuggestions":false,"options":["electricity","hot_water","hot_air","cold_water","cold_air","compressed_air","steam","vacuum"]},"plant/output/electricity":{"key":"plant:output:electricity","type":"typeCombo","snake_case":false,"caseSensitive":true,"prerequisiteTag":{"key":"plant:output:electricity","valueNot":"no"}},"plant/source":{"key":"plant:source","type":"combo","stringsCrossReference":"{generator/source}"},"playground":{"key":"playground","type":"combo"},"playground/theme":{"key":"playground:theme","type":"combo"},"plots":{"key":"plots","type":"number","minValue":0},"polling_station":{"key":"polling_station","type":"check"},"population":{"key":"population","type":"number","minValue":0},"population/date":{"key":"population:date","type":"text","prerequisiteTag":{"key":"population"}},"portable":{"key":"portable","type":"check"},"post":{"type":"address","key":"post","keys":["post:block_number","post:city","post:block_number","post:conscriptionnumber","post:county","post:country","post:county","post:district","post:floor","post:hamlet","post:housename","post:housenumber","post:neighbourhood","post:place","post:postcode","post:province","post:quarter","post:state","post:street","post:subdistrict","post:suburb","post:unit"]},"power_supply":{"key":"power_supply","type":"check"},"power":{"key":"power","type":"typeCombo"},"preschool":{"key":"preschool","type":"check"},"produce":{"key":"produce","type":"semiCombo"},"product":{"key":"product","type":"semiCombo"},"public_bookcase/type":{"key":"public_bookcase:type","type":"combo"},"pump":{"key":"pump","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","manual","powered","no"]},"railway":{"key":"railway","type":"typeCombo"},"railway/position":{"key":"railway:position","type":"text"},"railway/signal/direction":{"key":"railway:signal:direction","type":"combo","autoSuggestions":false,"customValues":false,"options":["forward","backward","both"]},"ramp":{"key":"ramp","type":"check"},"rating":{"key":"rating","type":"combo","snake_case":false,"caseSensitive":true},"rcn_ref":{"key":"rcn_ref","type":"text"},"real_fire-GB-IE":{"locationSet":{"include":["gb","ie"]},"key":"real_fire","type":"check"},"recycling_accepts":{"key":"recycling:","type":"multiCombo","caseSensitive":true,"options":["glass_bottles","glass","paper","plastic","clothes","cans","batteries","shoes","green_waste","plastic_packaging","plastic_bottles","cardboard","scrap_metal","cooking_oil","engine_oil"]},"recycling_type":{"key":"recycling_type","type":"combo","autoSuggestions":false,"customValues":false,"options":["container","centre"]},"ref_aeroway_gate":{"key":"ref","type":"text"},"ref_disc_golf_hole":{"key":"ref","type":"text"},"ref_golf_hole":{"key":"ref","type":"text"},"ref_highway_junction":{"key":"ref","type":"text"},"ref_platform":{"key":"ref","type":"text"},"ref_road_number":{"key":"ref","type":"text"},"ref_room_number":{"key":"ref","type":"text"},"ref_route":{"key":"ref","type":"text"},"ref_runway":{"key":"ref","type":"text"},"ref_sector":{"key":"ref","type":"text"},"ref_stop_position":{"key":"ref","type":"text"},"ref_taxiway":{"key":"ref","type":"text"},"ref":{"key":"ref","type":"text"},"ref/FR/siret-FR":{"key":"ref:FR:SIRET","type":"identifier","urlFormat":"https://annuaire-entreprises.data.gouv.fr/etablissement/{value}","pattern":"^[0-9]{9}([1-7][0-9]{3}|0[1-9][0-9]{2}|00[1-9][0-9]|000[1-9])[0-9]$","locationSet":{"include":["fr"]}},"ref/isil":{"key":"ref:isil","type":"text"},"ref/vatin":{"key":"ref:vatin","type":"identifier","locationSet":{"exclude":["ai","ao","bm","bn","bt","cu","dj","er","fk","fm","gg","gi","gs","hk","io","iq","ki","km","kp","kw","ky","lr","ly","mh","mm","mo","ms","mv","nr","om","pn","pw","qa","sb","sh","sm","so","sr","ss","st","sy","sz","tc","tl","tv","us","va","vg","xk","ye"]}},"relation":{"key":"type","type":"combo"},"religion":{"key":"religion","type":"combo","options":["bahai","benzhu","buddhist","caodaism","chinese_folk","christian","confucian","hindu","jain","jewish","multifaith","muslim","none","pagan","shinto","sikh","spiritualist","taoist","tenrikyo","unitarian_universalist","vietnamese_folk","voodoo"]},"reservation":{"key":"reservation","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","no","required","recommended"]},"residential":{"key":"residential","type":"combo"},"resort":{"key":"resort","type":"combo"},"resource":{"key":"resource","type":"semiCombo"},"restriction":{"key":"restriction","type":"combo"},"restrictions":{"type":"restrictions","geometry":["vertex"],"usage":"manual","reference":{"rtype":"restriction"}},"roof/colour":{"key":"roof:colour","type":"colour"},"room":{"key":"room","type":"combo"},"rooms":{"key":"rooms","type":"number","minValue":0},"rotor/diameter":{"key":"rotor:diameter","minValue":0,"type":"number"},"roundtrip":{"key":"roundtrip","type":"check"},"route_master":{"key":"route_master","type":"combo"},"route":{"key":"route","type":"combo"},"ruins":{"key":"ruins","type":"combo"},"rwn_ref":{"key":"rwn_ref","type":"text"},"sac_scale":{"key":"sac_scale","type":"combo","autoSuggestions":false,"customValues":false,"options":["hiking","mountain_hiking","demanding_mountain_hiking","alpine_hiking","demanding_alpine_hiking","difficult_alpine_hiking"]},"salt":{"key":"salt","type":"check"},"sample_collection":{"key":"sample_collection","type":"semiCombo","reference":{"key":"healthcare","value":"sample_collection"}},"sanitary_dump_station":{"key":"sanitary_dump_station","type":"check"},"screen":{"key":"screen","type":"number","minValue":0},"scuba_diving":{"key":"scuba_diving:","type":"multiCombo","options":["repair","courses","rental","filling","air_filling","nitrox_filling","trimix_filling","oxygen_filling"],"autoSuggestions":false},"seamark/beacon_isolated_danger/shape":{"key":"seamark:beacon_isolated_danger:shape","type":"combo"},"seamark/beacon_lateral/category":{"key":"seamark:beacon_lateral:category","type":"combo","autoSuggestions":false,"customValues":false,"options":["port","starboard","waterway_left","waterway_right","danger_left","danger_right"]},"seamark/beacon_lateral/colour":{"key":"seamark:beacon_lateral:colour","type":"combo","autoSuggestions":false,"customValues":false,"options":["red","green","grey"]},"seamark/beacon_lateral/shape":{"key":"seamark:beacon_lateral:shape","type":"combo"},"seamark/beacon_lateral/system":{"key":"seamark:beacon_lateral:system","type":"combo","autoSuggestions":false,"customValues":false,"options":["iala-a","iala-b","cevni","other"]},"seamark/buoy_lateral/category":{"key":"seamark:buoy_lateral:category","type":"combo","autoSuggestions":false,"customValues":false,"options":["port","starboard","channel_left","channel_right","waterway_left","waterway_right","danger_left","danger_right","preferred_channel_port","preferred_channel_starboard"]},"seamark/buoy_lateral/colour":{"key":"seamark:buoy_lateral:colour","type":"combo","autoSuggestions":false,"customValues":false,"options":["red","green","red;white;red;white","green;white;green;white","red;green;red","green;red;green","white","yellow"]},"seamark/buoy_lateral/shape":{"key":"seamark:buoy_lateral:shape","type":"combo"},"seamark/buoy_lateral/system":{"key":"seamark:buoy_lateral:system","type":"combo","autoSuggestions":false,"customValues":false,"options":["iala-a","iala-b","cevni","other"]},"seamark/mooring/category":{"key":"seamark:mooring:category","type":"combo"},"seamark/rescue_station/category":{"key":"seamark:rescue_station:category","type":"semiCombo","options":["lifeboat","lifeboat_on_mooring","seaplane","aircraft","hovercraft","radio","first_aid","refuge_shipwrecked","refuge_intertidal","tug"]},"seamark/type":{"key":"seamark:type","type":"combo"},"seamark/wreck/category":{"key":"seamark:wreck:category","type":"combo"},"seasonal":{"key":"seasonal","type":"check"},"seats":{"key":"seats","type":"number","minValue":0},"second_hand":{"key":"second_hand","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","no","only"]},"segregated":{"key":"segregated","type":"check"},"self_service":{"key":"self_service","type":"check"},"service_rail":{"key":"service","type":"combo","autoSuggestions":false,"customValues":false,"options":["spur","yard","siding","crossover"]},"service_times":{"key":"service_times","type":"text"},"service":{"key":"service","type":"combo","autoSuggestions":false,"options":["driveway","parking_aisle","alley","drive-through","emergency_access"]},"service/bicycle":{"key":"service:bicycle:","type":"multiCombo"},"service/vehicle":{"key":"service:vehicle:","type":"multiCombo"},"shelter_type":{"key":"shelter_type","type":"combo"},"shelter":{"key":"shelter","type":"check"},"shoes":{"key":"shoes","type":"semiCombo"},"shop":{"key":"shop","type":"typeCombo"},"shower":{"key":"shower","type":"check"},"siren/purpose":{"key":"siren:purpose","type":"combo"},"siren/type":{"key":"siren:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["pneumatic","electronic","other"]},"site":{"key":"site","type":"combo"},"smoking":{"key":"smoking","type":"combo","autoSuggestions":false,"customValues":false,"options":["no","separated","isolated","outside","yes","dedicated"]},"smoothness":{"key":"smoothness","type":"combo","autoSuggestions":false,"customValues":false,"options":["excellent","good","intermediate","bad","very_bad","horrible","very_horrible","impassable"]},"sms":{"key":"sms","type":"check"},"social_facility_for":{"key":"social_facility:for","type":"combo"},"social_facility":{"key":"social_facility","type":"combo","options":["ambulatory_care","assisted_living","day_care","food_bank","group_home","nursing_home","outreach","shelter","workshop"]},"source":{"key":"source","type":"semiCombo","universal":true,"snake_case":false,"caseSensitive":true,"autoSuggestions":false,"options":["survey","local knowledge","aerial imagery","gps","streetlevel imagery","osm notes"]},"source/population":{"key":"source:population","type":"combo","prerequisiteTag":{"key":"population"},"snake_case":false,"caseSensitive":true},"species":{"key":"species","type":"combo","snake_case":false,"caseSensitive":true},"species/wikidata":{"key":"species:wikidata","keys":["species:wikidata","species:wikipedia"],"type":"wikidata"},"sport_ice":{"key":"sport","type":"semiCombo","autoSuggestions":false,"options":["ice_skating","ice_hockey","curling","ice_stock","multi"]},"sport_pub":{"key":"sport","type":"semiCombo","autoSuggestions":false,"options":["table_soccer","billiards","darts"]},"sport_racing_motor":{"key":"sport","type":"semiCombo","autoSuggestions":false,"options":["motor","karting","motocross","speedway"]},"sport_racing_nonmotor":{"key":"sport","type":"semiCombo","autoSuggestions":false,"options":["running","cycling","bmx","horse_racing","dog_racing"]},"sport":{"key":"sport","type":"semiCombo"},"stars":{"key":"stars","type":"combo"},"start_date":{"key":"start_date","type":"text","universal":true},"step_count":{"key":"step_count","type":"number","minValue":0},"stile":{"key":"stile","type":"combo"},"stop":{"key":"stop","type":"combo","autoSuggestions":false,"customValues":false,"options":["all","minor"]},"street_cabinet":{"key":"street_cabinet","type":"combo"},"stroller":{"key":"stroller","type":"radio","options":["yes","limited","no"]},"structure_power":{"type":"combo","key":"structure","autoSuggestions":false,"customValues":false,"options":["lattice","solid","tubular"]},"structure_waterway":{"type":"structureRadio","keys":["tunnel"],"options":["tunnel"]},"structure":{"type":"structureRadio","keys":["bridge","tunnel","embankment","cutting","ford"],"options":["bridge","tunnel","embankment","cutting","ford"]},"studio":{"key":"studio","type":"combo"},"subject":{"key":"subject","type":"text"},"subject/wikidata":{"key":"subject:wikidata","keys":["subject:wikidata","subject:wikipedia"],"type":"wikidata"},"substance":{"key":"substance","type":"combo"},"substation_pipeline":{"key":"substation","type":"typeCombo","autoSuggestions":false,"options":["transmission","distribution","minor_distribution","industrial","compression","measurement","valve","valve_group","inspection_gauge","field_gathering"]},"substation":{"key":"substation","type":"typeCombo","autoSuggestions":false,"options":["transmission","distribution","minor_distribution","industrial","generation","transition","traction","converter","compensation"]},"supervised":{"key":"supervised","type":"check"},"support":{"key":"support","type":"combo"},"surface":{"key":"surface","type":"combo","options":["asphalt","unpaved","paved","ground","gravel","compacted","concrete","paving_stones","sett","dirt","grass","sand","wood","metal","artificial_turf","unhewn_cobblestone","mud","woodchips","salt"]},"surveillance":{"key":"surveillance","type":"combo"},"surveillance/type":{"key":"surveillance:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["camera","guard","ALPR"]},"surveillance/zone":{"key":"surveillance:zone","type":"combo"},"survey_point/datum_aligned":{"key":"survey_point:datum_aligned","type":"check"},"survey_point/purpose":{"key":"survey_point:purpose","type":"combo","options":["horizontal","vertical","both"]},"survey_point/structure":{"key":"survey_point:structure","type":"combo","options":["beacon","block","pole","pillar","bracket","plaque","medallion","cairn","pin","indented_pin","cut","magnet"]},"survey/date":{"key":"survey:date","type":"text"},"swimming_pool":{"key":"swimming_pool","type":"combo"},"switch":{"key":"switch","type":"combo","autoSuggestions":false,"customValues":false,"options":["mechanical","circuit_breaker","disconnector","earthing"]},"tactile_paving":{"key":"tactile_paving","type":"check"},"takeaway":{"key":"takeaway","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","no","only"]},"target":{"key":"target","type":"combo","snake_case":false,"caseSensitive":true},"taxon":{"key":"taxon","type":"combo","snake_case":false,"caseSensitive":true},"tee":{"key":"tee","type":"semiCombo","reference":{"key":"golf","value":"tee"}},"telecom":{"key":"telecom","type":"combo"},"telecom/medium":{"key":"telecom:medium","type":"combo"},"tidal":{"key":"tidal","type":"check"},"to":{"key":"to","type":"text"},"toilets":{"key":"toilets","type":"check"},"toilets/disposal":{"key":"toilets:disposal","type":"combo","autoSuggestions":false,"customValues":false,"options":["flush","pitlatrine","chemical","bucket"]},"toilets/handwashing":{"key":"toilets:handwashing","type":"check"},"toilets/position":{"key":"toilets:position","type":"semiCombo"},"toilets/wheelchair":{"key":"toilets:wheelchair","type":"radio","prerequisiteTag":{"key":"toilets","valueNot":"no"},"options":["yes","limited","no"]},"toll":{"key":"toll","type":"check"},"tomb":{"key":"tomb","type":"typeCombo"},"tourism":{"key":"tourism","type":"typeCombo"},"tower/construction":{"key":"tower:construction","type":"combo"},"tower/platforms":{"key":"tower:platforms","type":"number","minValue":1},"tower/type":{"key":"tower:type","type":"combo"},"townhall/type":{"key":"townhall:type","type":"combo"},"tracktype":{"key":"tracktype","type":"combo","autoSuggestions":false,"customValues":false,"options":["grade1","grade2","grade3","grade4","grade5"]},"trade":{"key":"trade","type":"typeCombo"},"traffic_calming":{"key":"traffic_calming","type":"typeCombo","options":["bump","chicane","choker","choked_table","cushion","dip","double_dip","hump","island","mini_bumps","rumble_strip","table"]},"traffic_sign":{"key":"traffic_sign","type":"typeCombo","snake_case":false,"caseSensitive":true},"traffic_sign/direction":{"key":"traffic_sign:direction","type":"combo","autoSuggestions":false,"customValues":false,"geometry":["vertex"],"options":["forward","backward","both"]},"traffic_signals":{"key":"traffic_signals","type":"combo","default":"signal"},"traffic_signals/arrow":{"key":"traffic_signals:arrow","type":"check"},"traffic_signals/countdown":{"key":"traffic_signals:countdown","type":"check"},"traffic_signals/direction":{"key":"traffic_signals:direction","type":"combo","autoSuggestions":false,"customValues":false,"options":["forward","backward","both"]},"traffic_signals/minimap":{"key":"traffic_signals:minimap","type":"check"},"traffic_signals/sound":{"key":"traffic_signals:sound","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","no","locate","walk"]},"traffic_signals/vibration":{"key":"traffic_signals:vibration","type":"check"},"trail_visibility":{"key":"trail_visibility","type":"combo","autoSuggestions":false,"customValues":false,"options":["excellent","good","intermediate","bad","horrible","no"]},"transformer":{"key":"transformer","type":"combo","autoSuggestions":false,"customValues":false,"options":["main","distribution","generator","converter","phase_angle_regulator","auxiliary","yes"]},"trees":{"key":"trees","type":"semiCombo"},"trench":{"key":"trench","type":"combo"},"trolley_wire":{"key":"trolley_wire","type":"check"},"tunnel_combo":{"key":"tunnel","type":"combo","options":["avalanche_protector","building_passage","culvert","flooded"]},"tunnel":{"key":"tunnel","type":"typeCombo","usage":"group"},"turning_circle":{"key":"turning_circle","type":"combo"},"two_sided":{"key":"two_sided","type":"defaultCheck","geometry":["line"],"options":["undefined","yes"]},"usage_rail":{"key":"usage","type":"combo","autoSuggestions":false,"customValues":false,"options":["main","branch","industrial","military","test","tourism"]},"usage_waterway":{"key":"usage","type":"combo","autoSuggestions":false,"customValues":false,"options":["transportation","transmission","irrigation","headrace","tailrace","spillway"]},"utility_semi":{"key":"utility","type":"semiCombo"},"utility":{"key":"utility","type":"typeCombo","options":["gas","oil","power","sewerage","street_lighting","telecom","water"]},"valve":{"key":"valve","type":"combo"},"vehicles":{"keys":["bus","trolleybus","tram","train","subway","light_rail","monorail","ferry"],"type":"manyCombo","reference":{"key":"public_transport"},"prerequisiteTag":{"keyNot":"aerialway"},"options":["bus","trolleybus","tram","train","subway","light_rail","monorail","ferry"]},"vending":{"key":"vending","type":"semiCombo"},"vhf":{"key":"vhf","type":"text"},"via":{"key":"via","type":"semiCombo","snake_case":false,"caseSensitive":true},"video_calls":{"key":"video","type":"check"},"visibility":{"key":"visibility","type":"combo","autoSuggestions":false,"customValues":false,"options":["house","street","area"]},"volcano/status":{"key":"volcano:status","type":"combo","autoSuggestions":false,"customValues":false,"options":["active","dormant","extinct"]},"volcano/type":{"key":"volcano:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["stratovolcano","shield","scoria"]},"voltage_electrified":{"key":"voltage","type":"combo","label":"{voltage}","prerequisiteTag":{"key":"electrified","valueNot":"no"}},"voltage":{"key":"voltage","type":"combo"},"voltage/primary":{"key":"voltage:primary","type":"combo"},"voltage/secondary":{"key":"voltage:secondary","type":"combo"},"voltage/tertiary":{"key":"voltage:tertiary","type":"combo"},"wall":{"key":"wall","type":"combo"},"waste":{"key":"waste","type":"semiCombo"},"water_point":{"key":"water_point","type":"check"},"water_source":{"key":"water_source","type":"combo","options":["main","water_tank","pond","river","stream"]},"water_tank/volume":{"key":"water_tank:volume","type":"text"},"water":{"key":"water","type":"combo"},"waterway":{"key":"waterway","type":"typeCombo"},"website":{"key":"website","type":"url","universal":true},"wetland":{"key":"wetland","type":"combo","options":["marsh","reedbed","saltmarsh","tidalflat","wet_meadow","swamp","mangrove","bog","fen","string_bog"]},"wheelchair":{"key":"wheelchair","type":"radio","options":["yes","limited","no"]},"wholesale":{"key":"wholesale","type":"typeCombo"},"width":{"key":"width","type":"number","minValue":0},"wikidata":{"key":"wikidata","keys":["wikidata","wikipedia"],"type":"wikidata","universal":true},"wikimedia_commons":{"key":"wikimedia_commons","type":"identifier","urlFormat":"https://commons.wikimedia.org/wiki/{value}","pattern":"^(?:File|Category):.{1,}","universal":true},"wikipedia":{"key":"wikipedia","keys":["wikipedia","wikidata"],"type":"wikipedia","universal":true},"windings":{"key":"windings","type":"number","minValue":1},"windings/auto":{"key":"windings:auto","type":"check","options":["undefined","yes","no"]},"windings/configuration":{"key":"windings:configuration","type":"combo","autoSuggestions":false,"customValues":false,"options":["star","delta","open-delta","zigzag","open","scott","leblanc"]}}
\ No newline at end of file
+{"wood_provided":{"key":"wood_provided","type":"check","locationSet":{"include":["ch","dk","fi","se"]}},"windings":{"key":"windings","type":"number","minValue":1},"wikipedia":{"key":"wikipedia","keys":["wikipedia"],"type":"wikipedia","universal":true},"wikimedia_commons":{"key":"wikimedia_commons","type":"identifier","urlFormat":"https://commons.wikimedia.org/wiki/{value}","pattern":"^(?:File|Category):.{1,}","universal":true},"wikidata":{"key":"wikidata","keys":["wikidata","wikipedia"],"type":"wikidata","universal":true},"width":{"key":"width","type":"number","minValue":0},"wholesale":{"key":"wholesale","type":"typeCombo"},"wheelchair":{"key":"wheelchair","type":"radio","options":["yes","limited","no"]},"wetland":{"key":"wetland","type":"combo","options":["marsh","reedbed","saltmarsh","tidalflat","wet_meadow","swamp","mangrove","bog","fen","string_bog"]},"website":{"key":"website","keys":["website","contact:website"],"type":"url","universal":true},"waterway":{"key":"waterway","type":"typeCombo"},"water_source":{"key":"water_source","type":"combo","options":["main","water_tank","pond","river","stream","groundwater"]},"water_point":{"key":"water_point","type":"check"},"water":{"key":"water","type":"combo"},"waste":{"key":"waste","type":"semiCombo","options":["cigarettes","dog_excrement","organic","trash"]},"wall":{"key":"wall","type":"combo"},"voltage_electrified":{"key":"voltage","type":"combo","label":"{voltage}","prerequisiteTag":{"key":"electrified","valueNot":"no"}},"voltage":{"key":"voltage","type":"combo"},"visibility":{"key":"visibility","type":"combo","autoSuggestions":false,"customValues":false,"options":["house","street","area"]},"video_calls":{"key":"video","type":"check"},"via":{"key":"via","type":"semiCombo","snake_case":false,"caseSensitive":true},"vhf":{"key":"vhf","type":"text"},"vending":{"key":"vending","type":"semiCombo","options":["bicycle_tube","bread","cigarettes","coffee","condoms","drinks","e-cigarettes","eggs","electronics","elongated_coin","excrement_bags","feminine_hygiene","food","fuel","ice_cream","ice_cubes","milk","newspapers","parking_tickets","pizza","public_transport_tickets","stamps","sweets","water"]},"vehicles":{"keys":["bus","trolleybus","tram","train","subway","light_rail","monorail","ferry"],"type":"manyCombo","reference":{"key":"public_transport"},"prerequisiteTag":{"keyNot":"aerialway"},"options":["bus","trolleybus","tram","train","subway","light_rail","monorail","ferry"]},"valve":{"key":"valve","type":"combo"},"utility_semi":{"key":"utility","type":"semiCombo"},"utility":{"key":"utility","type":"typeCombo","options":["gas","oil","power","sewerage","street_lighting","telecom","water"]},"usage_waterway":{"key":"usage","type":"combo","autoSuggestions":false,"customValues":false,"options":["transportation","transmission","irrigation","headrace","tailrace","spillway"]},"usage_rail":{"key":"usage","type":"combo","autoSuggestions":false,"customValues":false,"options":["main","branch","industrial","military","test","tourism"]},"two_sided":{"key":"two_sided","type":"defaultCheck","geometry":["line"],"options":["undefined","yes"]},"turning_circle":{"key":"turning_circle","type":"combo"},"tunnel_combo":{"key":"tunnel","type":"combo","options":["avalanche_protector","building_passage","culvert","flooded"]},"tunnel":{"key":"tunnel","type":"typeCombo","usage":"group","stringsCrossReference":"{tunnel_combo}"},"trolley_wire":{"key":"trolley_wire","type":"check"},"trench":{"key":"trench","type":"combo"},"trees":{"key":"trees","type":"semiCombo"},"transformer":{"key":"transformer","type":"combo","autoSuggestions":false,"customValues":false,"options":["main","distribution","generator","converter","phase_angle_regulator","auxiliary","yes"]},"trail_visibility":{"key":"trail_visibility","type":"combo","autoSuggestions":false,"customValues":false,"options":["excellent","good","intermediate","bad","horrible","no"]},"traffic_signals":{"key":"traffic_signals","type":"combo","default":"signal"},"traffic_sign":{"key":"traffic_sign","type":"typeCombo","snake_case":false,"caseSensitive":true},"traffic_calming_road":{"key":"traffic_calming","type":"typeCombo","stringsCrossReference":"{traffic_calming}","iconsCrossReference":"{traffic_calming}"},"traffic_calming":{"key":"traffic_calming","type":"typeCombo","icons":{"bump":"roentgen-bump","cushion":"roentgen-traffic_cushion","dip":"roentgen-dip","double_dip":"roentgen-double_dip","hump":"roentgen-hump","mini_bumps":"roentgen-mini_bumps","rumble_strip":"roentgen-rumble_strip","table":"roentgen-traffic_table"},"options":["bump","chicane","choker","choked_table","cushion","dip","double_dip","hump","island","mini_bumps","rumble_strip","table"]},"trade":{"key":"trade","type":"typeCombo"},"tracktype":{"key":"tracktype","type":"combo","autoSuggestions":false,"customValues":false,"options":["grade1","grade2","grade3","grade4","grade5"]},"tourism":{"key":"tourism","type":"typeCombo"},"tomb":{"key":"tomb","type":"typeCombo","options":["columbarium","crypt","dolmen","hypogeum","mausoleum","pyramid","rock-cut","sarcophagus","table","tumulus","vault","war_grave"]},"toll":{"key":"toll","type":"check"},"toilets":{"key":"toilets","type":"check"},"to":{"key":"to","type":"text"},"tidal":{"key":"tidal","type":"check"},"tents":{"key":"tents","type":"check"},"telecom":{"key":"telecom","type":"combo","options":["connection_point","data_center","distribution_point","exchange","service_device"]},"tee":{"key":"tee","type":"semiCombo","reference":{"key":"golf","value":"tee"}},"taxon":{"key":"taxon","type":"combo","snake_case":false,"caseSensitive":true},"taxi_vehicle":{"key":"taxi_vehicle","type":"semiCombo","autoSuggestions":false,"customValues":false,"options":["motorcar","motorcycle","auto_rickshaw","cycle_rickshaw"]},"target":{"key":"target","type":"combo","snake_case":false,"caseSensitive":true},"takeaway":{"key":"takeaway","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","no","only"]},"tactile_paving":{"key":"tactile_paving","type":"check"},"switch":{"key":"switch","type":"combo","autoSuggestions":false,"customValues":false,"options":["mechanical","circuit_breaker","disconnector","earthing"]},"swimming_pool":{"key":"swimming_pool","type":"combo","autoSuggestions":false,"customValues":true,"options":["swimming","plunge","wading","spa","wave_pool","lazy_river","personal","kids"]},"surveillance":{"key":"surveillance","type":"combo"},"surface":{"key":"surface","type":"combo","options":["artificial_turf","asphalt","clay","compacted","concrete","concrete:lanes","concrete:plates","dirt","fine_gravel","grass","grass_paver","gravel","ground","metal","mud","paved","paving_stones","pebblestone","salt","sand","sett","tartan","unhewn_cobblestone","unpaved","wood","woodchips"]},"support":{"key":"support","type":"combo"},"supervised":{"key":"supervised","type":"check"},"substation_pipeline":{"key":"substation","type":"typeCombo","autoSuggestions":false,"options":["transmission","distribution","minor_distribution","industrial","compression","measurement","valve","valve_group","inspection_gauge","field_gathering"]},"substation":{"key":"substation","type":"typeCombo","autoSuggestions":false,"options":["transmission","distribution","minor_distribution","industrial","generation","transition","traction","converter","compensation"]},"substance":{"key":"substance","type":"combo","options":["fuel","gas","hot_water","oil","rainwater","sewage","water"]},"subject":{"key":"subject","type":"text"},"studio":{"key":"studio","type":"combo"},"structure_waterway":{"type":"structureRadio","keys":["tunnel"],"options":["tunnel"]},"structure_power":{"type":"combo","key":"structure","autoSuggestions":false,"customValues":false,"options":["lattice","solid","tubular"]},"structure_canal":{"type":"structureRadio","keys":["bridge","tunnel"],"options":["bridge","tunnel"]},"structure":{"type":"structureRadio","keys":["bridge","tunnel","embankment","cutting","ford"],"options":["bridge","tunnel","embankment","cutting","ford"]},"stroller":{"key":"stroller","type":"radio","options":["yes","limited","no"]},"street_cabinet":{"key":"street_cabinet","type":"combo"},"stop":{"key":"stop","type":"combo","autoSuggestions":false,"customValues":false,"options":["all","minor"]},"stile":{"key":"stile","type":"combo"},"step_count":{"key":"step_count","type":"number","minValue":0},"static_caravans":{"key":"static_caravans","type":"check"},"start_date":{"key":"start_date","type":"date","universal":true},"stars":{"key":"stars","type":"combo"},"sport":{"key":"sport","type":"semiCombo","options":["10pin","9pin","american_football","athletics","badminton","baseball","basketball","beachvolleyball","billiards","bmx","boules","bowls","canoe","chess","climbing","cricket","curling","cycling","darts","disc_golf","dog_racing","equestrian","fitness","free_flying","futsal","gaelic_games","golf","gymnastics","handball","horse_racing","ice_hockey","ice_skating","ice_stock","karting","motocross","motor","multi","netball","orienteering","padel","pelota","rugby_union","running","scuba_diving","shooting","skateboard","skiing","ski_jumping","soccer","softball","speedway","swimming","table_tennis","tennis","volleyball","yoga"]},"species":{"key":"species","type":"combo","snake_case":false,"caseSensitive":true},"spacing":{"key":"spacing","type":"number","snake_case":false,"prerequisiteTag":{"key":"cycle_barrier","valueNot":"single"}},"source":{"key":"source","type":"semiCombo","usage":"changeset","snake_case":false,"caseSensitive":true,"autoSuggestions":false,"options":["survey","local knowledge","aerial imagery","gps","streetlevel imagery","osm notes"]},"social_facility_for":{"key":"social_facility:for","type":"combo","options":["abused","child","dementia","disabled","diseased","displaced","drug_addicted","homeless","juvenile","mental_health","migrant","orphan","refugee","senior","terminally_ill","underprivileged","unemployed","veteran","victim","woman"]},"social_facility":{"key":"social_facility","type":"combo","options":["ambulatory_care","assisted_living","day_care","food_bank","group_home","nursing_home","outreach","shelter","workshop"]},"sms":{"key":"sms","type":"check"},"smoothness":{"key":"smoothness","type":"combo","autoSuggestions":false,"customValues":false,"options":["excellent","good","intermediate","bad","very_bad","horrible","very_horrible","impassable"]},"smoking":{"key":"smoking","type":"combo","autoSuggestions":false,"customValues":false,"options":["no","separated","isolated","outside","yes","dedicated"]},"site":{"key":"site","type":"combo"},"side":{"key":"side","type":"combo","autoSuggestions":false,"options":["left","right"]},"shower":{"key":"shower","type":"check"},"short_name":{"key":"short_name","type":"localized","universal":true,"prerequisiteTag":{"key":"name"}},"shop":{"key":"shop","type":"typeCombo"},"shoes":{"key":"shoes","type":"semiCombo"},"shelter_type":{"key":"shelter_type","type":"combo","icons":{"public_transport":"temaki-transit_shelter","picnic_shelter":"temaki-picnic_shelter","lean_to":"temaki-sleep_shelter","field_shelter":"temaki-horse_shelter"}},"shelter":{"key":"shelter","type":"check"},"service_times":{"key":"service_times","type":"text"},"service_rail":{"key":"service","type":"combo","autoSuggestions":false,"customValues":false,"options":["spur","yard","siding","crossover"]},"service":{"key":"service","type":"combo","autoSuggestions":false,"options":["driveway","parking_aisle","alley","drive-through","emergency_access"]},"self_service":{"key":"self_service","type":"check"},"self_checkout":{"key":"self_checkout","type":"radio","options":["yes","only","no"]},"segregated":{"key":"segregated","type":"check"},"second_hand":{"key":"second_hand","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","no","only"]},"seats":{"key":"seats","type":"number","minValue":0},"seasonal":{"key":"seasonal","type":"check"},"scuba_diving":{"key":"scuba_diving:","type":"multiCombo","options":["air_filling","courses","filling","hobby","nitrox_filling","oxygen_filling","rental","repair","trimix_filling"],"autoSuggestions":false},"screen":{"key":"screen","type":"number","minValue":0},"sanitary_dump_station":{"key":"sanitary_dump_station","type":"check"},"sample_collection":{"key":"sample_collection","type":"semiCombo","reference":{"key":"healthcare","value":"sample_collection"}},"salt":{"key":"salt","type":"check"},"sac_scale":{"key":"sac_scale","type":"combo","autoSuggestions":false,"customValues":false,"options":["strolling","hiking","mountain_hiking","demanding_mountain_hiking","alpine_hiking","demanding_alpine_hiking","difficult_alpine_hiking"]},"rwn_ref":{"key":"rwn_ref","type":"text"},"ruins":{"key":"ruins","type":"combo"},"royal_cypher-GB":{"key":"royal_cypher","type":"typeCombo","autoSuggestions":false,"customValues":false,"locationSet":{"include":["gb"]},"options":["VR","EVIIR","EVIIIR","GR","GVIR","EIIR","CIIIR","scottish_crown","no"]},"route_master":{"key":"route_master","type":"combo"},"route":{"key":"route","type":"combo"},"roundtrip":{"key":"roundtrip","type":"check"},"rooms":{"key":"rooms","type":"number","minValue":0},"room":{"key":"room","type":"combo"},"restrictions":{"type":"restrictions","geometry":["vertex"],"usage":"manual","reference":{"rtype":"restriction"}},"restriction":{"key":"restriction","type":"combo"},"resource":{"key":"resource","type":"semiCombo","options":["aggregate","clay","coal","gold","gravel","iron_ore","limestone","peat","sand"]},"resort":{"key":"resort","type":"combo"},"residential":{"key":"residential","type":"combo"},"reservation":{"key":"reservation","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","no","required","recommended"]},"religion":{"key":"religion","type":"combo","options":["bahai","benzhu","buddhist","caodaism","chinese_folk","christian","confucian","hindu","jain","jewish","multifaith","muslim","none","pagan","shinto","sikh","spiritualist","taoist","tenrikyo","unitarian_universalist","vietnamese_folk","voodoo"]},"relation":{"key":"type","type":"combo"},"reg_name":{"key":"reg_name","type":"localized","universal":true,"prerequisiteTag":{"key":"name"}},"ref_taxiway":{"key":"ref","type":"text"},"ref_stop_position":{"key":"ref","type":"text"},"ref_sector":{"key":"ref","type":"text"},"ref_runway":{"key":"ref","type":"text"},"ref_route":{"key":"ref","type":"text"},"ref_room_number":{"key":"ref","type":"text"},"ref_road_number":{"key":"ref","type":"text"},"ref_rail":{"key":"ref","type":"text"},"ref_platform":{"key":"ref","type":"text"},"ref_highway_junction":{"key":"ref","type":"text"},"ref_golf_hole":{"key":"ref","type":"text"},"ref_disc_golf_hole":{"key":"ref","type":"text"},"ref_bridge_number":{"key":"ref","type":"text","label":"{bridge/ref}"},"ref_aeroway_gate":{"key":"ref","type":"text"},"ref":{"key":"ref","type":"text"},"recycling_type":{"key":"recycling_type","type":"combo","autoSuggestions":false,"customValues":false,"options":["container","centre"]},"recycling_accepts":{"key":"recycling:","type":"multiCombo","caseSensitive":true,"options":["glass_bottles","glass","paper","plastic","clothes","cans","batteries","shoes","green_waste","plastic_packaging","plastic_bottles","cardboard","scrap_metal","cooking_oil","engine_oil"]},"real_fire-GB-IE":{"locationSet":{"include":["gb","ie"]},"key":"real_fire","type":"check"},"rcn_ref":{"key":"rcn_ref","type":"text"},"rating":{"key":"rating","type":"combo","snake_case":false,"caseSensitive":true},"ramp":{"key":"ramp","type":"combo","customValues":false,"options":["yes","no","separate"]},"railway":{"key":"railway","type":"typeCombo"},"pump":{"key":"pump","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","manual","powered","no"]},"product":{"key":"product","type":"semiCombo"},"produce":{"key":"produce","type":"semiCombo"},"preschool":{"key":"preschool","type":"check"},"power_supply":{"key":"power_supply","type":"check"},"power":{"key":"power","type":"typeCombo"},"post":{"type":"address","key":"post","keys":["post:block_number","post:city","post:conscriptionnumber","post:county","post:country","post:district","post:floor","post:hamlet","post:housename","post:housenumber","post:neighbourhood","post:place","post:postcode","post:province","post:quarter","post:state","post:street","post:subdistrict","post:suburb","post:unit"]},"portable":{"key":"portable","type":"check"},"population":{"key":"population","type":"number","minValue":0},"polling_station":{"key":"polling_station","type":"check"},"plots":{"key":"plots","type":"number","minValue":0},"playground":{"key":"playground","type":"combo","options":["activitypanel","aerialrotator","archimedes_screw","balance","balancebeam","ball_pool","bannister_bars","basketrotator","basketswing","belt_bridge","blackboard","bridge","cushion","chute","climbing","climbing_pole","climbing_slope","climbingframe","climbingwall","dome","excavator","exercise","funnel_ball","hammock","hamster_wheel","hopscotch","horizontal_bar","ladder","map","maze","marble_run","monkey_bars","mound","musical_instrument","parallel_bars","platform","playhouse","pump","ride_on","rope_swing","rope_traverse","rotator","roundabout","sand","sand_pulley","sand_seesaw","sand_wheel","sandpit","seat","seesaw","sieve","sledding","slide","speaking_tube","spinner","spinner_bowl","spinning_circle","spinning_disc","spring_board","springy","splash_pad","stepping_post","stepping_stone","steps","structure","swing","baby_swing","tire_swing","table","teenshelter","track","trampoline","tunnel_tube","water","water_barrier","water_basin","water_cannon","water_channel","water_seesaw","water_sprayer","water_stream","water_wheel","wobble_bridge","youth_bench","zipwire"]},"plant":{"key":"plant","type":"combo"},"place":{"key":"place","type":"typeCombo"},"pipeline":{"key":"pipeline","type":"typeCombo"},"picnic_table":{"key":"picnic_table","type":"check"},"phone":{"key":"phone","keys":["phone","contact:phone"],"type":"tel"},"phases":{"key":"phases","type":"number","minValue":1},"payment_multi_fee":{"key":"payment:","type":"multiCombo","label":"{payment_multi}","prerequisiteTag":{"key":"fee","valueNot":"no"},"stringsCrossReference":"{payment_multi}"},"payment_multi":{"key":"payment:","type":"multiCombo","reference":{"key":"payment:*"},"options":["account_cards","app","cards","cash","cheque","coins","contactless","credit_cards","cryptocurrencies","debit_cards","electronic_purses","notes","prepaid_ticket","telephone_cards","alipay","american_express","apple_pay","bancomat","blik","clipper","diners_club","discover_card","dkv","ep_easycard","ep_geldkarte","ep_ipass","girocard","google_pay","jcb","maestro","mastercard","mastercard_contactless","paypal","unionpay","uta","v_pay","visa","visa_debit","visa_electron","wechat"]},"parking_space":{"key":"parking_space","type":"combo"},"parking_entrance":{"key":"parking","type":"combo","stringsCrossReference":"{parking}","options":["underground","multi-storey","surface"],"autoSuggestions":false,"customValues":true},"parking":{"key":"parking","type":"combo","autoSuggestions":false,"customValues":false,"options":["surface","street_side","lane","underground","multi-storey","rooftop","carports","garage_boxes","sheds","layby","on_kerb","half_on_kerb","shoulder"]},"park_ride":{"key":"park_ride","type":"check"},"parcel_pickup":{"key":"parcel_pickup","type":"check","options":["undefined","yes","no"]},"parcel_dropoff":{"key":"parcel_mail_in","type":"check"},"par":{"key":"par","type":"number","minValue":1},"panoramax":{"key":"panoramax","type":"identifier","urlFormat":"https://api.panoramax.xyz/#focus=pic&pic={value}","pattern":"^[a-zA-Z0-9-]{36,}$","universal":true},"overlap":{"key":"overlap","type":"number","snake_case":false,"prerequisiteTag":{"key":"cycle_barrier","valueNot":"single"}},"outdoor_seating":{"key":"outdoor_seating","type":"check"},"organic":{"key":"organic","type":"combo","autoSuggestions":false,"customValues":false,"options":["no","yes","only"]},"operator":{"key":"operator","type":"text"},"opening_hours":{"key":"opening_hours","type":"combo","snake_case":false,"caseSensitive":true},"opening_date":{"key":"opening_date","type":"date"},"opening":{"key":"opening","type":"number","snake_case":false,"prerequisiteTag":{"key":"cycle_barrier","valueNot":"single"}},"openfire":{"key":"openfire","type":"check"},"oneway_yes":{"key":"oneway","type":"onewayCheck","label":"{oneway}","options":["undefined","yes","no","reversible","alternating"]},"oneway":{"key":"oneway","type":"onewayCheck","options":["undefined","yes","no","reversible","alternating"]},"official_name":{"key":"official_name","type":"localized","universal":true,"prerequisiteTag":{"key":"name"}},"office":{"key":"office","type":"typeCombo","options":["accountant","adoption_agency","advertising_agency","architect","association","charity","company","construction_company","consulting","courier","coworking","diplomatic","educational_institution","employment_agency","energy_supplier","engineer","estate_agent","financial","financial_advisor","forestry","foundation","government","graphic_design","guide","insurance","it","lawyer","logistics","moving_company","newspaper","ngo","notary","physician","political_party","private_investigator","property_management","quango","religion","research","security","surveyor","tax_advisor","telecommunication","therapist","travel_agent","union","water_utility"]},"nudism":{"key":"nudism","type":"combo","autoSuggestions":false,"customValues":false,"options":["customary","designated","no","obligatory","permissive","yes"]},"note":{"key":"note","type":"textarea","universal":true},"network_road":{"key":"network","type":"networkCombo","snake_case":false,"caseSensitive":true},"network_horse":{"key":"network","type":"combo","autoSuggestions":false,"customValues":false,"options":["lhn","rhn","nhn","ihn"]},"network_foot":{"key":"network","type":"combo","autoSuggestions":false,"customValues":false,"options":["lwn","rwn","nwn","iwn"]},"network_bicycle":{"key":"network","type":"combo","autoSuggestions":false,"customValues":false,"options":["lcn","rcn","ncn","icn"]},"network":{"key":"network","type":"text"},"natural":{"key":"natural","type":"typeCombo"},"nat_name":{"key":"nat_name","type":"localized","universal":true,"prerequisiteTag":{"key":"name"}},"name":{"key":"name","type":"localized","universal":true},"museum":{"key":"museum","type":"combo"},"mooring":{"key":"mooring","type":"combo","options":["yes","no","private","commercial","guest"]},"monitoring_multi":{"key":"monitoring:","type":"multiCombo"},"model":{"key":"model","type":"combo","caseSensitive":true},"mobile":{"key":"mobile","keys":["mobile","contact:mobile"],"type":"tel"},"minspeed":{"key":"minspeed","type":"roadspeed"},"min_height":{"key":"min_height","minValue":0,"type":"number","prerequisiteTag":{"key":"height"}},"min_age":{"key":"min_age","type":"number","minValue":0},"mimics":{"key":"mimics","type":"combo"},"military_service":{"key":"military_service","type":"combo","options":["air_force","army","coast_guard","marines","navy"]},"microbrewery":{"key":"microbrewery","type":"check"},"message":{"key":"message","type":"combo"},"memorial":{"key":"memorial","type":"combo","options":["blue_plaque","bust","cross","ghost_bike","obelisk","plaque","sculpture","statue","stele","stolperstein","stone","war_memorial"]},"maxwidth":{"key":"maxwidth","type":"roadheight","snake_case":false},"maxweight_bridge":{"key":"maxweight","type":"combo","label":"{maxweight}","snake_case":false,"prerequisiteTag":{"key":"bridge","valueNot":"no"}},"maxweight":{"key":"maxweight","type":"combo","snake_case":false},"maxstay":{"key":"maxstay","type":"combo","options":["15 minutes","30 minutes","45 minutes","1 hour","1.5 hours","2 hours","2.5 hours","3 hours","4 hours","1 day","2 days"],"autoSuggestions":false,"snake_case":false},"maxspeed":{"key":"maxspeed","type":"roadspeed"},"maxlength":{"key":"maxlength","type":"roadheight","snake_case":false},"maxheight":{"key":"maxheight","type":"roadheight","snake_case":false},"maxaxleload_bridge":{"key":"maxaxleload","type":"combo","snake_case":false,"prerequisiteTag":{"key":"bridge","valueNot":"no"}},"max_age":{"key":"max_age","type":"number","minValue":0},"mattress":{"key":"mattress","type":"check"},"material":{"key":"material","type":"combo","options":["adobe","aluminium","brass","brick","bronze","concrete","dry_stone","glass","granite","iron","limestone","marble","metal","plastic","reinforced_concrete","rock","sand","sandstone","soil","steel","stone","wood"]},"marker":{"key":"marker","type":"typeCombo","options":["aerial","ground","pedestal","plate","post","stone"]},"mapillary":{"key":"mapillary","type":"identifier","urlFormat":"https://mapillary.com/app/?focus=photo&pKey={value}","pattern":"^[a-zA-Z0-9-_]{1,}$","universal":true},"map_type":{"key":"map_type","type":"typeCombo","autoSuggestions":false,"customValues":false,"options":["topo","street","scheme","toposcope"]},"map_size":{"key":"map_size","type":"typeCombo"},"manufacturer":{"key":"manufacturer","type":"combo","snake_case":false,"caseSensitive":true},"manhole":{"key":"manhole","type":"typeCombo"},"man_made":{"key":"man_made","type":"typeCombo"},"locked":{"key":"locked","type":"check"},"lockable":{"key":"lockable","type":"check"},"lock":{"key":"lock","type":"check"},"location_pool":{"key":"location","type":"combo","label":"{location}","autoSuggestions":false,"customValues":false,"options":["outdoor","indoor","roof"]},"location":{"key":"location","type":"combo"},"loc_name":{"key":"loc_name","type":"localized","universal":true,"prerequisiteTag":{"key":"name"}},"lit":{"key":"lit","type":"check"},"line_management":{"key":"line_management","type":"combo"},"line_attachment":{"key":"line_attachment","type":"combo"},"lifeguard_check":{"key":"lifeguard","type":"check"},"lifeguard":{"key":"lifeguard","type":"radio","options":["base","tower"]},"license_classes":{"key":"license_classes","type":"semiCombo"},"liaison":{"key":"liaison","type":"combo"},"level_semi":{"key":"level","type":"semiCombo"},"level":{"key":"level","type":"combo","prerequisiteTag":{"keyNot":"building"}},"length":{"key":"length","type":"number","minValue":0},"leisure":{"key":"leisure","type":"typeCombo"},"leaf_type_singular":{"key":"leaf_type","type":"combo","stringsCrossReference":"{leaf_type}","iconsCrossReference":"{leaf_type}","options":["broadleaved","needleleaved","leafless"],"autoSuggestions":false,"customValues":false},"leaf_type":{"key":"leaf_type","type":"combo","icons":{"broadleaved":"maki-park","needleleaved":"roentgen-needleleaved_tree"},"autoSuggestions":false,"customValues":false,"options":["broadleaved","needleleaved","mixed","leafless"]},"leaf_cycle_singular":{"key":"leaf_cycle","type":"combo","label":"{leaf_cycle}","stringsCrossReference":"{leaf_cycle}","options":["evergreen","deciduous","semi_evergreen","semi_deciduous"],"autoSuggestions":false,"customValues":false},"leaf_cycle":{"key":"leaf_cycle","type":"combo","autoSuggestions":false,"customValues":false,"options":["evergreen","deciduous","semi_evergreen","semi_deciduous","mixed"]},"layer_1":{"key":"layer","type":"number","label":"{layer}","default":"1"},"layer":{"key":"layer","type":"number"},"language_multi":{"key":"language:","type":"multiCombo"},"lanes":{"key":"lanes","type":"number","minValue":0},"lane_markings":{"key":"lane_markings","type":"check"},"landuse":{"key":"landuse","type":"typeCombo"},"lamp_type":{"key":"lamp_type","type":"combo"},"lamp_mount":{"key":"lamp_mount","type":"combo"},"label":{"key":"label","type":"textarea"},"kneipp_water_cure_multi":{"key":"kneipp_water_cure:","type":"multiCombo","options":["foot","arm","face"]},"kitchen":{"key":"kitchen","type":"check"},"kerb":{"key":"kerb","type":"combo","icons":{"raised":"temaki-kerb-raised","lowered":"temaki-kerb-lowered","flush":"temaki-kerb-flush","rolled":"temaki-kerb-rolled"},"options":["flush","lowered","no","raised","rolled","yes"]},"junction_line":{"key":"junction","type":"combo","autoSuggestions":false,"customValues":false,"options":["roundabout","circular","jughandle"]},"irrigation_pivot":{"key":"irrigation","type":"defaultCheck","options":["undefined","pivot"]},"interval":{"key":"interval","type":"text"},"internet_access":{"key":"internet_access","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","no","wlan","wired","terminal"]},"intermittent_yes":{"key":"intermittent","type":"check","label":"{intermittent}","default":"yes"},"intermittent":{"key":"intermittent","type":"check"},"inscription":{"key":"inscription","type":"textarea"},"information":{"key":"information","type":"typeCombo"},"informal":{"key":"informal","type":"check"},"industrial":{"key":"industrial","type":"combo"},"indoor_type":{"key":"indoor","type":"typeCombo"},"indoor":{"key":"indoor","type":"check"},"incline_steps":{"key":"incline","type":"combo","label":"{incline}","autoSuggestions":false,"customValues":false,"options":["up","down"]},"incline":{"key":"incline","type":"combo"},"image":{"key":"image","type":"url","universal":true},"icao":{"key":"icao","type":"text"},"iata":{"key":"iata","type":"text"},"house":{"key":"house","type":"combo","autoSuggestions":false,"options":["bungalow","detached","link-detached","maisonette","semi-detached","terrace","terraced"]},"hot_water":{"key":"hot_water","type":"check"},"horse_scale":{"key":"horse_scale","type":"combo","autoSuggestions":false,"customValues":false,"options":["common","demanding","difficult","critical","dangerous","impossible"]},"horse_riding":{"key":"leisure","type":"defaultCheck","reference":{"key":"leisure","value":"horse_riding"},"options":["undefined","horse_riding"]},"hoops":{"key":"hoops","type":"number","minValue":0},"historic":{"key":"historic","type":"typeCombo","options":["archaeological_site","bomb_crater","boundary_stone","building","castle","charcoal_pile","church","city_gate","citywalls","fort","manor","memorial","milestone","millstone","mine","mine_shaft","monument","pillory","railway","ruins","shieling","tomb","wayside_cross","wayside_shrine","wreck"]},"highway_cartpath":{"key":"highway","type":"typeCombo","autoSuggestions":false,"options":["path","service"]},"highway":{"key":"highway","type":"typeCombo"},"highspeed":{"key":"highspeed","type":"check"},"highchair":{"key":"highchair","type":"check"},"height_building":{"key":"height","minValue":0,"type":"number","prerequisiteTag":{"key":"building","valueNot":"no"}},"height":{"key":"height","minValue":0,"type":"number"},"heating":{"key":"heating","type":"check"},"healthcare_therapist":{"key":"healthcare","type":"typeCombo","options":["physiotherapist","psychotherapist","occupational_therapist","speech_therapist"],"autoSuggestions":false,"label":"{healthcare}"},"healthcare":{"key":"healthcare","type":"typeCombo","options":["alternative","audiologist","birthing_centre","blood_bank","blood_donation","clinic","community_health_worker","counselling","dentist","dialysis","doctor","hospice","hospital","laboratory","midwife","nurse","occupational_therapist","optometrist","pharmacy","physiotherapist","podiatrist","psychotherapist","rehabilitation","sample_collection","speech_therapist","vaccination_centre"]},"hazard_boundary":{"key":"hazard","type":"combo","options":["archery_range","avalanche","biohazard","contamination","electricity","shooting_range","hole","minefield","nuclear","quicksand"]},"hashtags":{"key":"hashtags","type":"semiCombo","usage":"changeset","autoSuggestions":false,"caseSensitive":true},"handrest":{"key":"handrest","type":"check","default":"yes"},"handrail":{"key":"handrail","type":"check"},"handicap":{"key":"handicap","type":"number"},"guest_house":{"key":"guest_house","type":"combo"},"group_only":{"key":"group_only","type":"check"},"grape_variety":{"key":"grape_variety","type":"semiCombo"},"grades":{"key":"grades","type":"combo","snake_case":false,"caseSensitive":true},"government":{"key":"government","type":"typeCombo"},"genus":{"key":"genus","type":"combo","snake_case":false,"caseSensitive":true},"gender_simple":{"type":"manyCombo","keys":["female","male"],"label":"{gender}","stringsCrossReference":"{gender}","options":["female","male"]},"gender":{"type":"manyCombo","keys":["male","female","unisex"],"options":["male","female","unisex"]},"gauge":{"key":"gauge","type":"combo"},"gambling":{"key":"gambling","type":"semiCombo"},"fuel":{"key":"fuel","type":"combo"},"from":{"key":"from","type":"text"},"frequency_electrified":{"key":"frequency","type":"combo","label":"{frequency}","prerequisiteTag":{"key":"electrified","valueNot":"no"}},"frequency":{"key":"frequency","type":"combo"},"fountain":{"key":"fountain","type":"combo"},"fortification_type":{"key":"fortification_type","type":"combo","prerequisiteTag":{"key":"archaeological_site","value":"fortification"}},"ford":{"key":"ford","type":"typeCombo","usage":"group"},"footrest":{"key":"footrest","type":"check"},"flood_prone":{"key":"flood_prone","type":"check"},"floating":{"key":"floating","type":"check"},"flashing_lights":{"key":"flashing_lights","type":"combo","autoSuggestions":false,"customValues":false,"options":["button","always","sensor","button;sensor","no","yes"]},"fixme":{"key":"fixme","type":"textarea","universal":true},"fitness_station":{"key":"fitness_station","type":"typeCombo"},"fishing":{"key":"fishing","type":"combo"},"fireplace":{"key":"fireplace","type":"check"},"fire_sprinkler":{"key":"fire_sprinkler","type":"combo","autoSuggestions":false,"customValues":false,"options":["dry","wet","pre-action","yes","no"]},"fire_service_inlet":{"key":"fire_service_inlet","type":"combo","autoSuggestions":false,"customValues":false,"options":["pillar","underground","wall","pipe"]},"fire_mains":{"key":"fire_mains","type":"combo","autoSuggestions":false,"customValues":false,"options":["dry","wet","yes","no"]},"fence_type":{"key":"fence_type","type":"combo"},"fee":{"key":"fee","type":"check"},"fax":{"key":"fax","keys":["fax","contact:fax"],"type":"tel"},"faces":{"key":"faces","type":"number","minValue":0},"expressway-US":{"key":"expressway","type":"check","locationSet":{"include":["US"]}},"expected_rwn_route_relations":{"key":"expected_rwn_route_relations","type":"number"},"expected_rcn_route_relations":{"key":"expected_rcn_route_relations","type":"number"},"except":{"key":"except","type":"combo"},"entrance":{"key":"entrance","type":"typeCombo","options":["yes","main","secondary","service","shop","exit","entrance","emergency","staircase","home","garage"]},"enforcement":{"key":"enforcement","type":"combo"},"emergency_ward_entrance":{"key":"emergency_ward_entrance","type":"combo"},"emergency_combo":{"key":"emergency","type":"combo"},"emergency":{"key":"emergency","type":"check"},"embassy":{"key":"embassy","type":"combo","autoSuggestions":false,"options":["yes","residence","high_commission","mission","branch_embassy","nunciature","delegation","interests_section"]},"embankment":{"key":"embankment","type":"typeCombo","usage":"group"},"email":{"key":"email","keys":["email","contact:email"],"type":"email"},"electrified":{"key":"electrified","type":"combo","autoSuggestions":false,"customValues":false,"options":["contact_line","rail","yes","no"]},"ele_node":{"key":"ele","type":"number","label":"{ele}","universal":true,"geometry":["point","vertex"]},"ele":{"key":"ele","type":"number","geometry":["line","area","relation"]},"education":{"key":"education","type":"typeCombo","options":["college","dancing_school","driving_school","kindergarten","language_school","music_school","prep_school","school","university"]},"duration":{"key":"duration","type":"text"},"drive_through":{"key":"drive_through","type":"check"},"drinking_water_available":{"key":"drinking_water","type":"check"},"drinking_water":{"key":"drinking_water","type":"check"},"drink_multi":{"key":"drink:","type":"multiCombo"},"door_type":{"key":"door","type":"typeCombo"},"door":{"key":"door","type":"combo"},"dog_yes":{"key":"dog","type":"combo","label":"{dog}","options":["leashed","unleashed"],"stringsCrossReference":"{dog}","autoSuggestions":false,"customValues":false},"dog_check":{"key":"dog","type":"check"},"dog":{"key":"dog","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","leashed","unleashed","no"]},"dock":{"key":"dock","type":"combo","options":["drydock","floating","tidal"]},"distance":{"key":"distance","type":"text"},"display":{"key":"display","type":"combo","autoSuggestions":false,"options":["analog","digital","sundial","unorthodox"]},"dispensing":{"key":"dispensing","type":"check"},"direction_vertex_dual":{"key":"direction","type":"combo","label":"{direction_vertex}","stringsCrossReference":"{direction_vertex}","options":["forward","backward"],"geometry":["vertex"],"autoSuggestions":false,"customValues":false},"direction_vertex":{"key":"direction","type":"combo","geometry":["vertex"],"autoSuggestions":false,"customValues":false,"options":["forward","backward","both"]},"direction_point":{"key":"direction","type":"number","label":"{direction}","increment":5,"geometry":["point"]},"direction_clock":{"key":"direction","type":"combo","autoSuggestions":false,"customValues":false,"options":["clockwise","anticlockwise"]},"direction_cardinal-US-CA-NZ":{"key":"direction","type":"combo","autoSuggestions":false,"locationSet":{"include":["CA","NZ","US"]},"options":["north","south","east","west"]},"direction":{"key":"direction","type":"number","increment":5},"diplomatic":{"key":"diplomatic","type":"combo","options":["consulate","embassy","liaison"]},"diet_multi":{"key":"diet:","type":"multiCombo","options":["vegetarian","vegan","halal","gluten_free","kosher","lactose_free","pescetarian"]},"diameter_crown":{"key":"diameter_crown","type":"combo","snake_case":false},"diameter":{"key":"diameter","type":"combo","snake_case":false},"devices":{"key":"devices","type":"number","minValue":0},"destination_waterway":{"key":"destination","type":"text"},"destination_oneway":{"key":"destination","type":"semiCombo","label":"{destination}","prerequisiteTag":{"key":"oneway","value":"yes"},"snake_case":false,"caseSensitive":true},"destination":{"key":"destination","type":"semiCombo","snake_case":false,"caseSensitive":true},"design_power_tower":{"key":"design","type":"combo","label":"{design}","icons":{"one-level":"roentgen-power_tower_1_level","two-level":"roentgen-power_tower_2_level","three-level":"roentgen-power_tower_3_level","four-level":"roentgen-power_tower_4_level","asymmetric":"roentgen-power_tower_asymmetric","triangle":"roentgen-power_tower_triangle","flag":"roentgen-power_tower_flag","delta":"roentgen-power_tower_delta","delta_two-level":"roentgen-power_tower_delta_2_level","delta_tree-level":"roentgen-power_tower_delta_3_level","donau":"roentgen-power_tower_donau","barrel":"roentgen-power_tower_barrel","x-frame":"roentgen-power_tower_x_frame","y-frame":"roentgen-power_tower_y_frame","h-frame":"roentgen-power_tower_h_frame","h-frame_two-level":"roentgen-power_tower_h_frame_2_level","guyed_h-frame":"roentgen-power_tower_guyed_h_frame","portal":"roentgen-power_tower_portal","portal_two-level":"roentgen-power_tower_portal_2_level","portal_three-level":"roentgen-power_tower_portal_3_level"}},"design_power_pole":{"key":"design","type":"combo","label":"{design}","icons":{"one-level":"roentgen-power_pole_1_level","two-level":"roentgen-power_pole_2_level","three-level":"roentgen-power_pole_3_level","four-level":"roentgen-power_pole_4_level","asymmetric":"roentgen-power_pole_asymmetric","triangle":"roentgen-power_pole_triangle","flag":"roentgen-power_pole_flag","delta":"roentgen-power_pole_delta","armless":"roentgen-power_pole_armless","armless_asymmetric":"roentgen-power_pole_asymmetric_armless","armless_triangle":"roentgen-power_pole_triangle_armless"}},"design":{"key":"design","type":"combo","usage":"manual"},"description":{"key":"description","type":"textarea","universal":true},"descent":{"key":"descent","minValue":0,"type":"number"},"depth":{"key":"depth","minValue":0,"type":"number"},"depot":{"key":"depot","type":"combo"},"departures_board":{"key":"departures_board","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","timetable","realtime","no"]},"denotation":{"key":"denotation","type":"combo"},"denomination":{"key":"denomination","type":"combo","prerequisiteTag":{"key":"religion","valueNot":"none"}},"delivery":{"key":"delivery","type":"check"},"deflection":{"key":"deflection","type":"number","increment":5,"prerequisiteTag":{"key":"cycle_barrier","value":"diagonal"}},"date":{"key":"date","type":"check"},"cycleway":{"key":"cycleway","keys":["cycleway:left","cycleway:right"],"reference":{"key":"cycleway"},"type":"directionalCombo","autoSuggestions":true,"options":["no","lane","shared_lane","track","share_busway","separate","opposite_lane","opposite"]},"cyclestreet-BE-NL":{"key":"cyclestreet","type":"defaultCheck","label":"{bicycle_road}","locationSet":{"include":["BE","NL"]},"stringsCrossReference":"{bicycle_road}"},"cycle_network":{"key":"cycle_network","type":"networkCombo","snake_case":false,"caseSensitive":true},"cycle_barrier":{"key":"cycle_barrier","type":"combo","customValues":false,"autoSuggestions":false,"options":["single","double","triple","diagonal","tilted"]},"cutting":{"key":"cutting","type":"typeCombo","usage":"group"},"currency_multi":{"key":"currency:","type":"multiCombo","caseSensitive":true},"cuisine":{"key":"cuisine","type":"semiCombo","options":["pizza","burger","coffee_shop","regional","italian","sandwich","chinese","chicken","japanese","kebab","mexican","american","asian","ice_cream","indian","sushi","seafood","thai","french","german","breakfast","greek","steak_house","fish_and_chips","korean","barbecue","donut","noodle","vietnamese","fish","turkish","cake","pasta","tex-mex","bubble_tea","ramen","mediterranean","spanish","friture","tea","grill","juice","salad","crepe","hot_dog","pancake","dessert","diner","tapas","portuguese","beef_bowl","russian","indonesian","wings","lebanese","arab","curry","malaysian","bagel","georgian","polish","african","western","sausage","filipino","caribbean","soba","peruvian","brazilian","oriental","fine_dining","frozen_yogurt","argentinian","balkan","bavarian","shawarma","persian","middle_eastern","pastry","soup","fries","taiwanese","bistro","european","moroccan","hawaiian","brunch","udon","ukrainian"]},"crossing_raised":{"key":"traffic_calming","type":"defaultCheck","options":["undefined","table"]},"crossing":{"key":"crossing","type":"combo","options":["traffic_signals","uncontrolled","unmarked"]},"crop":{"key":"crop","type":"semiCombo","options":["asparagus","barley","beet","cassava","coffee","cotton","cranberries","fast_growing_wood","flowers","grape","grass","hop","lavender","maize","potato","rape","rice","strawberry","sugar_beet","sugarcane","sunflower","soy","tea","tobacco","vegetable","wheat"]},"craft":{"key":"craft","type":"typeCombo","options":["agricultural_engines","basket_maker","beekeeper","blacksmith","boatbuilder","bookbinder","brewery","builder","carpenter","carpet_layer","caterer","chimney_sweeper","cleaning","clockmaker","confectionery","distillery","dressmaker","electronics_repair","electrician","floorer","gardener","glaziery","grinding_mill","handicraft","hvac","insulation","jeweller","joiner","key_cutter","locksmith","metal_construction","oil_mill","painter","parquet_layer","photographer","photographic_laboratory","plasterer","plumber","pottery","rigger","roofer","saddler","sailmaker","sawmill","scaffolder","sculptor","shoemaker","signmaker","stonemason","tailor","tiler","tinsmith","upholsterer","watchmaker","window_construction","winery"]},"covered_no":{"key":"covered","type":"check","label":"{covered}","options":["undefined","yes","no"]},"covered":{"key":"covered","type":"check"},"couplings":{"key":"couplings","type":"number","minValue":1},"country_flag":{"key":"country","type":"combo","prerequisiteTag":{"key":"flag:type","value":"national"},"snake_case":false,"caseSensitive":true},"country":{"key":"country","type":"combo","snake_case":false,"caseSensitive":true},"count":{"key":"count","type":"number","minValue":1},"conveying_escalator":{"key":"conveying","type":"check"},"conveying":{"key":"conveying","type":"typeCombo","autoSuggestions":false,"customValues":false,"options":["forward","backward","reversible"]},"content":{"key":"content","type":"combo","options":["silage","water","oil","fuel","slurry","gas","manure","sewage"],"autoSuggestions":false},"consulting":{"key":"consulting","type":"semiCombo"},"consulate":{"key":"consulate","type":"combo","options":["consulate_general","honorary_consul","yes","consular_office","consular_agency","residence"]},"construction":{"key":"construction","type":"combo"},"connectivity":{"key":"connectivity","type":"text"},"community_centre":{"key":"community_centre","type":"combo","options":["club_home","community_hall","cultural_centre","family_centre","parish_hall","village_hall","youth_centre"]},"communication_multi":{"key":"communication:","type":"multiCombo"},"comment":{"key":"comment","type":"textarea","usage":"changeset"},"colour":{"key":"colour","type":"colour"},"collector":{"key":"collector","type":"semiCombo","options":["coins","stamps","comics"]},"collection_times":{"key":"collection_times","type":"text"},"club":{"key":"club","type":"typeCombo"},"clothes":{"key":"clothes","type":"semiCombo","options":["babies","children","denim","fur","hats","maternity","men","motorcycle","oversize","socks","sports","suits","swimwear","traditional","underwear","wedding","women","workwear"]},"circumference":{"key":"circumference","type":"combo","snake_case":false},"check_date":{"key":"check_date","type":"date","universal":true},"charge_toll":{"key":"charge","type":"text","prerequisiteTag":{"key":"toll","valueNot":"no"}},"charge_fee":{"key":"charge","type":"text","prerequisiteTag":{"key":"fee","valueNot":"no"}},"changing_table":{"key":"changing_table","type":"check"},"ceremonial_gate":{"key":"ceremonial_gate","type":"combo","options":["torii","paifang","hongsalmun","iljumun"]},"castle_type":{"key":"castle_type","type":"combo","options":["defensive","palace","stately","manor","fortress","castrum","shiro","kremlin","hillfort"]},"cash_in":{"key":"cash_in","type":"check"},"caravans":{"key":"caravans","type":"check"},"capacity_volume":{"key":"capacity","type":"number","minValue":0},"capacity_parking":{"key":"capacity","type":"number","minValue":0},"capacity":{"key":"capacity","type":"number","minValue":0},"camp_site":{"key":"camp_site","type":"combo","options":["basic","standard","serviced","deluxe"],"autoSuggestions":false},"cai_scale-IT":{"key":"cai_scale","type":"combo","snake_case":false,"caseSensitive":true,"autoSuggestions":false,"customValues":false,"locationSet":{"include":["IT"]},"options":["T","E","EE","EEA","EAI"]},"cables":{"key":"cables","type":"number","minValue":1},"cabins":{"key":"cabins","type":"check"},"button_operated":{"key":"button_operated","type":"check"},"bunker_type":{"key":"bunker_type","type":"combo"},"building_area_yes":{"key":"building","type":"combo","default":"yes","geometry":["area"],"label":"{building}"},"building_area":{"key":"building","type":"combo","geometry":["area"],"label":"{building}"},"building":{"key":"building","type":"combo","options":["allotment_house","apartments","barn","boathouse","bungalow","bunker","cabin","carport","cathedral","chapel","church","civic","college","commercial","construction","cowshed","detached","dormitory","farm","farm_auxiliary","fire_station","garage","garages","ger","grandstand","greenhouse","hangar","hospital","hotel","house","houseboat","hut","industrial","kindergarten","manufacture","mosque","office","outbuilding","pavilion","public","residential","retail","riding_hall","roof","ruins","school","semidetached_house","service","shed","stable","stadium","static_caravan","sty","synagogue","temple","terrace","train_station","transportation","university","warehouse","container"]},"bridge_combo":{"key":"bridge","type":"combo","options":["aqueduct","boardwalk","cantilever","covered","low_water_crossing","movable","trestle","viaduct"]},"bridge":{"key":"bridge","type":"typeCombo","usage":"group","stringsCrossReference":"{bridge_combo}"},"brewery":{"key":"brewery","type":"semiCombo"},"brand":{"key":"brand","type":"text"},"branch_brand":{"key":"branch","type":"text"},"boundary":{"key":"boundary","type":"combo"},"boules":{"key":"boules","type":"typeCombo"},"bottle":{"key":"bottle","type":"check"},"booth":{"key":"booth","type":"combo","caseSensitive":true},"books":{"key":"books","type":"semiCombo"},"bollard":{"key":"bollard","type":"combo","options":["fixed","flexible","foldable","removable","rising"]},"board_type":{"key":"board_type","type":"combo","options":["art","astronomy","geology","history","nature","notice","plants","welcome_sign","wildlife"]},"blood_components":{"key":"blood:","type":"multiCombo","options":["whole","plasma","platelets","stemcells"]},"blind":{"key":"blind","type":"radio","options":["yes","limited","no"]},"bin":{"key":"bin","type":"check"},"bike_ride":{"key":"bike_ride","type":"check"},"bicycle_road":{"key":"bicycle_road","type":"defaultCheck","locationSet":{"exclude":["BE","NL"]},"options":["undefined","yes"]},"bicycle_parking":{"key":"bicycle_parking","type":"combo","options":["stands","wall_loops","shed","lockers","building","handlebar_holder"]},"bench":{"key":"bench","type":"check"},"beauty":{"key":"beauty","type":"semiCombo","options":["nails","tanning","cosmetics","spa","skin_care","waxing","hair_removal"]},"basin":{"key":"basin","type":"combo","options":["detention","evaporation","infiltration","retention"]},"barrier_planter":{"key":"barrier","type":"defaultCheck","geometry":["vertex"],"options":["undefined","planter"]},"barrier":{"key":"barrier","type":"typeCombo","options":["fence","gate","wall","hedge","kerb","bollard","lift_gate","retaining_wall","block","guard_rail","cycle_barrier","stile","entrance","swing_gate","cattle_grid","ditch","toll_booth","city_wall","kissing_gate","chain","jersey_barrier","height_restrictor","turnstile"]},"bar":{"key":"bar","type":"check"},"backrest":{"key":"backrest","type":"check"},"backcountry":{"key":"backcountry","type":"check"},"baby_seat":{"key":"baby","type":"check"},"baby_feeding":{"key":"baby_feeding","type":"combo","autoSuggestions":false,"customValues":false,"options":["room","yes","no"]},"automated":{"key":"automated","type":"check"},"attraction":{"key":"attraction","type":"typeCombo","options":["animal","water_slide","amusement_ride","roller_coaster","carousel","maze","summer_toboggan","big_wheel","train","bumper_car","bungee_jumping","dark_ride","drop_tower","kiddie_ride","log_flume","pirate_ship","river_rafting","swing_carousel","alpine_coaster"]},"atm":{"key":"atm","type":"check"},"athletics_track":{"key":"athletics","type":"semiCombo","options":["javelin_throw","long_jump","pole_vault","running","sprint","steeplechase","triple_jump"]},"athletics_pitch":{"key":"athletics","type":"semiCombo","options":["discus_throw","hammer_throw","high_jump","javelin_throw","long_jump","pole_vault","shot_put","triple_jump"]},"ascent":{"key":"ascent","minValue":0,"type":"number"},"artwork_type":{"key":"artwork_type","type":"combo","options":["sculpture","statue","mural","installation","graffiti","bust","painting","mosaic","relief","stone","tilework"]},"artist":{"key":"artist_name","type":"text"},"armrest":{"key":"armrest","type":"check","options":["undefined","yes","no"]},"architect":{"key":"architect","type":"text"},"archaeological_site":{"key":"archaeological_site","type":"combo","options":["baths","city","crannog","enclosure","fortification","hut_circle","megalith","necropolis","petroglyph","roman_circus","roman_villa","settlement","tumulus"]},"animal_shelter":{"key":"animal_shelter","type":"semiCombo"},"animal_breeding":{"key":"animal_breeding","type":"semiCombo"},"animal_boarding":{"key":"animal_boarding","type":"semiCombo"},"amenity":{"key":"amenity","type":"typeCombo"},"alt_name":{"key":"alt_name","type":"localized","universal":true,"prerequisiteTag":{"key":"name"}},"air_conditioning":{"key":"air_conditioning","type":"check"},"agrarian":{"key":"agrarian","type":"semiCombo"},"aeroway":{"key":"aeroway","type":"typeCombo"},"aerialway":{"key":"aerialway","type":"typeCombo"},"advertising":{"key":"advertising","type":"typeCombo"},"admin_level":{"key":"admin_level","type":"number","minValue":1},"address":{"type":"address","key":"addr","reference":{"key":"addr:*"},"keys":["addr:block_number","addr:city","addr:conscriptionnumber","addr:country","addr:county","addr:district","addr:floor","addr:hamlet","addr:housename","addr:housenumber","addr:neighbourhood","addr:place","addr:postcode","addr:province","addr:quarter","addr:state","addr:street","addr:subdistrict","addr:suburb","addr:town","addr:unit"]},"activity":{"keys":["hiking","bicycle","mtb","horse","ski"],"type":"manyCombo","options":["hiking","bicycle","mtb","horse","ski"]},"access_simple":{"key":"access","type":"combo","autoSuggestions":false,"options":["yes","private","permissive","customers","permit","unknown","no"]},"access_aisle":{"key":"access_aisle","type":"combo"},"access":{"keys":["access","foot","motor_vehicle","bicycle","horse"],"reference":{"key":"access"},"type":"access","options":["yes","no","permissive","private","designated","destination","customers","dismount","permit","unknown"]},"windings/configuration":{"key":"windings:configuration","type":"combo","autoSuggestions":false,"customValues":false,"options":["star","delta","open-delta","zigzag","open","scott","leblanc"]},"windings/auto":{"key":"windings:auto","type":"check","options":["undefined","yes","no"]},"website/menu":{"key":"website:menu","type":"url"},"water_tank/volume":{"key":"water_tank:volume","type":"text"},"voltage/tertiary":{"key":"voltage:tertiary","type":"combo"},"voltage/secondary":{"key":"voltage:secondary","type":"combo"},"voltage/primary":{"key":"voltage:primary","type":"combo"},"volcano/type":{"key":"volcano:type","type":"combo","icons":{"stratovolcano":"roentgen-stratovolcano___smoke_2","shield":"roentgen-shield_volcano___smoke_2","scoria":"roentgen-volcanic_cone___smoke_2"},"autoSuggestions":false,"customValues":false,"options":["stratovolcano","shield","scoria"]},"volcano/status":{"key":"volcano:status","type":"combo","icons":{"active":"roentgen-stratovolcano___lava","dormant":"roentgen-stratovolcano___smoke","extinct":"roentgen-stratovolcano"},"autoSuggestions":false,"customValues":false,"options":["active","dormant","extinct"]},"traffic_signals/vibration":{"key":"traffic_signals:vibration","type":"check"},"traffic_signals/sound":{"key":"traffic_signals:sound","type":"combo","autoSuggestions":false,"customValues":false,"options":["yes","no","locate","walk"]},"traffic_signals/minimap":{"key":"traffic_signals:minimap","type":"check"},"traffic_signals/direction":{"key":"traffic_signals:direction","type":"combo","autoSuggestions":false,"customValues":false,"options":["forward","backward","both"]},"traffic_signals/countdown":{"key":"traffic_signals:countdown","type":"check"},"traffic_signals/arrow":{"key":"traffic_signals:arrow","type":"check"},"traffic_sign/direction":{"key":"traffic_sign:direction","type":"combo","autoSuggestions":false,"customValues":false,"geometry":["vertex"],"options":["forward","backward","both"]},"townhall/type":{"key":"townhall:type","type":"combo"},"tower/type":{"key":"tower:type","type":"combo"},"tower/platforms":{"key":"tower:platforms","type":"number","minValue":1},"tower/construction":{"key":"tower:construction","type":"combo","icons":{"freestanding":"roentgen-tube","guyed_lattice":"roentgen-lattice_guyed","guyed_tube":"roentgen-tube_guyed","lattice":"roentgen-lattice","dish":"fas-satellite-dish"}},"toilets/wheelchair":{"key":"toilets:wheelchair","type":"radio","prerequisiteTag":{"key":"toilets","valueNot":"no"},"options":["yes","limited","no"]},"toilets/position":{"key":"toilets:position","type":"semiCombo"},"toilets/menstrual_products_poi":{"key":"toilets:menstrual_products","type":"radio","stringsCrossReference":"{toilets/menstrual_products}","label":"{toilets/menstrual_products}","prerequisiteTag":{"key":"toilets","valueNot":"no"}},"toilets/menstrual_products":{"key":"toilets:menstrual_products","type":"radio","options":["yes","limited","no"]},"toilets/handwashing":{"key":"toilets:handwashing","type":"check"},"toilets/disposal":{"key":"toilets:disposal","type":"combo","autoSuggestions":false,"customValues":false,"options":["flush","pitlatrine","chemical","bucket"]},"telescope/type":{"key":"telescope:type","type":"combo","icons":{"optical":"temaki-telescope","radio":"roentgen-telescope-radio"},"autoSuggestions":true,"customValues":true,"options":["optical","radio"]},"telecom/medium":{"key":"telecom:medium","type":"combo"},"survey_point/structure":{"key":"survey_point:structure","type":"combo","options":["beacon","block","pole","pillar","bracket","plaque","medallion","cairn","pin","indented_pin","cut","magnet"]},"survey_point/purpose":{"key":"survey_point:purpose","type":"combo","options":["horizontal","vertical","both"]},"survey_point/datum_aligned":{"key":"survey_point:datum_aligned","type":"check"},"survey/date":{"key":"survey:date","type":"date"},"surveillance/zone":{"key":"surveillance:zone","type":"combo"},"surveillance/type":{"key":"surveillance:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["camera","guard","ALPR"]},"summit/cross":{"key":"summit:cross","type":"check"},"subject/wikidata":{"key":"subject:wikidata","keys":["subject:wikidata","subject:wikipedia"],"type":"wikidata"},"sport/sport_racing_nonmotor":{"key":"sport","type":"semiCombo","options":["running","cycling","bmx","horse_racing","dog_racing","athletics"],"stringsCrossReference":"{sport}","autoSuggestions":false},"sport/sport_racing_motor":{"key":"sport","type":"semiCombo","options":["motor","karting","motocross","speedway"],"stringsCrossReference":"{sport}","autoSuggestions":false},"sport/sport_pub":{"key":"sport","type":"semiCombo","options":["table_soccer","billiards","darts"],"stringsCrossReference":"{sport}","autoSuggestions":false},"sport/sport_ice":{"key":"sport","type":"semiCombo","options":["ice_skating","ice_hockey","curling","ice_stock","multi"],"stringsCrossReference":"{sport}","autoSuggestions":false},"species/wikidata":{"key":"species:wikidata","keys":["species:wikidata","species:wikipedia"],"type":"wikidata"},"source/population":{"key":"source:population","type":"combo","prerequisiteTag":{"key":"population"},"snake_case":false,"caseSensitive":true},"siren/type":{"key":"siren:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["pneumatic","electronic","other"]},"siren/purpose":{"key":"siren:purpose","type":"combo"},"service/vehicle":{"key":"service:vehicle:","type":"multiCombo"},"service/bicycle":{"key":"service:bicycle:","type":"multiCombo"},"seamark/type":{"key":"seamark:type","type":"combo"},"seamark/wreck/category":{"key":"seamark:wreck:category","type":"combo"},"seamark/rescue_station/category":{"key":"seamark:rescue_station:category","type":"semiCombo","options":["lifeboat","lifeboat_on_mooring","seaplane","aircraft","hovercraft","radio","first_aid","refuge_shipwrecked","refuge_intertidal","tug"]},"seamark/mooring/category":{"key":"seamark:mooring:category","type":"combo"},"seamark/harbour/category_marina":{"key":"seamark:harbour:category","type":"check","options":["marina","marina_no_facilities"]},"seamark/buoy_lateral/system":{"key":"seamark:buoy_lateral:system","type":"combo","autoSuggestions":false,"customValues":false,"options":["iala-a","iala-b","cevni","other"]},"seamark/buoy_lateral/shape":{"key":"seamark:buoy_lateral:shape","type":"combo"},"seamark/buoy_lateral/colour":{"key":"seamark:buoy_lateral:colour","type":"combo","autoSuggestions":false,"customValues":false,"options":["red","green","red;white;red;white","green;white;green;white","red;green;red","green;red;green","white","yellow"]},"seamark/buoy_lateral/category":{"key":"seamark:buoy_lateral:category","type":"combo","autoSuggestions":false,"customValues":false,"options":["port","starboard","channel_left","channel_right","waterway_left","waterway_right","danger_left","danger_right","preferred_channel_port","preferred_channel_starboard"]},"seamark/beacon_lateral/system":{"key":"seamark:beacon_lateral:system","type":"combo","autoSuggestions":false,"customValues":false,"options":["iala-a","iala-b","cevni","other"]},"seamark/beacon_lateral/shape":{"key":"seamark:beacon_lateral:shape","type":"combo"},"seamark/beacon_lateral/colour":{"key":"seamark:beacon_lateral:colour","type":"combo","autoSuggestions":false,"customValues":false,"options":["red","green","grey"]},"seamark/beacon_lateral/category":{"key":"seamark:beacon_lateral:category","type":"combo","autoSuggestions":false,"customValues":false,"options":["port","starboard","waterway_left","waterway_right","danger_left","danger_right"]},"seamark/beacon_isolated_danger/shape":{"key":"seamark:beacon_isolated_danger:shape","type":"combo"},"rotor/diameter":{"key":"rotor:diameter","minValue":0,"type":"number"},"roof/shape":{"key":"roof:shape","type":"combo","autoSuggestions":true,"customValues":false,"options":["flat","gabled","gabled_height_moved","skillion","hipped","half-hipped","side_hipped","side_half-hipped","mansard","gambrel","hipped-and-gabled","pyramidal","crosspitched","sawtooth","butterfly","cone","dome","onion","round"]},"roof/height":{"key":"roof:height","minValue":0,"type":"number"},"roof/colour":{"key":"roof:colour","type":"colour"},"roller_coaster/track":{"key":"roller_coaster:track","type":"combo","options":["lift_hill","launch_straight","brake_run","station","moving","waiting","maintenance"]},"ref/vatin":{"key":"ref:vatin","type":"identifier","locationSet":{"exclude":["ai","ao","bm","bn","bt","cu","dj","er","fk","fm","gg","gi","gs","hk","io","iq","ki","km","kp","kw","ky","lr","ly","mh","mm","mo","ms","mv","nr","om","pn","pw","qa","sb","sh","sm","so","sr","ss","st","sy","sz","tc","tl","tv","us","va","vg","xk","ye"]}},"ref/isil":{"key":"ref:isil","type":"text"},"ref/edubase-GB":{"key":"ref:edubase","type":"identifier","urlFormat":"https://get-information-schools.service.gov.uk/Establishments/Establishment/Details/{value}","pattern":"^[0-9]{1,}$","locationSet":{"include":["gb"]}},"ref/linz/place_id-NZ":{"key":"ref:linz:place_id","type":"identifier","urlFormat":"http://gazetteer.linz.govt.nz/place/{value}","pattern":"^[0-9;]{1,}$","universal":true,"locationSet":{"include":["nz","aq"]}},"ref/FR/siret-FR":{"key":"ref:FR:SIRET","type":"identifier","urlFormat":"https://annuaire-entreprises.data.gouv.fr/etablissement/{value}","pattern":"^MONACO[A-Z\\d]{5}001|\\d{9}([1-7]\\d{3}|0[1-9]\\d{2}|00[1-9]\\d|000[1-9])\\d$","locationSet":{"include":["fr"]}},"railway/track_ref":{"key":"railway:track_ref","type":"text"},"railway/switch":{"key":"railway:switch","type":"combo","autoSuggestions":false,"customValues":true,"options":["default","double_slip","single_slip","wye","three_way","abt"]},"railway/position":{"key":"railway:position","type":"text"},"railway/signal/direction":{"key":"railway:signal:direction","type":"combo","autoSuggestions":false,"customValues":false,"options":["forward","backward","both"]},"public_bookcase/type":{"key":"public_bookcase:type","type":"combo"},"post_box/type":{"key":"post_box:type","locationSet":{"exclude":["gb"]},"type":"typeCombo","autoSuggestions":true,"customValues":true,"options":["pillar","lamp","wall"]},"post_box/type-GB":{"key":"post_box:type","locationSet":{"include":["gb"]},"type":"typeCombo","label":"{post_box/type}","stringsCrossReference":"{post_box/type}","options":["pillar","lamp","wall"],"autoSuggestions":false,"customValues":false},"population/date":{"key":"population:date","type":"text","prerequisiteTag":{"key":"population"}},"playground/theme":{"key":"playground:theme","type":"combo"},"plant/source":{"key":"plant:source","type":"combo","stringsCrossReference":"{generator/source}"},"plant/output":{"key":"plant:output","type":"multiCombo","autoSuggestions":false,"options":["electricity","hot_water","hot_air","cold_water","cold_air","compressed_air","steam","vacuum"]},"plant/method":{"key":"plant:method","type":"combo","stringsCrossReference":"{generator/method}","autoSuggestions":false},"plant/output/electricity":{"key":"plant:output:electricity","type":"typeCombo","snake_case":false,"caseSensitive":true,"prerequisiteTag":{"key":"plant:output:electricity","valueNot":"no"}},"plant/method/waste":{"key":"plant:method","type":"combo","label":"{plant/method}","stringsCrossReference":"{generator/method}","options":["combustion","gasification"],"autoSuggestions":false,"prerequisiteTag":{"key":"plant:source","value":"waste"}},"plant/method/solar":{"key":"plant:method","type":"combo","label":"{plant/method}","stringsCrossReference":"{generator/method}","options":["thermal","photovoltaic"],"autoSuggestions":false,"prerequisiteTag":{"key":"plant:source","value":"solar"}},"plant/method/hydro":{"key":"plant:method","type":"combo","label":"{plant/method}","stringsCrossReference":"{generator/method}","options":["water-storage","water-pumped-storage","run-of-the-river"],"autoSuggestions":false,"prerequisiteTag":{"key":"plant:source","value":"hydro"}},"piste/type":{"key":"piste:type","type":"typeCombo","autoSuggestions":false,"customValues":false,"options":["downhill","nordic","skitour","sled","hike","sleigh","ice_skate","snow_park","playground","connection","ski_jump"]},"piste/grooming_nordic":{"key":"piste:grooming","type":"combo","label":"{piste/grooming}","autoSuggestions":false,"customValues":false,"options":["classic","backcountry","classic+skating","scooter","skating"]},"piste/grooming_hike":{"key":"piste:grooming","type":"combo","label":"{piste/grooming}","autoSuggestions":false,"customValues":false,"options":["classic","backcountry"]},"piste/grooming_downhill":{"key":"piste:grooming","type":"combo","label":"{piste/grooming}","autoSuggestions":false,"customValues":false,"options":["classic","mogul","backcountry"]},"piste/grooming":{"key":"piste:grooming","type":"combo","autoSuggestions":false,"customValues":false,"options":["classic","mogul","backcountry","classic+skating","scooter","skating"]},"piste/difficulty_skitour":{"key":"piste:difficulty","type":"combo","label":"{piste/difficulty}","autoSuggestions":false,"customValues":false,"options":["novice","easy","intermediate","advanced","expert","freeride","extreme"]},"piste/difficulty_nordic":{"key":"piste:difficulty","type":"combo","label":"{piste/difficulty}","autoSuggestions":false,"customValues":false,"options":["novice","easy","intermediate","advanced","expert"]},"piste/difficulty_downhill":{"key":"piste:difficulty","type":"combo","label":"{piste/difficulty}","autoSuggestions":false,"customValues":false,"options":["novice","easy","intermediate","advanced","expert","freeride","extreme"]},"piste/difficulty":{"key":"piste:difficulty","type":"combo","autoSuggestions":false,"customValues":false,"options":["novice","easy","intermediate","advanced","expert","freeride","extreme"]},"parking/side/parking":{"key":"parking:both","keys":["parking:left","parking:right"],"reference":{"key":"parking"},"type":"directionalCombo","autoSuggestions":false,"customValues":false,"options":["lane","street_side","on_kerb","half_on_kerb","shoulder","no","separate","yes"]},"parking/side/orientation":{"key":"parking:both:orientation","keys":["parking:left:orientation","parking:right:orientation"],"reference":{"key":"orientation"},"type":"directionalCombo","autoSuggestions":false,"customValues":false,"options":["parallel","diagonal","perpendicular"]},"orientation/orientation_parking":{"key":"orientation","type":"combo","options":["parallel","diagonal","perpendicular"],"stringsCrossReference":"{parking/side/orientation}","autoSuggestions":false},"operator/type":{"key":"operator:type","type":"combo","prerequisiteTag":{"key":"operator"}},"opening_hours/drive_through":{"key":"opening_hours:drive_through","type":"combo","prerequisiteTag":{"key":"drive_through","value":"yes"},"snake_case":false,"caseSensitive":true},"oneway/bicycle":{"key":"oneway:bicycle","type":"check","prerequisiteTag":{"key":"oneway"}},"not/name":{"key":"not:name","type":"semiCombo","snake_case":false,"caseSensitive":true},"network/type":{"key":"network:type","type":"combo","prerequisiteTag":{"key":"network"}},"mtb/scale":{"key":"mtb:scale","type":"combo","autoSuggestions":false,"customValues":false,"options":["0","1","2","3","4","5","6"]},"mtb/scale/uphill":{"key":"mtb:scale:uphill","type":"combo","autoSuggestions":false,"customValues":false,"options":["0","1","2","3","4","5"]},"mtb/scale/imba":{"key":"mtb:scale:imba","type":"combo","autoSuggestions":false,"customValues":false,"options":["0","1","2","3","4"]},"model/wikidata":{"key":"model:wikidata","keys":["model:wikidata","model:wikipedia"],"type":"wikidata"},"memorial/addr_subtags":{"type":"address","key":"memorial:addr","keys":["memorial:addr:city","memorial:addr:housename","memorial:addr:housenumber","memorial:addr:place","memorial:addr:postcode","memorial:addr:street"],"label":"{memorial/addr}","prerequisiteTag":{"key":"memorial:addr:street"}},"memorial/addr":{"type":"text","key":"memorial:addr","prerequisiteTag":{"keyNot":"memorial:addr:street"}},"maxwidth/physical":{"key":"maxwidth:physical","type":"roadheight","snake_case":false},"maxspeed/hgv":{"key":"maxspeed:hgv","type":"roadspeed"},"maxspeed/advisory":{"key":"maxspeed:advisory","type":"roadspeed"},"manufacturer/wikidata":{"key":"manufacturer:wikidata","keys":["manufacturer:wikidata","manufacturer:wikipedia"],"type":"wikidata"},"lift_gate/type":{"key":"lift_gate:type","type":"combo","reference":{"key":"barrier","value":"lift_gate"},"options":["single","double"]},"kerb/kerb_barrier":{"key":"kerb","type":"combo","stringsCrossReference":"{kerb}","options":["flush","lowered","raised","rolled"],"autoSuggestions":false,"iconsCrossReference":"{kerb}"},"kerb/height":{"key":"kerb:height","type":"combo","snake_case":false},"junction/ref_oneway":{"key":"junction:ref","type":"text","prerequisiteTag":{"key":"oneway","value":"yes"}},"internet_access/ssid":{"key":"internet_access:ssid","type":"text","prerequisiteTag":{"key":"internet_access","valueNot":"no"}},"internet_access/fee":{"key":"internet_access:fee","type":"combo","autoSuggestions":false,"customValues":false,"prerequisiteTag":{"key":"internet_access","valueNot":"no"},"options":["no","yes","customers"]},"holding_position/type":{"key":"holding_position:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["runway","intermediate","ILS"]},"historic/civilization":{"key":"historic:civilization","type":"combo"},"historic/wreck/visible_at_low_tide":{"key":"wreck:visible_at_low_tide","type":"check"},"historic/wreck/visible_at_high_tide":{"key":"wreck:visible_at_high_tide","type":"check"},"historic/wreck/date_sunk":{"key":"wreck:date_sunk","type":"date"},"height/hub":{"key":"height:hub","minValue":0,"type":"number"},"healthcare/speciality":{"key":"healthcare:speciality","type":"semiCombo","options":["abortion","acupuncture","allergology","anaesthetics","angiology","anthroposophical","applied_kinesiology","aromatherapy","ayurveda","behavior","biochemistry","biology","blood_check","body","cardiology","cardiothoracic_surgery","child_psychiatry","chiropractic","clinical_pathology","community","depth","dermatology","dermatovenereology","diabetology","diagnostic_radiology","emergency","endocrinology","fertility","gastroenterology","general","geriatrics","gynaecology","haematology","hepatology","herbalism","homeopathy","humanistic","hydrotherapy","hypnosis","infectious_diseases","intensive","internal","dental_oral_maxillo_facial_surgery","naturopathy","neonatology","nephrology","neurology","neuropsychiatry","neurosurgery","nuclear","occupational","oncology","ophthalmology","orthodontics","orthopaedics","osteopathy","otolaryngology","paediatric_surgery","paediatrics","palliative","pathology","physiatry","plastic_surgery","podiatry","proctology","psychiatry","pulmonology","radiology","radiotherapy","reflexology","reiki","rheumatology","shiatsu","stomatology","surgery","systemic","traditional_chinese_medicine","transplant","trauma","tropical","tuina","unani","urology","vaccination","vascular_surgery"]},"gnis/feature_id-US":{"key":"gnis:feature_id","type":"identifier","urlFormat":"https://edits.nationalmap.gov/apps/gaz-domestic/public/summary/{value}","pattern":"^[1-9][0-9]*$","locationSet":{"include":["us"]}},"geyser/height":{"key":"geyser:height","type":"text"},"generator/type":{"key":"generator:type","type":"combo"},"generator/source":{"key":"generator:source","type":"combo","options":["nuclear","wind","hydro","tidal","wave","geothermal","solar","coal","gas","biomass","biofuel","biogas","oil","diesel","gasoline","waste","battery"]},"generator/method":{"key":"generator:method","type":"combo","autoSuggestions":false,"options":["fission","fusion","wind_turbine","water-storage","water-pumped-storage","run-of-the-river","barrage","stream","thermal","photovoltaic","combustion","gasification","anaerobic_digestion"]},"generator/output/electricity":{"key":"generator:output:electricity","type":"typeCombo","snake_case":false,"caseSensitive":true},"generator/method/hydro":{"key":"generator:method","type":"combo","label":"{generator/method}","stringsCrossReference":"{generator/method}","options":["water-storage","water-pumped-storage","run-of-the-river"],"autoSuggestions":false,"prerequisiteTag":{"key":"generator:source","value":"hydro"}},"garden/type":{"key":"garden:type","type":"combo"},"fuel/fuel_multi":{"key":"fuel:","type":"multiCombo","autoSuggestions":true,"caseSensitive":true,"locationSet":{"exclude":["RU"]},"options":["diesel","GTL_diesel","HGV_diesel","biodiesel","octane_80","octane_85","octane_87","octane_88","octane_89","octane_90","octane_91","octane_92","octane_93","octane_95","octane_97","octane_98","octane_100","e5","e10","e85","lpg","lng","cng","propane","LH2","h70","adblue","adblue:canister"]},"fuel/fuel_multi-RU":{"key":"fuel:","type":"multiCombo","label":"{fuel/fuel_multi}","stringsCrossReference":"{fuel/fuel_multi}","options":["diesel","octane_80","octane_92","octane_95","octane_98","octane_100","lpg","cng"],"autoSuggestions":false,"locationSet":{"include":["RU"]}},"flag/wikidata":{"key":"flag:wikidata","keys":["flag:wikidata","flag:wikipedia"],"type":"wikidata"},"flag/type":{"key":"flag:type","type":"combo"},"flag/name":{"key":"flag:name","type":"text"},"fire_hydrant/type":{"key":"fire_hydrant:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["pillar","underground","wall","pipe"]},"fire_hydrant/pressure":{"key":"fire_hydrant:pressure","type":"combo","snake_case":false,"caseSensitive":true},"fire_hydrant/position":{"key":"fire_hydrant:position","type":"combo","autoSuggestions":false,"customValues":false,"options":["green","lane","sidewalk","parking_lot"]},"fire_hydrant/diameter":{"key":"fire_hydrant:diameter","type":"combo","snake_case":false},"fhrs/id-GB":{"key":"fhrs:id","type":"identifier","urlFormat":"https://ratings.food.gov.uk/business/en-GB/{value}","pattern":"^[0-9]{1,}$","locationSet":{"include":["gb"]}},"door/width":{"key":"door:width","minValue":0,"type":"number"},"door/height":{"key":"door:height","minValue":0,"type":"number"},"dock/width":{"key":"dock:width","minValue":0,"type":"number"},"dock/height":{"key":"dock:height","minValue":0,"type":"number"},"disused/shop":{"key":"disused:shop","type":"typeCombo"},"disused/railway":{"key":"disused:railway","type":"typeCombo"},"disused/amenity":{"key":"disused:amenity","type":"typeCombo"},"diplomatic/services":{"key":"diplomatic:services:","type":"multiCombo"},"destination/symbol_oneway":{"key":"destination:symbol","type":"semiCombo","label":"{destination/symbol}","prerequisiteTag":{"key":"oneway","value":"yes"}},"destination/symbol":{"key":"destination:symbol","type":"semiCombo"},"destination/ref_oneway":{"key":"destination:ref","type":"semiCombo","label":"{destination/ref}","prerequisiteTag":{"key":"oneway","value":"yes"},"snake_case":false,"caseSensitive":true},"destination/ref":{"key":"destination:ref","type":"semiCombo","snake_case":false,"caseSensitive":true},"deposit/trolley":{"key":"trolley:deposit","type":"check"},"defibrillator/location":{"key":"defibrillator:location","type":"textarea"},"dance/teaching":{"key":"dance:teaching","type":"check"},"dance/style":{"key":"dance:style","type":"semiCombo"},"cycle_barrier/installation":{"key":"cycle_barrier:installation","type":"combo","customValues":false,"autoSuggestions":false,"options":["fixed","openable","removable"]},"crossing/markings_yes":{"key":"crossing:markings","type":"combo","label":"{crossing/markings}","default":"yes","stringsCrossReference":"{crossing/markings}","iconsCrossReference":"{crossing/markings}","locationSet":{"exclude":["BG","DE","AT","CH","PL"]}},"crossing/markings_yes-PL":{"key":"crossing:markings","type":"combo","label":"{crossing/markings}","autoSuggestions":false,"default":"yes","stringsCrossReference":"{crossing/markings}","iconsCrossReference":"{crossing/markings}","options":["zebra","dots","surface","yes","no"],"locationSet":{"include":["PL"]}},"crossing/markings_yes-DE-AT-CH":{"key":"crossing:markings","type":"combo","label":"{crossing/markings}","autoSuggestions":false,"default":"yes","stringsCrossReference":"{crossing/markings}","iconsCrossReference":"{crossing/markings}","options":["zebra","yes","no","dots","dashes","surface"],"locationSet":{"include":["DE","AT","CH"]}},"crossing/markings_yes-BG":{"key":"crossing:markings","type":"combo","label":"{crossing/markings}","autoSuggestions":false,"default":"yes","stringsCrossReference":"{crossing/markings}","iconsCrossReference":"{crossing/markings}","options":["zebra","no","dots","dashes","yes"],"locationSet":{"include":["BG"]}},"crossing/markings":{"key":"crossing:markings","type":"combo","icons":{"zebra":"iD-crossing_markings-zebra","lines":"iD-crossing_markings-lines","ladder":"iD-crossing_markings-ladder","dots":"iD-crossing_markings-dots","dashes":"iD-crossing_markings-dashes","surface":"iD-crossing_markings-surface","ladder:skewed":"iD-crossing_markings-ladder_skewed","lines:paired":"iD-crossing_markings-lines_paired","zebra:double":"iD-crossing_markings-zebra_double","zebra:paired":"iD-crossing_markings-zebra_paired","zebra:bicolour":"iD-crossing_markings-zebra_bicolour","ladder:paired":"iD-crossing_markings-ladder_paired"},"locationSet":{"exclude":["BG","DE","AT","CH","PL"]},"options":["zebra","lines","no","ladder","dots","dashes","yes","surface","ladder:skewed","pictograms","lines:paired","zebra:double","zebra:paired","zebra:bicolour","ladder:paired"]},"crossing/markings-PL":{"key":"crossing:markings","type":"combo","label":"{crossing/markings}","autoSuggestions":false,"stringsCrossReference":"{crossing/markings}","iconsCrossReference":"{crossing/markings}","options":["zebra","dots","surface","yes","no"],"locationSet":{"include":["PL"]}},"crossing/markings-DE-AT-CH":{"key":"crossing:markings","type":"combo","label":"{crossing/markings}","autoSuggestions":false,"stringsCrossReference":"{crossing/markings}","iconsCrossReference":"{crossing/markings}","options":["zebra","yes","no","dots","dashes","surface"],"locationSet":{"include":["DE","AT","CH"]}},"crossing/markings-BG":{"key":"crossing:markings","type":"combo","label":"{crossing/markings}","autoSuggestions":false,"stringsCrossReference":"{crossing/markings}","iconsCrossReference":"{crossing/markings}","options":["zebra","no","dots","dashes","yes"],"locationSet":{"include":["BG"]}},"crossing/light":{"key":"crossing:light","type":"check"},"crossing/island":{"key":"crossing:island","type":"check"},"crossing/bell":{"key":"crossing:bell","type":"check"},"crossing/barrier":{"key":"crossing:barrier","type":"combo","autoSuggestions":false,"customValues":false,"options":["full","double_half","half","no","yes"]},"crane/type":{"key":"crane:type","type":"combo","icons":{"portal_crane":"roentgen-crane_portal","gantry_crane":"roentgen-crane_gantry","tower_crane":"roentgen-crane","travel_lift":"roentgen-crane_travel_lift"},"autoSuggestions":false,"customValues":false,"options":["portal_crane","floor-mounted_crane","travel_lift","gantry_crane","tower_crane"]},"contact/webcam":{"key":"contact:webcam","type":"url"},"contact/facebook":{"key":"contact:facebook","type":"url"},"climbing/trad":{"key":"climbing:trad","type":"check"},"climbing/sport":{"key":"climbing:sport","type":"check"},"climbing/length":{"key":"climbing:length","type":"number","minValue":0},"climbing/bolts":{"key":"climbing:bolts","type":"number","minValue":0,"prerequisiteTag":{"key":"climbing:sport","value":"yes"}},"climbing/grade/yds_class":{"key":"climbing:grade:yds_class","type":"combo","caseSensitive":false,"customValues":true,"autoSuggestions":false,"options":["5","5.1","5.2","5.3","5.4","5.5","5.6","5.7","5.8","5.9","5.10a","5.10b","5.10c","5.10d","5.11a","5.11b","5.11c","5.11d","5.12a","5.12b","5.12c","5.12d","5.13a","5.13b","5.13c","5.13d","5.14a","5.14b","5.14c","5.14d","5.15a","5.15b","5.15c","5.15d"]},"climbing/grade/uiaa":{"key":"climbing:grade:uiaa","type":"combo","caseSensitive":false,"customValues":true,"autoSuggestions":false,"options":["1-","1","1+","2-","2","2+","3-","3","3+","4-","4","4+","5-","5","5+","6-","6","6+","7-","7","7+","8-","8","8+","9-","9","9+","10-","10","10+","11-","11","11+","12-","12","12+","13-","13","13+","14-"]},"climbing/grade/saxon":{"key":"climbing:grade:saxon","type":"combo","caseSensitive":true,"customValues":true,"autoSuggestions":false,"options":["I","II","III","IV","V","VI","VIIa","VIIb","VII","VIIc","VIIIa","VIIIb","VIIIc","IXa","IXb","IXc","Xa","Xb","Xc","XIa","XIb","XIc","XIIa","XIIb","XIIc","XIIIa","XIIIb","XIIIc"]},"climbing/grade/french":{"key":"climbing:grade:french","type":"combo","caseSensitive":false,"customValues":true,"autoSuggestions":false,"options":["1","2","3-","3","3+","4a","4b","4c","5a","5b","5c","5c+","6a","6a+","6b","6b+","6c","6c+","7a","7a+","7b","7b+","7c","7c+","8a","8a+","8b","8b+","8c","8c+","9a","9a+","9b","9b+","9c","9c+","10a"]},"capacity/tents":{"key":"capacity:tents","type":"number","minValue":0,"prerequisiteTag":{"key":"tents","valueNot":"no"}},"capacity/persons":{"key":"capacity:persons","type":"number","minValue":0},"capacity/disabled_parking":{"key":"capacity:disabled","type":"number","minValue":0},"capacity/caravans":{"key":"capacity:caravans","type":"number","minValue":0,"prerequisiteTag":{"key":"caravans","valueNot":"no"}},"camera/type":{"key":"camera:type","type":"combo","autoSuggestions":false,"customValues":false,"options":["fixed","panning","dome"]},"camera/mount":{"key":"camera:mount","type":"combo"},"camera/direction":{"key":"camera:direction","type":"number","increment":5},"building/prefabricated":{"key":"building:prefabricated","type":"check"},"building/part":{"key":"building:part","type":"combo","default":"yes"},"building/material":{"key":"building:material","type":"combo"},"building/levels_building":{"key":"building:levels","type":"number","minValue":0,"label":"{building/levels}","placeholder":"{building/levels}","prerequisiteTag":{"key":"building","valueNot":"no"}},"building/levels":{"key":"building:levels","type":"number","minValue":0},"building/flats":{"key":"building:flats","type":"number","minValue":0},"building/colour":{"key":"building:colour","type":"colour"},"building/levels/underground":{"key":"building:levels:underground","type":"number","minValue":0},"bridge/support":{"key":"bridge:support","type":"typeCombo"},"bridge/ref":{"key":"bridge:ref","type":"text","reference":{"key":"bridge"},"prerequisiteTag":{"key":"bridge","valueNot":"no"}},"bath/type":{"key":"bath:type","type":"combo","options":["hammam","hot_spring","lake","onsen","thermal"]},"bath/sand_bath-JP":{"key":"bath:sand_bath","type":"check","locationSet":{"include":["JP"]}},"bath/open_air":{"key":"bath:open_air","type":"check"},"area/highway":{"key":"area:highway","type":"typeCombo"},"aircraft/type":{"key":"aircraft:type","type":"semiCombo","options":["military","helicopter","airliner","jet","fixed_wing","cargo","glider"]},"aerialway/occupancy":{"key":"aerialway:occupancy","type":"number","minValue":0},"aerialway/heating":{"key":"aerialway:heating","type":"check"},"aerialway/duration":{"key":"aerialway:duration","type":"number","minValue":0},"aerialway/capacity":{"key":"aerialway:capacity","type":"number","minValue":0},"aerialway/bubble":{"key":"aerialway:bubble","type":"check"},"aerialway/access":{"key":"aerialway:access","type":"combo","autoSuggestions":false,"customValues":false,"options":["entry","exit","both"]},"aerialway/summer/access":{"key":"aerialway:summer:access","type":"combo","autoSuggestions":false,"customValues":false,"options":["entry","exit","both"]},"addr/interpolation":{"key":"addr:interpolation","type":"combo","autoSuggestions":false,"customValues":false,"options":["all","even","odd","alphabetic"]}}
\ No newline at end of file
diff --git a/dist/preset_categories.json b/dist/preset_categories.json
index 63b5ca12..e01f4eb6 100644
--- a/dist/preset_categories.json
+++ b/dist/preset_categories.json
@@ -1,66 +1,157 @@
{
- "category-barrier": {
- "icon": "maki-roadblock",
+ "category-waterway": {
+ "icon": "iD-waterway-stream",
"members": [
- "barrier/fence",
- "barrier/guard_rail",
- "barrier/wall",
- "barrier/retaining_wall",
- "barrier/kerb",
- "barrier/gate",
- "barrier/lift_gate",
- "barrier/bollard",
- "barrier/cycle_barrier",
- "barrier/stile",
- "barrier/hedge",
- "barrier/ditch",
- "barrier"
+ "waterway/stream",
+ "waterway/drain",
+ "waterway/river",
+ "waterway/canal",
+ "waterway/ditch",
+ "natural/water/stream",
+ "natural/water/river",
+ "natural/water/canal"
]
},
- "category-building": {
- "icon": "maki-building",
+ "category-water": {
+ "icon": "maki-water",
"members": [
- "building",
- "building/house",
- "building/apartments",
- "building/garage",
- "building/retail",
- "building/commercial",
- "building/industrial",
- "building/residential"
+ "natural/water",
+ "natural/water/pond",
+ "natural/water/lake",
+ "natural/water/reservoir",
+ "natural/water/river",
+ "natural/water/basin"
]
},
- "category-golf": {
- "icon": "maki-golf",
+ "category-utility": {
+ "icon": "iD-power-line",
"members": [
- "golf/fairway",
- "golf/green",
- "golf/lateral_water_hazard",
- "golf/rough",
- "golf/bunker",
- "golf/tee",
- "golf/water_hazard",
- "golf/driving_range",
- "golf/hole",
- "golf/cartpath",
- "golf/path"
+ "power/line",
+ "power/minor_line",
+ "man_made/pipeline",
+ "power/cable",
+ "power/generator",
+ "power/plant",
+ "power/switch",
+ "power/transformer"
]
},
- "category-landuse": {
- "icon": "maki-landuse",
+ "category-route": {
+ "icon": "iD-route",
"members": [
- "landuse/residential",
- "landuse/industrial",
- "landuse/commercial",
- "landuse/retail",
- "landuse/farmland",
- "landuse/farmyard",
- "landuse/forest",
- "landuse/meadow",
- "landuse/aquaculture",
- "landuse/cemetery",
- "landuse/military",
- "landuse/religious"
+ "type/route/road",
+ "type/route/bicycle",
+ "type/route/foot",
+ "type/route/hiking",
+ "type/route/horse",
+ "type/route/piste",
+ "type/route/bus",
+ "type/route/train",
+ "type/route/light_rail",
+ "type/route/tram",
+ "type/route/subway",
+ "type/route/railway",
+ "type/route/trolleybus",
+ "type/route/ferry",
+ "type/route/power",
+ "type/route/pipeline",
+ "type/route/detour",
+ "type/route_master",
+ "type/route/climbing",
+ "type/route"
+ ]
+ },
+ "category-road_service": {
+ "icon": "iD-highway-service",
+ "members": [
+ "highway/service",
+ "highway/service/parking_aisle",
+ "highway/service/driveway",
+ "highway/service/alley",
+ "highway/service/emergency_access",
+ "highway/service/drive-through"
+ ]
+ },
+ "category-road_minor": {
+ "icon": "iD-highway-unclassified",
+ "members": [
+ "highway/unclassified",
+ "highway/residential",
+ "highway/living_street",
+ "highway/service",
+ "highway/track"
+ ]
+ },
+ "category-road_major": {
+ "icon": "iD-highway-unclassified",
+ "members": [
+ "highway/motorway",
+ "highway/trunk",
+ "highway/primary",
+ "highway/secondary",
+ "highway/tertiary",
+ "highway/motorway_link",
+ "highway/trunk_link",
+ "highway/primary_link",
+ "highway/secondary_link",
+ "highway/tertiary_link"
+ ]
+ },
+ "category-restriction": {
+ "icon": "iD-restriction",
+ "members": [
+ "type/restriction/no_left_turn",
+ "type/restriction/no_right_turn",
+ "type/restriction/no_straight_on",
+ "type/restriction/no_u_turn",
+ "type/restriction/only_left_turn",
+ "type/restriction/only_right_turn",
+ "type/restriction/only_straight_on",
+ "type/restriction/only_u_turn",
+ "type/restriction"
+ ]
+ },
+ "category-rail": {
+ "icon": "temaki-railway_track",
+ "members": [
+ "railway/rail",
+ "railway/disused",
+ "railway/tram",
+ "railway/subway",
+ "railway/narrow_gauge",
+ "railway/light_rail",
+ "railway/monorail",
+ "railway/funicular"
+ ]
+ },
+ "category-playground": {
+ "icon": "temaki-play_structure",
+ "members": [
+ "playground/swing",
+ "playground/structure",
+ "playground/slide",
+ "playground/sandpit",
+ "playground/springy",
+ "playground/climbingframe",
+ "playground/seesaw",
+ "playground/roundabout",
+ "playground/zipwire",
+ "playground/basketswing",
+ "playground/playhouse"
+ ]
+ },
+ "category-path": {
+ "icon": "temaki-pedestrian",
+ "members": [
+ "highway/path",
+ "highway/footway",
+ "highway/footway/crossing/uncontrolled",
+ "highway/footway/sidewalk",
+ "highway/path/informal",
+ "highway/steps",
+ "highway/cycleway",
+ "highway/bridleway",
+ "highway/pedestrian_line"
]
},
"category-natural": {
@@ -82,155 +173,79 @@
"natural/cliff"
]
},
- "category-path": {
- "icon": "temaki-pedestrian",
+ "category-landuse": {
+ "icon": "maki-landuse",
"members": [
- "highway/path",
- "highway/footway",
- "highway/footway/crossing/uncontrolled",
- "highway/footway/sidewalk",
- "highway/steps",
- "highway/cycleway",
- "highway/bridleway",
- "highway/pedestrian_line"
+ "landuse/residential",
+ "landuse/industrial",
+ "landuse/commercial",
+ "landuse/retail",
+ "landuse/farmland",
+ "landuse/farmyard",
+ "landuse/forest",
+ "landuse/meadow",
+ "landuse/aquaculture",
+ "landuse/cemetery",
+ "landuse/military",
+ "landuse/religious"
]
},
- "category-playground": {
- "icon": "temaki-play_structure",
+ "category-golf": {
+ "icon": "maki-golf",
"members": [
- "playground/swing",
- "playground/structure",
- "playground/slide",
- "playground/sandpit",
- "playground/springy",
- "playground/climbingframe",
- "playground/seesaw",
- "playground/roundabout",
- "playground/zipwire",
- "playground/basketswing",
- "playground/playhouse"
+ "golf/fairway",
+ "golf/green",
+ "golf/lateral_water_hazard",
+ "golf/rough",
+ "golf/bunker",
+ "golf/tee",
+ "golf/water_hazard",
+ "golf/driving_range",
+ "golf/hole",
+ "golf/cartpath",
+ "golf/path"
]
},
- "category-rail": {
- "icon": "temaki-railway_track",
+ "category-climbing": {
+ "icon": "temaki-climbing",
"members": [
- "railway/rail",
- "railway/disused",
- "railway/tram",
- "railway/subway",
- "railway/narrow_gauge",
- "railway/light_rail",
- "railway/monorail",
- "railway/funicular"
+ "climbing/route",
+ "climbing/route_bottom",
+ "climbing/crag",
+ "type/route/climbing",
+ "type/site/climbing/crag",
+ "type/site/climbing/area"
]
},
- "category-restriction": {
- "icon": "iD-restriction",
+ "category-building": {
+ "icon": "maki-building",
"members": [
- "type/restriction/no_left_turn",
- "type/restriction/no_right_turn",
- "type/restriction/no_straight_on",
- "type/restriction/no_u_turn",
- "type/restriction/only_left_turn",
- "type/restriction/only_right_turn",
- "type/restriction/only_straight_on",
- "type/restriction/only_u_turn",
- "type/restriction"
+ "building",
+ "building/house",
+ "building/apartments",
+ "building/garage",
+ "building/retail",
+ "building/commercial",
+ "building/industrial",
+ "building/residential"
]
},
- "category-road_major": {
- "icon": "iD-highway-unclassified",
+ "category-barrier": {
+ "icon": "maki-roadblock",
"members": [
- "highway/motorway",
- "highway/trunk",
- "highway/primary",
- "highway/secondary",
- "highway/tertiary",
- "highway/motorway_link",
- "highway/trunk_link",
- "highway/primary_link",
- "highway/secondary_link",
- "highway/tertiary_link"
- ]
- },
- "category-road_minor": {
- "icon": "iD-highway-unclassified",
- "members": [
- "highway/unclassified",
- "highway/residential",
- "highway/living_street",
- "highway/service",
- "highway/track"
- ]
- },
- "category-road_service": {
- "icon": "iD-highway-service",
- "members": [
- "highway/service",
- "highway/service/parking_aisle",
- "highway/service/driveway",
- "highway/service/alley",
- "highway/service/emergency_access",
- "highway/service/drive-through"
- ]
- },
- "category-route": {
- "icon": "iD-route",
- "members": [
- "type/route/road",
- "type/route/bicycle",
- "type/route/foot",
- "type/route/hiking",
- "type/route/horse",
- "type/route/piste",
- "type/route/bus",
- "type/route/train",
- "type/route/light_rail",
- "type/route/tram",
- "type/route/subway",
- "type/route/trolleybus",
- "type/route/ferry",
- "type/route/power",
- "type/route/pipeline",
- "type/route/detour",
- "type/route_master",
- "type/route"
- ]
- },
- "category-utility": {
- "icon": "iD-power-line",
- "members": [
- "power/line",
- "power/minor_line",
- "man_made/pipeline",
- "power/cable",
- "power/generator",
- "power/plant",
- "power/switch",
- "power/transformer"
- ]
- },
- "category-water": {
- "icon": "maki-water",
- "members": [
- "natural/water",
- "natural/water/pond",
- "natural/water/basin",
- "natural/water/lake",
- "natural/water/reservoir"
- ]
- },
- "category-waterway": {
- "icon": "iD-waterway-stream",
- "members": [
- "waterway/stream",
- "waterway/drain",
- "waterway/river",
- "waterway/canal",
- "waterway/ditch",
- "natural/water/stream",
- "natural/water/river",
- "natural/water/canal"
+ "barrier/fence",
+ "barrier/guard_rail",
+ "barrier/wall",
+ "barrier/retaining_wall",
+ "barrier/kerb",
+ "barrier/gate",
+ "barrier/lift_gate",
+ "barrier/bollard",
+ "barrier/cycle_barrier",
+ "barrier/stile",
+ "barrier/hedge",
+ "barrier/ditch",
+ "barrier"
]
}
}
\ No newline at end of file
diff --git a/dist/preset_categories.min.json b/dist/preset_categories.min.json
index df6b0ecf..43a43c93 100644
--- a/dist/preset_categories.min.json
+++ b/dist/preset_categories.min.json
@@ -1 +1 @@
-{"category-barrier":{"icon":"maki-roadblock","members":["barrier/fence","barrier/guard_rail","barrier/wall","barrier/retaining_wall","barrier/kerb","barrier/gate","barrier/lift_gate","barrier/bollard","barrier/cycle_barrier","barrier/stile","barrier/hedge","barrier/ditch","barrier"]},"category-building":{"icon":"maki-building","members":["building","building/house","building/apartments","building/garage","building/retail","building/commercial","building/industrial","building/residential"]},"category-golf":{"icon":"maki-golf","members":["golf/fairway","golf/green","golf/lateral_water_hazard","golf/rough","golf/bunker","golf/tee","golf/water_hazard","golf/driving_range","golf/hole","golf/cartpath","golf/path"]},"category-landuse":{"icon":"maki-landuse","members":["landuse/residential","landuse/industrial","landuse/commercial","landuse/retail","landuse/farmland","landuse/farmyard","landuse/forest","landuse/meadow","landuse/aquaculture","landuse/cemetery","landuse/military","landuse/religious"]},"category-natural":{"icon":"maki-natural","members":["natural/water","natural/wood","natural/scrub","natural/wetland","natural/grassland","natural/heath","natural/bare_rock","natural/beach","natural/cave_entrance","natural/glacier","natural/coastline","natural/tree_row","natural/peak","natural/cliff"]},"category-path":{"icon":"temaki-pedestrian","members":["highway/path","highway/footway","highway/footway/crossing/uncontrolled","highway/footway/sidewalk","highway/steps","highway/cycleway","highway/bridleway","highway/pedestrian_line"]},"category-playground":{"icon":"temaki-play_structure","members":["playground/swing","playground/structure","playground/slide","playground/sandpit","playground/springy","playground/climbingframe","playground/seesaw","playground/roundabout","playground/zipwire","playground/basketswing","playground/playhouse"]},"category-rail":{"icon":"temaki-railway_track","members":["railway/rail","railway/disused","railway/tram","railway/subway","railway/narrow_gauge","railway/light_rail","railway/monorail","railway/funicular"]},"category-restriction":{"icon":"iD-restriction","members":["type/restriction/no_left_turn","type/restriction/no_right_turn","type/restriction/no_straight_on","type/restriction/no_u_turn","type/restriction/only_left_turn","type/restriction/only_right_turn","type/restriction/only_straight_on","type/restriction/only_u_turn","type/restriction"]},"category-road_major":{"icon":"iD-highway-unclassified","members":["highway/motorway","highway/trunk","highway/primary","highway/secondary","highway/tertiary","highway/motorway_link","highway/trunk_link","highway/primary_link","highway/secondary_link","highway/tertiary_link"]},"category-road_minor":{"icon":"iD-highway-unclassified","members":["highway/unclassified","highway/residential","highway/living_street","highway/service","highway/track"]},"category-road_service":{"icon":"iD-highway-service","members":["highway/service","highway/service/parking_aisle","highway/service/driveway","highway/service/alley","highway/service/emergency_access","highway/service/drive-through"]},"category-route":{"icon":"iD-route","members":["type/route/road","type/route/bicycle","type/route/foot","type/route/hiking","type/route/horse","type/route/piste","type/route/bus","type/route/train","type/route/light_rail","type/route/tram","type/route/subway","type/route/trolleybus","type/route/ferry","type/route/power","type/route/pipeline","type/route/detour","type/route_master","type/route"]},"category-utility":{"icon":"iD-power-line","members":["power/line","power/minor_line","man_made/pipeline","power/cable","power/generator","power/plant","power/switch","power/transformer"]},"category-water":{"icon":"maki-water","members":["natural/water","natural/water/pond","natural/water/basin","natural/water/lake","natural/water/reservoir"]},"category-waterway":{"icon":"iD-waterway-stream","members":["waterway/stream","waterway/drain","waterway/river","waterway/canal","waterway/ditch","natural/water/stream","natural/water/river","natural/water/canal"]}}
\ No newline at end of file
+{"category-waterway":{"icon":"iD-waterway-stream","members":["waterway/stream","waterway/drain","waterway/river","waterway/canal","waterway/ditch","natural/water/stream","natural/water/river","natural/water/canal"]},"category-water":{"icon":"maki-water","members":["natural/water","natural/water/pond","natural/water/lake","natural/water/reservoir","natural/water/river","natural/water/basin"]},"category-utility":{"icon":"iD-power-line","members":["power/line","power/minor_line","man_made/pipeline","power/cable","power/generator","power/plant","power/switch","power/transformer"]},"category-route":{"icon":"iD-route","members":["type/route/road","type/route/bicycle","type/route/foot","type/route/hiking","type/route/horse","type/route/piste","type/route/bus","type/route/train","type/route/light_rail","type/route/tram","type/route/subway","type/route/railway","type/route/trolleybus","type/route/ferry","type/route/power","type/route/pipeline","type/route/detour","type/route_master","type/route/climbing","type/route"]},"category-road_service":{"icon":"iD-highway-service","members":["highway/service","highway/service/parking_aisle","highway/service/driveway","highway/service/alley","highway/service/emergency_access","highway/service/drive-through"]},"category-road_minor":{"icon":"iD-highway-unclassified","members":["highway/unclassified","highway/residential","highway/living_street","highway/service","highway/track"]},"category-road_major":{"icon":"iD-highway-unclassified","members":["highway/motorway","highway/trunk","highway/primary","highway/secondary","highway/tertiary","highway/motorway_link","highway/trunk_link","highway/primary_link","highway/secondary_link","highway/tertiary_link"]},"category-restriction":{"icon":"iD-restriction","members":["type/restriction/no_left_turn","type/restriction/no_right_turn","type/restriction/no_straight_on","type/restriction/no_u_turn","type/restriction/only_left_turn","type/restriction/only_right_turn","type/restriction/only_straight_on","type/restriction/only_u_turn","type/restriction"]},"category-rail":{"icon":"temaki-railway_track","members":["railway/rail","railway/disused","railway/tram","railway/subway","railway/narrow_gauge","railway/light_rail","railway/monorail","railway/funicular"]},"category-playground":{"icon":"temaki-play_structure","members":["playground/swing","playground/structure","playground/slide","playground/sandpit","playground/springy","playground/climbingframe","playground/seesaw","playground/roundabout","playground/zipwire","playground/basketswing","playground/playhouse"]},"category-path":{"icon":"temaki-pedestrian","members":["highway/path","highway/footway","highway/footway/crossing/uncontrolled","highway/footway/sidewalk","highway/path/informal","highway/steps","highway/cycleway","highway/bridleway","highway/pedestrian_line"]},"category-natural":{"icon":"maki-natural","members":["natural/water","natural/wood","natural/scrub","natural/wetland","natural/grassland","natural/heath","natural/bare_rock","natural/beach","natural/cave_entrance","natural/glacier","natural/coastline","natural/tree_row","natural/peak","natural/cliff"]},"category-landuse":{"icon":"maki-landuse","members":["landuse/residential","landuse/industrial","landuse/commercial","landuse/retail","landuse/farmland","landuse/farmyard","landuse/forest","landuse/meadow","landuse/aquaculture","landuse/cemetery","landuse/military","landuse/religious"]},"category-golf":{"icon":"maki-golf","members":["golf/fairway","golf/green","golf/lateral_water_hazard","golf/rough","golf/bunker","golf/tee","golf/water_hazard","golf/driving_range","golf/hole","golf/cartpath","golf/path"]},"category-climbing":{"icon":"temaki-climbing","members":["climbing/route","climbing/route_bottom","climbing/crag","type/route/climbing","type/site/climbing/crag","type/site/climbing/area"]},"category-building":{"icon":"maki-building","members":["building","building/house","building/apartments","building/garage","building/retail","building/commercial","building/industrial","building/residential"]},"category-barrier":{"icon":"maki-roadblock","members":["barrier/fence","barrier/guard_rail","barrier/wall","barrier/retaining_wall","barrier/kerb","barrier/gate","barrier/lift_gate","barrier/bollard","barrier/cycle_barrier","barrier/stile","barrier/hedge","barrier/ditch","barrier"]}}
\ No newline at end of file
diff --git a/dist/presets.json b/dist/presets.json
index 842b43fd..707288bd 100644
--- a/dist/presets.json
+++ b/dist/presets.json
@@ -1,237 +1,211 @@
{
- "aerialway": {
+ "traffic_sign": {
+ "icon": "fas-directions",
+ "fields": [
+ "traffic_sign",
+ "traffic_sign/direction",
+ "direction_point"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "traffic_sign": "*"
+ }
+ },
+ "traffic_calming": {
+ "icon": "temaki-diamond",
+ "fields": [
+ "traffic_calming",
+ "surface",
+ "direction_vertex"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "*"
+ },
+ "matchScore": 0.4
+ },
+ "shop": {
+ "icon": "maki-shop",
"fields": [
"name",
- "aerialway"
- ],
- "moreFields": [
- "layer"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "aerialway": "*"
- },
- "searchable": false
- },
- "aeroway": {
- "icon": "maki-airport",
- "fields": [
- "aeroway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "aeroway": "*"
- },
- "searchable": false
- },
- "amenity": {
- "fields": [
- "amenity"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "amenity": "*"
- },
- "searchable": false
- },
- "attraction": {
- "icon": "maki-star",
- "fields": [
- "name",
- "attraction",
+ "shop",
"operator",
- "opening_hours",
- "fee",
- "charge_fee"
- ],
- "moreFields": [
"address",
- "email",
- "fax",
+ "building_area_yes",
"opening_hours",
- "opening_hours/covid19",
"payment_multi",
"phone"
],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "branch_brand",
+ "brand",
+ "building/levels_building",
+ "changing_table",
+ "currency_multi",
+ "ele",
+ "height_building",
+ "second_hand",
+ "stroller",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi"
+ ],
"geometry": [
"point",
- "vertex",
- "line",
"area"
],
"tags": {
- "attraction": "*"
+ "shop": "*"
},
- "searchable": false
+ "matchScore": 0.7
},
- "boundary": {
+ "relation": {
+ "icon": "iD-relation",
"fields": [
- "boundary"
+ "name",
+ "relation"
],
"geometry": [
- "line"
+ "relation"
],
- "tags": {
- "boundary": "*"
- },
- "searchable": false,
- "matchScore": 0.45
+ "tags": {}
},
- "building_point": {
- "icon": "maki-home",
+ "polling_station": {
+ "icon": "fas-vote-yea",
"fields": [
- "{building}"
+ "name",
+ "ref",
+ "operator",
+ "address",
+ "opening_hours",
+ "building_area",
+ "phone"
],
"moreFields": [
- "{building}"
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "air_conditioning",
+ "level",
+ "wheelchair"
],
"geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "polling_station": "*"
+ },
+ "matchScore": 0.75
+ },
+ "point": {
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "vertex",
"point"
],
- "tags": {
- "building": "*"
- },
- "matchScore": 0.6,
- "searchable": false
+ "tags": {},
+ "matchScore": 0.1
},
- "embankment": {
- "geometry": [
- "line"
- ],
- "tags": {
- "embankment": "yes"
- },
- "matchScore": 0.2,
- "searchable": false
- },
- "emergency": {
- "fields": [
- "emergency_combo"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "emergency": "*"
- },
- "searchable": false
- },
- "ford_line": {
- "geometry": [
- "line"
- ],
- "tags": {
- "ford": "*"
- },
- "searchable": false
- },
- "highway": {
+ "office": {
+ "icon": "maki-suitcase",
"fields": [
"name",
- "highway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "highway": "*"
- },
- "searchable": false
- },
- "indoor": {
- "icon": "temaki-room",
- "fields": [
- "level",
- "indoor_type"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "indoor": "*"
- },
- "matchScore": 0.8,
- "searchable": false
- },
- "landuse": {
- "fields": [
- "name",
- "landuse"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "*"
- },
- "matchScore": 0.9,
- "searchable": false
- },
- "leisure": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "leisure"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "leisure": "*"
- },
- "searchable": false
- },
- "man_made": {
- "icon": "temaki-storage_tank",
- "fields": [
- "name",
- "man_made"
+ "office",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "phone",
+ "website"
],
"moreFields": [
- "material"
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "air_conditioning",
+ "baby_feeding",
+ "building/levels_building",
+ "ele",
+ "gnis/feature_id-US",
+ "height_building",
+ "level",
+ "not/name",
+ "operator",
+ "ref/vatin",
+ "ref/FR/siret-FR",
+ "smoking",
+ "wheelchair"
],
"geometry": [
"point",
"vertex",
- "line",
"area"
],
"tags": {
- "man_made": "*"
+ "office": "*"
},
- "matchScore": 0.4,
- "searchable": false
+ "matchScore": 0.7
},
- "natural": {
- "icon": "maki-natural",
+ "marker": {
+ "icon": "temaki-silo",
"fields": [
- "name",
- "natural"
+ "ref",
+ "operator",
+ "marker",
+ "utility",
+ "colour",
+ "material",
+ "inscription"
+ ],
+ "moreFields": [
+ "height",
+ "location",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "marker": "*"
+ }
+ },
+ "line": {
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {},
+ "matchScore": 0.1
+ },
+ "junction": {
+ "icon": "temaki-junction",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "junction": "yes"
+ }
+ },
+ "historic": {
+ "icon": "temaki-ruins",
+ "fields": [
+ "historic",
+ "inscription"
],
"moreFields": [
"gnis/feature_id-US"
@@ -243,14 +217,334 @@
"area"
],
"tags": {
- "natural": "*"
+ "historic": "*"
+ },
+ "matchScore": 0.5
+ },
+ "healthcare": {
+ "icon": "maki-hospital",
+ "fields": [
+ "name",
+ "healthcare",
+ "operator",
+ "healthcare/speciality",
+ "address",
+ "building_area",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "branch_brand",
+ "brand",
+ "building/levels_building",
+ "gnis/feature_id-US",
+ "height_building",
+ "level",
+ "opening_hours",
+ "payment_multi",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "*"
+ },
+ "matchScore": 0.4
+ },
+ "ford": {
+ "icon": "roentgen-ford",
+ "fields": [
+ "name",
+ "depth",
+ "access",
+ "seasonal"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "ford": "yes"
+ }
+ },
+ "entrance": {
+ "icon": "maki-entrance-alt1",
+ "fields": [
+ "ref",
+ "entrance",
+ "door",
+ "access_simple",
+ "wheelchair",
+ "level",
+ "address"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "entrance": "*"
+ }
+ },
+ "education": {
+ "icon": "temaki-school",
+ "fields": [
+ "name",
+ "education",
+ "operator",
+ "address",
+ "building_area",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "branch_brand",
+ "brand",
+ "building/levels_building",
+ "gnis/feature_id-US",
+ "height_building",
+ "level",
+ "opening_hours",
+ "payment_multi",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "education": "*"
+ },
+ "matchScore": 0.7
+ },
+ "craft": {
+ "icon": "temaki-tools",
+ "fields": [
+ "name",
+ "craft",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "building/levels_building",
+ "height_building",
+ "product"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "*"
+ }
+ },
+ "club": {
+ "icon": "fas-handshake",
+ "fields": [
+ "name",
+ "club",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "access_simple",
+ "building/levels_building",
+ "height_building",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "club": "*"
+ }
+ },
+ "building_part": {
+ "icon": "maki-building",
+ "fields": [
+ "building/part",
+ "building/levels",
+ "height",
+ "building/material",
+ "building/colour",
+ "roof/colour",
+ "roof/height",
+ "roof/shape"
+ ],
+ "moreFields": [
+ "layer"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building:part": "*"
+ },
+ "matchScore": 0.5
+ },
+ "building": {
+ "icon": "maki-home",
+ "fields": [
+ "name",
+ "building",
+ "building/levels",
+ "height",
+ "address"
+ ],
+ "moreFields": [
+ "architect",
+ "building/colour",
+ "building/levels/underground",
+ "building/material",
+ "building/prefabricated",
+ "ele",
+ "gnis/feature_id-US",
+ "layer",
+ "not/name",
+ "operator",
+ "roof/colour",
+ "roof/shape",
+ "roof/height",
+ "smoking",
+ "wheelchair"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "*"
+ },
+ "matchScore": 0.6
+ },
+ "barrier": {
+ "icon": "maki-roadblock",
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "barrier": "*"
+ },
+ "fields": [
+ "barrier"
+ ],
+ "moreFields": [
+ "level"
+ ],
+ "matchScore": 0.4
+ },
+ "area": {
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "area": "yes"
+ },
+ "matchScore": 0.1
+ },
+ "advertising": {
+ "icon": "temaki-billboard",
+ "fields": [
+ "advertising",
+ "operator",
+ "lit",
+ "visibility"
+ ],
+ "moreFields": [
+ "access_simple",
+ "height",
+ "message"
+ ],
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "advertising": "*"
+ }
+ },
+ "address": {
+ "fields": [
+ "address"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "addr:*": "*"
+ },
+ "addTags": {},
+ "removeTags": {},
+ "reference": {
+ "key": "addr"
+ },
+ "matchScore": 0.15
+ },
+ "waterway": {
+ "fields": [
+ "name",
+ "waterway"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "waterway": "*"
},
"searchable": false
},
- "pipeline": {
- "icon": "iD-pipeline-line",
+ "tourism": {
+ "icon": "maki-attraction",
"fields": [
- "pipeline",
+ "name",
+ "tourism"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "tourism": "*"
+ },
+ "searchable": false
+ },
+ "telecom": {
+ "icon": "temaki-cable",
+ "fields": [
+ "telecom",
"operator"
],
"geometry": [
@@ -260,28 +554,59 @@
"area"
],
"tags": {
- "natural": "*"
+ "telecom": "*"
},
"searchable": false
},
- "place": {
+ "seamark": {
+ "icon": "maki-harbor",
"fields": [
- "name",
- "place"
- ],
- "moreFields": [
- "gnis/feature_id-US"
+ "seamark/type"
],
"geometry": [
"point",
"vertex",
+ "line",
"area"
],
"tags": {
- "place": "*"
+ "seamark:type": "*"
},
"searchable": false
},
+ "railway": {
+ "icon": "temaki-rail_profile",
+ "fields": [
+ "railway"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "railway": "*"
+ },
+ "searchable": false
+ },
+ "power": {
+ "icon": "temaki-power",
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "power": "*"
+ },
+ "fields": [
+ "power",
+ "operator"
+ ],
+ "searchable": false
+ },
"playground": {
"icon": "maki-playground",
"fields": [
@@ -311,59 +636,28 @@
},
"searchable": false
},
- "power": {
- "icon": "temaki-power",
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "power": "*"
- },
+ "place": {
"fields": [
- "power",
- "operator"
+ "name",
+ "place"
],
- "searchable": false
- },
- "railway": {
- "icon": "temaki-rail_profile",
- "fields": [
- "railway"
+ "moreFields": [
+ "gnis/feature_id-US"
],
"geometry": [
"point",
"vertex",
- "line",
"area"
],
"tags": {
- "railway": "*"
+ "place": "*"
},
"searchable": false
},
- "seamark": {
- "icon": "maki-harbor",
+ "pipeline": {
+ "icon": "iD-pipeline-line",
"fields": [
- "seamark/type"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "seamark:type": "*"
- },
- "searchable": false
- },
- "telecom": {
- "icon": "temaki-cable",
- "fields": [
- "telecom",
+ "pipeline",
"operator"
],
"geometry": [
@@ -373,15 +667,18 @@
"area"
],
"tags": {
- "telecom": "*"
+ "pipeline": "*"
},
"searchable": false
},
- "tourism": {
- "icon": "maki-attraction",
+ "natural": {
+ "icon": "maki-natural",
"fields": [
"name",
- "tourism"
+ "natural"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
],
"geometry": [
"point",
@@ -390,3207 +687,109 @@
"area"
],
"tags": {
- "tourism": "*"
+ "natural": "*"
},
"searchable": false
},
- "waterway": {
- "fields": [
- "name",
- "waterway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "waterway": "*"
- },
- "searchable": false
- },
- "addr/interpolation": {
- "fields": [
- "addr/interpolation"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "addr:interpolation": "*"
- },
- "searchable": false,
- "matchScore": 0.2
- },
- "address": {
- "fields": [
- "address"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "addr:*": "*"
- },
- "addTags": {},
- "removeTags": {},
- "reference": {
- "key": "addr"
- },
- "matchScore": 0.15
- },
- "advertising/billboard": {
- "icon": "temaki-billboard",
- "fields": [
- "operator",
- "lit",
- "support",
- "visibility"
- ],
- "moreFields": [
- "access_simple",
- "direction",
- "height"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "advertising": "billboard"
- }
- },
- "advertising/board": {
- "icon": "temaki-bulletin_board",
- "fields": [
- "operator",
- "lit",
- "support",
- "visibility"
- ],
- "moreFields": [
- "access_simple",
- "direction",
- "height"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "advertising": "board"
- }
- },
- "advertising/column": {
+ "man_made": {
"icon": "temaki-storage_tank",
"fields": [
- "operator",
- "lit",
- "visibility"
+ "name",
+ "man_made"
],
"moreFields": [
- "access_simple",
- "height"
+ "material"
],
"geometry": [
"point",
- "area"
- ],
- "tags": {
- "advertising": "column"
- }
- },
- "advertising/poster_box": {
- "icon": "temaki-poster_box",
- "fields": [
- "operator",
- "lit",
- "support",
- "visibility"
- ],
- "moreFields": [
- "access_simple",
- "direction",
- "height"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "advertising": "poster_box"
- }
- },
- "advertising/totem": {
- "fields": [
- "operator",
- "lit",
- "visibility"
- ],
- "moreFields": [
- "access_simple",
- "direction",
- "height"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "advertising": "totem"
- }
- },
- "aerialway/cable_car": {
- "icon": "fas-tram",
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "cable_car"
- }
- },
- "aerialway/chair_lift": {
- "icon": "temaki-chairlift",
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "oneway_yes",
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/bubble",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "chair_lift"
- }
- },
- "aerialway/drag_lift": {
- "icon": "temaki-drag_lift",
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "drag_lift"
- }
- },
- "aerialway/gondola": {
- "icon": "temaki-gondola_lift",
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "oneway",
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/bubble",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "gondola"
- }
- },
- "aerialway/goods": {
- "icon": "temaki-goods_lift",
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "goods"
- }
- },
- "aerialway/j-bar": {
- "icon": "temaki-j_bar_lift",
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "j-bar"
- }
- },
- "aerialway/magic_carpet": {
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "magic_carpet"
- }
- },
- "aerialway/mixed_lift": {
- "icon": "maki-aerialway",
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "oneway_yes",
- "aerialway/occupancy",
- "aerialway/capacity",
- "aerialway/duration",
- "aerialway/bubble",
- "aerialway/heating"
- ],
- "tags": {
- "aerialway": "mixed_lift"
- }
- },
- "aerialway/platter": {
- "icon": "temaki-platter_lift",
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "platter"
- }
- },
- "aerialway/pylon": {
- "icon": "temaki-aerialway_pole",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "ref"
- ],
- "tags": {
- "aerialway": "pylon"
- }
- },
- "aerialway/rope_tow": {
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "oneway_yes",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "rope_tow"
- }
- },
- "aerialway/t-bar": {
- "icon": "temaki-t_bar_lift",
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "aerialway/capacity",
- "aerialway/duration"
- ],
- "tags": {
- "aerialway": "t-bar"
- }
- },
- "aerialway/zip_line": {
- "geometry": [
- "line"
- ],
- "fields": [
- "name",
- "oneway_yes",
- "aerialway/duration",
- "maxweight",
- "access_simple"
- ],
- "tags": {
- "aerialway": "zip_line"
- }
- },
- "aeroway/aerodrome": {
- "icon": "temaki-airport",
- "fields": [
- "name",
- "iata",
- "icao",
- "address",
- "operator",
- "operator/type",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "aeroway": "aerodrome"
- },
- "matchScore": 0.9
- },
- "aeroway/apron": {
- "icon": "temaki-planes",
- "fields": [
- "ref",
- "surface"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "aeroway": "apron"
- }
- },
- "aeroway/gate": {
- "icon": "fas-plane",
- "fields": [
- "ref_aeroway_gate"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "aeroway": "gate"
- }
- },
- "aeroway/hangar": {
- "icon": "temaki-hangar",
- "fields": [
- "name",
- "building_area_yes"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "aeroway": "hangar"
- },
- "addTags": {
- "building": "hangar",
- "aeroway": "hangar"
- }
- },
- "aeroway/helipad": {
- "icon": "maki-heliport",
- "fields": [
- "name",
- "ref",
- "operator",
- "surface",
- "lit"
- ],
- "moreFields": [
- "access_simple",
- "address",
- "charge_fee",
- "fee",
- "opening_hours",
- "opening_hours/covid19"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "aeroway": "helipad"
- }
- },
- "aeroway/holding_position": {
- "icon": "temaki-plane_taxiing",
- "fields": [
- "ref",
- "holding_position/type",
- "direction_vertex",
- "ele_node"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "aeroway": "holding_position"
- }
- },
- "aeroway/jet_bridge": {
- "icon": "temaki-pedestrian_walled",
- "fields": [
- "ref_aeroway_gate",
- "width",
- "access_simple",
- "wheelchair"
- ],
- "moreFields": [
- "manufacturer"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "aeroway": "jet_bridge"
- },
- "addTags": {
- "aeroway": "jet_bridge",
- "highway": "corridor"
- },
- "matchScore": 1.05
- },
- "aeroway/parking_position": {
- "icon": "temaki-plane_taxiing",
- "fields": [
- "ref"
- ],
- "geometry": [
"vertex",
- "point",
- "line"
- ],
- "tags": {
- "aeroway": "parking_position"
- }
- },
- "aeroway/runway": {
- "icon": "fas-plane-departure",
- "fields": [
- "ref_runway",
- "surface",
- "length",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "aeroway": "runway"
- }
- },
- "aeroway/spaceport": {
- "icon": "fas-space-shuttle",
- "fields": [
- "name",
- "operator",
- "access_simple",
- "website",
- "wikidata"
- ],
- "moreFields": [
- "email",
- "fax",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "phone"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "aeroway": "spaceport"
- }
- },
- "aeroway/taxiway": {
- "icon": "temaki-plane_taxiing",
- "fields": [
- "ref_taxiway",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "aeroway": "taxiway"
- }
- },
- "aeroway/terminal": {
- "icon": "maki-airport",
- "fields": [
- "name",
- "operator",
- "building_area_yes",
- "wheelchair",
- "baby_feeding"
- ],
- "moreFields": [
- "air_conditioning",
- "smoking"
- ],
- "geometry": [
- "point",
+ "line",
"area"
],
"tags": {
- "aeroway": "terminal"
- }
- },
- "aeroway/windsock": {
- "icon": "temaki-windsock",
- "fields": [
- "ref",
- "lit",
- "height"
- ],
- "moreFields": [
- "manufacturer"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "aeroway": "windsock"
- }
- },
- "allotments/plot": {
- "icon": "temaki-garden_bed",
- "geometry": [
- "area"
- ],
- "fields": [
- "name",
- "ref"
- ],
- "tags": {
- "allotments": "plot"
- },
- "reference": {
- "key": "allotments",
- "value": "plot"
- }
- },
- "amenity/bus_station": {
- "icon": "temaki-bus",
- "fields": [
- "name",
- "building_area",
- "operator",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "bus_station"
- },
- "searchable": false,
- "replacement": "public_transport/station_bus"
- },
- "amenity/coworking_space": {
- "icon": "maki-commercial",
- "fields": [
- "name",
- "address",
- "building_area_yes",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "opening_hours/covid19",
- "ref/FR/siret-FR"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "coworking_space"
+ "man_made": "*"
},
+ "matchScore": 0.4,
"searchable": false
},
- "amenity/embassy": {
- "icon": "temaki-embassy",
- "fields": [
- "name",
- "country",
- "address",
- "building_area_yes"
- ],
- "moreFields": [
- "email",
- "fax",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "embassy"
- },
- "searchable": false
- },
- "amenity/ferry_terminal": {
- "icon": "temaki-ferry",
- "fields": [
- "name",
- "network",
- "operator",
- "address",
- "building_area"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "ferry_terminal"
- },
- "matchScore": 0.95,
- "searchable": false,
- "replacement": "public_transport/station_ferry"
- },
- "amenity/nursing_home": {
- "icon": "maki-wheelchair",
- "fields": [
- "{amenity/social_facility}",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "nursing_home"
- },
- "reference": {
- "key": "social_facility",
- "value": "nursing_home"
- },
- "searchable": false
- },
- "amenity/recycling": {
- "icon": "maki-recycling",
- "fields": [
- "recycling_type",
- "recycling_accepts",
- "collection_times"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "recycling"
- },
- "searchable": false
- },
- "amenity/animal_boarding": {
- "icon": "maki-veterinary",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "animal_boarding"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "animal_boarding"
- }
- },
- "amenity/animal_breeding": {
- "icon": "maki-veterinary",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "animal_breeding"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "animal_breeding"
- }
- },
- "amenity/animal_shelter": {
- "icon": "maki-veterinary",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "opening_hours",
- "animal_shelter"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "animal_shelter"
- }
- },
- "amenity/arts_centre": {
- "icon": "maki-theatre",
- "fields": [
- "name",
- "address",
- "building_area_yes",
- "opening_hours",
- "website"
- ],
- "moreFields": [
- "charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "website",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "arts_centre"
- }
- },
- "amenity/atm": {
- "icon": "temaki-atm2",
- "fields": [
- "operator",
- "network",
- "cash_in",
- "currency_multi",
- "drive_through"
- ],
- "moreFields": [
- "branch_brand",
- "ref",
- "brand",
- "covered",
- "height",
- "indoor",
- "level",
- "lit",
- "manufacturer",
- "opening_hours",
- "opening_hours/covid19",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "atm"
- }
- },
- "amenity/bank": {
- "icon": "maki-bank",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "atm",
- "drive_through"
- ],
- "moreFields": [
- "air_conditioning",
- "branch_brand",
- "brand",
- "currency_multi",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "phone",
- "ref/vatin",
- "ref/FR/siret-FR",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "bank"
- }
- },
- "amenity/bar": {
- "icon": "maki-bar",
- "fields": [
- "name",
- "address",
- "building_area_yes",
- "opening_hours",
- "min_age",
- "brewery"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "microbrewery",
- "opening_hours/covid19",
- "operator",
- "outdoor_seating",
- "payment_multi",
- "phone",
- "ref/vatin",
- "ref/FR/siret-FR",
- "smoking",
- "sport_pub",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "bar"
- }
- },
- "amenity/bar/lgbtq": {
- "icon": "maki-bar",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "bar",
- "lgbtq": "primary"
- }
- },
- "amenity/bbq": {
- "icon": "maki-bbq",
- "fields": [
- "covered",
- "fuel",
- "access_simple"
- ],
- "moreFields": [
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "bbq"
- }
- },
- "amenity/bench": {
- "icon": "temaki-bench",
- "fields": [
- "backrest",
- "material",
- "seats",
- "colour"
- ],
- "moreFields": [
- "access_simple",
- "direction",
- "height",
- "inscription",
- "level",
- "lit",
- "manufacturer",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "amenity": "bench"
- }
- },
- "amenity/bicycle_parking": {
- "icon": "temaki-bicycle_parked",
- "fields": [
- "bicycle_parking",
- "capacity",
- "operator",
- "operator/type",
- "covered",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "bike_ride",
- "colour",
- "indoor",
- "level",
- "lit"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "bicycle_parking"
- }
- },
- "amenity/bicycle_parking/building": {
- "icon": "temaki-bicycle_structure",
- "fields": [
- "{amenity/bicycle_parking}",
- "opening_hours",
- "building_area_yes"
- ],
- "moreFields": [
- "{amenity/bicycle_parking}",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "bicycle_parking",
- "bicycle_parking": "building"
- },
- "reference": {
- "key": "bicycle_parking"
- }
- },
- "amenity/bicycle_parking/lockers": {
- "icon": "temaki-bicycle_locker",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "bicycle_parking",
- "bicycle_parking": "lockers"
- },
- "reference": {
- "key": "bicycle_parking"
- }
- },
- "amenity/bicycle_parking/shed": {
- "icon": "temaki-bicycle_shed",
- "fields": [
- "{amenity/bicycle_parking}",
- "building_area_yes"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "bicycle_parking",
- "bicycle_parking": "shed"
- },
- "reference": {
- "key": "bicycle_parking"
- }
- },
- "amenity/bicycle_rental": {
- "icon": "temaki-bicycle_rental",
- "fields": [
- "name",
- "capacity",
- "network",
- "operator",
- "operator/type",
- "fee",
- "payment_multi_fee"
- ],
- "moreFields": [
- "address",
- "covered",
- "email",
- "fax",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "bicycle_rental"
- }
- },
- "amenity/bicycle_repair_station": {
- "icon": "temaki-bicycle_repair",
- "fields": [
- "operator",
- "brand",
- "opening_hours",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "service/bicycle"
- ],
- "moreFields": [
- "branch_brand",
- "colour",
- "covered",
- "indoor",
- "level",
- "manufacturer",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "bicycle_repair_station"
- }
- },
- "amenity/biergarten": {
- "icon": "fas-beer",
- "fields": [
- "name",
- "address",
- "opening_hours",
- "outdoor_seating",
- "brewery"
- ],
- "moreFields": [
- "{amenity/bar}",
- "cuisine",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "biergarten"
- }
- },
- "amenity/binoculars": {
- "icon": "temaki-binoculars",
- "fields": [
- "operator",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "direction",
- "height",
- "ele_node"
- ],
- "moreFields": [
- "colour",
- "covered",
- "indoor",
- "lit",
- "manufacturer",
- "ref"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "amenity": "binoculars"
- }
- },
- "amenity/boat_rental": {
- "icon": "temaki-boat_rental",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "opening_hours",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "access_simple",
- "address",
- "email",
- "fax",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "boat_rental"
- }
- },
- "amenity/boat_storage": {
- "icon": "temaki-boat_dry_dock",
- "fields": [
- "name",
- "operator",
- "access_simple",
- "capacity"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "boat_storage"
- }
- },
- "amenity/bureau_de_change": {
- "icon": "temaki-money_hand",
- "fields": [
- "name",
- "operator",
- "payment_multi",
- "currency_multi",
- "address",
- "building_area"
- ],
- "moreFields": [
- "email",
- "fax",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "bureau_de_change"
- }
- },
- "amenity/cafe": {
- "icon": "maki-cafe",
- "fields": [
- "name",
- "cuisine",
- "address",
- "building_area_yes",
- "opening_hours",
- "outdoor_seating",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "phone",
- "website"
- ],
- "moreFields": [
- "air_conditioning",
- "bar",
- "branch_brand",
- "brand",
- "capacity",
- "delivery",
- "diet_multi",
- "drive_through",
- "email",
- "fax",
- "gnis/feature_id-US",
- "highchair",
- "level",
- "min_age",
- "not/name",
- "opening_hours/covid19",
- "payment_multi",
- "ref/vatin",
- "ref/FR/siret-FR",
- "reservation",
- "smoking",
- "takeaway",
- "toilets",
- "toilets/wheelchair",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "cafe"
- }
- },
- "amenity/cafe/bubble_tea": {
- "icon": "temaki-bubble_tea",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "cafe",
- "cuisine": "bubble_tea"
- },
- "reference": {
- "key": "cuisine",
- "value": "bubble_tea"
- }
- },
- "amenity/cafe/coffee_shop": {
- "icon": "temaki-hot_drink_cup",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "cafe",
- "cuisine": "coffee_shop"
- },
- "reference": {
- "key": "cuisine",
- "value": "coffee_shop"
- }
- },
- "amenity/car_pooling": {
- "icon": "temaki-car_pool",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "capacity",
- "address",
- "opening_hours",
- "lit"
- ],
- "moreFields": [
- "email",
- "fax",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_pooling"
- }
- },
- "amenity/car_rental": {
- "icon": "maki-car-rental",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours",
- "payment_multi"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "email",
- "fax",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_rental"
- }
- },
- "amenity/car_sharing": {
- "icon": "temaki-sign_and_car",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "capacity",
- "address",
- "payment_multi",
- "supervised"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "email",
- "fax",
- "lit",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_sharing"
- }
- },
- "amenity/car_wash": {
- "icon": "temaki-car_wash",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "payment_multi",
- "self_service",
- "automated"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "car_wash"
- }
- },
- "amenity/casino": {
- "icon": "maki-casino",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "gambling",
- "smoking"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "min_age",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "ref/vatin",
- "ref/FR/siret-FR",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "casino"
- }
- },
- "amenity/charging_station": {
- "icon": "fas-charging-station",
- "fields": [
- "brand",
- "operator",
- "capacity",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "covered",
- "level",
- "manufacturer",
- "network"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "charging_station"
- }
- },
- "amenity/childcare": {
- "icon": "fas-child-reaching",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "building_area_yes",
- "opening_hours",
- "website"
- ],
- "moreFields": [
- "baby_feeding",
- "capacity",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "max_age",
- "min_age",
- "not/name",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "childcare"
- }
- },
- "amenity/cinema": {
- "icon": "maki-cinema",
- "fields": [
- "name",
- "address",
- "screen",
- "building_area_yes",
- "opening_hours",
- "payment_multi"
- ],
- "moreFields": [
- "air_conditioning",
- "branch_brand",
- "brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "min_age",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "cinema"
- }
- },
- "amenity/clinic": {
- "icon": "maki-doctor",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "healthcare/speciality",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "air_conditioning",
- "branch_brand",
- "brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "clinic"
- },
- "addTags": {
- "amenity": "clinic",
- "healthcare": "clinic"
- },
- "reference": {
- "key": "amenity",
- "value": "clinic"
- }
- },
- "amenity/clinic/abortion": {
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "clinic",
- "healthcare": "clinic",
- "healthcare:speciality": "abortion"
- },
- "reference": {
- "key": "amenity",
- "value": "clinic"
- }
- },
- "amenity/clinic/fertility": {
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "clinic",
- "healthcare": "clinic",
- "healthcare:speciality": "fertility"
- },
- "reference": {
- "key": "amenity",
- "value": "clinic"
- }
- },
- "amenity/clock": {
- "icon": "temaki-clock",
- "fields": [
- "name",
- "support",
- "display",
- "visibility",
- "date",
- "faces"
- ],
- "moreFields": [
- "covered",
- "height",
- "indoor",
- "level",
- "lit",
- "manufacturer"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "clock"
- }
- },
- "amenity/clock/sundial": {
- "icon": "temaki-clock",
- "fields": [
- "name",
- "support",
- "visibility",
- "inscription"
- ],
- "moreFields": [],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "clock",
- "display": "sundial"
- },
- "reference": {
- "key": "display",
- "value": "sundial"
- }
- },
- "amenity/college": {
- "icon": "maki-college",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "website",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "denomination",
- "email",
- "fax",
- "gnis/feature_id-US",
- "not/name",
- "phone",
- "religion",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "amenity": "college"
- }
- },
- "amenity/community_centre": {
- "icon": "maki-town-hall",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "building_area_yes",
- "opening_hours",
- "website"
- ],
- "moreFields": [
- "air_conditioning",
- "baby_feeding",
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "phone",
- "polling_station",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "community_centre"
- }
- },
- "amenity/community_centre/lgbtq": {
- "icon": "maki-town-hall",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "community_centre",
- "lgbtq": "primary"
- },
- "addTags": {
- "amenity": "community_centre",
- "lgbtq": "primary",
- "community_centre:for": "lgbtq"
- }
- },
- "amenity/community_centre/youth_centre": {
- "icon": "maki-town-hall",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "community_centre",
- "community_centre": "youth_centre"
- }
- },
- "amenity/compressed_air": {
- "icon": "fas-tachometer-alt",
- "fields": [
- "operator",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "covered",
- "lit"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "manufacturer"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "compressed_air"
- }
- },
- "amenity/conference_centre": {
- "icon": "fas-user-tie",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "building_area_yes",
- "address",
- "website",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "not/name",
- "phone",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "conference_centre"
- }
- },
- "amenity/courthouse": {
- "icon": "fas-gavel",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "phone",
- "polling_station",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "courthouse"
- }
- },
- "amenity/crematorium": {
- "icon": "maki-cemetery",
- "fields": [
- "name",
- "website",
- "phone",
- "opening_hours",
- "wheelchair"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "phone",
- "website",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "crematorium"
- }
- },
- "amenity/dentist": {
- "icon": "maki-dentist",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "dentist"
- },
- "addTags": {
- "amenity": "dentist",
- "healthcare": "dentist"
- },
- "reference": {
- "key": "amenity",
- "value": "dentist"
- }
- },
- "amenity/dive_centre": {
- "icon": "temaki-scuba_diving",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "scuba_diving"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "dive_centre"
- }
- },
- "amenity/doctors": {
- "icon": "maki-doctor",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "amenity",
- "value": "doctors"
- }
- },
- "amenity/doctors/allergology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "allergology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "allergology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "allergology"
- }
- },
- "amenity/doctors/cardiology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "cardiology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "cardiology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "cardiology"
- }
- },
- "amenity/doctors/dermatology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "dermatology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "dermatology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "dermatology"
- }
- },
- "amenity/doctors/gastroenterology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "gastroenterology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "gastroenterology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "gastroenterology"
- }
- },
- "amenity/doctors/general": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "general"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "general",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "general"
- }
- },
- "amenity/doctors/gynaecology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "gynaecology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "gynaecology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "gynaecology"
- }
- },
- "amenity/doctors/haematology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "haematology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "haematology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "haematology"
- }
- },
- "amenity/doctors/internal": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "internal"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "internal",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "internal"
- }
- },
- "amenity/doctors/nephrology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "nephrology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "nephrology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "nephrology"
- }
- },
- "amenity/doctors/neurology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "neurology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "neurology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "neurology"
- }
- },
- "amenity/doctors/neurosurgery": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "neurosurgery"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "neurosurgery",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "neurosurgery"
- }
- },
- "amenity/doctors/oncology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "oncology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "oncology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "oncology"
- }
- },
- "amenity/doctors/ophthalmology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "ophthalmology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "ophthalmology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "ophthalmology"
- }
- },
- "amenity/doctors/orthopaedics": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "orthopaedics"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "orthopaedics",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "orthopaedics"
- }
- },
- "amenity/doctors/otolaryngology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "otolaryngology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "otolaryngology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "otolaryngology"
- }
- },
- "amenity/doctors/paediatrics": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "paediatrics"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "paediatrics",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "paediatrics"
- }
- },
- "amenity/doctors/pathology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "pathology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "pathology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "pathology"
- }
- },
- "amenity/doctors/plastic_surgery": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "plastic_surgery"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "plastic_surgery",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "plastic_surgery"
- }
- },
- "amenity/doctors/podiatry": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "podiatry"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "podiatry",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "podiatry"
- }
- },
- "amenity/doctors/proctology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "proctology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "proctology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "proctology"
- }
- },
- "amenity/doctors/pulmonology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "pulmonology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "pulmonology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "pulmonology"
- }
- },
- "amenity/doctors/radiology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "radiology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "radiology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "radiology"
- }
- },
- "amenity/doctors/rheumatology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "rheumatology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "rheumatology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "rheumatology"
- }
- },
- "amenity/doctors/surgery": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "surgery"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "surgery",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "surgery"
- }
- },
- "amenity/doctors/trauma": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "trauma"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "trauma",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "trauma"
- }
- },
- "amenity/doctors/urology": {
- "icon": "maki-doctor",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "doctors",
- "healthcare:speciality": "urology"
- },
- "addTags": {
- "amenity": "doctors",
- "healthcare:speciality": "urology",
- "healthcare": "doctor"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "urology"
- }
- },
- "amenity/dojo": {
+ "leisure": {
"icon": "maki-pitch",
"fields": [
"name",
- "sport",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "leisure"
],
"geometry": [
"point",
+ "vertex",
+ "line",
"area"
],
"tags": {
- "amenity": "dojo"
- }
- },
- "amenity/dressing_room": {
- "icon": "maki-clothing-store",
- "fields": [
- "operator",
- "access_simple",
- "gender",
- "wheelchair"
- ],
- "moreFields": [
- "building_area",
- "charge_fee",
- "fee",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi_fee",
- "ref"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "dressing_room"
- }
- },
- "amenity/drinking_water": {
- "icon": "maki-drinking-water",
- "fields": [
- "operator",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "wheelchair",
- "bottle"
- ],
- "moreFields": [
- "covered",
- "indoor",
- "level",
- "lit"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "amenity": "drinking_water"
- }
- },
- "amenity/driver_training": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "opening_hours"
- ],
- "moreFields": [
- "license_classes",
- "email",
- "fax",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "website",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "driver_training"
- }
- },
- "amenity/driving_school": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "building_area",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "license_classes",
- "opening_hours/covid19",
- "payment_multi",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "driving_school"
- }
- },
- "amenity/events_venue": {
- "icon": "fas-users",
- "fields": [
- "name",
- "operator",
- "building_area_yes",
- "address",
- "website",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "min_age",
- "phone",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "events_venue"
- }
- },
- "amenity/exhibition_centre": {
- "icon": "fas-user-tie",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "building_area_yes",
- "address",
- "website",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "not/name",
- "phone",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "exhibition_centre"
- }
- },
- "amenity/fast_food": {
- "icon": "maki-fast-food",
- "fields": [
- "name",
- "cuisine",
- "diet_multi",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "drive_through",
- "phone",
- "website"
- ],
- "moreFields": [
- "air_conditioning",
- "branch_brand",
- "brand",
- "capacity",
- "delivery",
- "email",
- "fax",
- "gnis/feature_id-US",
- "highchair",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "outdoor_seating",
- "payment_multi",
- "ref/vatin",
- "ref/FR/siret-FR",
- "smoking",
- "takeaway",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food"
- }
- },
- "amenity/fast_food/ice_cream": {
- "icon": "fas-ice-cream",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "ice_cream"
- },
- "reference": {
- "key": "cuisine",
- "value": "ice_cream"
+ "leisure": "*"
},
"searchable": false
},
- "amenity/fast_food/burger": {
- "icon": "maki-fast-food",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "burger"
- },
- "reference": {
- "key": "cuisine",
- "value": "burger"
- }
- },
- "amenity/fast_food/cafeteria": {
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "fast_food": "cafeteria"
- },
- "fields": [
- "{amenity/fast_food}",
- "access_simple"
- ]
- },
- "amenity/fast_food/chicken": {
- "icon": "fas-drumstick-bite",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "chicken"
- },
- "reference": {
- "key": "cuisine",
- "value": "chicken"
- }
- },
- "amenity/fast_food/donut": {
- "icon": "temaki-donut",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "donut"
- },
- "reference": {
- "key": "cuisine",
- "value": "donut"
- }
- },
- "amenity/fast_food/fish_and_chips": {
- "icon": "fas-fish",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "fish_and_chips"
- },
- "reference": {
- "key": "cuisine",
- "value": "fish_and_chips"
- }
- },
- "amenity/fast_food/hot_dog": {
- "icon": "fas-hotdog",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "hot_dog"
- },
- "reference": {
- "key": "cuisine",
- "value": "hot_dog"
- }
- },
- "amenity/fast_food/juice": {
- "icon": "temaki-drink_cup",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "juice"
- },
- "reference": {
- "key": "cuisine",
- "value": "juice"
- }
- },
- "amenity/fast_food/kebab": {
- "icon": "temaki-vertical_rotisserie",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "kebab"
- },
- "reference": {
- "key": "cuisine",
- "value": "kebab"
- }
- },
- "amenity/fast_food/mexican": {
- "icon": "fas-pepper-hot",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "mexican"
- },
- "reference": {
- "key": "cuisine",
- "value": "mexican"
- }
- },
- "amenity/fast_food/pizza": {
- "icon": "maki-restaurant-pizza",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "pizza"
- },
- "reference": {
- "key": "cuisine",
- "value": "pizza"
- }
- },
- "amenity/fast_food/sandwich": {
- "icon": "temaki-sandwich",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fast_food",
- "cuisine": "sandwich"
- },
- "reference": {
- "key": "cuisine",
- "value": "sandwich"
- }
- },
- "amenity/fire_station": {
- "icon": "maki-fire-station",
+ "landuse": {
"fields": [
"name",
- "operator",
- "address",
- "building_area"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone",
- "polling_station",
- "smoking",
- "wheelchair"
+ "landuse"
],
"geometry": [
- "point",
"area"
],
"tags": {
- "amenity": "fire_station"
- }
+ "landuse": "*"
+ },
+ "matchScore": 0.9,
+ "searchable": false
},
- "amenity/food_court": {
- "icon": "maki-restaurant",
+ "indoor": {
+ "icon": "temaki-room",
"fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "capacity",
- "diet_multi",
- "email",
- "fax",
- "gnis/feature_id-US",
"level",
- "not/name",
- "opening_hours/covid19",
- "outdoor_seating",
- "phone",
- "smoking",
- "wheelchair"
+ "indoor_type"
],
"geometry": [
"point",
+ "vertex",
+ "line",
"area"
],
"tags": {
- "amenity": "food_court"
- }
- },
- "amenity/fountain": {
- "icon": "temaki-fountain",
- "fields": [
- "name",
- "operator",
- "fountain",
- "drinking_water",
- "height",
- "lit"
- ],
- "moreFields": [
- "covered",
- "indoor",
- "level",
- "manufacturer"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fountain"
- }
- },
- "amenity/fuel": {
- "icon": "maki-fuel",
- "fields": [
- "name",
- "brand",
- "operator",
- "address",
- "fuel/fuel_multi",
- "fuel/fuel_multi-RU",
- "self_service",
- "building_area"
- ],
- "moreFields": [
- "branch_brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "ref/vatin",
- "ref/FR/siret-FR",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "fuel"
- }
- },
- "amenity/gambling": {
- "icon": "fas-coins",
- "fields": [
- "{amenity/casino}"
- ],
- "moreFields": [
- "{amenity/casino}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "gambling"
- }
- },
- "amenity/give_box": {
- "icon": "fas-box-open",
- "fields": [
- "name",
- "operator",
- "opening_hours",
- "access_simple"
- ],
- "moreFields": [
- "address",
- "branch_brand",
- "brand",
- "capacity",
- "covered",
- "email",
- "indoor",
- "level",
- "lit",
- "location",
- "opening_hours/covid19",
- "phone",
- "ref",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "give_box"
- }
- },
- "amenity/grave_yard": {
- "icon": "maki-cemetery",
- "fields": [
- "religion",
- "address"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "grave_yard"
- }
- },
- "amenity/grit_bin": {
- "icon": "fas-box",
- "fields": [
- "operator",
- "access_simple",
- "material",
- "collection_times"
- ],
- "moreFields": [
- "colour",
- "height",
- "lit"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "grit_bin"
- }
- },
- "amenity/hospital": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "healthcare/speciality",
- "address",
- "emergency"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "amenity": "hospital"
+ "indoor": "*"
},
- "addTags": {
- "amenity": "hospital",
- "healthcare": "hospital"
- },
- "reference": {
- "key": "amenity",
- "value": "hospital"
- }
+ "matchScore": 0.8,
+ "searchable": false
},
- "amenity/hunting_stand": {
- "icon": "temaki-hunting_blind",
+ "highway": {
"fields": [
- "access_simple",
- "lockable"
+ "name",
+ "highway"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "highway": "*"
+ },
+ "searchable": false
+ },
+ "ford_line": {
+ "icon": "roentgen-ford",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "ford": "*"
+ },
+ "searchable": false
+ },
+ "emergency": {
+ "fields": [
+ "emergency_combo"
],
"geometry": [
"point",
@@ -3598,2060 +797,248 @@
"area"
],
"tags": {
- "amenity": "hunting_stand"
- }
- },
- "amenity/ice_cream": {
- "icon": "fas-ice-cream",
- "fields": [
- "name",
- "address",
- "building_area_yes",
- "opening_hours",
- "outdoor_seating"
- ],
- "moreFields": [
- "delivery",
- "diet_multi",
- "drive_through",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "ref/FR/siret-FR",
- "phone",
- "takeaway",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "ice_cream"
- }
- },
- "amenity/internet_cafe": {
- "icon": "temaki-antenna",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "building_area_yes",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "phone",
- "website"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "min_age",
- "opening_hours",
- "opening_hours/covid19",
- "outdoor_seating",
- "payment_multi",
- "ref/vatin",
- "ref/FR/siret-FR",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "internet_cafe"
- }
- },
- "amenity/karaoke_box": {
- "icon": "maki-karaoke",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "website"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "min_age",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "ref/vatin",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "karaoke_box"
- }
- },
- "amenity/kindergarten": {
- "icon": "temaki-school",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "phone",
- "preschool"
- ],
- "moreFields": [
- "capacity",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "max_age",
- "min_age",
- "not/name",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "amenity": "kindergarten"
- }
- },
- "amenity/kneipp_water_cure": {
- "icon": "maki-hospital",
- "fields": [
- "kneipp_water_cure_multi",
- "opening_hours",
- "fee"
- ],
- "moreFields": [
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "kneipp_water_cure"
+ "emergency": "*"
},
- "reference": {
- "key": "amenity",
- "value": "kneipp_water_cure"
- }
+ "searchable": false
},
- "amenity/language_school": {
- "icon": "temaki-school",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "building_area_yes",
- "opening_hours",
- "language_multi"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
- ],
+ "embankment": {
"geometry": [
- "point",
- "area"
+ "line"
],
"tags": {
- "amenity": "language_school"
- }
+ "embankment": "yes"
+ },
+ "matchScore": 0.2,
+ "searchable": false
},
- "amenity/lavoir": {
- "icon": "temaki-detergent_bottle",
+ "building_point": {
+ "icon": "maki-home",
"fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "access_simple",
- "building_area"
+ "{building}"
],
"moreFields": [
- "gnis/feature_id-US",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "lavoir"
- }
- },
- "amenity/letter_box": {
- "icon": "temaki-letter_box",
- "fields": [
- "post",
- "access_simple",
- "height"
- ],
- "moreFields": [
- "covered",
- "indoor",
- "level",
- "lit",
- "lockable",
- "manufacturer",
- "material",
- "operator",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "letter_box"
- }
- },
- "amenity/library": {
- "icon": "maki-library",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "building_area_yes",
- "opening_hours",
- "address",
- "ref/isil",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "access_simple",
- "air_conditioning",
- "baby_feeding",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "not/name",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "polling_station",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "library"
- }
- },
- "amenity/loading_dock": {
- "icon": "fas-truck-loading",
- "fields": [
- "ref",
- "operator",
- "access_simple",
- "door",
- "width",
- "height"
- ],
- "moreFields": [
- "address",
- "colour",
- "level",
- "lit",
- "wheelchair"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "amenity": "loading_dock"
- }
- },
- "amenity/lounger": {
- "icon": "temaki-lounger",
- "fields": [
- "material",
- "colour",
- "access_simple",
- "lit"
- ],
- "moreFields": [
- "height",
- "inscription",
- "level",
- "manufacturer",
- "operator"
+ "{building}"
],
"geometry": [
"point"
],
"tags": {
- "amenity": "lounger"
- }
+ "building": "*"
+ },
+ "matchScore": 0.6,
+ "searchable": false
},
- "amenity/love_hotel": {
- "icon": "maki-heart",
+ "boundary": {
+ "fields": [
+ "boundary"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "boundary": "*"
+ },
+ "searchable": false,
+ "matchScore": 0.45
+ },
+ "attraction": {
+ "icon": "maki-star",
"fields": [
"name",
+ "attraction",
"operator",
- "address",
- "building_area_yes",
- "rooms",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "min_age",
- "payment_multi",
- "phone",
- "ref/vatin",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "love_hotel"
- }
- },
- "amenity/marketplace": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "operator",
- "address",
- "building",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "marketplace"
- }
- },
- "amenity/monastery": {
- "icon": "maki-place-of-worship",
- "fields": [
- "name",
- "religion",
- "denomination",
- "address"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "amenity": "monastery"
- }
- },
- "amenity/money_transfer": {
- "icon": "temaki-money_hand",
- "fields": [
- "name",
- "brand",
- "address",
- "building_area_yes",
"opening_hours",
- "payment_multi",
- "currency_multi"
- ],
- "moreFields": [
- "branch_brand",
- "email",
- "fax",
- "level",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "money_transfer"
- }
- },
- "amenity/mortuary": {
- "icon": "maki-cemetery",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "moreFields": [
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "mortuary"
- }
- },
- "amenity/motorcycle_parking": {
- "icon": "fas-motorcycle",
- "fields": [
- "capacity_parking",
- "operator",
- "covered",
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "motorcycle_parking"
- }
- },
- "amenity/motorcycle_rental": {
- "icon": "temaki-motorcycle_rental",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours",
- "payment_multi"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "email",
- "fax",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "motorcycle_rental"
- }
- },
- "amenity/music_school": {
- "icon": "fas-music",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "music_school"
- }
- },
- "amenity/nightclub": {
- "icon": "fas-cocktail",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "min_age",
- "smoking"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "payment_multi",
- "opening_hours/covid19",
- "phone",
- "ref/FR/siret-FR",
- "wheelchair",
- "fee"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "nightclub"
- }
- },
- "amenity/nightclub/lgbtq": {
- "icon": "fas-cocktail",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "nightclub",
- "lgbtq": "primary"
- }
- },
- "amenity/parcel_locker": {
- "icon": "temaki-vending_lockers",
- "fields": [
- "operator",
- "parcel_pickup",
- "parcel_dropoff",
- "opening_hours",
- "payment_multi",
- "ref"
- ],
- "moreFields": [
- "brand",
- "colour"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "parcel_locker"
- },
- "reference": {
- "key": "amenity",
- "value": "parcel_locker"
- }
- },
- "amenity/parking_entrance": {
- "icon": "maki-entrance-alt1",
- "fields": [
- "parking_entrance",
- "ref",
- "access_simple",
- "address",
- "level"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "amenity": "parking_entrance"
- }
- },
- "amenity/parking_space": {
- "icon": "temaki-parking_space",
- "fields": [
- "parking_space",
- "capacity"
- ],
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "parking_space"
- },
- "matchScore": 0.95
- },
- "amenity/parking_space/disabled": {
- "icon": "temaki-accessible_space",
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "parking_space",
- "parking_space": "disabled"
- },
- "matchScore": 0.95
- },
- "amenity/parking": {
- "icon": "temaki-car_parked",
- "fields": [
- "operator",
- "operator/type",
- "parking",
- "capacity_parking",
- "capacity/disabled_parking",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "surface"
- ],
- "moreFields": [
- "address",
- "covered",
- "email",
- "fax",
- "maxstay",
- "opening_hours",
- "opening_hours/covid19",
- "park_ride",
- "phone",
- "ref",
- "supervised",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "parking"
- }
- },
- "amenity/parking/multi-storey": {
- "icon": "temaki-car_structure",
- "fields": [
- "name",
- "{amenity/parking}",
- "building_area_yes"
- ],
- "moreFields": [
- "{amenity/parking}",
- "height",
- "building/levels"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "parking",
- "parking": "multi-storey"
- },
- "reference": {
- "key": "parking",
- "value": "multi-storey"
- }
- },
- "amenity/parking/park_ride": {
- "icon": "temaki-sign_and_car",
- "fields": [
- "name",
- "{amenity/parking}"
- ],
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "parking",
- "park_ride": "yes"
- },
- "reference": {
- "key": "park_ride",
- "value": "yes"
- },
- "matchScore": 0.95
- },
- "amenity/parking/street-side": {
- "icon": "temaki-car_parked",
- "fields": [
- "{amenity/parking}",
- "parking/orientation"
- ],
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "parking",
- "parking": "street_side"
- },
- "addTags": {
- "amenity": "parking",
- "parking": "street_side"
- },
- "reference": {
- "key": "parking",
- "value": "street_side"
- }
- },
- "amenity/parking/underground": {
- "icon": "temaki-car_structure",
- "fields": [
- "{amenity/parking}",
- "layer"
- ],
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "parking",
- "parking": "underground"
- },
- "addTags": {
- "amenity": "parking",
- "parking": "underground",
- "layer": "-1"
- },
- "reference": {
- "key": "parking",
- "value": "underground"
- }
- },
- "amenity/payment_centre": {
- "icon": "temaki-money_hand",
- "fields": [
- "name",
- "brand",
- "address",
- "building_area_yes",
- "opening_hours",
- "payment_multi"
- ],
- "moreFields": [
- "branch_brand",
- "currency_multi",
- "email",
- "fax",
- "level",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "payment_centre"
- }
- },
- "amenity/payment_terminal": {
- "icon": "far-credit-card",
- "fields": [
- "name",
- "brand",
- "address",
- "opening_hours",
- "payment_multi"
- ],
- "moreFields": [
- "branch_brand",
- "ref",
- "covered",
- "currency_multi",
- "indoor",
- "level",
- "opening_hours/covid19",
- "wheelchair"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "amenity": "payment_terminal"
- }
- },
- "amenity/pharmacy": {
- "icon": "maki-pharmacy",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "dispensing",
- "drive_through"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "payment_multi",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "pharmacy"
- },
- "addTags": {
- "amenity": "pharmacy",
- "healthcare": "pharmacy"
- },
- "reference": {
- "key": "amenity",
- "value": "pharmacy"
- }
- },
- "amenity/photo_booth": {
- "icon": "fas-person-booth",
- "fields": [
- "name",
- "operator",
- "payment_multi",
- "wheelchair"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "indoor",
- "level"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "photo_booth"
- }
- },
- "amenity/place_of_worship": {
- "icon": "maki-place-of-worship",
- "fields": [
- "name",
- "religion",
- "denomination",
- "address",
- "building_area_yes",
- "service_times"
- ],
- "moreFields": [
- "air_conditioning",
- "baby_feeding",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/ssid",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "phone",
- "polling_station",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship"
- }
- },
- "amenity/place_of_worship/buddhist": {
- "icon": "maki-religious-buddhist",
- "fields": [
- "name",
- "religion",
- "denomination",
- "{amenity/place_of_worship}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "buddhist"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- }
- },
- "amenity/place_of_worship/christian": {
- "icon": "maki-religious-christian",
- "fields": [
- "name",
- "religion",
- "denomination",
- "{amenity/place_of_worship}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "christian"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- }
- },
- "amenity/place_of_worship/christian/jehovahs_witness": {
- "icon": "maki-place-of-worship",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "christian",
- "denomination": "jehovahs_witness"
- },
- "reference": {
- "key": "denomination",
- "value": "jehovahs_witness"
- }
- },
- "amenity/place_of_worship/christian/la_luz_del_mundo": {
- "icon": "maki-place-of-worship",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "christian",
- "denomination": "la_luz_del_mundo"
- },
- "reference": {
- "key": "denomination",
- "value": "la_luz_del_mundo"
- }
- },
- "amenity/place_of_worship/christian/quaker": {
- "icon": "temaki-quakerism",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "christian",
- "denomination": "quaker"
- },
- "reference": {
- "key": "denomination",
- "value": "quaker"
- }
- },
- "amenity/place_of_worship/hindu": {
- "icon": "temaki-hinduism",
- "fields": [
- "name",
- "religion",
- "denomination",
- "{amenity/place_of_worship}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "hindu"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- }
- },
- "amenity/place_of_worship/jewish": {
- "icon": "maki-religious-jewish",
- "fields": [
- "name",
- "religion",
- "denomination",
- "{amenity/place_of_worship}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "jewish"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- }
- },
- "amenity/place_of_worship/muslim": {
- "icon": "maki-religious-muslim",
- "fields": [
- "name",
- "religion",
- "denomination",
- "{amenity/place_of_worship}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "muslim"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- }
- },
- "amenity/place_of_worship/shinto": {
- "icon": "temaki-shinto",
- "fields": [
- "name",
- "religion",
- "denomination",
- "{amenity/place_of_worship}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "shinto"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- }
- },
- "amenity/place_of_worship/sikh": {
- "icon": "temaki-sikhism",
- "fields": [
- "name",
- "religion",
- "denomination",
- "{amenity/place_of_worship}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "sikh"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- }
- },
- "amenity/place_of_worship/taoist": {
- "icon": "temaki-taoism",
- "fields": [
- "name",
- "religion",
- "denomination",
- "{amenity/place_of_worship}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "place_of_worship",
- "religion": "taoist"
- },
- "reference": {
- "key": "amenity",
- "value": "place_of_worship"
- }
- },
- "amenity/planetarium": {
- "icon": "maki-globe",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "air_conditioning",
- "charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "payment_multi_fee",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "planetarium"
- }
- },
- "amenity/police": {
- "icon": "temaki-police_officer",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "phone",
- "polling_station",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "police"
- }
- },
- "amenity/polling_station": {
- "icon": "fas-vote-yea",
- "fields": [
- "name",
- "ref",
- "operator",
- "address",
- "opening_hours",
- "building_area_yes"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "polling_station"
- },
- "addTags": {
- "amenity": "polling_station",
- "polling_station": "yes"
- }
- },
- "amenity/post_box": {
- "icon": "temaki-post_box",
- "fields": [
- "operator",
- "collection_times",
- "drive_through",
- "ref"
- ],
- "moreFields": [
- "access_simple",
- "branch_brand",
- "brand",
- "colour",
- "covered",
- "gnis/feature_id-US",
- "height",
- "indoor",
- "level",
- "manufacturer",
- "material",
- "support",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "post_box"
- }
- },
- "amenity/post_depot": {
- "icon": "fas-mail-bulk",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area",
- "phone"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours",
- "opening_hours/covid19",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "post_depot"
- }
- },
- "amenity/post_office": {
- "icon": "maki-post",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "ref/FR/siret-FR",
- "payment_multi",
- "phone",
- "polling_station",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "post_office"
- }
- },
- "amenity/prep_school": {
- "icon": "temaki-school",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "prep_school"
- }
- },
- "amenity/prison": {
- "icon": "maki-prison",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "amenity": "prison"
- }
- },
- "amenity/pub": {
- "icon": "maki-beer",
- "fields": [
- "name",
- "address",
- "building_area_yes",
- "opening_hours",
- "smoking",
- "brewery"
- ],
- "moreFields": [
- "air_conditioning",
- "cuisine",
- "diet_multi",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "microbrewery",
- "min_age",
- "opening_hours/covid19",
- "outdoor_seating",
- "payment_multi",
- "phone",
- "ref/vatin",
- "ref/FR/siret-FR",
- "real_fire-GB-IE",
- "sport_pub",
- "toilets",
- "toilets/wheelchair",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "pub"
- }
- },
- "amenity/pub/irish": {
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "pub",
- "theme": "irish"
- },
- "reference": {
- "key": "theme",
- "value": "irish"
- },
- "locationSet": {
- "exclude": [
- "ie"
- ]
- }
- },
- "amenity/pub/lgbtq": {
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "pub",
- "lgbtq": "primary"
- }
- },
- "amenity/pub/microbrewery": {
- "icon": "maki-beer",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "pub",
- "microbrewery": "yes"
- },
- "reference": {
- "key": "microbrewery"
- }
- },
- "amenity/public_bath": {
- "icon": "maki-water",
- "fields": [
- "name",
- "bath/type",
- "bath/open_air",
- "bath/sand_bath",
- "address",
- "building_area",
"fee",
"charge_fee"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi_fee",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
+ "{@templates/contact}",
+ "address",
+ "payment_multi"
],
"geometry": [
"point",
+ "vertex",
+ "line",
"area"
],
"tags": {
- "amenity": "public_bath"
- }
+ "attraction": "*"
+ },
+ "searchable": false
},
- "amenity/public_bookcase": {
- "icon": "maki-library",
+ "amenity": {
+ "fields": [
+ "amenity"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "amenity": "*"
+ },
+ "searchable": false
+ },
+ "aeroway": {
+ "icon": "maki-airport",
+ "fields": [
+ "aeroway"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "aeroway": "*"
+ },
+ "searchable": false
+ },
+ "aerialway": {
"fields": [
"name",
- "public_bookcase/type",
- "operator",
- "capacity",
- "lit"
+ "aerialway"
+ ],
+ "moreFields": [
+ "layer"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "aerialway": "*"
+ },
+ "searchable": false
+ },
+ "waterway/weir": {
+ "icon": "maki-dam",
+ "fields": [
+ "name",
+ "operator",
+ "height",
+ "material"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US",
+ "seamark/type"
+ ],
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "waterway": "weir"
+ }
+ },
+ "waterway/waterfall": {
+ "icon": "maki-waterfall",
+ "fields": [
+ "name",
+ "height",
+ "width",
+ "intermittent"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "waterway": "waterfall"
+ }
+ },
+ "waterway/water_point": {
+ "icon": "maki-drinking-water",
+ "fields": [
+ "{amenity/water_point}"
+ ],
+ "moreFields": [
+ "{amenity/water_point}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "waterway": "water_point"
+ }
+ },
+ "waterway/tidal_channel": {
+ "icon": "iD-waterway-stream",
+ "fields": [
+ "name",
+ "structure_waterway",
+ "width",
+ "salt",
+ "tidal",
+ "intermittent"
],
"moreFields": [
- "access_simple",
- "address",
- "branch_brand",
- "brand",
"covered",
- "email",
- "indoor",
- "level",
- "location",
- "opening_hours",
- "opening_hours/covid19",
- "phone",
- "ref",
- "wheelchair"
+ "fishing",
+ "gnis/feature_id-US"
],
"geometry": [
- "point",
- "area"
+ "line"
],
"tags": {
- "amenity": "public_bookcase"
+ "waterway": "tidal_channel"
}
},
- "amenity/ranger_station": {
- "icon": "maki-ranger-station",
+ "waterway/stream_intermittent": {
+ "icon": "iD-waterway-stream",
"fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
+ "{waterway/stream}"
],
"moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
+ "{waterway/stream}"
],
"geometry": [
- "point",
- "area"
+ "line"
],
"tags": {
- "amenity": "ranger_station"
- }
- },
- "amenity/recycling_centre": {
- "icon": "maki-recycling",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "building",
- "opening_hours",
- "recycling_accepts"
- ],
- "moreFields": [
- "charge_fee",
- "email",
- "fax",
- "fee",
- "opening_hours/covid19",
- "payment_multi_fee",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "recycling",
- "recycling_type": "centre"
+ "waterway": "stream",
+ "intermittent": "yes"
},
"reference": {
- "key": "recycling_type",
- "value": "*"
+ "key": "waterway",
+ "value": "stream"
}
},
- "amenity/recycling_container": {
- "icon": "maki-recycling",
+ "waterway/stream": {
+ "icon": "iD-waterway-stream",
"fields": [
- "operator",
- "recycling_accepts",
- "opening_hours",
- "collection_times"
+ "name",
+ "structure_waterway",
+ "width",
+ "intermittent"
],
"moreFields": [
- "colour",
"covered",
- "indoor",
- "level",
- "manufacturer",
- "material",
- "opening_hours/covid19",
- "ref"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "recycling",
- "recycling_type": "container"
- },
- "reference": {
- "key": "amenity",
- "value": "recycling"
- }
- },
- "amenity/recycling/container/electrical_items": {
- "icon": "maki-recycling",
- "fields": [
- "{amenity/recycling_container}"
- ],
- "moreFields": [
- "{amenity/recycling_container}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "recycling",
- "recycling_type": "container",
- "recycling:electrical_items": "yes"
- },
- "reference": {
- "key": "recycling:electrical_items",
- "value": "yes"
- }
- },
- "amenity/recycling/container/green_waste": {
- "icon": "maki-recycling",
- "fields": [
- "{amenity/recycling_container}"
- ],
- "moreFields": [
- "{amenity/recycling_container}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "recycling",
- "recycling_type": "container",
- "recycling:green_waste": "yes"
- },
- "reference": {
- "key": "recycling:green_waste",
- "value": "yes"
- }
- },
- "amenity/refugee_site": {
- "icon": "temaki-tents",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "informal",
- "start_date",
- "capacity",
- "population",
- "population/date",
- "source/population"
- ],
- "moreFields": [
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "refugee_site"
- }
- },
- "amenity/research_institute": {
- "icon": "fas-flask",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "website",
- "internet_access",
- "internet_access/fee"
- ],
- "moreFields": [
- "email",
- "fax",
+ "fishing",
"gnis/feature_id-US",
- "internet_access/ssid",
- "phone",
- "wheelchair"
+ "salt",
+ "tidal"
],
"geometry": [
- "point",
- "area"
+ "line"
],
"tags": {
- "amenity": "research_institute"
+ "waterway": "stream"
}
},
- "amenity/restaurant": {
- "icon": "maki-restaurant",
+ "waterway/sanitary_dump_station": {
+ "icon": "temaki-waste",
"fields": [
"name",
- "cuisine",
- "diet_multi",
- "address",
- "building_area_yes",
- "opening_hours",
- "phone",
- "website"
- ],
- "moreFields": [
- "air_conditioning",
- "bar",
- "branch_brand",
- "brand",
- "brewery",
- "capacity",
- "delivery",
- "email",
- "fax",
- "gnis/feature_id-US",
- "highchair",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "microbrewery",
- "min_age",
- "not/name",
- "opening_hours/covid19",
- "outdoor_seating",
- "payment_multi",
- "ref/vatin",
- "ref/FR/siret-FR",
- "reservation",
- "smoking",
- "sport_pub",
- "stars",
- "takeaway",
- "toilets",
- "toilets/wheelchair",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant"
- }
- },
- "amenity/restaurant/american": {
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "american"
- },
- "reference": {
- "key": "cuisine",
- "value": "american"
- }
- },
- "amenity/restaurant/asian": {
- "icon": "maki-restaurant-noodle",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "asian"
- },
- "reference": {
- "key": "cuisine",
- "value": "asian"
- }
- },
- "amenity/restaurant/barbeque": {
- "icon": "maki-restaurant-bbq",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "barbeque"
- },
- "reference": {
- "key": "cuisine",
- "value": "barbeque"
- }
- },
- "amenity/restaurant/chinese": {
- "icon": "maki-restaurant-noodle",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "chinese"
- },
- "reference": {
- "key": "cuisine",
- "value": "chinese"
- }
- },
- "amenity/restaurant/french": {
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "french"
- },
- "reference": {
- "key": "cuisine",
- "value": "french"
- }
- },
- "amenity/restaurant/german": {
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "german"
- },
- "reference": {
- "key": "cuisine",
- "value": "german"
- }
- },
- "amenity/restaurant/greek": {
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "greek"
- },
- "reference": {
- "key": "cuisine",
- "value": "greek"
- }
- },
- "amenity/restaurant/indian": {
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "indian"
- },
- "reference": {
- "key": "cuisine",
- "value": "indian"
- }
- },
- "amenity/restaurant/italian": {
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "italian"
- },
- "reference": {
- "key": "cuisine",
- "value": "italian"
- }
- },
- "amenity/restaurant/japanese": {
- "icon": "maki-restaurant-noodle",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "japanese"
- },
- "reference": {
- "key": "cuisine",
- "value": "japanese"
- }
- },
- "amenity/restaurant/mexican": {
- "icon": "fas-pepper-hot",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "mexican"
- },
- "reference": {
- "key": "cuisine",
- "value": "mexican"
- }
- },
- "amenity/restaurant/noodle": {
- "icon": "maki-restaurant-noodle",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "noodle"
- },
- "reference": {
- "key": "cuisine",
- "value": "noodle"
- }
- },
- "amenity/restaurant/pizza": {
- "icon": "maki-restaurant-pizza",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "pizza"
- },
- "reference": {
- "key": "cuisine",
- "value": "pizza"
- }
- },
- "amenity/restaurant/seafood": {
- "icon": "maki-restaurant-seafood",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "seafood"
- },
- "reference": {
- "key": "cuisine",
- "value": "seafood"
- }
- },
- "amenity/restaurant/steakhouse": {
- "icon": "maki-slaughterhouse",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "steak_house"
- },
- "reference": {
- "key": "cuisine",
- "value": "steak_house"
- }
- },
- "amenity/restaurant/sushi": {
- "icon": "temaki-temaki",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "sushi"
- },
- "reference": {
- "key": "cuisine",
- "value": "sushi"
- }
- },
- "amenity/restaurant/thai": {
- "icon": "maki-restaurant-noodle",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "thai"
- },
- "reference": {
- "key": "cuisine",
- "value": "thai"
- }
- },
- "amenity/restaurant/turkish": {
- "icon": "maki-restaurant",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "turkish"
- },
- "reference": {
- "key": "cuisine",
- "value": "turkish"
- }
- },
- "amenity/restaurant/vietnamese": {
- "icon": "maki-restaurant-noodle",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "restaurant",
- "cuisine": "vietnamese"
- },
- "reference": {
- "key": "cuisine",
- "value": "vietnamese"
- }
- },
- "amenity/sanitary_dump_station": {
- "icon": "temaki-camper_trailer_dump",
- "fields": [
"operator",
"access_simple",
"fee",
@@ -5661,2505 +1048,6 @@
],
"moreFields": [
"opening_hours",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "sanitary_dump_station"
- }
- },
- "amenity/school": {
- "icon": "temaki-school",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "grades",
- "religion",
- "denomination",
- "website",
- "building_area"
- ],
- "moreFields": [
- "capacity",
- "charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/ssid",
- "level",
- "phone",
- "polling_station",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "amenity": "school"
- }
- },
- "amenity/shelter": {
- "icon": "maki-shelter",
- "fields": [
- "name",
- "operator",
- "shelter_type",
- "building_area_yes",
- "bench",
- "bin"
- ],
- "moreFields": [
- "gnis/feature_id-US",
- "lit",
- "lockable",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "shelter"
- }
- },
- "amenity/shelter/gazebo": {
- "icon": "maki-shelter",
- "fields": [
- "name",
- "building_area_yes",
- "bench",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "shelter",
- "shelter_type": "gazebo"
- }
- },
- "amenity/shelter/lean_to": {
- "icon": "temaki-sleep_shelter",
- "fields": [
- "name",
- "operator",
- "building_area_yes"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "shelter",
- "shelter_type": "lean_to"
- }
- },
- "amenity/shelter/picnic_shelter": {
- "icon": "temaki-picnic_shelter",
- "fields": [
- "name",
- "operator",
- "building_area_yes",
- "lit",
- "bin"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "shelter",
- "shelter_type": "picnic_shelter"
- },
- "reference": {
- "key": "shelter_type",
- "value": "picnic_shelter"
- }
- },
- "amenity/shelter/public_transport": {
- "icon": "temaki-transit_shelter",
- "fields": [
- "name",
- "operator",
- "building_area_yes",
- "bench",
- "lit",
- "bin"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "shelter",
- "shelter_type": "public_transport"
- },
- "reference": {
- "key": "shelter_type",
- "value": "public_transport"
- }
- },
- "amenity/shower": {
- "icon": "temaki-shower",
- "fields": [
- "opening_hours",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "supervised",
- "building_area_yes",
- "hot_water",
- "wheelchair"
- ],
- "moreFields": [
- "address",
- "gender",
- "level",
- "opening_hours/covid19",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "shower"
- }
- },
- "amenity/smoking_area": {
- "icon": "fas-smoking",
- "fields": [
- "name",
- "shelter",
- "bin",
- "bench",
- "opening_hours"
- ],
- "moreFields": [
- "covered",
- "level",
- "lit",
- "opening_hours/covid19",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "smoking_area"
- }
- },
- "amenity/social_centre": {
- "icon": "fas-handshake",
- "fields": [
- "name",
- "brand",
- "operator",
- "operator/type",
- "address",
- "building_area_yes"
- ],
- "moreFields": [
- "air_conditioning",
- "baby_feeding",
- "branch_brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "phone",
- "polling_station",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "social_centre"
- }
- },
- "amenity/social_facility": {
- "icon": "temaki-social_facility",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "social_facility",
- "social_facility_for"
- ],
- "moreFields": [
- "baby_feeding",
- "building_area",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "social_facility"
- }
- },
- "amenity/social_facility/ambulatory_care": {
- "icon": "maki-wheelchair",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "ambulatory_care"
- },
- "reference": {
- "key": "social_facility",
- "value": "ambulatory_care"
- }
- },
- "amenity/social_facility/food_bank": {
- "icon": "temaki-social_facility",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "food_bank"
- },
- "reference": {
- "key": "social_facility",
- "value": "food_bank"
- }
- },
- "amenity/social_facility/group_home": {
- "icon": "maki-wheelchair",
- "fields": [
- "{amenity/social_facility}",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "group_home",
- "social_facility:for": "senior"
- },
- "reference": {
- "key": "social_facility",
- "value": "group_home"
- }
- },
- "amenity/social_facility/homeless_shelter": {
- "icon": "temaki-social_facility",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "shelter",
- "social_facility:for": "homeless"
- },
- "reference": {
- "key": "social_facility",
- "value": "shelter"
- }
- },
- "amenity/social_facility/nursing_home": {
- "icon": "maki-wheelchair",
- "fields": [
- "{amenity/social_facility}",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "social_facility",
- "social_facility": "nursing_home",
- "social_facility:for": "senior"
- },
- "reference": {
- "key": "social_facility",
- "value": "nursing_home"
- }
- },
- "amenity/studio": {
- "icon": "fas-microphone",
- "fields": [
- "name",
- "studio",
- "address",
- "building_area_yes",
- "website"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "studio"
- }
- },
- "amenity/studio/audio": {
- "icon": "fas-microphone",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "studio",
- "studio": "audio"
- },
- "reference": {
- "key": "studio",
- "value": "audio"
- }
- },
- "amenity/studio/radio": {
- "icon": "fas-microphone",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "studio",
- "studio": "radio"
- },
- "reference": {
- "key": "studio",
- "value": "radio"
- }
- },
- "amenity/studio/television": {
- "icon": "fas-video",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "studio",
- "studio": "television"
- },
- "reference": {
- "key": "studio",
- "value": "television"
- }
- },
- "amenity/studio/video": {
- "icon": "fas-video",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "studio",
- "studio": "video"
- },
- "reference": {
- "key": "studio",
- "value": "video"
- }
- },
- "amenity/taxi": {
- "icon": "fas-taxi",
- "fields": [
- "name",
- "operator",
- "capacity",
- "address"
- ],
- "moreFields": [
- "access_simple",
- "branch_brand",
- "brand",
- "opening_hours",
- "opening_hours/covid19",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "taxi"
- }
- },
- "amenity/telephone": {
- "icon": "fas-phone-alt",
- "fields": [
- "operator",
- "phone",
- "payment_multi",
- "covered"
- ],
- "moreFields": [
- "booth",
- "fee",
- "indoor",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "lit",
- "model",
- "ref",
- "sms",
- "video_calls",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "telephone"
- }
- },
- "amenity/theatre": {
- "icon": "maki-theatre",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "website"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "min_age",
- "payment_multi",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "theatre"
- }
- },
- "amenity/theatre/type/amphi": {
- "icon": "maki-theatre",
- "fields": [
- "name",
- "operator",
- "address",
- "lit"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "theatre",
- "theatre:type": "amphi"
- }
- },
- "amenity/ticket_validator": {
- "icon": "temaki-vending_machine",
- "fields": [
- "ref",
- "operator"
- ],
- "moreFields": [
- "colour",
- "covered",
- "indoor",
- "level",
- "model",
- "support"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "amenity": "ticket_validator"
- }
- },
- "amenity/toilets": {
- "icon": "maki-toilet",
- "fields": [
- "toilets/disposal",
- "access_simple",
- "gender",
- "changing_table",
- "wheelchair",
- "building_area_yes"
- ],
- "moreFields": [
- "charge_fee",
- "fee",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "operator",
- "payment_multi_fee",
- "portable",
- "toilets/handwashing",
- "toilets/position"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "toilets"
- }
- },
- "amenity/toilets/disposal/flush": {
- "icon": "fas-toilet",
- "fields": [
- "toilets/disposal",
- "{amenity/toilets}"
- ],
- "moreFields": [
- "{amenity/toilets}"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "toilets",
- "toilets:disposal": "flush"
- },
- "reference": {
- "key": "toilets:disposal",
- "value": "flush"
- }
- },
- "amenity/toilets/disposal/pitlatrine": {
- "icon": "temaki-latrine",
- "fields": [
- "toilets/disposal",
- "{amenity/toilets}",
- "toilets/handwashing"
- ],
- "moreFields": [
- "{amenity/toilets}"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "toilets",
- "toilets:disposal": "pitlatrine"
- },
- "reference": {
- "key": "toilets:disposal",
- "value": "pitlatrine"
- }
- },
- "amenity/toilets/portable": {
- "icon": "temaki-latrine",
- "fields": [
- "toilets/disposal",
- "{amenity/toilets}",
- "toilets/handwashing"
- ],
- "moreFields": [
- "{amenity/toilets}"
- ],
- "geometry": [
- "point",
- "area",
- "vertex"
- ],
- "tags": {
- "amenity": "toilets",
- "portable": "yes"
- }
- },
- "amenity/townhall": {
- "icon": "temaki-town_hall",
- "fields": [
- "name",
- "operator",
- "townhall/type",
- "address",
- "building_area_yes"
- ],
- "moreFields": [
- "baby_feeding",
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone",
- "polling_station",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "townhall"
- }
- },
- "amenity/townhall/city": {
- "icon": "temaki-capitol",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "townhall",
- "townhall:type": "city"
- },
- "reference": {
- "key": "townhall:type",
- "value": "city"
- }
- },
- "amenity/toy_library": {
- "icon": "fas-chess-knight",
- "fields": [
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "level",
- "opening_hours/covid19",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "toy_library"
- }
- },
- "amenity/trolley_bay": {
- "icon": "fas-shopping-cart",
- "fields": [
- "capacity",
- "deposit/trolley",
- "payment_multi_fee"
- ],
- "moreFields": [
- "brand",
- "covered",
- "fee",
- "indoor",
- "opening_hours",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "trolley_bay"
- }
- },
- "amenity/university": {
- "icon": "maki-college",
- "fields": [
- "{amenity/college}"
- ],
- "moreFields": [
- "{amenity/college}"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "amenity": "university"
- }
- },
- "amenity/vacuum_cleaner": {
- "icon": "temaki-vacuum_station",
- "fields": [
- "operator",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "covered",
- "lit"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "manufacturer",
- "opening_hours",
- "ref/FR/siret-FR",
- "ref"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "amenity": "vacuum_cleaner"
- }
- },
- "amenity/vehicle_inspection": {
- "icon": "maki-car",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "payment_multi",
- "ref/FR/siret-FR",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "vehicle_inspection"
- }
- },
- "amenity/vending_machine": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "ref",
- "operator",
- "payment_multi",
- "currency_multi"
- ],
- "moreFields": [
- "ref",
- "blind",
- "branch_brand",
- "brand",
- "covered",
- "height",
- "indoor",
- "level",
- "manufacturer"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine"
- },
- "matchScore": 0.9
- },
- "amenity/vending_machine/bicycle_tube": {
- "icon": "temaki-vending_machine",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "bicycle_tube"
- },
- "reference": {
- "key": "vending",
- "value": "bicycle_tube"
- }
- },
- "amenity/vending_machine/bottle_return": {
- "icon": "temaki-vending_machine",
- "fields": [
- "vending",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "bottle_return"
- },
- "reference": {
- "key": "vending",
- "value": "bottle_return"
- }
- },
- "amenity/vending_machine/bread": {
- "icon": "temaki-vending_bread",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "bread"
- },
- "reference": {
- "key": "vending",
- "value": "bread"
- }
- },
- "amenity/vending_machine/cigarettes": {
- "icon": "temaki-vending_cigarettes",
- "moreFields": [
- "{amenity/vending_machine}",
- "min_age"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "cigarettes"
- },
- "reference": {
- "key": "vending",
- "value": "cigarettes"
- }
- },
- "amenity/vending_machine/coffee": {
- "icon": "temaki-vending_hot_drink",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "coffee"
- },
- "reference": {
- "key": "vending",
- "value": "coffee"
- }
- },
- "amenity/vending_machine/condoms": {
- "icon": "temaki-vending_love",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "condoms"
- },
- "reference": {
- "key": "vending",
- "value": "condoms"
- }
- },
- "amenity/vending_machine/drinks": {
- "icon": "temaki-vending_cold_drink",
- "fields": [
- "vending",
- "drink_multi",
- "{amenity/vending_machine}"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "drinks"
- },
- "reference": {
- "key": "vending",
- "value": "drinks"
- }
- },
- "amenity/vending_machine/eggs": {
- "icon": "temaki-vending_eggs",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "eggs"
- },
- "reference": {
- "key": "vending",
- "value": "eggs"
- }
- },
- "amenity/vending_machine/electronics": {
- "icon": "temaki-vending_machine",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "electronics"
- },
- "reference": {
- "key": "vending",
- "value": "electronics"
- }
- },
- "amenity/vending_machine/elongated_coin": {
- "icon": "temaki-vending_flat_coin",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "elongated_coin"
- },
- "reference": {
- "key": "vending",
- "value": "elongated_coin"
- }
- },
- "amenity/vending_machine/excrement_bags": {
- "icon": "temaki-vending_pet_waste",
- "fields": [
- "bin",
- "fee",
- "operator"
- ],
- "moreFields": [
- "ref",
- "payment_multi",
- "currency_multi",
- "blind",
- "brand",
- "covered",
- "height",
- "indoor",
- "level",
- "manufacturer"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "excrement_bags"
- },
- "reference": {
- "key": "vending",
- "value": "excrement_bags"
- }
- },
- "amenity/vending_machine/feminine_hygiene": {
- "icon": "temaki-vending_venus",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "feminine_hygiene"
- },
- "reference": {
- "key": "vending",
- "value": "feminine_hygiene"
- }
- },
- "amenity/vending_machine/food": {
- "icon": "temaki-vending_machine",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "food"
- },
- "reference": {
- "key": "vending",
- "value": "food"
- }
- },
- "amenity/vending_machine/fuel": {
- "icon": "maki-fuel",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "fuel"
- },
- "reference": {
- "key": "vending",
- "value": "fuel"
- },
- "matchScore": 0.5
- },
- "amenity/vending_machine/ice_cream": {
- "icon": "temaki-vending_ice_cream",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "ice_cream"
- },
- "reference": {
- "key": "vending",
- "value": "ice_cream"
- }
- },
- "amenity/vending_machine/ice_cubes": {
- "icon": "temaki-vending_ice",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "ice_cubes"
- },
- "reference": {
- "key": "vending",
- "value": "ice_cubes"
- }
- },
- "amenity/vending_machine/newspapers": {
- "icon": "temaki-vending_newspaper",
- "fields": [
- "vending",
- "ref",
- "operator",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "currency_multi"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "newspapers"
- },
- "reference": {
- "key": "vending",
- "value": "newspapers"
- }
- },
- "amenity/vending_machine/parking_tickets": {
- "icon": "temaki-vending_tickets",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "parking_tickets"
- },
- "reference": {
- "key": "vending",
- "value": "parking_tickets"
- },
- "matchScore": 0.94
- },
- "amenity/vending_machine/pizza": {
- "icon": "temaki-vending_machine",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "pizza"
- },
- "reference": {
- "key": "vending",
- "value": "pizza"
- }
- },
- "amenity/vending_machine/public_transport_tickets": {
- "icon": "temaki-vending_tickets",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "public_transport_tickets"
- },
- "reference": {
- "key": "vending",
- "value": "public_transport_tickets"
- }
- },
- "amenity/vending_machine/stamps": {
- "icon": "temaki-vending_stamps",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "stamps"
- },
- "reference": {
- "key": "vending",
- "value": "stamps"
- }
- },
- "amenity/vending_machine/sweets": {
- "icon": "temaki-vending_machine",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "vending_machine",
- "vending": "sweets"
- },
- "reference": {
- "key": "vending",
- "value": "sweets"
- }
- },
- "amenity/veterinary": {
- "icon": "temaki-veterinary_care",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi_fee",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "veterinary"
- }
- },
- "amenity/waste_basket": {
- "icon": "maki-waste-basket",
- "fields": [
- "operator",
- "waste",
- "collection_times",
- "material",
- "colour"
- ],
- "moreFields": [
- "covered",
- "indoor",
- "manufacturer"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "amenity": "waste_basket"
- }
- },
- "amenity/waste_disposal": {
- "icon": "fas-dumpster",
- "fields": [
- "operator",
- "waste",
- "collection_times",
- "access_simple"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "colour",
- "height",
- "manufacturer",
- "material"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "waste_disposal"
- }
- },
- "amenity/waste_transfer_station": {
- "icon": "fas-trash-restore",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "waste",
- "address",
- "opening_hours",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "email",
- "fax",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "amenity": "waste_transfer_station"
- }
- },
- "amenity/waste/dog_excrement": {
- "icon": "maki-waste-basket",
- "fields": [
- "collection_times"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "waste_basket",
- "waste": "dog_excrement"
- },
- "reference": {
- "key": "waste",
- "value": "dog_excrement"
- }
- },
- "amenity/water_point": {
- "icon": "maki-drinking-water",
- "fields": [
- "operator",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "opening_hours"
- ],
- "moreFields": [
- "covered",
- "drinking_water",
- "lit",
- "opening_hours/covid19",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "water_point"
- }
- },
- "amenity/watering_place": {
- "icon": "maki-drinking-water",
- "fields": [
- "operator",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "opening_hours"
- ],
- "moreFields": [
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "amenity": "watering_place"
- }
- },
- "amenity/weighbridge": {
- "icon": "fas-weight",
- "fields": [
- "ref",
- "operator",
- "access_simple",
- "maxweight"
- ],
- "moreFields": [
- "address",
- "colour",
- "lit",
- "manufacturer",
- "material",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "amenity": "weighbridge"
- }
- },
- "area": {
- "fields": [
- "name"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "area": "yes"
- },
- "matchScore": 0.1
- },
- "area/footway": {
- "fields": [
- "surface"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "area:highway": "footway"
- }
- },
- "area/highway": {
- "fields": [
- "area/highway",
- "surface"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "area:highway": "*"
- }
- },
- "attraction/amusement_ride": {
- "icon": "maki-amusement-park",
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "attraction": "amusement_ride"
- }
- },
- "attraction/animal": {
- "icon": "maki-zoo",
- "fields": [
- "name",
- "operator",
- "species/wikidata"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "attraction": "animal"
- }
- },
- "attraction/big_wheel": {
- "icon": "maki-amusement-park",
- "fields": [
- "{attraction}",
- "height"
- ],
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "attraction": "big_wheel"
- }
- },
- "attraction/bumper_car": {
- "icon": "fas-car-crash",
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "attraction": "bumper_car"
- }
- },
- "attraction/bungee_jumping": {
- "icon": "maki-pitch",
- "fields": [
- "{attraction}",
- "height"
- ],
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "attraction": "bungee_jumping"
- }
- },
- "attraction/carousel": {
- "icon": "temaki-amusement_park",
- "fields": [
- "{attraction}",
- "building_area_yes"
- ],
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "attraction": "carousel"
- }
- },
- "attraction/dark_ride": {
- "icon": "maki-rail-metro",
- "fields": [
- "{attraction}",
- "building_area_yes"
- ],
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "attraction": "dark_ride"
- }
- },
- "attraction/drop_tower": {
- "icon": "temaki-tower",
- "fields": [
- "{attraction}",
- "height"
- ],
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "attraction": "drop_tower"
- }
- },
- "attraction/kiddie_ride": {
- "icon": "temaki-amusement_park",
- "fields": [
- "{attraction}",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "attraction": "kiddie_ride"
- }
- },
- "attraction/log_flume": {
- "icon": "maki-ferry",
- "fields": [
- "{attraction}",
- "height"
- ],
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "attraction": "log_flume"
- }
- },
- "attraction/maze": {
- "icon": "temaki-maze",
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "attraction": "maze"
- }
- },
- "attraction/pirate_ship": {
- "icon": "maki-danger",
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "attraction": "pirate_ship"
- }
- },
- "attraction/river_rafting": {
- "icon": "maki-ferry",
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "line"
- ],
- "tags": {
- "attraction": "river_rafting"
- }
- },
- "attraction/roller_coaster": {
- "icon": "temaki-roller_coaster",
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "attraction": "roller_coaster"
- }
- },
- "attraction/summer_toboggan": {
- "icon": "temaki-sledding",
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "attraction": "summer_toboggan"
- }
- },
- "attraction/swing_carousel": {
- "icon": "temaki-tower",
- "fields": [
- "{attraction}",
- "height"
- ],
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "attraction": "swing_carousel"
- }
- },
- "attraction/train": {
- "icon": "temaki-train_kids",
- "fields": [
- "{attraction}",
- "fee",
- "charge_fee"
- ],
- "geometry": [
- "point",
- "line"
- ],
- "tags": {
- "attraction": "train"
- }
- },
- "attraction/water_slide": {
- "icon": "temaki-slide",
- "fields": [
- "{attraction}",
- "height"
- ],
- "moreFields": [
- "{attraction}",
- "max_age",
- "min_age"
- ],
- "geometry": [
- "point",
- "line"
- ],
- "tags": {
- "attraction": "water_slide"
- }
- },
- "barrier": {
- "icon": "maki-roadblock",
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "barrier": "*"
- },
- "fields": [
- "barrier"
- ],
- "moreFields": [
- "level"
- ],
- "matchScore": 0.4
- },
- "barrier/ditch": {
- "icon": "temaki-trench",
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "ditch"
- },
- "matchScore": 0.25
- },
- "barrier/entrance": {
- "icon": "maki-entrance-alt1",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "entrance"
- },
- "searchable": false
- },
- "barrier/handrail": {
- "icon": "temaki-railing",
- "geometry": [
- "line"
- ],
- "tags": {
- "barrier": "handrail"
- },
- "searchable": false
- },
- "barrier/log": {
- "icon": "maki-roadblock",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "log"
- },
- "searchable": false
- },
- "barrier/planter": {
- "icon": "maki-garden",
- "fields": [
- "access",
- "material"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "planter",
- "man_made": "planter"
- },
- "searchable": false
- },
- "barrier/yes": {
- "icon": "maki-roadblock",
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "barrier": "yes"
- },
- "fields": [
- "barrier"
- ],
- "searchable": false,
- "matchScore": 0.5
- },
- "barrier/block": {
- "icon": "fas-cube",
- "fields": [
- "access",
- "material"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "barrier": "block"
- }
- },
- "barrier/bollard_line": {
- "icon": "temaki-bollard_row",
- "fields": [
- "access",
- "bollard",
- "height",
- "material",
- "colour"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "barrier": "bollard"
- }
- },
- "barrier/bollard": {
- "icon": "temaki-bollard",
- "fields": [
- "access",
- "bollard",
- "height",
- "width",
- "material",
- "colour"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "barrier": "bollard"
- }
- },
- "barrier/border_control": {
- "icon": "temaki-passport_checkpoint",
- "fields": [
- "access",
- "building_area_yes"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "vertex",
- "area"
- ],
- "tags": {
- "barrier": "border_control"
- }
- },
- "barrier/bump_gate": {
- "icon": "maki-roadblock",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "bump_gate"
- }
- },
- "barrier/bus_trap": {
- "icon": "maki-roadblock",
- "fields": [
- "access"
- ],
- "moreFields": [
- "maxwidth"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "bus_trap"
- }
- },
- "barrier/cable_barrier": {
- "icon": "maki-roadblock",
- "fields": [
- "height",
- "material"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "barrier": "cable_barrier"
- }
- },
- "barrier/cattle_grid": {
- "icon": "temaki-cattle_grid",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "cattle_grid"
- }
- },
- "barrier/chain": {
- "icon": "temaki-rope_fence",
- "fields": [
- "access",
- "locked"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "chain"
- }
- },
- "barrier/city_wall": {
- "icon": "temaki-wall",
- "fields": [
- "height",
- "material"
- ],
- "moreFields": [
- "{barrier}",
- "two_sided"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "city_wall"
- }
- },
- "barrier/cycle_barrier": {
- "icon": "temaki-cycle_barrier",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "cycle_barrier"
- }
- },
- "barrier/fence": {
- "icon": "maki-fence",
- "fields": [
- "fence_type",
- "height",
- "material"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "barrier": "fence"
- },
- "matchScore": 0.25
- },
- "barrier/fence/railing": {
- "icon": "temaki-railing",
- "geometry": [
- "line"
- ],
- "tags": {
- "barrier": "fence",
- "fence_type": "railing"
- },
- "matchScore": 0.5
- },
- "barrier/full-height_turnstile": {
- "icon": "maki-roadblock",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "full-height_turnstile"
- }
- },
- "barrier/gate": {
- "icon": "temaki-gate",
- "fields": [
- "access",
- "locked",
- "wheelchair",
- "opening_hours",
- "height",
- "material"
- ],
- "moreFields": [
- "colour",
- "manufacturer",
- "opening_hours/covid19",
- "operator",
- "ref"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "gate"
- }
- },
- "barrier/guard_rail": {
- "icon": "temaki-guard_rail",
- "fields": [
- "material"
- ],
- "moreFields": [
- "{barrier}",
- "two_sided"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "barrier": "guard_rail"
- },
- "matchScore": 0.75
- },
- "barrier/hampshire_gate": {
- "icon": "temaki-gate",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "hampshire_gate"
- }
- },
- "barrier/hedge": {
- "icon": "temaki-hedge",
- "fields": [
- "height"
- ],
- "moreFields": [
- "species/wikidata"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "hedge"
- },
- "matchScore": 0.25
- },
- "barrier/height_restrictor": {
- "icon": "temaki-height_restrictor",
- "fields": [
- "maxheight"
- ],
- "moreFields": [
- "direction_vertex"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "height_restrictor"
- }
- },
- "barrier/jersey_barrier": {
- "icon": "maki-roadblock",
- "fields": [
- "height",
- "material"
- ],
- "moreFields": [
- "access"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "jersey_barrier"
- }
- },
- "barrier/kerb": {
- "icon": "temaki-kerb-raised",
- "fields": [
- "kerb",
- "tactile_paving",
- "wheelchair",
- "two_sided"
- ],
- "moreFields": [
- "material"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "kerb"
- },
- "matchScore": 0.5
- },
- "barrier/kerb/flush": {
- "icon": "temaki-kerb-flush",
- "fields": [
- "kerb",
- "{barrier/kerb}"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "kerb": "flush"
- },
- "addTags": {
- "barrier": "kerb",
- "kerb": "flush"
- },
- "reference": {
- "key": "kerb",
- "value": "flush"
- },
- "matchScore": 0.55
- },
- "barrier/kerb/lowered": {
- "icon": "temaki-kerb-lowered",
- "fields": [
- "kerb",
- "{barrier/kerb}",
- "kerb/height"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "kerb": "lowered"
- },
- "addTags": {
- "barrier": "kerb",
- "kerb": "lowered"
- },
- "reference": {
- "key": "kerb",
- "value": "lowered"
- },
- "matchScore": 0.55
- },
- "barrier/kerb/raised": {
- "icon": "temaki-kerb-raised",
- "fields": [
- "kerb",
- "{barrier/kerb}",
- "kerb/height"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "kerb": "raised"
- },
- "addTags": {
- "barrier": "kerb",
- "kerb": "raised"
- },
- "reference": {
- "key": "kerb",
- "value": "raised"
- },
- "matchScore": 0.55
- },
- "barrier/kerb/rolled": {
- "icon": "temaki-kerb-rolled",
- "fields": [
- "kerb",
- "{barrier/kerb}",
- "kerb/height"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "kerb": "rolled"
- },
- "addTags": {
- "barrier": "kerb",
- "kerb": "rolled"
- },
- "reference": {
- "key": "kerb",
- "value": "rolled"
- },
- "matchScore": 0.55
- },
- "barrier/kissing_gate": {
- "icon": "temaki-gate",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "kissing_gate"
- }
- },
- "barrier/lift_gate": {
- "icon": "temaki-lift_gate",
- "fields": [
- "access",
- "locked",
- "opening_hours"
- ],
- "moreFields": [
- "{barrier}",
- "opening_hours/covid19"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "lift_gate"
- }
- },
- "barrier/motorcycle_barrier": {
- "icon": "maki-roadblock",
- "fields": [
- "access"
- ],
- "moreFields": [
- "wheelchair"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "motorcycle_barrier"
- }
- },
- "barrier/retaining_wall": {
- "icon": "temaki-wall",
- "fields": [
- "height",
- "material"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "retaining_wall"
- }
- },
- "barrier/rope": {
- "icon": "temaki-rope_fence",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "barrier": "rope"
- }
- },
- "barrier/sally_port": {
- "icon": "fas-dungeon",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "sally_port"
- }
- },
- "barrier/spikes": {
- "icon": "temaki-spike_strip",
- "fields": [
- "direction_vertex",
- "access",
- "height",
- "colour"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "spikes"
- },
- "matchScore": 0.5
- },
- "barrier/stile": {
- "icon": "temaki-stile_squeezer",
- "fields": [
- "access",
- "stile",
- "material"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "stile"
- }
- },
- "barrier/swing_gate": {
- "icon": "temaki-gate",
- "fields": [
- "{barrier/gate}"
- ],
- "moreFields": [
- "{barrier/gate}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "swing_gate"
- }
- },
- "barrier/toll_booth": {
- "icon": "maki-toll",
- "fields": [
- "access",
- "building_area_yes",
- "payment_multi",
- "currency_multi"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "opening_hours",
- "opening_hours/covid19",
- "phone"
- ],
- "geometry": [
- "vertex",
- "area"
- ],
- "tags": {
- "barrier": "toll_booth"
- }
- },
- "barrier/turnstile": {
- "icon": "temaki-turnstile",
- "fields": [
- "access"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "barrier": "turnstile"
- }
- },
- "barrier/wall": {
- "icon": "temaki-wall",
- "fields": [
- "wall",
- "height",
- "material"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "wall"
- },
- "matchScore": 0.25
- },
- "barrier/wall/noise_barrier": {
- "icon": "temaki-wall",
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "barrier": "wall",
- "wall": "noise_barrier"
- },
- "matchScore": 0.27
- },
- "barrier/wicket_gate": {
- "icon": "temaki-gate",
- "geometry": [
- "vertex",
- "line"
- ],
- "fields": [
- "access"
- ],
- "moreFields": [
- "entrance"
- ],
- "tags": {
- "barrier": "wicket_gate"
- }
- },
- "boundary/administrative": {
- "fields": [
- "name",
- "admin_level"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "boundary": "administrative"
- },
- "matchScore": 0.5
- },
- "bridge/support": {
- "icon": "fas-archway",
- "fields": [
- "bridge/support",
- "height",
- "layer",
- "material"
- ],
- "moreFields": [
- "colour",
"seamark/type"
],
"geometry": [
@@ -8168,1024 +1056,2358 @@
"area"
],
"tags": {
- "bridge:support": "*"
+ "waterway": "sanitary_dump_station"
+ },
+ "addTags": {
+ "waterway": "sanitary_dump_station",
+ "seamark:type": "small_craft_facility",
+ "seamark:small_craft_facility:category": "pump-out"
}
},
- "bridge/support/pier": {
- "icon": "fas-archway",
+ "waterway/river": {
+ "icon": "iD-waterway-river",
"fields": [
- "bridge/support",
- "{bridge/support}"
+ "name",
+ "structure_waterway",
+ "width",
+ "intermittent",
+ "tidal"
+ ],
+ "moreFields": [
+ "covered",
+ "fishing",
+ "gnis/feature_id-US",
+ "salt"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "waterway": "river"
+ }
+ },
+ "waterway/milestone": {
+ "icon": "temaki-milestone",
+ "fields": [
+ "distance",
+ "direction_vertex"
+ ],
+ "moreFields": [
+ "seamark/type"
],
"geometry": [
"point",
- "vertex",
- "area"
- ],
- "tags": {
- "bridge:support": "pier"
- }
- },
- "building_part": {
- "icon": "maki-building",
- "fields": [
- "building/part",
- "building/levels",
- "height",
- "building/material",
- "roof/colour"
- ],
- "moreFields": [
- "layer"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building:part": "*"
- },
- "matchScore": 0.5
- },
- "building": {
- "icon": "maki-home",
- "fields": [
- "name",
- "building",
- "building/levels",
- "height",
- "address"
- ],
- "moreFields": [
- "architect",
- "building/levels/underground",
- "building/material",
- "building/prefabricated",
- "ele",
- "gnis/feature_id-US",
- "layer",
- "not/name",
- "operator",
- "roof/colour",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "*"
- },
- "matchScore": 0.6
- },
- "building/bunker": {
- "icon": "temaki-bunker",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "bunker"
- },
- "matchScore": 0.5,
- "searchable": false
- },
- "building/entrance": {
- "icon": "maki-entrance-alt1",
- "fields": [],
- "moreFields": [],
- "geometry": [
"vertex"
],
"tags": {
- "building": "entrance"
- },
- "searchable": false
+ "waterway": "milestone"
+ }
},
- "building/manufacture": {
- "icon": "maki-industry",
+ "waterway/lock_gate": {
+ "icon": "maki-dam",
"geometry": [
- "area"
+ "vertex",
+ "line"
+ ],
+ "fields": [
+ "name",
+ "ref",
+ "height",
+ "material"
],
"tags": {
- "building": "manufacture"
+ "waterway": "lock_gate"
},
- "matchScore": 0.5,
- "searchable": false
+ "addTags": {
+ "waterway": "lock_gate",
+ "seamark:type": "gate"
+ }
},
- "building/outbuilding": {
- "icon": "maki-building",
- "geometry": [
- "area"
+ "waterway/fuel": {
+ "icon": "maki-fuel",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "opening_hours",
+ "fuel/fuel_multi"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "branch_brand",
+ "brand",
+ "building",
+ "payment_multi",
+ "seamark/type",
+ "wheelchair"
],
- "tags": {
- "building": "outbuilding"
- },
- "matchScore": 0.5,
- "searchable": false
- },
- "building/train_station": {
- "icon": "maki-building",
"geometry": [
"point",
"vertex",
"area"
],
"tags": {
- "building": "train_station"
+ "waterway": "fuel"
},
- "matchScore": 0.5,
- "searchable": false
- },
- "building/allotment_house": {
- "icon": "maki-building",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "allotment_house"
- },
- "matchScore": 0.5
- },
- "building/apartments": {
- "icon": "maki-building",
- "fields": [
- "{building}",
- "building/flats"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "apartments"
- },
- "matchScore": 0.5
- },
- "building/barn": {
- "icon": "temaki-barn",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "barn"
- },
- "matchScore": 0.5
- },
- "building/boathouse": {
- "icon": "maki-harbor",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "boathouse"
- },
- "matchScore": 0.5
- },
- "building/bungalow": {
- "icon": "maki-home",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "bungalow"
- },
- "matchScore": 0.5
- },
- "building/cabin": {
- "icon": "temaki-cabin",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "cabin"
- },
- "matchScore": 0.5
- },
- "building/carport": {
- "icon": "temaki-carport",
- "fields": [
- "{building}",
- "capacity"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "carport"
- },
- "matchScore": 0.5
- },
- "building/cathedral": {
- "icon": "fas-church",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "cathedral"
- },
- "matchScore": 0.5
- },
- "building/chapel": {
- "icon": "maki-place-of-worship",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "chapel"
- },
- "matchScore": 0.5
- },
- "building/church": {
- "icon": "fas-church",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "church"
- },
- "matchScore": 0.5
- },
- "building/civic": {
- "icon": "maki-building",
- "fields": [
- "{building}",
- "smoking"
- ],
- "moreFields": [
- "{building}",
- "polling_station"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "civic"
- },
- "matchScore": 0.5
- },
- "building/college": {
- "icon": "fas-school",
- "moreFields": [
- "{building}",
- "polling_station"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "college"
- },
- "matchScore": 0.5
- },
- "building/commercial": {
- "icon": "maki-suitcase",
- "fields": [
- "{building}",
- "smoking"
- ],
- "moreFields": [
- "{building}",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "commercial"
- },
- "matchScore": 0.5
- },
- "building/construction": {
- "icon": "maki-building",
- "fields": [
- "name",
- "construction",
- "address",
- "opening_date",
- "check_date"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "construction"
- },
- "matchScore": 0.5
- },
- "building/cowshed": {
- "icon": "temaki-barn",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "cowshed"
- },
- "matchScore": 0.5
- },
- "building/detached": {
- "icon": "maki-home",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "detached"
- },
- "matchScore": 0.5
- },
- "building/dormitory": {
- "icon": "maki-building",
- "fields": [
- "{building}",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "dormitory"
- },
- "matchScore": 0.5
- },
- "building/farm_auxiliary": {
- "icon": "maki-farm",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "farm_auxiliary"
- },
- "matchScore": 0.5
- },
- "building/farm": {
- "icon": "maki-farm",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "farm"
- },
- "matchScore": 0.5
- },
- "building/fire_station": {
- "icon": "fas-house-fire",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "fire_station"
- },
- "matchScore": 0.5
- },
- "building/garage": {
- "icon": "fas-warehouse",
- "fields": [
- "{building/garages}"
- ],
- "moreFields": [
- "{building/garages}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "garage"
- },
- "matchScore": 0.5
- },
- "building/garages": {
- "icon": "fas-warehouse",
- "fields": [
- "capacity"
- ],
- "moreFields": [
- "building",
- "building/levels",
- "height",
- "address",
- "{building}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "garages"
- },
- "matchScore": 0.5
- },
- "building/ger": {
- "icon": "temaki-hut",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "ger"
+ "addTags": {
+ "waterway": "fuel",
+ "seamark:type": "small_craft_facility",
+ "seamark:small_craft_facility:category": "fuel_station"
}
},
- "building/grandstand": {
- "icon": "maki-building",
+ "waterway/fish_pass": {
+ "icon": "temaki-fish_ladder",
+ "fields": [
+ "name",
+ "structure_waterway",
+ "width",
+ "seasonal"
+ ],
+ "moreFields": [
+ "covered",
+ "gnis/feature_id-US",
+ "salt"
+ ],
"geometry": [
- "area"
+ "line"
],
"tags": {
- "building": "grandstand"
- },
- "matchScore": 0.5
+ "waterway": "fish_pass"
+ }
},
- "building/greenhouse": {
- "icon": "maki-garden-centre",
+ "waterway/drain": {
+ "icon": "iD-waterway-ditch",
+ "fields": [
+ "structure_waterway",
+ "intermittent"
+ ],
+ "moreFields": [
+ "covered"
+ ],
"geometry": [
- "area"
+ "line"
],
"tags": {
- "building": "greenhouse"
- },
- "matchScore": 0.5
+ "waterway": "drain"
+ }
},
- "building/hangar": {
- "icon": "temaki-hangar",
+ "waterway/dock": {
+ "icon": "maki-harbor",
+ "fields": [
+ "name",
+ "dock",
+ "operator"
+ ],
+ "geometry": [
+ "area",
+ "vertex",
+ "point"
+ ],
+ "tags": {
+ "waterway": "dock"
+ }
+ },
+ "waterway/ditch": {
+ "icon": "iD-waterway-ditch",
+ "fields": [
+ "{waterway/drain}"
+ ],
+ "moreFields": [
+ "{waterway/drain}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "waterway": "ditch"
+ }
+ },
+ "waterway/dam": {
+ "icon": "maki-dam",
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "gnis/feature_id-US",
+ "height",
+ "material"
+ ],
+ "moreFields": [
+ "seamark/type"
+ ],
+ "tags": {
+ "waterway": "dam"
+ }
+ },
+ "waterway/canal": {
+ "icon": "iD-waterway-canal",
+ "fields": [
+ "name",
+ "structure_canal",
+ "width",
+ "usage_waterway",
+ "intermittent",
+ "lock"
+ ],
+ "moreFields": [
+ "fishing",
+ "gnis/feature_id-US",
+ "salt",
+ "tidal"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "waterway": "canal"
+ }
+ },
+ "waterway/boatyard": {
+ "icon": "temaki-boat",
+ "fields": [
+ "name",
+ "operator"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "gnis/feature_id-US",
+ "wheelchair"
+ ],
+ "geometry": [
+ "area",
+ "vertex",
+ "point"
+ ],
+ "tags": {
+ "waterway": "boatyard"
+ }
+ },
+ "waterway/canal/lock": {
+ "icon": "iD-waterway-canal",
+ "fields": [
+ "name",
+ "width",
+ "lock"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US",
+ "intermittent",
+ "salt",
+ "tidal"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "waterway": "canal",
+ "lock": "yes"
+ }
+ },
+ "type/waterway": {
+ "icon": "iD-waterway-stream",
+ "fields": [
+ "name",
+ "waterway",
+ "destination_waterway",
+ "ref"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "waterway"
+ }
+ },
+ "type/site": {
+ "icon": "iD-relation",
+ "fields": [
+ "name",
+ "site"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "site"
+ }
+ },
+ "type/route_master": {
+ "icon": "iD-route-master",
+ "fields": [
+ "name",
+ "route_master",
+ "ref",
+ "operator",
+ "network"
+ ],
+ "moreFields": [
+ "colour",
+ "interval",
+ "opening_hours",
+ "wheelchair"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route_master"
+ }
+ },
+ "type/route": {
+ "icon": "iD-route",
+ "fields": [
+ "name",
+ "route",
+ "ref_route",
+ "operator",
+ "network",
+ "network/type"
+ ],
+ "moreFields": [
+ "distance"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route"
+ }
+ },
+ "type/restriction": {
+ "icon": "iD-restriction",
+ "fields": [
+ "restriction",
+ "except"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "restriction"
+ }
+ },
+ "type/multipolygon": {
+ "icon": "iD-multipolygon",
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "multipolygon"
+ },
+ "removeTags": {},
+ "matchScore": 0.1
+ },
+ "type/enforcement": {
+ "icon": "iD-relation",
+ "fields": [
+ "enforcement"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "enforcement"
+ }
+ },
+ "type/destination_sign": {
+ "icon": "iD-relation",
+ "fields": [
+ "destination",
+ "destination/ref",
+ "destination/symbol",
+ "distance"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "destination_sign"
+ }
+ },
+ "type/connectivity": {
+ "icon": "iD-relation",
+ "fields": [
+ "connectivity"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "connectivity"
+ }
+ },
+ "type/boundary": {
+ "icon": "iD-boundary",
+ "fields": [
+ "name",
+ "boundary"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "boundary"
+ }
+ },
+ "type/associatedStreet": {
+ "icon": "iD-relation",
"fields": [
"name"
],
"geometry": [
- "area"
+ "relation"
],
"tags": {
- "building": "hangar"
+ "type": "associatedStreet"
},
- "matchScore": 0.5
+ "searchable": false
},
- "building/hospital": {
- "icon": "fas-hospital-alt",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "hospital"
- },
- "matchScore": 0.5
- },
- "building/hotel": {
- "icon": "fas-hotel",
+ "type/site/climbing/crag": {
+ "icon": "temaki-climbing",
"fields": [
- "{building}",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "hotel"
- },
- "matchScore": 0.5
- },
- "building/house": {
- "icon": "maki-home",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "house"
- },
- "matchScore": 0.5
- },
- "building/houseboat": {
- "icon": "temaki-houseboat",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "houseboat"
- },
- "matchScore": 0.5
- },
- "building/hut": {
- "icon": "temaki-hut",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "hut"
- },
- "matchScore": 0.5
- },
- "building/industrial": {
- "icon": "maki-industry",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "industrial"
- },
- "matchScore": 0.5
- },
- "building/kindergarten": {
- "icon": "fas-school",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "kindergarten"
- },
- "matchScore": 0.5
- },
- "building/mosque": {
- "icon": "fas-mosque",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "mosque"
- },
- "matchScore": 0.5
- },
- "building/office": {
- "icon": "maki-suitcase",
- "fields": [
- "{building}",
- "smoking"
+ "{climbing/crag}"
],
"moreFields": [
- "{building}",
- "phone"
+ "{climbing/crag}"
],
"geometry": [
- "area"
+ "relation"
],
"tags": {
- "building": "office"
- },
- "matchScore": 0.5
- },
- "building/pavilion": {
- "icon": "maki-building",
- "fields": [
- "{building}",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "pavilion"
- },
- "matchScore": 0.5
- },
- "building/public": {
- "icon": "maki-building",
- "fields": [
- "{building}",
- "smoking"
- ],
- "moreFields": [
- "{building}",
- "polling_station"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "public"
- },
- "matchScore": 0.5
- },
- "building/residential": {
- "icon": "maki-residential-community",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "residential"
- },
- "matchScore": 0.5
- },
- "building/retail": {
- "icon": "maki-commercial",
- "fields": [
- "{building}",
- "smoking"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "retail"
- },
- "matchScore": 0.5
- },
- "building/roof": {
- "icon": "maki-shelter",
- "fields": [
- "{building}",
- "layer"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "roof"
+ "type": "site",
+ "climbing": "crag"
},
"addTags": {
- "building": "roof",
- "layer": "1"
+ "climbing": "crag",
+ "site": "climbing",
+ "sport": "climbing",
+ "type": "site"
},
- "matchScore": 0.5
+ "reference": {
+ "key": "climbing",
+ "value": "crag"
+ }
},
- "building/ruins": {
- "icon": "temaki-ruins",
- "geometry": [
- "area"
+ "type/site/climbing/area": {
+ "icon": "temaki-climbing",
+ "fields": [
+ "name"
],
- "tags": {
- "building": "ruins"
- },
- "matchScore": 0.5
- },
- "building/school": {
- "icon": "fas-school",
"moreFields": [
- "{building}",
- "polling_station"
+ "website"
],
"geometry": [
- "area"
+ "relation"
],
"tags": {
- "building": "school"
+ "climbing": "area",
+ "type": "site"
},
- "matchScore": 0.5
- },
- "building/semidetached_house": {
- "icon": "maki-home",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "semidetached_house"
+ "addTags": {
+ "climbing": "area",
+ "site": "climbing",
+ "sport": "climbing",
+ "type": "site"
},
- "matchScore": 0.5
+ "reference": {
+ "key": "climbing",
+ "value": "crag"
+ }
},
- "building/service": {
- "icon": "maki-building",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "service"
- },
- "matchScore": 0.5
- },
- "building/shed": {
- "icon": "fas-warehouse",
+ "type/route/trolleybus": {
+ "icon": "temaki-trolleybus",
"fields": [
- "{building}",
- "lockable"
+ "{type/route/train}"
+ ],
+ "moreFields": [
+ "{type/route/train}"
],
"geometry": [
- "area"
+ "relation"
],
"tags": {
- "building": "shed"
+ "type": "route",
+ "route": "trolleybus"
},
- "matchScore": 0.5
+ "reference": {
+ "key": "route",
+ "value": "trolleybus"
+ }
},
- "building/stable": {
- "icon": "temaki-horse_shelter",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "stable"
- },
- "matchScore": 0.5
- },
- "building/stadium": {
- "icon": "maki-stadium",
+ "type/route/tram": {
+ "icon": "temaki-tram",
"fields": [
- "{building}",
+ "{type/route/train}"
+ ],
+ "moreFields": [
+ "{type/route/train}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "tram"
+ },
+ "reference": {
+ "key": "route",
+ "value": "tram"
+ }
+ },
+ "type/route/train": {
+ "icon": "temaki-train",
+ "fields": [
+ "name",
+ "ref_route",
+ "operator",
+ "network",
+ "from",
+ "to",
+ "via"
+ ],
+ "moreFields": [
+ "colour",
+ "direction_cardinal-US-CA-NZ",
+ "distance",
+ "duration",
+ "interval",
+ "opening_hours",
+ "roundtrip",
+ "wheelchair"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "train"
+ },
+ "reference": {
+ "key": "route",
+ "value": "train"
+ }
+ },
+ "type/route/subway": {
+ "icon": "temaki-subway",
+ "fields": [
+ "{type/route/train}"
+ ],
+ "moreFields": [
+ "{type/route/train}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "subway"
+ },
+ "reference": {
+ "key": "route",
+ "value": "subway"
+ }
+ },
+ "type/route/road": {
+ "icon": "iD-highway-unclassified",
+ "fields": [
+ "name",
+ "ref_route",
+ "network_road",
+ "direction_cardinal-US-CA-NZ",
+ "from",
+ "to",
+ "via"
+ ],
+ "moreFields": [
+ "colour",
+ "distance",
+ "roundtrip"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "road"
+ },
+ "reference": {
+ "key": "route",
+ "value": "road"
+ }
+ },
+ "type/route/railway": {
+ "icon": "temaki-railway_track",
+ "fields": [
+ "name",
+ "ref_route",
+ "operator",
+ "network",
+ "from",
+ "to",
+ "via"
+ ],
+ "moreFields": [
+ "distance"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "railway"
+ },
+ "reference": {
+ "key": "route",
+ "value": "railway"
+ }
+ },
+ "type/route/power": {
+ "icon": "iD-power-line",
+ "fields": [
+ "name",
+ "ref_route",
+ "operator",
+ "from",
+ "to"
+ ],
+ "moreFields": [
+ "distance"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "power"
+ },
+ "reference": {
+ "key": "route",
+ "value": "power"
+ }
+ },
+ "type/route/piste": {
+ "icon": "fas-skiing",
+ "fields": [
+ "name",
+ "piste/type",
+ "ref_route",
+ "operator",
+ "from",
+ "to",
+ "via"
+ ],
+ "moreFields": [
+ "ascent",
+ "colour",
+ "descent",
+ "distance",
+ "roundtrip"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "piste"
+ },
+ "reference": {
+ "key": "route",
+ "value": "piste"
+ }
+ },
+ "type/route/pipeline": {
+ "icon": "iD-pipeline-line",
+ "fields": [
+ "{type/route/power}"
+ ],
+ "moreFields": [
+ "{type/route/power}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "pipeline"
+ },
+ "reference": {
+ "key": "route",
+ "value": "pipeline"
+ }
+ },
+ "type/route/mtb": {
+ "icon": "maki-bicycle",
+ "fields": [
+ "{type/route/bicycle}"
+ ],
+ "moreFields": [
+ "{type/route/bicycle}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "mtb"
+ },
+ "reference": {
+ "key": "route",
+ "value": "mtb"
+ }
+ },
+ "type/route/monorail": {
+ "icon": "temaki-monorail",
+ "fields": [
+ "{type/route/train}"
+ ],
+ "moreFields": [
+ "{type/route/train}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "monorail"
+ },
+ "reference": {
+ "key": "route",
+ "value": "monorail"
+ }
+ },
+ "type/route/light_rail": {
+ "icon": "temaki-light_rail",
+ "fields": [
+ "{type/route/train}"
+ ],
+ "moreFields": [
+ "{type/route/train}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "light_rail"
+ },
+ "reference": {
+ "key": "route",
+ "value": "light_rail"
+ }
+ },
+ "type/route/horse": {
+ "icon": "maki-horse-riding",
+ "fields": [
+ "name",
+ "ref_route",
+ "operator",
+ "network_horse",
+ "network/type",
+ "from",
+ "to",
+ "via"
+ ],
+ "moreFields": [
+ "ascent",
+ "colour",
+ "descent",
+ "distance"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "horse"
+ },
+ "reference": {
+ "key": "route",
+ "value": "horse"
+ }
+ },
+ "type/route/hiking": {
+ "icon": "fas-hiking",
+ "fields": [
+ "name",
+ "ref_route",
+ "operator",
+ "network_foot",
+ "network/type",
+ "from",
+ "to",
+ "via"
+ ],
+ "moreFields": [
+ "ascent",
+ "cai_scale-IT",
+ "colour",
+ "descent",
+ "distance",
+ "roundtrip"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "hiking"
+ },
+ "reference": {
+ "key": "route",
+ "value": "hiking"
+ }
+ },
+ "type/route/foot": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "{type/route/hiking}"
+ ],
+ "moreFields": [
+ "{type/route/hiking}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "foot"
+ },
+ "reference": {
+ "key": "route",
+ "value": "foot"
+ }
+ },
+ "type/route/ferry": {
+ "icon": "temaki-ferry",
+ "fields": [
+ "{route/ferry}"
+ ],
+ "moreFields": [
+ "{route/ferry}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "ferry"
+ },
+ "reference": {
+ "key": "route",
+ "value": "ferry"
+ }
+ },
+ "type/route/detour": {
+ "icon": "iD-route-detour",
+ "fields": [
+ "name",
+ "ref_route",
+ "from",
+ "to"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "detour"
+ },
+ "reference": {
+ "key": "route",
+ "value": "detour"
+ }
+ },
+ "type/route/climbing": {
+ "icon": "temaki-climbing",
+ "geometry": [
+ "relation"
+ ],
+ "fields": [
+ "{climbing/route_bottom}"
+ ],
+ "moreFields": [
+ "{climbing/route_bottom}"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "climbing"
+ },
+ "addTags": {
+ "climbing": "route",
+ "route": "climbing",
+ "sport": "climbing",
+ "type": "route"
+ },
+ "reference": {
+ "key": "climbing",
+ "value": "route"
+ }
+ },
+ "type/route/bus": {
+ "icon": "temaki-bus",
+ "fields": [
+ "{type/route/train}"
+ ],
+ "moreFields": [
+ "{type/route/train}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "bus"
+ },
+ "reference": {
+ "key": "route",
+ "value": "bus"
+ }
+ },
+ "type/route/bicycle": {
+ "icon": "maki-bicycle",
+ "fields": [
+ "name",
+ "ref_route",
+ "network_bicycle",
+ "cycle_network",
+ "network/type",
+ "from",
+ "to",
+ "via"
+ ],
+ "moreFields": [
+ "ascent",
+ "colour",
+ "descent",
+ "direction_cardinal-US-CA-NZ",
+ "distance",
+ "roundtrip"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "bicycle"
+ },
+ "reference": {
+ "key": "route",
+ "value": "bicycle"
+ }
+ },
+ "type/route/aerialway": {
+ "icon": "temaki-gondola_lift",
+ "fields": [
+ "{type/route/train}"
+ ],
+ "moreFields": [
+ "{type/route/train}"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "route",
+ "route": "aerialway"
+ },
+ "reference": {
+ "key": "route",
+ "value": "aerialway"
+ }
+ },
+ "type/restriction/only_u_turn": {
+ "icon": "iD-restriction-only-u-turn",
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "restriction",
+ "restriction": "only_u_turn"
+ },
+ "reference": {
+ "key": "restriction",
+ "value": "only_u_turn"
+ }
+ },
+ "type/restriction/only_straight_on": {
+ "icon": "iD-restriction-only-straight-on",
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "restriction",
+ "restriction": "only_straight_on"
+ },
+ "reference": {
+ "key": "restriction",
+ "value": "only_straight_on"
+ }
+ },
+ "type/restriction/only_right_turn": {
+ "icon": "iD-restriction-only-right-turn",
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "restriction",
+ "restriction": "only_right_turn"
+ },
+ "reference": {
+ "key": "restriction",
+ "value": "only_right_turn"
+ }
+ },
+ "type/restriction/only_left_turn": {
+ "icon": "iD-restriction-only-left-turn",
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "restriction",
+ "restriction": "only_left_turn"
+ },
+ "reference": {
+ "key": "restriction",
+ "value": "only_left_turn"
+ }
+ },
+ "type/restriction/no_u_turn": {
+ "icon": "iD-restriction-no-u-turn",
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "restriction",
+ "restriction": "no_u_turn"
+ },
+ "reference": {
+ "key": "restriction",
+ "value": "no_u_turn"
+ }
+ },
+ "type/restriction/no_straight_on": {
+ "icon": "iD-restriction-no-straight-on",
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "restriction",
+ "restriction": "no_straight_on"
+ },
+ "reference": {
+ "key": "restriction",
+ "value": "no_straight_on"
+ }
+ },
+ "type/restriction/no_right_turn": {
+ "icon": "iD-restriction-no-right-turn",
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "restriction",
+ "restriction": "no_right_turn"
+ },
+ "reference": {
+ "key": "restriction",
+ "value": "no_right_turn"
+ }
+ },
+ "type/restriction/no_left_turn": {
+ "icon": "iD-restriction-no-left-turn",
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "restriction",
+ "restriction": "no_left_turn"
+ },
+ "reference": {
+ "key": "restriction",
+ "value": "no_left_turn"
+ }
+ },
+ "type/public_transport/stop_area_group": {
+ "icon": "iD-relation",
+ "fields": [
+ "name",
+ "ref",
+ "network",
+ "operator"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "public_transport",
+ "public_transport": "stop_area_group"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "stop_area_group"
+ }
+ },
+ "type/enforcement/maxspeed": {
+ "icon": "iD-relation",
+ "fields": [
+ "maxspeed"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "enforcement",
+ "enforcement": "maxspeed"
+ },
+ "reference": {
+ "key": "enforcement",
+ "value": "maxspeed"
+ }
+ },
+ "type/boundary/administrative": {
+ "icon": "iD-boundary",
+ "fields": [
+ "name",
+ "admin_level"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "boundary",
+ "boundary": "administrative"
+ },
+ "reference": {
+ "key": "boundary",
+ "value": "administrative"
+ }
+ },
+ "traffic_sign/variable_message": {
+ "icon": "temaki-billboard",
+ "fields": [
+ "{traffic_sign}",
+ "direction_vertex"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "traffic_sign": "variable_message"
+ }
+ },
+ "traffic_sign/maxspeed": {
+ "icon": "fas-directions",
+ "fields": [
+ "{traffic_sign}",
+ "maxspeed"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "traffic_sign": "maxspeed"
+ },
+ "locationSet": {
+ "exclude": [
+ "US",
+ "CA",
+ "LR"
+ ]
+ }
+ },
+ "traffic_sign/maxspeed-US-CA-LR": {
+ "icon": "maki-square-stroked",
+ "fields": [
+ "{traffic_sign/maxspeed}"
+ ],
+ "moreFields": [
+ "{traffic_sign/maxspeed}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "traffic_sign": "maxspeed"
+ },
+ "locationSet": {
+ "include": [
+ "US",
+ "CA",
+ "LR"
+ ]
+ },
+ "name": "{traffic_sign/maxspeed}"
+ },
+ "traffic_sign/city_limit": {
+ "icon": "roentgen-city_limit_sign",
+ "fields": [
+ "{traffic_sign}",
+ "name"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "traffic_sign": "city_limit"
+ }
+ },
+ "traffic_calming/table": {
+ "icon": "temaki-speed_table",
+ "fields": [
+ "surface",
+ "direction_vertex"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "table"
+ },
+ "matchScore": 0.9
+ },
+ "traffic_calming/rumble_strip": {
+ "icon": "temaki-rumble_strip",
+ "fields": [
+ "direction_vertex"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "rumble_strip"
+ }
+ },
+ "traffic_calming/mini_bumps": {
+ "icon": "temaki-speed_bump",
+ "tags": {
+ "traffic_calming": "mini_bumps"
+ },
+ "geometry": [
+ "vertex"
+ ],
+ "fields": [
+ "surface",
+ "direction_vertex"
+ ]
+ },
+ "traffic_calming/island": {
+ "icon": "temaki-diamond",
+ "fields": [
+ "surface"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "island"
+ }
+ },
+ "traffic_calming/hump": {
+ "icon": "temaki-speed_hump",
+ "fields": [
+ "surface",
+ "direction_vertex"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "hump"
+ }
+ },
+ "traffic_calming/dip": {
+ "icon": "temaki-speed_dip",
+ "fields": [
+ "surface",
+ "direction_vertex"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "dip"
+ }
+ },
+ "traffic_calming/cushion": {
+ "icon": "temaki-speed_hump",
+ "fields": [
+ "surface",
+ "direction_vertex"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "cushion"
+ }
+ },
+ "traffic_calming/choker": {
+ "icon": "temaki-diamond",
+ "fields": [
+ "surface",
+ "direction_vertex"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "choker"
+ }
+ },
+ "traffic_calming/chicane": {
+ "icon": "temaki-chicane_arrow",
+ "fields": [
+ "surface",
+ "direction_vertex"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "chicane"
+ }
+ },
+ "traffic_calming/bump": {
+ "icon": "temaki-speed_bump",
+ "fields": [
+ "surface",
+ "direction_vertex"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "bump"
+ }
+ },
+ "traffic_calming/yes": {
+ "icon": "temaki-diamond",
+ "fields": [
+ "traffic_calming",
+ "{traffic_calming}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "traffic_calming": "yes"
+ },
+ "searchable": false,
+ "matchScore": 0.5
+ },
+ "tourism/zoo": {
+ "icon": "temaki-zoo",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "opening_hours",
+ "fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "changing_table",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "zoo"
+ }
+ },
+ "tourism/wilderness_hut": {
+ "icon": "temaki-cabin",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "fireplace"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "address",
+ "capacity",
+ "drinking_water_available",
+ "gnis/feature_id-US",
+ "kitchen",
+ "mattress",
+ "reservation",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "wilderness_hut"
+ }
+ },
+ "tourism/viewpoint": {
+ "icon": "temaki-spotting_scope",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "fields": [
+ "direction"
+ ],
+ "moreFields": [
+ "level"
+ ],
+ "tags": {
+ "tourism": "viewpoint"
+ }
+ },
+ "tourism/trail_riding_station": {
+ "icon": "maki-horse-riding",
+ "fields": [
+ "name",
+ "horse_riding"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "address",
+ "gnis/feature_id-US",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "trail_riding_station"
+ },
+ "matchScore": 2
+ },
+ "tourism/theme_park": {
+ "icon": "maki-amusement-park",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "opening_hours",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "branch_brand",
+ "brand"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "theme_park"
+ }
+ },
+ "tourism/picnic_site": {
+ "icon": "maki-picnic-site",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "access_simple",
+ "capacity"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "charge_fee",
+ "fee",
+ "gnis/feature_id-US",
+ "level",
+ "payment_multi_fee",
+ "phone",
+ "reservation",
+ "smoking",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "tourism": "picnic_site"
+ }
+ },
+ "tourism/museum": {
+ "icon": "temaki-museum",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "museum",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "building/levels_building",
+ "charge_fee",
+ "changing_table",
+ "fee",
+ "height_building",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "museum"
+ }
+ },
+ "tourism/motel": {
+ "icon": "maki-lodging",
+ "fields": [
+ "name",
+ "brand",
+ "address",
+ "website",
+ "email",
+ "phone",
+ "building_area_yes",
+ "rooms",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "branch_brand",
+ "building/levels_building",
+ "height_building",
+ "operator",
+ "payment_multi",
+ "ref/vatin",
+ "reservation",
+ "smoking",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "motel"
+ }
+ },
+ "tourism/information": {
+ "icon": "maki-information",
+ "fields": [
+ "information",
+ "operator",
+ "address",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "level"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "tourism": "information"
+ }
+ },
+ "tourism/hotel": {
+ "icon": "fas-concierge-bell",
+ "fields": [
+ "{tourism/motel}"
+ ],
+ "moreFields": [
+ "{tourism/motel}",
+ "bar",
+ "fhrs/id-GB",
+ "ref/FR/siret-FR",
+ "stars"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "hotel"
+ }
+ },
+ "tourism/hostel": {
+ "icon": "temaki-bunk_beds",
+ "fields": [
+ "{tourism/guest_house}"
+ ],
+ "moreFields": [
+ "fhrs/id-GB",
+ "{tourism/guest_house}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "hostel"
+ }
+ },
+ "tourism/guest_house": {
+ "icon": "maki-lodging",
+ "fields": [
+ "name",
+ "operator",
+ "guest_house",
+ "address",
+ "website",
+ "email",
+ "phone",
+ "building_area_yes",
+ "rooms",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "building/levels_building",
+ "fhrs/id-GB",
+ "height_building",
+ "reservation",
"smoking"
],
"geometry": [
+ "point",
"area"
],
"tags": {
- "building": "stadium"
- },
- "matchScore": 0.5
+ "tourism": "guest_house"
+ }
},
- "building/static_caravan": {
- "icon": "temaki-manufactured_home",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "static_caravan"
- },
- "matchScore": 0.5
- },
- "building/sty": {
- "icon": "temaki-barn",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "sty"
- },
- "matchScore": 0.5
- },
- "building/synagogue": {
- "icon": "fas-synagogue",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "synagogue"
- },
- "matchScore": 0.5
- },
- "building/temple": {
- "icon": "maki-place-of-worship",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "temple"
- },
- "matchScore": 0.5
- },
- "building/terrace": {
- "icon": "temaki-row_houses",
- "geometry": [
- "area"
- ],
- "tags": {
- "building": "terrace"
- },
- "matchScore": 0.5
- },
- "building/transportation": {
- "icon": "maki-building",
+ "tourism/gallery": {
+ "icon": "maki-art-gallery",
"fields": [
- "{building}",
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "changing_table",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "gallery"
+ }
+ },
+ "tourism/chalet": {
+ "icon": "temaki-cabin",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "website",
+ "email",
+ "phone",
+ "building_area_yes",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "building/levels_building",
+ "height_building",
+ "payment_multi",
+ "fhrs/id-GB",
+ "reservation",
"smoking"
],
"geometry": [
+ "point",
"area"
],
"tags": {
- "building": "transportation"
- },
- "matchScore": 0.5
+ "tourism": "chalet"
+ }
},
- "building/university": {
- "icon": "fas-school",
+ "tourism/caravan_site": {
+ "icon": "temaki-camper_trailer",
+ "fields": [
+ "name",
+ "address",
+ "capacity/caravans",
+ "sanitary_dump_station",
+ "power_supply",
+ "{@templates/internet_access}"
+ ],
"moreFields": [
- "{building}",
- "polling_station"
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "charge_fee",
+ "fee",
+ "operator",
+ "reservation",
+ "smoking"
],
"geometry": [
+ "point",
+ "vertex",
"area"
],
"tags": {
- "building": "university"
- },
- "matchScore": 0.5
+ "tourism": "caravan_site"
+ }
},
- "building/warehouse": {
- "icon": "maki-warehouse",
+ "tourism/camp_site": {
+ "icon": "maki-campsite",
"fields": [
- "{building}",
+ "name",
+ "operator",
+ "camp_site",
+ "address",
+ "access_simple",
+ "capacity/persons",
+ "tents",
+ "capacity/tents",
+ "caravans",
+ "capacity/caravans",
+ "static_caravans",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "backcountry",
+ "dog",
+ "drinking_water_available",
+ "gnis/feature_id-US",
+ "group_only",
+ "cabins",
+ "nudism",
+ "openfire",
+ "opening_hours",
+ "picnic_table",
+ "power_supply",
+ "ref/vatin",
+ "reservation",
+ "sanitary_dump_station",
+ "shower",
+ "stars",
+ "toilets",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "tourism": "camp_site"
+ }
+ },
+ "tourism/camp_pitch": {
+ "icon": "maki-campsite",
+ "fields": [
+ "name",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "camp_pitch"
+ }
+ },
+ "tourism/attraction": {
+ "icon": "maki-star",
+ "fields": [
+ "name",
+ "operator",
+ "address"
+ ],
+ "moreFields": [
+ "fee",
+ "gnis/feature_id-US",
+ "level",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "tourism": "attraction"
+ },
+ "matchScore": 0.75
+ },
+ "tourism/artwork": {
+ "icon": "maki-art-gallery",
+ "fields": [
+ "name",
+ "artwork_type",
+ "artist"
+ ],
+ "moreFields": [
+ "level",
+ "material",
+ "subject/wikidata",
+ "inscription"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "tourism": "artwork"
+ }
+ },
+ "tourism/aquarium": {
+ "icon": "maki-aquarium",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "charge_fee",
+ "changing_table",
+ "fee",
+ "smoking",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "aquarium"
+ }
+ },
+ "tourism/apartment": {
+ "icon": "maki-lodging",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "website",
+ "email",
+ "phone",
+ "building_area_yes",
+ "rooms",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "building/levels_building",
+ "height_building",
+ "reservation",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "apartment"
+ }
+ },
+ "tourism/alpine_hut": {
+ "icon": "temaki-cabin",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "phone",
+ "building_area_yes",
+ "{@templates/internet_access}",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "reservation"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "alpine_hut"
+ }
+ },
+ "tourism/zoo/wildlife": {
+ "icon": "fas-frog",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "zoo",
+ "zoo": "wildlife_park"
+ },
+ "reference": {
+ "key": "zoo",
+ "value": "wildlife_park"
+ }
+ },
+ "tourism/zoo/safari": {
+ "icon": "temaki-zoo",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "zoo",
+ "zoo": "safari_park"
+ },
+ "reference": {
+ "key": "zoo",
+ "value": "safari_park"
+ }
+ },
+ "tourism/zoo/petting": {
+ "icon": "fas-horse",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "zoo",
+ "zoo": "petting_zoo"
+ },
+ "reference": {
+ "key": "zoo",
+ "value": "petting_zoo"
+ }
+ },
+ "tourism/museum/history": {
+ "icon": "temaki-museum",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "tourism": "museum",
+ "museum": "history"
+ },
+ "reference": {
+ "key": "museum",
+ "value": "history"
+ }
+ },
+ "tourism/information/terminal": {
+ "icon": "temaki-app_terminal",
+ "fields": [
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "tourism": "information",
+ "information": "terminal"
+ },
+ "reference": {
+ "key": "information",
+ "value": "terminal"
+ }
+ },
+ "tourism/information/route_marker": {
+ "icon": "maki-information",
+ "fields": [
+ "ref",
+ "operator",
+ "colour",
+ "material",
+ "ele_node",
+ "activity"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "tourism": "information",
+ "information": "route_marker"
+ },
+ "reference": {
+ "key": "information",
+ "value": "route_marker"
+ }
+ },
+ "tourism/information/office": {
+ "icon": "maki-information",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "building/levels_building",
+ "height_building",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "tourism": "information",
+ "information": "office"
+ },
+ "reference": {
+ "key": "information",
+ "value": "office"
+ }
+ },
+ "tourism/information/map": {
+ "icon": "fas-map",
+ "fields": [
+ "operator",
+ "map_type",
+ "map_size",
+ "direction",
+ "activity"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "tourism": "information",
+ "information": "map"
+ },
+ "reference": {
+ "key": "information",
+ "value": "map"
+ }
+ },
+ "tourism/information/guidepost": {
+ "icon": "fas-map-signs",
+ "fields": [
+ "name",
+ "ele_node",
+ "operator",
+ "ref",
+ "activity"
+ ],
+ "moreFields": [
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "tourism": "information",
+ "information": "guidepost"
+ },
+ "reference": {
+ "key": "information",
+ "value": "guidepost"
+ }
+ },
+ "tourism/information/board": {
+ "icon": "temaki-info_board",
+ "fields": [
+ "name",
+ "operator",
+ "board_type",
+ "direction",
+ "subject/wikidata"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "tourism": "information",
+ "information": "board"
+ },
+ "reference": {
+ "key": "information",
+ "value": "board"
+ }
+ },
+ "tourism/information/board/welcome_sign": {
+ "icon": "maki-embassy",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "tourism": "information",
+ "information": "board",
+ "board_type": "welcome_sign"
+ }
+ },
+ "tourism/camp_site/group_only": {
+ "icon": "maki-campsite",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "tourism": "camp_site",
+ "group_only": "yes"
+ },
+ "reference": {
+ "key": "group_only"
+ }
+ },
+ "tourism/camp_site/backcountry": {
+ "icon": "maki-campsite",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "tourism": "camp_site",
+ "backcountry": "yes"
+ },
+ "reference": {
+ "key": "backcountry"
+ }
+ },
+ "tourism/artwork/statue": {
+ "icon": "temaki-statue",
+ "fields": [
+ "name",
+ "artist",
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "tourism": "artwork",
+ "artwork_type": "statue"
+ },
+ "reference": {
+ "key": "artwork_type",
+ "value": "statue"
+ }
+ },
+ "tourism/artwork/sculpture": {
+ "icon": "temaki-sculpture",
+ "fields": [
+ "name",
+ "artist",
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "tourism": "artwork",
+ "artwork_type": "sculpture"
+ },
+ "reference": {
+ "key": "artwork_type",
+ "value": "sculpture"
+ }
+ },
+ "tourism/artwork/mural": {
+ "icon": "maki-art-gallery",
+ "fields": [
+ "name",
+ "artist"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "tourism": "artwork",
+ "artwork_type": "mural"
+ },
+ "reference": {
+ "key": "artwork_type",
+ "value": "mural"
+ }
+ },
+ "tourism/artwork/installation": {
+ "icon": "temaki-sculpture",
+ "fields": [
+ "name",
+ "artist"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "tourism": "artwork",
+ "artwork_type": "installation"
+ },
+ "reference": {
+ "key": "artwork_type",
+ "value": "installation"
+ }
+ },
+ "tourism/artwork/graffiti": {
+ "icon": "maki-art-gallery",
+ "fields": [
+ "name",
+ "artist"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "tourism": "artwork",
+ "artwork_type": "graffiti"
+ },
+ "reference": {
+ "key": "artwork_type",
+ "value": "graffiti"
+ }
+ },
+ "tourism/artwork/bust": {
+ "icon": "fas-user-alt",
+ "fields": [
+ "name",
+ "artist",
+ "material",
+ "inscription"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "tourism": "artwork",
+ "artwork_type": "bust"
+ },
+ "reference": {
+ "key": "artwork_type",
+ "value": "bust"
+ }
+ },
+ "telecom/exchange": {
+ "icon": "temaki-cable",
+ "fields": [
+ "ref",
+ "operator",
+ "telecom/medium",
+ "address",
+ "building_area_yes"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "telecom": "exchange"
+ }
+ },
+ "telecom/data_center": {
+ "icon": "fas-server",
+ "fields": [
+ "name",
+ "ref",
+ "operator",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "address",
+ "gnis/feature_id-US",
"phone"
],
"geometry": [
+ "point",
"area"
],
"tags": {
- "building": "warehouse"
- },
- "matchScore": 0.5
+ "telecom": "data_center"
+ }
},
- "cemetery/grave": {
- "icon": "maki-cemetery",
- "fields": [
- "name",
- "inscription"
- ],
+ "shop/wine": {
+ "icon": "maki-alcohol-shop",
"moreFields": [
- "description"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "cemetery": "grave"
- }
- },
- "cemetery/sector": {
- "icon": "maki-cemetery",
- "fields": [
- "name",
- "ref_sector"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "cemetery": "sector"
- }
- },
- "club": {
- "icon": "fas-handshake",
- "fields": [
- "name",
- "club",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "phone",
- "website"
- ],
- "moreFields": [
- "access_simple",
- "building/levels_building",
- "email",
- "fax",
- "gnis/feature_id-US",
- "height_building",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "max_age",
- "min_age",
- "opening_hours/covid19",
- "phone",
- "website",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "club": "*"
- }
- },
- "club/sport": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "sport",
- "{club}"
- ],
- "moreFields": [
- "{club}",
- "access_simple"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "club": "sport"
- }
- },
- "craft": {
- "icon": "temaki-tools",
- "fields": [
- "name",
- "craft",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "phone",
- "website"
- ],
- "moreFields": [
- "air_conditioning",
- "building/levels_building",
- "ele",
- "email",
- "fax",
- "gnis/feature_id-US",
- "height_building",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "product",
- "ref/vatin",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "*"
- }
- },
- "craft/locksmith": {
- "icon": "maki-marker-stroked",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "locksmith"
- },
- "reference": {
- "key": "shop",
- "value": "locksmith"
- },
- "searchable": false
- },
- "craft/tailor": {
- "icon": "temaki-needle_and_spool",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "tailor"
- },
- "reference": {
- "key": "shop",
- "value": "tailor"
- },
- "searchable": false
- },
- "craft/agricultural_engines": {
- "icon": "fas-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "agricultural_engines"
- }
- },
- "craft/basket_maker": {
- "icon": "temaki-vase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "basket_maker"
- }
- },
- "craft/beekeeper": {
- "icon": "maki-farm",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "beekeeper"
- }
- },
- "craft/blacksmith": {
- "icon": "temaki-anvil_and_hammer",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "blacksmith"
- }
- },
- "craft/boatbuilder": {
- "icon": "temaki-boat_repair",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "boatbuilder"
- },
- "matchScore": 0.6
- },
- "craft/bookbinder": {
- "icon": "maki-library",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "bookbinder"
- }
- },
- "craft/brewery": {
- "icon": "temaki-storage_fermenter",
- "fields": [
- "{craft}",
- "product"
- ],
- "moreFields": [
- "{craft}",
+ "{shop}",
+ "fhrs/id-GB",
"min_age"
],
"geometry": [
@@ -9193,8808 +3415,97 @@
"area"
],
"tags": {
- "craft": "brewery"
+ "shop": "wine"
}
},
- "craft/carpenter": {
- "icon": "fas-hammer",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "carpenter"
- }
- },
- "craft/carpet_layer": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "carpet_layer"
- }
- },
- "craft/caterer": {
- "icon": "temaki-catering",
- "fields": [
- "name",
- "cuisine",
- "{craft}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "caterer"
- }
- },
- "craft/chimney_sweeper": {
- "icon": "temaki-chimney",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "chimney_sweeper"
- }
- },
- "craft/cleaning": {
- "icon": "temaki-vacuum",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "cleaning"
- }
- },
- "craft/clockmaker": {
- "icon": "temaki-clock",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "clockmaker"
- }
- },
- "craft/confectionery": {
- "icon": "maki-confectionery",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "confectionery"
- }
- },
- "craft/distillery": {
- "icon": "temaki-storage_fermenter",
- "fields": [
- "{craft}",
- "product"
- ],
- "moreFields": [
- "{craft}",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "distillery"
- }
- },
- "craft/dressmaker": {
- "icon": "temaki-dress",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "dressmaker"
- }
- },
- "craft/electrician": {
- "icon": "temaki-power",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "electrician"
- }
- },
- "craft/electronics_repair": {
- "icon": "fas-screwdriver",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "electronics_repair"
- }
- },
- "craft/floorer": {
- "icon": "temaki-brick_trowel",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "floorer"
- }
- },
- "craft/gardener": {
- "icon": "maki-garden-centre",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "gardener"
- }
- },
- "craft/glaziery": {
+ "shop/window_blind": {
"icon": "temaki-window",
"geometry": [
"point",
"area"
],
"tags": {
- "craft": "glaziery"
+ "shop": "window_blind"
}
},
- "craft/handicraft": {
- "icon": "temaki-vase",
+ "shop/wigs": {
+ "icon": "maki-shop",
"geometry": [
"point",
"area"
],
"tags": {
- "craft": "handicraft"
+ "shop": "wigs"
}
},
- "craft/hvac": {
- "icon": "temaki-tools",
+ "shop/wholesale": {
+ "icon": "maki-warehouse",
+ "fields": [
+ "{shop}",
+ "wholesale"
+ ],
"geometry": [
"point",
"area"
],
"tags": {
- "craft": "hvac"
+ "shop": "wholesale"
}
},
- "craft/insulator": {
- "icon": "temaki-tools",
+ "shop/weapons": {
+ "icon": "temaki-dagger",
"geometry": [
"point",
"area"
],
"tags": {
- "craft": "insulation"
+ "shop": "weapons"
}
},
- "craft/joiner": {
- "icon": "fas-hammer",
+ "shop/water_sports": {
+ "icon": "fas-swimmer",
"geometry": [
"point",
"area"
],
"tags": {
- "craft": "joiner"
+ "shop": "water_sports"
}
},
- "craft/key_cutter": {
- "icon": "fas-key",
+ "shop/water": {
+ "icon": "temaki-water_bottle",
"geometry": [
"point",
"area"
],
"tags": {
- "craft": "key_cutter"
+ "shop": "water"
}
},
- "craft/metal_construction": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "metal_construction"
- }
- },
- "craft/painter": {
- "icon": "fas-paint-roller",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "painter"
- }
- },
- "craft/parquet_layer": {
- "icon": "temaki-brick_trowel",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "parquet_layer"
- }
- },
- "craft/photographer": {
- "icon": "maki-attraction",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "photographer"
- }
- },
- "craft/photographic_laboratory": {
- "icon": "fas-film",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "photographic_laboratory"
- }
- },
- "craft/plasterer": {
- "icon": "temaki-brick_trowel",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "plasterer"
- }
- },
- "craft/plumber": {
- "icon": "temaki-plumber",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "plumber"
- }
- },
- "craft/pottery": {
- "icon": "temaki-vase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "pottery"
- }
- },
- "craft/rigger": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "rigger"
- }
- },
- "craft/roofer": {
- "icon": "fas-hammer",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "roofer"
- }
- },
- "craft/saddler": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "saddler"
- }
- },
- "craft/sailmaker": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "sailmaker"
- }
- },
- "craft/sawmill": {
- "icon": "maki-logging",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "sawmill"
- }
- },
- "craft/scaffolder": {
- "icon": "temaki-scaffold",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "scaffolder"
- }
- },
- "craft/sculptor": {
- "icon": "maki-art-gallery",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "sculptor"
- }
- },
- "craft/shoemaker": {
- "icon": "temaki-hammer_shoe",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "shoemaker"
- }
- },
- "craft/signmaker": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "signmaker"
- }
- },
- "craft/stonemason": {
- "icon": "temaki-brick_trowel",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "stonemason"
- }
- },
- "craft/tiler": {
- "icon": "temaki-brick_trowel",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "tiler"
- }
- },
- "craft/tinsmith": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "tinsmith"
- }
- },
- "craft/upholsterer": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "upholsterer"
- }
- },
- "craft/watchmaker": {
+ "shop/watches": {
"icon": "maki-watch",
"geometry": [
"point",
"area"
],
"tags": {
- "craft": "watchmaker"
+ "shop": "watches"
}
},
- "craft/window_construction": {
- "icon": "temaki-window",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "window_construction"
- }
- },
- "craft/winery": {
- "icon": "maki-alcohol-shop",
- "moreFields": [
- "{craft}",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "craft": "winery"
- }
- },
- "cycleway/asl": {
- "icon": "maki-bicycle",
- "fields": [
- "ref",
- "direction_vertex",
- "width"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "cycleway": "asl"
- }
- },
- "demolished/building": {
- "icon": "fas-house-damage",
- "fields": [
- "name",
- "address"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "demolished:building": "*"
- },
- "searchable": false
- },
- "disc_golf/basket": {
- "icon": "temaki-disc_golf_basket",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "disc_golf": "basket"
- }
- },
- "disc_golf/hole": {
- "icon": "temaki-disc_golf_basket",
- "fields": [
- "name",
- "ref_disc_golf_hole",
- "par"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "disc_golf": "hole"
- }
- },
- "disc_golf/tee": {
- "icon": "temaki-disc_golf_basket",
- "fields": [
- "surface"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "disc_golf": "tee"
- }
- },
- "disused/amenity": {
- "fields": [
- "disused/amenity"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "disused:amenity": "*"
- },
- "matchScore": 0.05,
- "searchable": false
- },
- "disused/railway": {
- "icon": "temaki-rail_profile",
- "fields": [
- "disused/railway"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "disused:railway": "*"
- },
- "matchScore": 0.05,
- "searchable": false
- },
- "disused/shop": {
- "icon": "fas-store-alt-slash",
- "fields": [
- "disused/shop"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "disused:shop": "*"
- },
- "matchScore": 0.05,
- "searchable": false
- },
- "emergency/designated": {
- "fields": [
- "emergency_combo"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "designated"
- },
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/destination": {
- "fields": [
- "emergency_combo"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "destination"
- },
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/no": {
- "fields": [
- "emergency_combo"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "no"
- },
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/official": {
- "fields": [
- "emergency_combo"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "official"
- },
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/private": {
- "fields": [
- "emergency_combo"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "private"
- },
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/yes": {
- "fields": [
- "emergency_combo"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "emergency": "yes"
- },
- "searchable": false,
- "matchScore": 0.01
- },
- "emergency/ambulance_station": {
- "icon": "fas-ambulance",
- "fields": [
- "name",
- "operator",
- "building_area_yes",
- "address"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "emergency": "ambulance_station"
- }
- },
- "emergency/assembly_point": {
- "icon": "fas-compress-arrows-alt",
- "fields": [
- "name",
- "ref",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "emergency": "assembly_point"
- }
- },
- "emergency/defibrillator": {
- "icon": "maki-defibrillator",
- "fields": [
- "indoor",
- "ref",
- "operator",
- "defibrillator/location"
- ],
- "moreFields": [
- "level",
- "opening_hours",
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "defibrillator"
- }
- },
- "emergency/fire_alarm": {
- "icon": "fas-bell",
- "fields": [
- "indoor",
- "ref",
- "operator"
- ],
- "moreFields": [
- "level"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "fire_alarm_box"
- }
- },
- "emergency/fire_extinguisher": {
- "icon": "fas-fire-extinguisher",
- "fields": [
- "indoor",
- "ref",
- "operator"
- ],
- "moreFields": [
- "level"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "fire_extinguisher"
- }
- },
- "emergency/fire_hose": {
- "icon": "fas-tape",
- "fields": [
- "indoor",
- "ref",
- "operator"
- ],
- "moreFields": [
- "level"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "fire_hose"
- }
- },
- "emergency/fire_hydrant": {
- "icon": "temaki-fire_hydrant",
- "fields": [
- "ref",
- "fire_hydrant/type",
- "colour",
- "water_source",
- "couplings"
- ],
- "moreFields": [
- "fire_hydrant/diameter",
- "fire_hydrant/pressure",
- "fire_hydrant/position",
- "level",
- "survey/date"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "fire_hydrant"
- }
- },
- "emergency/first_aid_kit": {
- "icon": "fas-medkit",
- "fields": [
- "indoor",
- "ref",
- "operator"
- ],
- "moreFields": [
- "level"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "first_aid_kit"
- }
- },
- "emergency/landing_site": {
- "icon": "maki-heliport",
- "fields": [
- "name",
- "operator",
- "surface"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "emergency": "landing_site"
- }
- },
- "emergency/life_ring": {
- "icon": "fas-life-ring",
- "fields": [
- "ref",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "life_ring"
- }
- },
- "emergency/lifeboat_station": {
- "icon": "temaki-boat_tour",
- "fields": [
- "name",
- "operator",
- "seamark/rescue_station/category",
- "address",
- "building_area_yes",
- "phone",
- "website"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "emergency": "lifeboat_station"
- },
- "addTags": {
- "emergency": "lifeboat_station",
- "seamark:type": "rescue_station"
- }
- },
- "emergency/lifeguard": {
- "icon": "fas-life-ring",
- "fields": [
- "ref",
- "operator",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "emergency": "lifeguard"
- }
- },
- "emergency/mountain_rescue": {
- "icon": "temaki-mountain_cross",
- "fields": [
- "name",
- "address",
- "operator",
- "building_area_yes",
- "email",
- "website"
- ],
- "moreFields": [
- "fax",
- "gnis/feature_id-US",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "emergency": "mountain_rescue"
- }
- },
- "emergency/phone": {
- "icon": "maki-emergency-phone",
- "fields": [
- "ref",
- "operator",
- "covered",
- "indoor",
- "booth"
- ],
- "moreFields": [
- "level"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "phone"
- }
- },
- "emergency/siren": {
- "icon": "fas-volume-up",
- "fields": [
- "siren/purpose",
- "siren/type",
- "ref",
- "operator"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "emergency": "siren"
- }
- },
- "emergency/water_reservoir_covered": {
- "icon": "maki-water",
- "fields": [
- "name",
- "ref",
- "operator",
- "capacity_volume",
- "layer"
- ],
- "moreFields": [
- "water_tank/volume"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "emergency": "water_tank",
- "man_made": "reservoir_covered"
- }
- },
- "emergency/water_reservoir": {
- "icon": "maki-water",
- "fields": [
- "name",
- "operator",
- "water",
- "covered"
- ],
- "moreFields": [
- "ref"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "emergency": "water_tank",
- "natural": "water",
- "water": "reservoir"
- }
- },
- "emergency/water_tank": {
- "icon": "temaki-storage_tank",
- "fields": [
- "name",
- "ref",
- "operator",
- "water_tank/volume",
- "drinking_water",
- "building_area"
- ],
- "moreFields": [
- "covered",
- "height",
- "material"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "emergency": "water_tank",
- "man_made": "storage_tank"
- },
- "addTags": {
- "emergency": "water_tank",
- "man_made": "storage_tank",
- "content": "water"
- }
- },
- "entrance": {
- "icon": "maki-entrance-alt1",
- "fields": [
- "ref",
- "entrance",
- "door",
- "access_simple",
- "wheelchair",
- "level",
- "address"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "entrance": "*"
- }
- },
- "entrance/emergency_ward_entrance": {
- "icon": "maki-hospital",
- "fields": [
- "ref",
- "emergency_ward_entrance",
- "address",
- "level",
- "opening_hours"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "emergency": "emergency_ward_entrance"
- },
- "addTags": {
- "emergency": "emergency_ward_entrance",
- "entrance": "yes"
- }
- },
- "entrance/emergency": {
- "icon": "maki-entrance-alt1",
- "fields": [
- "ref",
- "door",
- "access_simple",
- "wheelchair",
- "level"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "entrance": "emergency"
- },
- "matchScore": 0.8
- },
- "entrance/main": {
- "icon": "maki-entrance-alt1",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "entrance": "main"
- }
- },
- "ford": {
- "icon": "temaki-pedestrian",
- "fields": [
- "name",
- "depth",
- "access",
- "seasonal"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "ford": "yes"
- }
- },
- "golf/bunker": {
- "icon": "maki-golf",
- "fields": [
- "surface"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "bunker"
- }
- },
- "golf/cartpath": {
- "icon": "temaki-golf_cart",
- "fields": [
- "name",
- "highway_cartpath",
- "{golf/path}",
- "maxspeed"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "golf": "cartpath"
- },
- "addTags": {
- "golf": "cartpath",
- "highway": "path",
- "golf_cart": "yes"
- }
- },
- "golf/clubhouse": {
- "icon": "maki-golf",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "access_simple"
- ],
- "moreFields": [
- "air_conditioning",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "golf": "clubhouse"
- }
- },
- "golf/driving_range": {
- "icon": "maki-golf",
- "fields": [
- "name",
- "capacity",
- "surface"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "driving_range"
- }
- },
- "golf/fairway": {
- "icon": "maki-golf",
- "fields": [
- "surface"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "fairway"
- }
- },
- "golf/green": {
- "icon": "temaki-golf_green",
- "fields": [
- "surface"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "green"
- }
- },
- "golf/hole": {
- "icon": "temaki-golf_green",
- "fields": [
- "ref_golf_hole",
- "par",
- "handicap"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "golf": "hole"
- }
- },
- "golf/lateral_water_hazard": {
- "icon": "maki-golf",
- "fields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "lateral_water_hazard"
- },
- "addTags": {
- "golf": "lateral_water_hazard",
- "natural": "water"
- }
- },
- "golf/path": {
- "icon": "maki-golf",
- "fields": [
- "name",
- "surface",
- "width",
- "structure",
- "access",
- "incline"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "golf": "path"
- },
- "addTags": {
- "golf": "path",
- "highway": "footway"
- }
- },
- "golf/rough": {
- "icon": "maki-golf",
- "fields": [
- "surface"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "rough"
- }
- },
- "golf/tee": {
- "icon": "maki-golf",
- "fields": [
- "tee",
- "surface"
- ],
- "geometry": [
- "vertex",
- "area"
- ],
- "tags": {
- "golf": "tee"
- }
- },
- "golf/water_hazard": {
- "icon": "maki-golf",
- "fields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "golf": "water_hazard"
- },
- "addTags": {
- "golf": "water_hazard",
- "natural": "water"
- }
- },
- "healthcare": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "healthcare",
- "operator",
- "healthcare/speciality",
- "address",
- "building_area",
- "phone",
- "website"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "building/levels_building",
- "email",
- "fax",
- "gnis/feature_id-US",
- "height_building",
- "level",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "*"
- },
- "matchScore": 0.4
- },
- "healthcare/yes": {
- "icon": "maki-hospital",
- "fields": [
- "name",
- "healthcare",
- "{healthcare}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "yes"
- },
- "searchable": false,
- "matchScore": 0.5
- },
- "healthcare/alternative": {
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "alternative"
- }
- },
- "healthcare/alternative/chiropractic": {
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "alternative",
- "healthcare:speciality": "chiropractic"
- }
- },
- "healthcare/audiologist": {
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "audiologist"
- }
- },
- "healthcare/birthing_center": {
- "icon": "fas-baby",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "birthing_centre"
- }
- },
- "healthcare/blood_donation": {
- "icon": "maki-blood-bank",
- "fields": [
- "{healthcare}",
- "blood_components"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "blood_donation"
- }
- },
- "healthcare/counselling": {
- "icon": "fas-comments",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "counselling"
- }
- },
- "healthcare/dentist/orthodontics": {
- "icon": "fas-teeth",
- "fields": [
- "{amenity/dentist}"
- ],
- "moreFields": [
- "{amenity/dentist}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "dentist",
- "healthcare:speciality": "orthodontics"
- },
- "addTags": {
- "healthcare": "dentist",
- "amenity": "dentist",
- "healthcare:speciality": "orthodontics"
- },
- "reference": {
- "key": "healthcare:speciality",
- "value": "orthodontics"
- }
- },
- "healthcare/hospice": {
- "icon": "fas-procedures",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "hospice"
- }
- },
- "healthcare/laboratory": {
- "icon": "fas-vial",
- "fields": [
- "name",
- "operator",
- "healthcare/speciality",
- "website",
- "phone",
- "ref",
- "address",
- "opening_hours"
- ],
- "moreFields": [
- "{healthcare}",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "laboratory"
- }
- },
- "healthcare/midwife": {
- "icon": "fas-baby",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "midwife"
- }
- },
- "healthcare/occupational_therapist": {
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "occupational_therapist"
- }
- },
- "healthcare/optometrist": {
- "icon": "fas-eye",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "optometrist"
- }
- },
- "healthcare/physiotherapist": {
- "icon": "temaki-physiotherapist",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "physiotherapist"
- }
- },
- "healthcare/podiatrist": {
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "podiatrist"
- }
- },
- "healthcare/psychotherapist": {
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "psychotherapist"
- }
- },
- "healthcare/rehabilitation": {
- "icon": "maki-hospital",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "rehabilitation"
- }
- },
- "healthcare/sample_collection": {
- "icon": "fas-vial",
- "fields": [
- "name",
- "sample_collection",
- "operator",
- "website",
- "phone",
- "address",
- "opening_hours"
- ],
- "moreFields": [
- "{healthcare}",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "sample_collection"
- }
- },
- "healthcare/speech_therapist": {
- "icon": "fas-comment",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "healthcare": "speech_therapist"
- }
- },
- "highway/bus_stop": {
- "icon": "temaki-bus",
- "fields": [
- "{public_transport/platform_point}"
- ],
- "moreFields": [
- "{public_transport/platform_point}"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "highway": "bus_stop"
- },
- "matchScore": 0.95,
- "searchable": false,
- "replacement": "public_transport/platform/bus_point"
- },
- "highway/crossing": {
- "fields": [
- "crossing"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing"
- },
- "searchable": false,
- "matchScore": 0.95
- },
- "highway/bridleway": {
- "fields": [
- "name",
- "surface",
- "width",
- "structure",
- "access",
- "incline",
- "horse_scale"
- ],
- "moreFields": [
- "covered_no",
- "dog",
- "lit",
- "maxweight_bridge",
- "smoothness",
- "stroller",
- "wheelchair"
- ],
- "icon": "maki-horse-riding",
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "bridleway"
- }
- },
- "highway/bus_guideway": {
- "icon": "temaki-bus_guided",
- "fields": [
- "name",
- "operator",
- "oneway",
- "structure"
- ],
- "moreFields": [
- "covered_no",
- "trolley_wire",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "bus_guideway"
- },
- "addTags": {
- "highway": "bus_guideway",
- "access": "no",
- "bus": "designated"
- }
- },
- "highway/busway": {
- "icon": "temaki-bus",
- "fields": [
- "name",
- "operator",
- "oneway",
- "structure",
- "covered"
- ],
- "moreFields": [
- "trolley_wire"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "busway"
- }
- },
- "highway/construction": {
- "icon": "maki-barrier",
- "fields": [
- "name",
- "construction",
- "opening_date",
- "check_date",
- "access",
- "oneway",
- "structure",
- "note"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "construction"
- },
- "removeTags": {
- "highway": "construction",
- "construction": "*"
- }
- },
- "highway/corridor": {
- "icon": "temaki-pedestrian_walled",
- "fields": [
- "name",
- "width",
- "level",
- "access_simple",
- "wheelchair"
- ],
- "moreFields": [
- "indoor",
- "maxheight",
- "stroller"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "corridor"
- },
- "addTags": {
- "highway": "corridor",
- "indoor": "yes"
- }
- },
- "highway/crossing/marked": {
- "icon": "temaki-pedestrian_crosswalk",
- "fields": [
- "crossing",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised"
- ],
- "moreFields": [
- "flashing_lights"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing",
- "crossing": "marked"
- },
- "reference": {
- "key": "crossing",
- "value": "marked"
- },
- "searchable": false
- },
- "highway/crossing/zebra": {
- "icon": "temaki-pedestrian_crosswalk",
- "fields": [
- "crossing",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing",
- "crossing": "zebra"
- },
- "reference": {
- "key": "crossing",
- "value": "zebra"
- },
- "searchable": false
- },
- "highway/crossing/traffic_signals": {
- "icon": "temaki-railway_signals",
- "fields": [
- "crossing",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "button_operated",
- "traffic_signals/sound",
- "traffic_signals/vibration"
- ],
- "moreFields": [
- "traffic_signals/arrow",
- "traffic_signals/countdown",
- "traffic_signals/minimap"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing",
- "crossing": "traffic_signals"
- },
- "reference": {
- "key": "crossing",
- "value": "traffic_signals"
- }
- },
- "highway/crossing/uncontrolled": {
- "icon": "temaki-pedestrian_crosswalk",
- "fields": [
- "crossing",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing",
- "crossing": "uncontrolled"
- },
- "reference": {
- "key": "crossing",
- "value": "uncontrolled"
- }
- },
- "highway/crossing/unmarked": {
- "icon": "temaki-pedestrian",
- "fields": [
- "crossing",
- "tactile_paving",
- "crossing/island",
- "crossing_raised"
- ],
- "moreFields": [
- "flashing_lights"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "crossing",
- "crossing": "unmarked"
- },
- "reference": {
- "key": "crossing",
- "value": "unmarked"
- }
- },
- "highway/cycleway": {
- "icon": "fas-biking",
- "fields": [
- "name",
- "oneway",
- "surface",
- "smoothness",
- "width",
- "structure",
- "access",
- "incline"
- ],
- "moreFields": [
- "covered_no",
- "dog",
- "lit",
- "maxspeed",
- "maxweight_bridge",
- "not/name",
- "stroller",
- "wheelchair"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "cycleway"
- }
- },
- "highway/cycleway/crossing": {
- "icon": "temaki-cyclist_crosswalk",
- "fields": [
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "cycleway": "crossing"
- },
- "addTags": {
- "highway": "cycleway",
- "cycleway": "crossing"
- },
- "reference": {
- "key": "cycleway",
- "value": "crossing"
- },
- "searchable": false,
- "matchScore": 0.95
- },
- "highway/cycleway/bicycle_foot": {
- "locationSet": {
- "exclude": [
- "fr",
- "lt",
- "pl",
- "de"
- ]
- },
- "icon": "temaki-pedestrian_and_cyclist",
- "fields": [
- "name",
- "segregated",
- "oneway",
- "surface",
- "smoothness",
- "width",
- "structure",
- "access",
- "incline"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "cycleway",
- "foot": "designated"
- },
- "addTags": {
- "highway": "cycleway",
- "foot": "designated",
- "bicycle": "designated"
- },
- "matchScore": 0.9
- },
- "highway/cycleway/crossing/marked": {
- "icon": "temaki-cyclist_crosswalk",
- "fields": [
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "cycleway",
- "cycleway": "crossing",
- "crossing": "marked"
- },
- "reference": {
- "key": "crossing",
- "value": "marked"
- },
- "matchScore": 0.95,
- "searchable": false
- },
- "highway/cycleway/crossing/bicycle_foot": {
- "locationSet": {
- "exclude": [
- "fr",
- "lt",
- "pl"
- ]
- },
- "icon": "temaki-ped_cyclist_crosswalk",
- "fields": [
- "crossing",
- "surface",
- "smoothness",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "cycleway",
- "cycleway": "crossing",
- "foot": "designated"
- },
- "addTags": {
- "highway": "cycleway",
- "cycleway": "crossing",
- "foot": "designated",
- "bicycle": "designated"
- },
- "reference": {
- "key": "cycleway",
- "value": "crossing"
- },
- "matchScore": 0.9
- },
- "highway/cycleway/crossing/traffic_signals": {
- "icon": "fas-biking",
- "fields": [
- "oneway",
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing_raised",
- "button_operated",
- "traffic_signals/sound",
- "traffic_signals/vibration",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "cycleway",
- "cycleway": "crossing",
- "crossing": "traffic_signals"
- },
- "reference": {
- "key": "crossing",
- "value": "traffic_signals"
- },
- "matchScore": 0.95
- },
- "highway/cycleway/crossing/uncontrolled": {
- "icon": "temaki-cyclist_crosswalk",
- "fields": [
- "oneway",
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "cycleway",
- "cycleway": "crossing",
- "crossing": "uncontrolled"
- },
- "reference": {
- "key": "crossing",
- "value": "uncontrolled"
- },
- "matchScore": 0.95
- },
- "highway/cycleway/crossing/unmarked": {
- "icon": "fas-biking",
- "fields": [
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing_raised",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "cycleway",
- "cycleway": "crossing",
- "crossing": "unmarked"
- },
- "reference": {
- "key": "crossing",
- "value": "unmarked"
- },
- "matchScore": 0.95
- },
- "highway/cycleway/moped_link-NL": {
- "locationSet": {
- "include": [
- "nl"
- ]
- },
- "icon": "fas-motorcycle",
- "fields": [
- "name",
- "oneway",
- "surface",
- "smoothness",
- "width",
- "structure",
- "access",
- "incline"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "cycleway",
- "bicycle": "no",
- "moped": "designated"
- },
- "addTags": {
- "highway": "cycleway",
- "bicycle": "no",
- "moped": "designated",
- "foot": "no",
- "mofa": "no"
- },
- "matchScore": 0.9
- },
- "highway/elevator_line": {
- "icon": "temaki-elevator",
- "fields": [
- "{highway/elevator}"
- ],
- "moreFields": [
- "{highway/elevator}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "elevator"
- }
- },
- "highway/elevator": {
- "icon": "temaki-elevator",
- "fields": [
- "ref",
- "operator",
- "level_semi",
- "access_simple",
- "wheelchair",
- "maxweight"
- ],
- "moreFields": [
- "dog",
- "manufacturer",
- "maxheight",
- "opening_hours",
- "opening_hours/covid19"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "elevator"
- }
- },
- "highway/emergency_access_point": {
- "icon": "fas-compress-arrows-alt",
- "geometry": [
- "point"
- ],
- "fields": [
- "ref",
- "operator"
- ],
- "tags": {
- "highway": "emergency_access_point"
- }
- },
- "highway/emergency_bay": {
- "icon": "maki-car",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "emergency_bay"
- }
- },
- "highway/escape": {
- "icon": "fas-truck-fast",
- "fields": [
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "escape"
- }
- },
- "highway/footway": {
- "icon": "temaki-pedestrian",
- "fields": [
- "name",
- "surface",
- "width",
- "structure",
- "access",
- "incline"
- ],
- "moreFields": [
- "covered_no",
- "dog",
- "informal",
- "lit",
- "maxweight_bridge",
- "not/name",
- "smoothness",
- "stroller",
- "tactile_paving",
- "wheelchair"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway"
- }
- },
- "highway/footway/crossing": {
- "fields": [
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing"
- },
- "reference": {
- "key": "footway",
- "value": "crossing"
- },
- "searchable": false
- },
- "highway/footway/informal": {
- "icon": "fas-shoe-prints",
- "fields": [
- "surface",
- "width",
- "access",
- "trail_visibility",
- "smoothness",
- "incline"
- ],
- "moreFields": [
- "covered_no",
- "dog",
- "informal",
- "lit",
- "maxweight_bridge",
- "sac_scale",
- "stroller",
- "structure",
- "wheelchair"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "informal": "yes"
- },
- "reference": {
- "key": "informal"
- },
- "searchable": false
- },
- "highway/footway/access_aisle": {
- "icon": "temaki-striped_zone",
- "fields": [
- "access_aisle",
- "width",
- "surface",
- "tactile_paving",
- "access",
- "wheelchair"
- ],
- "moreFields": [
- "covered_no",
- "dog",
- "incline",
- "lit",
- "maxweight_bridge",
- "ref",
- "smoothness",
- "stroller",
- "structure"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "access_aisle"
- },
- "reference": {
- "key": "footway",
- "value": "access_aisle"
- }
- },
- "highway/footway/conveying": {
- "icon": "temaki-pedestrian",
- "fields": [
- "name",
- "conveying",
- "access_simple",
- "lit",
- "width",
- "wheelchair"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "conveying": "*"
- },
- "reference": {
- "key": "conveying"
- }
- },
- "highway/footway/crossing/marked": {
- "icon": "temaki-pedestrian_crosswalk",
- "fields": [
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
- ],
- "moreFields": [
- "flashing_lights"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing",
- "crossing": "marked"
- },
- "reference": {
- "key": "crossing",
- "value": "marked"
- },
- "searchable": false
- },
- "highway/footway/crossing/zebra": {
- "icon": "temaki-pedestrian_crosswalk",
- "fields": [
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing",
- "crossing": "zebra"
- },
- "reference": {
- "key": "crossing",
- "value": "zebra"
- },
- "searchable": false
- },
- "highway/footway/crossing/traffic_signals": {
- "icon": "temaki-railway_signals",
- "fields": [
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "button_operated",
- "traffic_signals/sound",
- "traffic_signals/vibration",
- "access"
- ],
- "moreFields": [
- "traffic_signals/arrow",
- "traffic_signals/countdown",
- "traffic_signals/minimap"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing",
- "crossing": "traffic_signals"
- },
- "reference": {
- "key": "crossing",
- "value": "traffic_signals"
- }
- },
- "highway/footway/crossing/uncontrolled": {
- "icon": "temaki-pedestrian",
- "fields": [
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing/markings",
- "crossing_raised",
- "access"
- ],
- "moreFields": [
- "flashing_lights"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing",
- "crossing": "uncontrolled"
- },
- "reference": {
- "key": "crossing",
- "value": "uncontrolled"
- }
- },
- "highway/footway/crossing/unmarked": {
- "icon": "temaki-pedestrian",
- "fields": [
- "crossing",
- "surface",
- "tactile_paving",
- "crossing/island",
- "crossing_raised",
- "access"
- ],
- "moreFields": [
- "flashing_lights"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "footway",
- "footway": "crossing",
- "crossing": "unmarked"
- },
- "reference": {
- "key": "crossing",
- "value": "unmarked"
- }
- },
- "highway/footway/sidewalk": {
- "icon": "temaki-pedestrian",
- "geometry": [
- "line"
- ],
- "tags": {
- "footway": "sidewalk"
- },
- "addTags": {
- "highway": "footway",
- "footway": "sidewalk"
- },
- "reference": {
- "key": "footway",
- "value": "sidewalk"
- }
- },
- "highway/footway/traffic_island": {
- "icon": "temaki-pedestrian",
- "geometry": [
- "line"
- ],
- "tags": {
- "footway": "traffic_island"
- },
- "addTags": {
- "highway": "footway",
- "footway": "traffic_island"
- },
- "reference": {
- "key": "footway",
- "value": "traffic_island"
- }
- },
- "highway/give_way": {
- "icon": "temaki-yield",
- "fields": [
- "direction_vertex_dual"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "give_way"
- }
- },
- "highway/living_street": {
- "icon": "iD-highway-living-street",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "access"
- ],
- "moreFields": [
- "covered_no",
- "cycleway",
- "flood_prone",
- "junction_line",
- "lit",
- "maxheight",
- "maxweight_bridge",
- "maxwidth",
- "oneway/bicycle",
- "smoothness",
- "trolley_wire",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "living_street"
- }
- },
- "highway/milestone": {
- "icon": "temaki-milestone",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "distance",
- "ref",
- "direction_vertex"
- ],
- "moreFields": [
- "ref"
- ],
- "tags": {
- "highway": "milestone"
- }
- },
- "highway/mini_roundabout": {
- "icon": "maki-circle-stroked",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "mini_roundabout"
- },
- "fields": [
- "direction_clock"
- ]
- },
- "highway/motorway_junction": {
- "icon": "temaki-junction",
- "fields": [
- "ref_highway_junction",
- "name"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "motorway_junction"
- }
- },
- "highway/motorway_link-US-CA": {
- "name": "{highway/motorway_link}",
- "icon": "iD-highway-motorway-link",
- "fields": [
- "destination_oneway",
- "destination/ref_oneway",
- "junction/ref_oneway",
- "oneway",
- "maxspeed/advisory",
- "lanes",
- "surface",
- "structure",
- "access"
- ],
- "moreFields": [
- "charge_toll",
- "covered_no",
- "destination/symbol_oneway",
- "incline",
- "junction_line",
- "lit",
- "maxheight",
- "maxspeed",
- "maxweight_bridge",
- "maxwidth",
- "ref_road_number",
- "smoothness",
- "toll",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "motorway_link"
- },
- "locationSet": {
- "include": [
- "ca",
- "us"
- ]
- }
- },
- "highway/motorway_link": {
- "icon": "iD-highway-motorway-link",
- "fields": [
- "destination_oneway",
- "destination/ref_oneway",
- "junction/ref_oneway",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "access"
- ],
- "moreFields": [
- "charge_toll",
- "covered_no",
- "destination/symbol_oneway",
- "incline",
- "junction_line",
- "lit",
- "maxheight",
- "maxspeed/advisory",
- "maxweight_bridge",
- "maxwidth",
- "ref_road_number",
- "smoothness",
- "toll",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "motorway_link"
- },
- "locationSet": {
- "exclude": [
- "ca",
- "us"
- ]
- }
- },
- "highway/motorway": {
- "icon": "iD-highway-motorway",
- "fields": [
- "name",
- "ref_road_number",
- "oneway_yes",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "access"
- ],
- "moreFields": [
- "charge_toll",
- "covered_no",
- "incline",
- "junction_line",
- "lit",
- "maxheight",
- "maxspeed/advisory",
- "maxspeed/hgv",
- "maxweight_bridge",
- "maxwidth",
- "minspeed",
- "not/name",
- "smoothness",
- "toll",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "motorway"
- }
- },
- "highway/passing_place": {
- "icon": "maki-circle-stroked",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "passing_place"
- }
- },
- "highway/path": {
- "icon": "iD-other-line",
- "fields": [
- "name",
- "surface",
- "width",
- "structure",
- "access",
- "incline"
- ],
- "moreFields": [
- "covered_no",
- "dog",
- "gnis/feature_id-US",
- "horse_scale",
- "informal",
- "lit",
- "maxweight_bridge",
- "mtb/scale",
- "mtb/scale/imba",
- "mtb/scale/uphill",
- "not/name",
- "ref",
- "sac_scale",
- "smoothness",
- "stroller",
- "trail_visibility",
- "wheelchair"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "path"
- }
- },
- "highway/path/boardwalk": {
- "icon": "temaki-pedestrian",
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "path",
- "bridge": "boardwalk"
- },
- "addTags": {
- "highway": "path",
- "bridge": "boardwalk",
- "surface": "wood"
- },
- "reference": {
- "key": "bridge",
- "value": "boardwalk"
- }
- },
- "highway/path/informal": {
- "icon": "fas-shoe-prints",
- "fields": [
- "surface",
- "width",
- "access",
- "trail_visibility",
- "smoothness",
- "incline"
- ],
- "moreFields": [
- "covered_no",
- "dog",
- "horse_scale",
- "informal",
- "lit",
- "maxweight_bridge",
- "mtb/scale",
- "mtb/scale/imba",
- "mtb/scale/uphill",
- "sac_scale",
- "stroller",
- "structure",
- "wheelchair"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "path",
- "informal": "yes"
- },
- "reference": {
- "key": "informal"
- }
- },
- "highway/pedestrian_area": {
- "icon": "temaki-pedestrian",
- "fields": [
- "name",
- "surface",
- "lit",
- "width",
- "structure",
- "access"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "highway": "pedestrian"
- }
- },
- "highway/pedestrian_line": {
- "icon": "temaki-pedestrian",
- "fields": [
- "name",
- "surface",
- "lit",
- "width",
- "oneway",
- "structure",
- "access"
- ],
- "moreFields": [
- "covered_no",
- "incline",
- "maxweight_bridge",
- "smoothness"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "pedestrian"
- }
- },
- "highway/primary_link-US-CA": {
- "name": "{highway/primary_link}",
- "icon": "iD-highway-primary-link",
- "fields": [
- "destination_oneway",
- "destination/ref_oneway",
- "oneway",
- "maxspeed/advisory",
- "lanes",
- "surface",
- "structure",
- "access"
- ],
- "moreFields": [
- "charge_toll",
- "covered_no",
- "cycleway",
- "destination/symbol_oneway",
- "flood_prone",
- "incline",
- "junction_line",
- "junction/ref_oneway",
- "lit",
- "maxheight",
- "maxspeed",
- "maxweight_bridge",
- "maxwidth",
- "oneway/bicycle",
- "ref_road_number",
- "smoothness",
- "toll",
- "trolley_wire",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "primary_link"
- },
- "locationSet": {
- "include": [
- "ca",
- "us"
- ]
- }
- },
- "highway/primary_link": {
- "icon": "iD-highway-primary-link",
- "fields": [
- "destination_oneway",
- "destination/ref_oneway",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "access"
- ],
- "moreFields": [
- "charge_toll",
- "covered_no",
- "cycleway",
- "destination/symbol_oneway",
- "flood_prone",
- "incline",
- "junction_line",
- "junction/ref_oneway",
- "lit",
- "maxheight",
- "maxspeed/advisory",
- "maxweight_bridge",
- "maxwidth",
- "oneway/bicycle",
- "ref_road_number",
- "smoothness",
- "toll",
- "trolley_wire",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "primary_link"
- },
- "locationSet": {
- "exclude": [
- "ca",
- "us"
- ]
- }
- },
- "highway/primary": {
- "icon": "iD-highway-primary",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "ref_road_number",
- "access"
- ],
- "moreFields": [
- "charge_toll",
- "covered_no",
- "cycleway",
- "expressway-US",
- "flood_prone",
- "incline",
- "junction_line",
- "lane_markings",
- "lit",
- "maxheight",
- "maxspeed/advisory",
- "maxspeed/hgv",
- "maxweight_bridge",
- "maxwidth",
- "not/name",
- "oneway/bicycle",
- "smoothness",
- "toll",
- "traffic_calming",
- "trolley_wire",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "primary"
- }
- },
- "highway/raceway": {
- "icon": "temaki-speedway_oval",
- "fields": [
- "name",
- "oneway",
- "surface",
- "sport_racing_motor",
- "lit",
- "width",
- "lanes",
- "structure"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "highway": "raceway"
- },
- "addTags": {
- "highway": "raceway",
- "sport": "motor"
- }
- },
- "highway/raceway/karting": {
- "icon": "temaki-speedway_8",
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "highway": "raceway",
- "sport": "karting"
- },
- "reference": {
- "key": "sport",
- "value": "karting"
- }
- },
- "highway/raceway/motocross": {
- "icon": "fas-motorcycle",
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "highway": "raceway",
- "sport": "motocross"
- },
- "reference": {
- "key": "sport",
- "value": "motocross"
- }
- },
- "highway/residential": {
- "icon": "iD-highway-residential",
- "fields": [
- "name",
- "oneway",
- "maxspeed",
- "lanes",
- "surface",
- "structure",
- "access"
- ],
- "moreFields": [
- "covered_no",
- "cycleway",
- "flood_prone",
- "incline",
- "junction_line",
- "lane_markings",
- "lit",
- "maxheight",
- "maxspeed/advisory",
- "maxweight_bridge",
- "maxwidth",
- "not/name",
- "oneway/bicycle",
- "smoothness",
- "traffic_calming",
- "trolley_wire",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "residential"
- }
- },
- "highway/rest_area": {
- "icon": "maki-highway-rest-area",
- "fields": [
- "name",
- "operator",
- "opening_hours"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "highway": "rest_area"
- }
- },
- "highway/road": {
- "icon": "iD-other-line",
- "fields": [
- "highway",
- "{highway/residential}"
- ],
- "moreFields": [
- "{highway/residential}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "road"
- }
- },
- "highway/road/bridge": {
- "icon": "iD-other-line",
- "fields": [
- "highway",
- "{highway/residential}"
- ],
- "moreFields": [
- "{highway/residential}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "road",
- "bridge": "*"
- },
- "addTags": {
- "highway": "road",
- "bridge": "yes",
- "layer": "1"
- },
- "matchScore": 0.25
- },
- "highway/secondary_link": {
- "icon": "iD-highway-secondary-link",
- "fields": [
- "{highway/primary_link}"
- ],
- "moreFields": [
- "{highway/primary_link}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "secondary_link"
- }
- },
- "highway/secondary": {
- "icon": "iD-highway-secondary",
- "fields": [
- "{highway/primary}"
- ],
- "moreFields": [
- "{highway/primary}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "secondary"
- }
- },
- "highway/service_area": {
- "icon": "iD-highway-service",
- "fields": [
- "name",
- "service",
- "maxspeed",
- "surface",
- "structure",
- "access"
- ],
- "moreFields": [
- "covered_no",
- "flood_prone",
- "lit",
- "maxheight",
- "maxspeed/advisory",
- "maxweight_bridge",
- "smoothness",
- "trolley_wire"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "highway": "service"
- },
- "searchable": false
- },
- "highway/service": {
- "icon": "iD-highway-service",
- "fields": [
- "name",
- "service",
- "oneway",
- "maxspeed",
- "surface",
- "structure",
- "access"
- ],
- "moreFields": [
- "covered_no",
- "flood_prone",
- "incline",
- "lanes",
- "lit",
- "maxheight",
- "maxspeed/advisory",
- "maxweight_bridge",
- "maxwidth",
- "oneway/bicycle",
- "smoothness",
- "traffic_calming",
- "trolley_wire",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service"
- },
- "matchScore": 0.9
- },
- "highway/service/alley": {
- "icon": "iD-highway-service",
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "alley"
- },
- "reference": {
- "key": "service",
- "value": "alley"
- }
- },
- "highway/service/drive-through": {
- "icon": "iD-highway-service",
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "drive-through"
- },
- "reference": {
- "key": "service",
- "value": "drive-through"
- }
- },
- "highway/service/driveway": {
- "icon": "iD-highway-service",
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "driveway"
- },
- "reference": {
- "key": "service",
- "value": "driveway"
- }
- },
- "highway/service/emergency_access": {
- "icon": "iD-highway-service",
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "emergency_access"
- },
- "reference": {
- "key": "service",
- "value": "emergency_access"
- }
- },
- "highway/service/parking_aisle": {
- "icon": "iD-highway-service",
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "service",
- "service": "parking_aisle"
- },
- "reference": {
- "key": "service",
- "value": "parking_aisle"
- }
- },
- "highway/services": {
- "icon": "maki-car",
- "fields": [
- "{highway/rest_area}"
- ],
- "moreFields": [
- "{highway/rest_area}"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "highway": "services"
- }
- },
- "highway/speed_camera": {
- "icon": "temaki-security_camera",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "direction",
- "ref",
- "maxspeed"
- ],
- "tags": {
- "highway": "speed_camera"
- }
- },
- "highway/speed_display": {
- "icon": "maki-square-stroked",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "direction_point",
- "direction_vertex",
- "maxspeed"
- ],
- "moreFields": [
- "maxspeed/advisory"
- ],
- "tags": {
- "highway": "speed_display"
- }
- },
- "highway/steps": {
- "icon": "iD-highway-steps",
- "fields": [
- "name",
- "incline_steps",
- "access_simple",
- "handrail",
- "step_count",
- "tactile_paving",
- "surface",
- "width"
- ],
- "moreFields": [
- "covered_no",
- "dog",
- "indoor",
- "level_semi",
- "lit",
- "ref",
- "ramp",
- "stroller",
- "wheelchair"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "steps"
- }
- },
- "highway/steps/conveying": {
- "icon": "maki-entrance",
- "fields": [
- "incline_steps",
- "conveying",
- "access_simple",
- "indoor",
- "level_semi",
- "width"
- ],
- "moreFields": [
- "{highway/steps}",
- "dog",
- "handrail",
- "operator",
- "manufacturer",
- "step_count",
- "surface"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "steps",
- "conveying": "*"
- }
- },
- "highway/stop": {
- "icon": "temaki-stop",
- "fields": [
- "stop",
- "direction_vertex"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "stop"
- }
- },
- "highway/street_lamp": {
- "icon": "temaki-street_lamp_arm",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "highway": "street_lamp"
- },
- "fields": [
- "lamp_type",
- "support",
- "lamp_mount",
- "direction",
- "height",
- "ref"
- ]
- },
- "highway/tertiary_link": {
- "icon": "iD-highway-tertiary-link",
- "fields": [
- "{highway/primary_link}"
- ],
- "moreFields": [
- "{highway/primary_link}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "tertiary_link"
- }
- },
- "highway/tertiary": {
- "icon": "iD-highway-tertiary",
- "fields": [
- "{highway/primary}"
- ],
- "moreFields": [
- "{highway/primary}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "tertiary"
- }
- },
- "highway/toll_gantry": {
- "locationSet": {
- "exclude": [
- "de"
- ]
- },
- "icon": "temaki-toll_gantry",
- "fields": [
- "ref",
- "operator",
- "access",
- "maxheight",
- "opening_hours",
- "payment_multi"
- ],
- "moreFields": [
- "opening_hours/covid19"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "toll_gantry"
- }
- },
- "highway/track": {
- "icon": "fas-truck-monster",
- "fields": [
- "name",
- "tracktype",
- "surface",
- "width",
- "structure",
- "access",
- "incline",
- "smoothness"
- ],
- "moreFields": [
- "covered_no",
- "flood_prone",
- "horse_scale",
- "maxweight_bridge",
- "mtb/scale",
- "mtb/scale/imba",
- "mtb/scale/uphill",
- "stroller",
- "wheelchair"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "track"
- }
- },
- "highway/traffic_mirror": {
- "icon": "maki-circle-stroked",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "direction"
- ],
- "tags": {
- "highway": "traffic_mirror"
- }
- },
- "highway/traffic_signals": {
- "icon": "temaki-traffic_signals",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "traffic_signals"
- },
- "fields": [
- "traffic_signals",
- "traffic_signals/direction"
- ],
- "moreFields": [
- "traffic_signals/countdown"
- ]
- },
- "highway/trailhead": {
- "icon": "fas-hiking",
- "fields": [
- "name",
- "operator",
- "ele_node",
- "address",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "gnis/feature_id-US",
- "opening_hours",
- "opening_hours/covid19"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "trailhead"
- }
- },
- "highway/trunk_link-US-CA": {
- "name": "{highway/trunk_link}",
- "icon": "iD-highway-trunk-link",
- "fields": [
- "{highway/motorway_link-US-CA}"
- ],
- "moreFields": [
- "{highway/motorway_link-US-CA}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "trunk_link"
- },
- "locationSet": {
- "include": [
- "ca",
- "us"
- ]
- }
- },
- "highway/trunk_link": {
- "icon": "iD-highway-trunk-link",
- "fields": [
- "{highway/motorway_link}"
- ],
- "moreFields": [
- "{highway/motorway_link}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "trunk_link"
- },
- "locationSet": {
- "exclude": [
- "ca",
- "us"
- ]
- }
- },
- "highway/trunk": {
- "icon": "iD-highway-trunk",
- "fields": [
- "name",
- "ref_road_number",
- "oneway",
- "maxspeed",
- "lanes",
- "expressway-US",
- "surface",
- "structure",
- "access"
- ],
- "moreFields": [
- "charge_toll",
- "covered_no",
- "incline",
- "junction_line",
- "lit",
- "maxheight",
- "maxspeed/advisory",
- "maxspeed/hgv",
- "maxweight_bridge",
- "maxwidth",
- "minspeed",
- "not/name",
- "smoothness",
- "toll",
- "width"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "trunk"
- }
- },
- "highway/turning_circle": {
- "icon": "maki-circle-stroked",
- "geometry": [
- "vertex"
- ],
- "fields": [
- "turning_circle"
- ],
- "tags": {
- "highway": "turning_circle"
- }
- },
- "highway/turning_loop": {
- "icon": "maki-circle",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "highway": "turning_loop"
- }
- },
- "highway/unclassified": {
- "icon": "iD-highway-unclassified",
- "fields": [
- "{highway/residential}"
- ],
- "moreFields": [
- "{highway/residential}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "highway": "unclassified"
- }
- },
- "historic": {
- "icon": "temaki-ruins",
- "fields": [
- "historic",
- "inscription"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "historic": "*"
- },
- "matchScore": 0.5
- },
- "historic/archaeological_site": {
- "icon": "temaki-ruins",
- "fields": [
- "name",
- "archaeological_site",
- "historic/civilization",
- "inscription",
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "archaeological_site"
- }
- },
- "historic/boundary_stone": {
- "icon": "temaki-milestone",
- "fields": [
- "name",
- "inscription"
- ],
- "moreFields": [
- "{historic}",
- "material"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "historic": "boundary_stone"
- }
- },
- "historic/building": {
- "icon": "maki-home",
- "fields": [
- "{building}",
- "start_date"
- ],
- "moreFields": [
- "{building}",
- "access_simple"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "historic": "building"
- },
- "addTags": {
- "historic": "building",
- "building": "*"
- },
- "reference": {
- "key": "historic",
- "value": "building"
- },
- "matchScore": 0.5
- },
- "historic/castle": {
- "icon": "maki-castle",
- "fields": [
- "name",
- "castle_type",
- "building_area_yes",
- "historic/civilization",
- "access_simple",
- "start_date"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "historic": "castle"
- }
- },
- "historic/castle/fortress": {
- "icon": "maki-castle",
- "fields": [
- "name",
- "building_area_yes",
- "access_simple",
- "start_date"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "reference": {
- "key": "castle_type",
- "value": "fortress"
- },
- "tags": {
- "historic": "castle",
- "castle_type": "fortress"
- }
- },
- "historic/castle/palace": {
- "icon": "fas-crown",
- "fields": [
- "name",
- "building_area_yes",
- "access_simple",
- "start_date"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "reference": {
- "key": "castle_type",
- "value": "palace"
- },
- "tags": {
- "historic": "castle",
- "castle_type": "palace"
- }
- },
- "historic/castle/stately": {
- "icon": "fas-crown",
- "fields": [
- "name",
- "building_area_yes",
- "access_simple",
- "start_date"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "reference": {
- "key": "castle_type",
- "value": "stately"
- },
- "tags": {
- "historic": "castle",
- "castle_type": "stately"
- }
- },
- "historic/city_gate": {
- "icon": "maki-castle",
- "fields": [
- "name",
- "building_area_yes",
- "historic/civilization",
- "start_date"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "historic": "city_gate"
- }
- },
- "historic/fort": {
- "icon": "maki-castle",
- "fields": [
- "name",
- "building_area_yes",
- "access_simple",
- "start_date"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "historic": "fort"
- }
- },
- "historic/manor": {
- "icon": "maki-castle",
- "fields": [
- "name",
- "building_area_yes",
- "access_simple",
- "start_date"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "historic": "manor"
- }
- },
- "historic/memorial": {
- "icon": "maki-monument",
- "fields": [
- "name",
- "memorial",
- "inscription",
- "material"
- ],
- "moreFields": [
- "{historic}",
- "subject/wikidata"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "memorial"
- }
- },
- "historic/memorial/plaque": {
- "icon": "temaki-plaque",
- "fields": [
- "{historic/memorial}",
- "direction"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "historic": "memorial",
- "memorial": "plaque"
- },
- "reference": {
- "key": "memorial",
- "value": "plaque"
- }
- },
- "historic/monument": {
- "icon": "maki-monument",
- "fields": [
- "name",
- "inscription",
- "access_simple"
- ],
- "moreFields": [
- "{historic}",
- "material"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "monument"
- }
- },
- "historic/pillory": {
- "icon": "maki-monument",
- "fields": [
- "name",
- "building_area_yes",
- "access_simple",
- "start_date"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "historic": "pillory"
- }
- },
- "historic/ruins": {
- "icon": "temaki-ruins",
- "fields": [
- "name",
- "ruins",
- "historic/civilization",
- "inscription",
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "ruins"
- }
- },
- "historic/tomb": {
- "icon": "maki-cemetery",
- "fields": [
- "name",
- "tomb",
- "building_area_yes",
- "inscription",
- "access_simple"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "historic": "tomb"
- }
- },
- "historic/wayside_cross": {
- "icon": "maki-religious-christian",
- "fields": [
- "name",
- "inscription",
- "material"
- ],
- "moreFields": [
- "{historic}",
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "wayside_cross"
- }
- },
- "historic/wayside_shrine": {
- "icon": "maki-landmark",
- "fields": [
- "name",
- "religion",
- "denomination",
- "inscription",
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "historic": "wayside_shrine"
- }
- },
- "historic/wreck": {
- "icon": "temaki-ruins",
- "fields": [
- "name",
- "access_simple",
- "seamark/wreck/category",
- "historic/wreck/date_sunk",
- "historic/wreck/visible_at_low_tide",
- "historic/wreck/visible_at_high_tide"
- ],
- "moreFields": [
- "{historic}",
- "seamark/type"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "historic": "wreck"
- },
- "addTags": {
- "historic": "wreck",
- "seamark:type": "wreck"
- }
- },
- "indoor/corridor_line": {
- "fields": [
- "level",
- "name"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "indoor": "corridor"
- },
- "searchable": false,
- "matchScore": 1.1,
- "replacement": "highway/corridor"
- },
- "indoor/area": {
- "icon": "temaki-room",
- "fields": [
- "level",
- "name",
- "ref_room_number",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "indoor": "area"
- },
- "matchScore": 0.8
- },
- "indoor/corridor": {
- "icon": "temaki-pedestrian",
- "fields": [
- "level",
- "name",
- "ref",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "indoor": "corridor"
- },
- "matchScore": 0.8
- },
- "indoor/door": {
- "icon": "maki-entrance-alt1",
- "fields": [
- "level",
- "ref",
- "door_type",
- "access_simple",
- "width",
- "height"
- ],
- "moreFields": [
- "wheelchair"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "indoor": "door"
- },
- "addTags": {
- "indoor": "door",
- "door": "yes"
- },
- "removeTags": {
- "indoor": "door",
- "door": "*"
- }
- },
- "indoor/elevator": {
- "icon": "temaki-elevator",
- "fields": [
- "ref",
- "level_semi"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "indoor": "room",
- "elevator": "yes"
- },
- "matchScore": 0.8
- },
- "indoor/room": {
- "icon": "temaki-room",
- "fields": [
- "level",
- "name",
- "ref_room_number",
- "room",
- "height"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "indoor": "room"
- },
- "matchScore": 0.8
- },
- "indoor/stairs": {
- "icon": "iD-highway-steps",
- "fields": [
- "ref",
- "level_semi",
- "conveying_escalator"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "indoor": "room",
- "stairs": "yes"
- },
- "matchScore": 0.8
- },
- "indoor/wall": {
- "icon": "temaki-wall",
- "fields": [
- "level",
- "height"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "indoor": "wall"
- }
- },
- "internet_access/wlan": {
- "icon": "fas-wifi",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "internet_access/ssid",
- "internet_access/fee"
- ],
- "moreFields": [
- "level"
- ],
- "tags": {
- "internet_access": "wlan"
- },
- "matchScore": 0.25
- },
- "junction": {
- "icon": "temaki-junction",
- "fields": [
- "name"
- ],
- "geometry": [
- "vertex",
- "area"
- ],
- "tags": {
- "junction": "yes"
- }
- },
- "landuse/basin": {
- "icon": "maki-water",
- "fields": [
- "name",
- "basin",
- "intermittent_yes"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "basin"
- },
- "searchable": false
- },
- "landuse/churchyard": {
- "icon": "maki-religious-christian",
- "fields": [
- "{landuse/religious}"
- ],
- "moreFields": [
- "{landuse/religious}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "churchyard"
- },
- "searchable": false
- },
- "landuse/farm": {
- "icon": "maki-farm",
- "fields": [
- "name",
- "operator",
- "crop"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "landuse": "farm"
- },
- "searchable": false
- },
- "landuse/pond": {
- "icon": "maki-water",
- "fields": [
- "name",
- "intermittent"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "pond"
- },
- "searchable": false
- },
- "landuse/reservoir": {
- "icon": "maki-water",
- "fields": [
- "name",
- "intermittent"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "reservoir"
- },
- "searchable": false
- },
- "landuse/allotments": {
- "icon": "maki-garden-centre",
- "geometry": [
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "plots"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "tags": {
- "landuse": "allotments"
- }
- },
- "landuse/aquaculture": {
- "icon": "maki-aquarium",
- "fields": [
- "name",
- "operator",
- "produce"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "aquaculture"
- }
- },
- "landuse/brownfield": {
- "icon": "temaki-bulldozer",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "brownfield"
- },
- "matchScore": 0.9
- },
- "landuse/cemetery": {
- "icon": "maki-cemetery",
- "fields": [
- "name",
- "religion",
- "denomination"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "cemetery"
- }
- },
- "landuse/commercial": {
- "icon": "maki-suitcase",
- "fields": [
- "name"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "commercial"
- },
- "matchScore": 0.9
- },
- "landuse/construction": {
- "icon": "temaki-bulldozer",
- "fields": [
- "name",
- "construction",
- "operator",
- "opening_date",
- "check_date",
- "note"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "construction"
- }
- },
- "landuse/education": {
- "icon": "temaki-school",
- "fields": [
- "name",
- "operator"
- ],
- "moreFields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "education"
- },
- "matchScore": 0.9
- },
- "landuse/farmland": {
- "icon": "fas-tractor",
- "fields": [
- "name",
- "operator",
- "crop",
- "produce"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "farmland"
- }
- },
- "landuse/farmyard": {
- "icon": "maki-farm",
- "fields": [
- "name",
- "operator"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "farmyard"
- }
- },
- "landuse/flowerbed": {
- "icon": "maki-garden",
- "fields": [
- "operator"
- ],
- "moreFields": [
- "address"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "flowerbed"
- }
- },
- "landuse/forest": {
- "icon": "maki-park-alt1",
- "fields": [
- "name",
- "leaf_type",
- "leaf_cycle",
- "produce"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "forest"
- }
- },
- "landuse/garages": {
- "icon": "fas-warehouse",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "tags": {
- "landuse": "garages"
- }
- },
- "landuse/grass": {
- "icon": "temaki-lawn",
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "grass"
- }
- },
- "landuse/greenfield": {
- "icon": "temaki-bulldozer",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "greenfield"
- },
- "matchScore": 0.9
- },
- "landuse/greenhouse_horticulture": {
- "icon": "maki-garden",
- "fields": [
- "name",
- "operator"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "greenhouse_horticulture"
- },
- "matchScore": 0.9
- },
- "landuse/harbour": {
- "icon": "maki-harbor",
- "fields": [
- "name",
- "operator"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "harbour"
- }
- },
- "landuse/industrial": {
- "icon": "maki-industry",
- "fields": [
- "name",
- "industrial"
- ],
- "moreFields": [
- "operator",
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "industrial"
- },
- "matchScore": 0.9
- },
- "landuse/industrial/brewery": {
- "icon": "temaki-storage_fermenter",
- "fields": [
- "{man_made/works/brewery}",
- "product"
- ],
- "moreFields": [
- "{man_made/works/brewery}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "industrial": "brewery"
- },
- "addTags": {
- "landuse": "industrial"
- },
- "reference": {
- "key": "industrial",
- "value": "brewery"
- },
- "searchable": false,
- "matchScore": 0.9,
- "name": "{man_made/works/brewery}"
- },
- "landuse/industrial/scrap_yard": {
- "icon": "temaki-junk_car",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours"
- ],
- "moreFields": [
- "{landuse/industrial}",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "industrial": "scrap_yard"
- },
- "addTags": {
- "landuse": "industrial",
- "industrial": "scrap_yard"
- },
- "reference": {
- "key": "industrial",
- "value": "scrap_yard"
- }
- },
- "landuse/industrial/slaughterhouse": {
- "icon": "maki-slaughterhouse",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "{landuse/industrial}",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "industrial": "slaughterhouse"
- },
- "addTags": {
- "landuse": "industrial",
- "industrial": "slaughterhouse"
- },
- "reference": {
- "key": "industrial",
- "value": "slaughterhouse"
- }
- },
- "landuse/landfill": {
- "icon": "temaki-bulldozer",
- "geometry": [
- "area"
- ],
- "fields": [
- "name",
- "operator"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "tags": {
- "landuse": "landfill"
- }
- },
- "landuse/meadow": {
- "icon": "maki-garden",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "landuse": "meadow"
- }
- },
- "landuse/military": {
- "icon": "temaki-military",
- "fields": [
- "name"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "military"
- },
- "matchScore": 0.9
- },
- "landuse/military/airfield": {
- "icon": "temaki-fighter_jet",
- "fields": [
- "name",
- "iata",
- "icao"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "airfield"
- },
- "addTags": {
- "aeroway": "aerodrome",
- "landuse": "military",
- "military": "airfield"
- },
- "reference": {
- "key": "military",
- "value": "airfield"
- }
- },
- "landuse/military/barracks": {
- "icon": "temaki-army_tent",
- "fields": [
- "name",
- "building_area"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "barracks"
- }
- },
- "landuse/military/base": {
- "icon": "temaki-anchor_medal",
- "fields": [
- "name",
- "military_service"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "base"
- },
- "addTags": {
- "landuse": "military",
- "military": "base"
- }
- },
- "landuse/military/base/navy": {
- "icon": "temaki-anchor_medal",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "base",
- "military_service": "navy"
- },
- "addTags": {
- "landuse": "military",
- "military": "base",
- "military_service": "navy"
- }
- },
- "landuse/military/danger_area": {
- "icon": "maki-danger",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "military": "danger_area"
- },
- "addTags": {
- "landuse": "military",
- "military": "danger_area"
- }
- },
- "landuse/military/obstacle_course": {
- "icon": "temaki-tire_course",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "obstacle_course"
- },
- "addTags": {
- "landuse": "military",
- "military": "obstacle_course"
- }
- },
- "landuse/military/range": {
- "icon": "fas-bullseye",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "range"
- },
- "addTags": {
- "landuse": "military",
- "military": "range"
- }
- },
- "landuse/military/training_area": {
- "icon": "temaki-military",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "training_area"
- },
- "addTags": {
- "landuse": "military",
- "military": "training_area"
- }
- },
- "landuse/orchard": {
- "icon": "maki-park",
- "fields": [
- "name",
- "operator",
- "trees"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone",
- "species/wikidata"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "orchard"
- }
- },
- "landuse/plant_nursery": {
- "icon": "fas-seedling",
- "fields": [
- "name",
- "operator",
- "plant"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "plant_nursery"
- }
- },
- "landuse/quarry": {
- "icon": "temaki-pick_hammer",
- "geometry": [
- "area",
- "point"
- ],
- "fields": [
- "name",
- "operator",
- "resource"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "tags": {
- "landuse": "quarry"
- }
- },
- "landuse/railway": {
- "icon": "temaki-train",
- "fields": [
- "operator"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "railway"
- }
- },
- "landuse/recreation_ground": {
- "icon": "maki-pitch",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "tags": {
- "landuse": "recreation_ground"
- }
- },
- "landuse/religious": {
- "icon": "maki-place-of-worship",
- "geometry": [
- "area"
- ],
- "fields": [
- "name",
- "religion",
- "denomination"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "tags": {
- "landuse": "religious"
- }
- },
- "landuse/residential": {
- "icon": "maki-residential-community",
- "fields": [
- "name",
- "residential"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "residential"
- },
- "matchScore": 0.9
- },
- "landuse/residential/apartments": {
- "icon": "maki-residential-community",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "residential": "apartments"
- },
- "addTags": {
- "landuse": "residential",
- "residential": "apartments"
- },
- "reference": {
- "key": "residential",
- "value": "apartments"
- }
- },
- "landuse/residential/trailer_park": {
- "icon": "temaki-manufactured_home",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "residential": "trailer_park"
- },
- "addTags": {
- "landuse": "residential",
- "residential": "trailer_park"
- },
- "reference": {
- "key": "residential",
- "value": "trailer_park"
- }
- },
- "landuse/retail": {
- "icon": "maki-commercial",
- "geometry": [
- "area"
- ],
- "fields": [
- "name"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "tags": {
- "landuse": "retail"
- },
- "matchScore": 0.9
- },
- "landuse/salt_pond": {
- "icon": "maki-triangle-stroked",
- "fields": [
- "name",
- "operator"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "salt_pond"
- }
- },
- "landuse/vineyard": {
- "icon": "temaki-grapes",
- "fields": [
- "name",
- "operator",
- "grape_variety"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "phone"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "landuse": "vineyard"
- },
- "addTags": {
- "landuse": "vineyard",
- "crop": "grape"
- },
- "removeTags": {
- "landuse": "vineyard",
- "crop": "grape",
- "grape_variety": "*"
- }
- },
- "landuse/winter_sports": {
- "icon": "fas-skiing",
- "geometry": [
- "area"
- ],
- "fields": [
- "name",
- "operator"
- ],
- "moreFields": [
- "access_simple",
- "address",
- "opening_hours",
- "opening_hours/covid19"
- ],
- "tags": {
- "landuse": "winter_sports"
- }
- },
- "leisure/adult_gaming_centre": {
- "icon": "temaki-casino",
- "fields": [
- "{amenity/casino}"
- ],
- "moreFields": [
- "{amenity/casino}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "adult_gaming_centre"
- }
- },
- "leisure/amusement_arcade": {
+ "shop/video_games": {
"icon": "maki-gaming",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "max_age",
- "min_age",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "amusement_arcade"
- }
- },
- "leisure/bandstand": {
- "icon": "fas-music",
- "fields": [
- "name",
- "building_area_yes",
- "operator"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "bandstand"
- }
- },
- "leisure/beach_resort": {
- "icon": "fas-umbrella-beach",
- "fields": [
- "name",
- "address",
- "opening_hours",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "phone",
- "smoking"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "beach_resort"
- }
- },
- "leisure/bird_hide": {
- "icon": "temaki-binoculars",
- "fields": [
- "name",
- "building_area_yes",
- "address",
- "opening_hours"
- ],
- "moreFields": [
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "bird_hide"
- }
- },
- "leisure/bleachers": {
- "icon": "temaki-bleachers",
- "geometry": [
- "area"
- ],
- "tags": {
- "leisure": "bleachers"
- }
- },
- "leisure/bowling_alley": {
- "icon": "temaki-bowling",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "min_age",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "bowling_alley"
- }
- },
- "leisure/common": {
- "icon": "temaki-pedestrian",
- "fields": [
- "name",
- "access_simple"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "common"
- }
- },
- "leisure/dance": {
- "icon": "fas-music",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "dance/style"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "dance"
- }
- },
- "leisure/dancing_school": {
- "icon": "fas-music",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "dance/style"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "dance",
- "dance:teaching": "yes"
- },
- "reference": {
- "key": "leisure",
- "value": "dance"
- }
- },
- "leisure/disc_golf_course": {
- "icon": "temaki-disc_golf_basket",
- "fields": [
- "name",
- "operator",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "opening_hours"
- ],
- "moreFields": [
- "address",
- "dog",
- "email",
- "fax",
- "gnis/feature_id-US",
- "lit",
- "opening_hours/covid19",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "disc_golf_course"
- },
- "addTags": {
- "leisure": "disc_golf_course",
- "sport": "disc_golf"
- }
- },
- "leisure/dog_park": {
- "icon": "maki-dog-park",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "access_simple",
- "website"
- ],
- "moreFields": [
- "dog",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "phone",
- "ref"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "dog_park"
- }
- },
- "leisure/escape_game": {
- "icon": "fas-puzzle-piece",
- "fields": [
- "name",
- "address",
- "building_area_yes",
- "opening_hours",
- "website",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "level",
- "opening_hours/covid19",
- "phone",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "escape_game"
- }
- },
- "leisure/firepit": {
- "icon": "temaki-campfire",
- "fields": [
- "access_simple",
- "seasonal",
- "width"
- ],
- "moreFields": [
- "ref"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "firepit"
- }
- },
- "leisure/fishing": {
- "icon": "fas-fish",
- "fields": [
- "name",
- "access_simple",
- "fishing"
- ],
- "geometry": [
- "vertex",
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fishing"
- }
- },
- "leisure/fitness_centre": {
- "icon": "fas-dumbbell",
- "fields": [
- "name",
- "sport",
- "address",
- "building_area_yes",
- "opening_hours",
- "phone",
- "website"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_centre"
- }
- },
- "leisure/fitness_centre/yoga": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_centre",
- "sport": "yoga"
- },
- "reference": {
- "key": "sport",
- "value": "yoga"
- }
- },
- "leisure/fitness_station": {
- "icon": "temaki-horizontal_bar",
- "fields": [
- "fitness_station",
- "ref",
- "wheelchair",
- "blind"
- ],
- "moreFields": [
- "access_simple",
- "opening_hours",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station"
- },
- "addTags": {
- "leisure": "fitness_station",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/balance_beam": {
- "icon": "temaki-balance_beam",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "balance_beam"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "balance_beam",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/box": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "box"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "box",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/horizontal_bar": {
- "icon": "temaki-horizontal_bar",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "horizontal_bar"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "horizontal_bar",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/horizontal_ladder": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "horizontal_ladder"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "horizontal_ladder",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/hyperextension": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "hyperextension"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "hyperextension",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/parallel_bars": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "parallel_bars"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "parallel_bars",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/push-up": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "push-up"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "push-up",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/rings": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "rings"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "rings",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/sign": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "sign"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "sign",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/sit-up": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "sit-up"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "sit-up",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/fitness_station/stairs": {
- "icon": "maki-pitch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "fitness_station",
- "fitness_station": "stairs"
- },
- "addTags": {
- "leisure": "fitness_station",
- "fitness_station": "stairs",
- "sport": "fitness"
- },
- "reference": {
- "key": "leisure",
- "value": "fitness_station"
- }
- },
- "leisure/garden": {
- "icon": "maki-garden",
- "fields": [
- "name",
- "garden/type",
- "operator",
- "operator/type",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "garden"
- }
- },
- "leisure/garden/botanical": {
- "icon": "maki-garden",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "garden",
- "garden:type": "botanical"
- },
- "reference": {
- "key": "garden:type",
- "value": "botanical"
- }
- },
- "leisure/garden/community": {
- "icon": "maki-garden",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "garden",
- "garden:type": "community"
- },
- "reference": {
- "key": "garden:type",
- "value": "community"
- }
- },
- "leisure/garden/residential": {
- "icon": "maki-garden",
- "geometry": [
- "area"
- ],
- "tags": {
- "leisure": "garden",
- "garden:type": "residential"
- },
- "reference": {
- "key": "garden:type"
- }
- },
- "leisure/golf_course": {
- "icon": "maki-golf",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "golf_course"
- }
- },
- "leisure/hackerspace": {
- "icon": "fas-code",
- "fields": [
- "name",
- "address",
- "building_area_yes",
- "opening_hours",
- "website",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "moreFields": [
- "air_conditioning",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "phone",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "hackerspace"
- }
- },
- "leisure/horse_riding": {
- "icon": "maki-horse-riding",
- "fields": [
- "name",
- "access_simple",
- "operator",
- "address"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "horse_riding"
- }
- },
- "leisure/ice_rink": {
- "icon": "fas-skating",
- "fields": [
- "name",
- "seasonal",
- "sport_ice",
- "operator",
- "address",
- "building",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "ice_rink"
- }
- },
- "leisure/indoor_play": {
- "icon": "temaki-slide",
- "fields": [
- "name",
- "address",
- "building_area_yes",
- "opening_hours",
- "phone",
- "website"
- ],
- "moreFields": [
- "blind",
- "branch_brand",
- "brand",
- "charge_fee",
- "dog",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "max_age",
- "min_age",
- "opening_hours/covid19",
- "operator",
- "payment_multi",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "indoor_play"
- }
- },
- "leisure/marina": {
- "icon": "temaki-sailboat",
- "fields": [
- "name",
- "operator",
- "capacity",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "sanitary_dump_station",
- "power_supply"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "phone",
- "seamark/type",
- "vhf"
- ],
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "leisure": "marina"
- },
- "addTags": {
- "leisure": "marina",
- "seamark:type": "harbour",
- "seamark:harbour:category": "marina"
- }
- },
- "leisure/miniature_golf": {
- "icon": "temaki-golf_green",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "phone"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "miniature_golf"
- }
- },
- "leisure/nature_reserve": {
- "icon": "maki-park",
- "geometry": [
- "area",
- "point"
- ],
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "opening_hours"
- ],
- "moreFields": [
- "access_simple",
- "dog",
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "phone"
- ],
- "tags": {
- "leisure": "nature_reserve"
- }
- },
- "leisure/outdoor_seating": {
- "icon": "maki-picnic-site",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "capacity",
- "lit",
- "seasonal",
- "heating"
- ],
- "moreFields": [
- "level",
- "wheelchair"
- ],
- "tags": {
- "leisure": "outdoor_seating"
- }
- },
- "leisure/park": {
- "icon": "temaki-tree_and_bench",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "address",
- "opening_hours"
- ],
- "moreFields": [
- "access_simple",
- "dog",
- "email",
- "fax",
- "gnis/feature_id-US",
- "opening_hours/covid19",
- "phone",
- "smoking"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "park"
- }
- },
- "leisure/picnic_table": {
- "icon": "maki-picnic-site",
- "fields": [
- "material",
- "lit",
- "bench",
- "colour"
- ],
- "moreFields": [
- "height",
- "level",
- "manufacturer",
- "operator"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "leisure": "picnic_table"
- }
- },
- "leisure/picnic_table/chess": {
- "icon": "fas-chess-pawn",
- "geometry": [
- "point"
- ],
- "tags": {
- "leisure": "picnic_table",
- "sport": "chess"
- },
- "reference": {
- "key": "sport",
- "value": "chess"
- }
- },
- "leisure/pitch": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "sport",
- "access_simple",
- "surface",
- "lit"
- ],
- "moreFields": [
- "address",
- "charge_fee",
- "covered",
- "fee",
- "gnis/feature_id-US",
- "indoor",
- "payment_multi_fee"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch"
- }
- },
- "leisure/pitch/american_football": {
- "icon": "maki-american-football",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "american_football"
- },
- "reference": {
- "key": "sport",
- "value": "american_football"
- }
- },
- "leisure/pitch/american_handball": {
- "icon": "temaki-wall",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "american_handball"
- },
- "reference": {
- "key": "sport",
- "value": "american_handball"
- }
- },
- "leisure/pitch/archery": {
- "icon": "temaki-archery",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "archery"
- },
- "reference": {
- "key": "sport",
- "value": "archery"
- }
- },
- "leisure/pitch/australian_football": {
- "icon": "maki-american-football",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "australian_football"
- },
- "reference": {
- "key": "sport",
- "value": "australian_football"
- }
- },
- "leisure/pitch/badminton": {
- "icon": "maki-tennis",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "badminton"
- },
- "reference": {
- "key": "sport",
- "value": "badminton"
- }
- },
- "leisure/pitch/baseball": {
- "icon": "maki-baseball",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "baseball"
- },
- "reference": {
- "key": "sport",
- "value": "baseball"
- }
- },
- "leisure/pitch/basketball": {
- "icon": "maki-basketball",
- "fields": [
- "{leisure/pitch}",
- "hoops"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "basketball"
- },
- "reference": {
- "key": "sport",
- "value": "basketball"
- }
- },
- "leisure/pitch/beachvolleyball": {
- "icon": "maki-volleyball",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "beachvolleyball"
- },
- "addTags": {
- "leisure": "pitch",
- "sport": "beachvolleyball",
- "surface": "sand"
- },
- "reference": {
- "key": "sport",
- "value": "beachvolleyball"
- }
- },
- "leisure/pitch/boules": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "boules",
- "{leisure/pitch}"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "boules"
- },
- "reference": {
- "key": "sport",
- "value": "boules"
- }
- },
- "leisure/pitch/bowls": {
- "icon": "maki-pitch",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "bowls"
- },
- "reference": {
- "key": "sport",
- "value": "bowls"
- }
- },
- "leisure/pitch/chess": {
- "icon": "fas-chess-bishop",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "chess"
- },
- "reference": {
- "key": "sport",
- "value": "chess"
- }
- },
- "leisure/pitch/cricket": {
- "icon": "maki-cricket",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "cricket"
- },
- "reference": {
- "key": "sport",
- "value": "cricket"
- }
- },
- "leisure/pitch/equestrian": {
- "icon": "maki-horse-riding",
- "fields": [
- "{leisure/pitch}"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "equestrian"
- },
- "reference": {
- "key": "sport",
- "value": "equestrian"
- }
- },
- "leisure/pitch/field_hockey": {
- "icon": "temaki-field_hockey",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "field_hockey"
- },
- "reference": {
- "key": "sport",
- "value": "field_hockey"
- }
- },
- "leisure/pitch/four_square": {
- "icon": "fas-border-all",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "four_square"
- },
- "reference": {
- "key": "sport",
- "value": "four_square"
- }
- },
- "leisure/pitch/funnel_ball": {
- "icon": "maki-pitch",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "funnel_ball"
- },
- "reference": {
- "key": "sport",
- "value": "funnel_ball"
- }
- },
- "leisure/pitch/futsal": {
- "icon": "maki-soccer",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "futsal"
- },
- "reference": {
- "key": "sport",
- "value": "futsal"
- }
- },
- "leisure/pitch/gaga": {
- "icon": "maki-pitch",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "gaga"
- },
- "reference": {
- "key": "sport",
- "value": "gaga"
- }
- },
- "leisure/pitch/handball": {
- "icon": "maki-pitch",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "handball"
- },
- "reference": {
- "key": "sport",
- "value": "handball"
- }
- },
- "leisure/pitch/horseshoes": {
- "icon": "temaki-horseshoes",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "horseshoes"
- },
- "reference": {
- "key": "sport",
- "value": "horseshoes"
- }
- },
- "leisure/pitch/netball": {
- "icon": "maki-volleyball",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "netball"
- },
- "reference": {
- "key": "sport",
- "value": "netball"
- }
- },
- "leisure/pitch/padel": {
- "icon": "maki-tennis",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "padel"
- },
- "reference": {
- "key": "sport",
- "value": "padel"
- }
- },
- "leisure/pitch/paintball": {
- "icon": "fas-crosshairs",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "paintball"
- },
- "reference": {
- "key": "sport",
- "value": "paintball"
- }
- },
- "leisure/pitch/pickleball": {
- "icon": "maki-tennis",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "pickleball"
- },
- "reference": {
- "key": "sport",
- "value": "pickleball"
- }
- },
- "leisure/pitch/rugby_league": {
- "icon": "maki-american-football",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "rugby_league"
- },
- "reference": {
- "key": "sport",
- "value": "rugby_league"
- }
- },
- "leisure/pitch/rugby_union": {
- "icon": "maki-american-football",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "rugby_union"
- },
- "reference": {
- "key": "sport",
- "value": "rugby_union"
- }
- },
- "leisure/pitch/shooting": {
- "icon": "fas-crosshairs",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "shooting"
- },
- "reference": {
- "key": "sport",
- "value": "shooting"
- }
- },
- "leisure/pitch/shuffleboard": {
- "icon": "temaki-shuffleboard",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "shuffleboard"
- },
- "reference": {
- "key": "sport",
- "value": "shuffleboard"
- }
- },
- "leisure/pitch/skateboard": {
- "icon": "maki-skateboard",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "skateboard"
- },
- "reference": {
- "key": "sport",
- "value": "skateboard"
- }
- },
- "leisure/pitch/soccer": {
- "icon": "maki-soccer",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "soccer"
- },
- "reference": {
- "key": "sport",
- "value": "soccer"
- }
- },
- "leisure/pitch/softball": {
- "icon": "maki-baseball",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "softball"
- },
- "reference": {
- "key": "sport",
- "value": "softball"
- }
- },
- "leisure/pitch/table_soccer": {
- "fields": [
- "name",
- "lit",
- "access_simple"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "table_soccer"
- },
- "reference": {
- "key": "sport",
- "value": "table_soccer"
- }
- },
- "leisure/pitch/table_tennis": {
- "icon": "fas-table-tennis",
- "fields": [
- "name",
- "lit",
- "access_simple"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "table_tennis"
- },
- "reference": {
- "key": "sport",
- "value": "table_tennis"
- }
- },
- "leisure/pitch/tennis": {
- "icon": "maki-tennis",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "tennis"
- },
- "reference": {
- "key": "sport",
- "value": "tennis"
- }
- },
- "leisure/pitch/tetherball": {
- "icon": "maki-pitch",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "tetherball"
- },
- "reference": {
- "key": "sport",
- "value": "tetherball"
- }
- },
- "leisure/pitch/volleyball": {
- "icon": "maki-volleyball",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "pitch",
- "sport": "volleyball"
- },
- "reference": {
- "key": "sport",
- "value": "volleyball"
- }
- },
- "leisure/playground": {
- "icon": "maki-playground",
- "fields": [
- "name",
- "operator",
- "playground/theme",
- "surface",
- "access_simple",
- "min_age",
- "max_age"
- ],
- "moreFields": [
- "blind",
- "dog",
- "gnis/feature_id-US",
- "indoor",
- "wheelchair"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "playground"
- }
- },
- "leisure/playground/indoor": {
- "icon": "maki-playground",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "playground",
- "indoor": "yes"
- }
- },
- "leisure/resort": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "resort",
- "address",
- "opening_hours"
- ],
- "moreFields": [
- "access_simple",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "payment_multi",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "resort"
- }
- },
- "leisure/sauna": {
- "icon": "fas-thermometer-three-quarters",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "sauna"
- }
- },
- "leisure/slipway_drivable": {
- "icon": "maki-slipway",
- "fields": [
- "{leisure/slipway}",
- "lanes"
- ],
- "moreFields": [
- "{leisure/slipway}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "leisure": "slipway",
- "highway": "service"
- },
- "addTags": {
- "leisure": "slipway",
- "highway": "service",
- "service": "slipway"
- },
- "matchScore": 1.1
- },
- "leisure/slipway": {
- "icon": "maki-slipway",
- "fields": [
- "name",
- "surface",
- "access_simple",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "lit",
- "opening_hours",
- "opening_hours/covid19",
- "seamark/type",
- "width"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "leisure": "slipway"
- }
- },
- "leisure/sports_centre": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "operator",
- "operator/type",
- "sport",
- "building_area",
- "address",
- "fee",
- "opening_hours",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "access_simple",
- "email",
- "fax",
- "gnis/feature_id-US",
- "level",
- "opening_hours/covid19",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "sports_centre"
- }
- },
- "leisure/sports_centre/climbing": {
- "icon": "temaki-abseiling",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "{leisure/sports_centre}",
- "building_area_yes"
- ],
- "tags": {
- "leisure": "sports_centre",
- "sport": "climbing"
- },
- "reference": {
- "key": "sport",
- "value": "climbing"
- }
- },
- "leisure/sports_centre/horse_racing": {
- "icon": "maki-racetrack-horse",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "sports_centre",
- "sport": "horse_racing"
- },
- "reference": {
- "key": "sport",
- "value": "horse_racing"
- }
- },
- "leisure/sports_centre/shooting": {
- "icon": "fas-crosshairs",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "sports_centre",
- "sport": "shooting"
- },
- "reference": {
- "key": "sport",
- "value": "shooting"
- }
- },
- "leisure/sports_centre/swimming": {
- "icon": "fas-swimmer",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "sports_centre",
- "sport": "swimming"
- },
- "reference": {
- "key": "sport",
- "value": "swimming"
- }
- },
- "leisure/sports_hall": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "operator",
- "sport",
- "address",
- "building_area_yes",
- "opening_hours",
- "access_simple"
- ],
- "moreFields": [
- "air_conditioning",
- "level",
- "opening_hours/covid19",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "sports_hall"
- }
- },
- "leisure/stadium": {
- "icon": "maki-pitch",
- "fields": [
- "name",
- "operator",
- "sport",
- "address"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "stadium"
- }
- },
- "leisure/swimming_area": {
- "icon": "fas-swimmer",
- "fields": [
- "name",
- "access_simple",
- "supervised",
- "fee",
- "payment_multi_fee",
- "charge_fee",
- "lit"
- ],
- "moreFields": [
- "opening_hours",
- "opening_hours/covid19",
- "operator"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "leisure": "swimming_area"
- }
- },
- "leisure/swimming_pool": {
- "icon": "fas-swimming-pool",
- "fields": [
- "name",
- "access_simple",
- "lit",
- "location_pool",
- "length",
- "swimming_pool"
- ],
- "moreFields": [
- "address",
- "level",
- "gnis/feature_id-US",
- "opening_hours",
- "opening_hours/covid19",
- "operator"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "swimming_pool"
- }
- },
- "leisure/track": {
- "icon": "temaki-racetrack_oval",
- "fields": [
- "surface",
- "sport_racing_nonmotor",
- "lit",
- "width",
- "lanes"
- ],
- "moreFields": [
- "access",
- "covered",
- "gnis/feature_id-US",
- "indoor",
- "level"
- ],
- "geometry": [
- "line",
- "point",
- "area"
- ],
- "tags": {
- "leisure": "track"
- }
- },
- "leisure/track/cycling": {
- "icon": "maki-racetrack-cycling",
- "fields": [
- "name",
- "surface",
- "sport_racing_nonmotor",
- "lit",
- "width",
- "lanes"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "leisure": "track",
- "sport": "cycling"
- },
- "reference": {
- "key": "sport",
- "value": "cycling"
- }
- },
- "leisure/track/horse_racing": {
- "icon": "maki-racetrack-horse",
- "fields": [
- "name",
- "surface",
- "sport_racing_nonmotor",
- "lit",
- "width",
- "lanes"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "leisure": "track",
- "sport": "horse_racing"
- },
- "reference": {
- "key": "sport",
- "value": "horse_racing"
- }
- },
- "leisure/track/running": {
- "icon": "fas-running",
- "fields": [
- "name",
- "surface",
- "sport_racing_nonmotor",
- "lit",
- "width",
- "lanes"
- ],
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "leisure": "track",
- "sport": "running"
- },
- "reference": {
- "key": "sport",
- "value": "running"
- }
- },
- "leisure/trampoline_park": {
- "icon": "fas-chevron-circle-up",
- "fields": [
- "name",
- "address",
- "building_area_yes",
- "opening_hours",
- "phone",
- "website"
- ],
- "moreFields": [
- "branch_brand",
- "brand",
- "charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "operator",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "leisure": "trampoline_park"
- }
- },
- "leisure/water_park": {
- "icon": "fas-swimmer",
- "fields": [
- "{tourism/theme_park}",
- "sport"
- ],
- "moreFields": [
- "{tourism/theme_park}"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "leisure": "water_park"
- }
- },
- "line": {
- "fields": [
- "name"
- ],
- "geometry": [
- "line"
- ],
- "tags": {},
- "matchScore": 0.1
- },
- "man_made/courtyard": {
- "icon": "maki-square-stroked",
- "fields": [
- "name"
- ],
- "moreFields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "man_made": "courtyard"
- },
- "searchable": false
- },
- "man_made/yes": {
- "icon": "temaki-storage_tank",
- "fields": [
- "name",
- "man_made",
- "{man_made}"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "man_made": "yes"
- },
- "matchScore": 0.5,
- "searchable": false
- },
- "man_made/adit": {
- "icon": "temaki-adit_profile",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "resource",
- "direction"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "tags": {
- "man_made": "adit"
- }
- },
- "man_made/antenna": {
- "icon": "temaki-antenna",
- "fields": [
- "communication_multi",
- "operator",
- "manufacturer",
- "height"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "man_made": "antenna"
- }
- },
- "man_made/beacon": {
- "icon": "maki-communications-tower",
- "fields": [
- "name",
- "height"
- ],
- "moreFields": [
- "seamark/type"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "man_made": "beacon"
- },
- "matchScore": 0.5
- },
- "man_made/beehive": {
- "icon": "fas-archive",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "ref",
- "operator",
- "seasonal",
- "height",
- "colour"
- ],
- "moreFields": [
- "manufacturer"
- ],
- "tags": {
- "man_made": "beehive"
- }
- },
- "man_made/breakwater": {
- "fields": [
- "material",
- "seamark/type"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "man_made": "breakwater"
- }
- },
- "man_made/bridge": {
- "icon": "maki-bridge",
- "fields": [
- "name",
- "bridge_combo",
- "layer",
- "maxweight"
- ],
- "moreFields": [
- "gnis/feature_id-US",
- "manufacturer",
- "material",
- "seamark/type"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "man_made": "bridge"
- },
- "addTags": {
- "man_made": "bridge",
- "layer": "1"
- },
- "removeTags": {
- "man_made": "bridge",
- "layer": "*"
- },
- "reference": {
- "key": "man_made",
- "value": "bridge"
- }
- },
- "man_made/bunker_silo": {
- "icon": "temaki-bunker_silo",
- "fields": [
- "content"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "bunker_silo"
- }
- },
- "man_made/cairn": {
- "icon": "temaki-cairn",
- "fields": [
- "height",
- "ele",
- "ele_node",
- "check_date"
- ],
- "moreFields": [
- "colour",
- "material",
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "cairn"
- }
- },
- "man_made/carpet_hanger": {
- "icon": "maki-picnic-site",
- "fields": [
- "material",
- "height",
- "colour"
- ],
- "geometry": [
- "point",
- "line"
- ],
- "tags": {
- "man_made": "carpet_hanger"
- }
- },
- "man_made/chimney": {
- "icon": "temaki-chimney",
- "fields": [
- "operator",
- "material",
- "height"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "chimney"
- }
- },
- "man_made/clearcut": {
- "icon": "maki-logging",
- "geometry": [
- "area"
- ],
- "tags": {
- "man_made": "clearcut"
- }
- },
- "man_made/compass_rose": {
- "icon": "temaki-compass",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "compass_rose"
- }
- },
- "man_made/crane": {
- "icon": "temaki-crane",
- "fields": [
- "operator",
- "manufacturer",
- "height",
- "crane/type"
- ],
- "geometry": [
- "point",
- "line",
- "vertex",
- "area"
- ],
- "tags": {
- "man_made": "crane"
- }
- },
- "man_made/crane/gantry_crane": {
- "icon": "temaki-crane",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "man_made": "crane",
- "crane:type": "gantry_crane"
- },
- "reference": {
- "key": "crane:type",
- "value": "gantry_crane"
- }
- },
- "man_made/crane/portal_crane": {
- "icon": "temaki-crane",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "man_made": "crane",
- "crane:type": "portal_crane"
- },
- "reference": {
- "key": "crane:type",
- "value": "portal_crane"
- }
- },
- "man_made/cross": {
- "icon": "maki-religious-christian",
- "fields": [
- "name",
- "material",
- "height",
- "ele_node",
- "inscription",
- "direction"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "cross"
- }
- },
- "man_made/cutline": {
- "icon": "maki-logging",
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "cutline"
- }
- },
- "man_made/dovecote": {
- "icon": "fas-dove",
- "fields": [
- "operator",
- "building_area_yes",
- "height",
- "capacity"
- ],
- "moreFields": [
- "layer",
- "location"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "man_made": "dovecote"
- }
- },
- "man_made/dyke": {
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "dyke"
- }
- },
- "man_made/embankment": {
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "embankment"
- }
- },
- "man_made/flagpole": {
- "icon": "maki-embassy",
- "fields": [
- "operator",
- "flag/type",
- "country_flag",
- "flag/name",
- "flag/wikidata",
- "lit",
- "height"
- ],
- "moreFields": [
- "manufacturer",
- "material"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "flagpole"
- }
- },
- "man_made/gantry": {
- "icon": "temaki-toll_gantry",
- "fields": [
- "layer"
- ],
- "moreFields": [
- "material",
- "maxheight",
- "operator",
- "ref"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "gantry"
- }
- },
- "man_made/gasometer": {
- "icon": "temaki-storage_tank",
- "fields": [
- "content",
- "building_area_yes"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "gasometer"
- }
- },
- "man_made/goods_conveyor": {
- "icon": "temaki-conveyor",
- "fields": [
- "name",
- "ref",
- "operator",
- "oneway_yes",
- "resource",
- "width"
- ],
- "moreFields": [
- "colour",
- "covered",
- "indoor",
- "lit",
- "manufacturer",
- "material"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "goods_conveyor"
- }
- },
- "man_made/groyne": {
- "fields": [
- "material",
- "seamark/type"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "man_made": "groyne"
- }
- },
- "man_made/lighthouse": {
- "icon": "maki-lighthouse",
- "fields": [
- "name",
- "operator",
- "building_area_yes",
- "height"
- ],
- "moreFields": [
- "address",
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone",
- "seamark/type"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "man_made": "lighthouse"
- }
- },
- "man_made/manhole": {
- "icon": "temaki-manhole",
- "fields": [
- "manhole",
- "operator",
- "label",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "manhole"
- }
- },
- "man_made/manhole/drain": {
- "icon": "temaki-manhole",
- "fields": [
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "manhole": "drain"
- },
- "addTags": {
- "man_made": "manhole",
- "manhole": "drain"
- }
- },
- "man_made/manhole/gas": {
- "icon": "temaki-gas_manhole",
- "fields": [
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "manhole": "gas"
- },
- "addTags": {
- "man_made": "manhole",
- "manhole": "gas"
- }
- },
- "man_made/manhole/power": {
- "icon": "temaki-power_manhole",
- "fields": [
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "manhole": "power"
- },
- "addTags": {
- "man_made": "manhole",
- "manhole": "power"
- }
- },
- "man_made/manhole/sewer": {
- "icon": "temaki-waste_manhole",
- "fields": [
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "manhole": "sewer"
- },
- "addTags": {
- "man_made": "manhole",
- "manhole": "sewer"
- }
- },
- "man_made/manhole/telecom": {
- "icon": "temaki-cable_manhole",
- "fields": [
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "manhole": "telecom"
- },
- "addTags": {
- "man_made": "manhole",
- "manhole": "telecom"
- }
- },
- "man_made/manhole/water": {
- "icon": "temaki-waste_manhole",
- "fields": [
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "manhole": "water"
- },
- "addTags": {
- "man_made": "manhole",
- "manhole": "water"
- }
- },
- "man_made/mast": {
- "icon": "temaki-mast",
- "fields": [
- "tower/type",
- "tower/construction",
- "height"
- ],
- "moreFields": [
- "communication_multi",
- "gnis/feature_id-US",
- "manufacturer",
- "material"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "mast"
- }
- },
- "man_made/mast/communication": {
- "icon": "temaki-mast_communication",
- "fields": [
- "{man_made/mast}",
- "communication_multi"
- ],
- "moreFields": [
- "{man_made/mast}",
- "mimics"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "mast",
- "tower:type": "communication"
- },
- "reference": {
- "key": "tower:type",
- "value": "communication"
- }
- },
- "man_made/mast/communication/mobile_phone": {
- "icon": "temaki-mast_communication",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "mast",
- "tower:type": "communication",
- "communication:mobile_phone": "yes"
- },
- "reference": {
- "key": "communication:mobile_phone",
- "value": "yes"
- }
- },
- "man_made/mast/communication/radio": {
- "icon": "temaki-mast_communication",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "mast",
- "tower:type": "communication",
- "communication:radio": "yes"
- },
- "reference": {
- "key": "communication:radio",
- "value": "yes"
- }
- },
- "man_made/mast/communication/television": {
- "icon": "temaki-mast_communication",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "mast",
- "tower:type": "communication",
- "communication:television": "yes"
- },
- "reference": {
- "key": "communication:television",
- "value": "yes"
- }
- },
- "man_made/mast/lighting": {
- "icon": "temaki-mast_lighting",
- "fields": [
- "{man_made/mast}",
- "direction_point"
- ],
- "moreFields": [
- "{man_made/mast}"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "man_made": "mast",
- "tower:type": "lighting"
- },
- "reference": {
- "key": "tower:type",
- "value": "lighting"
- }
- },
- "man_made/mineshaft": {
- "icon": "temaki-mineshaft_cage",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "resource"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "tags": {
- "man_made": "mineshaft"
- }
- },
- "man_made/monitoring_station": {
- "icon": "temaki-antenna",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "monitoring_multi",
- "operator",
- "manufacturer"
- ],
- "moreFields": [
- "ref"
- ],
- "tags": {
- "man_made": "monitoring_station"
- }
- },
- "man_made/obelisk": {
- "icon": "temaki-obelisk",
- "fields": [
- "name",
- "inscription",
- "height",
- "material",
- "colour"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "man_made": "obelisk"
- }
- },
- "man_made/observatory": {
- "icon": "temaki-telescope",
- "fields": [
- "name",
- "operator",
- "address",
- "access_simple",
- "building_area_yes"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "observatory"
- }
- },
- "man_made/petroleum_well": {
- "icon": "temaki-oil_well",
- "fields": [
- "name",
- "ref",
- "operator",
- "substance"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "petroleum_well"
- }
- },
- "man_made/pier": {
- "icon": "temaki-pier_fixed",
- "fields": [
- "name",
- "surface",
- "floating",
- "width",
- "access",
- "lit"
- ],
- "moreFields": [
- "{highway/footway}",
- "access",
- "fishing",
- "gnis/feature_id-US",
- "incline"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "man_made": "pier"
- }
- },
- "man_made/pier/floating": {
- "icon": "temaki-pier_floating",
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "man_made": "pier",
- "floating": "yes"
- }
- },
- "man_made/pipeline": {
- "icon": "iD-pipeline-line",
- "fields": [
- "operator",
- "location",
- "substance",
- "layer",
- "diameter"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "pipeline"
- }
- },
- "man_made/pipeline/underground": {
- "icon": "iD-pipeline-line",
- "geometry": [
- "line"
- ],
- "tags": {
- "man_made": "pipeline",
- "location": "underground"
- },
- "addTags": {
- "man_made": "pipeline",
- "location": "underground",
- "layer": "-1"
- }
- },
- "man_made/planter": {
- "icon": "maki-garden",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "material",
- "barrier_planter"
- ],
- "tags": {
- "man_made": "planter"
- },
- "matchScore": 0.9
- },
- "man_made/pumping_station": {
- "icon": "temaki-powered_pump",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "tags": {
- "man_made": "pumping_station"
- }
- },
- "man_made/reservoir_covered": {
- "icon": "maki-water",
- "fields": [
- "name",
- "operator",
- "capacity_volume",
- "access_simple",
- "layer"
- ],
- "moreFields": [
- "ref"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "man_made": "reservoir_covered"
- }
- },
- "man_made/silo": {
- "icon": "temaki-silo",
- "fields": [
- "crop",
- "building_area_yes"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "silo"
- }
- },
- "man_made/storage_tank": {
- "icon": "temaki-storage_tank",
- "fields": [
- "content",
- "operator",
- "material",
- "building_area",
- "height",
- "capacity_volume"
- ],
- "moreFields": [
- "layer",
- "location",
- "manufacturer"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "man_made": "storage_tank"
- }
- },
- "man_made/storage_tank/water": {
- "icon": "temaki-storage_tank",
- "geometry": [
- "point",
- "area"
- ],
- "moreFields": [
- "{man_made/storage_tank}",
- "covered",
- "ref"
- ],
- "tags": {
- "man_made": "storage_tank",
- "content": "water"
- }
- },
- "man_made/street_cabinet": {
- "icon": "fas-door-closed",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "ref",
- "operator",
- "street_cabinet",
- "utility_semi",
- "height",
- "colour"
- ],
- "moreFields": [
- "model"
- ],
- "tags": {
- "man_made": "street_cabinet"
- }
- },
- "man_made/surveillance": {
- "icon": "temaki-security_camera",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "surveillance",
- "surveillance/type",
- "surveillance/zone",
- "direction"
- ],
- "tags": {
- "man_made": "surveillance"
- }
- },
- "man_made/surveillance/camera": {
- "icon": "temaki-security_camera",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "surveillance",
- "surveillance/type",
- "camera/type",
- "camera/mount",
- "camera/direction",
- "surveillance/zone",
- "contact/webcam"
- ],
- "moreFields": [
- "manufacturer"
- ],
- "tags": {
- "man_made": "surveillance",
- "surveillance:type": "camera"
- }
- },
- "man_made/survey_point": {
- "icon": "temaki-benchmark_disk",
- "fields": [
- "name",
- "ref",
- "survey_point/structure",
- "survey_point/purpose",
- "ele_node"
- ],
- "moreFields": [
- "survey_point/datum_aligned",
- "inscription"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "survey_point"
- }
- },
- "man_made/tailings_pond": {
- "icon": "maki-water",
- "fields": [
- "name",
- "resource",
- "operator",
- "intermittent"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "man_made": "tailings_pond"
- }
- },
- "man_made/torii": {
- "icon": "temaki-shinto",
- "fields": [
- "height",
- "material",
- "colour",
- "lit"
- ],
- "moreFields": [
- "operator",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "man_made": "torii"
- }
- },
- "man_made/tower": {
- "icon": "temaki-tower",
- "fields": [
- "tower/type",
- "tower/construction",
- "height",
- "building_area_yes"
- ],
- "moreFields": [
- "architect",
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "man_made": "tower"
- }
- },
- "man_made/tower/bell_tower": {
- "icon": "fas-bell",
- "moreFields": [
- "{man_made/tower}",
- "opening_hours",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "tower",
- "tower:type": "bell_tower"
- },
- "reference": {
- "key": "tower:type",
- "value": "bell_tower"
- }
- },
- "man_made/tower/communication": {
- "icon": "temaki-tower_communication",
- "fields": [
- "{man_made/tower}",
- "communication_multi",
- "mimics"
- ],
- "moreFields": [
- "{man_made/tower}",
- "mimics"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "man_made": "tower",
- "tower:type": "communication"
- },
- "reference": {
- "key": "tower:type",
- "value": "communication"
- }
- },
- "man_made/tower/cooling": {
- "icon": "temaki-cooling_tower",
- "fields": [
- "ref",
- "operator",
- "material",
- "building_area_yes",
- "height"
- ],
- "moreFields": [
- "layer"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "man_made": "tower",
- "tower:type": "cooling"
- },
- "reference": {
- "key": "tower:type",
- "value": "cooling"
- }
- },
- "man_made/tower/defensive": {
- "icon": "maki-castle",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "tower",
- "tower:type": "defensive"
- },
- "reference": {
- "key": "tower:type",
- "value": "defensive"
- }
- },
- "man_made/tower/diving": {
- "icon": "temaki-diving",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "{man_made/tower}",
- "tower/platforms"
- ],
- "tags": {
- "man_made": "tower",
- "tower:type": "diving"
- },
- "reference": {
- "key": "tower:type",
- "value": "diving"
- }
- },
- "man_made/tower/minaret": {
- "icon": "temaki-domed_tower",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "tower",
- "tower:type": "minaret"
- },
- "reference": {
- "key": "tower:type",
- "value": "minaret"
- }
- },
- "man_made/tower/observation": {
- "icon": "maki-observation-tower",
- "moreFields": [
- "{man_made/tower}",
- "opening_hours",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "tower",
- "tower:type": "observation"
- },
- "reference": {
- "key": "tower:type",
- "value": "observation"
- }
- },
- "man_made/tower/pagoda": {
- "icon": "fas-vihara",
- "moreFields": [
- "{man_made/tower}",
- "opening_hours",
- "opening_hours/covid19"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "tower",
- "tower:type": "pagoda"
- },
- "reference": {
- "key": "tower:type",
- "value": "pagoda"
- }
- },
- "man_made/tunnel": {
- "icon": "temaki-tunnel",
- "fields": [
- "name",
- "tunnel_combo",
- "layer",
- "width",
- "length",
- "height"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "man_made": "tunnel"
- },
- "addTags": {
- "man_made": "tunnel",
- "layer": "-1"
- },
- "removeTags": {
- "man_made": "tunnel",
- "layer": "*"
- },
- "reference": {
- "key": "man_made",
- "value": "tunnel"
- }
- },
- "man_made/utility_pole": {
- "icon": "temaki-utility_pole",
- "fields": [
- "ref",
- "operator",
- "utility_semi",
- "height",
- "material"
- ],
- "moreFields": [
- "colour",
- "manufacturer"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "utility_pole"
- }
- },
- "man_made/video_wall": {
- "icon": "temaki-billboard",
- "fields": [
- "support",
- "operator",
- "height",
- "min_height"
- ],
- "moreFields": [
- "ref",
- "visibility"
- ],
- "geometry": [
- "point",
- "vertex",
- "line"
- ],
- "tags": {
- "man_made": "video_wall"
- }
- },
- "man_made/wastewater_plant": {
- "icon": "temaki-waste",
- "fields": [
- "name",
- "operator",
- "address",
- "ref"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "wastewater_plant"
- }
- },
- "man_made/water_tap": {
- "icon": "temaki-water_tap",
- "fields": [
- "ref",
- "operator",
- "drinking_water",
- "access_simple"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "man_made": "water_tap"
- }
- },
- "man_made/water_tower": {
- "icon": "temaki-water_tower",
- "fields": [
- "operator",
- "height"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "man_made": "water_tower"
- }
- },
- "man_made/water_well": {
- "icon": "temaki-well_pump_manual",
- "fields": [
- "ref",
- "operator",
- "drinking_water",
- "pump",
- "access_simple"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "water_well"
- }
- },
- "man_made/water_works": {
- "icon": "temaki-powered_pump",
- "fields": [
- "name",
- "operator",
- "address"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "water_works"
- }
- },
- "man_made/watermill": {
- "icon": "maki-watermill",
- "fields": [
- "building_area_yes"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "watermill"
- }
- },
- "man_made/windmill": {
- "icon": "maki-windmill",
- "fields": [
- "building_area_yes"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "man_made": "windmill"
- }
- },
- "man_made/windpump": {
- "icon": "temaki-windpump",
- "fields": [
- "ref",
- "operator",
- "height",
- "material",
- "manufacturer",
- "lit"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "man_made": "windpump"
- }
- },
- "man_made/works": {
- "icon": "maki-industry",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "product"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "phone"
- ],
"geometry": [
"point",
"area"
],
"tags": {
- "man_made": "works"
+ "shop": "video_games"
}
},
- "man_made/works/brewery": {
- "icon": "temaki-storage_fermenter",
- "fields": [
- "{man_made/works}",
- "website"
- ],
+ "shop/video": {
+ "icon": "temaki-movie_rental",
"moreFields": [
- "{man_made/works}",
+ "{shop}",
"min_age"
],
"geometry": [
@@ -18002,2436 +3513,2718 @@
"area"
],
"tags": {
- "man_made": "works",
- "product": "beer"
- },
- "reference": {
- "key": "product",
- "value": "beer"
+ "shop": "video"
}
},
- "marker": {
- "icon": "temaki-silo",
- "fields": [
- "ref",
- "operator",
- "marker",
- "utility",
- "colour",
- "material",
- "inscription"
+ "shop/variety_store": {
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
],
"moreFields": [
- "height",
- "location",
- "manufacturer",
- "material"
- ],
- "geometry": [
- "point"
+ "fhrs/id-GB"
],
"tags": {
- "marker": "*"
+ "shop": "variety_store"
}
},
- "marker/utility": {
- "icon": "temaki-silo",
- "fields": [
- "ref",
- "operator",
- "marker",
- "utility",
- "{marker}"
- ],
+ "shop/vacuum_cleaner": {
+ "icon": "temaki-vacuum",
"geometry": [
- "point"
+ "point",
+ "area"
],
"tags": {
- "marker": "*",
- "utility": "*"
+ "shop": "vacuum_cleaner"
}
},
- "marker/utility/power": {
- "icon": "temaki-silo",
- "fields": [
- "ref",
- "operator",
- "marker",
- "{marker}"
- ],
+ "shop/tyres": {
+ "icon": "temaki-tire",
"geometry": [
- "point"
+ "point",
+ "area"
],
"tags": {
- "marker": "*",
- "utility": "power"
+ "shop": "tyres"
}
},
- "military/bunker": {
- "icon": "temaki-bunker",
+ "shop/trophy": {
+ "icon": "fas-trophy",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "trophy"
+ }
+ },
+ "shop/travel_agency": {
+ "icon": "fas-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "travel_agency"
+ }
+ },
+ "shop/trade": {
+ "icon": "temaki-tools",
"fields": [
"name",
- "bunker_type",
- "building_area_yes"
+ "trade",
+ "{shop}"
],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "trade"
+ }
+ },
+ "shop/toys": {
+ "icon": "fas-rocket",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "toys"
+ }
+ },
+ "shop/tool_hire": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "tool_hire"
+ }
+ },
+ "shop/tobacco": {
+ "icon": "temaki-pipe",
"moreFields": [
- "gnis/feature_id-US"
+ "{shop}",
+ "min_age"
],
"geometry": [
"point",
"area"
],
"tags": {
- "military": "bunker"
- },
- "addTags": {
- "building": "bunker",
- "military": "bunker"
+ "shop": "tobacco"
}
},
- "military/checkpoint": {
- "icon": "temaki-military_checkpoint",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "military": "checkpoint"
- }
- },
- "military/nuclear_explosion_site": {
- "icon": "maki-danger",
- "fields": [
- "name"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "military": "nuclear_explosion_site"
- }
- },
- "military/office": {
- "icon": "temaki-military",
- "fields": [
- "name",
- "building_area_yes"
- ],
- "moreFields": [
- "gnis/feature_id-US",
- "level"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "military": "office"
- }
- },
- "military/trench": {
- "icon": "temaki-trench",
- "fields": [
- "name",
- "trench"
- ],
- "geometry": [
- "point",
- "line"
- ],
- "tags": {
- "military": "trench"
- }
- },
- "natural/bare_rock": {
- "icon": "temaki-boulder3",
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "bare_rock"
- }
- },
- "natural/bay": {
- "icon": "temaki-beach",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "natural": "bay"
- }
- },
- "natural/beach": {
- "icon": "temaki-beach",
- "fields": [
- "name",
- "surface",
- "lifeguard",
- "supervised"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "beach"
- }
- },
- "natural/cape": {
- "icon": "temaki-cape_landform",
- "fields": [
- "name",
- "ele_node"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "cape"
- }
- },
- "natural/cave_entrance": {
- "icon": "maki-triangle",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "fields": [
- "name",
- "ele_node",
- "access_simple",
- "direction",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "tags": {
- "natural": "cave_entrance"
- }
- },
- "natural/cliff": {
- "icon": "temaki-cliff_falling_rocks",
- "fields": [
- "name",
- "height"
- ],
- "geometry": [
- "point",
- "vertex",
- "line",
- "area"
- ],
- "tags": {
- "natural": "cliff"
- }
- },
- "natural/coastline": {
- "icon": "temaki-beach",
- "geometry": [
- "line"
- ],
- "tags": {
- "natural": "coastline"
- }
- },
- "natural/fell": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "fell"
- }
- },
- "natural/geyser": {
- "icon": "maki-water",
- "fields": [
- "name",
- "geyser/height",
- "ele_node"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "natural": "geyser"
- }
- },
- "natural/glacier": {
- "icon": "temaki-snow",
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "glacier"
- }
- },
- "natural/grassland": {
- "icon": "temaki-grass",
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "grassland"
- }
- },
- "natural/heath": {
- "icon": "temaki-shrub_low",
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "heath"
- }
- },
- "natural/hot_spring": {
- "icon": "maki-hot-spring",
- "fields": [
- "name",
- "intermittent"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "hot_spring"
- }
- },
- "natural/mud": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "mud"
- }
- },
- "natural/peak": {
- "icon": "maki-mountain",
- "fields": [
- "name",
- "ele_node"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "peak"
- }
- },
- "natural/reef": {
- "icon": "temaki-coral_reef",
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "natural": "reef"
- }
- },
- "natural/ridge": {
- "icon": "temaki-mountain_range",
- "geometry": [
- "line"
- ],
- "tags": {
- "natural": "ridge"
- }
- },
- "natural/rock": {
- "icon": "temaki-boulder2",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "rock"
- }
- },
- "natural/saddle": {
- "icon": "temaki-saddle",
- "fields": [
- "name",
- "ele_node"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "saddle"
- }
- },
- "natural/sand": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "sand"
- }
- },
- "natural/scree": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "scree"
- }
- },
- "natural/scrub": {
- "icon": "temaki-shrub",
- "moreFields": [
- "leaf_type",
- "leaf_cycle",
- "species/wikidata"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "scrub"
- }
- },
- "natural/shingle": {
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "shingle"
- }
- },
- "natural/shrub": {
- "icon": "temaki-shrub",
- "fields": [
- "height"
- ],
- "moreFields": [
- "species/wikidata"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "shrub"
- }
- },
- "natural/spring": {
- "icon": "maki-water",
- "fields": [
- "name",
- "drinking_water",
- "intermittent"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "natural": "spring"
- }
- },
- "natural/stone": {
- "icon": "temaki-boulder1",
- "fields": [
- "name"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "stone"
- }
- },
- "natural/strait": {
- "icon": "iD-waterway-river",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "fields": [
- "name"
- ],
- "tags": {
- "natural": "strait"
- }
- },
- "natural/tree_row": {
- "icon": "temaki-tree_row",
- "fields": [
- "leaf_type",
- "leaf_cycle",
- "denotation"
- ],
- "moreFields": [
- "species/wikidata"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "natural": "tree_row"
- }
- },
- "natural/tree_stump": {
- "icon": "temaki-tree_stump",
- "geometry": [
- "area",
- "point"
- ],
- "moreFields": [
- "leaf_type_singular",
- "leaf_cycle_singular",
- "denotation",
- "height",
- "circumference",
- "{natural/tree}"
- ],
- "tags": {
- "natural": "tree_stump"
- }
- },
- "natural/tree": {
- "icon": "maki-park",
- "fields": [
- "leaf_type_singular",
- "leaf_cycle_singular",
- "denotation",
- "height",
- "circumference"
- ],
- "moreFields": [
- "genus",
- "species",
- "species/wikidata",
- "taxon",
- "diameter_crown",
- "diameter"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "tree"
- }
- },
- "natural/valley": {
- "icon": "temaki-valley",
- "fields": [
- "name",
- "ele_node"
- ],
- "geometry": [
- "vertex",
- "point",
- "line"
- ],
- "tags": {
- "natural": "valley"
- }
- },
- "natural/volcano": {
- "icon": "maki-volcano",
- "fields": [
- "name",
- "ele_node",
- "volcano/status",
- "volcano/type"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "natural": "volcano"
- }
- },
- "natural/water": {
- "icon": "maki-water",
- "fields": [
- "name",
- "water",
- "intermittent"
- ],
- "moreFields": [
- "fishing",
- "gnis/feature_id-US",
- "salt",
- "tidal"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water"
- }
- },
- "natural/water/basin": {
- "icon": "maki-water",
- "fields": [
- "name",
- "basin",
- "intermittent_yes"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "basin"
- },
- "reference": {
- "key": "water",
- "value": "basin"
- }
- },
- "natural/water/canal": {
- "icon": "iD-waterway-canal",
- "fields": [
- "{natural/water}",
- "salt"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "canal"
- },
- "reference": {
- "key": "water",
- "value": "canal"
- }
- },
- "natural/water/lake": {
- "icon": "maki-water",
- "fields": [
- "{natural/water}",
- "salt",
- "tidal"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "lake"
- },
- "reference": {
- "key": "water",
- "value": "lake"
- }
- },
- "natural/water/moat": {
- "icon": "maki-water",
- "fields": [
- "{natural/water}",
- "salt"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "moat"
- }
- },
- "natural/water/oxbow": {
- "icon": "maki-water",
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "oxbow"
- },
- "reference": {
- "key": "water",
- "value": "oxbow"
- }
- },
- "natural/water/pond": {
- "icon": "maki-water",
- "fields": [
- "{natural/water}",
- "salt"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "pond"
- },
- "reference": {
- "key": "water",
- "value": "pond"
- }
- },
- "natural/water/reservoir": {
- "icon": "maki-water",
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "reservoir"
- },
- "reference": {
- "key": "water",
- "value": "reservoir"
- }
- },
- "natural/water/river": {
- "icon": "iD-waterway-river",
- "fields": [
- "water",
- "intermittent",
- "tidal"
- ],
- "moreFields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "river"
- },
- "reference": {
- "key": "water",
- "value": "river"
- }
- },
- "natural/water/stream": {
- "icon": "iD-waterway-stream",
- "fields": [
- "water",
- "intermittent"
- ],
- "moreFields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "stream"
- },
- "reference": {
- "key": "water",
- "value": "stream"
- }
- },
- "natural/water/wastewater": {
- "icon": "temaki-waste",
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "water",
- "water": "wastewater"
- },
- "reference": {
- "key": "water",
- "value": "wastewater"
- }
- },
- "natural/wetland": {
- "icon": "maki-wetland",
- "fields": [
- "wetland",
- "salt",
- "tidal"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "natural": "wetland"
- }
- },
- "natural/wetland/bog": {
- "icon": "maki-wetland",
- "fields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "wetland",
- "wetland": "bog"
- },
- "reference": {
- "key": "wetland",
- "value": "bog"
- }
- },
- "natural/wetland/fen": {
- "icon": "maki-wetland",
- "fields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "wetland",
- "wetland": "fen"
- },
- "reference": {
- "key": "wetland",
- "value": "fen"
- }
- },
- "natural/wetland/mangrove": {
- "icon": "maki-wetland",
- "fields": [
- "salt",
- "tidal"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "wetland",
- "wetland": "mangrove"
- },
- "reference": {
- "key": "wetland",
- "value": "mangrove"
- }
- },
- "natural/wetland/marsh": {
- "icon": "maki-wetland",
- "fields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "wetland",
- "wetland": "marsh"
- },
- "reference": {
- "key": "wetland",
- "value": "marsh"
- }
- },
- "natural/wetland/reedbed": {
- "icon": "maki-wetland",
- "fields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "wetland",
- "wetland": "reedbed"
- },
- "reference": {
- "key": "wetland",
- "value": "reedbed"
- }
- },
- "natural/wetland/saltmarsh": {
- "icon": "maki-wetland",
- "fields": [
- "salt",
- "tidal"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "wetland",
- "wetland": "saltmarsh"
- },
- "reference": {
- "key": "wetland",
- "value": "saltmarsh"
- }
- },
- "natural/wetland/string_bog": {
- "icon": "maki-wetland",
- "fields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "wetland",
- "wetland": "string_bog"
- },
- "reference": {
- "key": "wetland",
- "value": "string_bog"
- }
- },
- "natural/wetland/swamp": {
- "icon": "temaki-swamp",
- "fields": [],
- "moreFields": [
- "tidal"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "wetland",
- "wetland": "swamp"
- },
- "reference": {
- "key": "wetland",
- "value": "swamp"
- }
- },
- "natural/wetland/tidalflat": {
- "icon": "maki-wetland",
- "fields": [
- "salt",
- "tidal"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "wetland",
- "wetland": "tidalflat"
- },
- "reference": {
- "key": "wetland",
- "value": "tidalflat"
- }
- },
- "natural/wetland/wet_meadow": {
- "icon": "maki-wetland",
- "fields": [],
- "geometry": [
- "area"
- ],
- "tags": {
- "natural": "wetland",
- "wetland": "wet_meadow"
- },
- "reference": {
- "key": "wetland",
- "value": "wet_meadow"
- }
- },
- "natural/wood": {
- "icon": "maki-park-alt1",
- "fields": [
- "name",
- "leaf_type",
- "leaf_cycle"
- ],
- "moreFields": [
- "species/wikidata"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "natural": "wood"
- }
- },
- "network/type/node_network-DE-NL-BE-LU": {
- "fields": [
- "name",
- "rwn_ref",
- "expected_rwn_route_relations",
- "rcn_ref",
- "expected_rcn_route_relations"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "network:type": "node_network"
- },
- "locationSet": {
- "include": [
- "be",
- "de",
- "lu",
- "nl"
- ]
- },
- "matchScore": 0.2
- },
- "noexit/yes": {
- "icon": "maki-barrier",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "noexit": "yes"
- },
- "reference": {
- "key": "noexit",
- "value": "*"
- }
- },
- "office": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "office",
- "address",
- "building_area_yes",
- "opening_hours",
- "phone",
- "website"
- ],
- "moreFields": [
- "air_conditioning",
- "baby_feeding",
- "building/levels_building",
- "ele",
- "email",
- "fax",
- "gnis/feature_id-US",
- "height_building",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "not/name",
- "opening_hours/covid19",
- "operator",
- "ref/vatin",
- "ref/FR/siret-FR",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "*"
- },
- "matchScore": 0.7
- },
- "office/administrative": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "administrative"
- },
- "searchable": false
- },
- "office/physician": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "physician"
- },
- "searchable": false
- },
- "office/travel_agent": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "travel_agent"
- },
- "reference": {
- "key": "shop",
- "value": "travel_agency"
- },
- "searchable": false
- },
- "office/yes": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "office",
- "{office}"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "office": "yes"
- },
- "searchable": false,
- "matchScore": 0.8
- },
- "office/accountant": {
- "icon": "temaki-accounting",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "accountant"
- }
- },
- "office/adoption_agency": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "adoption_agency"
- }
- },
- "office/advertising_agency": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "advertising_agency"
- }
- },
- "office/architect": {
- "icon": "fas-drafting-compass",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "architect"
- }
- },
- "office/association": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "association"
- }
- },
- "office/bail_bond_agent-US-PH": {
- "locationSet": {
- "include": [
- "us",
- "ph"
- ]
- },
- "icon": "maki-bank",
- "moreFields": [
- "{office}",
- "currency_multi",
- "payment_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "bail_bond_agent"
- }
- },
- "office/charity": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "charity"
- }
- },
- "office/company": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "company"
- }
- },
- "office/consulting": {
- "icon": "maki-suitcase",
- "fields": [
- "name",
- "consulting",
- "{office}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "consulting"
- }
- },
- "office/coworking": {
- "icon": "maki-suitcase",
- "fields": [
- "{office}",
- "internet_access"
- ],
- "moreFields": [
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "coworking"
- }
- },
- "office/diplomatic": {
- "icon": "temaki-embassy",
- "fields": [
- "name",
- "diplomatic",
- "country",
- "target",
- "diplomatic/services",
- "{office}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "diplomatic"
- }
- },
- "office/diplomatic/consulate": {
- "icon": "temaki-embassy",
- "fields": [
- "name",
- "consulate",
- "{office/diplomatic}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "diplomatic",
- "diplomatic": "consulate"
- },
- "reference": {
- "key": "diplomatic",
- "value": "consulate"
- }
- },
- "office/diplomatic/embassy": {
- "icon": "temaki-embassy",
- "fields": [
- "name",
- "embassy",
- "{office/diplomatic}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "diplomatic",
- "diplomatic": "embassy"
- },
- "reference": {
- "key": "diplomatic",
- "value": "embassy"
- }
- },
- "office/diplomatic/liaison": {
- "icon": "temaki-embassy",
- "fields": [
- "name",
- "liaison",
- "{office/diplomatic}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "diplomatic",
- "diplomatic": "liaison"
- },
- "reference": {
- "key": "diplomatic",
- "value": "liaison"
- }
- },
- "office/educational_institution": {
- "icon": "maki-school",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "educational_institution"
- }
- },
- "office/employment_agency": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "employment_agency"
- }
- },
- "office/energy_supplier": {
- "icon": "temaki-briefcase_bolt",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "energy_supplier"
- }
- },
- "office/estate_agent": {
- "icon": "temaki-real_estate_agency",
- "moreFields": [
- "branch_brand",
- "brand",
- "{office}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "estate_agent"
- }
- },
- "office/financial_advisor": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "financial_advisor"
- }
- },
- "office/financial": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "financial"
- }
- },
- "office/forestry": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "forestry"
- }
- },
- "office/foundation": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "foundation"
- }
- },
- "office/government": {
- "icon": "temaki-town_hall",
- "fields": [
- "name",
- "government",
- "{office}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "government"
- }
- },
- "office/government/prosecutor": {
- "icon": "maki-suitcase",
- "fields": [
- "{office}",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "government",
- "government": "prosecutor"
- },
- "reference": {
- "key": "government",
- "value": "prosecutor"
- }
- },
- "office/government/register_office": {
- "icon": "temaki-town_hall",
- "fields": [
- "{office}",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "government",
- "government": "register_office"
- },
- "reference": {
- "key": "government",
- "value": "register_office"
- }
- },
- "office/government/tax": {
- "icon": "temaki-town_hall",
- "fields": [
- "{office}",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "government",
- "government": "tax"
- },
- "reference": {
- "key": "government",
- "value": "tax"
- }
- },
- "office/graphic_design": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "graphic_design"
- }
- },
- "office/guide": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "guide"
- }
- },
- "office/insurance": {
- "icon": "temaki-briefcase_shield",
- "moreFields": [
- "branch_brand",
- "brand",
- "{office}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "insurance"
- }
- },
- "office/it": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "it"
- }
- },
- "office/lawyer": {
- "icon": "fas-balance-scale",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "lawyer"
- }
- },
- "office/lawyer/notary": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "lawyer",
- "lawyer": "notary"
- },
- "reference": {
- "key": "office",
- "value": "notary"
- },
- "searchable": false
- },
- "office/moving_company": {
- "icon": "fas-people-carry",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "moving_company"
- }
- },
- "office/newspaper": {
- "icon": "fas-newspaper",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "newspaper"
- }
- },
- "office/ngo": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "ngo"
- }
- },
- "office/notary": {
- "icon": "fas-stamp",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "notary"
- }
- },
- "office/political_party": {
- "icon": "maki-town-hall",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "political_party"
- }
- },
- "office/private_investigator": {
- "icon": "fas-user-secret",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "private_investigator"
- }
- },
- "office/property_management": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "property_management"
- }
- },
- "office/quango": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "quango"
- }
- },
- "office/religion": {
- "icon": "maki-suitcase",
- "fields": [
- "{office}",
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "religion"
- }
- },
- "office/research": {
- "icon": "fas-flask",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "research"
- }
- },
- "office/security": {
- "icon": "temaki-briefcase_shield",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "security"
- }
- },
- "office/surveyor": {
- "icon": "fas-vest",
+ "shop/tiles": {
+ "icon": "temaki-tiling",
"geometry": [
"point",
"area"
],
"tags": {
- "office": "surveyor"
+ "shop": "tiles"
}
},
- "office/tax_advisor": {
- "icon": "maki-suitcase",
+ "shop/ticket": {
+ "icon": "fas-ticket-alt",
"geometry": [
"point",
"area"
],
"tags": {
- "office": "tax_advisor"
+ "shop": "ticket"
}
},
- "office/telecommunication": {
+ "shop/telecommunication": {
"icon": "maki-telephone",
"geometry": [
"point",
"area"
],
"tags": {
- "office": "telecommunication"
+ "shop": "telecommunication"
}
},
- "office/therapist": {
- "icon": "maki-suitcase",
+ "shop/tea": {
+ "icon": "maki-teahouse",
"geometry": [
"point",
"area"
],
- "tags": {
- "office": "therapist"
- }
- },
- "office/union": {
- "icon": "maki-suitcase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "union"
- }
- },
- "office/water_utility": {
- "icon": "maki-suitcase",
- "fields": [
- "{office}",
- "operator"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "office": "water_utility"
- }
- },
- "pipeline/substation": {
- "icon": "temaki-powered_pump",
- "fields": [
- "name",
- "substation_pipeline",
- "operator",
- "building",
- "substance",
- "ref"
- ],
"moreFields": [
- "address"
- ],
- "geometry": [
- "area",
- "point"
+ "fhrs/id-GB"
],
"tags": {
- "pipeline": "substation"
+ "shop": "tea"
}
},
- "pipeline/valve": {
- "icon": "temaki-wheel",
- "geometry": [
- "vertex"
- ],
- "fields": [
- "ref",
- "operator",
- "valve",
- "location",
- "diameter"
- ],
+ "shop/tattoo": {
+ "icon": "temaki-tattoo_machine",
"moreFields": [
- "colour",
- "manufacturer",
- "material"
+ "{shop}",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
],
"tags": {
- "pipeline": "valve"
+ "shop": "tattoo"
}
},
- "piste/downhill": {
- "icon": "fas-skiing",
+ "shop/tailor": {
+ "icon": "temaki-needle_and_spool",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "tailor"
+ }
+ },
+ "shop/swimming_pool": {
+ "icon": "fas-swimmer",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "swimming_pool"
+ }
+ },
+ "shop/supermarket": {
+ "icon": "maki-grocery",
+ "moreFields": [
+ "{shop}",
+ "self_checkout",
+ "diet_multi",
+ "fhrs/id-GB",
+ "organic"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "supermarket"
+ }
+ },
+ "shop/storage_rental": {
+ "icon": "temaki-storage_rental",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "storage_rental"
+ }
+ },
+ "shop/stationery": {
+ "icon": "fas-paperclip",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "stationery"
+ }
+ },
+ "shop/sports": {
+ "icon": "fas-futbol",
"fields": [
"name",
- "piste/type",
- "piste/difficulty_downhill",
- "piste/grooming_downhill",
- "oneway",
- "lit"
+ "operator",
+ "sport",
+ "{shop}"
+ ],
+ "moreFields": [
+ "{shop}",
+ "service/bicycle"
],
"geometry": [
- "line",
+ "point",
"area"
],
"tags": {
- "piste:type": "downhill"
+ "shop": "sports"
}
},
- "piste/downhill/halfpipe": {
- "icon": "fas-snowboarding",
+ "shop/spices": {
+ "icon": "temaki-spice_bottle",
"geometry": [
- "line",
+ "point",
"area"
],
"tags": {
- "piste:type": "downhill",
- "man_made": "piste:halfpipe"
+ "shop": "spices"
+ }
+ },
+ "shop/shoes": {
+ "icon": "maki-shoe",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "name",
+ "shoes",
+ "{shop}"
+ ],
+ "tags": {
+ "shop": "shoes"
+ }
+ },
+ "shop/shoe_repair": {
+ "icon": "temaki-hammer_shoe",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "shoe_repair"
+ }
+ },
+ "shop/sewing": {
+ "icon": "temaki-needle_and_spool",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "sewing"
+ }
+ },
+ "shop/second_hand": {
+ "icon": "maki-shop",
+ "fields": [
+ "{shop}",
+ "second_hand"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "second_hand"
+ }
+ },
+ "shop/seafood": {
+ "icon": "temaki-fish_cleaning",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "seafood"
+ },
+ "moreFields": [
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/scuba_diving": {
+ "icon": "temaki-scuba_diving",
+ "fields": [
+ "{shop}",
+ "scuba_diving"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "scuba_diving"
+ }
+ },
+ "shop/rice": {
+ "icon": "fas-bowl-rice",
+ "fields": [
+ "name",
+ "{shop}"
+ ],
+ "moreFields": [
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "rice"
},
"reference": {
- "key": "man_made",
- "value": "piste:halfpipe"
+ "key": "shop",
+ "value": "rice"
}
},
- "piste/hike": {
- "icon": "temaki-snow_shoeing",
- "fields": [
- "name",
- "piste/type",
- "piste/difficulty",
- "piste/grooming_hike",
- "oneway",
- "lit"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "piste:type": "hike"
- }
- },
- "piste/ice_skate": {
- "icon": "fas-skating",
- "fields": [
- "name",
- "piste/type",
- "sport_ice",
- "oneway",
- "lit"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "piste:type": "ice_skate"
- }
- },
- "piste/nordic": {
- "icon": "fas-skiing-nordic",
- "fields": [
- "name",
- "piste/type",
- "piste/difficulty_nordic",
- "piste/grooming_nordic",
- "oneway",
- "lit"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "piste:type": "nordic"
- }
- },
- "piste/piste": {
- "icon": "fas-skiing",
- "fields": [
- "name",
- "piste/type",
- "piste/difficulty",
- "piste/grooming",
- "oneway",
- "lit"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "piste:type": "*"
- }
- },
- "piste/skitour": {
- "icon": "fas-skiing-nordic",
- "fields": [
- "name",
- "piste/type",
- "piste/difficulty_skitour",
- "piste/grooming",
- "oneway",
- "lit"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "piste:type": "skitour"
- }
- },
- "piste/sled": {
- "icon": "temaki-sledding",
- "fields": [
- "name",
- "piste/type",
- "piste/difficulty",
- "piste/grooming",
- "oneway",
- "lit"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "piste:type": "sled"
- }
- },
- "piste/sleigh": {
- "icon": "fas-sleigh",
- "fields": [
- "name",
- "piste/type",
- "piste/difficulty",
- "piste/grooming",
- "oneway",
- "lit"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "piste:type": "sleigh"
- }
- },
- "place/farm": {
- "icon": "maki-farm",
+ "shop/repair": {
+ "icon": "fas-tools",
"geometry": [
"point",
"area"
],
"tags": {
- "place": "farm"
+ "shop": "repair"
+ }
+ },
+ "shop/rental": {
+ "icon": "fas-dolly",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "rental"
+ }
+ },
+ "shop/religion": {
+ "icon": "maki-shop",
+ "fields": [
+ "{shop}",
+ "religion",
+ "denomination"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "religion"
+ }
+ },
+ "shop/radiotechnics": {
+ "icon": "fas-microchip",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "radiotechnics"
+ }
+ },
+ "shop/pyrotechnics": {
+ "icon": "temaki-rocket_firework",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "pyrotechnics"
+ }
+ },
+ "shop/psychic": {
+ "icon": "temaki-psychic",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "psychic"
+ }
+ },
+ "shop/printer_ink": {
+ "icon": "fas-print",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "printer_ink"
+ }
+ },
+ "shop/pottery": {
+ "icon": "temaki-vase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "pottery"
+ }
+ },
+ "shop/photo": {
+ "icon": "fas-camera-retro",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "photo"
+ }
+ },
+ "shop/pet_grooming": {
+ "icon": "temaki-pet_grooming",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "pet_grooming"
+ }
+ },
+ "shop/pet": {
+ "icon": "fas-cat",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "pet"
+ }
+ },
+ "shop/perfumery": {
+ "icon": "temaki-perfume",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "perfumery"
+ }
+ },
+ "shop/pawnbroker": {
+ "icon": "temaki-money_hand",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "pawnbroker"
+ }
+ },
+ "shop/pastry": {
+ "icon": "maki-bakery",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "pastry"
+ },
+ "moreFields": [
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/pasta": {
+ "icon": "fas-plate-wheat",
+ "fields": [
+ "name",
+ "address",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "pasta"
+ },
+ "reference": {
+ "key": "shop",
+ "value": "pasta"
+ }
+ },
+ "shop/party": {
+ "icon": "temaki-balloon",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "party"
+ }
+ },
+ "shop/paint": {
+ "icon": "fas-paint-roller",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "paint"
+ }
+ },
+ "shop/outpost": {
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "outpost"
+ }
+ },
+ "shop/outdoor": {
+ "icon": "temaki-compass",
+ "fields": [
+ "{shop}"
+ ],
+ "moreFields": [
+ "{shop}",
+ "clothes",
+ "service/bicycle"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "outdoor"
+ }
+ },
+ "shop/optician": {
+ "icon": "maki-optician",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "optician"
+ }
+ },
+ "shop/nuts": {
+ "tags": {
+ "shop": "nuts"
+ },
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ]
+ },
+ "shop/nutrition_supplements": {
+ "icon": "fas-pills",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "nutrition_supplements"
+ }
+ },
+ "shop/newsagent": {
+ "icon": "fas-newspaper",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
+ "tags": {
+ "shop": "newsagent"
+ }
+ },
+ "shop/musical_instrument": {
+ "icon": "fas-guitar",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "musical_instrument"
+ }
+ },
+ "shop/music": {
+ "icon": "fas-compact-disc",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "music"
+ }
+ },
+ "shop/motorcycle_repair": {
+ "icon": "temaki-motorcycle_repair",
+ "fields": [
+ "{shop}",
+ "service/vehicle"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "motorcycle_repair"
+ }
+ },
+ "shop/motorcycle": {
+ "icon": "fas-motorcycle",
+ "fields": [
+ "name",
+ "brand",
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "motorcycle"
+ }
+ },
+ "shop/money_lender": {
+ "icon": "temaki-money_hand",
+ "fields": [
+ "{shop}",
+ "currency_multi"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "money_lender"
+ }
+ },
+ "shop/model": {
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "model"
+ }
+ },
+ "shop/mobile_phone_accessories": {
+ "icon": "fas-mobile-screen",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "mobile_phone_accessories"
+ }
+ },
+ "shop/mobile_phone": {
+ "icon": "fas-mobile-alt",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "mobile_phone"
+ }
+ },
+ "shop/military_surplus": {
+ "icon": "temaki-military",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "military_surplus"
+ }
+ },
+ "shop/medical_supply": {
+ "icon": "fas-crutch",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "medical_supply"
+ }
+ },
+ "shop/massage": {
+ "icon": "temaki-spa",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "massage"
+ }
+ },
+ "shop/mall": {
+ "icon": "temaki-shopping_mall",
+ "moreFields": [
+ "{shop}",
+ "baby_feeding"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "mall"
+ }
+ },
+ "shop/lottery": {
+ "icon": "fas-ticket-alt",
+ "moreFields": [
+ "{shop}",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "lottery"
+ }
+ },
+ "shop/locksmith": {
+ "icon": "fas-key",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "locksmith"
+ }
+ },
+ "shop/lighting": {
+ "icon": "temaki-desk_lamp",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "lighting"
+ }
+ },
+ "shop/leather": {
+ "icon": "temaki-handbag",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "leather"
+ }
+ },
+ "shop/laundry": {
+ "icon": "temaki-laundry",
+ "fields": [
+ "{shop}",
+ "self_service"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "laundry"
+ }
+ },
+ "shop/kitchen": {
+ "icon": "temaki-kitchen_sink",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "kitchen"
+ }
+ },
+ "shop/kiosk": {
+ "icon": "fas-store",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "kiosk"
+ }
+ },
+ "shop/jewelry": {
+ "icon": "maki-jewelry-store",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "jewelry"
+ }
+ },
+ "shop/interior_decoration": {
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "interior_decoration"
+ }
+ },
+ "shop/hunting": {
+ "icon": "temaki-bow_and_arrow",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "hunting"
+ }
+ },
+ "shop/houseware": {
+ "icon": "fas-blender",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "houseware"
+ }
+ },
+ "shop/household_linen": {
+ "icon": "temaki-cloth",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "household_linen"
+ }
+ },
+ "shop/honey": {
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "honey"
+ }
+ },
+ "shop/hifi": {
+ "icon": "temaki-speaker",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "hifi"
+ }
+ },
+ "shop/herbalist": {
+ "icon": "fas-leaf",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "herbalist"
+ },
+ "moreFields": [
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/hearing_aids": {
+ "icon": "temaki-hearing_aid",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "hearing_aids"
+ }
+ },
+ "shop/health_food": {
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "health_food"
+ },
+ "moreFields": [
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/hardware": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "hardware"
+ }
+ },
+ "shop/hairdresser_supply": {
+ "icon": "temaki-hair_care",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "hairdresser_supply"
+ }
+ },
+ "shop/hairdresser": {
+ "icon": "temaki-beauty_salon",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "payment_multi",
+ "phone",
+ "gender_simple"
+ ],
+ "tags": {
+ "shop": "hairdresser"
+ }
+ },
+ "shop/groundskeeping": {
+ "icon": "fas-tractor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "groundskeeping"
+ }
+ },
+ "shop/greengrocer": {
+ "icon": "fas-carrot",
+ "fields": [
+ "{shop}",
+ "organic"
+ ],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "greengrocer"
+ }
+ },
+ "shop/gold_buyer": {
+ "icon": "fas-hand-holding",
+ "fields": [
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "gold_buyer"
+ }
+ },
+ "shop/gift": {
+ "icon": "maki-gift",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "gift"
+ }
+ },
+ "shop/general": {
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "general"
+ }
+ },
+ "shop/gas": {
+ "icon": "temaki-propane_tank",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "gas"
+ }
+ },
+ "shop/garden_centre": {
+ "icon": "maki-garden-centre",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "garden_centre"
+ }
+ },
+ "shop/games": {
+ "icon": "fas-dice",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "games"
+ }
+ },
+ "shop/furniture": {
+ "icon": "fas-couch",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "furniture"
+ }
+ },
+ "shop/funeral_directors": {
+ "icon": "maki-cemetery",
+ "fields": [
+ "{shop}",
+ "religion",
+ "denomination"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "funeral_directors"
+ }
+ },
+ "shop/fuel": {
+ "icon": "temaki-propane_tank",
+ "fields": [
+ "{shop}",
+ "fuel/fuel_multi"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "fuel"
+ },
+ "matchScore": 0.5
+ },
+ "shop/frozen_food": {
+ "icon": "far-snowflake",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
+ "tags": {
+ "shop": "frozen_food"
+ }
+ },
+ "shop/frame": {
+ "icon": "temaki-portrait_framed",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "frame"
+ }
+ },
+ "shop/florist": {
+ "icon": "maki-florist",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "florist"
+ }
+ },
+ "shop/flooring": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "flooring"
+ }
+ },
+ "shop/fishing": {
+ "icon": "temaki-ice_fishing",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "fishing"
+ }
+ },
+ "shop/fireplace": {
+ "icon": "temaki-fireplace",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "fireplace"
+ }
+ },
+ "shop/fashion_accessories": {
+ "icon": "temaki-fashion_accessories",
+ "fields": [
+ "name",
+ "clothes",
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "fashion_accessories"
+ }
+ },
+ "shop/farm": {
+ "icon": "fas-apple-alt",
+ "fields": [
+ "{shop}",
+ "organic"
+ ],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "farm"
+ }
+ },
+ "shop/fabric": {
+ "icon": "fas-tape",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "fabric"
+ }
+ },
+ "shop/erotic": {
+ "icon": "maki-shop",
+ "fields": [
+ "{shop}",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "erotic"
+ }
+ },
+ "shop/electronics": {
+ "icon": "fas-plug",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "electronics"
+ }
+ },
+ "shop/electrical": {
+ "icon": "temaki-power",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "electrical"
+ }
+ },
+ "shop/e-cigarette": {
+ "icon": "fas-smoking",
+ "moreFields": [
+ "{shop}",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "e-cigarette"
+ }
+ },
+ "shop/dry_cleaning": {
+ "icon": "temaki-clothes_hanger",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "dry_cleaning"
+ }
+ },
+ "shop/doors": {
+ "icon": "fas-door-open",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "doors"
+ }
+ },
+ "shop/doityourself": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "doityourself"
+ }
+ },
+ "shop/department_store": {
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "department_store"
+ },
+ "moreFields": [
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/deli": {
+ "icon": "fas-jar",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "deli"
+ },
+ "moreFields": [
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/dairy": {
+ "icon": "fas-cheese",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "dairy"
+ }
+ },
+ "shop/curtain": {
+ "icon": "temaki-curtains",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "curtain"
+ }
+ },
+ "shop/craft": {
+ "icon": "fas-palette",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "craft"
+ }
+ },
+ "shop/country_store": {
+ "icon": "fas-hat-cowboy-side",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "country_store"
+ }
+ },
+ "shop/cosmetics": {
+ "icon": "temaki-lipstick",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "cosmetics"
+ }
+ },
+ "shop/copyshop": {
+ "icon": "fas-print",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "copyshop"
+ }
+ },
+ "shop/convenience": {
+ "icon": "fas-shopping-basket",
+ "moreFields": [
+ "{shop}",
+ "fhrs/id-GB",
+ "organic"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "convenience"
+ }
+ },
+ "shop/confectionery": {
+ "icon": "maki-confectionery",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "confectionery"
+ },
+ "moreFields": [
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/computer": {
+ "icon": "fas-laptop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "computer"
+ }
+ },
+ "shop/collector": {
+ "icon": "fas-th",
+ "fields": [
+ "name",
+ "collector",
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "collector"
+ }
+ },
+ "shop/coffee": {
+ "icon": "temaki-coffee",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "coffee"
+ }
+ },
+ "shop/clothes": {
+ "icon": "maki-clothing-store",
+ "fields": [
+ "name",
+ "clothes",
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "clothes"
+ }
+ },
+ "shop/chocolate": {
+ "icon": "maki-confectionery",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "chocolate"
+ }
+ },
+ "shop/chemist": {
+ "icon": "fas-shopping-basket",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "chemist"
+ },
+ "moreFields": [
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/cheese": {
+ "icon": "fas-cheese",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "cheese"
+ },
+ "moreFields": [
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/charity": {
+ "icon": "maki-shop",
+ "fields": [
+ "{shop}",
+ "second_hand"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "charity"
+ }
+ },
+ "shop/catalogue": {
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "catalogue"
+ }
+ },
+ "shop/carpet": {
+ "icon": "fas-tape",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "carpet"
+ }
+ },
+ "shop/caravan": {
+ "icon": "temaki-camper_trailer",
+ "fields": [
+ "name",
+ "brand",
+ "{shop}",
+ "second_hand",
+ "service/vehicle"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "caravan"
+ }
+ },
+ "shop/car_repair": {
+ "icon": "maki-car-repair",
+ "fields": [
+ "{shop}",
+ "service/vehicle"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "car_repair"
+ }
+ },
+ "shop/car_parts": {
+ "icon": "fas-car-battery",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "car_parts"
+ }
+ },
+ "shop/car": {
+ "icon": "temaki-car_dealer",
+ "fields": [
+ "name",
+ "brand",
+ "{shop}",
+ "second_hand",
+ "service/vehicle"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "car"
+ }
+ },
+ "shop/cannabis": {
+ "icon": "fas-cannabis",
+ "moreFields": [
+ "{shop}",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "cannabis"
+ }
+ },
+ "shop/candles": {
+ "icon": "fas-burn",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "candles"
+ }
+ },
+ "shop/camera": {
+ "icon": "fas-camera-retro",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "camera"
+ }
+ },
+ "shop/butcher": {
+ "icon": "temaki-cleaver",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "butcher"
+ },
+ "moreFields": [
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/brewing_supplies": {
+ "icon": "temaki-storage_fermenter",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "brewing_supplies"
+ }
+ },
+ "shop/books": {
+ "icon": "fas-book",
+ "fields": [
+ "{shop}",
+ "books",
+ "internet_access"
+ ],
+ "moreFields": [
+ "{shop}",
+ "internet_access/fee",
+ "internet_access/ssid"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "books"
+ }
+ },
+ "shop/bookmaker": {
+ "icon": "temaki-money_hand",
+ "moreFields": [
+ "{shop}",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "bookmaker"
+ }
+ },
+ "shop/boat": {
+ "icon": "temaki-boat",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "boat"
+ }
+ },
+ "shop/bicycle": {
+ "icon": "maki-bicycle",
+ "fields": [
+ "{shop}",
+ "service/bicycle"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "bicycle"
+ }
+ },
+ "shop/beverages": {
+ "icon": "temaki-bottles",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "beverages"
+ }
+ },
+ "shop/bed": {
+ "icon": "maki-lodging",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "bed"
+ }
+ },
+ "shop/beauty": {
+ "icon": "temaki-lipstick",
+ "fields": [
+ "{shop}",
+ "beauty"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "beauty"
+ }
+ },
+ "shop/bbq": {
+ "icon": "maki-bbq",
+ "fields": [
+ "{shop}"
+ ],
+ "moreFields": [
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "bbq"
+ }
+ },
+ "shop/bathroom_furnishing": {
+ "icon": "fas-bath",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "bathroom_furnishing"
+ }
+ },
+ "shop/bakery": {
+ "icon": "maki-bakery",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "bakery"
+ },
+ "moreFields": [
+ "{shop}",
+ "fhrs/id-GB"
+ ]
+ },
+ "shop/bag": {
+ "icon": "fas-suitcase-rolling",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "bag"
+ }
+ },
+ "shop/baby_goods": {
+ "icon": "fas-baby-carriage",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "baby_goods"
+ }
+ },
+ "shop/art": {
+ "icon": "maki-art-gallery",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "art"
+ }
+ },
+ "shop/appliance": {
+ "icon": "temaki-laundry",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "appliance"
+ }
+ },
+ "shop/antiques": {
+ "icon": "temaki-furniture",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "antiques"
+ }
+ },
+ "shop/anime": {
+ "icon": "fas-dragon",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "anime"
+ }
+ },
+ "shop/alcohol": {
+ "icon": "fas-wine-bottle",
+ "fields": [
+ "{shop}",
+ "drive_through",
+ "opening_hours/drive_through"
+ ],
+ "moreFields": [
+ "{shop}",
+ "fhrs/id-GB",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "alcohol"
+ }
+ },
+ "shop/agrarian": {
+ "icon": "fas-tractor",
+ "fields": [
+ "{shop}",
+ "agrarian"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "agrarian"
+ }
+ },
+ "shop/yes": {
+ "icon": "maki-shop",
+ "fields": [
+ "name",
+ "shop",
+ "{shop}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "yes"
+ },
+ "searchable": false,
+ "matchScore": 0.8
+ },
+ "shop/vacant": {
+ "icon": "fas-store-alt-slash",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "vacant"
+ }
+ },
+ "shop/hobby": {
+ "icon": "fas-dragon",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "hobby"
},
"searchable": false
},
- "place/city_block": {
- "icon": "maki-triangle-stroked",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "city_block"
- }
- },
- "place/city": {
- "icon": "maki-city",
+ "shop/fashion": {
+ "icon": "maki-shop",
"fields": [
"name",
- "population",
- "population/date",
- "source/population"
+ "clothes",
+ "{shop}"
],
"geometry": [
"point",
"area"
],
"tags": {
- "place": "city"
- }
+ "shop": "fashion"
+ },
+ "searchable": false
},
- "place/hamlet": {
- "icon": "maki-triangle-stroked",
+ "shop/boutique": {
+ "icon": "maki-shop",
"fields": [
"name",
- "population",
- "population/date",
- "source/population"
+ "clothes",
+ "{shop}"
],
"geometry": [
"point",
"area"
],
"tags": {
- "place": "hamlet"
- }
+ "shop": "boutique"
+ },
+ "searchable": false
},
- "place/island": {
- "icon": "temaki-island_trees_building",
+ "shop/supermarket/organic": {
+ "icon": "maki-grocery",
"geometry": [
"point",
"area"
],
"tags": {
- "place": "island"
+ "shop": "supermarket",
+ "organic": "only"
+ },
+ "reference": {
+ "key": "organic"
}
},
- "place/islet": {
- "icon": "temaki-islet_tree",
+ "shop/laundry/self_service": {
+ "icon": "temaki-laundry",
"geometry": [
"point",
"area"
],
"tags": {
- "place": "islet"
+ "shop": "laundry",
+ "self_service": "yes"
}
},
- "place/isolated_dwelling": {
- "icon": "maki-home",
+ "shop/hairdresser/barber": {
+ "icon": "temaki-beauty_salon",
"geometry": [
"point",
"area"
],
- "tags": {
- "place": "isolated_dwelling"
- }
- },
- "place/locality": {
- "icon": "maki-triangle-stroked",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "locality"
- }
- },
- "place/neighbourhood": {
- "icon": "maki-triangle-stroked",
"fields": [
"name",
- "population",
- "population/date",
- "source/population"
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "payment_multi",
+ "phone",
+ "gender_simple"
+ ],
+ "tags": {
+ "shop": "hairdresser",
+ "hairdresser": "barber"
+ },
+ "reference": {
+ "key": "hairdresser",
+ "value": "barber"
+ }
+ },
+ "shop/erotic/lgbtq": {
+ "icon": "maki-shop",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "erotic",
+ "lgbtq": "primary"
+ }
+ },
+ "shop/clothes/workwear": {
+ "icon": "fas-tshirt",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "clothes",
+ "clothes": "workwear"
+ }
+ },
+ "shop/clothes/wedding": {
+ "icon": "temaki-gown",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "clothes",
+ "clothes": "wedding"
+ },
+ "reference": {
+ "key": "clothes",
+ "value": "wedding"
+ }
+ },
+ "shop/clothes/underwear": {
+ "icon": "temaki-bikini",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "clothes",
+ "clothes": "underwear"
+ },
+ "reference": {
+ "key": "clothes",
+ "value": "underwear"
+ }
+ },
+ "shop/clothes/suits": {
+ "icon": "fas-tshirt",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "clothes",
+ "clothes": "suits"
+ }
+ },
+ "shop/clothes/second_hand": {
+ "icon": "fas-tshirt",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "clothes",
+ "second_hand": "only"
+ }
+ },
+ "shop/car/second_hand": {
+ "icon": "temaki-car_dealer",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "car",
+ "second_hand": "only"
+ }
+ },
+ "shop/beauty/tanning": {
+ "icon": "temaki-tanning",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "beauty",
+ "beauty": "tanning"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "tanning_salon"
+ }
+ },
+ "shop/beauty/nails": {
+ "icon": "temaki-polished_nail",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "shop": "beauty",
+ "beauty": "nails"
+ },
+ "reference": {
+ "key": "shop",
+ "value": "beauty"
+ }
+ },
+ "seamark/mooring": {
+ "icon": "temaki-horn_cleat",
+ "fields": [
+ "ref",
+ "operator",
+ "seamark/mooring/category",
+ "seamark/type"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "seamark:type": "mooring"
+ }
+ },
+ "seamark/buoy_lateral": {
+ "icon": "temaki-buoy",
+ "fields": [
+ "ref",
+ "operator",
+ "seamark/buoy_lateral/colour",
+ "seamark/buoy_lateral/category",
+ "seamark/buoy_lateral/shape",
+ "seamark/buoy_lateral/system",
+ "seamark/type"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "seamark:type": "buoy_lateral"
+ }
+ },
+ "seamark/beacon_lateral": {
+ "fields": [
+ "ref",
+ "operator",
+ "seamark/beacon_lateral/colour",
+ "seamark/beacon_lateral/category",
+ "seamark/beacon_lateral/shape",
+ "seamark/beacon_lateral/system",
+ "seamark/type"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "seamark:type": "beacon_lateral"
+ }
+ },
+ "seamark/beacon_isolated_danger": {
+ "fields": [
+ "ref",
+ "operator",
+ "seamark/beacon_isolated_danger/shape",
+ "seamark/type"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "seamark:type": "beacon_isolated_danger"
+ }
+ },
+ "seamark/buoy_lateral/red": {
+ "icon": "temaki-buoy",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "seamark:type": "buoy_lateral",
+ "seamark:buoy_lateral:colour": "red"
+ }
+ },
+ "seamark/buoy_lateral/green": {
+ "icon": "temaki-buoy",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "seamark:type": "buoy_lateral",
+ "seamark:buoy_lateral:colour": "green"
+ }
+ },
+ "route/ferry": {
+ "icon": "temaki-ferry",
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "duration",
+ "access",
+ "toll",
+ "from",
+ "to"
+ ],
+ "moreFields": [
+ "charge_toll",
+ "distance",
+ "dog",
+ "email",
+ "interval",
+ "maxheight",
+ "maxweight",
+ "maxwidth",
+ "network",
+ "oneway",
+ "opening_hours",
+ "phone",
+ "ref_route",
+ "reservation",
+ "roundtrip",
+ "via",
+ "vhf",
+ "wheelchair"
+ ],
+ "tags": {
+ "route": "ferry"
+ }
+ },
+ "roller_coaster/track": {
+ "icon": "temaki-roller_coaster",
+ "fields": [
+ "roller_coaster/track",
+ "height",
+ "layer"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "roller_coaster": "track"
+ }
+ },
+ "roller_coaster/support": {
+ "icon": "roentgen-tower",
+ "fields": [
+ "height",
+ "layer",
+ "material"
+ ],
+ "moreFields": [
+ "colour"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "roller_coaster": "support"
+ }
+ },
+ "roller_coaster/station": {
+ "icon": "temaki-roller_coaster",
+ "fields": [
+ "building_area_yes"
+ ],
+ "geometry": [
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "roller_coaster": "station"
+ }
+ },
+ "railway/yard": {
+ "icon": "temaki-freight_car",
+ "fields": [
+ "name",
+ "operator"
],
"moreFields": [
"gnis/feature_id-US"
],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "neighbourhood"
- }
- },
- "place/plot": {
- "icon": "maki-triangle-stroked",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "plot"
- }
- },
- "place/quarter": {
- "icon": "maki-triangle-stroked",
- "fields": [
- "name",
- "population",
- "population/date",
- "source/population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "quarter"
- }
- },
- "place/square": {
- "icon": "maki-marker-stroked",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "square"
- }
- },
- "place/suburb": {
- "icon": "maki-triangle-stroked",
- "fields": [
- "name",
- "population",
- "population/date",
- "source/population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "suburb"
- }
- },
- "place/town": {
- "icon": "maki-town",
- "fields": [
- "name",
- "population",
- "population/date",
- "source/population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "town"
- }
- },
- "place/village": {
- "icon": "maki-village",
- "fields": [
- "name",
- "population",
- "population/date",
- "source/population"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "place": "village"
- }
- },
- "playground/activitypanel": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "playground": "activitypanel"
- }
- },
- "playground/aerialrotator": {
- "icon": "maki-playground",
"geometry": [
"point"
],
"tags": {
- "playground": "aerialrotator"
+ "railway": "yard"
}
},
- "playground/balancebeam": {
- "icon": "temaki-balance_beam",
+ "railway/turntable": {
+ "icon": "maki-circle-stroked",
+ "geometry": [
+ "area",
+ "vertex"
+ ],
+ "fields": [
+ "ref"
+ ],
+ "tags": {
+ "railway": "turntable"
+ }
+ },
+ "railway/tram_level_crossing": {
+ "icon": "temaki-crossing_tram_solid",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "railway": "tram_level_crossing"
+ }
+ },
+ "railway/tram_crossing": {
+ "icon": "temaki-crossing_tram_striped",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "railway": "tram_crossing"
+ }
+ },
+ "railway/tram": {
+ "icon": "temaki-tram",
+ "fields": [
+ "{railway/light_rail}",
+ "oneway"
+ ],
+ "moreFields": [
+ "{railway/light_rail}"
+ ],
"geometry": [
- "point",
"line"
],
"tags": {
- "playground": "balancebeam"
+ "railway": "tram"
}
},
- "playground/basketrotator": {
- "icon": "maki-playground",
- "geometry": [
- "point"
- ],
- "tags": {
- "playground": "basketrotator"
- }
- },
- "playground/basketswing": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "playground": "basketswing"
- }
- },
- "playground/bridge": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "moreFields": [
- "{playground}",
- "length",
- "width"
- ],
- "tags": {
- "playground": "bridge"
- }
- },
- "playground/climbingframe": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "climbingframe"
- }
- },
- "playground/climbingwall": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "playground": "climbingwall"
- }
- },
- "playground/cushion": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "cushion"
- }
- },
- "playground/funnel_ball": {
- "icon": "maki-playground",
- "geometry": [
- "point"
- ],
- "tags": {
- "playground": "funnel_ball"
- }
- },
- "playground/hopscotch": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "playground": "hopscotch"
- }
- },
- "playground/horizontal_bar": {
- "icon": "temaki-horizontal_bar",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "playground": "horizontal_bar"
- }
- },
- "playground/map": {
- "icon": "temaki-compass",
+ "railway/train_wash": {
+ "icon": "temaki-train_wash",
"geometry": [
"point",
+ "vertex",
"area"
],
"fields": [
- "subject/wikidata",
- "surface"
- ],
- "moreFields": [
- "colour",
- "subject"
+ "operator",
+ "building_area_yes"
],
"tags": {
- "playground": "map"
+ "railway": "wash"
}
},
- "playground/playhouse": {
- "icon": "temaki-play_structure",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "playhouse"
- }
- },
- "playground/roundabout": {
- "icon": "maki-stadium",
+ "railway/switch": {
+ "icon": "temaki-junction",
"fields": [
- "{playground}",
- "bench"
+ "railway/switch",
+ "ref"
],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "railway": "switch"
+ }
+ },
+ "railway/subway_entrance": {
+ "icon": "maki-entrance",
"geometry": [
"point",
- "area"
+ "vertex"
],
- "tags": {
- "playground": "roundabout"
- }
- },
- "playground/sandpit": {
- "icon": "temaki-sandbox",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "sandpit"
- }
- },
- "playground/seesaw": {
- "icon": "temaki-seesaw",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "playground": "seesaw"
- }
- },
- "playground/sledding": {
- "icon": "temaki-sledding",
- "geometry": [
- "point"
- ],
- "tags": {
- "playground": "sledding"
- }
- },
- "playground/slide": {
- "icon": "temaki-slide",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "playground": "slide"
- }
- },
- "playground/splash_pad": {
- "icon": "temaki-fountain",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "splash_pad"
- }
- },
- "playground/springy": {
- "icon": "temaki-spring_rider",
- "geometry": [
- "point"
- ],
- "tags": {
- "playground": "springy"
- }
- },
- "playground/structure": {
- "icon": "temaki-play_structure",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "playground": "structure"
- }
- },
- "playground/swing": {
- "icon": "maki-playground",
"fields": [
- "capacity",
- "baby_seat",
+ "name",
+ "level",
"wheelchair",
- "blind"
- ],
- "geometry": [
- "point",
- "line",
- "area"
+ "ref"
],
"tags": {
- "playground": "swing"
+ "railway": "subway_entrance"
}
},
- "playground/teenshelter": {
- "icon": "maki-shelter",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "teenshelter"
- }
- },
- "playground/tetherball": {
- "icon": "maki-playground",
- "geometry": [
- "point"
- ],
- "tags": {
- "playground": "tetherball"
- }
- },
- "playground/trampoline": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "playground": "trampoline"
- }
- },
- "playground/tunnel_tube": {
- "icon": "maki-playground",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "playground": "tunnel_tube"
- }
- },
- "playground/water": {
- "icon": "temaki-water",
- "geometry": [
- "point",
- "line",
- "area"
- ],
- "tags": {
- "playground": "water"
- }
- },
- "playground/zipwire": {
- "icon": "maki-playground",
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "playground": "zipwire"
- }
- },
- "point": {
+ "railway/subway": {
+ "icon": "temaki-subway",
"fields": [
- "name"
- ],
- "geometry": [
- "vertex",
- "point"
- ],
- "tags": {},
- "matchScore": 0.1
- },
- "police/checkpoint": {
- "icon": "temaki-military_checkpoint",
- "fields": [
- "name"
+ "{railway/light_rail}"
],
"moreFields": [
- "opening_hours"
+ "{railway/light_rail}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "subway"
+ }
+ },
+ "railway/signal": {
+ "icon": "temaki-railway_signals",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "railway/position",
+ "railway/signal/direction",
+ "ref"
+ ],
+ "tags": {
+ "railway": "signal"
+ }
+ },
+ "railway/railway_crossing": {
+ "icon": "temaki-x_oblique",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "railway": "railway_crossing"
+ }
+ },
+ "railway/rail": {
+ "icon": "temaki-railway_track",
+ "fields": [
+ "{railway/light_rail}",
+ "railway/track_ref"
+ ],
+ "moreFields": [
+ "{railway/light_rail}",
+ "highspeed",
+ "ref_rail"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "rail"
+ }
+ },
+ "railway/preserved": {
+ "icon": "temaki-train_steam",
+ "fields": [
+ "railway",
+ "{railway/light_rail}"
+ ],
+ "moreFields": [
+ "{railway/light_rail}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "*",
+ "railway:preserved": "yes"
+ },
+ "addTags": {
+ "railway": "rail",
+ "railway:preserved": "yes"
+ },
+ "reference": {
+ "key": "railway:preserved"
+ }
+ },
+ "railway/narrow_gauge": {
+ "icon": "temaki-railway_track_narrow",
+ "fields": [
+ "{railway/light_rail}"
+ ],
+ "moreFields": [
+ "{railway/light_rail}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "narrow_gauge"
+ }
+ },
+ "railway/monorail": {
+ "icon": "temaki-monorail",
+ "fields": [
+ "{railway/light_rail}"
+ ],
+ "moreFields": [
+ "{railway/light_rail}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "monorail"
+ }
+ },
+ "railway/miniature": {
+ "icon": "temaki-railway_track_mini",
+ "fields": [
+ "{railway/light_rail}"
+ ],
+ "moreFields": [
+ "{railway/light_rail}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "miniature"
+ }
+ },
+ "railway/milestone": {
+ "icon": "temaki-milestone",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "railway/position",
+ "direction_vertex"
+ ],
+ "moreFields": [
+ "ref"
+ ],
+ "tags": {
+ "railway": "milestone"
+ }
+ },
+ "railway/light_rail": {
+ "icon": "temaki-light_rail",
+ "fields": [
+ "name",
+ "operator",
+ "structure",
+ "gauge",
+ "electrified",
+ "service_rail",
+ "usage_rail"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "frequency_electrified",
+ "incline",
+ "maxspeed",
+ "voltage_electrified"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "light_rail"
+ }
+ },
+ "railway/level_crossing": {
+ "icon": "maki-cross",
+ "fields": [
+ "crossing/barrier",
+ "crossing/bell",
+ "crossing/light"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "railway": "level_crossing"
+ }
+ },
+ "railway/funicular": {
+ "icon": "temaki-railway_cable_track",
+ "fields": [
+ "name",
+ "operator",
+ "incline",
+ "structure",
+ "gauge",
+ "service_rail"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "electrified",
+ "frequency_electrified",
+ "maxspeed",
+ "voltage_electrified"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "funicular"
+ }
+ },
+ "railway/disused": {
+ "icon": "temaki-railway_track",
+ "fields": [
+ "{railway/light_rail}"
+ ],
+ "moreFields": [
+ "{railway/light_rail}",
+ "highspeed"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "disused"
+ },
+ "matchScore": 0.95
+ },
+ "railway/derail": {
+ "icon": "maki-roadblock",
+ "geometry": [
+ "vertex"
+ ],
+ "fields": [
+ "direction_vertex"
+ ],
+ "tags": {
+ "railway": "derail"
+ }
+ },
+ "railway/crossing": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "crossing/barrier",
+ "crossing/bell",
+ "crossing/light"
+ ],
+ "moreFields": [
+ "crossing/markings"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "railway": "crossing"
+ }
+ },
+ "railway/construction": {
+ "icon": "temaki-railway_track_partial",
+ "fields": [
+ "name",
+ "opening_date",
+ "check_date",
+ "note",
+ "structure",
+ "gauge",
+ "electrified"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "frequency_electrified",
+ "highspeed",
+ "incline",
+ "maxspeed",
+ "service_rail",
+ "usage_rail",
+ "voltage_electrified"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "construction"
+ },
+ "matchScore": 0.95
+ },
+ "railway/buffer_stop": {
+ "icon": "temaki-buffer_stop",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "railway": "buffer_stop"
+ }
+ },
+ "railway/abandoned": {
+ "icon": "temaki-railway_track_askew",
+ "fields": [
+ "name",
+ "structure",
+ "service_rail",
+ "usage_rail"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "incline"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "abandoned"
+ },
+ "matchScore": 0.85
+ },
+ "railway/tram_stop": {
+ "icon": "temaki-tram",
+ "fields": [
+ "{public_transport/stop_position}"
+ ],
+ "moreFields": [
+ "{public_transport/stop_position}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "railway": "tram_stop"
+ },
+ "searchable": false
+ },
+ "railway/station": {
+ "icon": "temaki-board_train",
+ "fields": [
+ "{public_transport/station}"
+ ],
+ "moreFields": [
+ "{public_transport/station}"
],
"geometry": [
"point",
@@ -20439,29 +6232,589 @@
"area"
],
"tags": {
- "police": "checkpoint"
+ "railway": "station"
+ },
+ "matchScore": 0.95,
+ "searchable": false
+ },
+ "railway/platform": {
+ "icon": "temaki-board_train",
+ "fields": [
+ "{public_transport/platform}"
+ ],
+ "moreFields": [
+ "{public_transport/platform}"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "railway": "platform"
+ },
+ "searchable": false
+ },
+ "railway/halt": {
+ "icon": "temaki-rail_flag",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "railway": "halt"
+ },
+ "searchable": false
+ },
+ "railway/rail/highspeed": {
+ "icon": "temaki-train_bullet",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "rail",
+ "highspeed": "yes"
+ },
+ "reference": {
+ "key": "highspeed"
}
},
- "polling_station": {
- "icon": "fas-vote-yea",
+ "railway/monorail/hanging": {
+ "icon": "temaki-hanging_rail",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "railway": "monorail",
+ "monorail": "hanging"
+ },
+ "reference": {
+ "key": "monorail",
+ "value": "hanging"
+ }
+ },
+ "public_transport/stop_position_trolleybus": {
+ "icon": "temaki-trolleybus",
+ "fields": [
+ "{public_transport/stop_position}"
+ ],
+ "moreFields": [
+ "{public_transport/stop_position}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "stop_position",
+ "trolleybus": "yes"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "stop_position"
+ }
+ },
+ "public_transport/stop_position_tram": {
+ "icon": "temaki-tram",
+ "fields": [
+ "{public_transport/stop_position}"
+ ],
+ "moreFields": [
+ "{public_transport/stop_position}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "stop_position",
+ "tram": "yes"
+ },
+ "addTags": {
+ "public_transport": "stop_position",
+ "tram": "yes",
+ "railway": "tram_stop"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "stop_position"
+ }
+ },
+ "public_transport/stop_position_train": {
+ "icon": "temaki-train",
+ "fields": [
+ "{public_transport/stop_position}"
+ ],
+ "moreFields": [
+ "{public_transport/stop_position}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "stop_position",
+ "train": "yes"
+ },
+ "addTags": {
+ "public_transport": "stop_position",
+ "train": "yes",
+ "railway": "stop"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "stop"
+ }
+ },
+ "public_transport/stop_position_subway": {
+ "icon": "temaki-subway",
+ "fields": [
+ "{public_transport/stop_position}"
+ ],
+ "moreFields": [
+ "{public_transport/stop_position}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "stop_position",
+ "subway": "yes"
+ },
+ "addTags": {
+ "public_transport": "stop_position",
+ "subway": "yes",
+ "railway": "stop"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "stop"
+ }
+ },
+ "public_transport/stop_position_monorail": {
+ "icon": "temaki-monorail",
+ "fields": [
+ "{public_transport/stop_position}"
+ ],
+ "moreFields": [
+ "{public_transport/stop_position}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "stop_position",
+ "monorail": "yes"
+ },
+ "addTags": {
+ "public_transport": "stop_position",
+ "monorail": "yes",
+ "railway": "stop"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "stop"
+ }
+ },
+ "public_transport/stop_position_light_rail": {
+ "icon": "temaki-light_rail",
+ "fields": [
+ "{public_transport/stop_position}"
+ ],
+ "moreFields": [
+ "{public_transport/stop_position}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "stop_position",
+ "light_rail": "yes"
+ },
+ "addTags": {
+ "public_transport": "stop_position",
+ "light_rail": "yes",
+ "railway": "stop"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "stop"
+ }
+ },
+ "public_transport/stop_position_ferry": {
+ "icon": "temaki-ferry",
+ "fields": [
+ "{public_transport/stop_position}"
+ ],
+ "moreFields": [
+ "{public_transport/stop_position}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "stop_position",
+ "ferry": "yes"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "stop_position"
+ }
+ },
+ "public_transport/stop_position_bus": {
+ "icon": "temaki-bus",
+ "fields": [
+ "{public_transport/stop_position}"
+ ],
+ "moreFields": [
+ "{public_transport/stop_position}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "stop_position",
+ "bus": "yes"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "stop_position"
+ }
+ },
+ "public_transport/stop_position_aerialway": {
+ "icon": "temaki-gondola_lift",
+ "fields": [
+ "{public_transport/stop_position}"
+ ],
+ "moreFields": [
+ "{public_transport/stop_position}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "stop_position",
+ "aerialway": "yes"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "stop_position"
+ }
+ },
+ "public_transport/stop_position": {
+ "icon": "temaki-transit",
+ "fields": [
+ "name",
+ "ref_stop_position",
+ "network",
+ "operator",
+ "vehicles"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "stop_position"
+ },
+ "matchScore": 0.2
+ },
+ "public_transport/stop_area": {
+ "icon": "iD-relation",
"fields": [
"name",
"ref",
- "operator",
- "address",
- "opening_hours",
- "building_area",
- "phone"
+ "network",
+ "operator"
+ ],
+ "geometry": [
+ "relation"
+ ],
+ "tags": {
+ "type": "public_transport",
+ "public_transport": "stop_area"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "stop_area"
+ }
+ },
+ "public_transport/station_trolleybus": {
+ "icon": "temaki-trolleybus",
+ "fields": [
+ "{public_transport/station}"
],
"moreFields": [
+ "{public_transport/station}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "station",
+ "trolleybus": "yes"
+ },
+ "addTags": {
+ "public_transport": "station",
+ "trolleybus": "yes",
+ "amenity": "bus_station"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "bus_station"
+ }
+ },
+ "public_transport/station_tram": {
+ "icon": "temaki-board_tram",
+ "fields": [
+ "{public_transport/station}"
+ ],
+ "moreFields": [
+ "{public_transport/station}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "station",
+ "tram": "yes"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "station"
+ }
+ },
+ "public_transport/station_train_halt": {
+ "icon": "temaki-rail_flag",
+ "fields": [
+ "{public_transport/station}"
+ ],
+ "moreFields": [
+ "{public_transport/station}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "station",
+ "train": "yes",
+ "railway": "halt"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "halt"
+ }
+ },
+ "public_transport/station_train": {
+ "icon": "temaki-board_train",
+ "fields": [
+ "{public_transport/station}"
+ ],
+ "moreFields": [
+ "{public_transport/station}"
+ ],
+ "geometry": [
+ "vertex",
+ "point",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "station",
+ "train": "yes"
+ },
+ "addTags": {
+ "public_transport": "station",
+ "train": "yes",
+ "railway": "station"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "station"
+ }
+ },
+ "public_transport/station_subway": {
+ "icon": "temaki-board_subway",
+ "fields": [
+ "{public_transport/station}"
+ ],
+ "moreFields": [
+ "{public_transport/station}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "station",
+ "subway": "yes"
+ },
+ "addTags": {
+ "public_transport": "station",
+ "subway": "yes",
+ "railway": "station",
+ "station": "subway"
+ },
+ "reference": {
+ "key": "station",
+ "value": "subway"
+ }
+ },
+ "public_transport/station_monorail": {
+ "icon": "temaki-board_monorail",
+ "fields": [
+ "{public_transport/station}"
+ ],
+ "moreFields": [
+ "{public_transport/station}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "station",
+ "monorail": "yes"
+ },
+ "addTags": {
+ "public_transport": "station",
+ "monorail": "yes",
+ "railway": "station"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "station"
+ }
+ },
+ "public_transport/station_light_rail": {
+ "icon": "temaki-board_light_rail",
+ "fields": [
+ "{public_transport/station}"
+ ],
+ "moreFields": [
+ "{public_transport/station}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "station",
+ "light_rail": "yes"
+ },
+ "addTags": {
+ "public_transport": "station",
+ "light_rail": "yes",
+ "railway": "station",
+ "station": "light_rail"
+ },
+ "reference": {
+ "key": "station",
+ "value": "light_rail"
+ }
+ },
+ "public_transport/station_ferry": {
+ "icon": "temaki-board_ferry",
+ "fields": [
+ "{public_transport/station}"
+ ],
+ "moreFields": [
+ "{public_transport/station}"
+ ],
+ "geometry": [
+ "vertex",
+ "point",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "station",
+ "ferry": "yes"
+ },
+ "addTags": {
+ "public_transport": "station",
+ "ferry": "yes",
+ "amenity": "ferry_terminal"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "ferry_terminal"
+ }
+ },
+ "public_transport/station_bus": {
+ "icon": "temaki-board_bus",
+ "fields": [
+ "{public_transport/station}"
+ ],
+ "moreFields": [
+ "{public_transport/station}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "station",
+ "bus": "yes"
+ },
+ "addTags": {
+ "public_transport": "station",
+ "bus": "yes",
+ "amenity": "bus_station"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "bus_station"
+ }
+ },
+ "public_transport/station_aerialway": {
+ "icon": "temaki-gondola_lift",
+ "fields": [
+ "{public_transport/station}",
+ "aerialway/access",
+ "aerialway/summer/access"
+ ],
+ "moreFields": [
+ "{public_transport/station}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "aerialway": "station"
+ },
+ "addTags": {
+ "public_transport": "station",
+ "aerialway": "station"
+ },
+ "reference": {
+ "key": "aerialway",
+ "value": "station"
+ }
+ },
+ "public_transport/station": {
+ "icon": "temaki-transit",
+ "fields": [
+ "name",
+ "network",
+ "operator",
+ "vehicles",
+ "address",
+ "building_area",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
"air_conditioning",
- "email",
- "fax",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
+ "baby_feeding",
+ "changing_table",
+ "gnis/feature_id-US",
"level",
- "opening_hours/covid19",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi",
"wheelchair"
],
"geometry": [
@@ -20469,769 +6822,9 @@
"area"
],
"tags": {
- "polling_station": "*"
+ "public_transport": "station"
},
- "matchScore": 0.75
- },
- "power/cable": {
- "icon": "temaki-cable",
- "fields": [
- "name",
- "ref",
- "operator",
- "voltage",
- "location",
- "layer"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "power": "cable"
- },
- "searchable": false
- },
- "power/cable/underground": {
- "icon": "temaki-cable",
- "geometry": [
- "line"
- ],
- "tags": {
- "power": "cable",
- "location": "underground"
- },
- "addTags": {
- "power": "cable",
- "location": "underground",
- "layer": "-1"
- }
- },
- "power/catenary_mast": {
- "icon": "temaki-power_pole",
- "fields": [
- "ref",
- "operator"
- ],
- "moreFields": [
- "height",
- "line_attachment",
- "line_management",
- "manufacturer",
- "material"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "power": "catenary_mast"
- }
- },
- "power/generator": {
- "icon": "temaki-power",
- "fields": [
- "ref",
- "operator",
- "generator/source",
- "generator/method",
- "generator/type",
- "generator/output/electricity"
- ],
- "moreFields": [
- "colour",
- "height",
- "level",
- "manufacturer",
- "material"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "power": "generator"
- }
- },
- "power/generator/method/photovoltaic": {
- "icon": "fas-solar-panel",
- "fields": [
- "ref",
- "operator",
- "generator/output/electricity"
- ],
- "moreFields": [
- "{power/generator}"
- ],
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "power": "generator",
- "generator:method": "photovoltaic"
- },
- "addTags": {
- "power": "generator",
- "generator:source": "solar",
- "generator:method": "photovoltaic",
- "generator:type": "solar_photovoltaic_panel",
- "generator:output:electricity": "*"
- },
- "reference": {
- "key": "generator:method",
- "value": "photovoltaic"
- }
- },
- "power/generator/method/photovoltaic/building/roof": {
- "icon": "fas-solar-panel",
- "fields": [
- "{power/generator/method/photovoltaic}"
- ],
- "moreFields": [
- "{power/generator}"
- ],
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "power": "generator",
- "generator:method": "photovoltaic",
- "building": "roof"
- },
- "addTags": {
- "power": "generator",
- "generator:source": "solar",
- "generator:method": "photovoltaic",
- "generator:type": "solar_photovoltaic_panel",
- "generator:output:electricity": "*",
- "building": "roof",
- "layer": "1"
- },
- "reference": {
- "key": "generator:method",
- "value": "photovoltaic"
- }
- },
- "power/generator/method/photovoltaic/location/roof": {
- "icon": "fas-solar-panel",
- "fields": [
- "{power/generator/method/photovoltaic}"
- ],
- "moreFields": [
- "{power/generator}"
- ],
- "geometry": [
- "area",
- "point",
- "vertex"
- ],
- "tags": {
- "power": "generator",
- "generator:method": "photovoltaic",
- "location": "roof"
- },
- "addTags": {
- "power": "generator",
- "generator:source": "solar",
- "generator:method": "photovoltaic",
- "generator:type": "solar_photovoltaic_panel",
- "generator:output:electricity": "*",
- "location": "roof"
- },
- "reference": {
- "key": "generator:method",
- "value": "photovoltaic"
- }
- },
- "power/generator/source/hydro": {
- "icon": "temaki-power",
- "fields": [
- "ref",
- "operator",
- "generator/method/hydro",
- "generator/type",
- "generator/output/electricity"
- ],
- "moreFields": [
- "{power/generator}"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "power": "generator",
- "generator:source": "hydro"
- },
- "addTags": {
- "power": "generator",
- "generator:source": "hydro",
- "generator:output:electricity": "yes"
- },
- "reference": {
- "key": "generator:source",
- "value": "hydro"
- }
- },
- "power/generator/source/nuclear": {
- "icon": "temaki-radiation",
- "fields": [
- "ref",
- "operator",
- "generator/type",
- "generator/output/electricity"
- ],
- "moreFields": [
- "{power/generator}"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "power": "generator",
- "generator:source": "nuclear",
- "generator:method": "fission"
- },
- "reference": {
- "key": "generator:source",
- "value": "nuclear"
- }
- },
- "power/generator/source/wind": {
- "icon": "temaki-wind_turbine",
- "fields": [
- "ref",
- "operator",
- "generator/type",
- "generator/output/electricity"
- ],
- "moreFields": [
- "{power/generator}",
- "height/hub",
- "rotor/diameter"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "power": "generator",
- "generator:source": "wind"
- },
- "addTags": {
- "power": "generator",
- "generator:source": "wind",
- "generator:method": "wind_turbine"
- },
- "reference": {
- "key": "generator:source",
- "value": "wind"
- }
- },
- "power/line": {
- "icon": "temaki-power_tower",
- "fields": [
- "name",
- "operator",
- "voltage",
- "cables",
- "ref",
- "layer"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "power": "line"
- }
- },
- "power/minor_line": {
- "icon": "iD-power-line",
- "fields": [
- "name",
- "operator",
- "voltage",
- "cables",
- "ref",
- "layer"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "power": "minor_line"
- }
- },
- "power/plant": {
- "icon": "maki-industry",
- "fields": [
- "name",
- "operator",
- "plant/source",
- "plant/method",
- "plant/output",
- "plant/output/electricity",
- "address",
- "start_date"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant"
- },
- "addTags": {
- "power": "plant",
- "landuse": "industrial"
- }
- },
- "power/plant/source/coal": {
- "icon": "maki-industry",
- "fields": [
- "name",
- "operator",
- "plant/output",
- "plant/output/electricity",
- "address",
- "start_date"
- ],
- "moreFields": [
- "{power/plant}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant",
- "plant:source": "coal"
- },
- "addTags": {
- "power": "plant",
- "landuse": "industrial",
- "plant:source": "coal",
- "plant:method": "combustion",
- "plant:output:electricity": "*"
- },
- "reference": {
- "key": "plant:source",
- "value": "coal"
- }
- },
- "power/plant/source/gas": {
- "icon": "temaki-gas",
- "fields": [
- "name",
- "operator",
- "plant/output",
- "plant/output/electricity",
- "address",
- "start_date"
- ],
- "moreFields": [
- "{power/plant}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant",
- "plant:source": "gas"
- },
- "addTags": {
- "power": "plant",
- "landuse": "industrial",
- "plant:source": "gas",
- "plant:method": "combustion",
- "plant:output:electricity": "*"
- },
- "reference": {
- "key": "plant:source",
- "value": "gas"
- }
- },
- "power/plant/source/hydro": {
- "icon": "maki-dam",
- "fields": [
- "name",
- "operator",
- "plant/source",
- "plant/method/hydro",
- "plant/output/electricity",
- "address",
- "start_date"
- ],
- "moreFields": [
- "{power/plant}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant",
- "plant:source": "hydro"
- },
- "addTags": {
- "power": "plant",
- "plant:source": "hydro",
- "plant:output:electricity": "*"
- },
- "reference": {
- "key": "plant:source",
- "value": "hydro"
- }
- },
- "power/plant/source/method/photovoltaic": {
- "icon": "fas-solar-panel",
- "fields": [
- "name",
- "operator",
- "plant/method/solar",
- "plant/output/electricity",
- "address",
- "start_date"
- ],
- "moreFields": [
- "{power/plant}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant",
- "plant:source": "solar",
- "plant:method": "photovoltaic"
- },
- "addTags": {
- "power": "plant",
- "plant:source": "solar",
- "plant:method": "photovoltaic",
- "plant:output:electricity": "*"
- },
- "removeTags": {
- "power": "plant",
- "plant:method": "*",
- "plant:source": "solar",
- "plant:output:electricity": "*",
- "landuse": "industrial"
- },
- "reference": {
- "key": "plant:method",
- "value": "photovoltaic"
- }
- },
- "power/plant/source/nuclear": {
- "icon": "temaki-radiation",
- "fields": [
- "{power/plant}"
- ],
- "moreFields": [
- "{power/plant}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant",
- "plant:source": "nuclear"
- },
- "addTags": {
- "power": "plant",
- "landuse": "industrial",
- "plant:source": "nuclear",
- "plant:method": "fission",
- "plant:output:electricity": "*"
- },
- "reference": {
- "key": "plant:source",
- "value": "nuclear"
- }
- },
- "power/plant/source/oil": {
- "icon": "fas-tint",
- "fields": [
- "name",
- "operator",
- "plant/output",
- "plant/output/electricity",
- "address",
- "start_date"
- ],
- "moreFields": [
- "{power/plant}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant",
- "plant:source": "oil"
- },
- "addTags": {
- "power": "plant",
- "landuse": "industrial",
- "plant:source": "oil",
- "plant:method": "combustion",
- "plant:output:electricity": "*"
- },
- "reference": {
- "key": "plant:source",
- "value": "oil"
- }
- },
- "power/plant/source/solar": {
- "icon": "fas-solar-panel",
- "fields": [
- "name",
- "operator",
- "plant/method/solar",
- "plant/output",
- "plant/output/electricity",
- "address",
- "start_date"
- ],
- "moreFields": [
- "{power/plant}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant",
- "plant:source": "solar"
- },
- "addTags": {
- "power": "plant",
- "plant:source": "solar"
- },
- "removeTags": {
- "power": "plant",
- "plant:source": "solar",
- "plant:method": "*",
- "plant:output:electricity": "*",
- "landuse": "industrial"
- },
- "reference": {
- "key": "plant:source",
- "value": "solar"
- }
- },
- "power/plant/source/waste": {
- "icon": "fas-dumpster-fire",
- "fields": [
- "name",
- "operator",
- "plant/method/waste",
- "plant/output",
- "plant/output/electricity",
- "address",
- "start_date"
- ],
- "moreFields": [
- "{power/plant}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant",
- "plant:source": "waste"
- },
- "addTags": {
- "power": "plant",
- "landuse": "industrial",
- "plant:source": "waste",
- "plant:method": "combustion",
- "plant:output:electricity": "*"
- },
- "reference": {
- "key": "plant:source",
- "value": "waste"
- }
- },
- "power/plant/source/wind": {
- "icon": "temaki-wind_turbine",
- "fields": [
- "name",
- "operator",
- "plant/output/electricity",
- "address",
- "start_date"
- ],
- "moreFields": [
- "{power/plant}"
- ],
- "geometry": [
- "area"
- ],
- "tags": {
- "power": "plant",
- "plant:source": "wind"
- },
- "addTags": {
- "power": "plant",
- "plant:source": "wind",
- "plant:method": "wind_turbine",
- "plant:output:electricity": "*"
- },
- "removeTags": {
- "power": "plant",
- "plant:method": "*",
- "plant:source": "wind",
- "plant:output:electricity": "*",
- "landuse": "industrial"
- },
- "reference": {
- "key": "plant:source",
- "value": "wind"
- }
- },
- "power/pole": {
- "icon": "temaki-power_pole",
- "fields": [
- "ref",
- "operator",
- "height",
- "material",
- "line_attachment"
- ],
- "moreFields": [
- "line_management",
- "manufacturer"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "power": "pole"
- }
- },
- "power/portal": {
- "icon": "temaki-power",
- "fields": [
- "ref",
- "operator",
- "structure_power",
- "material"
- ],
- "moreFields": [
- "colour",
- "design",
- "height",
- "line_management",
- "manufacturer"
- ],
- "geometry": [
- "vertex",
- "line"
- ],
- "tags": {
- "power": "portal"
- }
- },
- "power/substation": {
- "icon": "temaki-power",
- "fields": [
- "name",
- "substation",
- "operator",
- "building",
- "voltage",
- "ref"
- ],
- "moreFields": [
- "address",
- "gnis/feature_id-US"
- ],
- "geometry": [
- "area",
- "point"
- ],
- "tags": {
- "power": "substation"
- }
- },
- "power/switch": {
- "icon": "temaki-power_switch",
- "fields": [
- "switch",
- "operator",
- "location",
- "cables",
- "voltage",
- "ref"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "power": "switch"
- }
- },
- "power/tower": {
- "icon": "temaki-power_tower",
- "fields": [
- "ref",
- "operator",
- "design",
- "height",
- "material",
- "line_attachment",
- "structure_power"
- ],
- "moreFields": [
- "line_management",
- "manufacturer"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "power": "tower"
- },
- "matchScore": 1.05
- },
- "power/transformer": {
- "icon": "temaki-power_transformer",
- "fields": [
- "ref",
- "operator",
- "transformer",
- "location",
- "rating",
- "devices",
- "phases"
- ],
- "moreFields": [
- "frequency",
- "manufacturer",
- "voltage/primary",
- "voltage/secondary",
- "voltage/tertiary",
- "windings",
- "windings/configuration",
- "windings/auto"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "power": "transformer"
- }
+ "matchScore": 0.2
},
"public_transport/platform_point": {
"icon": "temaki-sign_and_bench",
@@ -21289,155 +6882,8 @@
},
"matchScore": 0.6
},
- "public_transport/platform/aerialway_point": {
- "icon": "temaki-gondola_lift",
- "fields": [
- "{public_transport/platform_point}"
- ],
- "moreFields": [
- "{public_transport/platform_point}"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "public_transport": "platform",
- "aerialway": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "searchable": false
- },
- "public_transport/platform/ferry_point": {
- "icon": "temaki-ferry",
- "fields": [
- "{public_transport/platform_point}"
- ],
- "moreFields": [
- "{public_transport/platform_point}"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "public_transport": "platform",
- "ferry": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- },
- "searchable": false
- },
- "public_transport/platform/light_rail_point": {
- "icon": "temaki-light_rail",
- "fields": [
- "{public_transport/platform_point}"
- ],
- "moreFields": [
- "{public_transport/platform_point}"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "public_transport": "platform",
- "light_rail": "yes"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "searchable": false
- },
- "public_transport/platform/monorail_point": {
- "icon": "temaki-monorail",
- "fields": [
- "{public_transport/platform_point}"
- ],
- "moreFields": [
- "{public_transport/platform_point}"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "public_transport": "platform",
- "monorail": "yes"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "searchable": false
- },
- "public_transport/platform/subway_point": {
- "icon": "temaki-subway",
- "fields": [
- "{public_transport/platform_point}"
- ],
- "moreFields": [
- "{public_transport/platform_point}"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "public_transport": "platform",
- "subway": "yes"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "searchable": false
- },
- "public_transport/platform/train_point": {
- "icon": "temaki-train",
- "fields": [
- "{public_transport/platform_point}"
- ],
- "moreFields": [
- "{public_transport/platform_point}"
- ],
- "geometry": [
- "point"
- ],
- "tags": {
- "public_transport": "platform",
- "train": "yes"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- },
- "searchable": false
- },
- "public_transport/platform/aerialway": {
- "icon": "temaki-board_gondola_lift",
- "fields": [
- "{public_transport/platform}"
- ],
- "moreFields": [
- "{public_transport/platform}"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "aerialway": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- }
- },
- "public_transport/platform/bus_point": {
- "icon": "temaki-bus",
+ "public_transport/platform/trolleybus_point": {
+ "icon": "temaki-trolleybus",
"fields": [
"{public_transport/platform_point}"
],
@@ -21450,11 +6896,11 @@
],
"tags": {
"public_transport": "platform",
- "bus": "yes"
+ "trolleybus": "yes"
},
"addTags": {
"public_transport": "platform",
- "bus": "yes",
+ "trolleybus": "yes",
"highway": "bus_stop"
},
"reference": {
@@ -21462,180 +6908,27 @@
"value": "platform"
}
},
- "public_transport/platform/bus_tram_point": {
- "icon": "temaki-tram",
+ "public_transport/platform/trolleybus": {
+ "icon": "temaki-board_trolleybus",
"fields": [
- "{public_transport/platform_point}"
+ "{public_transport/platform}"
],
"moreFields": [
- "{public_transport/platform_point}"
+ "{public_transport/platform}"
],
"geometry": [
- "point",
- "vertex"
+ "line",
+ "area"
],
"tags": {
"public_transport": "platform",
- "bus": "yes",
- "tram": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "bus": "yes",
- "tram": "yes",
- "highway": "bus_stop"
+ "trolleybus": "yes"
},
"reference": {
"key": "public_transport",
"value": "platform"
}
},
- "public_transport/platform/bus": {
- "icon": "temaki-board_bus",
- "fields": [
- "{public_transport/platform}"
- ],
- "moreFields": [
- "{public_transport/platform}"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "bus": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- }
- },
- "public_transport/platform/ferry": {
- "icon": "temaki-board_ferry",
- "fields": [
- "{public_transport/platform}"
- ],
- "moreFields": [
- "{public_transport/platform}"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "ferry": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- }
- },
- "public_transport/platform/light_rail": {
- "icon": "temaki-board_light_rail",
- "fields": [
- "{public_transport/platform}"
- ],
- "moreFields": [
- "{public_transport/platform}"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "light_rail": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "light_rail": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- }
- },
- "public_transport/platform/monorail": {
- "icon": "temaki-board_monorail",
- "fields": [
- "{public_transport/platform}"
- ],
- "moreFields": [
- "{public_transport/platform}"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "monorail": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "monorail": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- }
- },
- "public_transport/platform/subway": {
- "icon": "temaki-board_subway",
- "fields": [
- "{public_transport/platform}"
- ],
- "moreFields": [
- "{public_transport/platform}"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "subway": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "subway": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- }
- },
- "public_transport/platform/train": {
- "icon": "temaki-board_train",
- "fields": [
- "{public_transport/platform}"
- ],
- "moreFields": [
- "{public_transport/platform}"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "train": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "train": "yes",
- "railway": "platform"
- },
- "reference": {
- "key": "railway",
- "value": "platform"
- }
- },
"public_transport/platform/tram_point": {
"icon": "temaki-tram",
"fields": [
@@ -21682,596 +6975,7 @@
"value": "platform"
}
},
- "public_transport/platform/trolleybus_point": {
- "icon": "temaki-trolleybus",
- "fields": [
- "{public_transport/platform_point}"
- ],
- "moreFields": [
- "{public_transport/platform_point}"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "public_transport": "platform",
- "trolleybus": "yes"
- },
- "addTags": {
- "public_transport": "platform",
- "trolleybus": "yes",
- "highway": "bus_stop"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- }
- },
- "public_transport/platform/trolleybus": {
- "icon": "temaki-board_trolleybus",
- "fields": [
- "{public_transport/platform}"
- ],
- "moreFields": [
- "{public_transport/platform}"
- ],
- "geometry": [
- "line",
- "area"
- ],
- "tags": {
- "public_transport": "platform",
- "trolleybus": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "platform"
- }
- },
- "public_transport/station_aerialway": {
- "icon": "temaki-gondola_lift",
- "fields": [
- "{public_transport/station}",
- "aerialway/access",
- "aerialway/summer/access"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "aerialway": "station"
- },
- "addTags": {
- "public_transport": "station",
- "aerialway": "station"
- },
- "reference": {
- "key": "aerialway",
- "value": "station"
- }
- },
- "public_transport/station_bus": {
- "icon": "temaki-bus",
- "fields": [
- "{public_transport/station}"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "bus": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "bus": "yes",
- "amenity": "bus_station"
- },
- "reference": {
- "key": "amenity",
- "value": "bus_station"
- }
- },
- "public_transport/station_ferry": {
- "icon": "temaki-ferry",
- "fields": [
- "{public_transport/station}"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "vertex",
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "ferry": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "ferry": "yes",
- "amenity": "ferry_terminal"
- },
- "reference": {
- "key": "amenity",
- "value": "ferry_terminal"
- }
- },
- "public_transport/station_light_rail": {
- "icon": "temaki-light_rail",
- "fields": [
- "{public_transport/station}"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "light_rail": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "light_rail": "yes",
- "railway": "station",
- "station": "light_rail"
- },
- "reference": {
- "key": "station",
- "value": "light_rail"
- }
- },
- "public_transport/station_monorail": {
- "icon": "temaki-monorail",
- "fields": [
- "{public_transport/station}"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "monorail": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "monorail": "yes",
- "railway": "station"
- },
- "reference": {
- "key": "railway",
- "value": "station"
- }
- },
- "public_transport/station_subway": {
- "icon": "temaki-subway",
- "fields": [
- "{public_transport/station}"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "subway": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "subway": "yes",
- "railway": "station",
- "station": "subway"
- },
- "reference": {
- "key": "station",
- "value": "subway"
- }
- },
- "public_transport/station_train_halt": {
- "icon": "temaki-rail_flag",
- "fields": [
- "{public_transport/station}"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "train": "yes",
- "railway": "halt"
- },
- "reference": {
- "key": "railway",
- "value": "halt"
- }
- },
- "public_transport/station_train": {
- "icon": "temaki-train",
- "fields": [
- "{public_transport/station}"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "vertex",
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "train": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "train": "yes",
- "railway": "station"
- },
- "reference": {
- "key": "railway",
- "value": "station"
- }
- },
- "public_transport/station_tram": {
- "icon": "temaki-tram",
- "fields": [
- "{public_transport/station}"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "tram": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "station"
- }
- },
- "public_transport/station_trolleybus": {
- "icon": "temaki-trolleybus",
- "fields": [
- "{public_transport/station}"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station",
- "trolleybus": "yes"
- },
- "addTags": {
- "public_transport": "station",
- "trolleybus": "yes",
- "amenity": "bus_station"
- },
- "reference": {
- "key": "amenity",
- "value": "bus_station"
- }
- },
- "public_transport/station": {
- "icon": "temaki-transit",
- "fields": [
- "name",
- "network",
- "operator",
- "vehicles",
- "address",
- "building_area",
- "internet_access"
- ],
- "moreFields": [
- "air_conditioning",
- "baby_feeding",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "phone",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "public_transport": "station"
- },
- "matchScore": 0.2
- },
- "public_transport/stop_area": {
- "icon": "iD-relation",
- "fields": [
- "name",
- "ref",
- "network",
- "operator"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "public_transport",
- "public_transport": "stop_area"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_area"
- }
- },
- "public_transport/stop_position_aerialway": {
- "icon": "temaki-gondola_lift",
- "fields": [
- "{public_transport/stop_position}"
- ],
- "moreFields": [
- "{public_transport/stop_position}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "aerialway": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_position"
- }
- },
- "public_transport/stop_position_bus": {
- "icon": "temaki-bus",
- "fields": [
- "{public_transport/stop_position}"
- ],
- "moreFields": [
- "{public_transport/stop_position}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "bus": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_position"
- }
- },
- "public_transport/stop_position_ferry": {
- "icon": "temaki-ferry",
- "fields": [
- "{public_transport/stop_position}"
- ],
- "moreFields": [
- "{public_transport/stop_position}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "ferry": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_position"
- }
- },
- "public_transport/stop_position_light_rail": {
- "icon": "temaki-light_rail",
- "fields": [
- "{public_transport/stop_position}"
- ],
- "moreFields": [
- "{public_transport/stop_position}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "light_rail": "yes"
- },
- "addTags": {
- "public_transport": "stop_position",
- "light_rail": "yes",
- "railway": "stop"
- },
- "reference": {
- "key": "railway",
- "value": "stop"
- }
- },
- "public_transport/stop_position_monorail": {
- "icon": "temaki-monorail",
- "fields": [
- "{public_transport/stop_position}"
- ],
- "moreFields": [
- "{public_transport/stop_position}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "monorail": "yes"
- },
- "addTags": {
- "public_transport": "stop_position",
- "monorail": "yes",
- "railway": "stop"
- },
- "reference": {
- "key": "railway",
- "value": "stop"
- }
- },
- "public_transport/stop_position_subway": {
- "icon": "temaki-subway",
- "fields": [
- "{public_transport/stop_position}"
- ],
- "moreFields": [
- "{public_transport/stop_position}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "subway": "yes"
- },
- "addTags": {
- "public_transport": "stop_position",
- "subway": "yes",
- "railway": "stop"
- },
- "reference": {
- "key": "railway",
- "value": "stop"
- }
- },
- "public_transport/stop_position_train": {
- "icon": "temaki-train",
- "fields": [
- "{public_transport/stop_position}"
- ],
- "moreFields": [
- "{public_transport/stop_position}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "train": "yes"
- },
- "addTags": {
- "public_transport": "stop_position",
- "train": "yes",
- "railway": "stop"
- },
- "reference": {
- "key": "railway",
- "value": "stop"
- }
- },
- "public_transport/stop_position_tram": {
- "icon": "temaki-tram",
- "fields": [
- "{public_transport/stop_position}"
- ],
- "moreFields": [
- "{public_transport/stop_position}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "tram": "yes"
- },
- "addTags": {
- "public_transport": "stop_position",
- "tram": "yes",
- "railway": "tram_stop"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_position"
- }
- },
- "public_transport/stop_position_trolleybus": {
- "icon": "temaki-trolleybus",
- "fields": [
- "{public_transport/stop_position}"
- ],
- "moreFields": [
- "{public_transport/stop_position}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position",
- "trolleybus": "yes"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_position"
- }
- },
- "public_transport/stop_position": {
- "icon": "temaki-transit",
- "fields": [
- "name",
- "ref_stop_position",
- "network",
- "operator",
- "vehicles"
- ],
- "moreFields": [],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "public_transport": "stop_position"
- },
- "matchScore": 0.2
- },
- "railway/halt": {
- "icon": "temaki-rail_flag",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "railway": "halt"
- },
- "searchable": false
- },
- "railway/platform": {
+ "public_transport/platform/train": {
"icon": "temaki-board_train",
"fields": [
"{public_transport/platform}"
@@ -22284,2949 +6988,3760 @@
"area"
],
"tags": {
- "railway": "platform"
- },
- "searchable": false
- },
- "railway/station": {
- "icon": "temaki-train",
- "fields": [
- "{public_transport/station}"
- ],
- "moreFields": [
- "{public_transport/station}"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "railway": "station"
- },
- "matchScore": 0.95,
- "searchable": false
- },
- "railway/tram_stop": {
- "icon": "temaki-tram",
- "fields": [
- "{public_transport/stop_position}"
- ],
- "moreFields": [
- "{public_transport/stop_position}"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "tram_stop"
- },
- "searchable": false
- },
- "railway/abandoned": {
- "icon": "temaki-railway_track_askew",
- "fields": [
- "name",
- "structure",
- "service_rail",
- "usage_rail"
- ],
- "moreFields": [
- "covered_no",
- "incline"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "abandoned"
- },
- "matchScore": 0.85
- },
- "railway/buffer_stop": {
- "icon": "temaki-buffer_stop",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "buffer_stop"
- }
- },
- "railway/construction": {
- "icon": "temaki-railway_track_partial",
- "fields": [
- "name",
- "opening_date",
- "check_date",
- "note",
- "structure",
- "gauge",
- "electrified"
- ],
- "moreFields": [
- "covered_no",
- "frequency_electrified",
- "highspeed",
- "incline",
- "maxspeed",
- "service_rail",
- "usage_rail",
- "voltage_electrified"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "construction"
- },
- "matchScore": 0.95
- },
- "railway/crossing": {
- "icon": "temaki-pedestrian",
- "fields": [
- "crossing",
- "crossing/barrier",
- "crossing/bell",
- "crossing/light"
- ],
- "moreFields": [
- "crossing/markings"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "crossing"
- }
- },
- "railway/derail": {
- "icon": "maki-roadblock",
- "geometry": [
- "vertex"
- ],
- "fields": [
- "direction_vertex"
- ],
- "tags": {
- "railway": "derail"
- }
- },
- "railway/disused": {
- "icon": "temaki-railway_track",
- "fields": [
- "{railway/light_rail}"
- ],
- "moreFields": [
- "{railway/light_rail}",
- "highspeed"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "disused"
- },
- "matchScore": 0.95
- },
- "railway/funicular": {
- "icon": "temaki-railway_cable_track",
- "fields": [
- "name",
- "operator",
- "incline",
- "structure",
- "gauge",
- "service_rail"
- ],
- "moreFields": [
- "covered_no",
- "electrified",
- "frequency_electrified",
- "maxspeed",
- "voltage_electrified"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "funicular"
- }
- },
- "railway/level_crossing": {
- "icon": "maki-cross",
- "fields": [
- "crossing/barrier",
- "crossing/bell",
- "crossing/light"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "level_crossing"
- }
- },
- "railway/light_rail": {
- "icon": "temaki-light_rail",
- "fields": [
- "name",
- "operator",
- "structure",
- "gauge",
- "electrified",
- "service_rail",
- "usage_rail"
- ],
- "moreFields": [
- "covered_no",
- "frequency_electrified",
- "incline",
- "maxspeed",
- "voltage_electrified"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "light_rail"
- }
- },
- "railway/milestone": {
- "icon": "temaki-milestone",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "railway/position",
- "direction_vertex"
- ],
- "moreFields": [
- "ref"
- ],
- "tags": {
- "railway": "milestone"
- }
- },
- "railway/miniature": {
- "icon": "temaki-railway_track_mini",
- "fields": [
- "{railway/light_rail}"
- ],
- "moreFields": [
- "{railway/light_rail}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "miniature"
- }
- },
- "railway/monorail": {
- "icon": "temaki-monorail",
- "fields": [
- "{railway/light_rail}"
- ],
- "moreFields": [
- "{railway/light_rail}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "monorail"
- }
- },
- "railway/monorail/hanging": {
- "icon": "temaki-hanging_rail",
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "monorail",
- "monorail": "hanging"
- },
- "reference": {
- "key": "monorail",
- "value": "hanging"
- }
- },
- "railway/narrow_gauge": {
- "icon": "temaki-railway_track_narrow",
- "fields": [
- "{railway/light_rail}"
- ],
- "moreFields": [
- "{railway/light_rail}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "narrow_gauge"
- }
- },
- "railway/preserved": {
- "icon": "temaki-train_steam",
- "fields": [
- "railway",
- "{railway/light_rail}"
- ],
- "moreFields": [
- "{railway/light_rail}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "*",
- "railway:preserved": "yes"
+ "public_transport": "platform",
+ "train": "yes"
},
"addTags": {
- "railway": "rail",
- "railway:preserved": "yes"
+ "public_transport": "platform",
+ "train": "yes",
+ "railway": "platform"
},
"reference": {
- "key": "railway:preserved"
+ "key": "railway",
+ "value": "platform"
}
},
- "railway/rail": {
- "icon": "temaki-railway_track",
+ "public_transport/platform/subway": {
+ "icon": "temaki-board_subway",
"fields": [
- "{railway/light_rail}"
+ "{public_transport/platform}"
],
"moreFields": [
- "{railway/light_rail}",
- "highspeed"
+ "{public_transport/platform}"
],
"geometry": [
- "line"
- ],
- "tags": {
- "railway": "rail"
- }
- },
- "railway/rail/highspeed": {
- "icon": "temaki-train_bullet",
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "rail",
- "highspeed": "yes"
- },
- "reference": {
- "key": "highspeed"
- }
- },
- "railway/railway_crossing": {
- "icon": "temaki-x_oblique",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "railway_crossing"
- }
- },
- "railway/signal": {
- "icon": "temaki-railway_signals",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "railway/position",
- "railway/signal/direction",
- "ref"
- ],
- "tags": {
- "railway": "signal"
- }
- },
- "railway/subway_entrance": {
- "icon": "maki-entrance",
- "geometry": [
- "point",
- "vertex"
- ],
- "fields": [
- "name",
- "level",
- "wheelchair",
- "ref"
- ],
- "tags": {
- "railway": "subway_entrance"
- }
- },
- "railway/subway": {
- "icon": "temaki-subway",
- "fields": [
- "{railway/light_rail}"
- ],
- "moreFields": [
- "{railway/light_rail}"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "railway": "subway"
- }
- },
- "railway/switch": {
- "icon": "temaki-junction",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "switch"
- }
- },
- "railway/train_wash": {
- "icon": "temaki-train_wash",
- "geometry": [
- "point",
- "vertex",
+ "line",
"area"
],
+ "tags": {
+ "public_transport": "platform",
+ "subway": "yes"
+ },
+ "addTags": {
+ "public_transport": "platform",
+ "subway": "yes",
+ "railway": "platform"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "platform"
+ }
+ },
+ "public_transport/platform/monorail": {
+ "icon": "temaki-board_monorail",
"fields": [
- "operator",
- "building_area_yes"
- ],
- "tags": {
- "railway": "wash"
- }
- },
- "railway/tram_crossing": {
- "icon": "temaki-crossing_tram_striped",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "tram_crossing"
- }
- },
- "railway/tram_level_crossing": {
- "icon": "temaki-crossing_tram_solid",
- "geometry": [
- "vertex"
- ],
- "tags": {
- "railway": "tram_level_crossing"
- }
- },
- "railway/tram": {
- "icon": "temaki-tram",
- "fields": [
- "{railway/light_rail}",
- "oneway"
+ "{public_transport/platform}"
],
"moreFields": [
- "{railway/light_rail}"
+ "{public_transport/platform}"
],
"geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "monorail": "yes"
+ },
+ "addTags": {
+ "public_transport": "platform",
+ "monorail": "yes",
+ "railway": "platform"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "platform"
+ }
+ },
+ "public_transport/platform/light_rail": {
+ "icon": "temaki-board_light_rail",
+ "fields": [
+ "{public_transport/platform}"
+ ],
+ "moreFields": [
+ "{public_transport/platform}"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "light_rail": "yes"
+ },
+ "addTags": {
+ "public_transport": "platform",
+ "light_rail": "yes",
+ "railway": "platform"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "platform"
+ }
+ },
+ "public_transport/platform/ferry": {
+ "icon": "temaki-board_ferry",
+ "fields": [
+ "{public_transport/platform}"
+ ],
+ "moreFields": [
+ "{public_transport/platform}"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "ferry": "yes"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "platform"
+ }
+ },
+ "public_transport/platform/bus_tram_point": {
+ "icon": "temaki-tram",
+ "fields": [
+ "{public_transport/platform_point}"
+ ],
+ "moreFields": [
+ "{public_transport/platform_point}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "bus": "yes",
+ "tram": "yes"
+ },
+ "addTags": {
+ "public_transport": "platform",
+ "bus": "yes",
+ "tram": "yes",
+ "highway": "bus_stop"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "platform"
+ }
+ },
+ "public_transport/platform/bus_point": {
+ "icon": "temaki-bus",
+ "fields": [
+ "{public_transport/platform_point}"
+ ],
+ "moreFields": [
+ "{public_transport/platform_point}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "bus": "yes"
+ },
+ "addTags": {
+ "public_transport": "platform",
+ "bus": "yes",
+ "highway": "bus_stop"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "platform"
+ }
+ },
+ "public_transport/platform/bus": {
+ "icon": "temaki-board_bus",
+ "fields": [
+ "{public_transport/platform}"
+ ],
+ "moreFields": [
+ "{public_transport/platform}"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "bus": "yes"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "platform"
+ }
+ },
+ "public_transport/platform/aerialway": {
+ "icon": "temaki-board_gondola_lift",
+ "fields": [
+ "{public_transport/platform}"
+ ],
+ "moreFields": [
+ "{public_transport/platform}"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "aerialway": "yes"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "platform"
+ }
+ },
+ "public_transport/platform/train_point": {
+ "icon": "temaki-train",
+ "fields": [
+ "{public_transport/platform_point}"
+ ],
+ "moreFields": [
+ "{public_transport/platform_point}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "train": "yes"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "platform"
+ },
+ "searchable": false
+ },
+ "public_transport/platform/subway_point": {
+ "icon": "temaki-subway",
+ "fields": [
+ "{public_transport/platform_point}"
+ ],
+ "moreFields": [
+ "{public_transport/platform_point}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "subway": "yes"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "platform"
+ },
+ "searchable": false
+ },
+ "public_transport/platform/monorail_point": {
+ "icon": "temaki-monorail",
+ "fields": [
+ "{public_transport/platform_point}"
+ ],
+ "moreFields": [
+ "{public_transport/platform_point}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "monorail": "yes"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "platform"
+ },
+ "searchable": false
+ },
+ "public_transport/platform/light_rail_point": {
+ "icon": "temaki-light_rail",
+ "fields": [
+ "{public_transport/platform_point}"
+ ],
+ "moreFields": [
+ "{public_transport/platform_point}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "light_rail": "yes"
+ },
+ "reference": {
+ "key": "railway",
+ "value": "platform"
+ },
+ "searchable": false
+ },
+ "public_transport/platform/ferry_point": {
+ "icon": "temaki-ferry",
+ "fields": [
+ "{public_transport/platform_point}"
+ ],
+ "moreFields": [
+ "{public_transport/platform_point}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "ferry": "yes"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "platform"
+ },
+ "searchable": false
+ },
+ "public_transport/platform/aerialway_point": {
+ "icon": "temaki-gondola_lift",
+ "fields": [
+ "{public_transport/platform_point}"
+ ],
+ "moreFields": [
+ "{public_transport/platform_point}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "public_transport": "platform",
+ "aerialway": "yes"
+ },
+ "reference": {
+ "key": "public_transport",
+ "value": "platform"
+ },
+ "searchable": false
+ },
+ "power/transformer": {
+ "icon": "temaki-power_transformer",
+ "fields": [
+ "ref",
+ "operator",
+ "transformer",
+ "location",
+ "rating",
+ "devices",
+ "phases"
+ ],
+ "moreFields": [
+ "frequency",
+ "manufacturer",
+ "voltage/primary",
+ "voltage/secondary",
+ "voltage/tertiary",
+ "windings",
+ "windings/configuration",
+ "windings/auto"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "power": "transformer"
+ }
+ },
+ "power/tower": {
+ "icon": "temaki-power_tower",
+ "fields": [
+ "ref",
+ "operator",
+ "structure_power",
+ "design_power_tower",
+ "height",
+ "material",
+ "line_attachment"
+ ],
+ "moreFields": [
+ "line_management",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "power": "tower"
+ },
+ "matchScore": 1.05
+ },
+ "power/switchgear": {
+ "icon": "temaki-power_switch",
+ "fields": [
+ "voltage",
+ "location"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "switchgear"
+ }
+ },
+ "power/switch": {
+ "icon": "temaki-power_switch",
+ "fields": [
+ "switch",
+ "operator",
+ "location",
+ "cables",
+ "voltage",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "power": "switch"
+ }
+ },
+ "power/substation": {
+ "icon": "temaki-power",
+ "fields": [
+ "name",
+ "substation",
+ "operator",
+ "building",
+ "voltage",
+ "ref"
+ ],
+ "moreFields": [
+ "address",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "power": "substation"
+ }
+ },
+ "power/portal": {
+ "icon": "temaki-power",
+ "fields": [
+ "ref",
+ "operator",
+ "structure_power",
+ "material"
+ ],
+ "moreFields": [
+ "colour",
+ "design_power_tower",
+ "height",
+ "line_management",
+ "manufacturer"
+ ],
+ "geometry": [
+ "vertex",
"line"
],
"tags": {
- "railway": "tram"
+ "power": "portal"
}
},
- "railway/yard": {
- "icon": "temaki-freight_car",
+ "power/pole": {
+ "icon": "temaki-power_pole",
+ "fields": [
+ "ref",
+ "operator",
+ "design_power_pole",
+ "height",
+ "material",
+ "line_attachment"
+ ],
+ "moreFields": [
+ "line_management",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "power": "pole"
+ }
+ },
+ "power/plant": {
+ "icon": "maki-industry",
"fields": [
"name",
- "operator"
+ "operator",
+ "plant/source",
+ "plant/method",
+ "plant/output",
+ "plant/output/electricity",
+ "address",
+ "start_date"
],
"moreFields": [
"gnis/feature_id-US"
],
"geometry": [
- "point"
+ "area"
],
"tags": {
- "railway": "yard"
+ "power": "plant"
+ },
+ "addTags": {
+ "power": "plant",
+ "landuse": "industrial"
}
},
- "relation": {
- "icon": "iD-relation",
+ "power/minor_line": {
+ "icon": "iD-power-line",
"fields": [
"name",
- "relation"
+ "operator",
+ "voltage",
+ "cables",
+ "ref",
+ "layer"
],
- "geometry": [
- "relation"
- ],
- "tags": {}
- },
- "route/ferry": {
- "icon": "temaki-ferry",
"geometry": [
"line"
],
+ "tags": {
+ "power": "minor_line"
+ }
+ },
+ "power/line": {
+ "icon": "temaki-power_tower",
"fields": [
"name",
"operator",
- "duration",
- "access",
- "toll",
- "from",
- "to"
+ "voltage",
+ "cables",
+ "ref",
+ "layer"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "power": "line"
+ }
+ },
+ "power/generator": {
+ "icon": "temaki-power",
+ "fields": [
+ "ref",
+ "operator",
+ "generator/source",
+ "generator/method",
+ "generator/type",
+ "generator/output/electricity"
],
"moreFields": [
- "charge_toll",
- "distance",
- "dog",
- "email",
- "interval",
- "maxheight",
- "maxweight",
- "maxwidth",
- "network",
- "oneway",
- "opening_hours",
- "opening_hours/covid19",
- "phone",
- "ref_route",
- "reservation",
- "roundtrip",
- "vhf",
- "wheelchair"
+ "colour",
+ "height",
+ "level",
+ "manufacturer",
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
],
"tags": {
- "route": "ferry"
+ "power": "generator"
}
},
- "seamark/beacon_isolated_danger": {
+ "power/catenary_mast": {
+ "icon": "temaki-power_pole",
+ "fields": [
+ "ref",
+ "operator"
+ ],
+ "moreFields": [
+ "height",
+ "line_attachment",
+ "line_management",
+ "manufacturer",
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "power": "catenary_mast"
+ }
+ },
+ "power/cable": {
+ "icon": "temaki-cable",
+ "fields": [
+ "name",
+ "ref",
+ "operator",
+ "voltage",
+ "location",
+ "layer"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "power": "cable"
+ },
+ "searchable": false
+ },
+ "power/plant/source/wind": {
+ "icon": "temaki-wind_turbine",
+ "fields": [
+ "name",
+ "operator",
+ "plant/output/electricity",
+ "address",
+ "start_date"
+ ],
+ "moreFields": [
+ "{power/plant}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "plant",
+ "plant:source": "wind"
+ },
+ "addTags": {
+ "power": "plant",
+ "plant:source": "wind",
+ "plant:method": "wind_turbine",
+ "plant:output:electricity": "*"
+ },
+ "removeTags": {
+ "power": "plant",
+ "plant:method": "*",
+ "plant:source": "wind",
+ "plant:output:electricity": "*",
+ "landuse": "industrial"
+ },
+ "reference": {
+ "key": "plant:source",
+ "value": "wind"
+ }
+ },
+ "power/plant/source/waste": {
+ "icon": "fas-dumpster-fire",
+ "fields": [
+ "name",
+ "operator",
+ "plant/method/waste",
+ "plant/output",
+ "plant/output/electricity",
+ "address",
+ "start_date"
+ ],
+ "moreFields": [
+ "{power/plant}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "plant",
+ "plant:source": "waste"
+ },
+ "addTags": {
+ "power": "plant",
+ "landuse": "industrial",
+ "plant:source": "waste",
+ "plant:method": "combustion",
+ "plant:output:electricity": "*"
+ },
+ "reference": {
+ "key": "plant:source",
+ "value": "waste"
+ }
+ },
+ "power/plant/source/solar": {
+ "icon": "fas-solar-panel",
+ "fields": [
+ "name",
+ "operator",
+ "plant/method/solar",
+ "plant/output",
+ "plant/output/electricity",
+ "address",
+ "start_date"
+ ],
+ "moreFields": [
+ "{power/plant}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "plant",
+ "plant:source": "solar"
+ },
+ "addTags": {
+ "power": "plant",
+ "plant:source": "solar"
+ },
+ "removeTags": {
+ "power": "plant",
+ "plant:source": "solar",
+ "plant:method": "*",
+ "plant:output:electricity": "*",
+ "landuse": "industrial"
+ },
+ "reference": {
+ "key": "plant:source",
+ "value": "solar"
+ }
+ },
+ "power/plant/source/oil": {
+ "icon": "fas-tint",
+ "fields": [
+ "name",
+ "operator",
+ "plant/output",
+ "plant/output/electricity",
+ "address",
+ "start_date"
+ ],
+ "moreFields": [
+ "{power/plant}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "plant",
+ "plant:source": "oil"
+ },
+ "addTags": {
+ "power": "plant",
+ "landuse": "industrial",
+ "plant:source": "oil",
+ "plant:method": "combustion",
+ "plant:output:electricity": "*"
+ },
+ "reference": {
+ "key": "plant:source",
+ "value": "oil"
+ }
+ },
+ "power/plant/source/nuclear": {
+ "icon": "temaki-radiation",
+ "fields": [
+ "{power/plant}"
+ ],
+ "moreFields": [
+ "{power/plant}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "plant",
+ "plant:source": "nuclear"
+ },
+ "addTags": {
+ "power": "plant",
+ "landuse": "industrial",
+ "plant:source": "nuclear",
+ "plant:method": "fission",
+ "plant:output:electricity": "*"
+ },
+ "reference": {
+ "key": "plant:source",
+ "value": "nuclear"
+ }
+ },
+ "power/plant/source/hydro": {
+ "icon": "maki-dam",
+ "fields": [
+ "name",
+ "operator",
+ "plant/source",
+ "plant/method/hydro",
+ "plant/output/electricity",
+ "address",
+ "start_date"
+ ],
+ "moreFields": [
+ "{power/plant}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "plant",
+ "plant:source": "hydro"
+ },
+ "addTags": {
+ "power": "plant",
+ "plant:source": "hydro",
+ "plant:output:electricity": "*"
+ },
+ "reference": {
+ "key": "plant:source",
+ "value": "hydro"
+ }
+ },
+ "power/plant/source/gas": {
+ "icon": "temaki-gas",
+ "fields": [
+ "name",
+ "operator",
+ "plant/output",
+ "plant/output/electricity",
+ "address",
+ "start_date"
+ ],
+ "moreFields": [
+ "{power/plant}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "plant",
+ "plant:source": "gas"
+ },
+ "addTags": {
+ "power": "plant",
+ "landuse": "industrial",
+ "plant:source": "gas",
+ "plant:method": "combustion",
+ "plant:output:electricity": "*"
+ },
+ "reference": {
+ "key": "plant:source",
+ "value": "gas"
+ }
+ },
+ "power/plant/source/coal": {
+ "icon": "maki-industry",
+ "fields": [
+ "name",
+ "operator",
+ "plant/output",
+ "plant/output/electricity",
+ "address",
+ "start_date"
+ ],
+ "moreFields": [
+ "{power/plant}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "plant",
+ "plant:source": "coal"
+ },
+ "addTags": {
+ "power": "plant",
+ "landuse": "industrial",
+ "plant:source": "coal",
+ "plant:method": "combustion",
+ "plant:output:electricity": "*"
+ },
+ "reference": {
+ "key": "plant:source",
+ "value": "coal"
+ }
+ },
+ "power/plant/source/method/photovoltaic": {
+ "icon": "fas-solar-panel",
+ "fields": [
+ "name",
+ "operator",
+ "plant/method/solar",
+ "plant/output/electricity",
+ "address",
+ "start_date"
+ ],
+ "moreFields": [
+ "{power/plant}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "power": "plant",
+ "plant:source": "solar",
+ "plant:method": "photovoltaic"
+ },
+ "addTags": {
+ "power": "plant",
+ "plant:source": "solar",
+ "plant:method": "photovoltaic",
+ "plant:output:electricity": "*"
+ },
+ "removeTags": {
+ "power": "plant",
+ "plant:method": "*",
+ "plant:source": "solar",
+ "plant:output:electricity": "*",
+ "landuse": "industrial"
+ },
+ "reference": {
+ "key": "plant:method",
+ "value": "photovoltaic"
+ }
+ },
+ "power/generator/source/wind": {
+ "icon": "temaki-wind_turbine",
"fields": [
"ref",
"operator",
- "seamark/beacon_isolated_danger/shape",
- "seamark/type"
+ "generator/type",
+ "generator/output/electricity"
+ ],
+ "moreFields": [
+ "{power/generator}",
+ "height/hub",
+ "rotor/diameter"
],
"geometry": [
"point",
- "vertex"
+ "vertex",
+ "area"
],
"tags": {
- "seamark:type": "beacon_isolated_danger"
+ "power": "generator",
+ "generator:source": "wind"
+ },
+ "addTags": {
+ "power": "generator",
+ "generator:source": "wind",
+ "generator:method": "wind_turbine"
+ },
+ "reference": {
+ "key": "generator:source",
+ "value": "wind"
}
},
- "seamark/beacon_lateral": {
+ "power/generator/source/nuclear": {
+ "icon": "temaki-radiation",
"fields": [
"ref",
"operator",
- "seamark/beacon_lateral/colour",
- "seamark/beacon_lateral/category",
- "seamark/beacon_lateral/shape",
- "seamark/beacon_lateral/system",
- "seamark/type"
+ "generator/type",
+ "generator/output/electricity"
+ ],
+ "moreFields": [
+ "{power/generator}"
],
"geometry": [
"point",
- "vertex"
+ "vertex",
+ "area"
],
"tags": {
- "seamark:type": "beacon_lateral"
+ "power": "generator",
+ "generator:source": "nuclear",
+ "generator:method": "fission"
+ },
+ "reference": {
+ "key": "generator:source",
+ "value": "nuclear"
}
},
- "seamark/buoy_lateral": {
- "icon": "temaki-buoy",
+ "power/generator/source/hydro": {
+ "icon": "temaki-power",
"fields": [
"ref",
"operator",
- "seamark/buoy_lateral/colour",
- "seamark/buoy_lateral/category",
- "seamark/buoy_lateral/shape",
- "seamark/buoy_lateral/system",
- "seamark/type"
+ "generator/method/hydro",
+ "generator/type",
+ "generator/output/electricity"
+ ],
+ "moreFields": [
+ "{power/generator}"
],
"geometry": [
"point",
- "vertex"
+ "vertex",
+ "area"
],
"tags": {
- "seamark:type": "buoy_lateral"
+ "power": "generator",
+ "generator:source": "hydro"
+ },
+ "addTags": {
+ "power": "generator",
+ "generator:source": "hydro",
+ "generator:output:electricity": "yes"
+ },
+ "reference": {
+ "key": "generator:source",
+ "value": "hydro"
}
},
- "seamark/buoy_lateral/green": {
- "icon": "temaki-buoy",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "seamark:type": "buoy_lateral",
- "seamark:buoy_lateral:colour": "green"
- }
- },
- "seamark/buoy_lateral/red": {
- "icon": "temaki-buoy",
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "seamark:type": "buoy_lateral",
- "seamark:buoy_lateral:colour": "red"
- }
- },
- "seamark/mooring": {
- "icon": "temaki-horn_cleat",
+ "power/generator/method/photovoltaic": {
+ "icon": "fas-solar-panel",
"fields": [
"ref",
"operator",
- "seamark/mooring/category",
- "seamark/type"
+ "generator/output/electricity"
],
+ "moreFields": [
+ "{power/generator}"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "power": "generator",
+ "generator:method": "photovoltaic"
+ },
+ "addTags": {
+ "power": "generator",
+ "generator:source": "solar",
+ "generator:method": "photovoltaic",
+ "generator:type": "solar_photovoltaic_panel",
+ "generator:output:electricity": "*"
+ },
+ "reference": {
+ "key": "generator:method",
+ "value": "photovoltaic"
+ }
+ },
+ "power/generator/method/photovoltaic/location/roof": {
+ "icon": "fas-solar-panel",
+ "fields": [
+ "{power/generator/method/photovoltaic}"
+ ],
+ "moreFields": [
+ "{power/generator}"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "power": "generator",
+ "generator:method": "photovoltaic",
+ "location": "roof"
+ },
+ "addTags": {
+ "power": "generator",
+ "generator:source": "solar",
+ "generator:method": "photovoltaic",
+ "generator:type": "solar_photovoltaic_panel",
+ "generator:output:electricity": "*",
+ "location": "roof"
+ },
+ "reference": {
+ "key": "generator:method",
+ "value": "photovoltaic"
+ }
+ },
+ "power/generator/method/photovoltaic/building/roof": {
+ "icon": "fas-solar-panel",
+ "fields": [
+ "{power/generator/method/photovoltaic}",
+ "layer_1"
+ ],
+ "moreFields": [
+ "{power/generator}"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "power": "generator",
+ "generator:method": "photovoltaic",
+ "building": "roof"
+ },
+ "addTags": {
+ "power": "generator",
+ "generator:source": "solar",
+ "generator:method": "photovoltaic",
+ "generator:type": "solar_photovoltaic_panel",
+ "generator:output:electricity": "*",
+ "building": "roof"
+ },
+ "reference": {
+ "key": "generator:method",
+ "value": "photovoltaic"
+ }
+ },
+ "power/cable/underground": {
+ "icon": "temaki-cable",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "power": "cable",
+ "location": "underground"
+ },
+ "addTags": {
+ "power": "cable",
+ "location": "underground",
+ "layer": "-1"
+ }
+ },
+ "police/checkpoint": {
+ "icon": "temaki-military_checkpoint",
+ "fields": [
+ "name"
+ ],
+ "moreFields": [
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "police": "checkpoint"
+ }
+ },
+ "playground/zipwire": {
+ "icon": "maki-playground",
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "playground": "zipwire"
+ }
+ },
+ "playground/water": {
+ "icon": "temaki-water",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "playground": "water"
+ }
+ },
+ "playground/tunnel_tube": {
+ "icon": "maki-playground",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "playground": "tunnel_tube"
+ }
+ },
+ "playground/trampoline": {
+ "icon": "maki-playground",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "playground": "trampoline"
+ }
+ },
+ "playground/tetherball": {
+ "icon": "maki-playground",
"geometry": [
"point"
],
"tags": {
- "seamark:type": "mooring"
+ "playground": "tetherball"
}
},
- "shop": {
- "icon": "maki-shop",
+ "playground/teenshelter": {
+ "icon": "maki-shelter",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "playground": "teenshelter"
+ }
+ },
+ "playground/swing": {
+ "icon": "maki-playground",
"fields": [
- "name",
- "shop",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "payment_multi",
- "phone"
+ "capacity",
+ "baby_seat",
+ "wheelchair",
+ "blind"
],
- "moreFields": [
- "air_conditioning",
- "branch_brand",
- "brand",
- "building/levels_building",
- "currency_multi",
- "ele",
- "email",
- "fax",
- "gnis/feature_id-US",
- "height_building",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "not/name",
- "opening_hours/covid19",
- "ref/vatin",
- "ref/FR/siret-FR",
- "second_hand",
- "stroller",
- "toilets",
- "toilets/wheelchair",
- "wheelchair"
+ "geometry": [
+ "point",
+ "line",
+ "area"
],
+ "tags": {
+ "playground": "swing"
+ }
+ },
+ "playground/structure": {
+ "icon": "temaki-play_structure",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "playground": "structure"
+ }
+ },
+ "playground/springy": {
+ "icon": "temaki-spring_rider",
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "playground": "springy"
+ }
+ },
+ "playground/splash_pad": {
+ "icon": "temaki-fountain",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "*"
- },
- "matchScore": 0.7
+ "playground": "splash_pad"
+ }
},
- "shop/boutique": {
- "icon": "maki-shop",
+ "playground/slide": {
+ "icon": "roentgen-slide",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "playground": "slide"
+ }
+ },
+ "playground/sledding": {
+ "icon": "temaki-sledding",
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "playground": "sledding"
+ }
+ },
+ "playground/seesaw": {
+ "icon": "temaki-seesaw",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "playground": "seesaw"
+ }
+ },
+ "playground/sandpit": {
+ "icon": "temaki-sandbox",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "playground": "sandpit"
+ }
+ },
+ "playground/roundabout": {
+ "icon": "maki-stadium",
"fields": [
- "name",
- "clothes",
- "{shop}"
+ "{playground}",
+ "bench"
],
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "boutique"
- },
- "searchable": false
- },
- "shop/fashion": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "clothes",
- "{shop}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "fashion"
- },
- "searchable": false
- },
- "shop/vacant": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "address",
- "building_area_yes"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "vacant"
- },
- "searchable": false
- },
- "shop/yes": {
- "icon": "maki-shop",
- "fields": [
- "name",
- "shop",
- "{shop}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "yes"
- },
- "searchable": false,
- "matchScore": 0.8
- },
- "shop/agrarian": {
- "icon": "fas-tractor",
- "fields": [
- "{shop}",
- "agrarian"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "agrarian"
- }
- },
- "shop/alcohol": {
- "icon": "fas-wine-bottle",
- "fields": [
- "{shop}",
- "drive_through"
- ],
- "moreFields": [
- "{shop}",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "alcohol"
- }
- },
- "shop/anime": {
- "icon": "fas-dragon",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "anime"
- }
- },
- "shop/antiques": {
- "icon": "temaki-furniture",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "antiques"
- }
- },
- "shop/appliance": {
- "icon": "temaki-laundry",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "appliance"
- }
- },
- "shop/art": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "art"
- }
- },
- "shop/baby_goods": {
- "icon": "fas-baby-carriage",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "baby_goods"
- }
- },
- "shop/bag": {
- "icon": "fas-suitcase-rolling",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "bag"
- }
- },
- "shop/bakery": {
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "bakery"
- }
- },
- "shop/bathroom_furnishing": {
- "icon": "fas-bath",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "bathroom_furnishing"
- }
- },
- "shop/beauty": {
- "icon": "temaki-lipstick",
- "fields": [
- "{shop}",
- "beauty"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "beauty"
- }
- },
- "shop/beauty/nails": {
- "icon": "temaki-polished_nail",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "beauty",
- "beauty": "nails"
- },
- "reference": {
- "key": "shop",
- "value": "beauty"
- }
- },
- "shop/beauty/tanning": {
- "icon": "temaki-tanning",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "beauty",
- "beauty": "tanning"
- },
- "reference": {
- "key": "leisure",
- "value": "tanning_salon"
- }
- },
- "shop/bed": {
- "icon": "maki-lodging",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "bed"
- }
- },
- "shop/beverages": {
- "icon": "temaki-bottles",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "beverages"
- }
- },
- "shop/bicycle": {
- "icon": "maki-bicycle",
- "fields": [
- "{shop}",
- "service/bicycle"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "bicycle"
- }
- },
- "shop/boat": {
- "icon": "temaki-boat",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "boat"
- }
- },
- "shop/bookmaker": {
- "icon": "temaki-money_hand",
- "moreFields": [
- "{shop}",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "bookmaker"
- }
- },
- "shop/books": {
- "icon": "fas-book",
- "fields": [
- "{shop}",
- "internet_access"
- ],
- "moreFields": [
- "{shop}",
- "internet_access/fee",
- "internet_access/ssid"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "books"
- }
- },
- "shop/brewing_supplies": {
- "icon": "temaki-storage_fermenter",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "brewing_supplies"
- }
- },
- "shop/butcher": {
- "icon": "temaki-cleaver",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "butcher"
- }
- },
- "shop/camera": {
- "icon": "fas-camera-retro",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "camera"
- }
- },
- "shop/candles": {
- "icon": "fas-burn",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "candles"
- }
- },
- "shop/cannabis": {
- "icon": "fas-cannabis",
- "moreFields": [
- "{shop}",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "cannabis"
- }
- },
- "shop/car_parts": {
- "icon": "fas-car-battery",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "car_parts"
- }
- },
- "shop/car_repair": {
- "icon": "maki-car-repair",
- "fields": [
- "{shop}",
- "service/vehicle"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "car_repair"
- }
- },
- "shop/car": {
- "icon": "maki-car",
- "fields": [
- "name",
- "brand",
- "{shop}",
- "second_hand",
- "service/vehicle"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "car"
- }
- },
- "shop/car/second_hand": {
- "icon": "maki-car",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "car",
- "second_hand": "only"
- }
- },
- "shop/caravan": {
- "icon": "temaki-camper_trailer",
- "fields": [
- "name",
- "brand",
- "{shop}",
- "second_hand",
- "service/vehicle"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "caravan"
- }
- },
- "shop/carpet": {
- "icon": "fas-tape",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "carpet"
- }
- },
- "shop/catalogue": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "catalogue"
- }
- },
- "shop/charity": {
- "icon": "maki-shop",
- "fields": [
- "{shop}",
- "second_hand"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "charity"
- }
- },
- "shop/cheese": {
- "icon": "fas-cheese",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "cheese"
- }
- },
- "shop/chemist": {
- "icon": "fas-shopping-basket",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "chemist"
- }
- },
- "shop/chocolate": {
- "icon": "maki-confectionery",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "chocolate"
- }
- },
- "shop/clothes": {
- "icon": "maki-clothing-store",
- "fields": [
- "name",
- "clothes",
- "{shop}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "clothes"
- }
- },
- "shop/clothes/second_hand": {
- "icon": "fas-tshirt",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "clothes",
- "second_hand": "only"
- }
- },
- "shop/clothes/suits": {
- "icon": "fas-tshirt",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "clothes",
- "clothes": "suits"
- }
- },
- "shop/clothes/underwear": {
- "icon": "temaki-bikini",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "clothes",
- "clothes": "underwear"
- },
- "reference": {
- "key": "clothes",
- "value": "underwear"
- }
- },
- "shop/clothes/wedding": {
- "icon": "temaki-gown",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "clothes",
- "clothes": "wedding"
- },
- "reference": {
- "key": "clothes",
- "value": "wedding"
- }
- },
- "shop/clothes/workwear": {
- "icon": "fas-tshirt",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "clothes",
- "clothes": "workwear"
- }
- },
- "shop/coffee": {
- "icon": "temaki-coffee",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "coffee"
- }
- },
- "shop/collector": {
- "icon": "fas-th",
- "fields": [
- "name",
- "collector",
- "{shop}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "collector"
- }
- },
- "shop/computer": {
- "icon": "fas-laptop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "computer"
- }
- },
- "shop/confectionery": {
- "icon": "maki-confectionery",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "confectionery"
- }
- },
- "shop/convenience": {
- "icon": "fas-shopping-basket",
- "moreFields": [
- "{shop}",
- "organic"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "convenience"
- }
- },
- "shop/copyshop": {
- "icon": "fas-print",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "copyshop"
- }
- },
- "shop/cosmetics": {
- "icon": "temaki-lipstick",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "cosmetics"
- }
- },
- "shop/country_store": {
- "icon": "fas-hat-cowboy-side",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "country_store"
- }
- },
- "shop/craft": {
- "icon": "fas-cut",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "craft"
- }
- },
- "shop/curtain": {
- "icon": "temaki-curtains",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "curtain"
- }
- },
- "shop/dairy": {
- "icon": "fas-cheese",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "dairy"
- }
- },
- "shop/deli": {
- "icon": "fas-jar",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "deli"
- }
- },
- "shop/department_store": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "department_store"
- }
- },
- "shop/doityourself": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "doityourself"
- }
- },
- "shop/doors": {
- "icon": "fas-door-open",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "doors"
- }
- },
- "shop/dry_cleaning": {
- "icon": "temaki-clothes_hanger",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "dry_cleaning"
- }
- },
- "shop/e-cigarette": {
- "icon": "maki-shop",
- "moreFields": [
- "{shop}",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "e-cigarette"
- }
- },
- "shop/electrical": {
- "icon": "temaki-power",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "electrical"
- }
- },
- "shop/electronics": {
- "icon": "fas-plug",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "electronics"
- }
- },
- "shop/erotic": {
- "icon": "maki-shop",
- "fields": [
- "{shop}",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "erotic"
- }
- },
- "shop/erotic/lgbtq": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "erotic",
- "lgbtq": "primary"
- }
- },
- "shop/fabric": {
- "icon": "fas-tape",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "fabric"
- }
- },
- "shop/farm": {
- "icon": "fas-apple-alt",
- "fields": [
- "{shop}",
- "organic"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "farm"
- }
- },
- "shop/fashion_accessories": {
- "icon": "temaki-fashion_accessories",
- "fields": [
- "name",
- "clothes",
- "{shop}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "fashion_accessories"
- }
- },
- "shop/fireplace": {
- "icon": "temaki-fireplace",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "fireplace"
- }
- },
- "shop/fishing": {
- "icon": "temaki-ice_fishing",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "fishing"
- }
- },
- "shop/flooring": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "flooring"
- }
- },
- "shop/florist": {
- "icon": "maki-florist",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "florist"
- }
- },
- "shop/frame": {
- "icon": "fas-vector-square",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "frame"
- }
- },
- "shop/frozen_food": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "frozen_food"
- }
- },
- "shop/fuel": {
- "icon": "temaki-propane_tank",
- "fields": [
- "{shop}",
- "fuel/fuel_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "fuel"
- },
- "matchScore": 0.5
- },
- "shop/funeral_directors": {
- "icon": "maki-cemetery",
- "fields": [
- "{shop}",
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "funeral_directors"
- }
- },
- "shop/furniture": {
- "icon": "fas-couch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "furniture"
- }
- },
- "shop/games": {
- "icon": "fas-dice",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "games"
- }
- },
- "shop/garden_centre": {
- "icon": "maki-garden-centre",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "garden_centre"
- }
- },
- "shop/gas": {
- "icon": "temaki-propane_tank",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "gas"
- }
- },
- "shop/general": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "general"
- }
- },
- "shop/gift": {
- "icon": "maki-gift",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "gift"
- }
- },
- "shop/greengrocer": {
- "icon": "fas-carrot",
- "fields": [
- "{shop}",
- "organic"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "greengrocer"
- }
- },
- "shop/hairdresser_supply": {
- "icon": "temaki-hair_care",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "hairdresser_supply"
- }
- },
- "shop/hairdresser": {
- "icon": "temaki-beauty_salon",
- "geometry": [
- "point",
- "area"
- ],
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours",
- "payment_multi",
- "phone",
- "gender"
- ],
- "tags": {
- "shop": "hairdresser"
- }
- },
- "shop/hardware": {
- "icon": "temaki-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "hardware"
- }
- },
- "shop/health_food": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "health_food"
- }
- },
- "shop/hearing_aids": {
- "icon": "temaki-hearing_aid",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "hearing_aids"
- }
- },
- "shop/herbalist": {
- "icon": "fas-leaf",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "herbalist"
- }
- },
- "shop/hifi": {
- "icon": "temaki-speaker",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "hifi"
- }
- },
- "shop/hobby": {
- "icon": "fas-dragon",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "hobby"
- }
- },
- "shop/household_linen": {
- "icon": "temaki-cloth",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "household_linen"
- }
- },
- "shop/houseware": {
- "icon": "fas-blender",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "houseware"
- }
- },
- "shop/hunting": {
- "icon": "temaki-bow_and_arrow",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "hunting"
- }
- },
- "shop/interior_decoration": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "interior_decoration"
- }
- },
- "shop/jewelry": {
- "icon": "maki-jewelry-store",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "jewelry"
- }
- },
- "shop/kiosk": {
- "icon": "fas-store",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "kiosk"
- }
- },
- "shop/kitchen": {
- "icon": "temaki-kitchen_sink",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "kitchen"
- }
- },
- "shop/laundry": {
- "icon": "temaki-laundry",
- "fields": [
- "{shop}",
- "self_service"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "laundry"
- }
- },
- "shop/laundry/self_service": {
- "icon": "temaki-laundry",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "laundry",
- "self_service": "yes"
- }
- },
- "shop/leather": {
- "icon": "temaki-handbag",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "leather"
- }
- },
- "shop/lighting": {
- "icon": "temaki-desk_lamp",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "lighting"
- }
- },
- "shop/locksmith": {
- "icon": "fas-key",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "locksmith"
- }
- },
- "shop/lottery": {
- "icon": "fas-ticket-alt",
- "moreFields": [
- "{shop}",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "lottery"
- }
- },
- "shop/mall": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "mall"
- }
- },
- "shop/massage": {
- "icon": "temaki-spa",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "massage"
- }
- },
- "shop/medical_supply": {
- "icon": "fas-crutch",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "medical_supply"
- }
- },
- "shop/military_surplus": {
- "icon": "temaki-military",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "military_surplus"
- }
- },
- "shop/mobile_phone": {
- "icon": "fas-mobile-alt",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "mobile_phone"
- }
- },
- "shop/model": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "model"
- }
- },
- "shop/money_lender": {
- "icon": "temaki-money_hand",
- "fields": [
- "{shop}",
- "currency_multi"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "money_lender"
- }
- },
- "shop/motorcycle_repair": {
- "icon": "temaki-motorcycle_repair",
- "fields": [
- "{shop}",
- "service/vehicle"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "motorcycle_repair"
- }
- },
- "shop/motorcycle": {
- "icon": "fas-motorcycle",
- "fields": [
- "name",
- "brand",
- "{shop}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "motorcycle"
- }
- },
- "shop/music": {
- "icon": "fas-compact-disc",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "music"
- }
- },
- "shop/musical_instrument": {
- "icon": "fas-guitar",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "musical_instrument"
- }
- },
- "shop/newsagent": {
- "icon": "fas-newspaper",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "newsagent"
- }
- },
- "shop/nutrition_supplements": {
- "icon": "fas-pills",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "nutrition_supplements"
+ "playground": "roundabout"
}
},
- "shop/optician": {
- "icon": "maki-optician",
+ "playground/playhouse": {
+ "icon": "temaki-play_structure",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "optician"
+ "playground": "playhouse"
}
},
- "shop/outdoor": {
+ "playground/map": {
"icon": "temaki-compass",
+ "geometry": [
+ "point",
+ "area"
+ ],
"fields": [
- "{shop}"
+ "subject/wikidata",
+ "surface"
],
"moreFields": [
- "{shop}",
- "clothes",
- "service/bicycle"
+ "colour",
+ "subject"
],
+ "tags": {
+ "playground": "map"
+ }
+ },
+ "playground/horizontal_bar": {
+ "icon": "temaki-horizontal_bar",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "playground": "horizontal_bar"
+ }
+ },
+ "playground/hopscotch": {
+ "icon": "roentgen-hopscotch",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "playground": "hopscotch"
+ }
+ },
+ "playground/funnel_ball": {
+ "icon": "maki-playground",
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "playground": "funnel_ball"
+ }
+ },
+ "playground/cushion": {
+ "icon": "maki-playground",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "outdoor"
+ "playground": "cushion"
}
},
- "shop/outpost": {
- "icon": "maki-shop",
+ "playground/climbingwall": {
+ "icon": "maki-playground",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "playground": "climbingwall"
+ }
+ },
+ "playground/climbingframe": {
+ "icon": "maki-playground",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "outpost"
+ "playground": "climbingframe"
}
},
- "shop/paint": {
- "icon": "fas-paint-roller",
+ "playground/bridge": {
+ "icon": "maki-playground",
"geometry": [
"point",
+ "line",
+ "area"
+ ],
+ "moreFields": [
+ "{playground}",
+ "length",
+ "width"
+ ],
+ "tags": {
+ "playground": "bridge"
+ }
+ },
+ "playground/basketswing": {
+ "icon": "maki-playground",
+ "geometry": [
+ "point",
+ "line",
"area"
],
"tags": {
- "shop": "paint"
+ "playground": "basketswing"
}
},
- "shop/party": {
- "icon": "temaki-balloon",
+ "playground/basketrotator": {
+ "icon": "maki-playground",
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "playground": "basketrotator"
+ }
+ },
+ "playground/balancebeam": {
+ "icon": "temaki-balance_beam",
"geometry": [
"point",
+ "line"
+ ],
+ "tags": {
+ "playground": "balancebeam"
+ }
+ },
+ "playground/aerialrotator": {
+ "icon": "maki-playground",
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "playground": "aerialrotator"
+ }
+ },
+ "playground/activitypanel": {
+ "icon": "maki-playground",
+ "geometry": [
+ "point",
+ "line",
"area"
],
"tags": {
- "shop": "party"
+ "playground": "activitypanel"
}
},
- "shop/pastry": {
- "icon": "maki-bakery",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "pastry"
- }
- },
- "shop/pawnbroker": {
- "icon": "temaki-money_hand",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "pawnbroker"
- }
- },
- "shop/perfumery": {
- "icon": "temaki-perfume",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "perfumery"
- }
- },
- "shop/pet_grooming": {
- "icon": "temaki-pet_grooming",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "pet_grooming"
- }
- },
- "shop/pet": {
- "icon": "fas-cat",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "pet"
- }
- },
- "shop/photo": {
- "icon": "fas-camera-retro",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "photo"
- }
- },
- "shop/pottery": {
- "icon": "temaki-vase",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "pottery"
- }
- },
- "shop/printer_ink": {
- "icon": "fas-print",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "printer_ink"
- }
- },
- "shop/psychic": {
- "icon": "temaki-psychic",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "psychic"
- }
- },
- "shop/pyrotechnics": {
- "icon": "temaki-rocket_firework",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "pyrotechnics"
- }
- },
- "shop/radiotechnics": {
- "icon": "fas-microchip",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "radiotechnics"
- }
- },
- "shop/religion": {
- "icon": "maki-shop",
- "fields": [
- "{shop}",
- "religion",
- "denomination"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "religion"
- }
- },
- "shop/rental": {
- "icon": "fas-dolly",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "rental"
- }
- },
- "shop/repair": {
- "icon": "fas-tools",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "repair"
- }
- },
- "shop/scuba_diving": {
- "icon": "temaki-scuba_diving",
- "fields": [
- "{shop}",
- "scuba_diving"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "scuba_diving"
- }
- },
- "shop/seafood": {
- "icon": "temaki-fish_cleaning",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "seafood"
- }
- },
- "shop/second_hand": {
- "icon": "maki-shop",
- "fields": [
- "{shop}",
- "second_hand"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "second_hand"
- }
- },
- "shop/sewing": {
- "icon": "temaki-needle_and_spool",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "sewing"
- }
- },
- "shop/shoe_repair": {
- "icon": "temaki-hammer_shoe",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "shoe_repair"
- }
- },
- "shop/shoes": {
- "icon": "maki-shoe",
- "geometry": [
- "point",
- "area"
- ],
+ "place/village": {
+ "icon": "maki-village",
"fields": [
"name",
- "shoes",
- "{shop}"
+ "population",
+ "population/date",
+ "source/population"
],
- "tags": {
- "shop": "shoes"
- }
- },
- "shop/spices": {
- "icon": "temaki-spice_bottle",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "spices"
+ "place": "village"
}
},
- "shop/sports": {
- "icon": "fas-futbol",
+ "place/town": {
+ "icon": "maki-town",
"fields": [
"name",
- "operator",
- "sport",
- "{shop}"
+ "population",
+ "population/date",
+ "source/population"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "place": "town"
+ }
+ },
+ "place/suburb": {
+ "icon": "maki-triangle-stroked",
+ "fields": [
+ "name",
+ "population",
+ "population/date",
+ "source/population"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "place": "suburb"
+ }
+ },
+ "place/square": {
+ "icon": "maki-marker-stroked",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "place": "square"
+ }
+ },
+ "place/quarter": {
+ "icon": "maki-triangle-stroked",
+ "fields": [
+ "name",
+ "population",
+ "population/date",
+ "source/population"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "place": "quarter"
+ }
+ },
+ "place/plot": {
+ "icon": "maki-triangle-stroked",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "place": "plot"
+ }
+ },
+ "place/neighbourhood": {
+ "icon": "maki-triangle-stroked",
+ "fields": [
+ "name",
+ "population",
+ "population/date",
+ "source/population"
],
"moreFields": [
- "{shop}",
- "service/bicycle"
+ "gnis/feature_id-US"
],
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "sports"
+ "place": "neighbourhood"
}
},
- "shop/stationery": {
- "icon": "fas-paperclip",
+ "place/locality": {
+ "icon": "maki-triangle-stroked",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "stationery"
+ "place": "locality"
}
},
- "shop/storage_rental": {
- "icon": "temaki-storage_rental",
+ "place/isolated_dwelling": {
+ "icon": "maki-home",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "storage_rental"
+ "place": "isolated_dwelling"
}
},
- "shop/supermarket": {
- "icon": "maki-grocery",
- "moreFields": [
- "{shop}",
- "diet_multi",
- "organic"
- ],
+ "place/islet": {
+ "icon": "temaki-islet_tree",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "supermarket"
+ "place": "islet"
}
},
- "shop/supermarket/organic": {
- "icon": "maki-grocery",
+ "place/island": {
+ "icon": "temaki-island_trees_building",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "supermarket",
- "organic": "only"
+ "place": "island"
+ }
+ },
+ "place/hamlet": {
+ "icon": "maki-triangle-stroked",
+ "fields": [
+ "name",
+ "population",
+ "population/date",
+ "source/population"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "place": "hamlet"
+ }
+ },
+ "place/city_block": {
+ "icon": "maki-triangle-stroked",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "place": "city_block"
+ }
+ },
+ "place/city": {
+ "icon": "maki-city",
+ "fields": [
+ "name",
+ "population",
+ "population/date",
+ "source/population"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "place": "city"
+ }
+ },
+ "place/farm": {
+ "icon": "maki-farm",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "place": "farm"
+ },
+ "searchable": false
+ },
+ "piste/take_off": {
+ "icon": "temaki-ski_jumping",
+ "fields": [
+ "height"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "piste:takeoff": "yes"
+ }
+ },
+ "piste/sleigh": {
+ "icon": "fas-sleigh",
+ "fields": [
+ "name",
+ "piste/type",
+ "piste/difficulty",
+ "piste/grooming",
+ "oneway",
+ "lit"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "sleigh"
+ }
+ },
+ "piste/sled": {
+ "icon": "temaki-sledding",
+ "fields": [
+ "name",
+ "piste/type",
+ "piste/difficulty",
+ "piste/grooming",
+ "oneway",
+ "lit"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "sled"
+ }
+ },
+ "piste/skitour": {
+ "icon": "fas-skiing-nordic",
+ "fields": [
+ "name",
+ "piste/type",
+ "piste/difficulty_skitour",
+ "piste/grooming",
+ "oneway",
+ "lit"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "skitour"
+ }
+ },
+ "piste/ski_jump": {
+ "icon": "temaki-ski_jumping",
+ "fields": [
+ "name",
+ "piste/type",
+ "ref",
+ "oneway_yes",
+ "lit"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "ski_jump"
+ }
+ },
+ "piste/nordic": {
+ "icon": "fas-skiing-nordic",
+ "fields": [
+ "name",
+ "piste/type",
+ "piste/difficulty_nordic",
+ "piste/grooming_nordic",
+ "oneway",
+ "lit"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "nordic"
+ }
+ },
+ "piste/ice_skate": {
+ "icon": "fas-skating",
+ "fields": [
+ "name",
+ "piste/type",
+ "sport/sport_ice",
+ "oneway",
+ "lit"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "ice_skate"
+ }
+ },
+ "piste/hike": {
+ "icon": "temaki-snow_shoeing",
+ "fields": [
+ "name",
+ "piste/type",
+ "piste/difficulty",
+ "piste/grooming_hike",
+ "oneway",
+ "lit"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "hike"
+ }
+ },
+ "piste/downhill": {
+ "icon": "fas-skiing",
+ "fields": [
+ "name",
+ "piste/type",
+ "piste/difficulty_downhill",
+ "piste/grooming_downhill",
+ "oneway",
+ "lit"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "downhill"
+ }
+ },
+ "piste/piste": {
+ "icon": "fas-skiing",
+ "fields": [
+ "name",
+ "piste/type",
+ "piste/difficulty",
+ "piste/grooming",
+ "oneway",
+ "lit"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "*"
+ },
+ "searchable": false
+ },
+ "piste/downhill/halfpipe": {
+ "icon": "fas-snowboarding",
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "piste:type": "downhill",
+ "man_made": "piste:halfpipe"
},
"reference": {
- "key": "organic"
+ "key": "man_made",
+ "value": "piste:halfpipe"
}
},
- "shop/swimming_pool": {
- "icon": "fas-swimmer",
+ "pipeline/valve": {
+ "icon": "temaki-wheel",
"geometry": [
- "point",
- "area"
+ "vertex"
],
- "tags": {
- "shop": "swimming_pool"
- }
- },
- "shop/tailor": {
- "icon": "temaki-needle_and_spool",
- "geometry": [
- "point",
- "area"
+ "fields": [
+ "ref",
+ "operator",
+ "valve",
+ "location",
+ "diameter"
],
- "tags": {
- "shop": "tailor"
- }
- },
- "shop/tattoo": {
- "icon": "temaki-tattoo_machine",
"moreFields": [
- "{shop}",
- "min_age"
+ "colour",
+ "manufacturer",
+ "material"
+ ],
+ "tags": {
+ "pipeline": "valve"
+ }
+ },
+ "pipeline/substation": {
+ "icon": "temaki-powered_pump",
+ "fields": [
+ "name",
+ "substation_pipeline",
+ "operator",
+ "building",
+ "substance",
+ "ref"
+ ],
+ "moreFields": [
+ "address"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "pipeline": "substation"
+ }
+ },
+ "office/water_utility": {
+ "icon": "maki-suitcase",
+ "fields": [
+ "{office}",
+ "operator"
],
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "tattoo"
+ "office": "water_utility"
}
},
- "shop/tea": {
- "icon": "maki-teahouse",
+ "office/union": {
+ "icon": "maki-suitcase",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "tea"
+ "office": "union"
}
},
- "shop/telecommunication": {
+ "office/translator": {
+ "icon": "fas-language",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "translator"
+ }
+ },
+ "office/therapist": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "therapist"
+ },
+ "fields": [
+ "healthcare_therapist",
+ "healthcare/speciality",
+ "{office}"
+ ],
+ "matchScore": 0.9
+ },
+ "office/telecommunication": {
"icon": "maki-telephone",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "telecommunication"
+ "office": "telecommunication"
}
},
- "shop/ticket": {
- "icon": "fas-ticket-alt",
+ "office/tax_advisor": {
+ "icon": "maki-suitcase",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "ticket"
+ "office": "tax_advisor"
}
},
- "shop/tiles": {
- "icon": "temaki-tiling",
+ "office/surveyor": {
+ "icon": "fas-vest",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "tiles"
+ "office": "surveyor"
}
},
- "shop/tobacco": {
- "icon": "temaki-pipe",
+ "office/security": {
+ "icon": "temaki-briefcase_shield",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "security"
+ }
+ },
+ "office/research": {
+ "icon": "fas-flask",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "research"
+ }
+ },
+ "office/religion": {
+ "icon": "maki-suitcase",
+ "fields": [
+ "{office}",
+ "religion",
+ "denomination"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "religion"
+ }
+ },
+ "office/quango": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "quango"
+ }
+ },
+ "office/property_management": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "property_management"
+ }
+ },
+ "office/private_investigator": {
+ "icon": "fas-user-secret",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "private_investigator"
+ }
+ },
+ "office/political_party": {
+ "icon": "maki-town-hall",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "political_party"
+ }
+ },
+ "office/notary": {
+ "icon": "fas-stamp",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "notary"
+ }
+ },
+ "office/ngo": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "ngo"
+ }
+ },
+ "office/newspaper": {
+ "icon": "fas-newspaper",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "newspaper"
+ }
+ },
+ "office/moving_company": {
+ "icon": "fas-people-carry",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "moving_company"
+ }
+ },
+ "office/lawyer": {
+ "icon": "fas-balance-scale",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "lawyer"
+ }
+ },
+ "office/it": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "it"
+ }
+ },
+ "office/insurance": {
+ "icon": "temaki-briefcase_shield",
"moreFields": [
- "{shop}",
- "min_age"
+ "branch_brand",
+ "brand",
+ "{office}"
],
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "tobacco"
+ "office": "insurance"
}
},
- "shop/tool_hire": {
- "icon": "temaki-tools",
+ "office/guide": {
+ "icon": "maki-suitcase",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "tool_hire"
+ "office": "guide"
}
},
- "shop/toys": {
- "icon": "fas-rocket",
+ "office/graphic_design": {
+ "icon": "maki-suitcase",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "toys"
+ "office": "graphic_design"
}
},
- "shop/trade": {
- "icon": "temaki-tools",
+ "office/government": {
+ "icon": "temaki-town_hall",
"fields": [
"name",
- "trade",
- "{shop}"
+ "government",
+ "{office}"
],
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "trade"
+ "office": "government"
}
},
- "shop/travel_agency": {
- "icon": "fas-suitcase",
+ "office/foundation": {
+ "icon": "maki-suitcase",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "travel_agency"
+ "office": "foundation"
}
},
- "shop/trophy": {
- "icon": "fas-trophy",
+ "office/forestry": {
+ "icon": "maki-suitcase",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "trophy"
+ "office": "forestry"
}
},
- "shop/tyres": {
- "icon": "temaki-tire",
+ "office/financial_advisor": {
+ "icon": "maki-suitcase",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "tyres"
+ "office": "financial_advisor"
}
},
- "shop/vacuum_cleaner": {
- "icon": "temaki-vacuum",
+ "office/financial": {
+ "icon": "maki-suitcase",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "vacuum_cleaner"
+ "office": "financial"
}
},
- "shop/variety_store": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "variety_store"
- }
- },
- "shop/video_games": {
- "icon": "maki-gaming",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "video_games"
- }
- },
- "shop/video": {
- "icon": "temaki-movie_rental",
+ "office/estate_agent": {
+ "icon": "temaki-real_estate_agency",
"moreFields": [
- "{shop}",
- "min_age"
+ "branch_brand",
+ "brand",
+ "{office}"
],
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "video"
+ "office": "estate_agent"
}
},
- "shop/watches": {
- "icon": "maki-watch",
+ "office/engineer": {
+ "icon": "fas-pen-ruler",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "watches"
+ "office": "engineer"
}
},
- "shop/water_sports": {
- "icon": "fas-swimmer",
+ "office/energy_supplier": {
+ "icon": "temaki-briefcase_bolt",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "water_sports"
+ "office": "energy_supplier"
}
},
- "shop/water": {
- "icon": "temaki-water_bottle",
+ "office/employment_agency": {
+ "icon": "maki-suitcase",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "water"
+ "office": "employment_agency"
}
},
- "shop/weapons": {
- "icon": "temaki-dagger",
+ "office/educational_institution": {
+ "icon": "maki-school",
"geometry": [
"point",
"area"
],
"tags": {
- "shop": "weapons"
+ "office": "educational_institution"
}
},
- "shop/wholesale": {
- "icon": "maki-warehouse",
- "fields": [
- "{shop}",
- "wholesale"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "wholesale"
- }
- },
- "shop/wigs": {
- "icon": "maki-shop",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "wigs"
- }
- },
- "shop/window_blind": {
- "icon": "temaki-window",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "window_blind"
- }
- },
- "shop/wine": {
- "icon": "maki-alcohol-shop",
- "moreFields": [
- "{shop}",
- "min_age"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "shop": "wine"
- }
- },
- "telecom/data_center": {
- "icon": "fas-server",
+ "office/diplomatic": {
+ "icon": "temaki-embassy",
"fields": [
"name",
- "ref",
- "operator",
- "building_area_yes"
+ "diplomatic",
+ "country",
+ "target",
+ "diplomatic/services",
+ "{office}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "diplomatic"
+ }
+ },
+ "office/coworking": {
+ "icon": "maki-suitcase",
+ "fields": [
+ "{office}",
+ "{@templates/internet_access}"
],
"moreFields": [
- "address",
- "gnis/feature_id-US",
- "phone"
+ "{@templates/internet_access}",
+ "{@templates/poi}"
],
"geometry": [
"point",
"area"
],
"tags": {
- "telecom": "data_center"
+ "office": "coworking"
}
},
- "telecom/exchange": {
- "icon": "temaki-cable",
- "fields": [
- "ref",
- "operator",
- "telecom/medium",
- "address",
- "building_area_yes"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "telecom": "exchange"
- }
- },
- "tourism/alpine_hut": {
- "icon": "temaki-cabin",
+ "office/consulting": {
+ "icon": "maki-suitcase",
"fields": [
"name",
- "operator",
- "address",
- "phone",
- "building_area_yes",
- "internet_access",
- "internet_access/fee",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access/ssid",
- "reservation",
- "wheelchair"
+ "consulting",
+ "{office}"
],
"geometry": [
"point",
"area"
],
"tags": {
- "tourism": "alpine_hut"
+ "office": "consulting"
}
},
- "tourism/apartment": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "address",
- "website",
- "email",
- "phone",
- "building_area_yes",
- "rooms",
- "internet_access",
- "internet_access/fee"
+ "office/company": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
],
+ "tags": {
+ "office": "company"
+ }
+ },
+ "office/charity": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "charity"
+ }
+ },
+ "office/bail_bond_agent-US-PH": {
+ "locationSet": {
+ "include": [
+ "us",
+ "ph"
+ ]
+ },
+ "icon": "maki-bank",
"moreFields": [
- "building/levels_building",
- "fax",
- "height_building",
- "internet_access/ssid",
- "level",
- "payment_multi",
- "reservation",
- "smoking",
- "wheelchair"
+ "{office}",
+ "currency_multi",
+ "payment_multi"
],
"geometry": [
"point",
"area"
],
"tags": {
- "tourism": "apartment"
+ "office": "bail_bond_agent"
}
},
- "tourism/aquarium": {
- "icon": "maki-aquarium",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "payment_multi_fee",
- "phone",
- "ref/vatin",
- "smoking",
- "toilets",
- "toilets/wheelchair",
- "wheelchair"
- ],
+ "office/association": {
+ "icon": "maki-suitcase",
"geometry": [
"point",
"area"
],
"tags": {
- "tourism": "aquarium"
+ "office": "association"
}
},
- "tourism/artwork": {
- "icon": "maki-art-gallery",
+ "office/architect": {
+ "icon": "fas-drafting-compass",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "architect"
+ }
+ },
+ "office/advertising_agency": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "advertising_agency"
+ }
+ },
+ "office/adoption_agency": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "adoption_agency"
+ }
+ },
+ "office/accountant": {
+ "icon": "temaki-accounting",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "accountant"
+ }
+ },
+ "office/yes": {
+ "icon": "maki-suitcase",
"fields": [
"name",
- "artwork_type",
- "artist"
- ],
- "moreFields": [
- "level",
- "material",
- "subject/wikidata"
+ "office",
+ "{office}"
],
"geometry": [
"point",
"vertex",
- "line",
"area"
],
"tags": {
- "tourism": "artwork"
+ "office": "yes"
+ },
+ "searchable": false,
+ "matchScore": 0.8
+ },
+ "office/travel_agent": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "travel_agent"
+ },
+ "reference": {
+ "key": "shop",
+ "value": "travel_agency"
+ },
+ "searchable": false
+ },
+ "office/physician": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "physician"
+ },
+ "searchable": false
+ },
+ "office/administrative": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "administrative"
+ },
+ "searchable": false
+ },
+ "office/lawyer/notary": {
+ "icon": "maki-suitcase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "lawyer",
+ "lawyer": "notary"
+ },
+ "reference": {
+ "key": "office",
+ "value": "notary"
+ },
+ "searchable": false
+ },
+ "office/government/tax": {
+ "icon": "temaki-town_hall",
+ "fields": [
+ "{office}",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "government",
+ "government": "tax"
+ },
+ "reference": {
+ "key": "government",
+ "value": "tax"
}
},
- "tourism/artwork/bust": {
- "icon": "fas-user-alt",
+ "office/government/register_office": {
+ "icon": "temaki-town_hall",
+ "fields": [
+ "{office}",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "government",
+ "government": "register_office"
+ },
+ "reference": {
+ "key": "government",
+ "value": "register_office"
+ }
+ },
+ "office/government/prosecutor": {
+ "icon": "maki-suitcase",
+ "fields": [
+ "{office}",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "government",
+ "government": "prosecutor"
+ },
+ "reference": {
+ "key": "government",
+ "value": "prosecutor"
+ }
+ },
+ "office/diplomatic/liaison": {
+ "icon": "temaki-embassy",
"fields": [
"name",
- "artist",
- "material",
- "inscription"
+ "liaison",
+ "{office/diplomatic}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "diplomatic",
+ "diplomatic": "liaison"
+ },
+ "reference": {
+ "key": "diplomatic",
+ "value": "liaison"
+ }
+ },
+ "office/diplomatic/embassy": {
+ "icon": "temaki-embassy",
+ "fields": [
+ "name",
+ "embassy",
+ "{office/diplomatic}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "diplomatic",
+ "diplomatic": "embassy"
+ },
+ "reference": {
+ "key": "diplomatic",
+ "value": "embassy"
+ }
+ },
+ "office/diplomatic/consulate": {
+ "icon": "temaki-embassy",
+ "fields": [
+ "name",
+ "consulate",
+ "{office/diplomatic}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "office": "diplomatic",
+ "diplomatic": "consulate"
+ },
+ "reference": {
+ "key": "diplomatic",
+ "value": "consulate"
+ }
+ },
+ "noexit/yes": {
+ "icon": "maki-barrier",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "noexit": "yes"
+ },
+ "reference": {
+ "key": "noexit",
+ "value": "*"
+ }
+ },
+ "network/type/node_network-DE-NL-BE-LU": {
+ "fields": [
+ "name",
+ "rwn_ref",
+ "expected_rwn_route_relations",
+ "rcn_ref",
+ "expected_rcn_route_relations"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "network:type": "node_network"
+ },
+ "locationSet": {
+ "include": [
+ "be",
+ "de",
+ "lu",
+ "nl"
+ ]
+ },
+ "matchScore": 0.2
+ },
+ "natural/wood": {
+ "icon": "maki-park-alt1",
+ "fields": [
+ "name",
+ "leaf_type",
+ "leaf_cycle"
+ ],
+ "moreFields": [
+ "species/wikidata"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wood"
+ }
+ },
+ "natural/wetland": {
+ "icon": "maki-wetland",
+ "fields": [
+ "wetland",
+ "salt",
+ "tidal"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland"
+ }
+ },
+ "natural/water": {
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "water",
+ "intermittent"
+ ],
+ "moreFields": [
+ "fishing",
+ "gnis/feature_id-US",
+ "salt",
+ "tidal"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water"
+ }
+ },
+ "natural/volcano": {
+ "icon": "maki-volcano",
+ "fields": [
+ "name",
+ "ele_node",
+ "volcano/status",
+ "volcano/type"
],
"geometry": [
"point",
"vertex"
],
"tags": {
- "tourism": "artwork",
- "artwork_type": "bust"
- },
- "reference": {
- "key": "artwork_type",
- "value": "bust"
+ "natural": "volcano"
}
},
- "tourism/artwork/graffiti": {
- "icon": "maki-art-gallery",
+ "natural/valley": {
+ "icon": "temaki-valley",
"fields": [
"name",
- "artist"
+ "ele_node"
+ ],
+ "geometry": [
+ "vertex",
+ "point",
+ "line"
+ ],
+ "tags": {
+ "natural": "valley"
+ }
+ },
+ "natural/tree_stump": {
+ "icon": "temaki-tree_stump",
+ "moreFields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "denotation",
+ "height",
+ "circumference",
+ "{natural/tree}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree_stump"
+ }
+ },
+ "natural/tree_row": {
+ "icon": "temaki-tree_row",
+ "fields": [
+ "leaf_type",
+ "leaf_cycle",
+ "denotation"
+ ],
+ "moreFields": [
+ "species/wikidata"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "natural": "tree_row"
+ }
+ },
+ "natural/tree": {
+ "icon": "roentgen-tree",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "denotation",
+ "height",
+ "circumference"
+ ],
+ "moreFields": [
+ "genus",
+ "species",
+ "species/wikidata",
+ "taxon",
+ "diameter_crown",
+ "diameter",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree"
+ }
+ },
+ "natural/strait": {
+ "icon": "iD-waterway-river",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "fields": [
+ "name"
+ ],
+ "tags": {
+ "natural": "strait"
+ }
+ },
+ "natural/stone": {
+ "icon": "temaki-boulder1",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "natural": "stone"
+ }
+ },
+ "natural/spring": {
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "drinking_water",
+ "intermittent"
],
"geometry": [
"point",
"vertex",
- "line",
"area"
],
"tags": {
- "tourism": "artwork",
- "artwork_type": "graffiti"
- },
- "reference": {
- "key": "artwork_type",
- "value": "graffiti"
+ "natural": "spring"
}
},
- "tourism/artwork/installation": {
- "icon": "temaki-sculpture",
+ "natural/sinkhole": {
+ "icon": "temaki-trench",
"fields": [
- "name",
- "artist"
+ "name"
],
"geometry": [
"point",
"vertex",
- "line",
"area"
],
"tags": {
- "tourism": "artwork",
- "artwork_type": "installation"
- },
- "reference": {
- "key": "artwork_type",
- "value": "installation"
+ "natural": "sinkhole"
}
},
- "tourism/artwork/mural": {
- "icon": "maki-art-gallery",
+ "natural/shrub": {
+ "icon": "temaki-shrub",
+ "fields": [
+ "height"
+ ],
+ "moreFields": [
+ "species/wikidata"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "shrub"
+ }
+ },
+ "natural/shingle": {
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "shingle"
+ }
+ },
+ "natural/scrub": {
+ "icon": "temaki-shrub",
+ "moreFields": [
+ "leaf_type",
+ "leaf_cycle",
+ "species/wikidata"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "scrub"
+ }
+ },
+ "natural/scree": {
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "scree"
+ }
+ },
+ "natural/sand": {
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "sand"
+ }
+ },
+ "natural/saddle": {
+ "icon": "temaki-saddle",
"fields": [
"name",
- "artist"
+ "ele_node"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "saddle"
+ }
+ },
+ "natural/rock": {
+ "icon": "temaki-boulder2",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "natural": "rock"
+ }
+ },
+ "natural/ridge": {
+ "icon": "temaki-mountain_range",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "natural": "ridge"
+ }
+ },
+ "natural/reef": {
+ "icon": "temaki-coral_reef",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "natural": "reef"
+ }
+ },
+ "natural/peninsula": {
+ "icon": "temaki-cape_landform",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "name"
+ ],
+ "tags": {
+ "natural": "peninsula"
+ }
+ },
+ "natural/peak": {
+ "icon": "maki-mountain",
+ "fields": [
+ "name",
+ "ele_node"
+ ],
+ "moreFields": [
+ "{natural}",
+ "summit/cross"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "peak"
+ }
+ },
+ "natural/mud": {
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "mud"
+ }
+ },
+ "natural/hot_spring": {
+ "icon": "maki-hot-spring",
+ "fields": [
+ "name",
+ "intermittent"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "natural": "hot_spring"
+ }
+ },
+ "natural/heath": {
+ "icon": "temaki-shrub_low",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "heath"
+ }
+ },
+ "natural/grassland": {
+ "icon": "temaki-grass",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "grassland"
+ }
+ },
+ "natural/glacier": {
+ "icon": "temaki-snow",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "glacier"
+ }
+ },
+ "natural/geyser": {
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "geyser/height",
+ "ele_node"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "natural": "geyser"
+ }
+ },
+ "natural/fell": {
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "fell"
+ }
+ },
+ "natural/coastline": {
+ "icon": "temaki-beach",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "natural": "coastline"
+ }
+ },
+ "natural/cliff": {
+ "icon": "temaki-cliff_falling_rocks",
+ "fields": [
+ "name",
+ "height"
],
"geometry": [
"point",
"vertex",
- "line",
+ "line"
+ ],
+ "tags": {
+ "natural": "cliff"
+ }
+ },
+ "natural/cave_entrance": {
+ "icon": "maki-triangle",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "fields": [
+ "name",
+ "ele_node",
+ "access_simple",
+ "direction",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "tags": {
+ "natural": "cave_entrance"
+ }
+ },
+ "natural/cape": {
+ "icon": "temaki-cape_landform",
+ "fields": [
+ "name",
+ "ele_node"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "cape"
+ }
+ },
+ "natural/beach": {
+ "icon": "temaki-beach",
+ "fields": [
+ "name",
+ "surface",
+ "lifeguard_check",
+ "supervised"
+ ],
+ "geometry": [
+ "point",
"area"
],
"tags": {
- "tourism": "artwork",
- "artwork_type": "mural"
- },
- "reference": {
- "key": "artwork_type",
- "value": "mural"
+ "natural": "beach"
}
},
- "tourism/artwork/sculpture": {
- "icon": "temaki-sculpture",
+ "natural/bay": {
+ "icon": "temaki-beach",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "fields": [
+ "name"
+ ],
+ "tags": {
+ "natural": "bay"
+ }
+ },
+ "natural/bare_rock": {
+ "icon": "temaki-boulder3",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "bare_rock"
+ }
+ },
+ "natural/arch": {
+ "icon": "temaki-natural_arch",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "natural": "arch"
+ }
+ },
+ "natural/wood_point": {
+ "icon": "maki-park-alt1",
+ "fields": [
+ "{natural/wood}"
+ ],
+ "moreFields": [
+ "{natural/wood}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "natural": "wood"
+ },
+ "searchable": false,
+ "matchScore": 1.1,
+ "name": "{natural/wood}"
+ },
+ "natural/wetland/wet_meadow": {
+ "icon": "maki-wetland",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland",
+ "wetland": "wet_meadow"
+ },
+ "reference": {
+ "key": "wetland",
+ "value": "wet_meadow"
+ }
+ },
+ "natural/wetland/tidalflat": {
+ "icon": "maki-wetland",
+ "fields": [
+ "salt",
+ "tidal"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland",
+ "wetland": "tidalflat"
+ },
+ "reference": {
+ "key": "wetland",
+ "value": "tidalflat"
+ }
+ },
+ "natural/wetland/swamp": {
+ "icon": "temaki-swamp",
+ "moreFields": [
+ "tidal"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland",
+ "wetland": "swamp"
+ },
+ "reference": {
+ "key": "wetland",
+ "value": "swamp"
+ }
+ },
+ "natural/wetland/string_bog": {
+ "icon": "maki-wetland",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland",
+ "wetland": "string_bog"
+ },
+ "reference": {
+ "key": "wetland",
+ "value": "string_bog"
+ }
+ },
+ "natural/wetland/saltmarsh": {
+ "icon": "maki-wetland",
+ "fields": [
+ "salt",
+ "tidal"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland",
+ "wetland": "saltmarsh"
+ },
+ "reference": {
+ "key": "wetland",
+ "value": "saltmarsh"
+ }
+ },
+ "natural/wetland/reedbed": {
+ "icon": "maki-wetland",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland",
+ "wetland": "reedbed"
+ },
+ "reference": {
+ "key": "wetland",
+ "value": "reedbed"
+ }
+ },
+ "natural/wetland/marsh": {
+ "icon": "maki-wetland",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland",
+ "wetland": "marsh"
+ },
+ "reference": {
+ "key": "wetland",
+ "value": "marsh"
+ }
+ },
+ "natural/wetland/mangrove": {
+ "icon": "maki-wetland",
+ "fields": [
+ "salt",
+ "tidal"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland",
+ "wetland": "mangrove"
+ },
+ "reference": {
+ "key": "wetland",
+ "value": "mangrove"
+ }
+ },
+ "natural/wetland/fen": {
+ "icon": "maki-wetland",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland",
+ "wetland": "fen"
+ },
+ "reference": {
+ "key": "wetland",
+ "value": "fen"
+ }
+ },
+ "natural/wetland/bog": {
+ "icon": "maki-wetland",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "wetland",
+ "wetland": "bog"
+ },
+ "reference": {
+ "key": "wetland",
+ "value": "bog"
+ }
+ },
+ "natural/water/wastewater": {
+ "icon": "temaki-waste",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water",
+ "water": "wastewater"
+ },
+ "reference": {
+ "key": "water",
+ "value": "wastewater"
+ }
+ },
+ "natural/water/stream": {
+ "icon": "iD-waterway-stream",
+ "fields": [
+ "water",
+ "intermittent"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water",
+ "water": "stream"
+ },
+ "reference": {
+ "key": "water",
+ "value": "stream"
+ }
+ },
+ "natural/water/river": {
+ "icon": "iD-waterway-river",
+ "fields": [
+ "water",
+ "intermittent",
+ "tidal"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water",
+ "water": "river"
+ },
+ "reference": {
+ "key": "water",
+ "value": "river"
+ }
+ },
+ "natural/water/reservoir": {
+ "icon": "maki-water",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water",
+ "water": "reservoir"
+ },
+ "reference": {
+ "key": "water",
+ "value": "reservoir"
+ }
+ },
+ "natural/water/pond": {
+ "icon": "maki-water",
+ "fields": [
+ "{natural/water}",
+ "salt"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water",
+ "water": "pond"
+ },
+ "reference": {
+ "key": "water",
+ "value": "pond"
+ }
+ },
+ "natural/water/oxbow": {
+ "icon": "maki-water",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water",
+ "water": "oxbow"
+ },
+ "reference": {
+ "key": "water",
+ "value": "oxbow"
+ }
+ },
+ "natural/water/moat": {
+ "icon": "maki-water",
+ "fields": [
+ "{natural/water}",
+ "salt"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water",
+ "water": "moat"
+ }
+ },
+ "natural/water/lake": {
+ "icon": "maki-water",
+ "fields": [
+ "{natural/water}",
+ "salt",
+ "tidal"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water",
+ "water": "lake"
+ },
+ "reference": {
+ "key": "water",
+ "value": "lake"
+ }
+ },
+ "natural/water/canal": {
+ "icon": "iD-waterway-canal",
+ "fields": [
+ "{natural/water}",
+ "salt"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water",
+ "water": "canal"
+ },
+ "reference": {
+ "key": "water",
+ "value": "canal"
+ }
+ },
+ "natural/water/basin": {
+ "icon": "maki-water",
"fields": [
"name",
- "artist",
- "material"
+ "basin",
+ "intermittent_yes"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "natural": "water",
+ "water": "basin"
+ },
+ "reference": {
+ "key": "water",
+ "value": "basin"
+ }
+ },
+ "natural/tree/needleleaved": {
+ "icon": "roentgen-needleleaved_tree",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "needleleaved"
+ },
+ "searchable": false
+ },
+ "natural/tree/broadleaved": {
+ "icon": "maki-park",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "broadleaved"
+ },
+ "searchable": false
+ },
+ "natural/tree/needleleaved/evergreen": {
+ "icon": "roentgen-needleleaved_tree",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree/needleleaved}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "needleleaved",
+ "leaf_cycle": "evergreen"
+ }
+ },
+ "natural/tree/needleleaved/deciduous": {
+ "icon": "roentgen-needleleaved_tree",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree/needleleaved}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "needleleaved",
+ "leaf_cycle": "deciduous"
+ },
+ "matchScore": 0.99
+ },
+ "natural/tree/broadleaved/evergreen": {
+ "icon": "maki-park",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree/broadleaved}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "broadleaved",
+ "leaf_cycle": "evergreen"
+ },
+ "matchScore": 0.99
+ },
+ "natural/tree/broadleaved/deciduous": {
+ "icon": "maki-park",
+ "fields": [
+ "leaf_type_singular",
+ "leaf_cycle_singular",
+ "{natural/tree/broadleaved}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "natural": "tree",
+ "leaf_type": "broadleaved",
+ "leaf_cycle": "deciduous"
+ }
+ },
+ "military/trench": {
+ "icon": "temaki-trench",
+ "fields": [
+ "name",
+ "trench"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "military": "trench"
+ }
+ },
+ "military/office": {
+ "icon": "temaki-military",
+ "fields": [
+ "name",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US",
+ "level"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "military": "office"
+ }
+ },
+ "military/nuclear_explosion_site": {
+ "icon": "maki-danger",
+ "fields": [
+ "name"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
],
"geometry": [
"point",
"vertex",
- "line",
"area"
],
"tags": {
- "tourism": "artwork",
- "artwork_type": "sculpture"
- },
- "reference": {
- "key": "artwork_type",
- "value": "sculpture"
+ "military": "nuclear_explosion_site"
}
},
- "tourism/artwork/statue": {
- "icon": "temaki-statue",
+ "military/checkpoint": {
+ "icon": "temaki-military_checkpoint",
"fields": [
- "name",
- "artist",
- "material"
+ "name"
],
"geometry": [
"point",
"vertex",
- "line",
"area"
],
"tags": {
- "tourism": "artwork",
- "artwork_type": "statue"
- },
- "reference": {
- "key": "artwork_type",
- "value": "statue"
+ "military": "checkpoint"
}
},
- "tourism/attraction": {
- "icon": "maki-star",
+ "military/bunker": {
+ "icon": "temaki-bunker",
+ "fields": [
+ "name",
+ "bunker_type",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "military": "bunker"
+ },
+ "addTags": {
+ "building": "bunker",
+ "military": "bunker"
+ }
+ },
+ "marker/utility": {
+ "icon": "temaki-silo",
+ "fields": [
+ "ref",
+ "operator",
+ "marker",
+ "utility",
+ "{marker}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "marker": "*",
+ "utility": "*"
+ }
+ },
+ "marker/utility/power": {
+ "icon": "temaki-silo",
+ "fields": [
+ "ref",
+ "operator",
+ "marker",
+ "{marker}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "marker": "*",
+ "utility": "power"
+ }
+ },
+ "man_made/works": {
+ "icon": "maki-industry",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "product"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "building_area",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "works"
+ }
+ },
+ "man_made/windpump": {
+ "icon": "temaki-windpump",
+ "fields": [
+ "ref",
+ "operator",
+ "height",
+ "material",
+ "manufacturer",
+ "lit"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "man_made": "windpump"
+ }
+ },
+ "man_made/windmill": {
+ "icon": "maki-windmill",
+ "fields": [
+ "name",
+ "start_date",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "address",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "windmill"
+ }
+ },
+ "man_made/watermill": {
+ "icon": "maki-watermill",
+ "fields": [
+ "name",
+ "start_date",
+ "building_area_yes",
+ "address"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "watermill"
+ }
+ },
+ "man_made/water_works": {
+ "icon": "temaki-powered_pump",
"fields": [
"name",
"operator",
@@ -25237,19 +10752,188 @@
],
"geometry": [
"point",
- "vertex",
- "line",
"area"
],
"tags": {
- "tourism": "attraction"
- },
- "matchScore": 0.75
+ "man_made": "water_works"
+ }
},
- "tourism/camp_pitch": {
- "icon": "maki-campsite",
+ "man_made/water_well": {
+ "icon": "temaki-well_pump_manual",
+ "fields": [
+ "ref",
+ "operator",
+ "drinking_water",
+ "pump",
+ "access_simple"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "water_well"
+ }
+ },
+ "man_made/water_tower": {
+ "icon": "temaki-water_tower",
+ "fields": [
+ "operator",
+ "height"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "man_made": "water_tower"
+ }
+ },
+ "man_made/water_tap": {
+ "icon": "temaki-water_tap",
+ "fields": [
+ "ref",
+ "operator",
+ "drinking_water",
+ "access_simple"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "man_made": "water_tap"
+ }
+ },
+ "man_made/wastewater_plant": {
+ "icon": "temaki-waste",
"fields": [
"name",
+ "operator",
+ "address",
+ "ref"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "wastewater_plant"
+ }
+ },
+ "man_made/video_wall": {
+ "icon": "temaki-billboard",
+ "fields": [
+ "support",
+ "operator",
+ "height",
+ "min_height"
+ ],
+ "moreFields": [
+ "ref",
+ "visibility"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "man_made": "video_wall"
+ }
+ },
+ "man_made/utility_pole": {
+ "icon": "temaki-utility_pole",
+ "fields": [
+ "ref",
+ "operator",
+ "utility_semi",
+ "height",
+ "material",
+ "line_attachment"
+ ],
+ "moreFields": [
+ "colour",
+ "manufacturer",
+ "line_management"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "man_made": "utility_pole"
+ }
+ },
+ "man_made/tunnel": {
+ "icon": "temaki-tunnel",
+ "fields": [
+ "name",
+ "tunnel_combo",
+ "layer",
+ "width",
+ "length",
+ "height"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "man_made": "tunnel"
+ },
+ "addTags": {
+ "man_made": "tunnel",
+ "layer": "-1"
+ },
+ "removeTags": {
+ "man_made": "tunnel",
+ "layer": "*"
+ },
+ "reference": {
+ "key": "man_made",
+ "value": "tunnel"
+ }
+ },
+ "man_made/tower": {
+ "icon": "temaki-tower",
+ "fields": [
+ "tower/type",
+ "tower/construction",
+ "height",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "architect",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "man_made": "tower"
+ }
+ },
+ "man_made/telescope": {
+ "icon": "fas-satellite-dish",
+ "fields": [
+ "name",
+ "telescope/type",
+ "operator",
"ref"
],
"geometry": [
@@ -25257,319 +10941,385 @@
"area"
],
"tags": {
- "tourism": "camp_pitch"
- }
- },
- "tourism/camp_site": {
- "icon": "maki-campsite",
- "fields": [
- "name",
- "operator",
- "address",
- "access_simple",
- "capacity/caravans",
- "capacity/persons",
- "capacity/tents",
- "fee",
- "payment_multi_fee",
- "charge_fee"
- ],
- "moreFields": [
- "backcountry",
- "dog",
- "drinking_water_available",
- "email",
- "fax",
- "gnis/feature_id-US",
- "group_only",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "openfire",
- "opening_hours",
- "opening_hours/covid19",
- "phone",
- "power_supply",
- "ref/vatin",
- "reservation",
- "sanitary_dump_station",
- "shower",
- "stars",
- "toilets",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "camp_site"
- }
- },
- "tourism/camp_site/backcountry": {
- "icon": "maki-campsite",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "camp_site",
- "backcountry": "yes"
+ "man_made": "telescope"
},
"reference": {
- "key": "backcountry"
+ "key": "man_made"
}
},
- "tourism/camp_site/group_only": {
- "icon": "maki-campsite",
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "camp_site",
- "group_only": "yes"
- },
- "reference": {
- "key": "group_only"
- }
- },
- "tourism/caravan_site": {
- "icon": "temaki-camper_trailer",
+ "man_made/tailings_pond": {
+ "icon": "maki-water",
"fields": [
"name",
- "address",
- "capacity/caravans",
- "sanitary_dump_station",
- "power_supply",
- "internet_access",
- "internet_access/fee"
- ],
- "moreFields": [
- "charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "internet_access/ssid",
+ "resource",
"operator",
- "payment_multi_fee",
- "phone",
- "reservation",
- "smoking",
- "wheelchair"
+ "intermittent"
],
"geometry": [
- "point",
- "vertex",
"area"
],
"tags": {
- "tourism": "caravan_site"
+ "man_made": "tailings_pond"
}
},
- "tourism/chalet": {
- "icon": "temaki-cabin",
+ "man_made/survey_point": {
+ "icon": "temaki-benchmark_disk",
"fields": [
"name",
- "operator",
- "address",
- "website",
- "email",
- "phone",
- "building_area_yes",
- "internet_access",
- "internet_access/fee"
+ "ref",
+ "survey_point/structure",
+ "survey_point/purpose",
+ "ele_node"
],
"moreFields": [
- "air_conditioning",
- "building/levels_building",
- "fax",
- "gnis/feature_id-US",
- "height_building",
- "internet_access/ssid",
- "payment_multi",
- "reservation",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "chalet"
- }
- },
- "tourism/gallery": {
- "icon": "maki-art-gallery",
- "fields": [
- "name",
- "operator",
- "address",
- "building_area_yes",
- "opening_hours"
- ],
- "moreFields": [
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "ref/vatin",
- "toilets",
- "toilets/wheelchair",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "gallery"
- }
- },
- "tourism/guest_house": {
- "icon": "maki-lodging",
- "fields": [
- "name",
- "operator",
- "guest_house",
- "address",
- "website",
- "email",
- "phone",
- "building_area_yes",
- "rooms",
- "internet_access",
- "internet_access/fee"
- ],
- "moreFields": [
- "air_conditioning",
- "building/levels_building",
- "fax",
- "gnis/feature_id-US",
- "height_building",
- "internet_access/ssid",
- "payment_multi",
- "ref/vatin",
- "reservation",
- "smoking",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "guest_house"
- }
- },
- "tourism/hostel": {
- "icon": "temaki-bunk_beds",
- "fields": [
- "{tourism/guest_house}"
- ],
- "moreFields": [
- "{tourism/guest_house}"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "hostel"
- }
- },
- "tourism/hotel": {
- "icon": "fas-concierge-bell",
- "fields": [
- "{tourism/motel}"
- ],
- "moreFields": [
- "{tourism/motel}",
- "bar",
- "ref/FR/siret-FR",
- "stars"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "hotel"
- }
- },
- "tourism/information": {
- "icon": "maki-information",
- "fields": [
- "information",
- "operator",
- "address",
- "building_area_yes"
- ],
- "moreFields": [
- "level"
- ],
- "geometry": [
- "point",
- "vertex",
- "area"
- ],
- "tags": {
- "tourism": "information"
- }
- },
- "tourism/information/board": {
- "icon": "temaki-info_board",
- "fields": [
- "name",
- "operator",
- "board_type",
- "direction",
- "subject/wikidata"
+ "survey_point/datum_aligned",
+ "inscription"
],
"geometry": [
"point",
"vertex"
],
"tags": {
- "tourism": "information",
- "information": "board"
- },
- "reference": {
- "key": "information",
- "value": "board"
+ "man_made": "survey_point"
}
},
- "tourism/information/board/welcome_sign": {
- "icon": "maki-embassy",
+ "man_made/surveillance": {
+ "icon": "temaki-security_camera",
"geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "surveillance",
+ "surveillance/type",
+ "surveillance/zone",
+ "direction"
+ ],
+ "tags": {
+ "man_made": "surveillance"
+ }
+ },
+ "man_made/street_cabinet": {
+ "icon": "fas-door-closed",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "ref",
+ "operator",
+ "utility_semi",
+ "height",
+ "colour"
+ ],
+ "moreFields": [
+ "model",
+ "street_cabinet"
+ ],
+ "tags": {
+ "man_made": "street_cabinet"
+ }
+ },
+ "man_made/storage_tank": {
+ "icon": "temaki-storage_tank",
+ "fields": [
+ "content",
+ "operator",
+ "material",
+ "building_area",
+ "height",
+ "capacity_volume"
+ ],
+ "moreFields": [
+ "layer",
+ "location",
+ "manufacturer"
+ ],
+ "geometry": [
+ "area",
"point"
],
"tags": {
- "tourism": "information",
- "information": "board",
- "board_type": "welcome_sign"
+ "man_made": "storage_tank"
}
},
- "tourism/information/guidepost": {
- "icon": "fas-map-signs",
+ "man_made/ski_jump": {
+ "icon": "temaki-ski_jumping",
"fields": [
"name",
- "ele_node",
- "operator",
- "ref",
- "activity"
+ "operator"
],
"moreFields": [
+ "building"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "ski_jump"
+ }
+ },
+ "man_made/silo": {
+ "icon": "temaki-silo",
+ "fields": [
+ "crop",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "silo"
+ }
+ },
+ "man_made/satellite_dish": {
+ "icon": "fas-satellite-dish",
+ "fields": [
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "satellite_dish"
+ }
+ },
+ "man_made/reservoir_covered": {
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "operator",
+ "capacity_volume",
+ "access_simple",
+ "layer"
+ ],
+ "moreFields": [
+ "ref"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "man_made": "reservoir_covered"
+ }
+ },
+ "man_made/quay": {
+ "icon": "temaki-quay",
+ "fields": [
+ "name",
+ "mooring"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "man_made": "quay"
+ }
+ },
+ "man_made/pumping_station": {
+ "icon": "temaki-powered_pump",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "address"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "tags": {
+ "man_made": "pumping_station"
+ }
+ },
+ "man_made/planter": {
+ "icon": "maki-garden",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "fields": [
+ "material",
+ "barrier_planter"
+ ],
+ "tags": {
+ "man_made": "planter"
+ },
+ "matchScore": 0.9
+ },
+ "man_made/pipeline": {
+ "icon": "iD-pipeline-line",
+ "fields": [
+ "operator",
+ "location",
+ "substance",
+ "layer",
+ "diameter"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "man_made": "pipeline"
+ }
+ },
+ "man_made/pier": {
+ "icon": "temaki-pier_fixed",
+ "fields": [
+ "name",
+ "mooring",
+ "surface",
+ "floating",
+ "width",
+ "access",
+ "lit"
+ ],
+ "moreFields": [
+ "{highway/footway}",
+ "fishing",
+ "gnis/feature_id-US",
+ "incline"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "man_made": "pier"
+ }
+ },
+ "man_made/petroleum_well": {
+ "icon": "temaki-oil_well",
+ "fields": [
+ "name",
+ "ref",
+ "operator",
+ "substance"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "man_made": "petroleum_well"
+ }
+ },
+ "man_made/observatory": {
+ "icon": "temaki-telescope",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "access_simple",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "observatory"
+ }
+ },
+ "man_made/obelisk": {
+ "icon": "temaki-obelisk",
+ "fields": [
+ "name",
+ "inscription",
+ "height",
+ "material",
+ "colour"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "man_made": "obelisk"
+ }
+ },
+ "man_made/monitoring_station": {
+ "icon": "temaki-antenna",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "fields": [
+ "monitoring_multi",
+ "operator",
+ "manufacturer"
+ ],
+ "moreFields": [
+ "ref"
+ ],
+ "tags": {
+ "man_made": "monitoring_station"
+ }
+ },
+ "man_made/mineshaft": {
+ "icon": "temaki-mineshaft_cage",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "resource"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "tags": {
+ "man_made": "mineshaft"
+ }
+ },
+ "man_made/milk_churn_stand": {
+ "icon": "temaki-milk_jug",
+ "fields": [
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "milk_churn_stand"
+ }
+ },
+ "man_made/mast": {
+ "icon": "temaki-mast",
+ "fields": [
+ "tower/type",
+ "tower/construction",
+ "height"
+ ],
+ "moreFields": [
+ "communication_multi",
+ "gnis/feature_id-US",
+ "manufacturer",
"material"
],
"geometry": [
@@ -25577,57 +11327,38 @@
"vertex"
],
"tags": {
- "tourism": "information",
- "information": "guidepost"
- },
- "reference": {
- "key": "information",
- "value": "guidepost"
+ "man_made": "mast"
}
},
- "tourism/information/map": {
- "icon": "fas-map",
+ "man_made/manhole": {
+ "icon": "temaki-manhole",
"fields": [
+ "manhole",
"operator",
- "map_type",
- "map_size",
- "direction",
- "activity"
+ "label",
+ "ref"
],
"geometry": [
"point",
"vertex"
],
"tags": {
- "tourism": "information",
- "information": "map"
- },
- "reference": {
- "key": "information",
- "value": "map"
+ "man_made": "manhole"
}
},
- "tourism/information/office": {
- "icon": "maki-information",
+ "man_made/lighthouse": {
+ "icon": "maki-lighthouse",
"fields": [
"name",
"operator",
- "address",
"building_area_yes",
- "internet_access",
- "internet_access/fee"
+ "height"
],
"moreFields": [
- "building/levels_building",
- "email",
- "fax",
+ "{@templates/contact}",
+ "address",
"gnis/feature_id-US",
- "height_building",
- "internet_access/ssid",
- "phone",
- "toilets",
- "toilets/wheelchair",
- "wheelchair"
+ "seamark/type"
],
"geometry": [
"point",
@@ -25635,82 +11366,1378 @@
"area"
],
"tags": {
- "tourism": "information",
- "information": "office"
- },
- "reference": {
- "key": "information",
- "value": "office"
+ "man_made": "lighthouse"
}
},
- "tourism/information/route_marker": {
- "icon": "maki-information",
- "fields": [
+ "man_made/insect_hotel": {
+ "icon": "fas-bugs",
+ "geometry": [
+ "point"
+ ],
+ "moreFields": [
"ref",
"operator",
- "colour",
+ "length",
+ "width",
+ "height"
+ ],
+ "tags": {
+ "man_made": "insect_hotel"
+ }
+ },
+ "man_made/groyne": {
+ "fields": [
"material",
- "ele_node"
+ "seamark/type"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "man_made": "groyne"
+ }
+ },
+ "man_made/goods_conveyor": {
+ "icon": "temaki-conveyor",
+ "fields": [
+ "name",
+ "ref",
+ "operator",
+ "oneway_yes",
+ "resource",
+ "width"
+ ],
+ "moreFields": [
+ "colour",
+ "covered",
+ "indoor",
+ "lit",
+ "manufacturer",
+ "material"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "man_made": "goods_conveyor"
+ }
+ },
+ "man_made/gasometer": {
+ "icon": "temaki-storage_tank",
+ "fields": [
+ "content",
+ "building_area_yes"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "gasometer"
+ }
+ },
+ "man_made/gantry": {
+ "icon": "temaki-toll_gantry",
+ "fields": [
+ "layer"
+ ],
+ "moreFields": [
+ "material",
+ "maxheight",
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "man_made": "gantry"
+ }
+ },
+ "man_made/fuel_pump": {
+ "icon": "maki-fuel",
+ "fields": [
+ "ref",
+ "fuel/fuel_multi",
+ "fuel/fuel_multi-RU",
+ "operator",
+ "self_service"
],
"geometry": [
"point",
"vertex"
],
"tags": {
- "tourism": "information",
- "information": "route_marker"
- },
- "reference": {
- "key": "information",
- "value": "route_marker"
+ "man_made": "fuel_pump"
}
},
- "tourism/information/terminal": {
- "icon": "temaki-app_terminal",
+ "man_made/footwear_decontamination-AU-NZ": {
+ "icon": "temaki-footwear_decontamination",
"fields": [
+ "operator",
+ "capacity"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "covered"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "man_made": "footwear_decontamination"
+ },
+ "locationSet": {
+ "include": [
+ "AU",
+ "NZ"
+ ]
+ }
+ },
+ "man_made/flare": {
+ "icon": "temaki-chimney",
+ "fields": [
+ "height"
+ ],
+ "moreFields": [
+ "ref",
+ "visibility"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "man_made": "flare"
+ }
+ },
+ "man_made/flagpole": {
+ "icon": "maki-embassy",
+ "fields": [
+ "operator",
+ "flag/type",
+ "country_flag",
+ "flag/name",
+ "flag/wikidata",
+ "lit",
+ "height"
+ ],
+ "moreFields": [
+ "manufacturer",
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "man_made": "flagpole"
+ }
+ },
+ "man_made/embankment": {
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "man_made": "embankment"
+ }
+ },
+ "man_made/dyke": {
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "man_made": "dyke"
+ }
+ },
+ "man_made/dovecote": {
+ "icon": "fas-dove",
+ "fields": [
+ "operator",
+ "building_area_yes",
+ "height",
+ "capacity"
+ ],
+ "moreFields": [
+ "layer",
+ "location"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "man_made": "dovecote"
+ }
+ },
+ "man_made/cutline": {
+ "icon": "maki-logging",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "man_made": "cutline"
+ }
+ },
+ "man_made/cross": {
+ "icon": "maki-religious-christian",
+ "fields": [
+ "name",
+ "material",
+ "height",
+ "ele_node",
+ "inscription",
+ "direction"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "man_made": "cross"
+ }
+ },
+ "man_made/crane": {
+ "icon": "roentgen-crane",
+ "fields": [
+ "operator",
+ "manufacturer",
+ "height",
+ "crane/type"
+ ],
+ "geometry": [
+ "point",
+ "line",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "man_made": "crane"
+ }
+ },
+ "man_made/compass_rose": {
+ "icon": "temaki-compass",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "compass_rose"
+ }
+ },
+ "man_made/clearcut": {
+ "icon": "maki-logging",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "man_made": "clearcut"
+ }
+ },
+ "man_made/clarifier": {
+ "icon": "temaki-waste",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "clarifier"
+ },
+ "addTags": {
+ "man_made": "clarifier",
+ "natural": "water",
+ "water": "wastewater"
+ }
+ },
+ "man_made/chimney": {
+ "icon": "temaki-chimney",
+ "fields": [
+ "operator",
+ "material",
+ "height"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "chimney"
+ }
+ },
+ "man_made/charge_point": {
+ "icon": "fas-plug-circle-bolt",
+ "fields": [
+ "capacity",
+ "ref"
+ ],
+ "moreFields": [
+ "level",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "man_made": "charge_point"
+ }
+ },
+ "man_made/ceremonial_gate": {
+ "icon": "fas-archway",
+ "fields": [
+ "ceremonial_gate",
+ "height",
+ "material",
+ "religion"
+ ],
+ "moreFields": [
+ "name",
+ "inscription",
+ "operator",
+ "access",
+ "ref",
+ "lit"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "man_made": "ceremonial_gate"
+ }
+ },
+ "man_made/carpet_hanger": {
+ "icon": "maki-picnic-site",
+ "fields": [
+ "material",
+ "height",
+ "colour"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "man_made": "carpet_hanger"
+ }
+ },
+ "man_made/cairn": {
+ "icon": "temaki-cairn",
+ "fields": [
+ "height",
+ "ele",
+ "ele_node",
+ "check_date"
+ ],
+ "moreFields": [
+ "colour",
+ "material",
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "cairn"
+ }
+ },
+ "man_made/bunker_silo": {
+ "icon": "temaki-bunker_silo",
+ "fields": [
+ "content"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "bunker_silo"
+ }
+ },
+ "man_made/bridge": {
+ "icon": "maki-bridge",
+ "fields": [
+ "name",
+ "bridge_combo",
+ "layer",
+ "maxweight",
+ "ref_bridge_number"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US",
+ "manufacturer",
+ "material",
+ "seamark/type"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "man_made": "bridge"
+ },
+ "addTags": {
+ "man_made": "bridge",
+ "layer": "1"
+ },
+ "removeTags": {
+ "man_made": "bridge",
+ "layer": "*"
+ },
+ "reference": {
+ "key": "man_made",
+ "value": "bridge"
+ }
+ },
+ "man_made/breakwater": {
+ "fields": [
+ "material",
+ "seamark/type"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "man_made": "breakwater"
+ }
+ },
+ "man_made/beehive": {
+ "icon": "fas-archive",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "ref",
+ "operator",
+ "seasonal",
+ "height",
+ "colour"
+ ],
+ "moreFields": [
+ "manufacturer"
+ ],
+ "tags": {
+ "man_made": "beehive"
+ }
+ },
+ "man_made/beacon": {
+ "icon": "maki-communications-tower",
+ "fields": [
+ "name",
+ "height"
+ ],
+ "moreFields": [
+ "seamark/type"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "man_made": "beacon"
+ },
+ "matchScore": 0.5
+ },
+ "man_made/antenna": {
+ "icon": "temaki-antenna",
+ "fields": [
+ "communication_multi",
+ "operator",
+ "manufacturer",
+ "height"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "man_made": "antenna"
+ }
+ },
+ "man_made/adit": {
+ "icon": "temaki-adit_profile",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "resource",
+ "direction"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "tags": {
+ "man_made": "adit"
+ }
+ },
+ "man_made/yes": {
+ "icon": "temaki-storage_tank",
+ "fields": [
+ "name",
+ "man_made",
+ "{man_made}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "man_made": "yes"
+ },
+ "matchScore": 0.5,
+ "searchable": false
+ },
+ "man_made/courtyard": {
+ "icon": "maki-square-stroked",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "man_made": "courtyard"
+ },
+ "searchable": false
+ },
+ "man_made/works/brewery": {
+ "icon": "temaki-storage_fermenter",
+ "fields": [
+ "{man_made/works}",
+ "website"
+ ],
+ "moreFields": [
+ "{man_made/works}",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "works",
+ "product": "beer"
+ },
+ "reference": {
+ "key": "product",
+ "value": "beer"
+ }
+ },
+ "man_made/tower/pagoda": {
+ "icon": "fas-vihara",
+ "moreFields": [
+ "{man_made/tower}",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "tower",
+ "tower:type": "pagoda"
+ },
+ "reference": {
+ "key": "tower:type",
+ "value": "pagoda"
+ }
+ },
+ "man_made/tower/observation": {
+ "icon": "maki-observation-tower",
+ "fields": [
+ "{man_made/tower}",
+ "access_simple",
+ "fee"
+ ],
+ "moreFields": [
+ "{man_made/tower}",
+ "opening_hours",
+ "direction"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "tower",
+ "tower:type": "observation"
+ },
+ "reference": {
+ "key": "tower:type",
+ "value": "observation"
+ }
+ },
+ "man_made/tower/minaret": {
+ "icon": "temaki-domed_tower",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "tower",
+ "tower:type": "minaret"
+ },
+ "reference": {
+ "key": "tower:type",
+ "value": "minaret"
+ }
+ },
+ "man_made/tower/diving": {
+ "icon": "roentgen-diving_1_platforms",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/tower}",
+ "tower/platforms"
+ ],
+ "tags": {
+ "man_made": "tower",
+ "tower:type": "diving"
+ },
+ "reference": {
+ "key": "tower:type",
+ "value": "diving"
+ }
+ },
+ "man_made/tower/defensive": {
+ "icon": "maki-castle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "tower",
+ "tower:type": "defensive"
+ },
+ "reference": {
+ "key": "tower:type",
+ "value": "defensive"
+ }
+ },
+ "man_made/tower/cooling": {
+ "icon": "temaki-cooling_tower",
+ "fields": [
+ "ref",
+ "operator",
+ "material",
+ "building_area_yes",
+ "height"
+ ],
+ "moreFields": [
+ "layer"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "man_made": "tower",
+ "tower:type": "cooling"
+ },
+ "reference": {
+ "key": "tower:type",
+ "value": "cooling"
+ }
+ },
+ "man_made/tower/communication": {
+ "icon": "temaki-tower_communication",
+ "fields": [
+ "{man_made/tower}",
+ "communication_multi",
+ "mimics"
+ ],
+ "moreFields": [
+ "{man_made/tower}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "man_made": "tower",
+ "tower:type": "communication"
+ },
+ "reference": {
+ "key": "tower:type",
+ "value": "communication"
+ }
+ },
+ "man_made/tower/bell_tower": {
+ "icon": "fas-bell",
+ "moreFields": [
+ "{man_made/tower}",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "tower",
+ "tower:type": "bell_tower"
+ },
+ "reference": {
+ "key": "tower:type",
+ "value": "bell_tower"
+ }
+ },
+ "man_made/telescope/radio": {
+ "icon": "roentgen-telescope-radio",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "telescope",
+ "telescope:type": "radio"
+ },
+ "reference": {
+ "key": "man_made"
+ }
+ },
+ "man_made/telescope/optical": {
+ "icon": "temaki-telescope",
+ "fields": [
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "man_made": "telescope",
+ "telescope:type": "optical"
+ },
+ "reference": {
+ "key": "man_made"
+ }
+ },
+ "man_made/surveillance/camera": {
+ "icon": "temaki-security_camera",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "surveillance",
+ "surveillance/type",
+ "camera/type",
+ "camera/mount",
+ "camera/direction",
+ "surveillance/zone",
+ "contact/webcam"
+ ],
+ "moreFields": [
+ "manufacturer"
+ ],
+ "tags": {
+ "man_made": "surveillance",
+ "surveillance:type": "camera"
+ }
+ },
+ "man_made/street_cabinet/waste": {
+ "icon": "maki-recycling",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/street_cabinet}"
+ ],
+ "moreFields": [
+ "{man_made/street_cabinet}"
+ ],
+ "tags": {
+ "man_made": "street_cabinet",
+ "street_cabinet": "waste"
+ },
+ "reference": {
+ "key": "man_made",
+ "value": "street_cabinet"
+ }
+ },
+ "man_made/street_cabinet/transport_management": {
+ "icon": "fas-door-closed",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/street_cabinet}"
+ ],
+ "moreFields": [
+ "{man_made/street_cabinet}"
+ ],
+ "tags": {
+ "man_made": "street_cabinet",
+ "street_cabinet": "transport_management"
+ },
+ "reference": {
+ "key": "man_made",
+ "value": "street_cabinet"
+ }
+ },
+ "man_made/street_cabinet/traffic_monitoring": {
+ "icon": "fas-door-closed",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/street_cabinet}"
+ ],
+ "moreFields": [
+ "{man_made/street_cabinet}"
+ ],
+ "tags": {
+ "man_made": "street_cabinet",
+ "street_cabinet": "traffic_monitoring"
+ },
+ "reference": {
+ "key": "man_made",
+ "value": "street_cabinet"
+ }
+ },
+ "man_made/street_cabinet/traffic_control": {
+ "icon": "fas-door-closed",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/street_cabinet}"
+ ],
+ "moreFields": [
+ "{man_made/street_cabinet}"
+ ],
+ "tags": {
+ "man_made": "street_cabinet",
+ "street_cabinet": "traffic_control"
+ },
+ "reference": {
+ "key": "man_made",
+ "value": "street_cabinet"
+ }
+ },
+ "man_made/street_cabinet/postal_service": {
+ "icon": "fas-door-closed",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{man_made/street_cabinet}"
+ ],
+ "moreFields": [
+ "{man_made/street_cabinet}"
+ ],
+ "tags": {
+ "man_made": "street_cabinet",
+ "street_cabinet": "postal_service"
+ },
+ "reference": {
+ "key": "street_cabinet",
+ "value": "postal_service"
+ }
+ },
+ "man_made/storage_tank/water": {
+ "icon": "temaki-storage_tank",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "moreFields": [
+ "{man_made/storage_tank}",
+ "covered",
+ "ref"
+ ],
+ "tags": {
+ "man_made": "storage_tank",
+ "content": "water"
+ }
+ },
+ "man_made/pipeline/underground": {
+ "icon": "iD-pipeline-line",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "man_made": "pipeline",
+ "location": "underground"
+ },
+ "addTags": {
+ "man_made": "pipeline",
+ "location": "underground",
+ "layer": "-1"
+ }
+ },
+ "man_made/pier/floating": {
+ "icon": "temaki-pier_floating",
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "man_made": "pier",
+ "floating": "yes"
+ }
+ },
+ "man_made/mast/lighting": {
+ "icon": "temaki-mast_lighting",
+ "fields": [
+ "{man_made/mast}",
+ "direction_point"
+ ],
+ "moreFields": [
+ "{man_made/mast}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "man_made": "mast",
+ "tower:type": "lighting"
+ },
+ "reference": {
+ "key": "tower:type",
+ "value": "lighting"
+ }
+ },
+ "man_made/mast/communication": {
+ "icon": "temaki-mast_communication",
+ "fields": [
+ "{man_made/mast}",
+ "communication_multi"
+ ],
+ "moreFields": [
+ "{man_made/mast}",
+ "mimics"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "man_made": "mast",
+ "tower:type": "communication"
+ },
+ "reference": {
+ "key": "tower:type",
+ "value": "communication"
+ }
+ },
+ "man_made/mast/communication/television": {
+ "icon": "temaki-mast_communication",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "man_made": "mast",
+ "tower:type": "communication",
+ "communication:television": "yes"
+ },
+ "reference": {
+ "key": "communication:television",
+ "value": "yes"
+ }
+ },
+ "man_made/mast/communication/radio": {
+ "icon": "temaki-mast_communication",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "man_made": "mast",
+ "tower:type": "communication",
+ "communication:radio": "yes"
+ },
+ "reference": {
+ "key": "communication:radio",
+ "value": "yes"
+ }
+ },
+ "man_made/mast/communication/mobile_phone": {
+ "icon": "temaki-mast_communication",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "man_made": "mast",
+ "tower:type": "communication",
+ "communication:mobile_phone": "yes"
+ },
+ "reference": {
+ "key": "communication:mobile_phone",
+ "value": "yes"
+ }
+ },
+ "man_made/manhole/water": {
+ "icon": "temaki-waste_manhole",
+ "fields": [
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "manhole": "water"
+ },
+ "addTags": {
+ "man_made": "manhole",
+ "manhole": "water"
+ }
+ },
+ "man_made/manhole/telecom": {
+ "icon": "temaki-cable_manhole",
+ "fields": [
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "manhole": "telecom"
+ },
+ "addTags": {
+ "man_made": "manhole",
+ "manhole": "telecom"
+ }
+ },
+ "man_made/manhole/sewer": {
+ "icon": "temaki-waste_manhole",
+ "fields": [
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "manhole": "sewer"
+ },
+ "addTags": {
+ "man_made": "manhole",
+ "manhole": "sewer"
+ }
+ },
+ "man_made/manhole/power": {
+ "icon": "temaki-power_manhole",
+ "fields": [
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "manhole": "power"
+ },
+ "addTags": {
+ "man_made": "manhole",
+ "manhole": "power"
+ }
+ },
+ "man_made/manhole/gas": {
+ "icon": "temaki-gas_manhole",
+ "fields": [
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "manhole": "gas"
+ },
+ "addTags": {
+ "man_made": "manhole",
+ "manhole": "gas"
+ }
+ },
+ "man_made/manhole/drain": {
+ "icon": "temaki-manhole",
+ "fields": [
+ "operator",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "manhole": "drain"
+ },
+ "addTags": {
+ "man_made": "manhole",
+ "manhole": "drain"
+ }
+ },
+ "man_made/crane/portal_crane": {
+ "icon": "roentgen-crane_portal",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "man_made": "crane",
+ "crane:type": "portal_crane"
+ },
+ "reference": {
+ "key": "crane:type",
+ "value": "portal_crane"
+ }
+ },
+ "man_made/crane/gantry_crane": {
+ "icon": "roentgen-crane_gantry",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "man_made": "crane",
+ "crane:type": "gantry_crane"
+ },
+ "reference": {
+ "key": "crane:type",
+ "value": "gantry_crane"
+ }
+ },
+ "man_made/ceremonial_gate/torii": {
+ "icon": "temaki-shinto",
+ "fields": [
+ "{man_made/ceremonial_gate}",
+ "colour"
+ ],
+ "moreFields": [
+ "{man_made/ceremonial_gate}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "ceremonial_gate": "torii"
+ },
+ "addTags": {
+ "man_made": "ceremonial_gate",
+ "ceremonial_gate": "torii"
+ },
+ "reference": {
+ "key": "ceremonial_gate",
+ "value": "torii"
+ }
+ },
+ "man_made/ceremonial_gate/paifang": {
+ "icon": "temaki-paifang",
+ "fields": [
+ "{man_made/ceremonial_gate}"
+ ],
+ "moreFields": [
+ "{man_made/ceremonial_gate}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "ceremonial_gate": "paifang"
+ },
+ "addTags": {
+ "man_made": "ceremonial_gate",
+ "ceremonial_gate": "paifang"
+ },
+ "reference": {
+ "key": "ceremonial_gate",
+ "value": "paifang"
+ }
+ },
+ "leisure/water_park": {
+ "icon": "fas-swimmer",
+ "fields": [
+ "{tourism/theme_park}",
+ "sport"
+ ],
+ "moreFields": [
+ "{tourism/theme_park}"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "water_park"
+ }
+ },
+ "leisure/trampoline_park": {
+ "icon": "fas-chevron-circle-up",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "branch_brand",
+ "brand",
+ "charge_fee",
+ "fee",
"operator"
],
"geometry": [
"point",
- "vertex"
+ "area"
],
"tags": {
- "tourism": "information",
- "information": "terminal"
- },
- "reference": {
- "key": "information",
- "value": "terminal"
+ "leisure": "trampoline_park"
}
},
- "tourism/motel": {
- "icon": "maki-lodging",
+ "leisure/track": {
+ "icon": "temaki-racetrack_oval",
+ "fields": [
+ "surface",
+ "sport/sport_racing_nonmotor",
+ "lit",
+ "width",
+ "lanes"
+ ],
+ "moreFields": [
+ "access",
+ "covered",
+ "gnis/feature_id-US",
+ "indoor",
+ "level"
+ ],
+ "geometry": [
+ "line",
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track"
+ }
+ },
+ "leisure/swimming_pool": {
+ "icon": "fas-swimming-pool",
"fields": [
"name",
- "brand",
+ "access_simple",
+ "lit",
+ "location_pool",
+ "length",
+ "swimming_pool"
+ ],
+ "moreFields": [
+ "address",
+ "level",
+ "gnis/feature_id-US",
+ "opening_hours",
+ "operator"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "swimming_pool"
+ }
+ },
+ "leisure/swimming_area": {
+ "icon": "fas-swimmer",
+ "fields": [
+ "name",
+ "access_simple",
+ "supervised",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "lit"
+ ],
+ "moreFields": [
+ "opening_hours",
+ "operator"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "leisure": "swimming_area"
+ }
+ },
+ "leisure/stadium": {
+ "icon": "maki-pitch",
+ "fields": [
+ "name",
+ "operator",
+ "sport",
+ "address"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "stadium"
+ }
+ },
+ "leisure/sports_hall": {
+ "icon": "maki-pitch",
+ "fields": [
+ "name",
+ "operator",
+ "sport",
"address",
- "website",
- "email",
- "phone",
"building_area_yes",
- "rooms",
- "internet_access",
- "internet_access/fee"
+ "opening_hours",
+ "access_simple"
],
"moreFields": [
"air_conditioning",
- "branch_brand",
- "brand",
- "building/levels_building",
- "fax",
- "gnis/feature_id-US",
- "height_building",
- "internet_access/ssid",
- "operator",
- "payment_multi",
- "ref/vatin",
- "reservation",
- "smoking",
+ "level",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
"wheelchair"
],
"geometry": [
@@ -25718,394 +12745,6870 @@
"area"
],
"tags": {
- "tourism": "motel"
+ "leisure": "sports_hall"
}
},
- "tourism/museum": {
- "icon": "temaki-museum",
+ "leisure/sports_centre": {
+ "icon": "maki-pitch",
"fields": [
"name",
"operator",
"operator/type",
- "museum",
+ "sport",
+ "building_area",
+ "address",
+ "fee",
+ "opening_hours",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "access_simple"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "sports_centre"
+ }
+ },
+ "leisure/slipway_drivable": {
+ "icon": "maki-slipway",
+ "fields": [
+ "{leisure/slipway}",
+ "lanes"
+ ],
+ "moreFields": [
+ "{leisure/slipway}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "leisure": "slipway",
+ "highway": "service"
+ },
+ "addTags": {
+ "leisure": "slipway",
+ "highway": "service",
+ "service": "slipway"
+ },
+ "matchScore": 1.1
+ },
+ "leisure/slipway": {
+ "icon": "maki-slipway",
+ "fields": [
+ "name",
+ "surface",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "lit",
+ "opening_hours",
+ "seamark/type",
+ "width"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "leisure": "slipway"
+ }
+ },
+ "leisure/sauna": {
+ "icon": "fas-thermometer-three-quarters",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "opening_hours",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "level"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "sauna"
+ }
+ },
+ "leisure/resort": {
+ "icon": "maki-lodging",
+ "fields": [
+ "name",
+ "operator",
+ "resort",
+ "address",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "access_simple"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "resort"
+ }
+ },
+ "leisure/playground": {
+ "icon": "maki-playground",
+ "fields": [
+ "name",
+ "operator",
+ "surface",
+ "access_simple",
+ "min_age",
+ "max_age"
+ ],
+ "moreFields": [
+ "playground/theme",
+ "blind",
+ "dog",
+ "gnis/feature_id-US",
+ "indoor",
+ "wheelchair"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "playground"
+ }
+ },
+ "leisure/pitch": {
+ "icon": "maki-pitch",
+ "fields": [
+ "name",
+ "sport",
+ "access_simple",
+ "surface",
+ "lit",
+ "ref"
+ ],
+ "moreFields": [
+ "address",
+ "charge_fee",
+ "covered",
+ "fee",
+ "gnis/feature_id-US",
+ "indoor",
+ "payment_multi_fee"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch"
+ }
+ },
+ "leisure/picnic_table": {
+ "icon": "maki-picnic-site",
+ "fields": [
+ "material",
+ "lit",
+ "bench",
+ "colour"
+ ],
+ "moreFields": [
+ "height",
+ "level",
+ "manufacturer",
+ "operator"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "leisure": "picnic_table"
+ }
+ },
+ "leisure/park": {
+ "icon": "temaki-tree_and_bench",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "access_simple",
+ "dog",
+ "gnis/feature_id-US",
+ "smoking"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "park"
+ }
+ },
+ "leisure/outdoor_seating": {
+ "icon": "maki-picnic-site",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "lit",
+ "seasonal",
+ "heating"
+ ],
+ "moreFields": [
+ "level",
+ "wheelchair"
+ ],
+ "tags": {
+ "leisure": "outdoor_seating"
+ }
+ },
+ "leisure/nature_reserve": {
+ "icon": "maki-park",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "access_simple",
+ "dog",
+ "gnis/feature_id-US"
+ ],
+ "tags": {
+ "leisure": "nature_reserve"
+ }
+ },
+ "leisure/miniature_golf": {
+ "icon": "temaki-golf_green",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "opening_hours",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "miniature_golf"
+ }
+ },
+ "leisure/marina_no_facilities": {
+ "icon": "temaki-sailboat",
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "gnis/feature_id-US",
+ "seamark/harbour/category_marina",
+ "seamark/type"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "seamark:harbour:category": "marina_no_facilities"
+ },
+ "addTags": {
+ "leisure": "marina",
+ "seamark:type": "harbour",
+ "seamark:harbour:category": "marina_no_facilities"
+ }
+ },
+ "leisure/marina": {
+ "icon": "temaki-sailboat",
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "sanitary_dump_station",
+ "power_supply"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/contact}",
+ "address",
+ "gnis/feature_id-US",
+ "seamark/harbour/category_marina",
+ "seamark/type",
+ "vhf"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "leisure": "marina"
+ },
+ "addTags": {
+ "leisure": "marina",
+ "seamark:type": "harbour",
+ "seamark:harbour:category": "marina"
+ }
+ },
+ "leisure/indoor_play": {
+ "icon": "temaki-slide",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "blind",
+ "branch_brand",
+ "brand",
+ "charge_fee",
+ "dog",
+ "fee",
+ "max_age",
+ "min_age",
+ "fhrs/id-GB",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "indoor_play"
+ }
+ },
+ "leisure/ice_rink": {
+ "icon": "fas-skating",
+ "fields": [
+ "name",
+ "seasonal",
+ "sport/sport_ice",
+ "operator",
+ "address",
+ "building",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "gnis/feature_id-US",
+ "level",
+ "payment_multi"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "ice_rink"
+ }
+ },
+ "leisure/hot_tub": {
+ "icon": "fas-hot-tub-person",
+ "fields": [
+ "access_simple",
+ "location_pool"
+ ],
+ "moreFields": [
+ "level",
+ "gender",
+ "lit",
+ "nudism",
+ "opening_hours",
+ "operator"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "hot_tub"
+ }
+ },
+ "leisure/horse_riding": {
+ "icon": "maki-horse-riding",
+ "fields": [
+ "name",
+ "access_simple",
+ "operator",
+ "address"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "contact/facebook",
+ "gnis/feature_id-US",
+ "opening_hours",
+ "payment_multi"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "horse_riding"
+ }
+ },
+ "leisure/hackerspace": {
+ "icon": "fas-code",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "website",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "hackerspace"
+ }
+ },
+ "leisure/golf_course": {
+ "icon": "maki-golf",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "golf_course"
+ }
+ },
+ "leisure/garden": {
+ "icon": "maki-garden",
+ "fields": [
+ "name",
+ "garden/type",
+ "operator",
+ "operator/type",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "garden"
+ }
+ },
+ "leisure/fitness_station": {
+ "icon": "temaki-horizontal_bar",
+ "fields": [
+ "fitness_station",
+ "ref",
+ "wheelchair",
+ "blind"
+ ],
+ "moreFields": [
+ "access_simple",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_centre": {
+ "icon": "fas-dumbbell",
+ "fields": [
+ "name",
+ "sport",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "branch_brand",
+ "brand",
+ "charge_fee",
+ "fee"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_centre"
+ }
+ },
+ "leisure/fishing": {
+ "icon": "fas-fish",
+ "fields": [
+ "name",
+ "access_simple",
+ "fishing"
+ ],
+ "geometry": [
+ "vertex",
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fishing"
+ }
+ },
+ "leisure/firepit": {
+ "icon": "temaki-campfire",
+ "fields": [
+ "access_simple",
+ "seasonal",
+ "width"
+ ],
+ "moreFields": [
+ "ref",
+ "wood_provided"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "firepit"
+ }
+ },
+ "leisure/escape_game": {
+ "icon": "fas-puzzle-piece",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "website",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "escape_game"
+ }
+ },
+ "leisure/dog_park": {
+ "icon": "maki-dog-park",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "access_simple",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "dog_yes",
+ "gnis/feature_id-US",
+ "ref"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "dog_park"
+ }
+ },
+ "leisure/disc_golf_course": {
+ "icon": "temaki-disc_golf_basket",
+ "fields": [
+ "name",
+ "operator",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "dog",
+ "gnis/feature_id-US",
+ "lit",
+ "wheelchair"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "disc_golf_course"
+ }
+ },
+ "leisure/dance": {
+ "icon": "fas-music",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "dance/style",
+ "dance/teaching"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "dance"
+ }
+ },
+ "leisure/common": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "name",
+ "access_simple"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "common"
+ }
+ },
+ "leisure/bowling_alley": {
+ "icon": "temaki-bowling",
+ "fields": [
+ "name",
+ "operator",
"address",
"building_area_yes",
"opening_hours"
],
"moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
"air_conditioning",
- "building/levels_building",
- "charge_fee",
- "email",
- "fax",
- "fee",
- "gnis/feature_id-US",
- "height_building",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "toilets",
- "toilets/wheelchair",
- "wheelchair"
+ "min_age",
+ "fhrs/id-GB",
+ "smoking"
],
"geometry": [
"point",
"area"
],
"tags": {
- "tourism": "museum"
+ "leisure": "bowling_alley"
}
},
- "tourism/museum/history": {
- "icon": "temaki-museum",
+ "leisure/bleachers": {
+ "icon": "temaki-bleachers",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "leisure": "bleachers"
+ }
+ },
+ "leisure/bird_hide": {
+ "icon": "temaki-binoculars",
+ "fields": [
+ "name",
+ "building_area_yes",
+ "address",
+ "opening_hours"
+ ],
"geometry": [
"point",
"area"
],
"tags": {
- "tourism": "museum",
- "museum": "history"
+ "leisure": "bird_hide"
+ }
+ },
+ "leisure/beach_resort": {
+ "icon": "fas-umbrella-beach",
+ "fields": [
+ "name",
+ "address",
+ "opening_hours",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "beach_resort"
+ }
+ },
+ "leisure/bathing_place": {
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "access_simple",
+ "informal",
+ "shower",
+ "toilets",
+ "drinking_water_available",
+ "picnic_table"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "bathing_place"
+ }
+ },
+ "leisure/bandstand": {
+ "icon": "fas-music",
+ "fields": [
+ "name",
+ "building_area_yes",
+ "operator"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "bandstand"
+ }
+ },
+ "leisure/amusement_arcade": {
+ "icon": "maki-gaming",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "max_age",
+ "min_age",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "amusement_arcade"
+ }
+ },
+ "leisure/adult_gaming_centre": {
+ "icon": "temaki-casino",
+ "fields": [
+ "{amenity/casino}"
+ ],
+ "moreFields": [
+ "{amenity/casino}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "adult_gaming_centre"
+ }
+ },
+ "leisure/track/running": {
+ "icon": "fas-running",
+ "fields": [
+ "name",
+ "surface",
+ "sport/sport_racing_nonmotor",
+ "lit",
+ "width",
+ "lanes"
+ ],
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "running"
},
"reference": {
- "key": "museum",
- "value": "history"
+ "key": "sport",
+ "value": "running"
}
},
- "tourism/picnic_site": {
- "icon": "maki-picnic-site",
+ "leisure/track/horse_racing": {
+ "icon": "maki-racetrack-horse",
"fields": [
"name",
- "operator",
- "address",
+ "surface",
+ "sport/sport_racing_nonmotor",
+ "lit",
+ "width",
+ "lanes"
+ ],
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "horse_racing"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "horse_racing"
+ }
+ },
+ "leisure/track/cycling": {
+ "icon": "maki-racetrack-cycling",
+ "fields": [
+ "name",
+ "surface",
+ "sport/sport_racing_nonmotor",
+ "lit",
+ "width",
+ "lanes"
+ ],
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "cycling"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "cycling"
+ }
+ },
+ "leisure/track/athletics": {
+ "icon": "fas-running",
+ "fields": [
+ "athletics_track",
+ "{leisure/track}"
+ ],
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "athletics"
+ },
+ "searchable": false
+ },
+ "leisure/track/athletics/triple_jump": {
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "triple_jump"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "triple_jump"
+ }
+ },
+ "leisure/track/athletics/steeplechase": {
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "steeplechase"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "steeplechase"
+ }
+ },
+ "leisure/track/athletics/sprint": {
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "sprint"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "sprint"
+ }
+ },
+ "leisure/track/athletics/pole_vault": {
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "pole_vault"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "pole_vault"
+ }
+ },
+ "leisure/track/athletics/long_jump": {
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "long_jump"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "long_jump"
+ }
+ },
+ "leisure/track/athletics/javelin_throw": {
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "javelin_throw"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "javelin_throw"
+ }
+ },
+ "leisure/track/athletics/running": {
+ "icon": "fas-running",
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "leisure": "track",
+ "sport": "athletics",
+ "athletics": "running"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "running"
+ },
+ "searchable": false
+ },
+ "leisure/sports_centre/swimming": {
+ "icon": "fas-swimmer",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "sports_centre",
+ "sport": "swimming"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "swimming"
+ }
+ },
+ "leisure/sports_centre/shooting": {
+ "icon": "fas-crosshairs",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "sports_centre",
+ "sport": "shooting"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "shooting"
+ }
+ },
+ "leisure/sports_centre/karting": {
+ "icon": "fas-flag-checkered",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "sports_centre",
+ "sport": "karting"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "karting"
+ }
+ },
+ "leisure/sports_centre/horse_racing": {
+ "icon": "maki-racetrack-horse",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "sports_centre",
+ "sport": "horse_racing"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "horse_racing"
+ }
+ },
+ "leisure/sports_centre/climbing_adventure": {
+ "icon": "temaki-abseiling",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{leisure/sports_centre}"
+ ],
+ "tags": {
+ "leisure": "sports_centre",
+ "sport": "climbing_adventure"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "climbing_adventure"
+ }
+ },
+ "leisure/sports_centre/climbing": {
+ "icon": "temaki-abseiling",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "fields": [
+ "{leisure/sports_centre}",
+ "building_area_yes"
+ ],
+ "tags": {
+ "leisure": "sports_centre",
+ "sport": "climbing"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "climbing"
+ }
+ },
+ "leisure/playground/indoor": {
+ "icon": "maki-playground",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "playground",
+ "indoor": "yes"
+ }
+ },
+ "leisure/pitch/volleyball": {
+ "icon": "maki-volleyball",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "volleyball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "volleyball"
+ }
+ },
+ "leisure/pitch/tetherball": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "tetherball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "tetherball"
+ }
+ },
+ "leisure/pitch/tennis": {
+ "icon": "maki-tennis",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "tennis"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "tennis"
+ }
+ },
+ "leisure/pitch/table_tennis": {
+ "icon": "fas-table-tennis",
+ "fields": [
+ "name",
+ "lit",
+ "access_simple"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "table_tennis"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "table_tennis"
+ }
+ },
+ "leisure/pitch/table_soccer": {
+ "fields": [
+ "name",
+ "lit",
+ "access_simple"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "table_soccer"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "table_soccer"
+ }
+ },
+ "leisure/pitch/softball": {
+ "icon": "maki-baseball",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "softball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "softball"
+ }
+ },
+ "leisure/pitch/soccer": {
+ "icon": "maki-soccer",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "soccer"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "soccer"
+ }
+ },
+ "leisure/pitch/skateboard": {
+ "icon": "maki-skateboard",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "skateboard"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "skateboard"
+ }
+ },
+ "leisure/pitch/shuffleboard": {
+ "icon": "temaki-shuffleboard",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "shuffleboard"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "shuffleboard"
+ }
+ },
+ "leisure/pitch/shooting": {
+ "icon": "fas-crosshairs",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "shooting"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "shooting"
+ }
+ },
+ "leisure/pitch/rugby_union": {
+ "icon": "maki-american-football",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "rugby_union"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "rugby_union"
+ }
+ },
+ "leisure/pitch/rugby_league": {
+ "icon": "maki-american-football",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "rugby_league"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "rugby_league"
+ }
+ },
+ "leisure/pitch/pickleball": {
+ "icon": "maki-tennis",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "pickleball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "pickleball"
+ }
+ },
+ "leisure/pitch/paintball": {
+ "icon": "fas-crosshairs",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "paintball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "paintball"
+ }
+ },
+ "leisure/pitch/padel": {
+ "icon": "maki-tennis",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "padel"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "padel"
+ }
+ },
+ "leisure/pitch/netball": {
+ "icon": "maki-volleyball",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "netball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "netball"
+ }
+ },
+ "leisure/pitch/horseshoes": {
+ "icon": "temaki-horseshoes",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "horseshoes"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "horseshoes"
+ }
+ },
+ "leisure/pitch/handball": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "handball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "handball"
+ }
+ },
+ "leisure/pitch/gaga": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "gaga"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "gaga"
+ }
+ },
+ "leisure/pitch/futsal": {
+ "icon": "maki-soccer",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "futsal"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "futsal"
+ }
+ },
+ "leisure/pitch/funnel_ball": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "funnel_ball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "funnel_ball"
+ }
+ },
+ "leisure/pitch/four_square": {
+ "icon": "fas-border-all",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "four_square"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "four_square"
+ }
+ },
+ "leisure/pitch/field_hockey": {
+ "icon": "temaki-field_hockey",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "field_hockey"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "field_hockey"
+ }
+ },
+ "leisure/pitch/equestrian": {
+ "icon": "maki-horse-riding",
+ "fields": [
+ "{leisure/pitch}"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "equestrian"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "equestrian"
+ }
+ },
+ "leisure/pitch/cricket": {
+ "icon": "maki-cricket",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "cricket"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "cricket"
+ }
+ },
+ "leisure/pitch/chess": {
+ "icon": "fas-chess-bishop",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "chess"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "chess"
+ }
+ },
+ "leisure/pitch/bowls": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "bowls"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "bowls"
+ }
+ },
+ "leisure/pitch/boules": {
+ "icon": "maki-pitch",
+ "fields": [
+ "name",
+ "boules",
+ "{leisure/pitch}"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "boules"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "boules"
+ }
+ },
+ "leisure/pitch/beachvolleyball": {
+ "icon": "maki-volleyball",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "beachvolleyball"
+ },
+ "addTags": {
+ "leisure": "pitch",
+ "sport": "beachvolleyball",
+ "surface": "sand"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "beachvolleyball"
+ }
+ },
+ "leisure/pitch/basketball": {
+ "icon": "maki-basketball",
+ "fields": [
+ "{leisure/pitch}",
+ "hoops"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "basketball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "basketball"
+ }
+ },
+ "leisure/pitch/baseball": {
+ "icon": "maki-baseball",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "baseball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "baseball"
+ }
+ },
+ "leisure/pitch/badminton": {
+ "icon": "maki-tennis",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "badminton"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "badminton"
+ }
+ },
+ "leisure/pitch/australian_football": {
+ "icon": "maki-american-football",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "australian_football"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "australian_football"
+ }
+ },
+ "leisure/pitch/archery": {
+ "icon": "temaki-archery",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "archery"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "archery"
+ }
+ },
+ "leisure/pitch/american_handball": {
+ "icon": "temaki-wall",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "american_handball"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "american_handball"
+ }
+ },
+ "leisure/pitch/american_football": {
+ "icon": "maki-american-football",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "american_football"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "american_football"
+ }
+ },
+ "leisure/pitch/athletics": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "fields": [
+ "athletics_pitch",
"access_simple",
- "capacity"
+ "surface",
+ "lit"
],
"moreFields": [
+ "{leisure/pitch}",
+ "ref"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "athletics"
+ },
+ "searchable": false
+ },
+ "leisure/pitch/athletics/triple_jump": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "triple_jump"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "triple_jump"
+ }
+ },
+ "leisure/pitch/athletics/shot_put": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "shot_put"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "shot_put"
+ }
+ },
+ "leisure/pitch/athletics/pole_vault": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "pole_vault"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "pole_vault"
+ }
+ },
+ "leisure/pitch/athletics/long_jump": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "long_jump"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "long_jump"
+ }
+ },
+ "leisure/pitch/athletics/javelin_throw": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "javelin_throw"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "javelin_throw"
+ }
+ },
+ "leisure/pitch/athletics/high_jump": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "high_jump"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "high_jump"
+ }
+ },
+ "leisure/pitch/athletics/hammer_throw": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "hammer_throw"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "hammer_throw"
+ }
+ },
+ "leisure/pitch/athletics/discus_throw": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "leisure": "pitch",
+ "sport": "athletics",
+ "athletics": "discus_throw"
+ },
+ "reference": {
+ "key": "athletics",
+ "value": "discus_throw"
+ }
+ },
+ "leisure/picnic_table/chess": {
+ "icon": "fas-chess-pawn",
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "leisure": "picnic_table",
+ "sport": "chess"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "chess"
+ }
+ },
+ "leisure/garden/residential": {
+ "icon": "maki-garden",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "leisure": "garden",
+ "garden:type": "residential"
+ },
+ "reference": {
+ "key": "garden:type"
+ }
+ },
+ "leisure/garden/kitchen": {
+ "icon": "fas-carrot",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name",
+ "garden/type",
+ "operator",
+ "operator/type"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "access_simple",
"charge_fee",
"fee",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "level",
- "payment_multi_fee",
- "phone",
- "reservation",
- "smoking",
- "wheelchair"
+ "payment_multi_fee"
],
+ "tags": {
+ "leisure": "garden",
+ "garden:style": "kitchen"
+ },
+ "reference": {
+ "key": "garden:style"
+ }
+ },
+ "leisure/garden/community": {
+ "icon": "maki-garden",
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "tourism": "picnic_site"
+ "leisure": "garden",
+ "garden:type": "community"
+ },
+ "reference": {
+ "key": "garden:type",
+ "value": "community"
}
},
- "tourism/theme_park": {
- "icon": "maki-amusement-park",
+ "leisure/garden/botanical": {
+ "icon": "maki-garden",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "garden",
+ "garden:type": "botanical"
+ },
+ "reference": {
+ "key": "garden:type",
+ "value": "botanical"
+ }
+ },
+ "leisure/fitness_station/stairs": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "stairs"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "stairs",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_station/sit-up": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "sit-up"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "sit-up",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_station/sign": {
+ "icon": "roentgen-i_in_square",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "sign"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "sign",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_station/rings": {
+ "icon": "roentgen-rings",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "rings"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "rings",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_station/push-up": {
+ "icon": "roentgen-bench",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "push-up"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "push-up",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_station/parallel_bars": {
+ "icon": "temaki-horizontal_bar",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "parallel_bars"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "parallel_bars",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_station/hyperextension": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "hyperextension"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "hyperextension",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_station/horizontal_ladder": {
+ "icon": "roentgen-horizontal_ladder",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "horizontal_ladder"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "horizontal_ladder",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_station/horizontal_bar": {
+ "icon": "temaki-horizontal_bar",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "horizontal_bar"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "horizontal_bar",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_station/box": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "box"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "box",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_station/balance_beam": {
+ "icon": "temaki-balance_beam",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_station",
+ "fitness_station": "balance_beam"
+ },
+ "addTags": {
+ "leisure": "fitness_station",
+ "fitness_station": "balance_beam",
+ "sport": "fitness"
+ },
+ "reference": {
+ "key": "leisure",
+ "value": "fitness_station"
+ }
+ },
+ "leisure/fitness_centre/yoga": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "leisure": "fitness_centre",
+ "sport": "yoga"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "yoga"
+ }
+ },
+ "landuse/winter_sports": {
+ "icon": "fas-skiing",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name",
+ "operator"
+ ],
+ "moreFields": [
+ "access_simple",
+ "address",
+ "opening_hours"
+ ],
+ "tags": {
+ "landuse": "winter_sports"
+ }
+ },
+ "landuse/vineyard": {
+ "icon": "temaki-grapes",
+ "fields": [
+ "name",
+ "operator",
+ "grape_variety"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "vineyard"
+ },
+ "addTags": {
+ "landuse": "vineyard",
+ "crop": "grape"
+ },
+ "removeTags": {
+ "landuse": "vineyard",
+ "crop": "grape",
+ "grape_variety": "*"
+ }
+ },
+ "landuse/salt_pond": {
+ "icon": "maki-triangle-stroked",
+ "fields": [
+ "name",
+ "operator"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "salt_pond"
+ }
+ },
+ "landuse/retail": {
+ "icon": "maki-commercial",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "tags": {
+ "landuse": "retail"
+ },
+ "matchScore": 0.9
+ },
+ "landuse/residential": {
+ "icon": "maki-residential-community",
+ "fields": [
+ "name",
+ "residential"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "residential"
+ },
+ "matchScore": 0.9
+ },
+ "landuse/religious": {
+ "icon": "maki-place-of-worship",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name",
+ "religion",
+ "denomination"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "tags": {
+ "landuse": "religious"
+ }
+ },
+ "landuse/recreation_ground": {
+ "icon": "maki-pitch",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "tags": {
+ "landuse": "recreation_ground"
+ }
+ },
+ "landuse/railway": {
+ "icon": "temaki-train",
+ "fields": [
+ "operator"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "railway"
+ }
+ },
+ "landuse/quarry": {
+ "icon": "temaki-pick_hammer",
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "resource"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "tags": {
+ "landuse": "quarry"
+ }
+ },
+ "landuse/plant_nursery": {
+ "icon": "fas-seedling",
+ "fields": [
+ "name",
+ "operator",
+ "plant"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "plant_nursery"
+ }
+ },
+ "landuse/orchard": {
+ "icon": "maki-park",
+ "fields": [
+ "name",
+ "operator",
+ "trees"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "species/wikidata"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "orchard"
+ }
+ },
+ "landuse/military": {
+ "icon": "temaki-military",
+ "fields": [
+ "name"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "military"
+ },
+ "matchScore": 0.9
+ },
+ "landuse/meadow": {
+ "icon": "maki-garden",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name"
+ ],
+ "tags": {
+ "landuse": "meadow"
+ }
+ },
+ "landuse/landfill": {
+ "icon": "temaki-bulldozer",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name",
+ "operator"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "tags": {
+ "landuse": "landfill"
+ }
+ },
+ "landuse/industrial": {
+ "icon": "maki-industry",
+ "fields": [
+ "name",
+ "industrial"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "operator"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "industrial"
+ },
+ "matchScore": 0.9
+ },
+ "landuse/harbour": {
+ "icon": "maki-harbor",
+ "fields": [
+ "name",
+ "operator"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "harbour"
+ }
+ },
+ "landuse/greenhouse_horticulture": {
+ "icon": "maki-garden",
+ "fields": [
+ "name",
+ "operator"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "greenhouse_horticulture"
+ },
+ "matchScore": 0.9
+ },
+ "landuse/greenfield": {
+ "icon": "temaki-bulldozer",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name"
+ ],
+ "tags": {
+ "landuse": "greenfield"
+ },
+ "matchScore": 0.9
+ },
+ "landuse/grass": {
+ "icon": "temaki-lawn",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "grass"
+ }
+ },
+ "landuse/garages": {
+ "icon": "fas-warehouse",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "tags": {
+ "landuse": "garages"
+ }
+ },
+ "landuse/forest": {
+ "icon": "maki-park-alt1",
+ "fields": [
+ "name",
+ "leaf_type",
+ "leaf_cycle",
+ "produce"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "forest"
+ }
+ },
+ "landuse/flowerbed": {
+ "icon": "maki-garden",
+ "fields": [
+ "operator"
+ ],
+ "moreFields": [
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "flowerbed"
+ }
+ },
+ "landuse/farmyard": {
+ "icon": "maki-farm",
+ "fields": [
+ "name",
+ "operator"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "farmyard"
+ }
+ },
+ "landuse/farmland": {
+ "icon": "fas-tractor",
+ "fields": [
+ "name",
+ "operator",
+ "crop",
+ "produce"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "irrigation_pivot"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "farmland"
+ }
+ },
+ "landuse/education": {
+ "icon": "temaki-school",
+ "fields": [
+ "name",
+ "operator"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "education"
+ },
+ "matchScore": 0.9
+ },
+ "landuse/construction": {
+ "icon": "temaki-bulldozer",
+ "fields": [
+ "name",
+ "construction",
+ "operator",
+ "opening_date",
+ "check_date",
+ "note"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "construction"
+ },
+ "removeTags": {
+ "landuse": "construction",
+ "construction": "*"
+ }
+ },
+ "landuse/commercial": {
+ "icon": "maki-suitcase",
+ "fields": [
+ "name"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "commercial"
+ },
+ "matchScore": 0.9
+ },
+ "landuse/cemetery": {
+ "icon": "maki-cemetery",
+ "fields": [
+ "name",
+ "religion",
+ "denomination"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "landuse": "cemetery"
+ }
+ },
+ "landuse/brownfield": {
+ "icon": "temaki-bulldozer",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name"
+ ],
+ "tags": {
+ "landuse": "brownfield"
+ },
+ "matchScore": 0.9
+ },
+ "landuse/aquaculture": {
+ "icon": "maki-aquarium",
+ "fields": [
+ "name",
+ "operator",
+ "produce"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "landuse": "aquaculture"
+ }
+ },
+ "landuse/allotments": {
+ "icon": "maki-garden-centre",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name",
+ "operator",
+ "plots"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "tags": {
+ "landuse": "allotments"
+ }
+ },
+ "landuse/reservoir": {
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "intermittent"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "reservoir"
+ },
+ "searchable": false
+ },
+ "landuse/pond": {
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "intermittent"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "pond"
+ },
+ "searchable": false
+ },
+ "landuse/farm": {
+ "icon": "maki-farm",
+ "fields": [
+ "name",
+ "operator",
+ "crop"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "landuse": "farm"
+ },
+ "searchable": false
+ },
+ "landuse/churchyard": {
+ "icon": "maki-religious-christian",
+ "fields": [
+ "{landuse/religious}"
+ ],
+ "moreFields": [
+ "{landuse/religious}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "churchyard"
+ },
+ "searchable": false
+ },
+ "landuse/basin": {
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "basin",
+ "intermittent_yes"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "basin"
+ },
+ "searchable": false
+ },
+ "landuse/residential/trailer_park": {
+ "icon": "temaki-manufactured_home",
+ "fields": [
+ "name",
+ "operator",
+ "address"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "residential": "trailer_park"
+ },
+ "addTags": {
+ "landuse": "residential",
+ "residential": "trailer_park"
+ },
+ "reference": {
+ "key": "residential",
+ "value": "trailer_park"
+ }
+ },
+ "landuse/residential/apartments": {
+ "icon": "maki-residential-community",
+ "fields": [
+ "name",
+ "operator",
+ "address"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "residential": "apartments"
+ },
+ "addTags": {
+ "landuse": "residential",
+ "residential": "apartments"
+ },
+ "reference": {
+ "key": "residential",
+ "value": "apartments"
+ }
+ },
+ "landuse/military/training_area": {
+ "icon": "temaki-military",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "military": "training_area"
+ },
+ "addTags": {
+ "landuse": "military",
+ "military": "training_area"
+ }
+ },
+ "landuse/military/range": {
+ "icon": "fas-bullseye",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "military": "range"
+ },
+ "addTags": {
+ "landuse": "military",
+ "military": "range"
+ }
+ },
+ "landuse/military/obstacle_course": {
+ "icon": "temaki-tire_course",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "military": "obstacle_course"
+ },
+ "addTags": {
+ "landuse": "military",
+ "military": "obstacle_course"
+ }
+ },
+ "landuse/military/danger_area": {
+ "icon": "maki-danger",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "military": "danger_area"
+ },
+ "addTags": {
+ "landuse": "military",
+ "military": "danger_area"
+ }
+ },
+ "landuse/military/base": {
+ "icon": "temaki-anchor_medal",
+ "fields": [
+ "name",
+ "military_service"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "military": "base"
+ },
+ "addTags": {
+ "landuse": "military",
+ "military": "base"
+ }
+ },
+ "landuse/military/barracks": {
+ "icon": "temaki-army_tent",
+ "fields": [
+ "name",
+ "building_area"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "military": "barracks"
+ }
+ },
+ "landuse/military/airfield": {
+ "icon": "temaki-fighter_jet",
+ "fields": [
+ "name",
+ "iata",
+ "icao"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "military": "airfield"
+ },
+ "addTags": {
+ "aeroway": "aerodrome",
+ "landuse": "military",
+ "military": "airfield"
+ },
+ "reference": {
+ "key": "military",
+ "value": "airfield"
+ }
+ },
+ "landuse/military/danger_area_point": {
+ "icon": "maki-danger",
+ "fields": [
+ "{landuse/military/danger_area}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "military": "danger_area"
+ },
+ "addTags": {
+ "landuse": "military",
+ "military": "danger_area"
+ },
+ "searchable": false,
+ "name": "{landuse/military/danger_area}"
+ },
+ "landuse/military/base/navy": {
+ "icon": "temaki-anchor_medal",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "military": "base",
+ "military_service": "navy"
+ },
+ "addTags": {
+ "landuse": "military",
+ "military": "base",
+ "military_service": "navy"
+ }
+ },
+ "landuse/meadow_orchard/orchard": {
+ "icon": "maki-park",
+ "fields": [
+ "name",
+ "operator",
+ "trees"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "species/wikidata",
+ "surface",
+ "description"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "orchard",
+ "orchard": "meadow_orchard"
+ },
+ "reference": {
+ "key": "orchard",
+ "value": "meadow_orchard"
+ },
+ "matchScore": 0.9,
+ "locationSet": {
+ "include": [
+ "Q46"
+ ]
+ }
+ },
+ "landuse/meadow_orchard/meadow": {
+ "icon": "maki-park",
+ "fields": [
+ "name",
+ "operator",
+ "trees"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "species/wikidata",
+ "surface",
+ "description"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "landuse": "meadow",
+ "meadow": "meadow_orchard"
+ },
+ "reference": {
+ "key": "meadow",
+ "value": "meadow_orchard"
+ },
+ "matchScore": 0.9,
+ "locationSet": {
+ "include": [
+ "Q46"
+ ]
+ }
+ },
+ "landuse/industrial/slaughterhouse": {
+ "icon": "maki-slaughterhouse",
"fields": [
"name",
"operator",
"address",
- "opening_hours",
- "website"
+ "building_area_yes",
+ "opening_hours"
],
"moreFields": [
- "branch_brand",
- "brand",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours/covid19",
- "payment_multi",
- "phone",
- "wheelchair"
+ "{landuse/industrial}"
],
"geometry": [
"point",
"area"
],
"tags": {
- "tourism": "theme_park"
+ "industrial": "slaughterhouse"
+ },
+ "addTags": {
+ "landuse": "industrial",
+ "industrial": "slaughterhouse"
+ },
+ "reference": {
+ "key": "industrial",
+ "value": "slaughterhouse"
}
},
- "tourism/trail_riding_station": {
- "icon": "maki-horse-riding",
+ "landuse/industrial/scrap_yard": {
+ "icon": "temaki-junk_car",
"fields": [
"name",
- "horse_stables",
- "horse_riding",
- "horse_dressage"
+ "operator",
+ "address",
+ "opening_hours"
],
"moreFields": [
- "address",
- "email",
- "fax",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "opening_hours",
- "opening_hours/covid19",
- "phone"
+ "{landuse/industrial}"
],
"geometry": [
"point",
"area"
],
"tags": {
- "tourism": "trail_riding_station"
+ "industrial": "scrap_yard"
},
- "matchScore": 2
+ "addTags": {
+ "landuse": "industrial",
+ "industrial": "scrap_yard"
+ },
+ "reference": {
+ "key": "industrial",
+ "value": "scrap_yard"
+ }
},
- "tourism/viewpoint": {
- "icon": "temaki-spotting_scope",
+ "landuse/industrial/depot": {
+ "icon": "roentgen-buses",
+ "fields": [
+ "name",
+ "operator",
+ "depot"
+ ],
+ "moreFields": [
+ "{landuse/industrial}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "industrial": "depot"
+ },
+ "addTags": {
+ "landuse": "industrial",
+ "industrial": "depot"
+ },
+ "reference": {
+ "key": "industrial",
+ "value": "depot"
+ }
+ },
+ "landuse/industrial/industrial_point": {
+ "icon": "maki-industry",
+ "fields": [
+ "{landuse/industrial}"
+ ],
+ "moreFields": [
+ "{landuse/industrial}"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "landuse": "industrial"
+ },
+ "searchable": false,
+ "name": "{landuse/industrial}"
+ },
+ "landuse/industrial/brewery": {
+ "icon": "temaki-storage_fermenter",
+ "fields": [
+ "{man_made/works/brewery}",
+ "product"
+ ],
+ "moreFields": [
+ "{man_made/works/brewery}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "industrial": "brewery"
+ },
+ "addTags": {
+ "landuse": "industrial"
+ },
+ "reference": {
+ "key": "industrial",
+ "value": "brewery"
+ },
+ "searchable": false,
+ "matchScore": 0.9,
+ "name": "{man_made/works/brewery}"
+ },
+ "landuse/aquaculture/fish": {
+ "icon": "fas-fish",
+ "fields": [
+ "{landuse/aquaculture}"
+ ],
+ "moreFields": [
+ "{landuse/aquaculture}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "landuse": "aquaculture",
+ "produce": "fish"
+ }
+ },
+ "internet_access/wlan": {
+ "icon": "fas-wifi",
"geometry": [
"point",
- "vertex",
"area"
],
"fields": [
- "direction"
+ "internet_access/ssid",
+ "internet_access/fee"
],
"moreFields": [
"level"
],
"tags": {
- "tourism": "viewpoint"
+ "internet_access": "wlan"
+ },
+ "matchScore": 0.25
+ },
+ "indoor/wall": {
+ "icon": "temaki-wall",
+ "fields": [
+ "level",
+ "height"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "indoor": "wall"
}
},
- "tourism/wilderness_hut": {
- "icon": "temaki-cabin",
+ "indoor/stairs": {
+ "icon": "iD-highway-steps",
+ "fields": [
+ "ref",
+ "level_semi",
+ "conveying_escalator"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "indoor": "room",
+ "stairs": "yes"
+ },
+ "matchScore": 0.8
+ },
+ "indoor/room": {
+ "icon": "temaki-room",
+ "fields": [
+ "level",
+ "name",
+ "ref_room_number",
+ "room",
+ "height"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "indoor": "room"
+ },
+ "matchScore": 0.8
+ },
+ "indoor/elevator": {
+ "icon": "temaki-elevator",
+ "fields": [
+ "ref",
+ "level_semi"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "indoor": "room",
+ "elevator": "yes"
+ },
+ "matchScore": 0.8
+ },
+ "indoor/door": {
+ "icon": "maki-entrance-alt1",
+ "fields": [
+ "level",
+ "ref",
+ "door_type",
+ "access_simple",
+ "width",
+ "height"
+ ],
+ "moreFields": [
+ "wheelchair"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "indoor": "door"
+ },
+ "addTags": {
+ "indoor": "door",
+ "door": "yes"
+ },
+ "removeTags": {
+ "indoor": "door",
+ "door": "*"
+ }
+ },
+ "indoor/corridor": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "level",
+ "name",
+ "ref",
+ "height"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "indoor": "corridor"
+ },
+ "matchScore": 0.8
+ },
+ "indoor/area": {
+ "icon": "temaki-room",
+ "fields": [
+ "level",
+ "name",
+ "ref_room_number",
+ "height"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "indoor": "area"
+ },
+ "matchScore": 0.8
+ },
+ "indoor/corridor_line": {
+ "fields": [
+ "level",
+ "name"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "indoor": "corridor"
+ },
+ "searchable": false,
+ "matchScore": 1.1,
+ "replacement": "highway/corridor"
+ },
+ "historic/wreck": {
+ "icon": "temaki-ruins",
+ "fields": [
+ "name",
+ "access_simple",
+ "seamark/wreck/category",
+ "historic/wreck/date_sunk",
+ "historic/wreck/visible_at_low_tide",
+ "historic/wreck/visible_at_high_tide"
+ ],
+ "moreFields": [
+ "{historic}",
+ "seamark/type"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "historic": "wreck"
+ },
+ "addTags": {
+ "historic": "wreck",
+ "seamark:type": "wreck"
+ }
+ },
+ "historic/wayside_shrine": {
+ "icon": "maki-landmark",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "inscription",
+ "access_simple"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "historic": "wayside_shrine"
+ }
+ },
+ "historic/wayside_cross": {
+ "icon": "maki-religious-christian",
+ "fields": [
+ "name",
+ "inscription",
+ "material"
+ ],
+ "moreFields": [
+ "{historic}",
+ "religion",
+ "denomination"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "historic": "wayside_cross"
+ }
+ },
+ "historic/tomb": {
+ "icon": "maki-cemetery",
+ "fields": [
+ "name",
+ "tomb",
+ "building_area_yes",
+ "inscription",
+ "access_simple"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "historic": "tomb"
+ }
+ },
+ "historic/ruins": {
+ "icon": "temaki-ruins",
+ "fields": [
+ "name",
+ "ruins",
+ "historic/civilization",
+ "inscription",
+ "access_simple"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "historic": "ruins"
+ }
+ },
+ "historic/pillory": {
+ "icon": "maki-monument",
+ "fields": [
+ "name",
+ "building_area_yes",
+ "access_simple",
+ "start_date"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "historic": "pillory"
+ }
+ },
+ "historic/monument": {
+ "icon": "maki-monument",
+ "fields": [
+ "name",
+ "inscription",
+ "access_simple"
+ ],
+ "moreFields": [
+ "{historic}",
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "historic": "monument"
+ }
+ },
+ "historic/memorial": {
+ "icon": "maki-monument",
+ "fields": [
+ "name",
+ "memorial",
+ "inscription",
+ "material"
+ ],
+ "moreFields": [
+ "{historic}",
+ "subject/wikidata"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "historic": "memorial"
+ }
+ },
+ "historic/manor": {
+ "icon": "maki-castle",
+ "fields": [
+ "name",
+ "building_area_yes",
+ "access_simple",
+ "start_date"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "historic": "manor"
+ }
+ },
+ "historic/fort": {
+ "icon": "maki-castle",
+ "fields": [
+ "name",
+ "building_area_yes",
+ "access_simple",
+ "start_date"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "historic": "fort"
+ }
+ },
+ "historic/city_gate": {
+ "icon": "maki-castle",
+ "fields": [
+ "name",
+ "building_area_yes",
+ "historic/civilization",
+ "start_date"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "historic": "city_gate"
+ }
+ },
+ "historic/castle": {
+ "icon": "roentgen-fort",
+ "fields": [
+ "name",
+ "castle_type",
+ "building_area_yes",
+ "historic/civilization",
+ "access_simple",
+ "start_date"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "historic": "castle"
+ }
+ },
+ "historic/cannon": {
+ "icon": "roentgen-cannon",
+ "fields": [
+ "name",
+ "start_date",
+ "direction"
+ ],
+ "moreFields": [
+ "description",
+ "wikipedia",
+ "wikidata",
+ "ref"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "historic": "cannon"
+ }
+ },
+ "historic/building": {
+ "icon": "maki-home",
+ "fields": [
+ "{building}",
+ "start_date"
+ ],
+ "moreFields": [
+ "{building}",
+ "access_simple"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "historic": "building",
+ "building": "*"
+ },
+ "reference": {
+ "key": "historic",
+ "value": "building"
+ },
+ "matchScore": 0.5
+ },
+ "historic/boundary_stone": {
+ "icon": "temaki-milestone",
+ "fields": [
+ "name",
+ "inscription"
+ ],
+ "moreFields": [
+ "{historic}",
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "historic": "boundary_stone"
+ }
+ },
+ "historic/archaeological_site": {
+ "icon": "temaki-ruins",
+ "fields": [
+ "name",
+ "archaeological_site",
+ "fortification_type",
+ "historic/civilization",
+ "inscription",
+ "access_simple"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "historic": "archaeological_site"
+ }
+ },
+ "historic/aircraft": {
+ "icon": "roentgen-plane",
+ "fields": [
+ "name",
+ "start_date",
+ "aircraft/type",
+ "model"
+ ],
+ "moreFields": [
+ "ref",
+ "model/wikidata",
+ "manufacturer",
+ "manufacturer/wikidata",
+ "description"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "historic": "aircraft"
+ }
+ },
+ "historic/memorial/stolperstein-EU": {
+ "icon": "temaki-plaque",
+ "fields": [
+ "name",
+ "inscription",
+ "wikidata"
+ ],
+ "moreFields": [
+ "memorial/addr",
+ "memorial/addr_subtags",
+ "subject/wikidata",
+ "image",
+ "wikimedia_commons",
+ "website"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "historic": "memorial",
+ "memorial": "stolperstein"
+ },
+ "locationSet": {
+ "include": [
+ "Q46"
+ ]
+ }
+ },
+ "historic/memorial/plaque": {
+ "icon": "temaki-plaque",
+ "fields": [
+ "{historic/memorial}",
+ "direction"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "historic": "memorial",
+ "memorial": "plaque"
+ },
+ "reference": {
+ "key": "memorial",
+ "value": "plaque"
+ }
+ },
+ "historic/memorial/blue_plaque-GB-IE": {
+ "icon": "temaki-plaque",
+ "fields": [
+ "name",
+ "inscription",
+ "subject/wikidata"
+ ],
+ "moreFields": [
+ "direction",
+ "image",
+ "wikimedia_commons"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "memorial": "blue_plaque"
+ },
+ "addTags": {
+ "historic": "memorial",
+ "memorial": "blue_plaque"
+ },
+ "locationSet": {
+ "include": [
+ "gb",
+ "ie"
+ ]
+ }
+ },
+ "historic/castle/stately": {
+ "icon": "fas-crown",
+ "fields": [
+ "name",
+ "building_area_yes",
+ "access_simple",
+ "start_date"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "reference": {
+ "key": "castle_type",
+ "value": "stately"
+ },
+ "tags": {
+ "historic": "castle",
+ "castle_type": "stately"
+ }
+ },
+ "historic/castle/palace": {
+ "icon": "fas-crown",
+ "fields": [
+ "name",
+ "building_area_yes",
+ "access_simple",
+ "start_date"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "reference": {
+ "key": "castle_type",
+ "value": "palace"
+ },
+ "tags": {
+ "historic": "castle",
+ "castle_type": "palace"
+ }
+ },
+ "historic/castle/fortress": {
+ "icon": "maki-castle",
+ "fields": [
+ "name",
+ "building_area_yes",
+ "access_simple",
+ "start_date"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "reference": {
+ "key": "castle_type",
+ "value": "fortress"
+ },
+ "tags": {
+ "historic": "castle",
+ "castle_type": "fortress"
+ }
+ },
+ "highway/unclassified": {
+ "icon": "iD-highway-unclassified",
+ "fields": [
+ "{highway/residential}"
+ ],
+ "moreFields": [
+ "{highway/residential}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "unclassified"
+ }
+ },
+ "highway/turning_loop": {
+ "icon": "roentgen-turning_loop",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "turning_loop"
+ }
+ },
+ "highway/turning_circle": {
+ "icon": "maki-circle",
+ "geometry": [
+ "vertex"
+ ],
+ "fields": [
+ "turning_circle"
+ ],
+ "tags": {
+ "highway": "turning_circle"
+ }
+ },
+ "highway/trunk_link": {
+ "icon": "iD-highway-trunk-link",
+ "fields": [
+ "{highway/motorway_link}"
+ ],
+ "moreFields": [
+ "{highway/motorway_link}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "trunk_link"
+ },
+ "locationSet": {
+ "exclude": [
+ "ca",
+ "us"
+ ]
+ }
+ },
+ "highway/trunk_link-US-CA": {
+ "name": "{highway/trunk_link}",
+ "icon": "iD-highway-trunk-link",
+ "fields": [
+ "{highway/motorway_link-US-CA}"
+ ],
+ "moreFields": [
+ "{highway/motorway_link-US-CA}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "trunk_link"
+ },
+ "locationSet": {
+ "include": [
+ "ca",
+ "us"
+ ]
+ }
+ },
+ "highway/trunk": {
+ "icon": "iD-highway-trunk",
+ "fields": [
+ "name",
+ "ref_road_number",
+ "oneway",
+ "maxspeed",
+ "lanes",
+ "expressway-US",
+ "surface",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "charge_toll",
+ "covered_no",
+ "incline",
+ "junction_line",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed/advisory",
+ "maxspeed/hgv",
+ "maxweight_bridge",
+ "maxwidth",
+ "minspeed",
+ "not/name",
+ "smoothness",
+ "toll",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "trunk"
+ }
+ },
+ "highway/trailhead": {
+ "icon": "fas-hiking",
"fields": [
"name",
"operator",
- "building_area_yes",
+ "ele_node",
+ "address",
"access_simple",
"fee",
"payment_multi_fee",
- "charge_fee",
- "fireplace"
- ],
- "moreFields": [
- "address",
- "capacity",
- "drinking_water_available",
- "gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "kitchen",
- "mattress",
- "reservation",
- "wheelchair"
- ],
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "wilderness_hut"
- }
- },
- "tourism/zoo": {
- "icon": "temaki-zoo",
- "fields": [
- "name",
- "operator",
- "address",
- "opening_hours",
- "fee",
"charge_fee"
],
"moreFields": [
- "email",
- "fax",
"gnis/feature_id-US",
- "internet_access",
- "internet_access/fee",
- "internet_access/ssid",
- "payment_multi",
- "opening_hours/covid19",
- "phone",
- "ref/vatin",
- "toilets",
- "toilets/wheelchair",
+ "opening_hours"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "trailhead"
+ }
+ },
+ "highway/traffic_signals": {
+ "icon": "temaki-traffic_signals",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "traffic_signals"
+ },
+ "fields": [
+ "traffic_signals",
+ "traffic_signals/direction"
+ ],
+ "moreFields": [
+ "traffic_signals/countdown"
+ ]
+ },
+ "highway/traffic_mirror": {
+ "icon": "maki-circle-stroked",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "direction"
+ ],
+ "tags": {
+ "highway": "traffic_mirror"
+ }
+ },
+ "highway/track": {
+ "icon": "fas-truck-monster",
+ "fields": [
+ "name",
+ "tracktype",
+ "surface",
+ "width",
+ "structure",
+ "access",
+ "incline",
+ "smoothness"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "flood_prone",
+ "horse_scale",
+ "maxweight_bridge",
+ "mtb/scale",
+ "mtb/scale/imba",
+ "mtb/scale/uphill",
+ "oneway",
+ "stroller",
"wheelchair"
],
"geometry": [
- "point",
- "area"
+ "line"
],
"tags": {
- "tourism": "zoo"
+ "highway": "track"
}
},
- "tourism/zoo/petting": {
- "icon": "fas-horse",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "zoo",
- "zoo": "petting_zoo"
+ "highway/toll_gantry": {
+ "locationSet": {
+ "exclude": [
+ "de"
+ ]
},
- "reference": {
- "key": "zoo",
- "value": "petting_zoo"
- }
- },
- "tourism/zoo/safari": {
- "icon": "temaki-zoo",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "zoo",
- "zoo": "safari_park"
- },
- "reference": {
- "key": "zoo",
- "value": "safari_park"
- }
- },
- "tourism/zoo/wildlife": {
- "icon": "fas-frog",
- "geometry": [
- "point",
- "area"
- ],
- "tags": {
- "tourism": "zoo",
- "zoo": "wildlife_park"
- },
- "reference": {
- "key": "zoo",
- "value": "wildlife_park"
- }
- },
- "traffic_calming": {
- "icon": "temaki-diamond",
+ "icon": "temaki-toll_gantry",
"fields": [
- "traffic_calming",
- "surface",
+ "ref",
+ "operator",
+ "access",
+ "maxheight",
+ "opening_hours",
+ "payment_multi"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "toll_gantry"
+ }
+ },
+ "highway/tertiary_link": {
+ "icon": "iD-highway-tertiary-link",
+ "fields": [
+ "{highway/primary_link}"
+ ],
+ "moreFields": [
+ "{highway/primary_link}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "tertiary_link"
+ }
+ },
+ "highway/tertiary": {
+ "icon": "iD-highway-tertiary",
+ "fields": [
+ "{highway/primary}"
+ ],
+ "moreFields": [
+ "{highway/primary}",
+ "bicycle_road",
+ "cyclestreet-BE-NL"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "tertiary"
+ }
+ },
+ "highway/street_lamp": {
+ "icon": "temaki-street_lamp_arm",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "highway": "street_lamp"
+ },
+ "fields": [
+ "lamp_type",
+ "support",
+ "lamp_mount",
+ "direction",
+ "height",
+ "operator",
+ "ref"
+ ]
+ },
+ "highway/stop": {
+ "icon": "temaki-stop",
+ "fields": [
+ "stop",
"direction_vertex"
],
"geometry": [
"vertex"
],
"tags": {
- "traffic_calming": "*"
- },
- "matchScore": 0.4
+ "highway": "stop"
+ }
},
- "traffic_calming/yes": {
- "icon": "temaki-diamond",
+ "highway/steps": {
+ "icon": "iD-highway-steps",
"fields": [
- "traffic_calming",
- "{traffic_calming}"
+ "name",
+ "incline_steps",
+ "access_simple",
+ "handrail",
+ "step_count",
+ "tactile_paving",
+ "surface",
+ "width",
+ "structure"
+ ],
+ "moreFields": [
+ "covered_no",
+ "dog",
+ "indoor",
+ "level_semi",
+ "lit",
+ "oneway",
+ "ref",
+ "ramp",
+ "stroller",
+ "wheelchair"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "steps"
+ }
+ },
+ "highway/speed_display": {
+ "icon": "maki-square-stroked",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "direction_point",
+ "direction_vertex",
+ "maxspeed"
+ ],
+ "moreFields": [
+ "maxspeed/advisory"
+ ],
+ "tags": {
+ "highway": "speed_display"
+ }
+ },
+ "highway/speed_camera": {
+ "icon": "temaki-security_camera",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "direction",
+ "ref",
+ "maxspeed"
+ ],
+ "tags": {
+ "highway": "speed_camera"
+ }
+ },
+ "highway/services": {
+ "icon": "maki-car",
+ "fields": [
+ "{highway/rest_area}"
+ ],
+ "moreFields": [
+ "{highway/rest_area}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "highway": "services"
+ }
+ },
+ "highway/service_area": {
+ "icon": "iD-highway-service",
+ "fields": [
+ "name",
+ "service",
+ "maxspeed",
+ "surface",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "flood_prone",
+ "lit",
+ "maxheight",
+ "maxspeed/advisory",
+ "maxweight_bridge",
+ "smoothness",
+ "trolley_wire"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "highway": "service"
+ },
+ "searchable": false
+ },
+ "highway/service": {
+ "icon": "iD-highway-service",
+ "fields": [
+ "name",
+ "service",
+ "oneway",
+ "maxspeed",
+ "surface",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "flood_prone",
+ "incline",
+ "lanes",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed/advisory",
+ "maxweight_bridge",
+ "maxwidth",
+ "oneway/bicycle",
+ "parking/side/parking",
+ "parking/side/orientation",
+ "smoothness",
+ "trolley_wire",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "service"
+ },
+ "matchScore": 0.9
+ },
+ "highway/secondary_link": {
+ "icon": "iD-highway-secondary-link",
+ "fields": [
+ "{highway/primary_link}"
+ ],
+ "moreFields": [
+ "{highway/primary_link}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "secondary_link"
+ }
+ },
+ "highway/secondary": {
+ "icon": "iD-highway-secondary",
+ "fields": [
+ "{highway/primary}"
+ ],
+ "moreFields": [
+ "{highway/primary}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "secondary"
+ }
+ },
+ "highway/road": {
+ "icon": "iD-other-line",
+ "fields": [
+ "highway",
+ "{highway/residential}"
+ ],
+ "moreFields": [
+ "{highway/residential}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "road"
+ }
+ },
+ "highway/rest_area": {
+ "icon": "maki-highway-rest-area",
+ "fields": [
+ "name",
+ "operator",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "address",
+ "bin",
+ "caravans",
+ "drinking_water_available",
+ "picnic_table",
+ "toilets",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "highway": "rest_area"
+ }
+ },
+ "highway/residential": {
+ "icon": "iD-highway-residential",
+ "fields": [
+ "name",
+ "oneway",
+ "maxspeed",
+ "lanes",
+ "surface",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "cycleway",
+ "bicycle_road",
+ "cyclestreet-BE-NL",
+ "flood_prone",
+ "incline",
+ "junction_line",
+ "lane_markings",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed/advisory",
+ "maxweight",
+ "maxwidth",
+ "not/name",
+ "oneway/bicycle",
+ "parking/side/parking",
+ "parking/side/orientation",
+ "smoothness",
+ "traffic_calming_road",
+ "trolley_wire",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "residential"
+ }
+ },
+ "highway/raceway": {
+ "icon": "temaki-speedway_oval",
+ "fields": [
+ "name",
+ "oneway",
+ "surface",
+ "sport/sport_racing_motor",
+ "lit",
+ "width",
+ "lanes",
+ "structure"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "highway": "raceway"
+ },
+ "addTags": {
+ "highway": "raceway",
+ "sport": "motor"
+ }
+ },
+ "highway/primary_link": {
+ "icon": "iD-highway-primary-link",
+ "fields": [
+ "destination_oneway",
+ "destination/ref_oneway",
+ "oneway",
+ "maxspeed",
+ "lanes",
+ "surface",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "charge_toll",
+ "covered_no",
+ "cycleway",
+ "destination/symbol_oneway",
+ "flood_prone",
+ "incline",
+ "junction_line",
+ "junction/ref_oneway",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed/advisory",
+ "maxweight_bridge",
+ "maxwidth",
+ "oneway/bicycle",
+ "parking/side/parking",
+ "parking/side/orientation",
+ "ref_road_number",
+ "smoothness",
+ "toll",
+ "trolley_wire",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "primary_link"
+ },
+ "locationSet": {
+ "exclude": [
+ "ca",
+ "us"
+ ]
+ }
+ },
+ "highway/primary_link-US-CA": {
+ "name": "{highway/primary_link}",
+ "icon": "iD-highway-primary-link",
+ "fields": [
+ "destination_oneway",
+ "destination/ref_oneway",
+ "oneway",
+ "maxspeed/advisory",
+ "lanes",
+ "surface",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "charge_toll",
+ "covered_no",
+ "cycleway",
+ "destination/symbol_oneway",
+ "flood_prone",
+ "incline",
+ "junction_line",
+ "junction/ref_oneway",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed",
+ "maxweight_bridge",
+ "maxwidth",
+ "oneway/bicycle",
+ "ref_road_number",
+ "smoothness",
+ "toll",
+ "trolley_wire",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "primary_link"
+ },
+ "locationSet": {
+ "include": [
+ "ca",
+ "us"
+ ]
+ }
+ },
+ "highway/primary": {
+ "icon": "iD-highway-primary",
+ "fields": [
+ "name",
+ "oneway",
+ "maxspeed",
+ "lanes",
+ "surface",
+ "structure",
+ "ref_road_number",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "charge_toll",
+ "covered_no",
+ "cycleway",
+ "expressway-US",
+ "flood_prone",
+ "incline",
+ "junction_line",
+ "lane_markings",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed/advisory",
+ "maxspeed/hgv",
+ "maxweight_bridge",
+ "maxwidth",
+ "not/name",
+ "oneway/bicycle",
+ "parking/side/parking",
+ "parking/side/orientation",
+ "smoothness",
+ "toll",
+ "traffic_calming_road",
+ "trolley_wire",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "primary"
+ }
+ },
+ "highway/pedestrian_line": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "name",
+ "surface",
+ "lit",
+ "width",
+ "oneway",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "incline",
+ "maxweight_bridge",
+ "smoothness"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "pedestrian"
+ }
+ },
+ "highway/pedestrian_area": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "name",
+ "surface",
+ "lit",
+ "width",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "highway": "pedestrian"
+ }
+ },
+ "highway/path": {
+ "icon": "iD-other-line",
+ "fields": [
+ "name",
+ "surface",
+ "width",
+ "structure",
+ "access",
+ "incline"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "dog",
+ "gnis/feature_id-US",
+ "horse_scale",
+ "informal",
+ "lit",
+ "maxweight_bridge",
+ "mtb/scale",
+ "mtb/scale/imba",
+ "mtb/scale/uphill",
+ "not/name",
+ "oneway",
+ "ref",
+ "sac_scale",
+ "smoothness",
+ "stroller",
+ "trail_visibility",
+ "wheelchair"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path"
+ }
+ },
+ "highway/passing_place": {
+ "icon": "maki-circle-stroked",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "passing_place"
+ }
+ },
+ "highway/motorway_link": {
+ "icon": "iD-highway-motorway-link",
+ "fields": [
+ "destination_oneway",
+ "destination/ref_oneway",
+ "junction/ref_oneway",
+ "oneway",
+ "maxspeed",
+ "lanes",
+ "surface",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "charge_toll",
+ "covered_no",
+ "destination/symbol_oneway",
+ "incline",
+ "junction_line",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed/advisory",
+ "maxweight_bridge",
+ "maxwidth",
+ "ref_road_number",
+ "smoothness",
+ "toll",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "motorway_link"
+ },
+ "locationSet": {
+ "exclude": [
+ "ca",
+ "us"
+ ]
+ }
+ },
+ "highway/motorway_link-US-CA": {
+ "name": "{highway/motorway_link}",
+ "icon": "iD-highway-motorway-link",
+ "fields": [
+ "destination_oneway",
+ "destination/ref_oneway",
+ "junction/ref_oneway",
+ "oneway",
+ "maxspeed/advisory",
+ "lanes",
+ "surface",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "charge_toll",
+ "covered_no",
+ "destination/symbol_oneway",
+ "incline",
+ "junction_line",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed",
+ "maxweight_bridge",
+ "maxwidth",
+ "ref_road_number",
+ "smoothness",
+ "toll",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "motorway_link"
+ },
+ "locationSet": {
+ "include": [
+ "ca",
+ "us"
+ ]
+ }
+ },
+ "highway/motorway_junction": {
+ "icon": "temaki-junction",
+ "fields": [
+ "ref_highway_junction",
+ "name"
],
"geometry": [
"vertex"
],
"tags": {
- "traffic_calming": "yes"
+ "highway": "motorway_junction"
+ }
+ },
+ "highway/motorway": {
+ "icon": "iD-highway-motorway",
+ "fields": [
+ "name",
+ "ref_road_number",
+ "oneway_yes",
+ "maxspeed",
+ "lanes",
+ "surface",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "charge_toll",
+ "covered_no",
+ "incline",
+ "junction_line",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed/advisory",
+ "maxspeed/hgv",
+ "maxweight_bridge",
+ "maxwidth",
+ "minspeed",
+ "not/name",
+ "smoothness",
+ "toll",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "motorway"
+ }
+ },
+ "highway/mini_roundabout": {
+ "icon": "maki-circle-stroked",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "mini_roundabout"
+ },
+ "fields": [
+ "direction_clock"
+ ]
+ },
+ "highway/milestone": {
+ "icon": "temaki-milestone",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "distance",
+ "ref",
+ "direction_vertex"
+ ],
+ "tags": {
+ "highway": "milestone"
+ }
+ },
+ "highway/living_street": {
+ "icon": "iD-highway-living-street",
+ "fields": [
+ "name",
+ "oneway",
+ "maxspeed",
+ "lanes",
+ "surface",
+ "structure",
+ "access"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "bicycle_road",
+ "cyclestreet-BE-NL",
+ "cycleway",
+ "flood_prone",
+ "junction_line",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxweight_bridge",
+ "maxwidth",
+ "oneway/bicycle",
+ "parking/side/parking",
+ "parking/side/orientation",
+ "smoothness",
+ "trolley_wire",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "living_street"
+ }
+ },
+ "highway/ladder": {
+ "icon": "temaki-crossing_markings-ladder",
+ "fields": [
+ "name",
+ "incline_steps",
+ "access_simple",
+ "handrail",
+ "step_count",
+ "material",
+ "width",
+ "height"
+ ],
+ "moreFields": [
+ "covered_no",
+ "level_semi",
+ "lit",
+ "oneway",
+ "ref"
+ ],
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "highway": "ladder"
+ }
+ },
+ "highway/give_way": {
+ "icon": "temaki-yield",
+ "fields": [
+ "direction_vertex_dual"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "give_way"
+ }
+ },
+ "highway/footway": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "name",
+ "surface",
+ "width",
+ "structure",
+ "access",
+ "incline"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "dog",
+ "informal",
+ "lit",
+ "maxweight_bridge",
+ "not/name",
+ "oneway",
+ "smoothness",
+ "stroller",
+ "tactile_paving",
+ "wheelchair"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway"
+ }
+ },
+ "highway/escape": {
+ "icon": "fas-truck-fast",
+ "fields": [
+ "surface"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "escape"
+ }
+ },
+ "highway/emergency_bay": {
+ "icon": "maki-car",
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "highway": "emergency_bay"
+ },
+ "fields": [
+ "direction_vertex_dual"
+ ]
+ },
+ "highway/emergency_access_point": {
+ "icon": "fas-compress-arrows-alt",
+ "geometry": [
+ "point"
+ ],
+ "fields": [
+ "ref",
+ "operator"
+ ],
+ "tags": {
+ "highway": "emergency_access_point"
+ }
+ },
+ "highway/elevator_line": {
+ "icon": "temaki-elevator",
+ "fields": [
+ "{highway/elevator}"
+ ],
+ "moreFields": [
+ "{highway/elevator}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "elevator"
+ }
+ },
+ "highway/elevator": {
+ "icon": "temaki-elevator",
+ "fields": [
+ "ref",
+ "operator",
+ "level_semi",
+ "access_simple",
+ "wheelchair",
+ "maxweight"
+ ],
+ "moreFields": [
+ "dog",
+ "manufacturer",
+ "maxheight",
+ "opening_hours"
+ ],
+ "geometry": [
+ "vertex",
+ "point",
+ "area"
+ ],
+ "tags": {
+ "highway": "elevator"
+ }
+ },
+ "highway/cyclist_waiting_aid": {
+ "icon": "temaki-guard_rail",
+ "fields": [
+ "footrest",
+ "handrest",
+ "direction_vertex",
+ "side",
+ "count"
+ ],
+ "moreFields": [
+ "capacity"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "cyclist_waiting_aid"
+ }
+ },
+ "highway/cycleway": {
+ "icon": "fas-biking",
+ "fields": [
+ "name",
+ "oneway",
+ "surface",
+ "smoothness",
+ "width",
+ "structure",
+ "access",
+ "incline"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "dog",
+ "lit",
+ "maxspeed",
+ "maxweight_bridge",
+ "not/name",
+ "stroller",
+ "wheelchair"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway"
+ }
+ },
+ "highway/crossing": {
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
+ ],
+ "moreFields": [
+ "kerb",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "crossing"
+ }
+ },
+ "highway/corridor": {
+ "icon": "temaki-pedestrian_walled",
+ "fields": [
+ "name",
+ "width",
+ "level",
+ "access_simple",
+ "wheelchair"
+ ],
+ "moreFields": [
+ "indoor",
+ "maxheight",
+ "stroller"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "corridor"
+ },
+ "addTags": {
+ "highway": "corridor",
+ "indoor": "yes"
+ }
+ },
+ "highway/construction": {
+ "icon": "maki-barrier",
+ "fields": [
+ "name",
+ "construction",
+ "opening_date",
+ "check_date",
+ "access",
+ "oneway",
+ "structure",
+ "note"
+ ],
+ "moreFields": [
+ "bridge/ref"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "construction"
+ },
+ "removeTags": {
+ "highway": "construction",
+ "construction": "*"
+ }
+ },
+ "highway/busway": {
+ "icon": "temaki-bus",
+ "fields": [
+ "name",
+ "oneway",
+ "maxspeed",
+ "lanes",
+ "surface",
+ "operator",
+ "structure",
+ "covered"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "lit",
+ "maxaxleload_bridge",
+ "maxheight",
+ "maxlength",
+ "maxspeed/advisory",
+ "maxweight_bridge",
+ "maxwidth",
+ "trolley_wire"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "busway"
+ }
+ },
+ "highway/bus_guideway": {
+ "icon": "temaki-bus_guided",
+ "fields": [
+ "name",
+ "operator",
+ "oneway",
+ "structure"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "trolley_wire",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "bus_guideway"
+ },
+ "addTags": {
+ "highway": "bus_guideway",
+ "access": "no",
+ "bus": "designated"
+ }
+ },
+ "highway/bridleway": {
+ "fields": [
+ "name",
+ "surface",
+ "width",
+ "structure",
+ "access",
+ "incline",
+ "horse_scale"
+ ],
+ "moreFields": [
+ "bridge/ref",
+ "covered_no",
+ "dog",
+ "lit",
+ "maxweight_bridge",
+ "smoothness",
+ "stroller",
+ "wheelchair"
+ ],
+ "icon": "maki-horse-riding",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "bridleway"
+ }
+ },
+ "highway/traffic_sign": {
+ "icon": "fas-directions",
+ "fields": [
+ "{traffic_sign}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "highway": "traffic_sign"
+ },
+ "searchable": false,
+ "name": "{traffic_sign}"
+ },
+ "highway/bus_stop": {
+ "icon": "temaki-bus",
+ "fields": [
+ "{public_transport/platform_point}"
+ ],
+ "moreFields": [
+ "{public_transport/platform_point}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "highway": "bus_stop"
+ },
+ "matchScore": 0.95,
+ "searchable": false,
+ "replacement": "public_transport/platform/bus_point"
+ },
+ "highway/steps/conveying": {
+ "icon": "maki-entrance",
+ "fields": [
+ "incline_steps",
+ "conveying",
+ "access_simple",
+ "indoor",
+ "level_semi",
+ "width"
+ ],
+ "moreFields": [
+ "{highway/steps}",
+ "dog",
+ "handrail",
+ "operator",
+ "manufacturer",
+ "step_count",
+ "surface"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "steps",
+ "conveying": "*"
+ }
+ },
+ "highway/service/parking_aisle": {
+ "icon": "iD-highway-service",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "service",
+ "service": "parking_aisle"
+ },
+ "reference": {
+ "key": "service",
+ "value": "parking_aisle"
+ }
+ },
+ "highway/service/emergency_access": {
+ "icon": "iD-highway-service",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "service",
+ "service": "emergency_access"
+ },
+ "reference": {
+ "key": "service",
+ "value": "emergency_access"
+ }
+ },
+ "highway/service/driveway": {
+ "icon": "iD-highway-service",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "service",
+ "service": "driveway"
+ },
+ "reference": {
+ "key": "service",
+ "value": "driveway"
+ }
+ },
+ "highway/service/drive-through": {
+ "icon": "iD-highway-service",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "service",
+ "service": "drive-through"
+ },
+ "reference": {
+ "key": "service",
+ "value": "drive-through"
+ }
+ },
+ "highway/service/alley": {
+ "icon": "iD-highway-service",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "service",
+ "service": "alley"
+ },
+ "reference": {
+ "key": "service",
+ "value": "alley"
+ }
+ },
+ "highway/road/bridge": {
+ "icon": "iD-other-line",
+ "fields": [
+ "highway",
+ "{highway/residential}"
+ ],
+ "moreFields": [
+ "{highway/residential}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "road",
+ "bridge": "*"
+ },
+ "addTags": {
+ "highway": "road",
+ "bridge": "yes",
+ "layer": "1"
+ },
+ "matchScore": 0.25
+ },
+ "highway/raceway/motocross": {
+ "icon": "fas-motorcycle",
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "highway": "raceway",
+ "sport": "motocross"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "motocross"
+ }
+ },
+ "highway/raceway/karting": {
+ "icon": "temaki-speedway_8",
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "highway": "raceway",
+ "sport": "karting"
+ },
+ "reference": {
+ "key": "sport",
+ "value": "karting"
+ }
+ },
+ "highway/path/traffic_island_shared": {
+ "locationSet": {
+ "include": [
+ "fr",
+ "lt",
+ "pl",
+ "de",
+ "il",
+ "ps"
+ ]
+ },
+ "icon": "temaki-pedestrian_and_cyclist",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "traffic_island",
+ "foot": "designated",
+ "bicycle": "designated"
+ },
+ "reference": {
+ "key": "path",
+ "value": "traffic_island"
+ },
+ "fields": [
+ "{highway/cycleway/traffic_island_shared}"
+ ],
+ "name": "{highway/cycleway/traffic_island_shared}"
+ },
+ "highway/path/informal": {
+ "icon": "fas-shoe-prints",
+ "fields": [
+ "surface",
+ "width",
+ "access",
+ "trail_visibility",
+ "smoothness",
+ "incline"
+ ],
+ "moreFields": [
+ "covered_no",
+ "dog",
+ "horse_scale",
+ "informal",
+ "lit",
+ "maxweight_bridge",
+ "mtb/scale",
+ "mtb/scale/imba",
+ "mtb/scale/uphill",
+ "sac_scale",
+ "stroller",
+ "structure",
+ "wheelchair"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "informal": "yes"
+ },
+ "reference": {
+ "key": "informal"
+ }
+ },
+ "highway/path/boardwalk": {
+ "icon": "temaki-pedestrian",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "bridge": "boardwalk"
+ },
+ "addTags": {
+ "highway": "path",
+ "bridge": "boardwalk",
+ "surface": "wood"
+ },
+ "reference": {
+ "key": "bridge",
+ "value": "boardwalk"
+ }
+ },
+ "highway/path/bicycle_foot": {
+ "locationSet": {
+ "include": [
+ "fr",
+ "lt",
+ "pl",
+ "de",
+ "il",
+ "ps"
+ ]
+ },
+ "icon": "temaki-pedestrian_and_cyclist",
+ "fields": [
+ "{highway/cycleway/bicycle_foot}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "foot": "designated",
+ "bicycle": "designated"
+ },
+ "removeTags": {
+ "highway": "path",
+ "foot": "designated",
+ "bicycle": "designated",
+ "segregated": "*"
+ },
+ "matchScore": 0.9,
+ "name": "{highway/cycleway/bicycle_foot}"
+ },
+ "highway/path/crossing": {
+ "icon": "temaki-cyclist_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "path": "crossing"
+ },
+ "addTags": {
+ "highway": "path",
+ "path": "crossing"
+ },
+ "reference": {
+ "key": "path",
+ "value": "crossing"
+ },
+ "searchable": false
+ },
+ "highway/path/crossing/bicycle_foot": {
+ "locationSet": {
+ "include": [
+ "fr",
+ "lt",
+ "pl",
+ "de",
+ "il",
+ "ps"
+ ]
+ },
+ "icon": "temaki-ped_cyclist_crosswalk",
+ "fields": [
+ "{highway/cycleway/crossing/bicycle_foot}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "foot": "designated",
+ "bicycle": "designated"
+ },
+ "removeTags": {
+ "highway": "path",
+ "path": "crossing",
+ "foot": "designated",
+ "bicycle": "designated",
+ "segregated": "*"
+ },
+ "reference": {
+ "key": "path",
+ "value": "crossing"
+ },
+ "matchScore": 0.9,
+ "name": "{highway/cycleway/crossing/bicycle_foot}"
+ },
+ "highway/path/crossing/unmarked": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "unmarked"
+ },
+ "addTags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "unmarked",
+ "crossing:markings": "no"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "unmarked"
+ },
+ "searchable": false
+ },
+ "highway/path/crossing/uncontrolled": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings_yes}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "uncontrolled"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "uncontrolled"
+ },
+ "searchable": false
+ },
+ "highway/path/crossing/traffic_signals": {
+ "icon": "temaki-railway_signals",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/traffic_signal}",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/traffic_signal_more}",
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "traffic_signals"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "traffic_signals"
+ },
+ "searchable": false
+ },
+ "highway/path/crossing/marked": {
+ "icon": "temaki-pedestrian_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "marked"
+ },
+ "addTags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "marked",
+ "crossing:markings": "yes"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "marked"
+ },
+ "name": "{highway/path/crossing/uncontrolled}",
+ "searchable": false
+ },
+ "highway/path/crossing/informal": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "path",
+ "path": "crossing",
+ "crossing": "informal"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "informal"
+ },
+ "name": "{highway/crossing/informal}",
+ "searchable": false
+ },
+ "highway/footway/traffic_island": {
+ "icon": "temaki-pedestrian",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "traffic_island"
+ },
+ "reference": {
+ "key": "footway",
+ "value": "traffic_island"
+ }
+ },
+ "highway/footway/sidewalk": {
+ "icon": "temaki-pedestrian",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "footway": "sidewalk"
+ },
+ "addTags": {
+ "highway": "footway",
+ "footway": "sidewalk"
+ },
+ "reference": {
+ "key": "footway",
+ "value": "sidewalk"
+ }
+ },
+ "highway/footway/crossing": {
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing"
+ },
+ "reference": {
+ "key": "footway",
+ "value": "crossing"
+ }
+ },
+ "highway/footway/conveying": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "name",
+ "conveying",
+ "access_simple",
+ "lit",
+ "width",
+ "wheelchair"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "conveying": "*"
+ },
+ "reference": {
+ "key": "conveying"
+ }
+ },
+ "highway/footway/access_aisle": {
+ "icon": "temaki-striped_zone",
+ "fields": [
+ "access_aisle",
+ "width",
+ "surface",
+ "tactile_paving",
+ "access",
+ "wheelchair"
+ ],
+ "moreFields": [
+ "covered_no",
+ "dog",
+ "incline",
+ "lit",
+ "maxweight_bridge",
+ "ref",
+ "smoothness",
+ "stroller",
+ "structure"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "access_aisle"
+ },
+ "reference": {
+ "key": "footway",
+ "value": "access_aisle"
+ }
+ },
+ "highway/footway/informal": {
+ "icon": "fas-shoe-prints",
+ "fields": [
+ "surface",
+ "width",
+ "access",
+ "trail_visibility",
+ "smoothness",
+ "incline"
+ ],
+ "moreFields": [
+ "covered_no",
+ "dog",
+ "informal",
+ "lit",
+ "maxweight_bridge",
+ "sac_scale",
+ "stroller",
+ "structure",
+ "wheelchair"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "informal": "yes"
+ },
+ "reference": {
+ "key": "informal"
+ },
+ "searchable": false
+ },
+ "highway/footway/crossing/unmarked": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "unmarked"
+ },
+ "addTags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "unmarked",
+ "crossing:markings": "no"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "unmarked"
+ }
+ },
+ "highway/footway/crossing/uncontrolled": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings_yes}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "uncontrolled"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "uncontrolled"
+ }
+ },
+ "highway/footway/crossing/traffic_signals": {
+ "icon": "temaki-railway_signals",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/traffic_signal}",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/traffic_signal_more}",
+ "{@templates/crossing/geometry_way_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "traffic_signals"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "traffic_signals"
+ }
+ },
+ "highway/footway/crossing/zebra": {
+ "icon": "temaki-pedestrian_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "zebra"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "zebra"
+ },
+ "name": "{highway/footway/crossing/uncontrolled}",
+ "searchable": false
+ },
+ "highway/footway/crossing/marked": {
+ "icon": "temaki-pedestrian_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "marked"
+ },
+ "addTags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "marked",
+ "crossing:markings": "yes"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "marked"
+ },
+ "name": "{highway/footway/crossing/uncontrolled}",
+ "searchable": false
+ },
+ "highway/footway/crossing/informal": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "footway",
+ "footway": "crossing",
+ "crossing": "informal"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "informal"
+ },
+ "name": "{highway/crossing/informal}",
+ "searchable": false
+ },
+ "highway/cycleway/traffic_island_shared": {
+ "locationSet": {
+ "exclude": [
+ "fr",
+ "lt",
+ "pl",
+ "de",
+ "il",
+ "ps"
+ ]
+ },
+ "icon": "temaki-pedestrian_and_cyclist",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "cycleway": "traffic_island",
+ "foot": "designated",
+ "bicycle": "designated"
+ },
+ "reference": {
+ "key": "cycleway",
+ "value": "traffic_island"
+ }
+ },
+ "highway/cycleway/traffic_island": {
+ "icon": "fas-biking",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "cycleway": "traffic_island"
+ },
+ "reference": {
+ "key": "cycleway",
+ "value": "traffic_island"
+ }
+ },
+ "highway/cycleway/moped_link-NL": {
+ "locationSet": {
+ "include": [
+ "nl"
+ ]
+ },
+ "icon": "fas-motorcycle",
+ "fields": [
+ "name",
+ "oneway",
+ "surface",
+ "smoothness",
+ "width",
+ "structure",
+ "access",
+ "incline"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "bicycle": "no",
+ "moped": "designated"
+ },
+ "addTags": {
+ "highway": "cycleway",
+ "bicycle": "no",
+ "moped": "designated",
+ "foot": "no",
+ "mofa": "no"
+ },
+ "matchScore": 0.9
+ },
+ "highway/cycleway/bicycle_foot": {
+ "locationSet": {
+ "exclude": [
+ "fr",
+ "lt",
+ "pl",
+ "de",
+ "il",
+ "ps"
+ ]
+ },
+ "icon": "temaki-pedestrian_and_cyclist",
+ "fields": [
+ "name",
+ "segregated",
+ "oneway",
+ "surface",
+ "smoothness",
+ "width",
+ "structure",
+ "access",
+ "incline"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "foot": "designated"
+ },
+ "addTags": {
+ "highway": "cycleway",
+ "foot": "designated",
+ "bicycle": "designated"
+ },
+ "removeTags": {
+ "highway": "cycleway",
+ "foot": "designated",
+ "bicycle": "designated",
+ "segregated": "*"
+ },
+ "matchScore": 0.9
+ },
+ "highway/cycleway/crossing": {
+ "icon": "temaki-cyclist_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "cycleway": "crossing"
+ },
+ "addTags": {
+ "highway": "cycleway",
+ "cycleway": "crossing"
+ },
+ "reference": {
+ "key": "cycleway",
+ "value": "crossing"
+ },
+ "searchable": false,
+ "matchScore": 0.95
+ },
+ "highway/cycleway/crossing/unmarked": {
+ "icon": "fas-biking",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "cycleway": "crossing",
+ "crossing": "unmarked"
+ },
+ "addTags": {
+ "highway": "cycleway",
+ "cycleway": "crossing",
+ "crossing": "unmarked",
+ "crossing:markings": "no"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "unmarked"
+ },
+ "matchScore": 0.95
+ },
+ "highway/cycleway/crossing/uncontrolled": {
+ "icon": "temaki-cyclist_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/defaults}",
+ "{@templates/crossing/markings_yes}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "cycleway": "crossing",
+ "crossing": "uncontrolled"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "uncontrolled"
+ },
+ "matchScore": 0.95
+ },
+ "highway/cycleway/crossing/traffic_signals": {
+ "icon": "fas-biking",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/traffic_signal}",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/traffic_signal_more}",
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "cycleway": "crossing",
+ "crossing": "traffic_signals"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "traffic_signals"
+ },
+ "matchScore": 0.95
+ },
+ "highway/cycleway/crossing/bicycle_foot": {
+ "locationSet": {
+ "exclude": [
+ "fr",
+ "lt",
+ "pl",
+ "de",
+ "il",
+ "ps"
+ ]
+ },
+ "icon": "temaki-ped_cyclist_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "cycleway": "crossing",
+ "foot": "designated"
+ },
+ "addTags": {
+ "highway": "cycleway",
+ "cycleway": "crossing",
+ "foot": "designated",
+ "bicycle": "designated"
+ },
+ "reference": {
+ "key": "cycleway",
+ "value": "crossing"
+ },
+ "matchScore": 0.9
+ },
+ "highway/cycleway/crossing/marked": {
+ "icon": "temaki-cyclist_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/crossing/geometry_way_more}",
+ "{@templates/crossing/bicycle_more}"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "highway": "cycleway",
+ "cycleway": "crossing",
+ "crossing": "marked"
+ },
+ "addTags": {
+ "highway": "cycleway",
+ "cycleway": "crossing",
+ "crossing": "marked",
+ "crossing:markings": "yes"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "marked"
+ },
+ "matchScore": 0.95,
+ "name": "{highway/cycleway/crossing/uncontrolled}",
+ "searchable": false
+ },
+ "highway/crossing/unmarked": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
+ ],
+ "moreFields": [
+ "kerb",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "crossing",
+ "crossing": "unmarked"
+ },
+ "addTags": {
+ "highway": "crossing",
+ "crossing": "unmarked",
+ "crossing:markings": "no"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "unmarked"
+ }
+ },
+ "highway/crossing/uncontrolled": {
+ "icon": "temaki-pedestrian_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings_yes}",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
+ ],
+ "moreFields": [
+ "kerb",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "crossing",
+ "crossing": "uncontrolled"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "uncontrolled"
+ }
+ },
+ "highway/crossing/traffic_signals": {
+ "icon": "temaki-railway_signals",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/traffic_signal}",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
+ ],
+ "moreFields": [
+ "{@templates/crossing/traffic_signal_more}",
+ "kerb",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "crossing",
+ "crossing": "traffic_signals"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "traffic_signals"
+ }
+ },
+ "highway/crossing/zebra": {
+ "icon": "temaki-pedestrian_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
+ ],
+ "moreFields": [
+ "kerb",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "crossing",
+ "crossing": "zebra"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "zebra"
+ },
+ "name": "{highway/crossing/uncontrolled}",
+ "searchable": false
+ },
+ "highway/crossing/marked": {
+ "icon": "temaki-pedestrian_crosswalk",
+ "fields": [
+ "crossing",
+ "{@templates/crossing/markings}",
+ "{@templates/crossing/defaults}",
+ "tactile_paving"
+ ],
+ "moreFields": [
+ "kerb",
+ "flashing_lights"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "highway": "crossing",
+ "crossing": "marked"
+ },
+ "addTags": {
+ "highway": "crossing",
+ "crossing": "marked",
+ "crossing:markings": "yes"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "marked"
+ },
+ "name": "{highway/crossing/uncontrolled}",
+ "searchable": false
+ },
+ "highway/crossing/informal": {
+ "icon": "temaki-pedestrian",
+ "fields": [
+ "crossing"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "crossing": "informal"
+ },
+ "reference": {
+ "key": "crossing",
+ "value": "informal"
+ },
+ "searchable": false
+ },
+ "healthcare/speech_therapist": {
+ "icon": "fas-comment",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "speech_therapist"
+ }
+ },
+ "healthcare/sample_collection": {
+ "icon": "fas-vial",
+ "fields": [
+ "name",
+ "sample_collection",
+ "operator",
+ "website",
+ "phone",
+ "address",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{healthcare}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "sample_collection"
+ }
+ },
+ "healthcare/rehabilitation": {
+ "icon": "maki-hospital",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "rehabilitation"
+ }
+ },
+ "healthcare/psychotherapist": {
+ "icon": "maki-hospital",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "psychotherapist"
+ }
+ },
+ "healthcare/podiatrist": {
+ "icon": "maki-hospital",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "podiatrist"
+ }
+ },
+ "healthcare/physiotherapist": {
+ "icon": "temaki-physiotherapist",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "physiotherapist"
+ }
+ },
+ "healthcare/optometrist": {
+ "icon": "fas-eye",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "optometrist"
+ }
+ },
+ "healthcare/occupational_therapist": {
+ "icon": "maki-hospital",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "occupational_therapist"
+ }
+ },
+ "healthcare/midwife": {
+ "icon": "fas-baby",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "midwife"
+ }
+ },
+ "healthcare/laboratory": {
+ "icon": "fas-vial",
+ "fields": [
+ "name",
+ "operator",
+ "healthcare/speciality",
+ "website",
+ "phone",
+ "ref",
+ "address",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{healthcare}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "laboratory"
+ }
+ },
+ "healthcare/hospice": {
+ "icon": "fas-procedures",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "hospice"
+ }
+ },
+ "healthcare/counselling": {
+ "icon": "fas-comments",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "counselling"
+ }
+ },
+ "healthcare/blood_donation": {
+ "icon": "maki-blood-bank",
+ "fields": [
+ "{healthcare}",
+ "blood_components"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "blood_donation"
+ }
+ },
+ "healthcare/birthing_center": {
+ "icon": "fas-baby",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "birthing_centre"
+ }
+ },
+ "healthcare/audiologist": {
+ "icon": "maki-hospital",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "audiologist"
+ }
+ },
+ "healthcare/alternative": {
+ "icon": "fas-spa",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "alternative"
+ }
+ },
+ "healthcare/yes": {
+ "icon": "maki-hospital",
+ "fields": [
+ "name",
+ "healthcare",
+ "{healthcare}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "yes"
},
"searchable": false,
"matchScore": 0.5
},
- "traffic_calming/bump": {
- "icon": "temaki-speed_bump",
+ "healthcare/dentist/orthodontics": {
+ "icon": "fas-teeth",
"fields": [
- "surface",
- "direction_vertex"
+ "{amenity/dentist}"
+ ],
+ "moreFields": [
+ "{amenity/dentist}"
],
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "traffic_calming": "bump"
+ "healthcare": "dentist",
+ "healthcare:speciality": "orthodontics"
+ },
+ "addTags": {
+ "healthcare": "dentist",
+ "amenity": "dentist",
+ "healthcare:speciality": "orthodontics"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "orthodontics"
}
},
- "traffic_calming/chicane": {
- "icon": "temaki-chicane_arrow",
- "fields": [
- "surface",
- "direction_vertex"
- ],
+ "healthcare/alternative/traditional_chinese_medicine": {
+ "icon": "fas-spa",
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "traffic_calming": "chicane"
+ "healthcare": "alternative",
+ "healthcare:speciality": "traditional_chinese_medicine"
}
},
- "traffic_calming/choker": {
- "icon": "temaki-diamond",
- "fields": [
- "surface",
- "direction_vertex"
- ],
+ "healthcare/alternative/osteopathy": {
+ "icon": "fas-spa",
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "traffic_calming": "choker"
+ "healthcare": "alternative",
+ "healthcare:speciality": "osteopathy"
}
},
- "traffic_calming/cushion": {
- "icon": "temaki-speed_hump",
- "fields": [
- "surface",
- "direction_vertex"
- ],
+ "healthcare/alternative/naturopathy": {
+ "icon": "fas-spa",
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "traffic_calming": "cushion"
+ "healthcare": "alternative",
+ "healthcare:speciality": "naturopathy"
}
},
- "traffic_calming/dip": {
- "icon": "temaki-speed_dip",
- "fields": [
- "surface",
- "direction_vertex"
- ],
+ "healthcare/alternative/homeopathy": {
+ "icon": "fas-spa",
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "traffic_calming": "dip"
+ "healthcare": "alternative",
+ "healthcare:speciality": "homeopathy"
}
},
- "traffic_calming/hump": {
- "icon": "temaki-speed_hump",
- "fields": [
- "surface",
- "direction_vertex"
- ],
+ "healthcare/alternative/chiropractic": {
+ "icon": "fas-spa",
"geometry": [
- "vertex"
+ "point",
+ "area"
],
"tags": {
- "traffic_calming": "hump"
+ "healthcare": "alternative",
+ "healthcare:speciality": "chiropractic"
}
},
- "traffic_calming/island": {
- "icon": "temaki-diamond",
+ "healthcare/alternative/ayurveda": {
+ "icon": "temaki-hinduism",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "alternative",
+ "healthcare:speciality": "ayurveda"
+ }
+ },
+ "healthcare/alternative/acupuncture": {
+ "icon": "fas-spa",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "alternative",
+ "healthcare:speciality": "acupuncture"
+ }
+ },
+ "golf/water_hazard": {
+ "icon": "maki-golf",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "golf": "water_hazard"
+ },
+ "addTags": {
+ "golf": "water_hazard",
+ "natural": "water"
+ }
+ },
+ "golf/tee": {
+ "icon": "roentgen-golf_tee",
"fields": [
+ "tee",
"surface"
],
"geometry": [
@@ -26113,1075 +19616,4245 @@
"area"
],
"tags": {
- "traffic_calming": "island"
+ "golf": "tee"
}
},
- "traffic_calming/mini_bumps": {
- "icon": "temaki-speed_bump",
- "tags": {
- "traffic_calming": "mini_bumps"
- },
- "geometry": [
- "vertex"
- ],
+ "golf/rough": {
+ "icon": "maki-golf",
"fields": [
+ "surface"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "golf": "rough"
+ }
+ },
+ "golf/path": {
+ "icon": "maki-golf",
+ "fields": [
+ "name",
"surface",
- "direction_vertex"
- ]
- },
- "traffic_calming/rumble_strip": {
- "icon": "temaki-rumble_strip",
- "fields": [
- "direction_vertex"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "traffic_calming": "rumble_strip"
- }
- },
- "traffic_calming/table": {
- "icon": "temaki-speed_table",
- "fields": [
- "surface",
- "direction_vertex"
- ],
- "geometry": [
- "vertex"
- ],
- "tags": {
- "traffic_calming": "table"
- }
- },
- "traffic_sign": {
- "icon": "fas-directions",
- "fields": [
- "traffic_sign",
- "traffic_sign/direction",
- "direction_point"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "traffic_sign": "*"
- }
- },
- "traffic_sign/city_limit": {
- "icon": "maki-square-stroked",
- "fields": [
- "{traffic_sign}",
- "name"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "traffic_sign": "city_limit"
- }
- },
- "traffic_sign/maxspeed": {
- "icon": "maki-square-stroked",
- "fields": [
- "{traffic_sign}",
- "maxspeed"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "traffic_sign": "maxspeed"
- }
- },
- "traffic_sign/variable_message": {
- "icon": "temaki-billboard",
- "fields": [
- "{traffic_sign}",
- "direction_vertex"
- ],
- "geometry": [
- "point",
- "vertex"
- ],
- "tags": {
- "traffic_sign": "variable_message"
- }
- },
- "type/boundary": {
- "icon": "iD-boundary",
- "fields": [
- "name",
- "boundary"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "boundary"
- }
- },
- "type/boundary/administrative": {
- "icon": "iD-boundary",
- "fields": [
- "name",
- "admin_level"
+ "width",
+ "structure",
+ "access",
+ "incline"
],
"moreFields": [
- "gnis/feature_id-US"
+ "bridge/ref"
],
"geometry": [
- "relation"
+ "line"
],
"tags": {
- "type": "boundary",
- "boundary": "administrative"
+ "golf": "path"
},
- "reference": {
- "key": "boundary",
- "value": "administrative"
+ "addTags": {
+ "golf": "path",
+ "highway": "footway"
}
},
- "type/connectivity": {
- "icon": "iD-relation",
- "fields": [
- "connectivity"
- ],
+ "golf/lateral_water_hazard": {
+ "icon": "maki-golf",
"geometry": [
- "relation"
+ "area"
],
"tags": {
- "type": "connectivity"
- }
- },
- "type/destination_sign": {
- "icon": "iD-relation",
- "fields": [
- "destination",
- "destination/ref",
- "destination/symbol",
- "distance"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "destination_sign"
- }
- },
- "type/enforcement": {
- "icon": "iD-relation",
- "fields": [
- "enforcement"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "enforcement"
- }
- },
- "type/enforcement/maxspeed": {
- "icon": "iD-relation",
- "fields": [
- "maxspeed"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "enforcement",
- "enforcement": "maxspeed"
+ "golf": "lateral_water_hazard"
},
- "reference": {
- "key": "enforcement",
- "value": "maxspeed"
+ "addTags": {
+ "golf": "lateral_water_hazard",
+ "natural": "water"
}
},
- "type/multipolygon": {
- "icon": "iD-multipolygon",
+ "golf/hole": {
+ "icon": "temaki-golf_green",
+ "fields": [
+ "ref_golf_hole",
+ "par",
+ "handicap"
+ ],
"geometry": [
- "relation"
+ "line"
],
"tags": {
- "type": "multipolygon"
- },
- "removeTags": {},
- "matchScore": 0.1
+ "golf": "hole"
+ }
},
- "type/public_transport/stop_area_group": {
- "icon": "iD-relation",
+ "golf/green": {
+ "icon": "temaki-golf_green",
+ "fields": [
+ "surface"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "golf": "green"
+ }
+ },
+ "golf/fairway": {
+ "icon": "maki-golf",
+ "fields": [
+ "surface"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "golf": "fairway"
+ }
+ },
+ "golf/driving_range": {
+ "icon": "maki-golf",
"fields": [
"name",
- "ref",
- "network",
- "operator"
+ "capacity",
+ "surface"
],
"geometry": [
- "relation"
+ "area"
],
"tags": {
- "type": "public_transport",
- "public_transport": "stop_area_group"
- },
- "reference": {
- "key": "public_transport",
- "value": "stop_area_group"
+ "golf": "driving_range"
}
},
- "type/restriction": {
- "icon": "iD-restriction",
- "fields": [
- "restriction",
- "except"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction"
- }
- },
- "type/restriction/no_left_turn": {
- "icon": "iD-restriction-no-left-turn",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_left_turn"
- },
- "reference": {
- "key": "restriction",
- "value": "no_left_turn"
- }
- },
- "type/restriction/no_right_turn": {
- "icon": "iD-restriction-no-right-turn",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_right_turn"
- },
- "reference": {
- "key": "restriction",
- "value": "no_right_turn"
- }
- },
- "type/restriction/no_straight_on": {
- "icon": "iD-restriction-no-straight-on",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_straight_on"
- },
- "reference": {
- "key": "restriction",
- "value": "no_straight_on"
- }
- },
- "type/restriction/no_u_turn": {
- "icon": "iD-restriction-no-u-turn",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "no_u_turn"
- },
- "reference": {
- "key": "restriction",
- "value": "no_u_turn"
- }
- },
- "type/restriction/only_left_turn": {
- "icon": "iD-restriction-only-left-turn",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_left_turn"
- },
- "reference": {
- "key": "restriction",
- "value": "only_left_turn"
- }
- },
- "type/restriction/only_right_turn": {
- "icon": "iD-restriction-only-right-turn",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_right_turn"
- },
- "reference": {
- "key": "restriction",
- "value": "only_right_turn"
- }
- },
- "type/restriction/only_straight_on": {
- "icon": "iD-restriction-only-straight-on",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_straight_on"
- },
- "reference": {
- "key": "restriction",
- "value": "only_straight_on"
- }
- },
- "type/restriction/only_u_turn": {
- "icon": "iD-restriction-only-u-turn",
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "restriction",
- "restriction": "only_u_turn"
- },
- "reference": {
- "key": "restriction",
- "value": "only_u_turn"
- }
- },
- "type/route_master": {
- "icon": "iD-route-master",
+ "golf/clubhouse": {
+ "icon": "maki-golf",
"fields": [
"name",
- "route_master",
- "ref",
"operator",
- "network"
- ],
- "moreFields": [
- "colour",
- "interval",
- "opening_hours",
- "opening_hours/covid19",
- "wheelchair"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route_master"
- }
- },
- "type/route": {
- "icon": "iD-route",
- "fields": [
- "name",
- "route",
- "ref_route",
- "operator",
- "network",
- "network/type"
- ],
- "moreFields": [
- "distance"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route"
- }
- },
- "type/route/aerialway": {
- "icon": "temaki-gondola_lift",
- "fields": [
- "{type/route/train}"
- ],
- "moreFields": [
- "{type/route/train}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "aerialway"
- },
- "reference": {
- "key": "route",
- "value": "aerialway"
- }
- },
- "type/route/bicycle": {
- "icon": "maki-bicycle",
- "fields": [
- "name",
- "ref_route",
- "network_bicycle",
- "cycle_network",
- "network/type",
- "from",
- "to",
- "via"
- ],
- "moreFields": [
- "ascent",
- "colour",
- "descent",
- "direction_cardinal-US-CA-NZ",
- "distance",
- "roundtrip"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "bicycle"
- },
- "reference": {
- "key": "route",
- "value": "bicycle"
- }
- },
- "type/route/bus": {
- "icon": "temaki-bus",
- "fields": [
- "{type/route/train}"
- ],
- "moreFields": [
- "{type/route/train}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "bus"
- },
- "reference": {
- "key": "route",
- "value": "bus"
- }
- },
- "type/route/detour": {
- "icon": "iD-route-detour",
- "fields": [
- "name",
- "ref_route",
- "from",
- "to"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "detour"
- },
- "reference": {
- "key": "route",
- "value": "detour"
- }
- },
- "type/route/ferry": {
- "icon": "temaki-ferry",
- "fields": [
- "{route/ferry}"
- ],
- "moreFields": [
- "{route/ferry}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "ferry"
- },
- "reference": {
- "key": "route",
- "value": "ferry"
- }
- },
- "type/route/foot": {
- "icon": "temaki-pedestrian",
- "fields": [
- "{type/route/hiking}"
- ],
- "moreFields": [
- "{type/route/hiking}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "foot"
- },
- "reference": {
- "key": "route",
- "value": "foot"
- }
- },
- "type/route/hiking": {
- "icon": "fas-hiking",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network_foot",
- "network/type",
- "from",
- "to",
- "via"
- ],
- "moreFields": [
- "ascent",
- "cai_scale-IT",
- "colour",
- "descent",
- "distance",
- "roundtrip"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "hiking"
- },
- "reference": {
- "key": "route",
- "value": "hiking"
- }
- },
- "type/route/horse": {
- "icon": "maki-horse-riding",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network_horse",
- "network/type",
- "from",
- "to",
- "via"
- ],
- "moreFields": [
- "ascent",
- "colour",
- "descent",
- "distance"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "horse"
- },
- "reference": {
- "key": "route",
- "value": "horse"
- }
- },
- "type/route/light_rail": {
- "icon": "temaki-light_rail",
- "fields": [
- "{type/route/train}"
- ],
- "moreFields": [
- "{type/route/train}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "light_rail"
- },
- "reference": {
- "key": "route",
- "value": "light_rail"
- }
- },
- "type/route/monorail": {
- "icon": "temaki-monorail",
- "fields": [
- "{type/route/train}"
- ],
- "moreFields": [
- "{type/route/train}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "monorail"
- },
- "reference": {
- "key": "route",
- "value": "monorail"
- }
- },
- "type/route/mtb": {
- "icon": "maki-bicycle",
- "fields": [
- "{type/route/bicycle}"
- ],
- "moreFields": [
- "{type/route/bicycle}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "mtb"
- },
- "reference": {
- "key": "route",
- "value": "mtb"
- }
- },
- "type/route/pipeline": {
- "icon": "iD-pipeline-line",
- "fields": [
- "{type/route/power}"
- ],
- "moreFields": [
- "{type/route/power}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "pipeline"
- },
- "reference": {
- "key": "route",
- "value": "pipeline"
- }
- },
- "type/route/piste": {
- "icon": "fas-skiing",
- "fields": [
- "name",
- "piste/type",
- "ref_route",
- "operator",
- "from",
- "to",
- "via"
- ],
- "moreFields": [
- "ascent",
- "colour",
- "descent",
- "distance",
- "roundtrip"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "piste"
- },
- "reference": {
- "key": "route",
- "value": "piste"
- }
- },
- "type/route/power": {
- "icon": "iD-power-line",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "from",
- "to"
- ],
- "moreFields": [
- "distance"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "power"
- },
- "reference": {
- "key": "route",
- "value": "power"
- }
- },
- "type/route/railway": {
- "icon": "temaki-railway_track",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network",
- "from",
- "to",
- "via"
- ],
- "moreFields": [
- "distance"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "railway"
- },
- "reference": {
- "key": "route",
- "value": "railway"
- }
- },
- "type/route/road": {
- "icon": "iD-highway-unclassified",
- "fields": [
- "name",
- "ref_route",
- "network_road",
- "direction_cardinal-US-CA-NZ",
- "from",
- "to",
- "via"
- ],
- "moreFields": [
- "colour",
- "distance",
- "roundtrip"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "road"
- },
- "reference": {
- "key": "route",
- "value": "road"
- }
- },
- "type/route/subway": {
- "icon": "temaki-subway",
- "fields": [
- "{type/route/train}"
- ],
- "moreFields": [
- "{type/route/train}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "subway"
- },
- "reference": {
- "key": "route",
- "value": "subway"
- }
- },
- "type/route/train": {
- "icon": "temaki-train",
- "fields": [
- "name",
- "ref_route",
- "operator",
- "network",
- "from",
- "to",
- "via"
- ],
- "moreFields": [
- "colour",
- "direction_cardinal-US-CA-NZ",
- "distance",
- "duration",
- "interval",
- "opening_hours",
- "opening_hours/covid19",
- "roundtrip",
- "wheelchair"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "train"
- },
- "reference": {
- "key": "route",
- "value": "train"
- }
- },
- "type/route/tram": {
- "icon": "temaki-tram",
- "fields": [
- "{type/route/train}"
- ],
- "moreFields": [
- "{type/route/train}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "tram"
- },
- "reference": {
- "key": "route",
- "value": "tram"
- }
- },
- "type/route/trolleybus": {
- "icon": "temaki-trolleybus",
- "fields": [
- "{type/route/train}"
- ],
- "moreFields": [
- "{type/route/train}"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "route",
- "route": "trolleybus"
- },
- "reference": {
- "key": "route",
- "value": "trolleybus"
- }
- },
- "type/site": {
- "icon": "iD-relation",
- "fields": [
- "name",
- "site"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "site"
- }
- },
- "type/waterway": {
- "icon": "iD-waterway-stream",
- "fields": [
- "name",
- "waterway",
- "destination_waterway",
- "ref"
- ],
- "moreFields": [
- "gnis/feature_id-US"
- ],
- "geometry": [
- "relation"
- ],
- "tags": {
- "type": "waterway"
- }
- },
- "waterway/boatyard": {
- "icon": "temaki-boat",
- "fields": [
- "name",
- "operator"
- ],
- "moreFields": [
"address",
- "email",
- "fax",
- "gnis/feature_id-US",
+ "building_area_yes",
+ "access_simple"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "air_conditioning",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "level",
+ "opening_hours",
"phone",
"wheelchair"
],
"geometry": [
- "area",
+ "point",
+ "area"
+ ],
+ "tags": {
+ "golf": "clubhouse"
+ }
+ },
+ "golf/cartpath": {
+ "icon": "temaki-golf_cart",
+ "fields": [
+ "name",
+ "highway_cartpath",
+ "{golf/path}",
+ "maxspeed"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "golf": "cartpath"
+ },
+ "addTags": {
+ "golf": "cartpath",
+ "highway": "path",
+ "golf_cart": "yes"
+ }
+ },
+ "golf/bunker": {
+ "icon": "maki-golf",
+ "fields": [
+ "surface"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "golf": "bunker"
+ }
+ },
+ "entrance/staircase": {
+ "icon": "maki-entrance-alt1",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "entrance": "staircase"
+ }
+ },
+ "entrance/shop": {
+ "icon": "maki-entrance-alt1",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "entrance": "shop"
+ }
+ },
+ "entrance/main": {
+ "icon": "maki-entrance-alt1",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "entrance": "main"
+ }
+ },
+ "entrance/emergency_ward_entrance": {
+ "icon": "maki-hospital",
+ "fields": [
+ "ref",
+ "emergency_ward_entrance",
+ "address",
+ "level",
+ "opening_hours"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "emergency_ward_entrance"
+ },
+ "addTags": {
+ "emergency": "emergency_ward_entrance",
+ "entrance": "yes"
+ }
+ },
+ "entrance/emergency": {
+ "icon": "maki-entrance-alt1",
+ "fields": [
+ "ref",
+ "door",
+ "access_simple",
+ "wheelchair",
+ "level"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "entrance": "emergency"
+ },
+ "matchScore": 0.8
+ },
+ "emergency/water_tank": {
+ "icon": "temaki-storage_tank",
+ "fields": [
+ "name",
+ "ref",
+ "operator",
+ "water_tank/volume",
+ "drinking_water",
+ "building_area"
+ ],
+ "moreFields": [
+ "covered",
+ "height",
+ "material"
+ ],
+ "geometry": [
+ "point",
"vertex",
+ "area"
+ ],
+ "tags": {
+ "emergency": "water_tank",
+ "man_made": "storage_tank"
+ },
+ "addTags": {
+ "emergency": "water_tank",
+ "man_made": "storage_tank",
+ "content": "water"
+ }
+ },
+ "emergency/water_reservoir_covered": {
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "ref",
+ "operator",
+ "capacity_volume",
+ "layer"
+ ],
+ "moreFields": [
+ "water_tank/volume"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "emergency": "water_tank",
+ "man_made": "reservoir_covered"
+ }
+ },
+ "emergency/water_reservoir": {
+ "icon": "maki-water",
+ "fields": [
+ "name",
+ "operator",
+ "water",
+ "covered"
+ ],
+ "moreFields": [
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "emergency": "water_tank",
+ "natural": "water",
+ "water": "reservoir"
+ }
+ },
+ "emergency/siren": {
+ "icon": "fas-volume-up",
+ "fields": [
+ "siren/purpose",
+ "siren/type",
+ "ref",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "siren"
+ }
+ },
+ "emergency/phone": {
+ "icon": "maki-emergency-phone",
+ "fields": [
+ "ref",
+ "operator",
+ "covered",
+ "indoor",
+ "booth"
+ ],
+ "moreFields": [
+ "level"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "phone"
+ }
+ },
+ "emergency/mountain_rescue": {
+ "icon": "temaki-mountain_cross",
+ "fields": [
+ "name",
+ "address",
+ "operator",
+ "building_area_yes",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "emergency": "mountain_rescue"
+ }
+ },
+ "emergency/lifeguard": {
+ "icon": "fas-life-ring",
+ "fields": [
+ "lifeguard",
+ "ref",
+ "operator",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "emergency": "lifeguard"
+ }
+ },
+ "emergency/lifeboat_station": {
+ "icon": "temaki-boat_tour",
+ "fields": [
+ "name",
+ "operator",
+ "seamark/rescue_station/category",
+ "address",
+ "building_area_yes",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "emergency": "water_rescue"
+ },
+ "addTags": {
+ "emergency": "water_rescue",
+ "seamark:type": "rescue_station"
+ }
+ },
+ "emergency/life_ring": {
+ "icon": "fas-life-ring",
+ "fields": [
+ "ref",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "life_ring"
+ }
+ },
+ "emergency/landing_site": {
+ "icon": "maki-heliport",
+ "fields": [
+ "name",
+ "operator",
+ "surface"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "emergency": "landing_site"
+ }
+ },
+ "emergency/first_aid_kit": {
+ "icon": "fas-medkit",
+ "fields": [
+ "indoor",
+ "ref",
+ "operator"
+ ],
+ "moreFields": [
+ "level"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "first_aid_kit"
+ }
+ },
+ "emergency/fire_service_inlet": {
+ "icon": "maki-water",
+ "fields": [
+ "fire_mains",
+ "fire_sprinkler",
+ "couplings"
+ ],
+ "moreFields": [
+ "level",
+ "survey/date",
+ "fire_service_inlet",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "fire_service_inlet"
+ }
+ },
+ "emergency/fire_hydrant": {
+ "icon": "temaki-fire_hydrant",
+ "fields": [
+ "ref",
+ "fire_hydrant/type",
+ "colour",
+ "fire_hydrant/position",
+ "water_source",
+ "couplings"
+ ],
+ "moreFields": [
+ "fire_hydrant/diameter",
+ "fire_hydrant/pressure",
+ "level",
+ "survey/date"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "fire_hydrant"
+ }
+ },
+ "emergency/fire_hose": {
+ "icon": "fas-tape",
+ "fields": [
+ "indoor",
+ "ref",
+ "operator"
+ ],
+ "moreFields": [
+ "level"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "fire_hose"
+ }
+ },
+ "emergency/fire_extinguisher": {
+ "icon": "fas-fire-extinguisher",
+ "fields": [
+ "indoor",
+ "ref",
+ "operator"
+ ],
+ "moreFields": [
+ "level"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "fire_extinguisher"
+ }
+ },
+ "emergency/fire_alarm": {
+ "icon": "fas-bell",
+ "fields": [
+ "indoor",
+ "ref",
+ "operator"
+ ],
+ "moreFields": [
+ "level"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "fire_alarm_box"
+ }
+ },
+ "emergency/disaster_response": {
+ "icon": "fas-helmet-safety",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes",
+ "address"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "emergency": "disaster_response"
+ }
+ },
+ "emergency/defibrillator": {
+ "icon": "maki-defibrillator",
+ "fields": [
+ "indoor",
+ "ref",
+ "operator",
+ "defibrillator/location",
+ "access_simple"
+ ],
+ "moreFields": [
+ "level",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "defibrillator"
+ }
+ },
+ "emergency/assembly_point": {
+ "icon": "fas-compress-arrows-alt",
+ "fields": [
+ "name",
+ "ref",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "emergency": "assembly_point"
+ }
+ },
+ "emergency/ambulance_station": {
+ "icon": "fas-ambulance",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes",
+ "address"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "emergency": "ambulance_station"
+ }
+ },
+ "emergency/yes": {
+ "fields": [
+ "emergency_combo"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "emergency": "yes"
+ },
+ "name": "{emergency}",
+ "searchable": false,
+ "matchScore": 0.01
+ },
+ "emergency/private": {
+ "fields": [
+ "emergency_combo"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "emergency": "private"
+ },
+ "name": "{emergency}",
+ "searchable": false,
+ "matchScore": 0.01
+ },
+ "emergency/official": {
+ "fields": [
+ "emergency_combo"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "emergency": "official"
+ },
+ "name": "{emergency}",
+ "searchable": false,
+ "matchScore": 0.01
+ },
+ "emergency/no": {
+ "fields": [
+ "emergency_combo"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "emergency": "no"
+ },
+ "name": "{emergency}",
+ "searchable": false,
+ "matchScore": 0.01
+ },
+ "emergency/destination": {
+ "fields": [
+ "emergency_combo"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "emergency": "destination"
+ },
+ "name": "{emergency}",
+ "searchable": false,
+ "matchScore": 0.01
+ },
+ "emergency/designated": {
+ "fields": [
+ "emergency_combo"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "emergency": "designated"
+ },
+ "name": "{emergency}",
+ "searchable": false,
+ "matchScore": 0.01
+ },
+ "emergency/fire_hydrant/underground": {
+ "icon": "temaki-fire_hydrant_underground",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "fire_hydrant",
+ "fire_hydrant:type": "underground"
+ }
+ },
+ "emergency/fire_hydrant/pillar": {
+ "icon": "temaki-fire_hydrant",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "emergency": "fire_hydrant",
+ "fire_hydrant:type": "pillar"
+ }
+ },
+ "education/university": {
+ "icon": "maki-college",
+ "fields": [
+ "{education/college}"
+ ],
+ "moreFields": [
+ "{education/college}"
+ ],
+ "geometry": [
+ "area",
"point"
],
"tags": {
- "waterway": "boatyard"
+ "amenity": "university"
+ },
+ "addTags": {
+ "amenity": "university",
+ "education": "university"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "university"
}
},
- "waterway/canal": {
- "icon": "iD-waterway-canal",
+ "education/school": {
+ "icon": "temaki-school",
"fields": [
"name",
- "structure_waterway",
- "width",
- "usage_waterway",
- "intermittent",
- "lock"
+ "operator",
+ "operator/type",
+ "address",
+ "grades",
+ "religion",
+ "denomination",
+ "website",
+ "building_area"
],
"moreFields": [
- "fishing",
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "capacity",
+ "charge_fee",
+ "fee",
+ "fhrs/id-GB",
"gnis/feature_id-US",
- "salt",
- "tidal"
+ "ref/edubase-GB",
+ "internet_access",
+ "internet_access/ssid",
+ "level",
+ "polling_station",
+ "wheelchair"
],
"geometry": [
- "line"
+ "area",
+ "point"
],
"tags": {
- "waterway": "canal"
+ "amenity": "school"
+ },
+ "addTags": {
+ "amenity": "school",
+ "education": "school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "school"
}
},
- "waterway/canal/lock": {
- "icon": "iD-waterway-canal",
+ "education/prep_school": {
+ "icon": "temaki-school",
"fields": [
"name",
- "width",
- "lock"
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
],
"moreFields": [
- "gnis/feature_id-US",
- "intermittent",
- "salt",
- "tidal"
+ "{@templates/poi}"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "waterway": "canal",
- "lock": "yes"
+ "amenity": "prep_school"
+ },
+ "addTags": {
+ "amenity": "prep_school",
+ "education": "prep_school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "prep_school"
}
},
- "waterway/dam": {
- "icon": "maki-dam",
+ "education/music_school": {
+ "icon": "fas-music",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "music_school"
+ },
+ "addTags": {
+ "amenity": "music_school",
+ "education": "music_school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "music_school"
+ }
+ },
+ "education/language_school": {
+ "icon": "temaki-school",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "language_multi"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "gnis/feature_id-US",
+ "level",
+ "payment_multi",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "language_school"
+ },
+ "addTags": {
+ "amenity": "language_school",
+ "education": "language_school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "language_school"
+ }
+ },
+ "education/kindergarten": {
+ "icon": "temaki-school",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "phone",
+ "preschool"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "capacity",
+ "fhrs/id-GB",
+ "gnis/feature_id-US",
+ "ref/edubase-GB",
+ "internet_access",
+ "internet_access/ssid",
+ "level",
+ "max_age",
+ "min_age",
+ "not/name",
+ "opening_hours",
+ "payment_multi",
+ "wheelchair"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "amenity": "kindergarten"
+ },
+ "addTags": {
+ "amenity": "kindergarten",
+ "education": "kindergarten"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "kindergarten"
+ }
+ },
+ "education/driving_school": {
+ "icon": "temaki-car_pool",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "building_area",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "license_classes"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "driving_school"
+ },
+ "addTags": {
+ "amenity": "driving_school",
+ "education": "driving_school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "driving_school"
+ }
+ },
+ "education/dancing_school": {
+ "icon": "fas-music",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "dance/style"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "dancing_school"
+ },
+ "addTags": {
+ "amenity": "dancing_school",
+ "education": "dancing_school"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "dancing_school"
+ }
+ },
+ "education/college": {
+ "icon": "maki-college",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "website",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "denomination",
+ "ref/edubase-GB",
+ "religion"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "amenity": "college"
+ },
+ "addTags": {
+ "amenity": "college",
+ "education": "college"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "college"
+ }
+ },
+ "education/yes": {
+ "icon": "temaki-school",
+ "fields": [
+ "name",
+ "education",
+ "{education}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "education": "yes"
+ },
+ "searchable": false,
+ "matchScore": 0.5
+ },
+ "disused/shop": {
+ "icon": "fas-store-alt-slash",
+ "fields": [
+ "disused/shop"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "disused:shop": "*"
+ },
+ "matchScore": 0.05,
+ "searchable": false
+ },
+ "disused/railway": {
+ "icon": "temaki-rail_profile",
+ "fields": [
+ "disused/railway"
+ ],
"geometry": [
"point",
"vertex",
"line",
"area"
],
+ "tags": {
+ "disused:railway": "*"
+ },
+ "matchScore": 0.05,
+ "searchable": false
+ },
+ "disused/amenity": {
+ "fields": [
+ "disused/amenity"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "disused:amenity": "*"
+ },
+ "matchScore": 0.05,
+ "searchable": false
+ },
+ "disc_golf/tee": {
+ "icon": "temaki-disc_golf_basket",
+ "fields": [
+ "surface"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "disc_golf": "tee"
+ }
+ },
+ "disc_golf/hole": {
+ "icon": "temaki-disc_golf_basket",
"fields": [
"name",
- "operator",
+ "ref_disc_golf_hole",
+ "par"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "disc_golf": "hole"
+ }
+ },
+ "disc_golf/basket": {
+ "icon": "temaki-disc_golf_basket",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "disc_golf": "basket"
+ }
+ },
+ "demolished/building": {
+ "icon": "fas-house-damage",
+ "fields": [
+ "name",
+ "address"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "demolished:building": "*"
+ },
+ "searchable": false
+ },
+ "cycleway/asl": {
+ "icon": "maki-bicycle",
+ "fields": [
+ "ref",
+ "direction_vertex",
+ "width"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "cycleway": "asl"
+ }
+ },
+ "craft/winery": {
+ "icon": "maki-alcohol-shop",
+ "moreFields": [
+ "{craft}",
+ "fhrs/id-GB",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "winery"
+ }
+ },
+ "craft/window_construction": {
+ "icon": "temaki-window",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "window_construction"
+ }
+ },
+ "craft/watchmaker": {
+ "icon": "maki-watch",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "watchmaker"
+ }
+ },
+ "craft/upholsterer": {
+ "icon": "fas-couch",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "upholsterer"
+ }
+ },
+ "craft/tinsmith": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "tinsmith"
+ }
+ },
+ "craft/tiler": {
+ "icon": "temaki-brick_trowel",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "tiler"
+ }
+ },
+ "craft/stonemason": {
+ "icon": "temaki-brick_trowel",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "stonemason"
+ }
+ },
+ "craft/signmaker": {
+ "icon": "fas-sign-hanging",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "signmaker"
+ }
+ },
+ "craft/shoemaker": {
+ "icon": "temaki-hammer_shoe",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "shoemaker"
+ }
+ },
+ "craft/sculptor": {
+ "icon": "maki-art-gallery",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "sculptor"
+ }
+ },
+ "craft/scaffolder": {
+ "icon": "temaki-scaffold",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "scaffolder"
+ }
+ },
+ "craft/sawmill": {
+ "icon": "maki-logging",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "sawmill"
+ }
+ },
+ "craft/sailmaker": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "sailmaker"
+ }
+ },
+ "craft/saddler": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "saddler"
+ }
+ },
+ "craft/roofer": {
+ "icon": "fas-hammer",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "roofer"
+ }
+ },
+ "craft/rigger": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "rigger"
+ }
+ },
+ "craft/pottery": {
+ "icon": "temaki-vase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "pottery"
+ }
+ },
+ "craft/plumber": {
+ "icon": "temaki-plumber",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "plumber"
+ }
+ },
+ "craft/plasterer": {
+ "icon": "temaki-brick_trowel",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "plasterer"
+ }
+ },
+ "craft/photographic_laboratory": {
+ "icon": "fas-film",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "photographic_laboratory"
+ }
+ },
+ "craft/photographer": {
+ "icon": "maki-attraction",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "photographer"
+ }
+ },
+ "craft/parquet_layer": {
+ "icon": "temaki-brick_trowel",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "parquet_layer"
+ }
+ },
+ "craft/painter": {
+ "icon": "fas-paint-roller",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "painter"
+ }
+ },
+ "craft/metal_construction": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "metal_construction"
+ }
+ },
+ "craft/key_cutter": {
+ "icon": "fas-key",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "key_cutter"
+ }
+ },
+ "craft/joiner": {
+ "icon": "fas-hammer",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "joiner"
+ }
+ },
+ "craft/insulator": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "insulation"
+ }
+ },
+ "craft/hvac": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "hvac"
+ }
+ },
+ "craft/handicraft": {
+ "icon": "temaki-vase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "handicraft"
+ }
+ },
+ "craft/glaziery": {
+ "icon": "temaki-window",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "glaziery"
+ }
+ },
+ "craft/gardener": {
+ "icon": "maki-garden-centre",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "gardener"
+ }
+ },
+ "craft/floorer": {
+ "icon": "temaki-brick_trowel",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "floorer"
+ }
+ },
+ "craft/electronics_repair": {
+ "icon": "fas-screwdriver",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "electronics_repair"
+ }
+ },
+ "craft/electrician": {
+ "icon": "temaki-power",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "electrician"
+ }
+ },
+ "craft/dressmaker": {
+ "icon": "temaki-dress",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "dressmaker"
+ }
+ },
+ "craft/distillery": {
+ "icon": "temaki-storage_fermenter",
+ "fields": [
+ "{craft}",
+ "product"
+ ],
+ "moreFields": [
+ "{craft}",
+ "fhrs/id-GB",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "distillery"
+ }
+ },
+ "craft/confectionery": {
+ "icon": "maki-confectionery",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
+ "tags": {
+ "craft": "confectionery"
+ }
+ },
+ "craft/clockmaker": {
+ "icon": "temaki-clock",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "clockmaker"
+ }
+ },
+ "craft/cleaning": {
+ "icon": "temaki-vacuum",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "cleaning"
+ }
+ },
+ "craft/chimney_sweeper": {
+ "icon": "temaki-chimney",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "chimney_sweeper"
+ }
+ },
+ "craft/caterer": {
+ "icon": "temaki-catering",
+ "fields": [
+ "name",
+ "cuisine",
+ "{craft}"
+ ],
+ "moreFields": [
+ "fhrs/id-GB"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "caterer"
+ }
+ },
+ "craft/carpet_layer": {
+ "icon": "temaki-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "carpet_layer"
+ }
+ },
+ "craft/carpenter": {
+ "icon": "fas-hammer",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "carpenter"
+ }
+ },
+ "craft/brewery": {
+ "icon": "temaki-storage_fermenter",
+ "fields": [
+ "{craft}",
+ "product"
+ ],
+ "moreFields": [
+ "{craft}",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "brewery"
+ }
+ },
+ "craft/bookbinder": {
+ "icon": "maki-library",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "bookbinder"
+ }
+ },
+ "craft/boatbuilder": {
+ "icon": "temaki-boat_repair",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "boatbuilder"
+ },
+ "matchScore": 0.6
+ },
+ "craft/blacksmith": {
+ "icon": "temaki-anvil_and_hammer",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "blacksmith"
+ }
+ },
+ "craft/beekeeper": {
+ "icon": "maki-farm",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "beekeeper"
+ }
+ },
+ "craft/basket_maker": {
+ "icon": "temaki-vase",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "basket_maker"
+ }
+ },
+ "craft/agricultural_engines": {
+ "icon": "fas-tools",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "agricultural_engines"
+ }
+ },
+ "craft/tailor": {
+ "icon": "temaki-needle_and_spool",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "tailor"
+ },
+ "reference": {
+ "key": "shop",
+ "value": "tailor"
+ },
+ "searchable": false
+ },
+ "craft/locksmith": {
+ "icon": "maki-marker-stroked",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "craft": "locksmith"
+ },
+ "reference": {
+ "key": "shop",
+ "value": "locksmith"
+ },
+ "searchable": false
+ },
+ "club/sport": {
+ "icon": "maki-pitch",
+ "fields": [
+ "name",
+ "sport",
+ "{club}"
+ ],
+ "moreFields": [
+ "{club}",
+ "access_simple"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "club": "sport"
+ }
+ },
+ "club/scout": {
+ "icon": "fas-handshake",
+ "fields": [
+ "{club}"
+ ],
+ "moreFields": [
+ "{club}",
+ "brand"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "club": "scout"
+ }
+ },
+ "climbing/route_bottom": {
+ "icon": "temaki-abseiling",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "name",
+ "climbing/sport",
+ "climbing/trad",
+ "climbing/bolts"
+ ],
+ "moreFields": [
+ "climbing/grade/uiaa",
+ "climbing/grade/french",
+ "climbing/grade/saxon",
+ "climbing/grade/yds_class",
+ "website",
+ "climbing/length",
+ "description"
+ ],
+ "tags": {
+ "climbing": "route_bottom"
+ },
+ "addTags": {
+ "sport": "climbing",
+ "climbing": "route_bottom"
+ }
+ },
+ "climbing/route": {
+ "icon": "temaki-climbing",
+ "geometry": [
+ "line",
+ "point"
+ ],
+ "fields": [
+ "{climbing/route_bottom}"
+ ],
+ "moreFields": [
+ "{climbing/route_bottom}"
+ ],
+ "tags": {
+ "climbing": "route"
+ },
+ "addTags": {
+ "climbing": "route",
+ "sport": "climbing"
+ }
+ },
+ "climbing/crag": {
+ "icon": "temaki-climbing",
+ "fields": [
+ "name"
+ ],
+ "moreFields": [
+ "website"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "climbing": "crag"
+ },
+ "addTags": {
+ "sport": "climbing",
+ "climbing": "crag"
+ }
+ },
+ "cemetery/sector": {
+ "icon": "maki-cemetery",
+ "fields": [
+ "name",
+ "ref_sector"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "cemetery": "sector"
+ }
+ },
+ "cemetery/grave": {
+ "icon": "maki-cemetery",
+ "fields": [
+ "name",
+ "inscription"
+ ],
+ "moreFields": [
+ "description"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "cemetery": "grave"
+ }
+ },
+ "building/warehouse": {
+ "icon": "maki-warehouse",
+ "fields": [
+ "{building}",
+ "phone"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "warehouse"
+ },
+ "matchScore": 0.5
+ },
+ "building/university": {
+ "icon": "fas-school",
+ "moreFields": [
+ "{building}",
+ "polling_station"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "university"
+ },
+ "matchScore": 0.5
+ },
+ "building/transportation": {
+ "icon": "maki-building",
+ "fields": [
+ "{building}",
+ "smoking"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "transportation"
+ },
+ "matchScore": 0.5
+ },
+ "building/terrace": {
+ "icon": "temaki-row_houses",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "terrace"
+ },
+ "matchScore": 0.5
+ },
+ "building/temple": {
+ "icon": "maki-place-of-worship",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "temple"
+ },
+ "matchScore": 0.5
+ },
+ "building/synagogue": {
+ "icon": "fas-synagogue",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "synagogue"
+ },
+ "matchScore": 0.5
+ },
+ "building/sty": {
+ "icon": "temaki-barn",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "sty"
+ },
+ "matchScore": 0.5
+ },
+ "building/static_caravan": {
+ "icon": "temaki-manufactured_home",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "static_caravan"
+ },
+ "matchScore": 0.5
+ },
+ "building/stadium": {
+ "icon": "maki-stadium",
+ "fields": [
+ "{building}",
+ "smoking"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "stadium"
+ },
+ "matchScore": 0.5
+ },
+ "building/stable": {
+ "icon": "temaki-horse_shelter",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "stable"
+ },
+ "matchScore": 0.5
+ },
+ "building/shed": {
+ "icon": "fas-warehouse",
+ "fields": [
+ "{building}",
+ "lockable"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "shed"
+ },
+ "matchScore": 0.5
+ },
+ "building/service": {
+ "icon": "maki-building",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "service"
+ },
+ "matchScore": 0.5
+ },
+ "building/semidetached_house": {
+ "icon": "maki-home",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "semidetached_house"
+ },
+ "matchScore": 0.5
+ },
+ "building/school": {
+ "icon": "fas-school",
+ "moreFields": [
+ "{building}",
+ "polling_station"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "school"
+ },
+ "matchScore": 0.5
+ },
+ "building/ruins": {
+ "icon": "temaki-ruins",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "ruins"
+ },
+ "matchScore": 0.5
+ },
+ "building/roof": {
+ "icon": "maki-shelter",
+ "fields": [
+ "building",
+ "height",
+ "layer_1"
+ ],
+ "moreFields": [
+ "address",
+ "architect",
+ "building/colour",
+ "building/levels",
+ "building/levels/underground",
+ "building/material",
+ "building/prefabricated",
+ "ele",
"gnis/feature_id-US",
+ "not/name",
+ "operator",
+ "roof/colour",
+ "roof/shape",
+ "roof/height"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "roof"
+ },
+ "matchScore": 0.5
+ },
+ "building/riding_hall": {
+ "icon": "maki-horse-riding",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "riding_hall"
+ },
+ "matchScore": 0.5
+ },
+ "building/retail": {
+ "icon": "maki-commercial",
+ "fields": [
+ "{building}",
+ "smoking"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "retail"
+ },
+ "matchScore": 0.5
+ },
+ "building/residential": {
+ "icon": "maki-residential-community",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "residential"
+ },
+ "matchScore": 0.5
+ },
+ "building/public": {
+ "icon": "maki-building",
+ "fields": [
+ "{building}",
+ "smoking"
+ ],
+ "moreFields": [
+ "{building}",
+ "polling_station"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "public"
+ },
+ "matchScore": 0.5
+ },
+ "building/pavilion": {
+ "icon": "maki-building",
+ "fields": [
+ "{building}",
+ "smoking"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "pavilion"
+ },
+ "matchScore": 0.5
+ },
+ "building/office": {
+ "icon": "maki-suitcase",
+ "fields": [
+ "{building}",
+ "smoking"
+ ],
+ "moreFields": [
+ "{building}",
+ "phone"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "office"
+ },
+ "matchScore": 0.5
+ },
+ "building/mosque": {
+ "icon": "fas-mosque",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "mosque"
+ },
+ "matchScore": 0.5
+ },
+ "building/kindergarten": {
+ "icon": "fas-school",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "kindergarten"
+ },
+ "matchScore": 0.5
+ },
+ "building/industrial": {
+ "icon": "maki-industry",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "industrial"
+ },
+ "matchScore": 0.5
+ },
+ "building/hut": {
+ "icon": "temaki-hut",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "hut"
+ },
+ "matchScore": 0.5
+ },
+ "building/houseboat": {
+ "icon": "temaki-houseboat",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "houseboat"
+ },
+ "matchScore": 0.5
+ },
+ "building/house": {
+ "icon": "maki-home",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "house",
+ "{building}"
+ ],
+ "tags": {
+ "building": "house"
+ },
+ "matchScore": 0.5
+ },
+ "building/hotel": {
+ "icon": "fas-hotel",
+ "fields": [
+ "{building}",
+ "smoking"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "hotel"
+ },
+ "matchScore": 0.5
+ },
+ "building/hospital": {
+ "icon": "fas-hospital-alt",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "hospital"
+ },
+ "matchScore": 0.5
+ },
+ "building/hangar": {
+ "icon": "temaki-hangar",
+ "fields": [
+ "name"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "hangar"
+ },
+ "matchScore": 0.5
+ },
+ "building/greenhouse": {
+ "icon": "maki-garden-centre",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "greenhouse"
+ },
+ "matchScore": 0.5
+ },
+ "building/grandstand": {
+ "icon": "maki-building",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "grandstand"
+ },
+ "matchScore": 0.5
+ },
+ "building/ger": {
+ "icon": "temaki-hut",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "ger"
+ }
+ },
+ "building/garages": {
+ "icon": "fas-warehouse",
+ "fields": [
+ "capacity"
+ ],
+ "moreFields": [
+ "building",
+ "building/levels",
+ "height",
+ "address",
+ "{building}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "garages"
+ },
+ "matchScore": 0.5
+ },
+ "building/garage": {
+ "icon": "fas-warehouse",
+ "fields": [
+ "{building/garages}"
+ ],
+ "moreFields": [
+ "{building/garages}"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "garage"
+ },
+ "matchScore": 0.5
+ },
+ "building/fire_station": {
+ "icon": "fas-house-fire",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "fire_station"
+ },
+ "matchScore": 0.5
+ },
+ "building/farm_auxiliary": {
+ "icon": "maki-farm",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "farm_auxiliary"
+ },
+ "matchScore": 0.5
+ },
+ "building/farm": {
+ "icon": "maki-farm",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "farm"
+ },
+ "matchScore": 0.5
+ },
+ "building/dormitory": {
+ "icon": "maki-building",
+ "fields": [
+ "{building}",
+ "smoking"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "dormitory"
+ },
+ "matchScore": 0.5
+ },
+ "building/detached": {
+ "icon": "maki-home",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "detached"
+ },
+ "matchScore": 0.5
+ },
+ "building/cowshed": {
+ "icon": "temaki-barn",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "cowshed"
+ },
+ "matchScore": 0.5
+ },
+ "building/construction": {
+ "icon": "maki-building",
+ "fields": [
+ "name",
+ "construction",
+ "address",
+ "opening_date",
+ "check_date"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "construction"
+ },
+ "removeTags": {
+ "building": "construction",
+ "construction": "*"
+ },
+ "matchScore": 0.5
+ },
+ "building/commercial": {
+ "icon": "maki-suitcase",
+ "fields": [
+ "{building}",
+ "smoking"
+ ],
+ "moreFields": [
+ "{building}",
+ "phone"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "commercial"
+ },
+ "matchScore": 0.5
+ },
+ "building/college": {
+ "icon": "fas-school",
+ "moreFields": [
+ "{building}",
+ "polling_station"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "college"
+ },
+ "matchScore": 0.5
+ },
+ "building/civic": {
+ "icon": "maki-building",
+ "fields": [
+ "{building}",
+ "smoking"
+ ],
+ "moreFields": [
+ "{building}",
+ "polling_station"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "civic"
+ },
+ "matchScore": 0.5
+ },
+ "building/church": {
+ "icon": "fas-church",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "church"
+ },
+ "matchScore": 0.5
+ },
+ "building/chapel": {
+ "icon": "maki-place-of-worship",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "chapel"
+ },
+ "matchScore": 0.5
+ },
+ "building/cathedral": {
+ "icon": "fas-church",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "cathedral"
+ },
+ "matchScore": 0.5
+ },
+ "building/carport": {
+ "icon": "temaki-carport",
+ "fields": [
+ "{building}",
+ "capacity"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "carport"
+ },
+ "matchScore": 0.5
+ },
+ "building/cabin": {
+ "icon": "temaki-cabin",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "cabin"
+ },
+ "matchScore": 0.5
+ },
+ "building/bungalow": {
+ "icon": "maki-home",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "bungalow"
+ },
+ "matchScore": 0.5
+ },
+ "building/boathouse": {
+ "icon": "maki-harbor",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "boathouse"
+ },
+ "matchScore": 0.5
+ },
+ "building/barn": {
+ "icon": "temaki-barn",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "barn"
+ },
+ "matchScore": 0.5
+ },
+ "building/bakehouse": {
+ "icon": "temaki-bread",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "bakehouse"
+ },
+ "matchScore": 0.5
+ },
+ "building/apartments": {
+ "icon": "maki-building",
+ "fields": [
+ "{building}",
+ "building/flats"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "apartments"
+ },
+ "matchScore": 0.5
+ },
+ "building/allotment_house": {
+ "icon": "maki-building",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "allotment_house"
+ },
+ "matchScore": 0.5
+ },
+ "building/train_station": {
+ "icon": "maki-building",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "building": "train_station"
+ },
+ "matchScore": 0.5,
+ "searchable": false
+ },
+ "building/outbuilding": {
+ "icon": "maki-building",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "outbuilding"
+ },
+ "matchScore": 0.5,
+ "searchable": false
+ },
+ "building/manufacture": {
+ "icon": "maki-industry",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "manufacture"
+ },
+ "matchScore": 0.5,
+ "searchable": false
+ },
+ "building/entrance": {
+ "icon": "maki-entrance-alt1",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "building": "entrance"
+ },
+ "searchable": false
+ },
+ "building/bunker": {
+ "icon": "temaki-bunker",
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "building": "bunker"
+ },
+ "fields": [
+ "{military/bunker}",
+ "{building}"
+ ],
+ "moreFields": [
+ "{military/bunker}",
+ "{building}"
+ ],
+ "matchScore": 0.5,
+ "searchable": false
+ },
+ "building/house/terraced": {
+ "icon": "temaki-row_houses",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "house",
+ "{building}"
+ ],
+ "tags": {
+ "building": "house",
+ "house": "terraced"
+ },
+ "reference": {
+ "key": "house",
+ "value": "terraced"
+ },
+ "matchScore": 0.5
+ },
+ "building/house/terrace": {
+ "icon": "temaki-row_houses",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "house",
+ "{building}"
+ ],
+ "tags": {
+ "building": "house",
+ "house": "terrace"
+ },
+ "reference": {
+ "key": "house",
+ "value": "terrace"
+ },
+ "matchScore": 0.5,
+ "name": "{building/terrace}",
+ "searchable": false
+ },
+ "building/house/semi-detached": {
+ "icon": "maki-home",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "house",
+ "{building}"
+ ],
+ "tags": {
+ "building": "house",
+ "house": "semi-detached"
+ },
+ "reference": {
+ "key": "house",
+ "value": "semi-detached"
+ },
+ "matchScore": 0.5,
+ "name": "{building/semidetached_house}",
+ "searchable": false
+ },
+ "building/house/detached": {
+ "icon": "maki-home",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "house",
+ "{building}"
+ ],
+ "tags": {
+ "building": "house",
+ "house": "detached"
+ },
+ "reference": {
+ "key": "house",
+ "value": "detached"
+ },
+ "matchScore": 0.5,
+ "name": "{building/detached}",
+ "searchable": false
+ },
+ "bridge/support": {
+ "icon": "fas-archway",
+ "fields": [
+ "bridge/support",
+ "height",
+ "layer",
+ "material"
+ ],
+ "moreFields": [
+ "colour",
+ "seamark/type"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "bridge:support": "*"
+ }
+ },
+ "bridge/support/pier": {
+ "icon": "fas-archway",
+ "fields": [
+ "bridge/support",
+ "{bridge/support}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "bridge:support": "pier"
+ }
+ },
+ "boundary/hazard": {
+ "icon": "fas-triangle-exclamation",
+ "fields": [
+ "name",
+ "hazard_boundary"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "boundary": "hazard"
+ }
+ },
+ "boundary/administrative": {
+ "fields": [
+ "name",
+ "admin_level"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "boundary": "administrative"
+ },
+ "matchScore": 0.5
+ },
+ "barrier/wicket_gate": {
+ "icon": "temaki-gate",
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "fields": [
+ "access"
+ ],
+ "moreFields": [
+ "entrance"
+ ],
+ "tags": {
+ "barrier": "wicket_gate"
+ }
+ },
+ "barrier/wall": {
+ "icon": "temaki-wall",
+ "fields": [
+ "wall",
+ "height",
+ "material"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "barrier": "wall"
+ },
+ "matchScore": 0.25
+ },
+ "barrier/turnstile": {
+ "icon": "temaki-turnstile",
+ "fields": [
+ "access"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "turnstile"
+ }
+ },
+ "barrier/toll_booth": {
+ "icon": "maki-toll",
+ "fields": [
+ "access",
+ "building_area_yes",
+ "payment_multi",
+ "currency_multi"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "opening_hours"
+ ],
+ "geometry": [
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "barrier": "toll_booth"
+ }
+ },
+ "barrier/swing_gate": {
+ "icon": "temaki-gate",
+ "fields": [
+ "{barrier/gate}"
+ ],
+ "moreFields": [
+ "{barrier/gate}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "swing_gate"
+ }
+ },
+ "barrier/stile": {
+ "icon": "temaki-stile_squeezer",
+ "fields": [
+ "access",
+ "stile",
+ "material"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "stile"
+ }
+ },
+ "barrier/spikes": {
+ "icon": "temaki-spike_strip",
+ "fields": [
+ "direction_vertex",
+ "access",
+ "height",
+ "colour"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "spikes"
+ },
+ "matchScore": 0.5
+ },
+ "barrier/sally_port": {
+ "icon": "fas-dungeon",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "sally_port"
+ }
+ },
+ "barrier/rope": {
+ "icon": "temaki-rope_fence",
+ "fields": [
+ "access"
+ ],
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "barrier": "rope"
+ }
+ },
+ "barrier/retaining_wall": {
+ "icon": "temaki-wall",
+ "fields": [
+ "height",
+ "material"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "barrier": "retaining_wall"
+ }
+ },
+ "barrier/motorcycle_barrier": {
+ "icon": "maki-roadblock",
+ "fields": [
+ "access"
+ ],
+ "moreFields": [
+ "wheelchair"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "motorcycle_barrier"
+ }
+ },
+ "barrier/log": {
+ "icon": "maki-roadblock",
+ "fields": [
+ "access"
+ ],
+ "geometry": [
+ "vertex",
+ "point",
+ "line"
+ ],
+ "tags": {
+ "barrier": "log"
+ }
+ },
+ "barrier/lift_gate": {
+ "icon": "temaki-lift_gate",
+ "fields": [
+ "lift_gate/type",
+ "access",
+ "locked",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{barrier}"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "lift_gate"
+ }
+ },
+ "barrier/kissing_gate": {
+ "icon": "temaki-gate",
+ "fields": [
+ "access"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "kissing_gate"
+ }
+ },
+ "barrier/kerb": {
+ "icon": "temaki-kerb-unspecified",
+ "fields": [
+ "kerb/kerb_barrier",
+ "tactile_paving",
+ "wheelchair",
+ "two_sided"
+ ],
+ "moreFields": [
+ "material"
+ ],
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "barrier": "kerb"
+ },
+ "matchScore": 0.5
+ },
+ "barrier/jersey_barrier": {
+ "icon": "maki-roadblock",
+ "fields": [
"height",
"material"
],
"moreFields": [
- "seamark/type"
+ "access"
+ ],
+ "geometry": [
+ "vertex",
+ "line"
],
"tags": {
- "waterway": "dam"
+ "barrier": "jersey_barrier"
}
},
- "waterway/ditch": {
- "icon": "iD-waterway-ditch",
+ "barrier/height_restrictor": {
+ "icon": "temaki-height_restrictor",
"fields": [
- "{waterway/drain}"
+ "maxheight"
],
"moreFields": [
- "{waterway/drain}"
+ "direction_vertex"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "height_restrictor"
+ }
+ },
+ "barrier/hedge": {
+ "icon": "temaki-hedge",
+ "fields": [
+ "height"
+ ],
+ "moreFields": [
+ "species/wikidata"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "barrier": "hedge"
+ },
+ "matchScore": 0.25
+ },
+ "barrier/hampshire_gate": {
+ "icon": "temaki-gate",
+ "fields": [
+ "access"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "hampshire_gate"
+ }
+ },
+ "barrier/guard_rail": {
+ "icon": "temaki-guard_rail",
+ "fields": [
+ "material"
+ ],
+ "moreFields": [
+ "{barrier}",
+ "two_sided"
],
"geometry": [
"line"
],
"tags": {
- "waterway": "ditch"
- }
+ "barrier": "guard_rail"
+ },
+ "matchScore": 0.75
},
- "waterway/dock": {
- "icon": "maki-harbor",
+ "barrier/gate": {
+ "icon": "temaki-gate",
"fields": [
- "name",
- "dock",
- "operator"
+ "access",
+ "locked",
+ "wheelchair",
+ "opening_hours",
+ "height",
+ "material"
+ ],
+ "moreFields": [
+ "colour",
+ "manufacturer",
+ "operator",
+ "ref"
],
"geometry": [
- "area",
"vertex",
+ "line"
+ ],
+ "tags": {
+ "barrier": "gate"
+ }
+ },
+ "barrier/full-height_turnstile": {
+ "icon": "maki-roadblock",
+ "fields": [
+ "access"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "full-height_turnstile"
+ }
+ },
+ "barrier/fence": {
+ "icon": "maki-fence",
+ "fields": [
+ "fence_type",
+ "height",
+ "material"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "barrier": "fence"
+ },
+ "matchScore": 0.25
+ },
+ "barrier/ditch": {
+ "icon": "temaki-trench",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "barrier": "ditch"
+ },
+ "matchScore": 0.25
+ },
+ "barrier/cycle_barrier": {
+ "icon": "temaki-cycle_barrier",
+ "fields": [
+ "access",
+ "wheelchair",
+ "cycle_barrier",
+ "maxwidth/physical",
+ "opening",
+ "spacing",
+ "overlap",
+ "deflection"
+ ],
+ "moreFields": [
+ "cycle_barrier/installation"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "cycle_barrier"
+ }
+ },
+ "barrier/city_wall": {
+ "icon": "temaki-wall",
+ "fields": [
+ "height",
+ "material"
+ ],
+ "moreFields": [
+ "{barrier}",
+ "two_sided"
+ ],
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "barrier": "city_wall"
+ }
+ },
+ "barrier/chain": {
+ "icon": "temaki-rope_fence",
+ "fields": [
+ "access",
+ "locked"
+ ],
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "barrier": "chain"
+ }
+ },
+ "barrier/cattle_grid": {
+ "icon": "temaki-cattle_grid",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "cattle_grid"
+ }
+ },
+ "barrier/cable_barrier": {
+ "icon": "maki-roadblock",
+ "fields": [
+ "height",
+ "material"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "barrier": "cable_barrier"
+ }
+ },
+ "barrier/bus_trap": {
+ "icon": "maki-roadblock",
+ "fields": [
+ "access"
+ ],
+ "moreFields": [
+ "maxwidth"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "bus_trap"
+ }
+ },
+ "barrier/bump_gate": {
+ "icon": "maki-roadblock",
+ "fields": [
+ "access"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "bump_gate"
+ }
+ },
+ "barrier/border_control": {
+ "icon": "temaki-passport_checkpoint",
+ "fields": [
+ "access",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address"
+ ],
+ "geometry": [
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "barrier": "border_control"
+ }
+ },
+ "barrier/bollard_line": {
+ "icon": "temaki-bollard_row",
+ "fields": [
+ "access",
+ "bollard",
+ "height",
+ "material",
+ "colour"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "barrier": "bollard"
+ }
+ },
+ "barrier/bollard": {
+ "icon": "temaki-bollard",
+ "fields": [
+ "access",
+ "bollard",
+ "height",
+ "width",
+ "material",
+ "colour"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "bollard"
+ }
+ },
+ "barrier/block": {
+ "icon": "fas-cube",
+ "fields": [
+ "access",
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "block"
+ }
+ },
+ "barrier/yes": {
+ "icon": "maki-roadblock",
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "barrier": "yes"
+ },
+ "fields": [
+ "barrier"
+ ],
+ "searchable": false,
+ "matchScore": 0.5
+ },
+ "barrier/planter": {
+ "icon": "maki-garden",
+ "fields": [
+ "access",
+ "material"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "planter",
+ "man_made": "planter"
+ },
+ "searchable": false
+ },
+ "barrier/handrail": {
+ "icon": "temaki-railing",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "barrier": "handrail"
+ },
+ "searchable": false
+ },
+ "barrier/entrance": {
+ "icon": "maki-entrance-alt1",
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "barrier": "entrance"
+ },
+ "searchable": false
+ },
+ "barrier/wall/noise_barrier": {
+ "icon": "temaki-wall",
+ "geometry": [
+ "line",
+ "area"
+ ],
+ "tags": {
+ "barrier": "wall",
+ "wall": "noise_barrier"
+ },
+ "matchScore": 0.27
+ },
+ "barrier/kerb/rolled": {
+ "icon": "temaki-kerb-rolled",
+ "fields": [
+ "{barrier/kerb}",
+ "kerb/height"
+ ],
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "barrier": "kerb",
+ "kerb": "rolled"
+ },
+ "reference": {
+ "key": "kerb",
+ "value": "rolled"
+ },
+ "matchScore": 0.55
+ },
+ "barrier/kerb/raised": {
+ "icon": "temaki-kerb-raised",
+ "fields": [
+ "{barrier/kerb}",
+ "kerb/height"
+ ],
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "barrier": "kerb",
+ "kerb": "raised"
+ },
+ "reference": {
+ "key": "kerb",
+ "value": "raised"
+ },
+ "matchScore": 0.55
+ },
+ "barrier/kerb/lowered": {
+ "icon": "temaki-kerb-lowered",
+ "fields": [
+ "{barrier/kerb}",
+ "kerb/height"
+ ],
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "barrier": "kerb",
+ "kerb": "lowered"
+ },
+ "reference": {
+ "key": "kerb",
+ "value": "lowered"
+ },
+ "matchScore": 0.55
+ },
+ "barrier/kerb/flush": {
+ "icon": "temaki-kerb-flush",
+ "geometry": [
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "barrier": "kerb",
+ "kerb": "flush"
+ },
+ "reference": {
+ "key": "kerb",
+ "value": "flush"
+ },
+ "matchScore": 0.55
+ },
+ "barrier/fence/railing": {
+ "icon": "temaki-railing",
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "barrier": "fence",
+ "fence_type": "railing"
+ },
+ "matchScore": 0.5
+ },
+ "attraction/water_slide": {
+ "icon": "roentgen-slide_and_water",
+ "fields": [
+ "{attraction}",
+ "height",
+ "layer"
+ ],
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "attraction": "water_slide"
+ }
+ },
+ "attraction/train": {
+ "icon": "temaki-train_kids",
+ "fields": [
+ "{attraction}",
+ "fee",
+ "charge_fee"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "attraction": "train"
+ }
+ },
+ "attraction/swing_carousel": {
+ "icon": "temaki-tower",
+ "fields": [
+ "{attraction}",
+ "height"
+ ],
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "attraction": "swing_carousel"
+ }
+ },
+ "attraction/summer_toboggan": {
+ "icon": "temaki-sledding",
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "attraction": "summer_toboggan"
+ }
+ },
+ "attraction/roller_coaster": {
+ "icon": "temaki-roller_coaster",
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "attraction": "roller_coaster"
+ }
+ },
+ "attraction/river_rafting": {
+ "icon": "maki-ferry",
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "attraction": "river_rafting"
+ }
+ },
+ "attraction/pirate_ship": {
+ "icon": "maki-danger",
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
"point"
],
"tags": {
- "waterway": "dock"
+ "attraction": "pirate_ship"
}
},
- "waterway/drain": {
- "icon": "iD-waterway-ditch",
- "fields": [
- "structure_waterway",
- "intermittent"
- ],
+ "attraction/maze": {
+ "icon": "temaki-maze",
"moreFields": [
- "covered"
+ "{attraction}",
+ "max_age",
+ "min_age"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "waterway": "drain"
+ "attraction": "maze"
}
},
- "waterway/fish_pass": {
- "icon": "temaki-fish_ladder",
+ "attraction/log_flume": {
+ "icon": "maki-ferry",
"fields": [
- "name",
- "structure_waterway",
- "width",
- "seasonal"
+ "{attraction}",
+ "height"
],
"moreFields": [
- "covered",
- "gnis/feature_id-US",
- "salt"
+ "{attraction}",
+ "max_age",
+ "min_age"
],
"geometry": [
- "line"
+ "point",
+ "line",
+ "area"
],
"tags": {
- "waterway": "fish_pass"
+ "attraction": "log_flume"
}
},
- "waterway/fuel": {
- "icon": "maki-fuel",
+ "attraction/kiddie_ride": {
+ "icon": "temaki-amusement_park",
+ "fields": [
+ "{attraction}",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "attraction": "kiddie_ride"
+ }
+ },
+ "attraction/drop_tower": {
+ "icon": "temaki-tower",
+ "fields": [
+ "{attraction}",
+ "height"
+ ],
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "attraction": "drop_tower"
+ }
+ },
+ "attraction/dark_ride": {
+ "icon": "maki-rail-metro",
+ "fields": [
+ "{attraction}",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "attraction": "dark_ride"
+ }
+ },
+ "attraction/carousel": {
+ "icon": "temaki-amusement_park",
+ "fields": [
+ "{attraction}",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "attraction": "carousel"
+ }
+ },
+ "attraction/bungee_jumping": {
+ "icon": "maki-pitch",
+ "fields": [
+ "{attraction}",
+ "height"
+ ],
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "attraction": "bungee_jumping"
+ }
+ },
+ "attraction/bumper_car": {
+ "icon": "fas-car-crash",
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "attraction": "bumper_car"
+ }
+ },
+ "attraction/big_wheel": {
+ "icon": "maki-amusement-park",
+ "fields": [
+ "{attraction}",
+ "height"
+ ],
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "attraction": "big_wheel"
+ }
+ },
+ "attraction/animal": {
+ "icon": "maki-zoo",
"fields": [
"name",
"operator",
+ "species/wikidata"
+ ],
+ "moreFields": [
+ "{attraction}",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "attraction": "animal"
+ }
+ },
+ "attraction/amusement_ride": {
+ "icon": "maki-amusement-park",
+ "moreFields": [
+ "{attraction}",
+ "max_age",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "attraction": "amusement_ride"
+ }
+ },
+ "area/highway": {
+ "fields": [
+ "area/highway",
+ "surface"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "area:highway": "*"
+ }
+ },
+ "area/footway": {
+ "fields": [
+ "surface"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "area:highway": "footway"
+ }
+ },
+ "area/highway/traffic_island": {
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "area:highway": "traffic_island"
+ }
+ },
+ "amenity/weighbridge": {
+ "icon": "fas-weight",
+ "fields": [
+ "ref",
+ "operator",
+ "access_simple",
+ "maxweight"
+ ],
+ "moreFields": [
+ "address",
+ "colour",
+ "lit",
+ "manufacturer",
+ "material",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "amenity": "weighbridge"
+ }
+ },
+ "amenity/watering_place": {
+ "icon": "maki-drinking-water",
+ "fields": [
+ "operator",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "opening_hours"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "watering_place"
+ }
+ },
+ "amenity/water_point": {
+ "icon": "maki-drinking-water",
+ "fields": [
+ "operator",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "covered",
+ "drinking_water",
+ "lit",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "water_point"
+ }
+ },
+ "amenity/waste_transfer_station": {
+ "icon": "fas-trash-restore",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "waste",
"address",
"opening_hours",
- "fuel/fuel_multi"
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "waste_transfer_station"
+ }
+ },
+ "amenity/waste_disposal": {
+ "icon": "fas-dumpster",
+ "fields": [
+ "operator",
+ "waste",
+ "collection_times",
+ "access_simple"
],
"moreFields": [
"branch_brand",
"brand",
- "building",
- "email",
- "fax",
+ "colour",
+ "height",
+ "manufacturer",
+ "material"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "waste_disposal"
+ }
+ },
+ "amenity/waste_basket": {
+ "icon": "maki-waste-basket",
+ "fields": [
+ "operator",
+ "waste",
+ "collection_times",
+ "material",
+ "colour"
+ ],
+ "moreFields": [
+ "covered",
+ "indoor",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "waste_basket"
+ }
+ },
+ "amenity/veterinary_pharmacy": {
+ "icon": "temaki-veterinary_care",
+ "fields": [
+ "{amenity/pharmacy}"
+ ],
+ "moreFields": [
+ "{amenity/pharmacy}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "veterinary_pharmacy"
+ }
+ },
+ "amenity/veterinary": {
+ "icon": "temaki-veterinary_care",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "charge_fee",
+ "fee"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "veterinary"
+ }
+ },
+ "amenity/vending_machine": {
+ "icon": "temaki-vending_machine",
+ "fields": [
+ "vending",
+ "ref",
+ "operator",
"payment_multi",
- "opening_hours/covid19",
+ "currency_multi"
+ ],
+ "moreFields": [
+ "blind",
+ "branch_brand",
+ "brand",
+ "covered",
+ "height",
+ "indoor",
+ "level",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine"
+ },
+ "matchScore": 0.9
+ },
+ "amenity/vehicle_inspection": {
+ "icon": "maki-car",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "vehicle_inspection"
+ }
+ },
+ "amenity/vacuum_cleaner": {
+ "icon": "temaki-vacuum_station",
+ "fields": [
+ "operator",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "covered",
+ "lit"
+ ],
+ "moreFields": [
+ "branch_brand",
+ "brand",
+ "manufacturer",
+ "opening_hours",
+ "ref/FR/siret-FR",
+ "ref"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "amenity": "vacuum_cleaner"
+ }
+ },
+ "amenity/trolley_bay": {
+ "icon": "fas-shopping-cart",
+ "fields": [
+ "capacity",
+ "deposit/trolley",
+ "payment_multi_fee"
+ ],
+ "moreFields": [
+ "brand",
+ "covered",
+ "fee",
+ "indoor",
+ "opening_hours",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "trolley_bay"
+ }
+ },
+ "amenity/toy_library": {
+ "icon": "fas-chess-knight",
+ "fields": [
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "level",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "toy_library"
+ }
+ },
+ "amenity/townhall": {
+ "icon": "temaki-town_hall",
+ "fields": [
+ "name",
+ "operator",
+ "townhall/type",
+ "address",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "baby_feeding",
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "polling_station",
+ "smoking",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "townhall"
+ }
+ },
+ "amenity/toilets": {
+ "icon": "maki-toilet",
+ "fields": [
+ "toilets/disposal",
+ "access_simple",
+ "gender",
+ "changing_table",
+ "wheelchair",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "charge_fee",
+ "fee",
+ "level",
+ "opening_hours",
+ "operator",
+ "payment_multi_fee",
+ "portable",
+ "toilets/handwashing",
+ "toilets/menstrual_products",
+ "toilets/position"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "toilets"
+ }
+ },
+ "amenity/ticket_validator": {
+ "icon": "temaki-vending_tickets",
+ "fields": [
+ "ref",
+ "operator"
+ ],
+ "moreFields": [
+ "colour",
+ "covered",
+ "indoor",
+ "level",
+ "model",
+ "support"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "ticket_validator"
+ }
+ },
+ "amenity/theatre": {
+ "icon": "maki-theatre",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "theatre"
+ }
+ },
+ "amenity/telephone": {
+ "icon": "fas-phone-alt",
+ "fields": [
+ "operator",
"phone",
- "seamark/type",
+ "payment_multi",
+ "covered"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "booth",
+ "fee",
+ "indoor",
+ "level",
+ "lit",
+ "model",
+ "ref",
+ "sms",
+ "video_calls",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "telephone"
+ }
+ },
+ "amenity/taxi": {
+ "icon": "fas-taxi",
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "address"
+ ],
+ "moreFields": [
+ "access_simple",
+ "branch_brand",
+ "brand",
+ "opening_hours",
+ "taxi_vehicle",
"wheelchair"
],
"geometry": [
@@ -27190,77 +23863,207 @@
"area"
],
"tags": {
- "waterway": "fuel"
- },
- "addTags": {
- "waterway": "fuel",
- "seamark:type": "small_craft_facility",
- "seamark:small_craft_facility:category": "fuel_station"
+ "amenity": "taxi"
}
},
- "waterway/lock_gate": {
- "icon": "maki-dam",
- "geometry": [
- "vertex",
- "line"
- ],
+ "amenity/swingerclub": {
+ "icon": "maki-heart",
"fields": [
- "name",
- "ref",
- "height",
- "material"
- ],
- "tags": {
- "waterway": "lock_gate"
- },
- "addTags": {
- "waterway": "lock_gate",
- "seamark:type": "gate"
- }
- },
- "waterway/milestone": {
- "icon": "temaki-milestone",
- "fields": [
- "distance",
- "direction_vertex"
+ "{amenity/nightclub}",
+ "smoking"
],
"moreFields": [
- "seamark/type"
+ "{@templates/poi}",
+ "air_conditioning",
+ "fee"
],
"geometry": [
"point",
- "vertex"
+ "area"
],
"tags": {
- "waterway": "milestone"
+ "amenity": "swingerclub"
}
},
- "waterway/river": {
- "icon": "iD-waterway-river",
+ "amenity/studio": {
+ "icon": "fas-microphone",
"fields": [
"name",
- "structure_waterway",
- "width",
- "intermittent",
- "tidal"
+ "studio",
+ "address",
+ "building_area_yes",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "gnis/feature_id-US",
+ "level",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "studio"
+ }
+ },
+ "amenity/stripclub": {
+ "icon": "roentgen-pole_dancer",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "min_age",
+ "smoking"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "air_conditioning",
+ "fee"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "stripclub"
+ }
+ },
+ "amenity/social_facility": {
+ "icon": "temaki-social_facility",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "social_facility",
+ "social_facility_for"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "baby_feeding",
+ "fhrs/id-GB",
+ "building_area"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "social_facility"
+ }
+ },
+ "amenity/social_centre": {
+ "icon": "fas-handshake",
+ "fields": [
+ "name",
+ "brand",
+ "operator",
+ "operator/type",
+ "address",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "baby_feeding",
+ "branch_brand",
+ "polling_station"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "social_centre"
+ }
+ },
+ "amenity/smoking_area": {
+ "icon": "fas-smoking",
+ "fields": [
+ "name",
+ "shelter",
+ "bin",
+ "bench",
+ "opening_hours"
],
"moreFields": [
"covered",
- "fishing",
- "gnis/feature_id-US",
- "salt"
+ "level",
+ "lit",
+ "wheelchair"
],
"geometry": [
- "line"
+ "point",
+ "vertex",
+ "area"
],
"tags": {
- "waterway": "river"
+ "amenity": "smoking_area"
}
},
- "waterway/sanitary_dump_station": {
- "icon": "temaki-waste",
+ "amenity/shower": {
+ "icon": "temaki-shower",
+ "fields": [
+ "opening_hours",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "supervised",
+ "building_area_yes",
+ "hot_water",
+ "wheelchair"
+ ],
+ "moreFields": [
+ "address",
+ "gender",
+ "level",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "shower"
+ }
+ },
+ "amenity/shelter": {
+ "icon": "maki-shelter",
"fields": [
"name",
+ "operator",
+ "shelter_type",
+ "building_area_yes",
+ "bench",
+ "bin"
+ ],
+ "moreFields": [
+ "gnis/feature_id-US",
+ "lit",
+ "lockable",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "shelter"
+ }
+ },
+ "amenity/sanitary_dump_station": {
+ "icon": "temaki-camper_trailer_dump",
+ "fields": [
"operator",
"access_simple",
"fee",
@@ -27269,9 +24072,7 @@
"water_point"
],
"moreFields": [
- "opening_hours",
- "opening_hours/covid19",
- "seamark/type"
+ "opening_hours"
],
"geometry": [
"point",
@@ -27279,131 +24080,6389 @@
"area"
],
"tags": {
- "waterway": "sanitary_dump_station"
- },
- "addTags": {
- "waterway": "sanitary_dump_station",
- "seamark:type": "small_craft_facility",
- "seamark:small_craft_facility:category": "pump-out"
+ "amenity": "sanitary_dump_station"
}
},
- "waterway/stream_intermittent": {
- "icon": "iD-waterway-stream",
+ "amenity/restaurant": {
+ "icon": "maki-restaurant",
"fields": [
- "{waterway/stream}"
+ "name",
+ "cuisine",
+ "diet_multi",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "phone",
+ "website"
],
"moreFields": [
- "{waterway/stream}"
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "bar",
+ "branch_brand",
+ "brand",
+ "brewery",
+ "capacity",
+ "changing_table",
+ "delivery",
+ "fhrs/id-GB",
+ "highchair",
+ "microbrewery",
+ "min_age",
+ "organic",
+ "outdoor_seating",
+ "reservation",
+ "smoking",
+ "sport/sport_pub",
+ "stars",
+ "takeaway",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi",
+ "website/menu"
],
"geometry": [
- "line"
+ "point",
+ "area"
],
"tags": {
- "waterway": "stream",
- "intermittent": "yes"
+ "amenity": "restaurant"
+ }
+ },
+ "amenity/research_institute": {
+ "icon": "fas-flask",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "website",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "gnis/feature_id-US",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "research_institute"
+ }
+ },
+ "amenity/refugee_site": {
+ "icon": "temaki-tents",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "informal",
+ "start_date",
+ "capacity",
+ "population",
+ "population/date",
+ "source/population"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "refugee_site"
+ }
+ },
+ "amenity/recycling_container": {
+ "icon": "maki-recycling",
+ "fields": [
+ "operator",
+ "recycling_accepts",
+ "opening_hours",
+ "collection_times"
+ ],
+ "moreFields": [
+ "colour",
+ "covered",
+ "indoor",
+ "level",
+ "manufacturer",
+ "material",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "recycling",
+ "recycling_type": "container"
},
"reference": {
- "key": "waterway",
- "value": "stream"
+ "key": "recycling_type",
+ "value": "container"
}
},
- "waterway/stream": {
- "icon": "iD-waterway-stream",
+ "amenity/recycling_centre": {
+ "icon": "maki-recycling",
"fields": [
"name",
- "structure_waterway",
- "width",
- "intermittent"
+ "operator",
+ "operator/type",
+ "address",
+ "building",
+ "opening_hours",
+ "recycling_accepts"
],
"moreFields": [
- "covered",
- "fishing",
- "gnis/feature_id-US",
- "salt",
- "tidal"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "waterway": "stream"
- }
- },
- "waterway/tidal_channel": {
- "icon": "iD-waterway-stream",
- "fields": [
- "name",
- "structure_waterway",
- "width",
- "salt",
- "tidal",
- "intermittent"
- ],
- "moreFields": [
- "covered",
- "fishing",
- "gnis/feature_id-US"
- ],
- "geometry": [
- "line"
- ],
- "tags": {
- "waterway": "tidal_channel"
- }
- },
- "waterway/water_point": {
- "icon": "maki-drinking-water",
- "fields": [
- "{amenity/water_point}"
- ],
- "moreFields": [
- "{amenity/water_point}"
+ "{@templates/contact}",
+ "charge_fee",
+ "fee",
+ "payment_multi_fee",
+ "wheelchair"
],
"geometry": [
"point",
- "vertex",
"area"
],
"tags": {
- "waterway": "water_point"
+ "amenity": "recycling",
+ "recycling_type": "centre"
+ },
+ "reference": {
+ "key": "recycling_type",
+ "value": "centre"
}
},
- "waterway/waterfall": {
- "icon": "maki-waterfall",
+ "amenity/ranger_station": {
+ "icon": "maki-ranger-station",
"fields": [
"name",
- "height",
- "width",
- "intermittent"
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
],
"moreFields": [
- "gnis/feature_id-US"
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "gnis/feature_id-US",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "ranger_station"
+ }
+ },
+ "amenity/public_bookcase": {
+ "icon": "maki-library",
+ "fields": [
+ "name",
+ "public_bookcase/type",
+ "operator",
+ "capacity",
+ "lit"
+ ],
+ "moreFields": [
+ "access_simple",
+ "address",
+ "branch_brand",
+ "books",
+ "brand",
+ "colour",
+ "covered",
+ "direction",
+ "email",
+ "height",
+ "indoor",
+ "level",
+ "location",
+ "opening_hours",
+ "phone",
+ "ref",
+ "support",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "public_bookcase"
+ }
+ },
+ "amenity/public_bath": {
+ "icon": "fas-water-ladder",
+ "fields": [
+ "name",
+ "bath/type",
+ "bath/open_air",
+ "address",
+ "building_area",
+ "fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "bath/sand_bath-JP"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "public_bath"
+ }
+ },
+ "amenity/pub": {
+ "icon": "maki-beer",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "smoking",
+ "brewery"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "cuisine",
+ "diet_multi",
+ "microbrewery",
+ "fhrs/id-GB",
+ "min_age",
+ "outdoor_seating",
+ "real_fire-GB-IE",
+ "sport/sport_pub",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi",
+ "website/menu"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "pub"
+ }
+ },
+ "amenity/prison": {
+ "icon": "maki-prison",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "wheelchair"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "amenity": "prison"
+ }
+ },
+ "amenity/post_office": {
+ "icon": "maki-post",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "branch_brand",
+ "brand",
+ "gnis/feature_id-US",
+ "level",
+ "ref/FR/siret-FR",
+ "payment_multi",
+ "polling_station",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "post_office"
+ }
+ },
+ "amenity/post_depot": {
+ "icon": "fas-mail-bulk",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area",
+ "phone"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "opening_hours",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "post_depot"
+ }
+ },
+ "amenity/post_box": {
+ "icon": "temaki-post_box",
+ "fields": [
+ "operator",
+ "collection_times",
+ "ref",
+ "post_box/type-GB",
+ "royal_cypher-GB"
+ ],
+ "moreFields": [
+ "access_simple",
+ "branch_brand",
+ "brand",
+ "colour",
+ "covered",
+ "drive_through",
+ "height",
+ "indoor",
+ "level",
+ "manufacturer",
+ "material",
+ "post_box/type",
+ "support",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "post_box"
+ },
+ "locationSet": {
+ "exclude": [
+ "us"
+ ]
+ }
+ },
+ "amenity/polling_station": {
+ "icon": "fas-vote-yea",
+ "fields": [
+ "name",
+ "ref",
+ "operator",
+ "address",
+ "opening_hours",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "air_conditioning",
+ "gnis/feature_id-US",
+ "level",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "polling_station"
+ },
+ "addTags": {
+ "amenity": "polling_station",
+ "polling_station": "yes"
+ }
+ },
+ "amenity/police": {
+ "icon": "temaki-police_officer",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "level",
+ "polling_station",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "police"
+ }
+ },
+ "amenity/planetarium": {
+ "icon": "maki-globe",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "air_conditioning",
+ "charge_fee",
+ "fee"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "planetarium"
+ }
+ },
+ "amenity/place_of_worship": {
+ "icon": "maki-place-of-worship",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "address",
+ "building_area_yes",
+ "service_times"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "air_conditioning",
+ "baby_feeding",
+ "gnis/feature_id-US",
+ "internet_access",
+ "internet_access/ssid",
+ "level",
+ "opening_hours",
+ "polling_station",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship"
+ }
+ },
+ "amenity/photo_booth": {
+ "icon": "fas-person-booth",
+ "fields": [
+ "name",
+ "operator",
+ "payment_multi",
+ "wheelchair"
+ ],
+ "moreFields": [
+ "branch_brand",
+ "brand",
+ "indoor",
+ "level"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "photo_booth"
+ }
+ },
+ "amenity/pharmacy": {
+ "icon": "maki-pharmacy",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "dispensing",
+ "drive_through",
+ "opening_hours/drive_through"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "branch_brand",
+ "brand"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "pharmacy"
+ },
+ "addTags": {
+ "amenity": "pharmacy",
+ "healthcare": "pharmacy"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "pharmacy"
+ }
+ },
+ "amenity/payment_terminal": {
+ "icon": "far-credit-card",
+ "fields": [
+ "name",
+ "brand",
+ "address",
+ "opening_hours",
+ "payment_multi"
+ ],
+ "moreFields": [
+ "branch_brand",
+ "ref",
+ "covered",
+ "currency_multi",
+ "indoor",
+ "level",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "amenity": "payment_terminal"
+ }
+ },
+ "amenity/payment_centre": {
+ "icon": "temaki-money_hand",
+ "fields": [
+ "name",
+ "brand",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "payment_multi"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "branch_brand",
+ "currency_multi"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "payment_centre"
+ }
+ },
+ "amenity/parking_space": {
+ "icon": "temaki-parking_space",
+ "fields": [
+ "parking_space",
+ "capacity",
+ "access_simple"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "parking_space"
+ },
+ "matchScore": 0.95
+ },
+ "amenity/parking_entrance": {
+ "icon": "maki-entrance-alt1",
+ "fields": [
+ "parking_entrance",
+ "ref",
+ "access_simple",
+ "address",
+ "level",
+ "maxheight"
],
"geometry": [
"vertex"
],
"tags": {
- "waterway": "waterfall"
+ "amenity": "parking_entrance"
}
},
- "waterway/weir": {
- "icon": "maki-dam",
+ "amenity/parking": {
+ "icon": "temaki-car_parked",
+ "fields": [
+ "operator",
+ "operator/type",
+ "parking",
+ "capacity_parking",
+ "capacity/disabled_parking",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "surface"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "covered",
+ "maxstay",
+ "opening_hours",
+ "park_ride",
+ "ref",
+ "supervised",
+ "wheelchair"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "parking"
+ }
+ },
+ "amenity/parcel_locker": {
+ "icon": "temaki-vending_lockers",
+ "fields": [
+ "operator",
+ "parcel_pickup",
+ "parcel_dropoff",
+ "opening_hours",
+ "payment_multi",
+ "ref",
+ "wheelchair"
+ ],
+ "moreFields": [
+ "brand",
+ "collection_times",
+ "colour",
+ "indoor",
+ "surveillance"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "parcel_locker"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "parcel_locker"
+ }
+ },
+ "amenity/nightclub": {
+ "icon": "fas-cocktail",
"fields": [
"name",
"operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "min_age",
+ "smoking"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "air_conditioning",
+ "fhrs/id-GB",
+ "fee"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "nightclub"
+ }
+ },
+ "amenity/motorcycle_rental": {
+ "icon": "temaki-motorcycle_rental",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "opening_hours",
+ "payment_multi"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "branch_brand",
+ "brand"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "motorcycle_rental"
+ }
+ },
+ "amenity/motorcycle_parking": {
+ "icon": "fas-motorcycle",
+ "fields": [
+ "capacity_parking",
+ "operator",
+ "covered",
+ "access_simple"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "motorcycle_parking"
+ }
+ },
+ "amenity/mortuary": {
+ "icon": "maki-cemetery",
+ "fields": [
+ "name",
+ "operator",
+ "address"
+ ],
+ "moreFields": [
+ "religion",
+ "denomination"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "mortuary"
+ }
+ },
+ "amenity/money_transfer": {
+ "icon": "temaki-money_hand",
+ "fields": [
+ "name",
+ "brand",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "payment_multi",
+ "currency_multi"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "branch_brand"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "money_transfer"
+ }
+ },
+ "amenity/monastery": {
+ "icon": "maki-place-of-worship",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "address"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "wheelchair"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "amenity": "monastery"
+ }
+ },
+ "amenity/marketplace": {
+ "icon": "fas-store",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "marketplace"
+ }
+ },
+ "amenity/luggage_locker": {
+ "icon": "temaki-suitcase_key",
+ "fields": [
+ "operator",
+ "indoor",
+ "covered",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "opening_hours",
+ "ref"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "amenity": "luggage_locker"
+ }
+ },
+ "amenity/love_hotel": {
+ "icon": "maki-heart",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "rooms",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "min_age",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "love_hotel"
+ }
+ },
+ "amenity/lounger": {
+ "icon": "temaki-lounger",
+ "fields": [
+ "material",
+ "colour",
+ "access_simple",
+ "lit"
+ ],
+ "moreFields": [
"height",
- "material"
+ "inscription",
+ "level",
+ "manufacturer",
+ "operator"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "amenity": "lounger"
+ }
+ },
+ "amenity/loading_dock": {
+ "icon": "fas-truck-loading",
+ "fields": [
+ "ref",
+ "operator",
+ "access_simple",
+ "door"
+ ],
+ "moreFields": [
+ "address",
+ "dock/height",
+ "dock/width",
+ "door/height",
+ "door/width",
+ "colour",
+ "level",
+ "lit",
+ "maxheight",
+ "maxlength",
+ "maxwidth",
+ "wheelchair"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "loading_dock"
+ }
+ },
+ "amenity/library_dropoff": {
+ "icon": "maki-library",
+ "fields": [
+ "operator",
+ "operator/type"
+ ],
+ "moreFields": [
+ "collection_times",
+ "colour",
+ "ref/isil",
+ "lit"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "library_dropoff"
+ }
+ },
+ "amenity/library": {
+ "icon": "maki-library",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "building_area_yes",
+ "opening_hours",
+ "address",
+ "ref/isil",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "access_simple",
+ "air_conditioning",
+ "baby_feeding",
+ "books",
+ "changing_table",
+ "polling_station",
+ "toilets"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "library"
+ }
+ },
+ "amenity/letter_box": {
+ "icon": "temaki-letter_box",
+ "fields": [
+ "post",
+ "access_simple",
+ "height"
+ ],
+ "moreFields": [
+ "colour",
+ "covered",
+ "indoor",
+ "level",
+ "lit",
+ "lockable",
+ "manufacturer",
+ "material",
+ "operator",
+ "support",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "letter_box"
+ }
+ },
+ "amenity/lavoir": {
+ "icon": "temaki-detergent_bottle",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "access_simple",
+ "building_area"
],
"moreFields": [
"gnis/feature_id-US",
- "seamark/type"
+ "smoking",
+ "wheelchair"
],
"geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "lavoir"
+ }
+ },
+ "amenity/kneipp_water_cure": {
+ "icon": "maki-hospital",
+ "fields": [
+ "name",
+ "kneipp_water_cure_multi",
+ "access_simple",
+ "opening_hours",
+ "fee"
+ ],
+ "moreFields": [
+ "address",
+ "level",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "kneipp_water_cure"
+ }
+ },
+ "amenity/karaoke_box": {
+ "icon": "maki-karaoke",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "air_conditioning",
+ "min_age",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "karaoke_box"
+ }
+ },
+ "amenity/internet_cafe": {
+ "icon": "temaki-antenna",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "building_area_yes",
+ "{@templates/internet_access}",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "min_age",
+ "outdoor_seating",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "internet_cafe"
+ }
+ },
+ "amenity/ice_cream": {
+ "icon": "fas-ice-cream",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "outdoor_seating"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "delivery",
+ "diet_multi",
+ "drive_through",
+ "opening_hours/drive_through",
+ "organic",
+ "takeaway",
+ "toilets",
+ "fhrs/id-GB",
+ "website/menu"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "ice_cream"
+ }
+ },
+ "amenity/hunting_stand": {
+ "icon": "temaki-hunting_blind",
+ "fields": [
+ "access_simple",
+ "lockable"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "hunting_stand"
+ }
+ },
+ "amenity/hospital": {
+ "icon": "maki-hospital",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "healthcare/speciality",
+ "address",
+ "emergency"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "amenity": "hospital"
+ },
+ "addTags": {
+ "amenity": "hospital",
+ "healthcare": "hospital"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "hospital"
+ }
+ },
+ "amenity/hookah_lounge": {
+ "icon": "fas-smoking",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "min_age"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "operator",
+ "outdoor_seating",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "hookah_lounge"
+ }
+ },
+ "amenity/grit_bin": {
+ "icon": "fas-box",
+ "fields": [
+ "operator",
+ "access_simple",
+ "material",
+ "collection_times"
+ ],
+ "moreFields": [
+ "colour",
+ "height",
+ "lit"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "grit_bin"
+ }
+ },
+ "amenity/grave_yard": {
+ "icon": "maki-cemetery",
+ "fields": [
+ "religion",
+ "address"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "grave_yard"
+ }
+ },
+ "amenity/give_box": {
+ "icon": "fas-box-open",
+ "fields": [
+ "name",
+ "operator",
+ "opening_hours",
+ "access_simple"
+ ],
+ "moreFields": [
+ "address",
+ "branch_brand",
+ "brand",
+ "capacity",
+ "covered",
+ "email",
+ "indoor",
+ "level",
+ "lit",
+ "location",
+ "phone",
+ "ref",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "give_box"
+ }
+ },
+ "amenity/gambling": {
+ "icon": "fas-coins",
+ "fields": [
+ "{amenity/casino}"
+ ],
+ "moreFields": [
+ "{amenity/casino}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "gambling"
+ }
+ },
+ "amenity/funeral_hall": {
+ "icon": "maki-cemetery",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes",
+ "address"
+ ],
+ "moreFields": [
+ "religion",
+ "denomination"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "funeral_hall"
+ }
+ },
+ "amenity/fuel": {
+ "icon": "maki-fuel",
+ "fields": [
+ "name",
+ "brand",
+ "operator",
+ "address",
+ "fuel/fuel_multi",
+ "fuel/fuel_multi-RU",
+ "self_service",
+ "building_area"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "branch_brand",
+ "toilets"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fuel"
+ }
+ },
+ "amenity/fountain": {
+ "icon": "temaki-fountain",
+ "fields": [
+ "name",
+ "operator",
+ "fountain",
+ "drinking_water",
+ "height",
+ "lit"
+ ],
+ "moreFields": [
+ "covered",
+ "indoor",
+ "level",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fountain"
+ }
+ },
+ "amenity/food_court": {
+ "icon": "roentgen-food_court",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "capacity",
+ "diet_multi",
+ "outdoor_seating",
+ "smoking",
+ "website/menu"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "food_court"
+ }
+ },
+ "amenity/fire_station": {
+ "icon": "maki-fire-station",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "polling_station",
+ "smoking",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fire_station"
+ }
+ },
+ "amenity/fast_food": {
+ "icon": "maki-fast-food",
+ "fields": [
+ "name",
+ "cuisine",
+ "diet_multi",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "drive_through",
+ "opening_hours/drive_through",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "branch_brand",
+ "brand",
+ "capacity",
+ "changing_table",
+ "delivery",
+ "highchair",
+ "organic",
+ "outdoor_seating",
+ "smoking",
+ "stroller",
+ "takeaway",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi",
+ "fhrs/id-GB",
+ "website/menu"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food"
+ }
+ },
+ "amenity/exhibition_centre": {
+ "icon": "fas-user-tie",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "building_area_yes",
+ "address",
+ "website",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "exhibition_centre"
+ }
+ },
+ "amenity/events_venue": {
+ "icon": "fas-users",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes",
+ "address",
+ "website",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "fhrs/id-GB",
+ "min_age",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "events_venue"
+ }
+ },
+ "amenity/driver_training": {
+ "icon": "maki-car",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "license_classes"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "driver_training"
+ }
+ },
+ "amenity/drinking_water": {
+ "icon": "maki-drinking-water",
+ "fields": [
+ "operator",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "wheelchair"
+ ],
+ "moreFields": [
+ "bottle",
+ "covered",
+ "dog_check",
+ "indoor",
+ "level",
+ "lit"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "drinking_water"
+ }
+ },
+ "amenity/dressing_room": {
+ "icon": "maki-clothing-store",
+ "fields": [
+ "operator",
+ "access_simple",
+ "gender",
+ "wheelchair"
+ ],
+ "moreFields": [
+ "building_area",
+ "charge_fee",
+ "fee",
+ "level",
+ "opening_hours",
+ "payment_multi_fee",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "dressing_room"
+ }
+ },
+ "amenity/dojo": {
+ "icon": "maki-pitch",
+ "fields": [
+ "name",
+ "sport",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "dojo"
+ }
+ },
+ "amenity/dog_toilet": {
+ "icon": "maki-dog-park",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "access_simple",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "dog_yes",
+ "gnis/feature_id-US",
+ "ref"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "amenity": "dog_toilet"
+ }
+ },
+ "amenity/doctors": {
+ "icon": "maki-doctor",
+ "fields": [
+ "name",
+ "operator",
+ "healthcare/speciality",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "doctors"
+ }
+ },
+ "amenity/dive_centre": {
+ "icon": "temaki-scuba_diving",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "scuba_diving"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "dive_centre"
+ }
+ },
+ "amenity/device_charging_station": {
+ "icon": "temaki-electronic",
+ "fields": [
+ "access_simple",
+ "capacity",
+ "fee",
+ "payment_multi",
+ "level",
+ "lockable",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "wheelchair",
+ "operator",
+ "indoor"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "amenity": "device_charging_station"
+ }
+ },
+ "amenity/dentist": {
+ "icon": "maki-dentist",
+ "fields": [
+ "name",
+ "operator",
+ "healthcare/speciality",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "dentist"
+ },
+ "addTags": {
+ "amenity": "dentist",
+ "healthcare": "dentist"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "dentist"
+ }
+ },
+ "amenity/crematorium": {
+ "icon": "maki-cemetery",
+ "fields": [
+ "name",
+ "opening_hours",
+ "wheelchair",
+ "phone",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "gnis/feature_id-US",
+ "level",
+ "ref/FR/siret-FR"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "crematorium"
+ }
+ },
+ "amenity/courthouse": {
+ "icon": "fas-gavel",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "gnis/feature_id-US",
+ "level",
+ "polling_station",
+ "smoking",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "courthouse"
+ }
+ },
+ "amenity/conference_centre": {
+ "icon": "fas-user-tie",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "building_area_yes",
+ "address",
+ "website",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "conference_centre"
+ }
+ },
+ "amenity/compressed_air": {
+ "icon": "fas-tachometer-alt",
+ "fields": [
+ "operator",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "covered",
+ "lit"
+ ],
+ "moreFields": [
+ "branch_brand",
+ "brand",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "compressed_air"
+ }
+ },
+ "amenity/community_centre": {
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "air_conditioning",
+ "baby_feeding",
+ "polling_station"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre"
+ }
+ },
+ "amenity/clock": {
+ "icon": "temaki-clock",
+ "fields": [
+ "name",
+ "support",
+ "display",
+ "visibility",
+ "date",
+ "faces"
+ ],
+ "moreFields": [
+ "covered",
+ "height",
+ "indoor",
+ "level",
+ "lit",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "clock"
+ }
+ },
+ "amenity/clinic": {
+ "icon": "maki-doctor",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "healthcare/speciality",
+ "address",
+ "building_area_yes",
+ "opening_hours"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "air_conditioning",
+ "branch_brand",
+ "brand"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "clinic"
+ },
+ "addTags": {
+ "amenity": "clinic",
+ "healthcare": "clinic"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "clinic"
+ }
+ },
+ "amenity/cinema": {
+ "icon": "maki-cinema",
+ "fields": [
+ "name",
+ "address",
+ "screen",
+ "building_area_yes",
+ "opening_hours",
+ "payment_multi"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "air_conditioning",
+ "branch_brand",
+ "brand",
+ "fhrs/id-GB",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "cinema"
+ }
+ },
+ "amenity/childcare": {
+ "icon": "fas-child-reaching",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "baby_feeding",
+ "capacity",
+ "fhrs/id-GB",
+ "gnis/feature_id-US",
+ "level",
+ "max_age",
+ "min_age",
+ "not/name",
+ "payment_multi",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "childcare"
+ }
+ },
+ "amenity/charging_station": {
+ "icon": "fas-charging-station",
+ "fields": [
+ "brand",
+ "operator",
+ "capacity",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "ref"
+ ],
+ "moreFields": [
+ "covered",
+ "level",
+ "manufacturer",
+ "maxstay",
+ "network"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "charging_station"
+ }
+ },
+ "amenity/casino": {
+ "icon": "maki-casino",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "gambling",
+ "smoking"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "level",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "casino"
+ }
+ },
+ "amenity/car_wash": {
+ "icon": "temaki-car_wash",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "payment_multi",
+ "self_service",
+ "automated"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "car_wash"
+ }
+ },
+ "amenity/car_sharing": {
+ "icon": "temaki-sign_and_car",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "capacity",
+ "address",
+ "payment_multi",
+ "supervised"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "branch_brand",
+ "brand",
+ "lit",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "car_sharing"
+ }
+ },
+ "amenity/car_rental": {
+ "icon": "maki-car-rental",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "opening_hours",
+ "payment_multi"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "branch_brand",
+ "brand"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "car_rental"
+ }
+ },
+ "amenity/car_pooling": {
+ "icon": "temaki-car_pool",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "capacity",
+ "address",
+ "opening_hours",
+ "lit"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "car_pooling"
+ }
+ },
+ "amenity/cafe": {
+ "icon": "maki-cafe",
+ "fields": [
+ "name",
+ "cuisine",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "outdoor_seating",
+ "{@templates/internet_access}",
+ "phone",
+ "website",
+ "opening_hours/drive_through"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "bar",
+ "branch_brand",
+ "brand",
+ "capacity",
+ "changing_table",
+ "delivery",
+ "diet_multi",
+ "drive_through",
+ "highchair",
+ "min_age",
+ "organic",
+ "reservation",
+ "smoking",
+ "takeaway",
+ "toilets",
+ "toilets/wheelchair",
+ "toilets/menstrual_products_poi",
+ "fhrs/id-GB",
+ "website/menu"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "cafe"
+ }
+ },
+ "amenity/bureau_de_change": {
+ "icon": "temaki-money_hand",
+ "fields": [
+ "name",
+ "operator",
+ "payment_multi",
+ "currency_multi",
+ "address",
+ "building_area"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bureau_de_change"
+ }
+ },
+ "amenity/boat_storage": {
+ "icon": "temaki-boat_dry_dock",
+ "fields": [
+ "name",
+ "operator",
+ "access_simple",
+ "capacity"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "boat_storage"
+ }
+ },
+ "amenity/boat_rental": {
+ "icon": "temaki-boat_rental",
+ "fields": [
+ "name",
+ "operator",
+ "operator/type",
+ "opening_hours",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "access_simple",
+ "address"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "boat_rental"
+ }
+ },
+ "amenity/binoculars": {
+ "icon": "temaki-binoculars",
+ "fields": [
+ "operator",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "direction",
+ "height",
+ "ele_node"
+ ],
+ "moreFields": [
+ "colour",
+ "covered",
+ "indoor",
+ "lit",
+ "manufacturer",
+ "ref"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "amenity": "binoculars"
+ }
+ },
+ "amenity/biergarten": {
+ "icon": "fas-beer",
+ "fields": [
+ "name",
+ "address",
+ "opening_hours",
+ "outdoor_seating",
+ "brewery"
+ ],
+ "moreFields": [
+ "{amenity/bar}",
+ "cuisine",
+ "website/menu"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "biergarten"
+ }
+ },
+ "amenity/bicycle_wash": {
+ "icon": "temaki-bicycle_wash",
+ "fields": [
+ "name",
+ "fee",
+ "payment_multi_fee",
+ "capacity",
+ "access",
+ "operator",
+ "self_service"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "covered"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bicycle_wash"
+ }
+ },
+ "amenity/bicycle_repair_station": {
+ "icon": "temaki-bicycle_repair",
+ "fields": [
+ "operator",
+ "brand",
+ "opening_hours",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "service/bicycle"
+ ],
+ "moreFields": [
+ "branch_brand",
+ "colour",
+ "covered",
+ "indoor",
+ "level",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "bicycle_repair_station"
+ }
+ },
+ "amenity/bicycle_rental": {
+ "icon": "temaki-bicycle_rental",
+ "fields": [
+ "name",
+ "capacity",
+ "network",
+ "operator",
+ "operator/type",
+ "fee",
+ "payment_multi_fee"
+ ],
+ "moreFields": [
+ "{@templates/poi}",
+ "address",
+ "covered",
+ "ref"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bicycle_rental"
+ }
+ },
+ "amenity/bicycle_parking": {
+ "icon": "temaki-bicycle_parked",
+ "fields": [
+ "bicycle_parking",
+ "capacity",
+ "operator",
+ "operator/type",
+ "covered",
+ "access_simple",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee"
+ ],
+ "moreFields": [
+ "bike_ride",
+ "colour",
+ "indoor",
+ "level",
+ "lit"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bicycle_parking"
+ }
+ },
+ "amenity/bench": {
+ "icon": "temaki-bench",
+ "fields": [
+ "backrest",
+ "armrest",
+ "material",
+ "seats"
+ ],
+ "moreFields": [
+ "colour",
+ "access_simple",
+ "direction",
+ "height",
+ "inscription",
+ "level",
+ "lit",
+ "manufacturer",
+ "operator"
+ ],
+ "geometry": [
+ "point",
"vertex",
"line"
],
"tags": {
- "waterway": "weir"
+ "amenity": "bench"
}
+ },
+ "amenity/bbq": {
+ "icon": "maki-bbq",
+ "fields": [
+ "covered",
+ "fuel",
+ "access_simple"
+ ],
+ "moreFields": [
+ "lit"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bbq"
+ }
+ },
+ "amenity/bar": {
+ "icon": "maki-bar",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "min_age",
+ "brewery"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "microbrewery",
+ "operator",
+ "outdoor_seating",
+ "smoking",
+ "fhrs/id-GB",
+ "sport/sport_pub"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bar"
+ }
+ },
+ "amenity/bank": {
+ "icon": "maki-bank",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "atm",
+ "drive_through",
+ "opening_hours/drive_through"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "air_conditioning",
+ "branch_brand",
+ "brand",
+ "currency_multi"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bank"
+ }
+ },
+ "amenity/baking_oven": {
+ "icon": "temaki-bread",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "baking_oven"
+ },
+ "fields": [
+ "covered",
+ "access_simple"
+ ],
+ "moreFields": [
+ "lit"
+ ]
+ },
+ "amenity/atm": {
+ "icon": "temaki-atm2",
+ "fields": [
+ "operator",
+ "network",
+ "cash_in",
+ "currency_multi",
+ "drive_through"
+ ],
+ "moreFields": [
+ "branch_brand",
+ "ref",
+ "brand",
+ "covered",
+ "height",
+ "indoor",
+ "level",
+ "lit",
+ "manufacturer",
+ "opening_hours",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "atm"
+ }
+ },
+ "amenity/arts_centre": {
+ "icon": "maki-theatre",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "website"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{@templates/poi}",
+ "charge_fee",
+ "fee"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "arts_centre"
+ }
+ },
+ "amenity/animal_shelter": {
+ "icon": "maki-veterinary",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours",
+ "animal_shelter"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "animal_shelter"
+ }
+ },
+ "amenity/animal_breeding": {
+ "icon": "maki-veterinary",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours",
+ "animal_breeding"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "animal_breeding"
+ }
+ },
+ "amenity/animal_boarding": {
+ "icon": "maki-veterinary",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "building_area",
+ "opening_hours",
+ "animal_boarding"
+ ],
+ "moreFields": [
+ "{@templates/poi}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "animal_boarding"
+ }
+ },
+ "amenity/recycling": {
+ "icon": "maki-recycling",
+ "fields": [
+ "recycling_type",
+ "recycling_accepts",
+ "collection_times"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "recycling"
+ },
+ "searchable": false
+ },
+ "amenity/nursing_home": {
+ "icon": "maki-wheelchair",
+ "fields": [
+ "{amenity/social_facility}",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "nursing_home"
+ },
+ "reference": {
+ "key": "social_facility",
+ "value": "nursing_home"
+ },
+ "searchable": false
+ },
+ "amenity/ferry_terminal": {
+ "icon": "temaki-ferry",
+ "fields": [
+ "name",
+ "network",
+ "operator",
+ "address",
+ "building_area"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "ferry_terminal"
+ },
+ "matchScore": 0.95,
+ "searchable": false,
+ "replacement": "public_transport/station_ferry"
+ },
+ "amenity/embassy": {
+ "icon": "temaki-embassy",
+ "fields": [
+ "name",
+ "country",
+ "address",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "embassy"
+ },
+ "searchable": false
+ },
+ "amenity/coworking_space": {
+ "icon": "maki-commercial",
+ "fields": [
+ "name",
+ "address",
+ "building_area_yes",
+ "opening_hours",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "ref/FR/siret-FR"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "coworking_space"
+ },
+ "searchable": false
+ },
+ "amenity/bus_station": {
+ "icon": "temaki-bus",
+ "fields": [
+ "name",
+ "building_area",
+ "operator",
+ "{@templates/internet_access}"
+ ],
+ "moreFields": [
+ "{@templates/internet_access}",
+ "{amenity}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bus_station"
+ },
+ "searchable": false,
+ "replacement": "public_transport/station_bus"
+ },
+ "amenity/waste/dog_excrement": {
+ "icon": "maki-waste-basket",
+ "fields": [
+ "collection_times"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "waste_basket",
+ "waste": "dog_excrement"
+ },
+ "reference": {
+ "key": "waste",
+ "value": "dog_excrement"
+ }
+ },
+ "amenity/vending_machine/sweets": {
+ "icon": "temaki-vending_machine",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "sweets"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "sweets"
+ }
+ },
+ "amenity/vending_machine/stamps": {
+ "icon": "temaki-vending_stamps",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "stamps"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "stamps"
+ }
+ },
+ "amenity/vending_machine/public_transport_tickets": {
+ "icon": "temaki-vending_tickets",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "public_transport_tickets"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "public_transport_tickets"
+ }
+ },
+ "amenity/vending_machine/pizza": {
+ "icon": "temaki-vending_machine",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "pizza"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "pizza"
+ }
+ },
+ "amenity/vending_machine/parking_tickets": {
+ "icon": "temaki-vending_tickets",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "parking_tickets"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "parking_tickets"
+ },
+ "matchScore": 0.94
+ },
+ "amenity/vending_machine/newspapers": {
+ "icon": "temaki-vending_newspaper",
+ "fields": [
+ "vending",
+ "ref",
+ "operator",
+ "fee",
+ "payment_multi_fee",
+ "charge_fee",
+ "currency_multi"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "newspapers"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "newspapers"
+ }
+ },
+ "amenity/vending_machine/ice_cubes": {
+ "icon": "temaki-vending_ice",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "ice_cubes"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "ice_cubes"
+ }
+ },
+ "amenity/vending_machine/ice_cream": {
+ "icon": "temaki-vending_ice_cream",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "ice_cream"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "ice_cream"
+ }
+ },
+ "amenity/vending_machine/fuel": {
+ "icon": "maki-fuel",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "ref",
+ "fuel/fuel_multi",
+ "fuel/fuel_multi-RU",
+ "operator"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "fuel"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "fuel"
+ },
+ "matchScore": 0.5
+ },
+ "amenity/vending_machine/food": {
+ "icon": "temaki-vending_machine",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "food"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "food"
+ }
+ },
+ "amenity/vending_machine/feminine_hygiene": {
+ "icon": "temaki-vending_venus",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "feminine_hygiene"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "feminine_hygiene"
+ }
+ },
+ "amenity/vending_machine/excrement_bags": {
+ "icon": "temaki-vending_pet_waste",
+ "fields": [
+ "bin",
+ "fee",
+ "operator"
+ ],
+ "moreFields": [
+ "ref",
+ "payment_multi",
+ "currency_multi",
+ "blind",
+ "brand",
+ "covered",
+ "height",
+ "indoor",
+ "level",
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "excrement_bags"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "excrement_bags"
+ }
+ },
+ "amenity/vending_machine/elongated_coin": {
+ "icon": "temaki-vending_flat_coin",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "elongated_coin"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "elongated_coin"
+ }
+ },
+ "amenity/vending_machine/electronics": {
+ "icon": "temaki-vending_machine",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "electronics"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "electronics"
+ }
+ },
+ "amenity/vending_machine/eggs": {
+ "icon": "temaki-vending_eggs",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "eggs"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "eggs"
+ }
+ },
+ "amenity/vending_machine/drinks": {
+ "icon": "temaki-vending_cold_drink",
+ "fields": [
+ "vending",
+ "drink_multi",
+ "{amenity/vending_machine}"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "drinks"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "drinks"
+ }
+ },
+ "amenity/vending_machine/condoms": {
+ "icon": "temaki-vending_love",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "condoms"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "condoms"
+ }
+ },
+ "amenity/vending_machine/coffee": {
+ "icon": "temaki-vending_hot_drink",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "coffee"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "coffee"
+ }
+ },
+ "amenity/vending_machine/cigarettes": {
+ "icon": "temaki-vending_cigarettes",
+ "moreFields": [
+ "{amenity/vending_machine}",
+ "min_age"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "cigarettes"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "cigarettes"
+ }
+ },
+ "amenity/vending_machine/bread": {
+ "icon": "temaki-vending_bread",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "bread"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "bread"
+ }
+ },
+ "amenity/vending_machine/bottle_return": {
+ "icon": "temaki-vending_machine",
+ "fields": [
+ "vending",
+ "operator"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "bottle_return"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "bottle_return"
+ }
+ },
+ "amenity/vending_machine/bicycle_tube": {
+ "icon": "temaki-vending_machine",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "bicycle_tube"
+ },
+ "reference": {
+ "key": "vending",
+ "value": "bicycle_tube"
+ }
+ },
+ "amenity/vending_machine/food/snacks": {
+ "icon": "temaki-vending_machine",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "vending_machine",
+ "vending": "food",
+ "food": "snacks"
+ }
+ },
+ "amenity/townhall/city": {
+ "icon": "temaki-capitol",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "townhall",
+ "townhall:type": "city"
+ },
+ "reference": {
+ "key": "townhall:type",
+ "value": "city"
+ }
+ },
+ "amenity/townhall/barangay-PH": {
+ "icon": "fas-building-flag",
+ "locationSet": {
+ "include": [
+ "ph"
+ ]
+ },
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "townhall",
+ "townhall:type": "barangay"
+ },
+ "addTags": {
+ "amenity": "townhall",
+ "townhall:type": "barangay",
+ "admin_level": "10"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "townhall"
+ }
+ },
+ "amenity/toilets/portable": {
+ "icon": "temaki-latrine",
+ "fields": [
+ "toilets/disposal",
+ "{amenity/toilets}",
+ "toilets/handwashing"
+ ],
+ "moreFields": [
+ "{amenity/toilets}"
+ ],
+ "geometry": [
+ "point",
+ "area",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "toilets",
+ "portable": "yes"
+ }
+ },
+ "amenity/toilets/disposal/pitlatrine": {
+ "icon": "temaki-latrine",
+ "fields": [
+ "toilets/disposal",
+ "{amenity/toilets}",
+ "toilets/handwashing"
+ ],
+ "moreFields": [
+ "{amenity/toilets}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "toilets",
+ "toilets:disposal": "pitlatrine"
+ },
+ "reference": {
+ "key": "toilets:disposal",
+ "value": "pitlatrine"
+ }
+ },
+ "amenity/toilets/disposal/flush": {
+ "icon": "fas-toilet",
+ "fields": [
+ "toilets/disposal",
+ "{amenity/toilets}"
+ ],
+ "moreFields": [
+ "{amenity/toilets}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "toilets",
+ "toilets:disposal": "flush"
+ },
+ "reference": {
+ "key": "toilets:disposal",
+ "value": "flush"
+ }
+ },
+ "amenity/theatre/type/amphi": {
+ "icon": "maki-theatre",
+ "fields": [
+ "name",
+ "operator",
+ "address",
+ "lit"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "theatre",
+ "theatre:type": "amphi"
+ },
+ "reference": {
+ "key": "theatre:type",
+ "value": "amphi"
+ }
+ },
+ "amenity/taxi/motorcycle_taxi": {
+ "icon": "temaki-pedestrian_and_cyclist",
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "address"
+ ],
+ "moreFields": [
+ "access_simple",
+ "opening_hours",
+ "operator",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "taxi",
+ "taxi_vehicle": "motorcycle"
+ }
+ },
+ "amenity/taxi/cycle_rickshaw": {
+ "icon": "roentgen-bus_stop_sign",
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "address"
+ ],
+ "moreFields": [
+ "access_simple",
+ "opening_hours",
+ "operator",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "taxi",
+ "taxi_vehicle": "cycle_rickshaw"
+ }
+ },
+ "amenity/taxi/auto_rickshaw": {
+ "icon": "fas-person-arrow-up-from-line",
+ "fields": [
+ "name",
+ "operator",
+ "capacity",
+ "address"
+ ],
+ "moreFields": [
+ "access_simple",
+ "opening_hours",
+ "operator",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "taxi",
+ "taxi_vehicle": "auto_rickshaw"
+ }
+ },
+ "amenity/studio/video": {
+ "icon": "fas-video",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "studio",
+ "studio": "video"
+ },
+ "reference": {
+ "key": "studio",
+ "value": "video"
+ }
+ },
+ "amenity/studio/television": {
+ "icon": "fas-video",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "studio",
+ "studio": "television"
+ },
+ "reference": {
+ "key": "studio",
+ "value": "television"
+ }
+ },
+ "amenity/studio/radio": {
+ "icon": "fas-microphone",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "studio",
+ "studio": "radio"
+ },
+ "reference": {
+ "key": "studio",
+ "value": "radio"
+ }
+ },
+ "amenity/studio/audio": {
+ "icon": "fas-microphone",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "studio",
+ "studio": "audio"
+ },
+ "reference": {
+ "key": "studio",
+ "value": "audio"
+ }
+ },
+ "amenity/social_facility/nursing_home": {
+ "icon": "maki-wheelchair",
+ "fields": [
+ "{amenity/social_facility}",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "social_facility",
+ "social_facility": "nursing_home",
+ "social_facility:for": "senior"
+ },
+ "reference": {
+ "key": "social_facility",
+ "value": "nursing_home"
+ }
+ },
+ "amenity/social_facility/homeless_shelter": {
+ "icon": "temaki-social_facility",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "social_facility",
+ "social_facility": "shelter",
+ "social_facility:for": "homeless"
+ },
+ "reference": {
+ "key": "social_facility",
+ "value": "shelter"
+ }
+ },
+ "amenity/social_facility/group_home": {
+ "icon": "maki-wheelchair",
+ "fields": [
+ "{amenity/social_facility}",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "social_facility",
+ "social_facility": "group_home",
+ "social_facility:for": "senior"
+ },
+ "reference": {
+ "key": "social_facility",
+ "value": "group_home"
+ }
+ },
+ "amenity/social_facility/food_bank": {
+ "icon": "temaki-social_facility",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "social_facility",
+ "social_facility": "food_bank"
+ },
+ "reference": {
+ "key": "social_facility",
+ "value": "food_bank"
+ }
+ },
+ "amenity/social_facility/assisted_living": {
+ "icon": "maki-wheelchair",
+ "fields": [
+ "{amenity/social_facility}",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "social_facility",
+ "social_facility": "assisted_living",
+ "social_facility:for": "senior"
+ },
+ "reference": {
+ "key": "social_facility",
+ "value": "assisted_living"
+ }
+ },
+ "amenity/social_facility/ambulatory_care": {
+ "icon": "maki-wheelchair",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "social_facility",
+ "social_facility": "ambulatory_care"
+ },
+ "reference": {
+ "key": "social_facility",
+ "value": "ambulatory_care"
+ }
+ },
+ "amenity/shelter/public_transport": {
+ "icon": "temaki-transit_shelter",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes",
+ "bench",
+ "lit",
+ "bin"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "shelter",
+ "shelter_type": "public_transport"
+ },
+ "reference": {
+ "key": "shelter_type",
+ "value": "public_transport"
+ }
+ },
+ "amenity/shelter/picnic_shelter": {
+ "icon": "temaki-picnic_shelter",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes",
+ "lit",
+ "bin"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "shelter",
+ "shelter_type": "picnic_shelter"
+ },
+ "reference": {
+ "key": "shelter_type",
+ "value": "picnic_shelter"
+ }
+ },
+ "amenity/shelter/lean_to": {
+ "icon": "temaki-sleep_shelter",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "shelter",
+ "shelter_type": "lean_to"
+ }
+ },
+ "amenity/shelter/gazebo": {
+ "icon": "maki-shelter",
+ "fields": [
+ "name",
+ "building_area_yes",
+ "bench",
+ "lit"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "shelter",
+ "shelter_type": "gazebo"
+ }
+ },
+ "amenity/restaurant/vietnamese": {
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "vietnamese"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "vietnamese"
+ }
+ },
+ "amenity/restaurant/ukrainian": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "ukrainian"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "ukrainian"
+ }
+ },
+ "amenity/restaurant/turkish": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "turkish"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "turkish"
+ }
+ },
+ "amenity/restaurant/thai": {
+ "icon": "fas-spoon",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "thai"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "thai"
+ }
+ },
+ "amenity/restaurant/sushi": {
+ "icon": "temaki-temaki",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "sushi"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "sushi"
+ }
+ },
+ "amenity/restaurant/steakhouse": {
+ "icon": "maki-slaughterhouse",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "steak_house"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "steak_house"
+ }
+ },
+ "amenity/restaurant/spanish": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "spanish"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "spanish"
+ }
+ },
+ "amenity/restaurant/seafood": {
+ "icon": "maki-restaurant-seafood",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "seafood"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "seafood"
+ }
+ },
+ "amenity/restaurant/ramen": {
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "ramen"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "ramen"
+ }
+ },
+ "amenity/restaurant/pizza": {
+ "icon": "maki-restaurant-pizza",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "pizza"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "pizza"
+ }
+ },
+ "amenity/restaurant/noodle": {
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "noodle"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "noodle"
+ }
+ },
+ "amenity/restaurant/mexican": {
+ "icon": "fas-pepper-hot",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "mexican"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "mexican"
+ }
+ },
+ "amenity/restaurant/korean": {
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "korean"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "korean"
+ }
+ },
+ "amenity/restaurant/japanese": {
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "japanese"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "japanese"
+ }
+ },
+ "amenity/restaurant/italian": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "italian"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "italian"
+ }
+ },
+ "amenity/restaurant/indian": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "indian"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "indian"
+ }
+ },
+ "amenity/restaurant/greek": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "greek"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "greek"
+ }
+ },
+ "amenity/restaurant/german": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "german"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "german"
+ }
+ },
+ "amenity/restaurant/georgian": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "georgian"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "georgian"
+ }
+ },
+ "amenity/restaurant/french": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "french"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "french"
+ }
+ },
+ "amenity/restaurant/chinese": {
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "chinese"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "chinese"
+ }
+ },
+ "amenity/restaurant/barbecue": {
+ "icon": "maki-restaurant-bbq",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "barbecue"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "barbecue"
+ }
+ },
+ "amenity/restaurant/asian": {
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "asian"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "asian"
+ }
+ },
+ "amenity/restaurant/american": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "restaurant",
+ "cuisine": "american"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "american"
+ }
+ },
+ "amenity/recycling/container/green_waste": {
+ "icon": "maki-recycling",
+ "fields": [
+ "{amenity/recycling_container}"
+ ],
+ "moreFields": [
+ "{amenity/recycling_container}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "recycling",
+ "recycling_type": "container",
+ "recycling:green_waste": "yes"
+ },
+ "reference": {
+ "key": "recycling:green_waste",
+ "value": "yes"
+ }
+ },
+ "amenity/recycling/container/electrical_items": {
+ "icon": "maki-recycling",
+ "fields": [
+ "{amenity/recycling_container}"
+ ],
+ "moreFields": [
+ "{amenity/recycling_container}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "recycling",
+ "recycling_type": "container",
+ "recycling:electrical_items": "yes"
+ },
+ "reference": {
+ "key": "recycling:electrical_items",
+ "value": "yes"
+ }
+ },
+ "amenity/pub/microbrewery": {
+ "icon": "maki-beer",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "pub",
+ "microbrewery": "yes"
+ },
+ "reference": {
+ "key": "microbrewery"
+ }
+ },
+ "amenity/pub/lgbtq": {
+ "icon": "maki-beer",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "pub",
+ "lgbtq": "primary"
+ }
+ },
+ "amenity/pub/irish": {
+ "icon": "maki-beer",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "pub",
+ "theme": "irish"
+ },
+ "reference": {
+ "key": "theme",
+ "value": "irish"
+ },
+ "locationSet": {
+ "exclude": [
+ "ie"
+ ]
+ }
+ },
+ "amenity/post_box/post_box-US": {
+ "icon": "temaki-post_box",
+ "locationSet": {
+ "include": [
+ "us"
+ ]
+ },
+ "fields": [
+ "{amenity/post_box}",
+ "drive_through"
+ ],
+ "moreFields": [
+ "{amenity/post_box}",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "post_box"
+ },
+ "name": "{amenity/post_box}"
+ },
+ "amenity/place_of_worship/taoist": {
+ "icon": "temaki-taoism",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "{amenity/place_of_worship}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "taoist"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "place_of_worship"
+ }
+ },
+ "amenity/place_of_worship/sikh": {
+ "icon": "temaki-sikhism",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "{amenity/place_of_worship}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "sikh"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "place_of_worship"
+ }
+ },
+ "amenity/place_of_worship/shinto": {
+ "icon": "temaki-shinto",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "{amenity/place_of_worship}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "shinto"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "place_of_worship"
+ }
+ },
+ "amenity/place_of_worship/muslim": {
+ "icon": "maki-religious-muslim",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "{amenity/place_of_worship}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "muslim"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "place_of_worship"
+ }
+ },
+ "amenity/place_of_worship/jewish": {
+ "icon": "maki-religious-jewish",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "{amenity/place_of_worship}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "jewish"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "place_of_worship"
+ }
+ },
+ "amenity/place_of_worship/hindu": {
+ "icon": "temaki-hinduism",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "{amenity/place_of_worship}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "hindu"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "place_of_worship"
+ }
+ },
+ "amenity/place_of_worship/christian": {
+ "icon": "maki-religious-christian",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "{amenity/place_of_worship}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "christian"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "place_of_worship"
+ }
+ },
+ "amenity/place_of_worship/buddhist": {
+ "icon": "maki-religious-buddhist",
+ "fields": [
+ "name",
+ "religion",
+ "denomination",
+ "{amenity/place_of_worship}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "buddhist"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "place_of_worship"
+ }
+ },
+ "amenity/place_of_worship/christian/quaker": {
+ "icon": "temaki-quakerism",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "christian",
+ "denomination": "quaker"
+ },
+ "reference": {
+ "key": "denomination",
+ "value": "quaker"
+ }
+ },
+ "amenity/place_of_worship/christian/la_luz_del_mundo": {
+ "icon": "maki-place-of-worship",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "christian",
+ "denomination": "la_luz_del_mundo"
+ },
+ "reference": {
+ "key": "denomination",
+ "value": "la_luz_del_mundo"
+ }
+ },
+ "amenity/place_of_worship/christian/jehovahs_witness": {
+ "icon": "maki-place-of-worship",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "place_of_worship",
+ "religion": "christian",
+ "denomination": "jehovahs_witness"
+ },
+ "reference": {
+ "key": "denomination",
+ "value": "jehovahs_witness"
+ }
+ },
+ "amenity/parking_space/disabled": {
+ "icon": "temaki-accessible_space",
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "parking_space",
+ "parking_space": "disabled"
+ },
+ "matchScore": 0.95
+ },
+ "amenity/parking/underground": {
+ "icon": "temaki-car_structure",
+ "fields": [
+ "{amenity/parking}",
+ "layer"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "parking",
+ "parking": "underground"
+ },
+ "addTags": {
+ "amenity": "parking",
+ "parking": "underground",
+ "layer": "-1"
+ },
+ "reference": {
+ "key": "parking",
+ "value": "underground"
+ }
+ },
+ "amenity/parking/street-side": {
+ "icon": "temaki-car_parked",
+ "fields": [
+ "{amenity/parking}",
+ "orientation/orientation_parking"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "parking",
+ "parking": "street_side"
+ },
+ "addTags": {
+ "amenity": "parking",
+ "parking": "street_side"
+ },
+ "reference": {
+ "key": "parking",
+ "value": "street_side"
+ }
+ },
+ "amenity/parking/park_ride": {
+ "icon": "temaki-sign_and_car",
+ "fields": [
+ "name",
+ "{amenity/parking}"
+ ],
+ "geometry": [
+ "area",
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "parking",
+ "park_ride": "yes"
+ },
+ "reference": {
+ "key": "park_ride",
+ "value": "yes"
+ },
+ "matchScore": 0.95
+ },
+ "amenity/parking/multi-storey": {
+ "icon": "temaki-car_structure",
+ "fields": [
+ "name",
+ "{amenity/parking}",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{amenity/parking}",
+ "height",
+ "building/levels"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "parking",
+ "parking": "multi-storey"
+ },
+ "reference": {
+ "key": "parking",
+ "value": "multi-storey"
+ }
+ },
+ "amenity/nightclub/lgbtq": {
+ "icon": "fas-cocktail",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "nightclub",
+ "lgbtq": "primary"
+ }
+ },
+ "amenity/ice_cream/frozen_yogurt": {
+ "icon": "maki-ice-cream",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "ice_cream",
+ "cuisine": "frozen_yogurt"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "frozen_yogurt"
+ }
+ },
+ "amenity/fast_food/wings": {
+ "icon": "maki-fast-food",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "wings"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "wings"
+ }
+ },
+ "amenity/fast_food/sandwich": {
+ "icon": "temaki-sandwich",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "sandwich"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "sandwich"
+ }
+ },
+ "amenity/fast_food/pizza": {
+ "icon": "maki-restaurant-pizza",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "pizza"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "pizza"
+ }
+ },
+ "amenity/fast_food/mexican": {
+ "icon": "fas-pepper-hot",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "mexican"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "mexican"
+ }
+ },
+ "amenity/fast_food/kebab": {
+ "icon": "temaki-vertical_rotisserie",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "kebab"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "kebab"
+ }
+ },
+ "amenity/fast_food/juice": {
+ "icon": "temaki-drink_cup",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "juice"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "juice"
+ }
+ },
+ "amenity/fast_food/hot_dog": {
+ "icon": "fas-hotdog",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "hot_dog"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "hot_dog"
+ }
+ },
+ "amenity/fast_food/fish_and_chips": {
+ "icon": "fas-fish",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "fish_and_chips"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "fish_and_chips"
+ }
+ },
+ "amenity/fast_food/donut": {
+ "icon": "temaki-donut",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "donut"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "donut"
+ }
+ },
+ "amenity/fast_food/chinese": {
+ "icon": "maki-restaurant-noodle",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "chinese"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "chinese"
+ }
+ },
+ "amenity/fast_food/chicken": {
+ "icon": "fas-drumstick-bite",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "chicken"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "chicken"
+ }
+ },
+ "amenity/fast_food/cafeteria": {
+ "icon": "maki-restaurant",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "fast_food": "cafeteria"
+ },
+ "fields": [
+ "{amenity/fast_food}",
+ "access_simple"
+ ]
+ },
+ "amenity/fast_food/burger": {
+ "icon": "maki-fast-food",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "burger"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "burger"
+ }
+ },
+ "amenity/fast_food/bagel": {
+ "icon": "maki-fast-food",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "bagel"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "bagel"
+ }
+ },
+ "amenity/fast_food/ice_cream": {
+ "icon": "fas-ice-cream",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "fast_food",
+ "cuisine": "ice_cream"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "ice_cream"
+ },
+ "searchable": false
+ },
+ "amenity/doctors/urology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "urology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "urology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "urology"
+ }
+ },
+ "amenity/doctors/trauma": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "trauma"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "trauma",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "trauma"
+ }
+ },
+ "amenity/doctors/surgery": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "surgery"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "surgery",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "surgery"
+ }
+ },
+ "amenity/doctors/rheumatology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "rheumatology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "rheumatology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "rheumatology"
+ }
+ },
+ "amenity/doctors/radiology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "radiology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "radiology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "radiology"
+ }
+ },
+ "amenity/doctors/pulmonology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "pulmonology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "pulmonology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "pulmonology"
+ }
+ },
+ "amenity/doctors/psychiatrist": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "psychiatry"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "psychiatry",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "psychiatry"
+ }
+ },
+ "amenity/doctors/proctology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "proctology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "proctology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "proctology"
+ }
+ },
+ "amenity/doctors/podiatry": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "podiatry"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "podiatry",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "podiatry"
+ }
+ },
+ "amenity/doctors/plastic_surgery": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "plastic_surgery"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "plastic_surgery",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "plastic_surgery"
+ }
+ },
+ "amenity/doctors/pathology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "pathology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "pathology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "pathology"
+ }
+ },
+ "amenity/doctors/paediatrics": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "paediatrics"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "paediatrics",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "paediatrics"
+ }
+ },
+ "amenity/doctors/otolaryngology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "otolaryngology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "otolaryngology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "otolaryngology"
+ }
+ },
+ "amenity/doctors/orthopaedics": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "orthopaedics"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "orthopaedics",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "orthopaedics"
+ }
+ },
+ "amenity/doctors/ophthalmology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "ophthalmology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "ophthalmology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "ophthalmology"
+ }
+ },
+ "amenity/doctors/oncology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "oncology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "oncology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "oncology"
+ }
+ },
+ "amenity/doctors/neurosurgery": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "neurosurgery"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "neurosurgery",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "neurosurgery"
+ }
+ },
+ "amenity/doctors/neurology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "neurology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "neurology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "neurology"
+ }
+ },
+ "amenity/doctors/nephrology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "nephrology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "nephrology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "nephrology"
+ }
+ },
+ "amenity/doctors/internal": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "internal"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "internal",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "internal"
+ }
+ },
+ "amenity/doctors/haematology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "haematology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "haematology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "haematology"
+ }
+ },
+ "amenity/doctors/gynaecology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "gynaecology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "gynaecology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "gynaecology"
+ }
+ },
+ "amenity/doctors/general": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "general"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "general",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "general"
+ }
+ },
+ "amenity/doctors/gastroenterology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "gastroenterology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "gastroenterology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "gastroenterology"
+ }
+ },
+ "amenity/doctors/dermatology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "dermatology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "dermatology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "dermatology"
+ }
+ },
+ "amenity/doctors/child_psychiatry": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "child_psychiatry"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "child_psychiatry",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "child_psychiatry"
+ }
+ },
+ "amenity/doctors/cardiology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "cardiology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "cardiology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "cardiology"
+ }
+ },
+ "amenity/doctors/allergology": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "allergology"
+ },
+ "addTags": {
+ "amenity": "doctors",
+ "healthcare:speciality": "allergology",
+ "healthcare": "doctor"
+ },
+ "reference": {
+ "key": "healthcare:speciality",
+ "value": "allergology"
+ }
+ },
+ "amenity/community_centre/youth_centre": {
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "youth_centre"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "youth_centre"
+ }
+ },
+ "amenity/community_centre/village_hall": {
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "village_hall"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "village_hall"
+ }
+ },
+ "amenity/community_centre/parish_hall": {
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "parish_hall"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "parish_hall"
+ }
+ },
+ "amenity/community_centre/lgbtq": {
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "lgbtq": "primary"
+ },
+ "addTags": {
+ "amenity": "community_centre",
+ "lgbtq": "primary",
+ "community_centre:for": "lgbtq"
+ }
+ },
+ "amenity/community_centre/family_centre": {
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "family_centre"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "family_centre"
+ }
+ },
+ "amenity/community_centre/cultural_centre": {
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "cultural_centre"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "cultural_centre"
+ }
+ },
+ "amenity/community_centre/community_hall": {
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "community_hall"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "community_hall"
+ }
+ },
+ "amenity/community_centre/club_home": {
+ "icon": "maki-town-hall",
+ "fields": [
+ "community_centre",
+ "club",
+ "{amenity/community_centre}"
+ ],
+ "moreFields": [
+ "{amenity/community_centre}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "community_centre",
+ "community_centre": "club_home"
+ },
+ "reference": {
+ "key": "community_centre",
+ "value": "club_home"
+ }
+ },
+ "amenity/clock/sundial": {
+ "icon": "temaki-clock",
+ "fields": [
+ "name",
+ "support",
+ "visibility",
+ "inscription"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "amenity": "clock",
+ "display": "sundial"
+ },
+ "reference": {
+ "key": "display",
+ "value": "sundial"
+ }
+ },
+ "amenity/clinic/fertility": {
+ "icon": "maki-hospital",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "clinic",
+ "healthcare": "clinic",
+ "healthcare:speciality": "fertility"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "clinic"
+ }
+ },
+ "amenity/clinic/dialysis": {
+ "icon": "maki-doctor",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "healthcare": "dialysis"
+ },
+ "addTags": {
+ "amenity": "clinic",
+ "healthcare": "dialysis",
+ "healthcare:speciality": "nephrology"
+ },
+ "reference": {
+ "key": "healthcare",
+ "value": "dialysis"
+ }
+ },
+ "amenity/clinic/abortion": {
+ "icon": "maki-hospital",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "clinic",
+ "healthcare": "clinic",
+ "healthcare:speciality": "abortion"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "clinic"
+ }
+ },
+ "amenity/cafe/teahouse": {
+ "icon": "maki-cafe",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "cafe",
+ "cuisine": "tea"
+ },
+ "reference": {
+ "key": "amenity",
+ "value": "cafe"
+ }
+ },
+ "amenity/cafe/coffee_shop": {
+ "icon": "temaki-hot_drink_cup",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "cafe",
+ "cuisine": "coffee_shop"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "coffee_shop"
+ }
+ },
+ "amenity/cafe/bubble_tea": {
+ "icon": "temaki-bubble_tea",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "cafe",
+ "cuisine": "bubble_tea"
+ },
+ "reference": {
+ "key": "cuisine",
+ "value": "bubble_tea"
+ }
+ },
+ "amenity/bicycle_parking/shed": {
+ "icon": "temaki-bicycle_shed",
+ "fields": [
+ "{amenity/bicycle_parking}",
+ "building_area_yes"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bicycle_parking",
+ "bicycle_parking": "shed"
+ },
+ "reference": {
+ "key": "bicycle_parking"
+ }
+ },
+ "amenity/bicycle_parking/lockers": {
+ "icon": "temaki-bicycle_locker",
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bicycle_parking",
+ "bicycle_parking": "lockers"
+ },
+ "reference": {
+ "key": "bicycle_parking"
+ }
+ },
+ "amenity/bicycle_parking/building": {
+ "icon": "temaki-bicycle_structure",
+ "fields": [
+ "{amenity/bicycle_parking}",
+ "opening_hours",
+ "building_area_yes"
+ ],
+ "moreFields": [
+ "{amenity/bicycle_parking}"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bicycle_parking",
+ "bicycle_parking": "building"
+ },
+ "reference": {
+ "key": "bicycle_parking"
+ }
+ },
+ "amenity/bar/lgbtq": {
+ "icon": "maki-bar",
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "amenity": "bar",
+ "lgbtq": "primary"
+ }
+ },
+ "allotments/plot": {
+ "icon": "temaki-garden_bed",
+ "geometry": [
+ "area"
+ ],
+ "fields": [
+ "name",
+ "ref"
+ ],
+ "tags": {
+ "allotments": "plot"
+ },
+ "reference": {
+ "key": "allotments",
+ "value": "plot"
+ }
+ },
+ "aeroway/windsock": {
+ "icon": "temaki-windsock",
+ "fields": [
+ "ref",
+ "lit",
+ "height"
+ ],
+ "moreFields": [
+ "manufacturer"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "aeroway": "windsock"
+ }
+ },
+ "aeroway/terminal": {
+ "icon": "maki-airport",
+ "fields": [
+ "name",
+ "operator",
+ "building_area_yes",
+ "wheelchair",
+ "baby_feeding"
+ ],
+ "moreFields": [
+ "air_conditioning",
+ "smoking"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "aeroway": "terminal"
+ }
+ },
+ "aeroway/taxiway": {
+ "icon": "temaki-plane_taxiing",
+ "fields": [
+ "ref_taxiway",
+ "surface"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "aeroway": "taxiway"
+ }
+ },
+ "aeroway/spaceport": {
+ "icon": "fas-space-shuttle",
+ "fields": [
+ "name",
+ "operator",
+ "access_simple",
+ "website",
+ "wikidata"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "aeroway": "spaceport"
+ }
+ },
+ "aeroway/runway": {
+ "icon": "fas-plane-departure",
+ "fields": [
+ "ref_runway",
+ "surface",
+ "length",
+ "width"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "aeroway": "runway"
+ }
+ },
+ "aeroway/parking_position": {
+ "icon": "temaki-plane_taxiing",
+ "fields": [
+ "ref"
+ ],
+ "geometry": [
+ "vertex",
+ "point",
+ "line"
+ ],
+ "tags": {
+ "aeroway": "parking_position"
+ }
+ },
+ "aeroway/jet_bridge": {
+ "icon": "temaki-pedestrian_walled",
+ "fields": [
+ "ref_aeroway_gate",
+ "width",
+ "access_simple",
+ "wheelchair"
+ ],
+ "moreFields": [
+ "manufacturer"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "aeroway": "jet_bridge"
+ },
+ "addTags": {
+ "aeroway": "jet_bridge",
+ "highway": "corridor"
+ },
+ "matchScore": 1.05
+ },
+ "aeroway/holding_position": {
+ "icon": "temaki-plane_taxiing",
+ "fields": [
+ "ref",
+ "holding_position/type",
+ "direction_vertex",
+ "ele_node"
+ ],
+ "geometry": [
+ "vertex"
+ ],
+ "tags": {
+ "aeroway": "holding_position"
+ }
+ },
+ "aeroway/helipad": {
+ "icon": "maki-heliport",
+ "fields": [
+ "name",
+ "ref",
+ "operator",
+ "surface",
+ "maxweight",
+ "lit"
+ ],
+ "moreFields": [
+ "access_simple",
+ "address",
+ "charge_fee",
+ "fee",
+ "opening_hours"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "aeroway": "helipad"
+ }
+ },
+ "aeroway/hangar": {
+ "icon": "temaki-hangar",
+ "fields": [
+ "name",
+ "building_area_yes"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "aeroway": "hangar"
+ },
+ "addTags": {
+ "building": "hangar",
+ "aeroway": "hangar"
+ }
+ },
+ "aeroway/gate": {
+ "icon": "fas-plane",
+ "fields": [
+ "ref_aeroway_gate"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "aeroway": "gate"
+ }
+ },
+ "aeroway/apron": {
+ "icon": "temaki-planes",
+ "fields": [
+ "ref",
+ "surface"
+ ],
+ "geometry": [
+ "area"
+ ],
+ "tags": {
+ "aeroway": "apron"
+ }
+ },
+ "aeroway/aerodrome": {
+ "icon": "temaki-airport",
+ "fields": [
+ "name",
+ "iata",
+ "icao",
+ "address",
+ "operator",
+ "operator/type"
+ ],
+ "moreFields": [
+ "{@templates/contact}",
+ "{@templates/internet_access}",
+ "gnis/feature_id-US"
+ ],
+ "geometry": [
+ "area",
+ "point"
+ ],
+ "tags": {
+ "aeroway": "aerodrome"
+ },
+ "matchScore": 0.9
+ },
+ "aerialway/zip_line": {
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "oneway_yes",
+ "aerialway/duration",
+ "maxweight",
+ "access_simple"
+ ],
+ "tags": {
+ "aerialway": "zip_line"
+ }
+ },
+ "aerialway/t-bar": {
+ "icon": "temaki-t_bar_lift",
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "aerialway/capacity",
+ "aerialway/duration"
+ ],
+ "tags": {
+ "aerialway": "t-bar"
+ }
+ },
+ "aerialway/rope_tow": {
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "oneway_yes",
+ "aerialway/capacity",
+ "aerialway/duration"
+ ],
+ "tags": {
+ "aerialway": "rope_tow"
+ }
+ },
+ "aerialway/pylon": {
+ "icon": "temaki-aerialway_pole",
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "fields": [
+ "ref"
+ ],
+ "tags": {
+ "aerialway": "pylon"
+ }
+ },
+ "aerialway/platter": {
+ "icon": "temaki-platter_lift",
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "aerialway/capacity",
+ "aerialway/duration"
+ ],
+ "tags": {
+ "aerialway": "platter"
+ }
+ },
+ "aerialway/mixed_lift": {
+ "icon": "maki-aerialway",
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "oneway_yes",
+ "aerialway/occupancy",
+ "aerialway/capacity",
+ "aerialway/duration",
+ "aerialway/bubble",
+ "aerialway/heating"
+ ],
+ "tags": {
+ "aerialway": "mixed_lift"
+ }
+ },
+ "aerialway/magic_carpet": {
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "aerialway/capacity",
+ "aerialway/duration",
+ "aerialway/heating"
+ ],
+ "tags": {
+ "aerialway": "magic_carpet"
+ }
+ },
+ "aerialway/j-bar": {
+ "icon": "temaki-j_bar_lift",
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "aerialway/capacity",
+ "aerialway/duration"
+ ],
+ "tags": {
+ "aerialway": "j-bar"
+ }
+ },
+ "aerialway/goods": {
+ "icon": "temaki-goods_lift",
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "aerialway/capacity",
+ "aerialway/duration"
+ ],
+ "tags": {
+ "aerialway": "goods"
+ }
+ },
+ "aerialway/gondola": {
+ "icon": "temaki-gondola_lift",
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "oneway",
+ "aerialway/occupancy",
+ "aerialway/capacity",
+ "aerialway/duration",
+ "aerialway/bubble",
+ "aerialway/heating"
+ ],
+ "tags": {
+ "aerialway": "gondola"
+ }
+ },
+ "aerialway/drag_lift": {
+ "icon": "temaki-drag_lift",
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "aerialway/capacity",
+ "aerialway/duration"
+ ],
+ "tags": {
+ "aerialway": "drag_lift"
+ }
+ },
+ "aerialway/chair_lift": {
+ "icon": "temaki-chairlift",
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "oneway_yes",
+ "aerialway/occupancy",
+ "aerialway/capacity",
+ "aerialway/duration",
+ "aerialway/bubble",
+ "aerialway/heating"
+ ],
+ "tags": {
+ "aerialway": "chair_lift"
+ }
+ },
+ "aerialway/cable_car": {
+ "icon": "fas-tram",
+ "geometry": [
+ "line"
+ ],
+ "fields": [
+ "name",
+ "aerialway/occupancy",
+ "aerialway/capacity",
+ "aerialway/duration",
+ "aerialway/heating"
+ ],
+ "tags": {
+ "aerialway": "cable_car"
+ }
+ },
+ "advertising/totem": {
+ "fields": [
+ "{advertising}"
+ ],
+ "moreFields": [
+ "{advertising}",
+ "direction"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "advertising": "totem"
+ }
+ },
+ "advertising/poster_box": {
+ "icon": "temaki-poster_box",
+ "fields": [
+ "{advertising}",
+ "support"
+ ],
+ "moreFields": [
+ "{advertising}",
+ "direction"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "advertising": "poster_box"
+ }
+ },
+ "advertising/column": {
+ "icon": "roentgen-advertising_column",
+ "fields": [
+ "{advertising}"
+ ],
+ "moreFields": [
+ "{advertising}"
+ ],
+ "geometry": [
+ "point",
+ "area"
+ ],
+ "tags": {
+ "advertising": "column"
+ }
+ },
+ "advertising/board": {
+ "icon": "temaki-bulletin_board",
+ "fields": [
+ "{advertising}",
+ "support"
+ ],
+ "moreFields": [
+ "{advertising}",
+ "direction"
+ ],
+ "geometry": [
+ "point",
+ "vertex"
+ ],
+ "tags": {
+ "advertising": "board"
+ }
+ },
+ "advertising/billboard": {
+ "icon": "temaki-billboard",
+ "fields": [
+ "{advertising}",
+ "support"
+ ],
+ "moreFields": [
+ "{advertising}",
+ "direction"
+ ],
+ "geometry": [
+ "point",
+ "vertex",
+ "line"
+ ],
+ "tags": {
+ "advertising": "billboard"
+ }
+ },
+ "addr/interpolation": {
+ "fields": [
+ "addr/interpolation"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "addr:interpolation": "*"
+ },
+ "searchable": false,
+ "matchScore": 0.2
+ },
+ "@templates/poi": {
+ "moreFields": [
+ "{@templates/contact}",
+ "address",
+ "contact/facebook",
+ "gnis/feature_id-US",
+ "level",
+ "not/name",
+ "opening_hours",
+ "payment_multi",
+ "ref/vatin",
+ "ref/FR/siret-FR",
+ "wheelchair"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "@template": "poi"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+ },
+ "@templates/internet_access": {
+ "fields": [
+ "internet_access",
+ "internet_access/fee"
+ ],
+ "moreFields": [
+ "internet_access",
+ "internet_access/fee",
+ "internet_access/ssid"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "@template": "internet_access"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+ },
+ "@templates/contact": {
+ "moreFields": [
+ "email",
+ "fax",
+ "mobile",
+ "phone",
+ "website"
+ ],
+ "geometry": [
+ "point"
+ ],
+ "tags": {
+ "@template": "contact"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+ },
+ "@templates/crossing/traffic_signal_more": {
+ "moreFields": [
+ "traffic_signals/arrow",
+ "traffic_signals/countdown",
+ "traffic_signals/minimap"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/traffic_signal_more"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+ },
+ "@templates/crossing/traffic_signal": {
+ "fields": [
+ "button_operated",
+ "traffic_signals/sound",
+ "traffic_signals/vibration"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/traffic_signal"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+ },
+ "@templates/crossing/surfacequality": {
+ "fields": [
+ "surface",
+ "smoothness"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/surfacequality"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+ },
+ "@templates/crossing/markings_yes": {
+ "fields": [
+ "crossing/markings_yes",
+ "crossing/markings_yes-BG",
+ "crossing/markings_yes-DE-AT-CH",
+ "crossing/markings_yes-PL"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/markings_yes"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+ },
+ "@templates/crossing/markings": {
+ "fields": [
+ "crossing/markings",
+ "crossing/markings-BG",
+ "crossing/markings-DE-AT-CH",
+ "crossing/markings-PL"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/markings"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+ },
+ "@templates/crossing/geometry_way_more": {
+ "moreFields": [
+ "smoothness",
+ "lit"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/geometry_way_more"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+ },
+ "@templates/crossing/defaults": {
+ "fields": [
+ "crossing/island",
+ "crossing_raised"
+ ],
+ "geometry": [
+ "point",
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/defaults"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
+ },
+ "@templates/crossing/bicycle_more": {
+ "moreFields": [
+ "oneway",
+ "access",
+ "segregated"
+ ],
+ "geometry": [
+ "line"
+ ],
+ "tags": {
+ "@template": "crossing/bicycle_more"
+ },
+ "searchable": false,
+ "locationSet": {
+ "include": [
+ "999"
+ ],
+ "exclude": [
+ "999"
+ ]
+ },
+ "name": "{point}"
}
}
\ No newline at end of file
diff --git a/dist/presets.min.json b/dist/presets.min.json
index ef5817ad..67dfa1f5 100644
--- a/dist/presets.min.json
+++ b/dist/presets.min.json
@@ -1 +1 @@
-{"aerialway":{"fields":["name","aerialway"],"moreFields":["layer"],"geometry":["point","vertex","line"],"tags":{"aerialway":"*"},"searchable":false},"aeroway":{"icon":"maki-airport","fields":["aeroway"],"geometry":["point","vertex","line","area"],"tags":{"aeroway":"*"},"searchable":false},"amenity":{"fields":["amenity"],"geometry":["point","vertex","line","area"],"tags":{"amenity":"*"},"searchable":false},"attraction":{"icon":"maki-star","fields":["name","attraction","operator","opening_hours","fee","charge_fee"],"moreFields":["address","email","fax","opening_hours","opening_hours/covid19","payment_multi","phone"],"geometry":["point","vertex","line","area"],"tags":{"attraction":"*"},"searchable":false},"boundary":{"fields":["boundary"],"geometry":["line"],"tags":{"boundary":"*"},"searchable":false,"matchScore":0.45},"building_point":{"icon":"maki-home","fields":["{building}"],"moreFields":["{building}"],"geometry":["point"],"tags":{"building":"*"},"matchScore":0.6,"searchable":false},"embankment":{"geometry":["line"],"tags":{"embankment":"yes"},"matchScore":0.2,"searchable":false},"emergency":{"fields":["emergency_combo"],"geometry":["point","vertex","area"],"tags":{"emergency":"*"},"searchable":false},"ford_line":{"geometry":["line"],"tags":{"ford":"*"},"searchable":false},"highway":{"fields":["name","highway"],"geometry":["point","vertex","line","area"],"tags":{"highway":"*"},"searchable":false},"indoor":{"icon":"temaki-room","fields":["level","indoor_type"],"geometry":["point","vertex","line","area"],"tags":{"indoor":"*"},"matchScore":0.8,"searchable":false},"landuse":{"fields":["name","landuse"],"geometry":["area"],"tags":{"landuse":"*"},"matchScore":0.9,"searchable":false},"leisure":{"icon":"maki-pitch","fields":["name","leisure"],"geometry":["point","vertex","line","area"],"tags":{"leisure":"*"},"searchable":false},"man_made":{"icon":"temaki-storage_tank","fields":["name","man_made"],"moreFields":["material"],"geometry":["point","vertex","line","area"],"tags":{"man_made":"*"},"matchScore":0.4,"searchable":false},"natural":{"icon":"maki-natural","fields":["name","natural"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex","line","area"],"tags":{"natural":"*"},"searchable":false},"pipeline":{"icon":"iD-pipeline-line","fields":["pipeline","operator"],"geometry":["point","vertex","line","area"],"tags":{"natural":"*"},"searchable":false},"place":{"fields":["name","place"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex","area"],"tags":{"place":"*"},"searchable":false},"playground":{"icon":"maki-playground","fields":["playground","playground/theme","min_age","max_age","wheelchair","blind","height"],"moreFields":["access_simple","colour","manufacturer","material","ref"],"geometry":["point","vertex","line","area"],"tags":{"playground":"*"},"searchable":false},"power":{"icon":"temaki-power","geometry":["point","vertex","line","area"],"tags":{"power":"*"},"fields":["power","operator"],"searchable":false},"railway":{"icon":"temaki-rail_profile","fields":["railway"],"geometry":["point","vertex","line","area"],"tags":{"railway":"*"},"searchable":false},"seamark":{"icon":"maki-harbor","fields":["seamark/type"],"geometry":["point","vertex","line","area"],"tags":{"seamark:type":"*"},"searchable":false},"telecom":{"icon":"temaki-cable","fields":["telecom","operator"],"geometry":["point","vertex","line","area"],"tags":{"telecom":"*"},"searchable":false},"tourism":{"icon":"maki-attraction","fields":["name","tourism"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"*"},"searchable":false},"waterway":{"fields":["name","waterway"],"geometry":["point","vertex","line","area"],"tags":{"waterway":"*"},"searchable":false},"addr/interpolation":{"fields":["addr/interpolation"],"geometry":["line"],"tags":{"addr:interpolation":"*"},"searchable":false,"matchScore":0.2},"address":{"fields":["address"],"geometry":["point","vertex","area"],"tags":{"addr:*":"*"},"addTags":{},"removeTags":{},"reference":{"key":"addr"},"matchScore":0.15},"advertising/billboard":{"icon":"temaki-billboard","fields":["operator","lit","support","visibility"],"moreFields":["access_simple","direction","height"],"geometry":["point","vertex","line"],"tags":{"advertising":"billboard"}},"advertising/board":{"icon":"temaki-bulletin_board","fields":["operator","lit","support","visibility"],"moreFields":["access_simple","direction","height"],"geometry":["point","vertex"],"tags":{"advertising":"board"}},"advertising/column":{"icon":"temaki-storage_tank","fields":["operator","lit","visibility"],"moreFields":["access_simple","height"],"geometry":["point","area"],"tags":{"advertising":"column"}},"advertising/poster_box":{"icon":"temaki-poster_box","fields":["operator","lit","support","visibility"],"moreFields":["access_simple","direction","height"],"geometry":["point"],"tags":{"advertising":"poster_box"}},"advertising/totem":{"fields":["operator","lit","visibility"],"moreFields":["access_simple","direction","height"],"geometry":["point"],"tags":{"advertising":"totem"}},"aerialway/cable_car":{"icon":"fas-tram","geometry":["line"],"fields":["name","aerialway/occupancy","aerialway/capacity","aerialway/duration","aerialway/heating"],"tags":{"aerialway":"cable_car"}},"aerialway/chair_lift":{"icon":"temaki-chairlift","geometry":["line"],"fields":["name","oneway_yes","aerialway/occupancy","aerialway/capacity","aerialway/duration","aerialway/bubble","aerialway/heating"],"tags":{"aerialway":"chair_lift"}},"aerialway/drag_lift":{"icon":"temaki-drag_lift","geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"drag_lift"}},"aerialway/gondola":{"icon":"temaki-gondola_lift","geometry":["line"],"fields":["name","oneway","aerialway/occupancy","aerialway/capacity","aerialway/duration","aerialway/bubble","aerialway/heating"],"tags":{"aerialway":"gondola"}},"aerialway/goods":{"icon":"temaki-goods_lift","geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"goods"}},"aerialway/j-bar":{"icon":"temaki-j_bar_lift","geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"j-bar"}},"aerialway/magic_carpet":{"geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration","aerialway/heating"],"tags":{"aerialway":"magic_carpet"}},"aerialway/mixed_lift":{"icon":"maki-aerialway","geometry":["line"],"fields":["name","oneway_yes","aerialway/occupancy","aerialway/capacity","aerialway/duration","aerialway/bubble","aerialway/heating"],"tags":{"aerialway":"mixed_lift"}},"aerialway/platter":{"icon":"temaki-platter_lift","geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"platter"}},"aerialway/pylon":{"icon":"temaki-aerialway_pole","geometry":["point","vertex"],"fields":["ref"],"tags":{"aerialway":"pylon"}},"aerialway/rope_tow":{"geometry":["line"],"fields":["name","oneway_yes","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"rope_tow"}},"aerialway/t-bar":{"icon":"temaki-t_bar_lift","geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"t-bar"}},"aerialway/zip_line":{"geometry":["line"],"fields":["name","oneway_yes","aerialway/duration","maxweight","access_simple"],"tags":{"aerialway":"zip_line"}},"aeroway/aerodrome":{"icon":"temaki-airport","fields":["name","iata","icao","address","operator","operator/type","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["email","fax","gnis/feature_id-US","phone"],"geometry":["area","point"],"tags":{"aeroway":"aerodrome"},"matchScore":0.9},"aeroway/apron":{"icon":"temaki-planes","fields":["ref","surface"],"geometry":["area"],"tags":{"aeroway":"apron"}},"aeroway/gate":{"icon":"fas-plane","fields":["ref_aeroway_gate"],"geometry":["point","vertex"],"tags":{"aeroway":"gate"}},"aeroway/hangar":{"icon":"temaki-hangar","fields":["name","building_area_yes"],"geometry":["area"],"tags":{"aeroway":"hangar"},"addTags":{"building":"hangar","aeroway":"hangar"}},"aeroway/helipad":{"icon":"maki-heliport","fields":["name","ref","operator","surface","lit"],"moreFields":["access_simple","address","charge_fee","fee","opening_hours","opening_hours/covid19"],"geometry":["area","point"],"tags":{"aeroway":"helipad"}},"aeroway/holding_position":{"icon":"temaki-plane_taxiing","fields":["ref","holding_position/type","direction_vertex","ele_node"],"geometry":["vertex"],"tags":{"aeroway":"holding_position"}},"aeroway/jet_bridge":{"icon":"temaki-pedestrian_walled","fields":["ref_aeroway_gate","width","access_simple","wheelchair"],"moreFields":["manufacturer"],"geometry":["line"],"tags":{"aeroway":"jet_bridge"},"addTags":{"aeroway":"jet_bridge","highway":"corridor"},"matchScore":1.05},"aeroway/parking_position":{"icon":"temaki-plane_taxiing","fields":["ref"],"geometry":["vertex","point","line"],"tags":{"aeroway":"parking_position"}},"aeroway/runway":{"icon":"fas-plane-departure","fields":["ref_runway","surface","length","width"],"geometry":["line"],"tags":{"aeroway":"runway"}},"aeroway/spaceport":{"icon":"fas-space-shuttle","fields":["name","operator","access_simple","website","wikidata"],"moreFields":["email","fax","internet_access","internet_access/fee","internet_access/ssid","phone"],"geometry":["area","point"],"tags":{"aeroway":"spaceport"}},"aeroway/taxiway":{"icon":"temaki-plane_taxiing","fields":["ref_taxiway","surface"],"geometry":["line"],"tags":{"aeroway":"taxiway"}},"aeroway/terminal":{"icon":"maki-airport","fields":["name","operator","building_area_yes","wheelchair","baby_feeding"],"moreFields":["air_conditioning","smoking"],"geometry":["point","area"],"tags":{"aeroway":"terminal"}},"aeroway/windsock":{"icon":"temaki-windsock","fields":["ref","lit","height"],"moreFields":["manufacturer"],"geometry":["point","vertex"],"tags":{"aeroway":"windsock"}},"allotments/plot":{"icon":"temaki-garden_bed","geometry":["area"],"fields":["name","ref"],"tags":{"allotments":"plot"},"reference":{"key":"allotments","value":"plot"}},"amenity/bus_station":{"icon":"temaki-bus","fields":["name","building_area","operator","internet_access","internet_access/fee","internet_access/ssid"],"geometry":["point","area"],"tags":{"amenity":"bus_station"},"searchable":false,"replacement":"public_transport/station_bus"},"amenity/coworking_space":{"icon":"maki-commercial","fields":["name","address","building_area_yes","opening_hours","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["opening_hours/covid19","ref/FR/siret-FR"],"geometry":["point","area"],"tags":{"amenity":"coworking_space"},"searchable":false},"amenity/embassy":{"icon":"temaki-embassy","fields":["name","country","address","building_area_yes"],"moreFields":["email","fax","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"embassy"},"searchable":false},"amenity/ferry_terminal":{"icon":"temaki-ferry","fields":["name","network","operator","address","building_area"],"geometry":["point","vertex","area"],"tags":{"amenity":"ferry_terminal"},"matchScore":0.95,"searchable":false,"replacement":"public_transport/station_ferry"},"amenity/nursing_home":{"icon":"maki-wheelchair","fields":["{amenity/social_facility}","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"nursing_home"},"reference":{"key":"social_facility","value":"nursing_home"},"searchable":false},"amenity/recycling":{"icon":"maki-recycling","fields":["recycling_type","recycling_accepts","collection_times"],"geometry":["point","area"],"tags":{"amenity":"recycling"},"searchable":false},"amenity/animal_boarding":{"icon":"maki-veterinary","fields":["name","operator","address","building_area","opening_hours","animal_boarding"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"animal_boarding"}},"amenity/animal_breeding":{"icon":"maki-veterinary","fields":["name","operator","address","building_area","opening_hours","animal_breeding"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","ref/FR/siret-FR","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"animal_breeding"}},"amenity/animal_shelter":{"icon":"maki-veterinary","fields":["name","operator","address","building_area","opening_hours","animal_shelter"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"animal_shelter"}},"amenity/arts_centre":{"icon":"maki-theatre","fields":["name","address","building_area_yes","opening_hours","website"],"moreFields":["charge_fee","email","fax","fee","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","payment_multi","phone","website","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"arts_centre"}},"amenity/atm":{"icon":"temaki-atm2","fields":["operator","network","cash_in","currency_multi","drive_through"],"moreFields":["branch_brand","ref","brand","covered","height","indoor","level","lit","manufacturer","opening_hours","opening_hours/covid19","wheelchair"],"geometry":["point","vertex"],"tags":{"amenity":"atm"}},"amenity/bank":{"icon":"maki-bank","fields":["name","operator","address","building_area_yes","opening_hours","atm","drive_through"],"moreFields":["air_conditioning","branch_brand","brand","currency_multi","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","phone","ref/vatin","ref/FR/siret-FR","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"bank"}},"amenity/bar":{"icon":"maki-bar","fields":["name","address","building_area_yes","opening_hours","min_age","brewery"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","microbrewery","opening_hours/covid19","operator","outdoor_seating","payment_multi","phone","ref/vatin","ref/FR/siret-FR","smoking","sport_pub","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"bar"}},"amenity/bar/lgbtq":{"icon":"maki-bar","geometry":["point","area"],"tags":{"amenity":"bar","lgbtq":"primary"}},"amenity/bbq":{"icon":"maki-bbq","fields":["covered","fuel","access_simple"],"moreFields":["lit"],"geometry":["point","area"],"tags":{"amenity":"bbq"}},"amenity/bench":{"icon":"temaki-bench","fields":["backrest","material","seats","colour"],"moreFields":["access_simple","direction","height","inscription","level","lit","manufacturer","operator"],"geometry":["point","vertex","line"],"tags":{"amenity":"bench"}},"amenity/bicycle_parking":{"icon":"temaki-bicycle_parked","fields":["bicycle_parking","capacity","operator","operator/type","covered","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["bike_ride","colour","indoor","level","lit"],"geometry":["point","vertex","area"],"tags":{"amenity":"bicycle_parking"}},"amenity/bicycle_parking/building":{"icon":"temaki-bicycle_structure","fields":["{amenity/bicycle_parking}","opening_hours","building_area_yes"],"moreFields":["{amenity/bicycle_parking}","opening_hours/covid19"],"geometry":["point","vertex","area"],"tags":{"amenity":"bicycle_parking","bicycle_parking":"building"},"reference":{"key":"bicycle_parking"}},"amenity/bicycle_parking/lockers":{"icon":"temaki-bicycle_locker","geometry":["point","vertex","area"],"tags":{"amenity":"bicycle_parking","bicycle_parking":"lockers"},"reference":{"key":"bicycle_parking"}},"amenity/bicycle_parking/shed":{"icon":"temaki-bicycle_shed","fields":["{amenity/bicycle_parking}","building_area_yes"],"geometry":["point","vertex","area"],"tags":{"amenity":"bicycle_parking","bicycle_parking":"shed"},"reference":{"key":"bicycle_parking"}},"amenity/bicycle_rental":{"icon":"temaki-bicycle_rental","fields":["name","capacity","network","operator","operator/type","fee","payment_multi_fee"],"moreFields":["address","covered","email","fax","level","opening_hours","opening_hours/covid19","phone","wheelchair"],"geometry":["point","vertex","area"],"tags":{"amenity":"bicycle_rental"}},"amenity/bicycle_repair_station":{"icon":"temaki-bicycle_repair","fields":["operator","brand","opening_hours","fee","payment_multi_fee","charge_fee","service/bicycle"],"moreFields":["branch_brand","colour","covered","indoor","level","manufacturer","opening_hours/covid19"],"geometry":["point","vertex"],"tags":{"amenity":"bicycle_repair_station"}},"amenity/biergarten":{"icon":"fas-beer","fields":["name","address","opening_hours","outdoor_seating","brewery"],"moreFields":["{amenity/bar}","cuisine","opening_hours/covid19"],"geometry":["point","area"],"tags":{"amenity":"biergarten"}},"amenity/binoculars":{"icon":"temaki-binoculars","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","direction","height","ele_node"],"moreFields":["colour","covered","indoor","lit","manufacturer","ref"],"geometry":["point"],"tags":{"amenity":"binoculars"}},"amenity/boat_rental":{"icon":"temaki-boat_rental","fields":["name","operator","operator/type","opening_hours","fee","payment_multi_fee","charge_fee"],"moreFields":["access_simple","address","email","fax","opening_hours/covid19","ref/FR/siret-FR","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"boat_rental"}},"amenity/boat_storage":{"icon":"temaki-boat_dry_dock","fields":["name","operator","access_simple","capacity"],"geometry":["point","area"],"tags":{"amenity":"boat_storage"}},"amenity/bureau_de_change":{"icon":"temaki-money_hand","fields":["name","operator","payment_multi","currency_multi","address","building_area"],"moreFields":["email","fax","level","opening_hours","opening_hours/covid19","ref/FR/siret-FR","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"bureau_de_change"}},"amenity/cafe":{"icon":"maki-cafe","fields":["name","cuisine","address","building_area_yes","opening_hours","outdoor_seating","internet_access","internet_access/fee","internet_access/ssid","phone","website"],"moreFields":["air_conditioning","bar","branch_brand","brand","capacity","delivery","diet_multi","drive_through","email","fax","gnis/feature_id-US","highchair","level","min_age","not/name","opening_hours/covid19","payment_multi","ref/vatin","ref/FR/siret-FR","reservation","smoking","takeaway","toilets","toilets/wheelchair","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"cafe"}},"amenity/cafe/bubble_tea":{"icon":"temaki-bubble_tea","geometry":["point","area"],"tags":{"amenity":"cafe","cuisine":"bubble_tea"},"reference":{"key":"cuisine","value":"bubble_tea"}},"amenity/cafe/coffee_shop":{"icon":"temaki-hot_drink_cup","geometry":["point","area"],"tags":{"amenity":"cafe","cuisine":"coffee_shop"},"reference":{"key":"cuisine","value":"coffee_shop"}},"amenity/car_pooling":{"icon":"temaki-car_pool","fields":["name","operator","operator/type","capacity","address","opening_hours","lit"],"moreFields":["email","fax","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"car_pooling"}},"amenity/car_rental":{"icon":"maki-car-rental","fields":["name","operator","address","opening_hours","payment_multi"],"moreFields":["branch_brand","brand","email","fax","opening_hours/covid19","ref/FR/siret-FR","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"car_rental"}},"amenity/car_sharing":{"icon":"temaki-sign_and_car","fields":["name","operator","operator/type","capacity","address","payment_multi","supervised"],"moreFields":["branch_brand","brand","email","fax","lit","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"car_sharing"}},"amenity/car_wash":{"icon":"temaki-car_wash","fields":["name","operator","address","building_area_yes","opening_hours","payment_multi","self_service","automated"],"moreFields":["email","fax","gnis/feature_id-US","opening_hours/covid19","ref/FR/siret-FR","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"car_wash"}},"amenity/casino":{"icon":"maki-casino","fields":["name","operator","address","building_area_yes","opening_hours","gambling","smoking"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","min_age","opening_hours/covid19","payment_multi","phone","ref/vatin","ref/FR/siret-FR","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"casino"}},"amenity/charging_station":{"icon":"fas-charging-station","fields":["brand","operator","capacity","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["covered","level","manufacturer","network"],"geometry":["point","vertex","area"],"tags":{"amenity":"charging_station"}},"amenity/childcare":{"icon":"fas-child-reaching","fields":["name","operator","operator/type","address","building_area_yes","opening_hours","website"],"moreFields":["baby_feeding","capacity","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","max_age","min_age","not/name","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"childcare"}},"amenity/cinema":{"icon":"maki-cinema","fields":["name","address","screen","building_area_yes","opening_hours","payment_multi"],"moreFields":["air_conditioning","branch_brand","brand","email","fax","gnis/feature_id-US","level","min_age","opening_hours/covid19","ref/FR/siret-FR","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"cinema"}},"amenity/clinic":{"icon":"maki-doctor","fields":["name","operator","operator/type","healthcare/speciality","address","building_area_yes","opening_hours"],"moreFields":["air_conditioning","branch_brand","brand","email","fax","gnis/feature_id-US","level","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"clinic"},"addTags":{"amenity":"clinic","healthcare":"clinic"},"reference":{"key":"amenity","value":"clinic"}},"amenity/clinic/abortion":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"amenity":"clinic","healthcare":"clinic","healthcare:speciality":"abortion"},"reference":{"key":"amenity","value":"clinic"}},"amenity/clinic/fertility":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"amenity":"clinic","healthcare":"clinic","healthcare:speciality":"fertility"},"reference":{"key":"amenity","value":"clinic"}},"amenity/clock":{"icon":"temaki-clock","fields":["name","support","display","visibility","date","faces"],"moreFields":["covered","height","indoor","level","lit","manufacturer"],"geometry":["point","vertex"],"tags":{"amenity":"clock"}},"amenity/clock/sundial":{"icon":"temaki-clock","fields":["name","support","visibility","inscription"],"moreFields":[],"geometry":["point","vertex"],"tags":{"amenity":"clock","display":"sundial"},"reference":{"key":"display","value":"sundial"}},"amenity/college":{"icon":"maki-college","fields":["name","operator","operator/type","address","website","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["denomination","email","fax","gnis/feature_id-US","not/name","phone","religion","wheelchair"],"geometry":["area","point"],"tags":{"amenity":"college"}},"amenity/community_centre":{"icon":"maki-town-hall","fields":["name","operator","operator/type","address","building_area_yes","opening_hours","website"],"moreFields":["air_conditioning","baby_feeding","email","fax","gnis/feature_id-US","opening_hours/covid19","phone","polling_station","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"community_centre"}},"amenity/community_centre/lgbtq":{"icon":"maki-town-hall","geometry":["point","area"],"tags":{"amenity":"community_centre","lgbtq":"primary"},"addTags":{"amenity":"community_centre","lgbtq":"primary","community_centre:for":"lgbtq"}},"amenity/community_centre/youth_centre":{"icon":"maki-town-hall","geometry":["point","area"],"tags":{"amenity":"community_centre","community_centre":"youth_centre"}},"amenity/compressed_air":{"icon":"fas-tachometer-alt","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","covered","lit"],"moreFields":["branch_brand","brand","manufacturer"],"geometry":["point","area"],"tags":{"amenity":"compressed_air"}},"amenity/conference_centre":{"icon":"fas-user-tie","fields":["name","operator","operator/type","building_area_yes","address","website","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","not/name","phone","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"conference_centre"}},"amenity/courthouse":{"icon":"fas-gavel","fields":["name","operator","address","building_area_yes"],"moreFields":["email","fax","gnis/feature_id-US","level","phone","polling_station","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"courthouse"}},"amenity/crematorium":{"icon":"maki-cemetery","fields":["name","website","phone","opening_hours","wheelchair"],"moreFields":["address","email","fax","gnis/feature_id-US","level","opening_hours/covid19","ref/FR/siret-FR","phone","website","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"crematorium"}},"amenity/dentist":{"icon":"maki-dentist","fields":["name","operator","healthcare/speciality","address","building_area_yes","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"dentist"},"addTags":{"amenity":"dentist","healthcare":"dentist"},"reference":{"key":"amenity","value":"dentist"}},"amenity/dive_centre":{"icon":"temaki-scuba_diving","fields":["name","operator","address","building_area_yes","opening_hours","scuba_diving"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"dive_centre"}},"amenity/doctors":{"icon":"maki-doctor","fields":["name","operator","healthcare/speciality","address","building_area_yes","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"doctors"},"addTags":{"amenity":"doctors","healthcare":"doctor"},"reference":{"key":"amenity","value":"doctors"}},"amenity/doctors/allergology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"allergology"},"addTags":{"amenity":"doctors","healthcare:speciality":"allergology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"allergology"}},"amenity/doctors/cardiology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"cardiology"},"addTags":{"amenity":"doctors","healthcare:speciality":"cardiology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"cardiology"}},"amenity/doctors/dermatology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"dermatology"},"addTags":{"amenity":"doctors","healthcare:speciality":"dermatology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"dermatology"}},"amenity/doctors/gastroenterology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"gastroenterology"},"addTags":{"amenity":"doctors","healthcare:speciality":"gastroenterology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"gastroenterology"}},"amenity/doctors/general":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"general"},"addTags":{"amenity":"doctors","healthcare:speciality":"general","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"general"}},"amenity/doctors/gynaecology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"gynaecology"},"addTags":{"amenity":"doctors","healthcare:speciality":"gynaecology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"gynaecology"}},"amenity/doctors/haematology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"haematology"},"addTags":{"amenity":"doctors","healthcare:speciality":"haematology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"haematology"}},"amenity/doctors/internal":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"internal"},"addTags":{"amenity":"doctors","healthcare:speciality":"internal","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"internal"}},"amenity/doctors/nephrology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"nephrology"},"addTags":{"amenity":"doctors","healthcare:speciality":"nephrology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"nephrology"}},"amenity/doctors/neurology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"neurology"},"addTags":{"amenity":"doctors","healthcare:speciality":"neurology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"neurology"}},"amenity/doctors/neurosurgery":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"neurosurgery"},"addTags":{"amenity":"doctors","healthcare:speciality":"neurosurgery","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"neurosurgery"}},"amenity/doctors/oncology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"oncology"},"addTags":{"amenity":"doctors","healthcare:speciality":"oncology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"oncology"}},"amenity/doctors/ophthalmology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"ophthalmology"},"addTags":{"amenity":"doctors","healthcare:speciality":"ophthalmology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"ophthalmology"}},"amenity/doctors/orthopaedics":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"orthopaedics"},"addTags":{"amenity":"doctors","healthcare:speciality":"orthopaedics","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"orthopaedics"}},"amenity/doctors/otolaryngology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"otolaryngology"},"addTags":{"amenity":"doctors","healthcare:speciality":"otolaryngology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"otolaryngology"}},"amenity/doctors/paediatrics":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"paediatrics"},"addTags":{"amenity":"doctors","healthcare:speciality":"paediatrics","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"paediatrics"}},"amenity/doctors/pathology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"pathology"},"addTags":{"amenity":"doctors","healthcare:speciality":"pathology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"pathology"}},"amenity/doctors/plastic_surgery":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"plastic_surgery"},"addTags":{"amenity":"doctors","healthcare:speciality":"plastic_surgery","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"plastic_surgery"}},"amenity/doctors/podiatry":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"podiatry"},"addTags":{"amenity":"doctors","healthcare:speciality":"podiatry","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"podiatry"}},"amenity/doctors/proctology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"proctology"},"addTags":{"amenity":"doctors","healthcare:speciality":"proctology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"proctology"}},"amenity/doctors/pulmonology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"pulmonology"},"addTags":{"amenity":"doctors","healthcare:speciality":"pulmonology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"pulmonology"}},"amenity/doctors/radiology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"radiology"},"addTags":{"amenity":"doctors","healthcare:speciality":"radiology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"radiology"}},"amenity/doctors/rheumatology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"rheumatology"},"addTags":{"amenity":"doctors","healthcare:speciality":"rheumatology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"rheumatology"}},"amenity/doctors/surgery":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"surgery"},"addTags":{"amenity":"doctors","healthcare:speciality":"surgery","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"surgery"}},"amenity/doctors/trauma":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"trauma"},"addTags":{"amenity":"doctors","healthcare:speciality":"trauma","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"trauma"}},"amenity/doctors/urology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"urology"},"addTags":{"amenity":"doctors","healthcare:speciality":"urology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"urology"}},"amenity/dojo":{"icon":"maki-pitch","fields":["name","sport","address","building_area_yes","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"dojo"}},"amenity/dressing_room":{"icon":"maki-clothing-store","fields":["operator","access_simple","gender","wheelchair"],"moreFields":["building_area","charge_fee","fee","level","opening_hours","opening_hours/covid19","payment_multi_fee","ref"],"geometry":["point","area"],"tags":{"amenity":"dressing_room"}},"amenity/drinking_water":{"icon":"maki-drinking-water","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","wheelchair","bottle"],"moreFields":["covered","indoor","level","lit"],"geometry":["point"],"tags":{"amenity":"drinking_water"}},"amenity/driver_training":{"icon":"maki-car","fields":["name","operator","operator/type","address","opening_hours"],"moreFields":["license_classes","email","fax","opening_hours/covid19","payment_multi","phone","website","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"driver_training"}},"amenity/driving_school":{"icon":"maki-car","fields":["name","operator","operator/type","address","building_area","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","level","license_classes","opening_hours/covid19","payment_multi","ref/FR/siret-FR","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"driving_school"}},"amenity/events_venue":{"icon":"fas-users","fields":["name","operator","building_area_yes","address","website","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","level","min_age","phone","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"events_venue"}},"amenity/exhibition_centre":{"icon":"fas-user-tie","fields":["name","operator","operator/type","building_area_yes","address","website","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","not/name","phone","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"exhibition_centre"}},"amenity/fast_food":{"icon":"maki-fast-food","fields":["name","cuisine","diet_multi","operator","address","building_area_yes","opening_hours","drive_through","phone","website"],"moreFields":["air_conditioning","branch_brand","brand","capacity","delivery","email","fax","gnis/feature_id-US","highchair","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","outdoor_seating","payment_multi","ref/vatin","ref/FR/siret-FR","smoking","takeaway","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"fast_food"}},"amenity/fast_food/ice_cream":{"icon":"fas-ice-cream","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"ice_cream"},"reference":{"key":"cuisine","value":"ice_cream"},"searchable":false},"amenity/fast_food/burger":{"icon":"maki-fast-food","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"burger"},"reference":{"key":"cuisine","value":"burger"}},"amenity/fast_food/cafeteria":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"fast_food","fast_food":"cafeteria"},"fields":["{amenity/fast_food}","access_simple"]},"amenity/fast_food/chicken":{"icon":"fas-drumstick-bite","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"chicken"},"reference":{"key":"cuisine","value":"chicken"}},"amenity/fast_food/donut":{"icon":"temaki-donut","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"donut"},"reference":{"key":"cuisine","value":"donut"}},"amenity/fast_food/fish_and_chips":{"icon":"fas-fish","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"fish_and_chips"},"reference":{"key":"cuisine","value":"fish_and_chips"}},"amenity/fast_food/hot_dog":{"icon":"fas-hotdog","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"hot_dog"},"reference":{"key":"cuisine","value":"hot_dog"}},"amenity/fast_food/juice":{"icon":"temaki-drink_cup","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"juice"},"reference":{"key":"cuisine","value":"juice"}},"amenity/fast_food/kebab":{"icon":"temaki-vertical_rotisserie","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"kebab"},"reference":{"key":"cuisine","value":"kebab"}},"amenity/fast_food/mexican":{"icon":"fas-pepper-hot","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"mexican"},"reference":{"key":"cuisine","value":"mexican"}},"amenity/fast_food/pizza":{"icon":"maki-restaurant-pizza","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"pizza"},"reference":{"key":"cuisine","value":"pizza"}},"amenity/fast_food/sandwich":{"icon":"temaki-sandwich","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"sandwich"},"reference":{"key":"cuisine","value":"sandwich"}},"amenity/fire_station":{"icon":"maki-fire-station","fields":["name","operator","address","building_area"],"moreFields":["email","fax","gnis/feature_id-US","phone","polling_station","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"fire_station"}},"amenity/food_court":{"icon":"maki-restaurant","fields":["name","operator","address","building_area_yes","opening_hours","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["capacity","diet_multi","email","fax","gnis/feature_id-US","level","not/name","opening_hours/covid19","outdoor_seating","phone","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"food_court"}},"amenity/fountain":{"icon":"temaki-fountain","fields":["name","operator","fountain","drinking_water","height","lit"],"moreFields":["covered","indoor","level","manufacturer"],"geometry":["point","area"],"tags":{"amenity":"fountain"}},"amenity/fuel":{"icon":"maki-fuel","fields":["name","brand","operator","address","fuel/fuel_multi","fuel/fuel_multi-RU","self_service","building_area"],"moreFields":["branch_brand","email","fax","gnis/feature_id-US","opening_hours","opening_hours/covid19","payment_multi","phone","ref/vatin","ref/FR/siret-FR","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"fuel"}},"amenity/gambling":{"icon":"fas-coins","fields":["{amenity/casino}"],"moreFields":["{amenity/casino}"],"geometry":["point","area"],"tags":{"amenity":"gambling"}},"amenity/give_box":{"icon":"fas-box-open","fields":["name","operator","opening_hours","access_simple"],"moreFields":["address","branch_brand","brand","capacity","covered","email","indoor","level","lit","location","opening_hours/covid19","phone","ref","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"give_box"}},"amenity/grave_yard":{"icon":"maki-cemetery","fields":["religion","address"],"moreFields":["email","fax","gnis/feature_id-US","phone"],"geometry":["point","area"],"tags":{"amenity":"grave_yard"}},"amenity/grit_bin":{"icon":"fas-box","fields":["operator","access_simple","material","collection_times"],"moreFields":["colour","height","lit"],"geometry":["point","vertex"],"tags":{"amenity":"grit_bin"}},"amenity/hospital":{"icon":"maki-hospital","fields":["name","operator","operator/type","healthcare/speciality","address","emergency"],"moreFields":["email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","phone","wheelchair"],"geometry":["area","point"],"tags":{"amenity":"hospital"},"addTags":{"amenity":"hospital","healthcare":"hospital"},"reference":{"key":"amenity","value":"hospital"}},"amenity/hunting_stand":{"icon":"temaki-hunting_blind","fields":["access_simple","lockable"],"geometry":["point","vertex","area"],"tags":{"amenity":"hunting_stand"}},"amenity/ice_cream":{"icon":"fas-ice-cream","fields":["name","address","building_area_yes","opening_hours","outdoor_seating"],"moreFields":["delivery","diet_multi","drive_through","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","payment_multi","ref/FR/siret-FR","phone","takeaway","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"ice_cream"}},"amenity/internet_cafe":{"icon":"temaki-antenna","fields":["name","operator","operator/type","address","building_area_yes","internet_access","internet_access/fee","internet_access/ssid","phone","website"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","level","min_age","opening_hours","opening_hours/covid19","outdoor_seating","payment_multi","ref/vatin","ref/FR/siret-FR","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"internet_cafe"}},"amenity/karaoke_box":{"icon":"maki-karaoke","fields":["name","operator","address","building_area_yes","opening_hours","website"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","level","min_age","opening_hours/covid19","payment_multi","phone","ref/vatin","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"karaoke_box"}},"amenity/kindergarten":{"icon":"temaki-school","fields":["name","operator","operator/type","address","phone","preschool"],"moreFields":["capacity","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","max_age","min_age","not/name","opening_hours","opening_hours/covid19","payment_multi","wheelchair"],"geometry":["area","point"],"tags":{"amenity":"kindergarten"}},"amenity/kneipp_water_cure":{"icon":"maki-hospital","fields":["kneipp_water_cure_multi","opening_hours","fee"],"moreFields":["opening_hours/covid19"],"geometry":["point","area"],"tags":{"amenity":"kneipp_water_cure"},"reference":{"key":"amenity","value":"kneipp_water_cure"}},"amenity/language_school":{"icon":"temaki-school","fields":["name","operator","operator/type","address","building_area_yes","opening_hours","language_multi"],"moreFields":["email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"language_school"}},"amenity/lavoir":{"icon":"temaki-detergent_bottle","fields":["name","operator","operator/type","address","access_simple","building_area"],"moreFields":["gnis/feature_id-US","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"lavoir"}},"amenity/letter_box":{"icon":"temaki-letter_box","fields":["post","access_simple","height"],"moreFields":["covered","indoor","level","lit","lockable","manufacturer","material","operator","wheelchair"],"geometry":["point","vertex"],"tags":{"amenity":"letter_box"}},"amenity/library":{"icon":"maki-library","fields":["name","operator","operator/type","building_area_yes","opening_hours","address","ref/isil","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["access_simple","air_conditioning","baby_feeding","email","fax","gnis/feature_id-US","level","not/name","opening_hours/covid19","payment_multi","phone","polling_station","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"library"}},"amenity/loading_dock":{"icon":"fas-truck-loading","fields":["ref","operator","access_simple","door","width","height"],"moreFields":["address","colour","level","lit","wheelchair"],"geometry":["vertex"],"tags":{"amenity":"loading_dock"}},"amenity/lounger":{"icon":"temaki-lounger","fields":["material","colour","access_simple","lit"],"moreFields":["height","inscription","level","manufacturer","operator"],"geometry":["point"],"tags":{"amenity":"lounger"}},"amenity/love_hotel":{"icon":"maki-heart","fields":["name","operator","address","building_area_yes","rooms","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["email","fax","gnis/feature_id-US","min_age","payment_multi","phone","ref/vatin","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"love_hotel"}},"amenity/marketplace":{"icon":"maki-shop","fields":["name","operator","address","building","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"marketplace"}},"amenity/monastery":{"icon":"maki-place-of-worship","fields":["name","religion","denomination","address"],"moreFields":["email","fax","gnis/feature_id-US","phone","wheelchair"],"geometry":["area","point"],"tags":{"amenity":"monastery"}},"amenity/money_transfer":{"icon":"temaki-money_hand","fields":["name","brand","address","building_area_yes","opening_hours","payment_multi","currency_multi"],"moreFields":["branch_brand","email","fax","level","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"money_transfer"}},"amenity/mortuary":{"icon":"maki-cemetery","fields":["name","operator","address"],"moreFields":["religion","denomination"],"geometry":["point","area"],"tags":{"amenity":"mortuary"}},"amenity/motorcycle_parking":{"icon":"fas-motorcycle","fields":["capacity_parking","operator","covered","access_simple"],"geometry":["point","vertex","area"],"tags":{"amenity":"motorcycle_parking"}},"amenity/motorcycle_rental":{"icon":"temaki-motorcycle_rental","fields":["name","operator","address","opening_hours","payment_multi"],"moreFields":["branch_brand","brand","email","fax","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"motorcycle_rental"}},"amenity/music_school":{"icon":"fas-music","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"music_school"}},"amenity/nightclub":{"icon":"fas-cocktail","fields":["name","operator","address","building_area_yes","opening_hours","min_age","smoking"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","level","payment_multi","opening_hours/covid19","phone","ref/FR/siret-FR","wheelchair","fee"],"geometry":["point","area"],"tags":{"amenity":"nightclub"}},"amenity/nightclub/lgbtq":{"icon":"fas-cocktail","geometry":["point","area"],"tags":{"amenity":"nightclub","lgbtq":"primary"}},"amenity/parcel_locker":{"icon":"temaki-vending_lockers","fields":["operator","parcel_pickup","parcel_dropoff","opening_hours","payment_multi","ref"],"moreFields":["brand","colour"],"geometry":["point","vertex","area"],"tags":{"amenity":"parcel_locker"},"reference":{"key":"amenity","value":"parcel_locker"}},"amenity/parking_entrance":{"icon":"maki-entrance-alt1","fields":["parking_entrance","ref","access_simple","address","level"],"geometry":["vertex"],"tags":{"amenity":"parking_entrance"}},"amenity/parking_space":{"icon":"temaki-parking_space","fields":["parking_space","capacity"],"geometry":["area","point","vertex"],"tags":{"amenity":"parking_space"},"matchScore":0.95},"amenity/parking_space/disabled":{"icon":"temaki-accessible_space","geometry":["area","point","vertex"],"tags":{"amenity":"parking_space","parking_space":"disabled"},"matchScore":0.95},"amenity/parking":{"icon":"temaki-car_parked","fields":["operator","operator/type","parking","capacity_parking","capacity/disabled_parking","access_simple","fee","payment_multi_fee","charge_fee","surface"],"moreFields":["address","covered","email","fax","maxstay","opening_hours","opening_hours/covid19","park_ride","phone","ref","supervised","wheelchair"],"geometry":["area","point","vertex"],"tags":{"amenity":"parking"}},"amenity/parking/multi-storey":{"icon":"temaki-car_structure","fields":["name","{amenity/parking}","building_area_yes"],"moreFields":["{amenity/parking}","height","building/levels"],"geometry":["point","area"],"tags":{"amenity":"parking","parking":"multi-storey"},"reference":{"key":"parking","value":"multi-storey"}},"amenity/parking/park_ride":{"icon":"temaki-sign_and_car","fields":["name","{amenity/parking}"],"geometry":["area","point","vertex"],"tags":{"amenity":"parking","park_ride":"yes"},"reference":{"key":"park_ride","value":"yes"},"matchScore":0.95},"amenity/parking/street-side":{"icon":"temaki-car_parked","fields":["{amenity/parking}","parking/orientation"],"geometry":["area","point","vertex"],"tags":{"amenity":"parking","parking":"street_side"},"addTags":{"amenity":"parking","parking":"street_side"},"reference":{"key":"parking","value":"street_side"}},"amenity/parking/underground":{"icon":"temaki-car_structure","fields":["{amenity/parking}","layer"],"geometry":["area","point","vertex"],"tags":{"amenity":"parking","parking":"underground"},"addTags":{"amenity":"parking","parking":"underground","layer":"-1"},"reference":{"key":"parking","value":"underground"}},"amenity/payment_centre":{"icon":"temaki-money_hand","fields":["name","brand","address","building_area_yes","opening_hours","payment_multi"],"moreFields":["branch_brand","currency_multi","email","fax","level","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"payment_centre"}},"amenity/payment_terminal":{"icon":"far-credit-card","fields":["name","brand","address","opening_hours","payment_multi"],"moreFields":["branch_brand","ref","covered","currency_multi","indoor","level","opening_hours/covid19","wheelchair"],"geometry":["point"],"tags":{"amenity":"payment_terminal"}},"amenity/pharmacy":{"icon":"maki-pharmacy","fields":["name","operator","address","building_area_yes","opening_hours","dispensing","drive_through"],"moreFields":["branch_brand","brand","email","fax","gnis/feature_id-US","level","opening_hours/covid19","ref/FR/siret-FR","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"pharmacy"},"addTags":{"amenity":"pharmacy","healthcare":"pharmacy"},"reference":{"key":"amenity","value":"pharmacy"}},"amenity/photo_booth":{"icon":"fas-person-booth","fields":["name","operator","payment_multi","wheelchair"],"moreFields":["branch_brand","brand","indoor","level"],"geometry":["point","area"],"tags":{"amenity":"photo_booth"}},"amenity/place_of_worship":{"icon":"maki-place-of-worship","fields":["name","religion","denomination","address","building_area_yes","service_times"],"moreFields":["air_conditioning","baby_feeding","email","fax","gnis/feature_id-US","internet_access","internet_access/ssid","level","opening_hours","opening_hours/covid19","phone","polling_station","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship"}},"amenity/place_of_worship/buddhist":{"icon":"maki-religious-buddhist","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"buddhist"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/christian":{"icon":"maki-religious-christian","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"christian"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/christian/jehovahs_witness":{"icon":"maki-place-of-worship","geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"christian","denomination":"jehovahs_witness"},"reference":{"key":"denomination","value":"jehovahs_witness"}},"amenity/place_of_worship/christian/la_luz_del_mundo":{"icon":"maki-place-of-worship","geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"christian","denomination":"la_luz_del_mundo"},"reference":{"key":"denomination","value":"la_luz_del_mundo"}},"amenity/place_of_worship/christian/quaker":{"icon":"temaki-quakerism","geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"christian","denomination":"quaker"},"reference":{"key":"denomination","value":"quaker"}},"amenity/place_of_worship/hindu":{"icon":"temaki-hinduism","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"hindu"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/jewish":{"icon":"maki-religious-jewish","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"jewish"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/muslim":{"icon":"maki-religious-muslim","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"muslim"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/shinto":{"icon":"temaki-shinto","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"shinto"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/sikh":{"icon":"temaki-sikhism","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"sikh"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/taoist":{"icon":"temaki-taoism","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"taoist"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/planetarium":{"icon":"maki-globe","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["air_conditioning","charge_fee","email","fax","fee","gnis/feature_id-US","opening_hours/covid19","payment_multi_fee","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"planetarium"}},"amenity/police":{"icon":"temaki-police_officer","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","phone","polling_station","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"police"}},"amenity/polling_station":{"icon":"fas-vote-yea","fields":["name","ref","operator","address","opening_hours","building_area_yes"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"polling_station"},"addTags":{"amenity":"polling_station","polling_station":"yes"}},"amenity/post_box":{"icon":"temaki-post_box","fields":["operator","collection_times","drive_through","ref"],"moreFields":["access_simple","branch_brand","brand","colour","covered","gnis/feature_id-US","height","indoor","level","manufacturer","material","support","wheelchair"],"geometry":["point","vertex"],"tags":{"amenity":"post_box"}},"amenity/post_depot":{"icon":"fas-mail-bulk","fields":["name","operator","address","building_area","phone"],"moreFields":["email","fax","gnis/feature_id-US","opening_hours","opening_hours/covid19","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"post_depot"}},"amenity/post_office":{"icon":"maki-post","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["branch_brand","brand","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","ref/FR/siret-FR","payment_multi","phone","polling_station","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"post_office"}},"amenity/prep_school":{"icon":"temaki-school","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"prep_school"}},"amenity/prison":{"icon":"maki-prison","fields":["name","operator","operator/type","address"],"moreFields":["email","fax","gnis/feature_id-US","phone","wheelchair"],"geometry":["area","point"],"tags":{"amenity":"prison"}},"amenity/pub":{"icon":"maki-beer","fields":["name","address","building_area_yes","opening_hours","smoking","brewery"],"moreFields":["air_conditioning","cuisine","diet_multi","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","microbrewery","min_age","opening_hours/covid19","outdoor_seating","payment_multi","phone","ref/vatin","ref/FR/siret-FR","real_fire-GB-IE","sport_pub","toilets","toilets/wheelchair","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"pub"}},"amenity/pub/irish":{"icon":"maki-beer","geometry":["point","area"],"tags":{"amenity":"pub","theme":"irish"},"reference":{"key":"theme","value":"irish"},"locationSet":{"exclude":["ie"]}},"amenity/pub/lgbtq":{"icon":"maki-beer","geometry":["point","area"],"tags":{"amenity":"pub","lgbtq":"primary"}},"amenity/pub/microbrewery":{"icon":"maki-beer","geometry":["point","area"],"tags":{"amenity":"pub","microbrewery":"yes"},"reference":{"key":"microbrewery"}},"amenity/public_bath":{"icon":"maki-water","fields":["name","bath/type","bath/open_air","bath/sand_bath","address","building_area","fee","charge_fee"],"moreFields":["email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","opening_hours","opening_hours/covid19","payment_multi_fee","ref/FR/siret-FR","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"public_bath"}},"amenity/public_bookcase":{"icon":"maki-library","fields":["name","public_bookcase/type","operator","capacity","lit"],"moreFields":["access_simple","address","branch_brand","brand","covered","email","indoor","level","location","opening_hours","opening_hours/covid19","phone","ref","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"public_bookcase"}},"amenity/ranger_station":{"icon":"maki-ranger-station","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"ranger_station"}},"amenity/recycling_centre":{"icon":"maki-recycling","fields":["name","operator","operator/type","address","building","opening_hours","recycling_accepts"],"moreFields":["charge_fee","email","fax","fee","opening_hours/covid19","payment_multi_fee","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"recycling","recycling_type":"centre"},"reference":{"key":"recycling_type","value":"*"}},"amenity/recycling_container":{"icon":"maki-recycling","fields":["operator","recycling_accepts","opening_hours","collection_times"],"moreFields":["colour","covered","indoor","level","manufacturer","material","opening_hours/covid19","ref"],"geometry":["point","area"],"tags":{"amenity":"recycling","recycling_type":"container"},"reference":{"key":"amenity","value":"recycling"}},"amenity/recycling/container/electrical_items":{"icon":"maki-recycling","fields":["{amenity/recycling_container}"],"moreFields":["{amenity/recycling_container}"],"geometry":["point","area"],"tags":{"amenity":"recycling","recycling_type":"container","recycling:electrical_items":"yes"},"reference":{"key":"recycling:electrical_items","value":"yes"}},"amenity/recycling/container/green_waste":{"icon":"maki-recycling","fields":["{amenity/recycling_container}"],"moreFields":["{amenity/recycling_container}"],"geometry":["point","area"],"tags":{"amenity":"recycling","recycling_type":"container","recycling:green_waste":"yes"},"reference":{"key":"recycling:green_waste","value":"yes"}},"amenity/refugee_site":{"icon":"temaki-tents","fields":["name","operator","operator/type","informal","start_date","capacity","population","population/date","source/population"],"moreFields":["internet_access","internet_access/fee","internet_access/ssid"],"geometry":["point","area"],"tags":{"amenity":"refugee_site"}},"amenity/research_institute":{"icon":"fas-flask","fields":["name","operator","operator/type","address","website","internet_access","internet_access/fee"],"moreFields":["email","fax","gnis/feature_id-US","internet_access/ssid","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"research_institute"}},"amenity/restaurant":{"icon":"maki-restaurant","fields":["name","cuisine","diet_multi","address","building_area_yes","opening_hours","phone","website"],"moreFields":["air_conditioning","bar","branch_brand","brand","brewery","capacity","delivery","email","fax","gnis/feature_id-US","highchair","internet_access","internet_access/fee","internet_access/ssid","level","microbrewery","min_age","not/name","opening_hours/covid19","outdoor_seating","payment_multi","ref/vatin","ref/FR/siret-FR","reservation","smoking","sport_pub","stars","takeaway","toilets","toilets/wheelchair","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"restaurant"}},"amenity/restaurant/american":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"american"},"reference":{"key":"cuisine","value":"american"}},"amenity/restaurant/asian":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"asian"},"reference":{"key":"cuisine","value":"asian"}},"amenity/restaurant/barbeque":{"icon":"maki-restaurant-bbq","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"barbeque"},"reference":{"key":"cuisine","value":"barbeque"}},"amenity/restaurant/chinese":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"chinese"},"reference":{"key":"cuisine","value":"chinese"}},"amenity/restaurant/french":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"french"},"reference":{"key":"cuisine","value":"french"}},"amenity/restaurant/german":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"german"},"reference":{"key":"cuisine","value":"german"}},"amenity/restaurant/greek":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"greek"},"reference":{"key":"cuisine","value":"greek"}},"amenity/restaurant/indian":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"indian"},"reference":{"key":"cuisine","value":"indian"}},"amenity/restaurant/italian":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"italian"},"reference":{"key":"cuisine","value":"italian"}},"amenity/restaurant/japanese":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"japanese"},"reference":{"key":"cuisine","value":"japanese"}},"amenity/restaurant/mexican":{"icon":"fas-pepper-hot","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"mexican"},"reference":{"key":"cuisine","value":"mexican"}},"amenity/restaurant/noodle":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"noodle"},"reference":{"key":"cuisine","value":"noodle"}},"amenity/restaurant/pizza":{"icon":"maki-restaurant-pizza","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"pizza"},"reference":{"key":"cuisine","value":"pizza"}},"amenity/restaurant/seafood":{"icon":"maki-restaurant-seafood","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"seafood"},"reference":{"key":"cuisine","value":"seafood"}},"amenity/restaurant/steakhouse":{"icon":"maki-slaughterhouse","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"steak_house"},"reference":{"key":"cuisine","value":"steak_house"}},"amenity/restaurant/sushi":{"icon":"temaki-temaki","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"sushi"},"reference":{"key":"cuisine","value":"sushi"}},"amenity/restaurant/thai":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"thai"},"reference":{"key":"cuisine","value":"thai"}},"amenity/restaurant/turkish":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"turkish"},"reference":{"key":"cuisine","value":"turkish"}},"amenity/restaurant/vietnamese":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"vietnamese"},"reference":{"key":"cuisine","value":"vietnamese"}},"amenity/sanitary_dump_station":{"icon":"temaki-camper_trailer_dump","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","water_point"],"moreFields":["opening_hours","opening_hours/covid19"],"geometry":["point","vertex","area"],"tags":{"amenity":"sanitary_dump_station"}},"amenity/school":{"icon":"temaki-school","fields":["name","operator","operator/type","address","grades","religion","denomination","website","building_area"],"moreFields":["capacity","charge_fee","email","fax","fee","gnis/feature_id-US","internet_access","internet_access/ssid","level","phone","polling_station","wheelchair"],"geometry":["area","point"],"tags":{"amenity":"school"}},"amenity/shelter":{"icon":"maki-shelter","fields":["name","operator","shelter_type","building_area_yes","bench","bin"],"moreFields":["gnis/feature_id-US","lit","lockable","wheelchair"],"geometry":["point","vertex","area"],"tags":{"amenity":"shelter"}},"amenity/shelter/gazebo":{"icon":"maki-shelter","fields":["name","building_area_yes","bench","lit"],"geometry":["point","area"],"tags":{"amenity":"shelter","shelter_type":"gazebo"}},"amenity/shelter/lean_to":{"icon":"temaki-sleep_shelter","fields":["name","operator","building_area_yes"],"geometry":["point","area"],"tags":{"amenity":"shelter","shelter_type":"lean_to"}},"amenity/shelter/picnic_shelter":{"icon":"temaki-picnic_shelter","fields":["name","operator","building_area_yes","lit","bin"],"geometry":["point","area"],"tags":{"amenity":"shelter","shelter_type":"picnic_shelter"},"reference":{"key":"shelter_type","value":"picnic_shelter"}},"amenity/shelter/public_transport":{"icon":"temaki-transit_shelter","fields":["name","operator","building_area_yes","bench","lit","bin"],"geometry":["point","area"],"tags":{"amenity":"shelter","shelter_type":"public_transport"},"reference":{"key":"shelter_type","value":"public_transport"}},"amenity/shower":{"icon":"temaki-shower","fields":["opening_hours","access_simple","fee","payment_multi_fee","charge_fee","supervised","building_area_yes","hot_water","wheelchair"],"moreFields":["address","gender","level","opening_hours/covid19","operator"],"geometry":["point","vertex","area"],"tags":{"amenity":"shower"}},"amenity/smoking_area":{"icon":"fas-smoking","fields":["name","shelter","bin","bench","opening_hours"],"moreFields":["covered","level","lit","opening_hours/covid19","wheelchair"],"geometry":["point","vertex","area"],"tags":{"amenity":"smoking_area"}},"amenity/social_centre":{"icon":"fas-handshake","fields":["name","brand","operator","operator/type","address","building_area_yes"],"moreFields":["air_conditioning","baby_feeding","branch_brand","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","phone","polling_station","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"social_centre"}},"amenity/social_facility":{"icon":"temaki-social_facility","fields":["name","operator","operator/type","address","social_facility","social_facility_for"],"moreFields":["baby_feeding","building_area","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"social_facility"}},"amenity/social_facility/ambulatory_care":{"icon":"maki-wheelchair","geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"ambulatory_care"},"reference":{"key":"social_facility","value":"ambulatory_care"}},"amenity/social_facility/food_bank":{"icon":"temaki-social_facility","geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"food_bank"},"reference":{"key":"social_facility","value":"food_bank"}},"amenity/social_facility/group_home":{"icon":"maki-wheelchair","fields":["{amenity/social_facility}","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"group_home","social_facility:for":"senior"},"reference":{"key":"social_facility","value":"group_home"}},"amenity/social_facility/homeless_shelter":{"icon":"temaki-social_facility","geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"shelter","social_facility:for":"homeless"},"reference":{"key":"social_facility","value":"shelter"}},"amenity/social_facility/nursing_home":{"icon":"maki-wheelchair","fields":["{amenity/social_facility}","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"nursing_home","social_facility:for":"senior"},"reference":{"key":"social_facility","value":"nursing_home"}},"amenity/studio":{"icon":"fas-microphone","fields":["name","studio","address","building_area_yes","website"],"moreFields":["email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"studio"}},"amenity/studio/audio":{"icon":"fas-microphone","geometry":["point","area"],"tags":{"amenity":"studio","studio":"audio"},"reference":{"key":"studio","value":"audio"}},"amenity/studio/radio":{"icon":"fas-microphone","geometry":["point","area"],"tags":{"amenity":"studio","studio":"radio"},"reference":{"key":"studio","value":"radio"}},"amenity/studio/television":{"icon":"fas-video","geometry":["point","area"],"tags":{"amenity":"studio","studio":"television"},"reference":{"key":"studio","value":"television"}},"amenity/studio/video":{"icon":"fas-video","geometry":["point","area"],"tags":{"amenity":"studio","studio":"video"},"reference":{"key":"studio","value":"video"}},"amenity/taxi":{"icon":"fas-taxi","fields":["name","operator","capacity","address"],"moreFields":["access_simple","branch_brand","brand","opening_hours","opening_hours/covid19","wheelchair"],"geometry":["point","vertex","area"],"tags":{"amenity":"taxi"}},"amenity/telephone":{"icon":"fas-phone-alt","fields":["operator","phone","payment_multi","covered"],"moreFields":["booth","fee","indoor","internet_access","internet_access/fee","internet_access/ssid","level","lit","model","ref","sms","video_calls","wheelchair"],"geometry":["point","vertex"],"tags":{"amenity":"telephone"}},"amenity/theatre":{"icon":"maki-theatre","fields":["name","operator","address","building_area_yes","website"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","min_age","payment_multi","ref/FR/siret-FR","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"theatre"}},"amenity/theatre/type/amphi":{"icon":"maki-theatre","fields":["name","operator","address","lit"],"geometry":["point","area"],"tags":{"amenity":"theatre","theatre:type":"amphi"}},"amenity/ticket_validator":{"icon":"temaki-vending_machine","fields":["ref","operator"],"moreFields":["colour","covered","indoor","level","model","support"],"geometry":["point"],"tags":{"amenity":"ticket_validator"}},"amenity/toilets":{"icon":"maki-toilet","fields":["toilets/disposal","access_simple","gender","changing_table","wheelchair","building_area_yes"],"moreFields":["charge_fee","fee","level","opening_hours","opening_hours/covid19","operator","payment_multi_fee","portable","toilets/handwashing","toilets/position"],"geometry":["point","vertex","area"],"tags":{"amenity":"toilets"}},"amenity/toilets/disposal/flush":{"icon":"fas-toilet","fields":["toilets/disposal","{amenity/toilets}"],"moreFields":["{amenity/toilets}"],"geometry":["point","vertex","area"],"tags":{"amenity":"toilets","toilets:disposal":"flush"},"reference":{"key":"toilets:disposal","value":"flush"}},"amenity/toilets/disposal/pitlatrine":{"icon":"temaki-latrine","fields":["toilets/disposal","{amenity/toilets}","toilets/handwashing"],"moreFields":["{amenity/toilets}"],"geometry":["point","vertex","area"],"tags":{"amenity":"toilets","toilets:disposal":"pitlatrine"},"reference":{"key":"toilets:disposal","value":"pitlatrine"}},"amenity/toilets/portable":{"icon":"temaki-latrine","fields":["toilets/disposal","{amenity/toilets}","toilets/handwashing"],"moreFields":["{amenity/toilets}"],"geometry":["point","area","vertex"],"tags":{"amenity":"toilets","portable":"yes"}},"amenity/townhall":{"icon":"temaki-town_hall","fields":["name","operator","townhall/type","address","building_area_yes"],"moreFields":["baby_feeding","email","fax","gnis/feature_id-US","phone","polling_station","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"townhall"}},"amenity/townhall/city":{"icon":"temaki-capitol","geometry":["point","area"],"tags":{"amenity":"townhall","townhall:type":"city"},"reference":{"key":"townhall:type","value":"city"}},"amenity/toy_library":{"icon":"fas-chess-knight","fields":["operator","address","building_area_yes","opening_hours"],"moreFields":["level","opening_hours/covid19","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"toy_library"}},"amenity/trolley_bay":{"icon":"fas-shopping-cart","fields":["capacity","deposit/trolley","payment_multi_fee"],"moreFields":["brand","covered","fee","indoor","opening_hours","operator"],"geometry":["point","area"],"tags":{"amenity":"trolley_bay"}},"amenity/university":{"icon":"maki-college","fields":["{amenity/college}"],"moreFields":["{amenity/college}"],"geometry":["area","point"],"tags":{"amenity":"university"}},"amenity/vacuum_cleaner":{"icon":"temaki-vacuum_station","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","covered","lit"],"moreFields":["branch_brand","brand","manufacturer","opening_hours","ref/FR/siret-FR","ref"],"geometry":["point"],"tags":{"amenity":"vacuum_cleaner"}},"amenity/vehicle_inspection":{"icon":"maki-car","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","opening_hours/covid19","payment_multi","ref/FR/siret-FR","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"vehicle_inspection"}},"amenity/vending_machine":{"icon":"temaki-vending_machine","fields":["vending","ref","operator","payment_multi","currency_multi"],"moreFields":["ref","blind","branch_brand","brand","covered","height","indoor","level","manufacturer"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine"},"matchScore":0.9},"amenity/vending_machine/bicycle_tube":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"bicycle_tube"},"reference":{"key":"vending","value":"bicycle_tube"}},"amenity/vending_machine/bottle_return":{"icon":"temaki-vending_machine","fields":["vending","operator"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"bottle_return"},"reference":{"key":"vending","value":"bottle_return"}},"amenity/vending_machine/bread":{"icon":"temaki-vending_bread","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"bread"},"reference":{"key":"vending","value":"bread"}},"amenity/vending_machine/cigarettes":{"icon":"temaki-vending_cigarettes","moreFields":["{amenity/vending_machine}","min_age"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"cigarettes"},"reference":{"key":"vending","value":"cigarettes"}},"amenity/vending_machine/coffee":{"icon":"temaki-vending_hot_drink","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"coffee"},"reference":{"key":"vending","value":"coffee"}},"amenity/vending_machine/condoms":{"icon":"temaki-vending_love","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"condoms"},"reference":{"key":"vending","value":"condoms"}},"amenity/vending_machine/drinks":{"icon":"temaki-vending_cold_drink","fields":["vending","drink_multi","{amenity/vending_machine}"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"drinks"},"reference":{"key":"vending","value":"drinks"}},"amenity/vending_machine/eggs":{"icon":"temaki-vending_eggs","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"eggs"},"reference":{"key":"vending","value":"eggs"}},"amenity/vending_machine/electronics":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"electronics"},"reference":{"key":"vending","value":"electronics"}},"amenity/vending_machine/elongated_coin":{"icon":"temaki-vending_flat_coin","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"elongated_coin"},"reference":{"key":"vending","value":"elongated_coin"}},"amenity/vending_machine/excrement_bags":{"icon":"temaki-vending_pet_waste","fields":["bin","fee","operator"],"moreFields":["ref","payment_multi","currency_multi","blind","brand","covered","height","indoor","level","manufacturer"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"excrement_bags"},"reference":{"key":"vending","value":"excrement_bags"}},"amenity/vending_machine/feminine_hygiene":{"icon":"temaki-vending_venus","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"feminine_hygiene"},"reference":{"key":"vending","value":"feminine_hygiene"}},"amenity/vending_machine/food":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"food"},"reference":{"key":"vending","value":"food"}},"amenity/vending_machine/fuel":{"icon":"maki-fuel","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"fuel"},"reference":{"key":"vending","value":"fuel"},"matchScore":0.5},"amenity/vending_machine/ice_cream":{"icon":"temaki-vending_ice_cream","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"ice_cream"},"reference":{"key":"vending","value":"ice_cream"}},"amenity/vending_machine/ice_cubes":{"icon":"temaki-vending_ice","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"ice_cubes"},"reference":{"key":"vending","value":"ice_cubes"}},"amenity/vending_machine/newspapers":{"icon":"temaki-vending_newspaper","fields":["vending","ref","operator","fee","payment_multi_fee","charge_fee","currency_multi"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"newspapers"},"reference":{"key":"vending","value":"newspapers"}},"amenity/vending_machine/parking_tickets":{"icon":"temaki-vending_tickets","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"parking_tickets"},"reference":{"key":"vending","value":"parking_tickets"},"matchScore":0.94},"amenity/vending_machine/pizza":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"pizza"},"reference":{"key":"vending","value":"pizza"}},"amenity/vending_machine/public_transport_tickets":{"icon":"temaki-vending_tickets","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"public_transport_tickets"},"reference":{"key":"vending","value":"public_transport_tickets"}},"amenity/vending_machine/stamps":{"icon":"temaki-vending_stamps","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"stamps"},"reference":{"key":"vending","value":"stamps"}},"amenity/vending_machine/sweets":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"sweets"},"reference":{"key":"vending","value":"sweets"}},"amenity/veterinary":{"icon":"temaki-veterinary_care","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["charge_fee","email","fax","fee","gnis/feature_id-US","level","opening_hours/covid19","payment_multi_fee","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"veterinary"}},"amenity/waste_basket":{"icon":"maki-waste-basket","fields":["operator","waste","collection_times","material","colour"],"moreFields":["covered","indoor","manufacturer"],"geometry":["point","vertex"],"tags":{"amenity":"waste_basket"}},"amenity/waste_disposal":{"icon":"fas-dumpster","fields":["operator","waste","collection_times","access_simple"],"moreFields":["branch_brand","brand","colour","height","manufacturer","material"],"geometry":["point","vertex","area"],"tags":{"amenity":"waste_disposal"}},"amenity/waste_transfer_station":{"icon":"fas-trash-restore","fields":["name","operator","operator/type","waste","address","opening_hours","fee","payment_multi_fee","charge_fee"],"moreFields":["email","fax","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"waste_transfer_station"}},"amenity/waste/dog_excrement":{"icon":"maki-waste-basket","fields":["collection_times"],"geometry":["point","vertex","area"],"tags":{"amenity":"waste_basket","waste":"dog_excrement"},"reference":{"key":"waste","value":"dog_excrement"}},"amenity/water_point":{"icon":"maki-drinking-water","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","opening_hours"],"moreFields":["covered","drinking_water","lit","opening_hours/covid19","ref"],"geometry":["point","vertex","area"],"tags":{"amenity":"water_point"}},"amenity/watering_place":{"icon":"maki-drinking-water","fields":["operator","fee","payment_multi_fee","charge_fee","opening_hours"],"moreFields":["opening_hours/covid19"],"geometry":["point","vertex","area"],"tags":{"amenity":"watering_place"}},"amenity/weighbridge":{"icon":"fas-weight","fields":["ref","operator","access_simple","maxweight"],"moreFields":["address","colour","lit","manufacturer","material","wheelchair"],"geometry":["point","vertex","line"],"tags":{"amenity":"weighbridge"}},"area":{"fields":["name"],"geometry":["area"],"tags":{"area":"yes"},"matchScore":0.1},"area/footway":{"fields":["surface"],"geometry":["area"],"tags":{"area:highway":"footway"}},"area/highway":{"fields":["area/highway","surface"],"geometry":["area"],"tags":{"area:highway":"*"}},"attraction/amusement_ride":{"icon":"maki-amusement-park","moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"amusement_ride"}},"attraction/animal":{"icon":"maki-zoo","fields":["name","operator","species/wikidata"],"geometry":["point","area"],"tags":{"attraction":"animal"}},"attraction/big_wheel":{"icon":"maki-amusement-park","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point"],"tags":{"attraction":"big_wheel"}},"attraction/bumper_car":{"icon":"fas-car-crash","moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"bumper_car"}},"attraction/bungee_jumping":{"icon":"maki-pitch","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"bungee_jumping"}},"attraction/carousel":{"icon":"temaki-amusement_park","fields":["{attraction}","building_area_yes"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"carousel"}},"attraction/dark_ride":{"icon":"maki-rail-metro","fields":["{attraction}","building_area_yes"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","line","area"],"tags":{"attraction":"dark_ride"}},"attraction/drop_tower":{"icon":"temaki-tower","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"drop_tower"}},"attraction/kiddie_ride":{"icon":"temaki-amusement_park","fields":["{attraction}","fee","payment_multi_fee","charge_fee"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point"],"tags":{"attraction":"kiddie_ride"}},"attraction/log_flume":{"icon":"maki-ferry","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"log_flume"}},"attraction/maze":{"icon":"temaki-maze","moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"maze"}},"attraction/pirate_ship":{"icon":"maki-danger","moreFields":["{attraction}","max_age","min_age"],"geometry":["point"],"tags":{"attraction":"pirate_ship"}},"attraction/river_rafting":{"icon":"maki-ferry","moreFields":["{attraction}","max_age","min_age"],"geometry":["point","line"],"tags":{"attraction":"river_rafting"}},"attraction/roller_coaster":{"icon":"temaki-roller_coaster","moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"roller_coaster"}},"attraction/summer_toboggan":{"icon":"temaki-sledding","moreFields":["{attraction}","max_age","min_age"],"geometry":["line"],"tags":{"attraction":"summer_toboggan"}},"attraction/swing_carousel":{"icon":"temaki-tower","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"swing_carousel"}},"attraction/train":{"icon":"temaki-train_kids","fields":["{attraction}","fee","charge_fee"],"geometry":["point","line"],"tags":{"attraction":"train"}},"attraction/water_slide":{"icon":"temaki-slide","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","line"],"tags":{"attraction":"water_slide"}},"barrier":{"icon":"maki-roadblock","geometry":["point","vertex","line","area"],"tags":{"barrier":"*"},"fields":["barrier"],"moreFields":["level"],"matchScore":0.4},"barrier/ditch":{"icon":"temaki-trench","geometry":["line","area"],"tags":{"barrier":"ditch"},"matchScore":0.25},"barrier/entrance":{"icon":"maki-entrance-alt1","geometry":["vertex"],"tags":{"barrier":"entrance"},"searchable":false},"barrier/handrail":{"icon":"temaki-railing","geometry":["line"],"tags":{"barrier":"handrail"},"searchable":false},"barrier/log":{"icon":"maki-roadblock","fields":["access"],"geometry":["vertex","line"],"tags":{"barrier":"log"},"searchable":false},"barrier/planter":{"icon":"maki-garden","fields":["access","material"],"geometry":["vertex"],"tags":{"barrier":"planter","man_made":"planter"},"searchable":false},"barrier/yes":{"icon":"maki-roadblock","geometry":["point","vertex","line","area"],"tags":{"barrier":"yes"},"fields":["barrier"],"searchable":false,"matchScore":0.5},"barrier/block":{"icon":"fas-cube","fields":["access","material"],"geometry":["point","vertex"],"tags":{"barrier":"block"}},"barrier/bollard_line":{"icon":"temaki-bollard_row","fields":["access","bollard","height","material","colour"],"geometry":["line"],"tags":{"barrier":"bollard"}},"barrier/bollard":{"icon":"temaki-bollard","fields":["access","bollard","height","width","material","colour"],"geometry":["point","vertex"],"tags":{"barrier":"bollard"}},"barrier/border_control":{"icon":"temaki-passport_checkpoint","fields":["access","building_area_yes"],"moreFields":["address","email","fax","phone"],"geometry":["vertex","area"],"tags":{"barrier":"border_control"}},"barrier/bump_gate":{"icon":"maki-roadblock","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"bump_gate"}},"barrier/bus_trap":{"icon":"maki-roadblock","fields":["access"],"moreFields":["maxwidth"],"geometry":["vertex"],"tags":{"barrier":"bus_trap"}},"barrier/cable_barrier":{"icon":"maki-roadblock","fields":["height","material"],"geometry":["line"],"tags":{"barrier":"cable_barrier"}},"barrier/cattle_grid":{"icon":"temaki-cattle_grid","geometry":["vertex"],"tags":{"barrier":"cattle_grid"}},"barrier/chain":{"icon":"temaki-rope_fence","fields":["access","locked"],"geometry":["vertex","line"],"tags":{"barrier":"chain"}},"barrier/city_wall":{"icon":"temaki-wall","fields":["height","material"],"moreFields":["{barrier}","two_sided"],"geometry":["line","area"],"tags":{"barrier":"city_wall"}},"barrier/cycle_barrier":{"icon":"temaki-cycle_barrier","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"cycle_barrier"}},"barrier/fence":{"icon":"maki-fence","fields":["fence_type","height","material"],"geometry":["line"],"tags":{"barrier":"fence"},"matchScore":0.25},"barrier/fence/railing":{"icon":"temaki-railing","geometry":["line"],"tags":{"barrier":"fence","fence_type":"railing"},"matchScore":0.5},"barrier/full-height_turnstile":{"icon":"maki-roadblock","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"full-height_turnstile"}},"barrier/gate":{"icon":"temaki-gate","fields":["access","locked","wheelchair","opening_hours","height","material"],"moreFields":["colour","manufacturer","opening_hours/covid19","operator","ref"],"geometry":["vertex","line"],"tags":{"barrier":"gate"}},"barrier/guard_rail":{"icon":"temaki-guard_rail","fields":["material"],"moreFields":["{barrier}","two_sided"],"geometry":["line"],"tags":{"barrier":"guard_rail"},"matchScore":0.75},"barrier/hampshire_gate":{"icon":"temaki-gate","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"hampshire_gate"}},"barrier/hedge":{"icon":"temaki-hedge","fields":["height"],"moreFields":["species/wikidata"],"geometry":["line","area"],"tags":{"barrier":"hedge"},"matchScore":0.25},"barrier/height_restrictor":{"icon":"temaki-height_restrictor","fields":["maxheight"],"moreFields":["direction_vertex"],"geometry":["vertex"],"tags":{"barrier":"height_restrictor"}},"barrier/jersey_barrier":{"icon":"maki-roadblock","fields":["height","material"],"moreFields":["access"],"geometry":["vertex","line"],"tags":{"barrier":"jersey_barrier"}},"barrier/kerb":{"icon":"temaki-kerb-raised","fields":["kerb","tactile_paving","wheelchair","two_sided"],"moreFields":["material"],"geometry":["vertex","line"],"tags":{"barrier":"kerb"},"matchScore":0.5},"barrier/kerb/flush":{"icon":"temaki-kerb-flush","fields":["kerb","{barrier/kerb}"],"geometry":["vertex","line"],"tags":{"kerb":"flush"},"addTags":{"barrier":"kerb","kerb":"flush"},"reference":{"key":"kerb","value":"flush"},"matchScore":0.55},"barrier/kerb/lowered":{"icon":"temaki-kerb-lowered","fields":["kerb","{barrier/kerb}","kerb/height"],"geometry":["vertex","line"],"tags":{"kerb":"lowered"},"addTags":{"barrier":"kerb","kerb":"lowered"},"reference":{"key":"kerb","value":"lowered"},"matchScore":0.55},"barrier/kerb/raised":{"icon":"temaki-kerb-raised","fields":["kerb","{barrier/kerb}","kerb/height"],"geometry":["vertex","line"],"tags":{"kerb":"raised"},"addTags":{"barrier":"kerb","kerb":"raised"},"reference":{"key":"kerb","value":"raised"},"matchScore":0.55},"barrier/kerb/rolled":{"icon":"temaki-kerb-rolled","fields":["kerb","{barrier/kerb}","kerb/height"],"geometry":["vertex","line"],"tags":{"kerb":"rolled"},"addTags":{"barrier":"kerb","kerb":"rolled"},"reference":{"key":"kerb","value":"rolled"},"matchScore":0.55},"barrier/kissing_gate":{"icon":"temaki-gate","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"kissing_gate"}},"barrier/lift_gate":{"icon":"temaki-lift_gate","fields":["access","locked","opening_hours"],"moreFields":["{barrier}","opening_hours/covid19"],"geometry":["vertex"],"tags":{"barrier":"lift_gate"}},"barrier/motorcycle_barrier":{"icon":"maki-roadblock","fields":["access"],"moreFields":["wheelchair"],"geometry":["vertex"],"tags":{"barrier":"motorcycle_barrier"}},"barrier/retaining_wall":{"icon":"temaki-wall","fields":["height","material"],"geometry":["line","area"],"tags":{"barrier":"retaining_wall"}},"barrier/rope":{"icon":"temaki-rope_fence","fields":["access"],"geometry":["vertex","line"],"tags":{"barrier":"rope"}},"barrier/sally_port":{"icon":"fas-dungeon","geometry":["vertex"],"tags":{"barrier":"sally_port"}},"barrier/spikes":{"icon":"temaki-spike_strip","fields":["direction_vertex","access","height","colour"],"geometry":["vertex"],"tags":{"barrier":"spikes"},"matchScore":0.5},"barrier/stile":{"icon":"temaki-stile_squeezer","fields":["access","stile","material"],"geometry":["vertex"],"tags":{"barrier":"stile"}},"barrier/swing_gate":{"icon":"temaki-gate","fields":["{barrier/gate}"],"moreFields":["{barrier/gate}"],"geometry":["vertex"],"tags":{"barrier":"swing_gate"}},"barrier/toll_booth":{"icon":"maki-toll","fields":["access","building_area_yes","payment_multi","currency_multi"],"moreFields":["address","email","fax","opening_hours","opening_hours/covid19","phone"],"geometry":["vertex","area"],"tags":{"barrier":"toll_booth"}},"barrier/turnstile":{"icon":"temaki-turnstile","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"turnstile"}},"barrier/wall":{"icon":"temaki-wall","fields":["wall","height","material"],"geometry":["line","area"],"tags":{"barrier":"wall"},"matchScore":0.25},"barrier/wall/noise_barrier":{"icon":"temaki-wall","geometry":["line","area"],"tags":{"barrier":"wall","wall":"noise_barrier"},"matchScore":0.27},"barrier/wicket_gate":{"icon":"temaki-gate","geometry":["vertex","line"],"fields":["access"],"moreFields":["entrance"],"tags":{"barrier":"wicket_gate"}},"boundary/administrative":{"fields":["name","admin_level"],"geometry":["line"],"tags":{"boundary":"administrative"},"matchScore":0.5},"bridge/support":{"icon":"fas-archway","fields":["bridge/support","height","layer","material"],"moreFields":["colour","seamark/type"],"geometry":["point","vertex","area"],"tags":{"bridge:support":"*"}},"bridge/support/pier":{"icon":"fas-archway","fields":["bridge/support","{bridge/support}"],"geometry":["point","vertex","area"],"tags":{"bridge:support":"pier"}},"building_part":{"icon":"maki-building","fields":["building/part","building/levels","height","building/material","roof/colour"],"moreFields":["layer"],"geometry":["area"],"tags":{"building:part":"*"},"matchScore":0.5},"building":{"icon":"maki-home","fields":["name","building","building/levels","height","address"],"moreFields":["architect","building/levels/underground","building/material","building/prefabricated","ele","gnis/feature_id-US","layer","not/name","operator","roof/colour","smoking","wheelchair"],"geometry":["area"],"tags":{"building":"*"},"matchScore":0.6},"building/bunker":{"icon":"temaki-bunker","geometry":["area"],"tags":{"building":"bunker"},"matchScore":0.5,"searchable":false},"building/entrance":{"icon":"maki-entrance-alt1","fields":[],"moreFields":[],"geometry":["vertex"],"tags":{"building":"entrance"},"searchable":false},"building/manufacture":{"icon":"maki-industry","geometry":["area"],"tags":{"building":"manufacture"},"matchScore":0.5,"searchable":false},"building/outbuilding":{"icon":"maki-building","geometry":["area"],"tags":{"building":"outbuilding"},"matchScore":0.5,"searchable":false},"building/train_station":{"icon":"maki-building","geometry":["point","vertex","area"],"tags":{"building":"train_station"},"matchScore":0.5,"searchable":false},"building/allotment_house":{"icon":"maki-building","geometry":["area"],"tags":{"building":"allotment_house"},"matchScore":0.5},"building/apartments":{"icon":"maki-building","fields":["{building}","building/flats"],"geometry":["area"],"tags":{"building":"apartments"},"matchScore":0.5},"building/barn":{"icon":"temaki-barn","geometry":["area"],"tags":{"building":"barn"},"matchScore":0.5},"building/boathouse":{"icon":"maki-harbor","geometry":["area"],"tags":{"building":"boathouse"},"matchScore":0.5},"building/bungalow":{"icon":"maki-home","geometry":["area"],"tags":{"building":"bungalow"},"matchScore":0.5},"building/cabin":{"icon":"temaki-cabin","geometry":["area"],"tags":{"building":"cabin"},"matchScore":0.5},"building/carport":{"icon":"temaki-carport","fields":["{building}","capacity"],"geometry":["area"],"tags":{"building":"carport"},"matchScore":0.5},"building/cathedral":{"icon":"fas-church","geometry":["area"],"tags":{"building":"cathedral"},"matchScore":0.5},"building/chapel":{"icon":"maki-place-of-worship","geometry":["area"],"tags":{"building":"chapel"},"matchScore":0.5},"building/church":{"icon":"fas-church","geometry":["area"],"tags":{"building":"church"},"matchScore":0.5},"building/civic":{"icon":"maki-building","fields":["{building}","smoking"],"moreFields":["{building}","polling_station"],"geometry":["area"],"tags":{"building":"civic"},"matchScore":0.5},"building/college":{"icon":"fas-school","moreFields":["{building}","polling_station"],"geometry":["area"],"tags":{"building":"college"},"matchScore":0.5},"building/commercial":{"icon":"maki-suitcase","fields":["{building}","smoking"],"moreFields":["{building}","phone"],"geometry":["area"],"tags":{"building":"commercial"},"matchScore":0.5},"building/construction":{"icon":"maki-building","fields":["name","construction","address","opening_date","check_date"],"geometry":["area"],"tags":{"building":"construction"},"matchScore":0.5},"building/cowshed":{"icon":"temaki-barn","geometry":["area"],"tags":{"building":"cowshed"},"matchScore":0.5},"building/detached":{"icon":"maki-home","geometry":["area"],"tags":{"building":"detached"},"matchScore":0.5},"building/dormitory":{"icon":"maki-building","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"dormitory"},"matchScore":0.5},"building/farm_auxiliary":{"icon":"maki-farm","geometry":["area"],"tags":{"building":"farm_auxiliary"},"matchScore":0.5},"building/farm":{"icon":"maki-farm","geometry":["area"],"tags":{"building":"farm"},"matchScore":0.5},"building/fire_station":{"icon":"fas-house-fire","geometry":["area"],"tags":{"building":"fire_station"},"matchScore":0.5},"building/garage":{"icon":"fas-warehouse","fields":["{building/garages}"],"moreFields":["{building/garages}"],"geometry":["area"],"tags":{"building":"garage"},"matchScore":0.5},"building/garages":{"icon":"fas-warehouse","fields":["capacity"],"moreFields":["building","building/levels","height","address","{building}"],"geometry":["area"],"tags":{"building":"garages"},"matchScore":0.5},"building/ger":{"icon":"temaki-hut","geometry":["area"],"tags":{"building":"ger"}},"building/grandstand":{"icon":"maki-building","geometry":["area"],"tags":{"building":"grandstand"},"matchScore":0.5},"building/greenhouse":{"icon":"maki-garden-centre","geometry":["area"],"tags":{"building":"greenhouse"},"matchScore":0.5},"building/hangar":{"icon":"temaki-hangar","fields":["name"],"geometry":["area"],"tags":{"building":"hangar"},"matchScore":0.5},"building/hospital":{"icon":"fas-hospital-alt","geometry":["area"],"tags":{"building":"hospital"},"matchScore":0.5},"building/hotel":{"icon":"fas-hotel","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"hotel"},"matchScore":0.5},"building/house":{"icon":"maki-home","geometry":["area"],"tags":{"building":"house"},"matchScore":0.5},"building/houseboat":{"icon":"temaki-houseboat","geometry":["area"],"tags":{"building":"houseboat"},"matchScore":0.5},"building/hut":{"icon":"temaki-hut","geometry":["area"],"tags":{"building":"hut"},"matchScore":0.5},"building/industrial":{"icon":"maki-industry","geometry":["area"],"tags":{"building":"industrial"},"matchScore":0.5},"building/kindergarten":{"icon":"fas-school","geometry":["area"],"tags":{"building":"kindergarten"},"matchScore":0.5},"building/mosque":{"icon":"fas-mosque","geometry":["area"],"tags":{"building":"mosque"},"matchScore":0.5},"building/office":{"icon":"maki-suitcase","fields":["{building}","smoking"],"moreFields":["{building}","phone"],"geometry":["area"],"tags":{"building":"office"},"matchScore":0.5},"building/pavilion":{"icon":"maki-building","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"pavilion"},"matchScore":0.5},"building/public":{"icon":"maki-building","fields":["{building}","smoking"],"moreFields":["{building}","polling_station"],"geometry":["area"],"tags":{"building":"public"},"matchScore":0.5},"building/residential":{"icon":"maki-residential-community","geometry":["area"],"tags":{"building":"residential"},"matchScore":0.5},"building/retail":{"icon":"maki-commercial","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"retail"},"matchScore":0.5},"building/roof":{"icon":"maki-shelter","fields":["{building}","layer"],"geometry":["area"],"tags":{"building":"roof"},"addTags":{"building":"roof","layer":"1"},"matchScore":0.5},"building/ruins":{"icon":"temaki-ruins","geometry":["area"],"tags":{"building":"ruins"},"matchScore":0.5},"building/school":{"icon":"fas-school","moreFields":["{building}","polling_station"],"geometry":["area"],"tags":{"building":"school"},"matchScore":0.5},"building/semidetached_house":{"icon":"maki-home","geometry":["area"],"tags":{"building":"semidetached_house"},"matchScore":0.5},"building/service":{"icon":"maki-building","geometry":["area"],"tags":{"building":"service"},"matchScore":0.5},"building/shed":{"icon":"fas-warehouse","fields":["{building}","lockable"],"geometry":["area"],"tags":{"building":"shed"},"matchScore":0.5},"building/stable":{"icon":"temaki-horse_shelter","geometry":["area"],"tags":{"building":"stable"},"matchScore":0.5},"building/stadium":{"icon":"maki-stadium","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"stadium"},"matchScore":0.5},"building/static_caravan":{"icon":"temaki-manufactured_home","geometry":["area"],"tags":{"building":"static_caravan"},"matchScore":0.5},"building/sty":{"icon":"temaki-barn","geometry":["area"],"tags":{"building":"sty"},"matchScore":0.5},"building/synagogue":{"icon":"fas-synagogue","geometry":["area"],"tags":{"building":"synagogue"},"matchScore":0.5},"building/temple":{"icon":"maki-place-of-worship","geometry":["area"],"tags":{"building":"temple"},"matchScore":0.5},"building/terrace":{"icon":"temaki-row_houses","geometry":["area"],"tags":{"building":"terrace"},"matchScore":0.5},"building/transportation":{"icon":"maki-building","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"transportation"},"matchScore":0.5},"building/university":{"icon":"fas-school","moreFields":["{building}","polling_station"],"geometry":["area"],"tags":{"building":"university"},"matchScore":0.5},"building/warehouse":{"icon":"maki-warehouse","fields":["{building}","phone"],"geometry":["area"],"tags":{"building":"warehouse"},"matchScore":0.5},"cemetery/grave":{"icon":"maki-cemetery","fields":["name","inscription"],"moreFields":["description"],"geometry":["point","area"],"tags":{"cemetery":"grave"}},"cemetery/sector":{"icon":"maki-cemetery","fields":["name","ref_sector"],"geometry":["point","area"],"tags":{"cemetery":"sector"}},"club":{"icon":"fas-handshake","fields":["name","club","operator","address","building_area_yes","opening_hours","phone","website"],"moreFields":["access_simple","building/levels_building","email","fax","gnis/feature_id-US","height_building","internet_access","internet_access/fee","internet_access/ssid","level","max_age","min_age","opening_hours/covid19","phone","website","wheelchair"],"geometry":["point","area"],"tags":{"club":"*"}},"club/sport":{"icon":"maki-pitch","fields":["name","sport","{club}"],"moreFields":["{club}","access_simple"],"geometry":["point","area"],"tags":{"club":"sport"}},"craft":{"icon":"temaki-tools","fields":["name","craft","operator","address","building_area_yes","opening_hours","phone","website"],"moreFields":["air_conditioning","building/levels_building","ele","email","fax","gnis/feature_id-US","height_building","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","product","ref/vatin","wheelchair"],"geometry":["point","area"],"tags":{"craft":"*"}},"craft/locksmith":{"icon":"maki-marker-stroked","geometry":["point","area"],"tags":{"craft":"locksmith"},"reference":{"key":"shop","value":"locksmith"},"searchable":false},"craft/tailor":{"icon":"temaki-needle_and_spool","geometry":["point","area"],"tags":{"craft":"tailor"},"reference":{"key":"shop","value":"tailor"},"searchable":false},"craft/agricultural_engines":{"icon":"fas-tools","geometry":["point","area"],"tags":{"craft":"agricultural_engines"}},"craft/basket_maker":{"icon":"temaki-vase","geometry":["point","area"],"tags":{"craft":"basket_maker"}},"craft/beekeeper":{"icon":"maki-farm","geometry":["point","area"],"tags":{"craft":"beekeeper"}},"craft/blacksmith":{"icon":"temaki-anvil_and_hammer","geometry":["point","area"],"tags":{"craft":"blacksmith"}},"craft/boatbuilder":{"icon":"temaki-boat_repair","geometry":["point","area"],"tags":{"craft":"boatbuilder"},"matchScore":0.6},"craft/bookbinder":{"icon":"maki-library","geometry":["point","area"],"tags":{"craft":"bookbinder"}},"craft/brewery":{"icon":"temaki-storage_fermenter","fields":["{craft}","product"],"moreFields":["{craft}","min_age"],"geometry":["point","area"],"tags":{"craft":"brewery"}},"craft/carpenter":{"icon":"fas-hammer","geometry":["point","area"],"tags":{"craft":"carpenter"}},"craft/carpet_layer":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"carpet_layer"}},"craft/caterer":{"icon":"temaki-catering","fields":["name","cuisine","{craft}"],"geometry":["point","area"],"tags":{"craft":"caterer"}},"craft/chimney_sweeper":{"icon":"temaki-chimney","geometry":["point","area"],"tags":{"craft":"chimney_sweeper"}},"craft/cleaning":{"icon":"temaki-vacuum","geometry":["point","area"],"tags":{"craft":"cleaning"}},"craft/clockmaker":{"icon":"temaki-clock","geometry":["point","area"],"tags":{"craft":"clockmaker"}},"craft/confectionery":{"icon":"maki-confectionery","geometry":["point","area"],"tags":{"craft":"confectionery"}},"craft/distillery":{"icon":"temaki-storage_fermenter","fields":["{craft}","product"],"moreFields":["{craft}","min_age"],"geometry":["point","area"],"tags":{"craft":"distillery"}},"craft/dressmaker":{"icon":"temaki-dress","geometry":["point","area"],"tags":{"craft":"dressmaker"}},"craft/electrician":{"icon":"temaki-power","geometry":["point","area"],"tags":{"craft":"electrician"}},"craft/electronics_repair":{"icon":"fas-screwdriver","geometry":["point","area"],"tags":{"craft":"electronics_repair"}},"craft/floorer":{"icon":"temaki-brick_trowel","geometry":["point","area"],"tags":{"craft":"floorer"}},"craft/gardener":{"icon":"maki-garden-centre","geometry":["point","area"],"tags":{"craft":"gardener"}},"craft/glaziery":{"icon":"temaki-window","geometry":["point","area"],"tags":{"craft":"glaziery"}},"craft/handicraft":{"icon":"temaki-vase","geometry":["point","area"],"tags":{"craft":"handicraft"}},"craft/hvac":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"hvac"}},"craft/insulator":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"insulation"}},"craft/joiner":{"icon":"fas-hammer","geometry":["point","area"],"tags":{"craft":"joiner"}},"craft/key_cutter":{"icon":"fas-key","geometry":["point","area"],"tags":{"craft":"key_cutter"}},"craft/metal_construction":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"metal_construction"}},"craft/painter":{"icon":"fas-paint-roller","geometry":["point","area"],"tags":{"craft":"painter"}},"craft/parquet_layer":{"icon":"temaki-brick_trowel","geometry":["point","area"],"tags":{"craft":"parquet_layer"}},"craft/photographer":{"icon":"maki-attraction","geometry":["point","area"],"tags":{"craft":"photographer"}},"craft/photographic_laboratory":{"icon":"fas-film","geometry":["point","area"],"tags":{"craft":"photographic_laboratory"}},"craft/plasterer":{"icon":"temaki-brick_trowel","geometry":["point","area"],"tags":{"craft":"plasterer"}},"craft/plumber":{"icon":"temaki-plumber","geometry":["point","area"],"tags":{"craft":"plumber"}},"craft/pottery":{"icon":"temaki-vase","geometry":["point","area"],"tags":{"craft":"pottery"}},"craft/rigger":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"rigger"}},"craft/roofer":{"icon":"fas-hammer","geometry":["point","area"],"tags":{"craft":"roofer"}},"craft/saddler":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"saddler"}},"craft/sailmaker":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"sailmaker"}},"craft/sawmill":{"icon":"maki-logging","geometry":["point","area"],"tags":{"craft":"sawmill"}},"craft/scaffolder":{"icon":"temaki-scaffold","geometry":["point","area"],"tags":{"craft":"scaffolder"}},"craft/sculptor":{"icon":"maki-art-gallery","geometry":["point","area"],"tags":{"craft":"sculptor"}},"craft/shoemaker":{"icon":"temaki-hammer_shoe","geometry":["point","area"],"tags":{"craft":"shoemaker"}},"craft/signmaker":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"signmaker"}},"craft/stonemason":{"icon":"temaki-brick_trowel","geometry":["point","area"],"tags":{"craft":"stonemason"}},"craft/tiler":{"icon":"temaki-brick_trowel","geometry":["point","area"],"tags":{"craft":"tiler"}},"craft/tinsmith":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"tinsmith"}},"craft/upholsterer":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"upholsterer"}},"craft/watchmaker":{"icon":"maki-watch","geometry":["point","area"],"tags":{"craft":"watchmaker"}},"craft/window_construction":{"icon":"temaki-window","geometry":["point","area"],"tags":{"craft":"window_construction"}},"craft/winery":{"icon":"maki-alcohol-shop","moreFields":["{craft}","min_age"],"geometry":["point","area"],"tags":{"craft":"winery"}},"cycleway/asl":{"icon":"maki-bicycle","fields":["ref","direction_vertex","width"],"geometry":["vertex"],"tags":{"cycleway":"asl"}},"demolished/building":{"icon":"fas-house-damage","fields":["name","address"],"geometry":["area"],"tags":{"demolished:building":"*"},"searchable":false},"disc_golf/basket":{"icon":"temaki-disc_golf_basket","geometry":["point","vertex"],"tags":{"disc_golf":"basket"}},"disc_golf/hole":{"icon":"temaki-disc_golf_basket","fields":["name","ref_disc_golf_hole","par"],"geometry":["line"],"tags":{"disc_golf":"hole"}},"disc_golf/tee":{"icon":"temaki-disc_golf_basket","fields":["surface"],"geometry":["point","vertex"],"tags":{"disc_golf":"tee"}},"disused/amenity":{"fields":["disused/amenity"],"geometry":["point","vertex","area"],"tags":{"disused:amenity":"*"},"matchScore":0.05,"searchable":false},"disused/railway":{"icon":"temaki-rail_profile","fields":["disused/railway"],"geometry":["point","vertex","line","area"],"tags":{"disused:railway":"*"},"matchScore":0.05,"searchable":false},"disused/shop":{"icon":"fas-store-alt-slash","fields":["disused/shop"],"geometry":["point","area"],"tags":{"disused:shop":"*"},"matchScore":0.05,"searchable":false},"emergency/designated":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"designated"},"searchable":false,"matchScore":0.01},"emergency/destination":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"destination"},"searchable":false,"matchScore":0.01},"emergency/no":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"no"},"searchable":false,"matchScore":0.01},"emergency/official":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"official"},"searchable":false,"matchScore":0.01},"emergency/private":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"private"},"searchable":false,"matchScore":0.01},"emergency/yes":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"yes"},"searchable":false,"matchScore":0.01},"emergency/ambulance_station":{"icon":"fas-ambulance","fields":["name","operator","building_area_yes","address"],"moreFields":["email","fax","gnis/feature_id-US","phone","wheelchair"],"geometry":["point","area"],"tags":{"emergency":"ambulance_station"}},"emergency/assembly_point":{"icon":"fas-compress-arrows-alt","fields":["name","ref","operator"],"geometry":["point","vertex","area"],"tags":{"emergency":"assembly_point"}},"emergency/defibrillator":{"icon":"maki-defibrillator","fields":["indoor","ref","operator","defibrillator/location"],"moreFields":["level","opening_hours","access_simple"],"geometry":["point","vertex"],"tags":{"emergency":"defibrillator"}},"emergency/fire_alarm":{"icon":"fas-bell","fields":["indoor","ref","operator"],"moreFields":["level"],"geometry":["point","vertex"],"tags":{"emergency":"fire_alarm_box"}},"emergency/fire_extinguisher":{"icon":"fas-fire-extinguisher","fields":["indoor","ref","operator"],"moreFields":["level"],"geometry":["point","vertex"],"tags":{"emergency":"fire_extinguisher"}},"emergency/fire_hose":{"icon":"fas-tape","fields":["indoor","ref","operator"],"moreFields":["level"],"geometry":["point","vertex"],"tags":{"emergency":"fire_hose"}},"emergency/fire_hydrant":{"icon":"temaki-fire_hydrant","fields":["ref","fire_hydrant/type","colour","water_source","couplings"],"moreFields":["fire_hydrant/diameter","fire_hydrant/pressure","fire_hydrant/position","level","survey/date"],"geometry":["point","vertex"],"tags":{"emergency":"fire_hydrant"}},"emergency/first_aid_kit":{"icon":"fas-medkit","fields":["indoor","ref","operator"],"moreFields":["level"],"geometry":["point","vertex"],"tags":{"emergency":"first_aid_kit"}},"emergency/landing_site":{"icon":"maki-heliport","fields":["name","operator","surface"],"geometry":["point","area"],"tags":{"emergency":"landing_site"}},"emergency/life_ring":{"icon":"fas-life-ring","fields":["ref","operator"],"geometry":["point","vertex"],"tags":{"emergency":"life_ring"}},"emergency/lifeboat_station":{"icon":"temaki-boat_tour","fields":["name","operator","seamark/rescue_station/category","address","building_area_yes","phone","website"],"moreFields":["email","fax","gnis/feature_id-US","wheelchair"],"geometry":["point","area"],"tags":{"emergency":"lifeboat_station"},"addTags":{"emergency":"lifeboat_station","seamark:type":"rescue_station"}},"emergency/lifeguard":{"icon":"fas-life-ring","fields":["ref","operator","building_area_yes","opening_hours"],"moreFields":["opening_hours/covid19"],"geometry":["point","area"],"tags":{"emergency":"lifeguard"}},"emergency/mountain_rescue":{"icon":"temaki-mountain_cross","fields":["name","address","operator","building_area_yes","email","website"],"moreFields":["fax","gnis/feature_id-US","phone","wheelchair"],"geometry":["point","area"],"tags":{"emergency":"mountain_rescue"}},"emergency/phone":{"icon":"maki-emergency-phone","fields":["ref","operator","covered","indoor","booth"],"moreFields":["level"],"geometry":["point","vertex"],"tags":{"emergency":"phone"}},"emergency/siren":{"icon":"fas-volume-up","fields":["siren/purpose","siren/type","ref","operator"],"geometry":["point","vertex"],"tags":{"emergency":"siren"}},"emergency/water_reservoir_covered":{"icon":"maki-water","fields":["name","ref","operator","capacity_volume","layer"],"moreFields":["water_tank/volume"],"geometry":["point","vertex","area"],"tags":{"emergency":"water_tank","man_made":"reservoir_covered"}},"emergency/water_reservoir":{"icon":"maki-water","fields":["name","operator","water","covered"],"moreFields":["ref"],"geometry":["point","vertex","area"],"tags":{"emergency":"water_tank","natural":"water","water":"reservoir"}},"emergency/water_tank":{"icon":"temaki-storage_tank","fields":["name","ref","operator","water_tank/volume","drinking_water","building_area"],"moreFields":["covered","height","material"],"geometry":["point","vertex","area"],"tags":{"emergency":"water_tank","man_made":"storage_tank"},"addTags":{"emergency":"water_tank","man_made":"storage_tank","content":"water"}},"entrance":{"icon":"maki-entrance-alt1","fields":["ref","entrance","door","access_simple","wheelchair","level","address"],"geometry":["vertex"],"tags":{"entrance":"*"}},"entrance/emergency_ward_entrance":{"icon":"maki-hospital","fields":["ref","emergency_ward_entrance","address","level","opening_hours"],"geometry":["vertex"],"tags":{"emergency":"emergency_ward_entrance"},"addTags":{"emergency":"emergency_ward_entrance","entrance":"yes"}},"entrance/emergency":{"icon":"maki-entrance-alt1","fields":["ref","door","access_simple","wheelchair","level"],"geometry":["vertex"],"tags":{"entrance":"emergency"},"matchScore":0.8},"entrance/main":{"icon":"maki-entrance-alt1","geometry":["vertex"],"tags":{"entrance":"main"}},"ford":{"icon":"temaki-pedestrian","fields":["name","depth","access","seasonal"],"moreFields":["gnis/feature_id-US"],"geometry":["vertex"],"tags":{"ford":"yes"}},"golf/bunker":{"icon":"maki-golf","fields":["surface"],"geometry":["area"],"tags":{"golf":"bunker"}},"golf/cartpath":{"icon":"temaki-golf_cart","fields":["name","highway_cartpath","{golf/path}","maxspeed"],"geometry":["line"],"tags":{"golf":"cartpath"},"addTags":{"golf":"cartpath","highway":"path","golf_cart":"yes"}},"golf/clubhouse":{"icon":"maki-golf","fields":["name","operator","address","building_area_yes","access_simple"],"moreFields":["air_conditioning","fee","payment_multi_fee","charge_fee","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours","opening_hours/covid19","phone","wheelchair"],"geometry":["point","area"],"tags":{"golf":"clubhouse"}},"golf/driving_range":{"icon":"maki-golf","fields":["name","capacity","surface"],"geometry":["area"],"tags":{"golf":"driving_range"}},"golf/fairway":{"icon":"maki-golf","fields":["surface"],"geometry":["area"],"tags":{"golf":"fairway"}},"golf/green":{"icon":"temaki-golf_green","fields":["surface"],"geometry":["area"],"tags":{"golf":"green"}},"golf/hole":{"icon":"temaki-golf_green","fields":["ref_golf_hole","par","handicap"],"geometry":["line"],"tags":{"golf":"hole"}},"golf/lateral_water_hazard":{"icon":"maki-golf","fields":[],"geometry":["area"],"tags":{"golf":"lateral_water_hazard"},"addTags":{"golf":"lateral_water_hazard","natural":"water"}},"golf/path":{"icon":"maki-golf","fields":["name","surface","width","structure","access","incline"],"geometry":["line"],"tags":{"golf":"path"},"addTags":{"golf":"path","highway":"footway"}},"golf/rough":{"icon":"maki-golf","fields":["surface"],"geometry":["area"],"tags":{"golf":"rough"}},"golf/tee":{"icon":"maki-golf","fields":["tee","surface"],"geometry":["vertex","area"],"tags":{"golf":"tee"}},"golf/water_hazard":{"icon":"maki-golf","fields":[],"geometry":["area"],"tags":{"golf":"water_hazard"},"addTags":{"golf":"water_hazard","natural":"water"}},"healthcare":{"icon":"maki-hospital","fields":["name","healthcare","operator","healthcare/speciality","address","building_area","phone","website"],"moreFields":["branch_brand","brand","building/levels_building","email","fax","gnis/feature_id-US","height_building","level","opening_hours","opening_hours/covid19","payment_multi","wheelchair"],"geometry":["point","area"],"tags":{"healthcare":"*"},"matchScore":0.4},"healthcare/yes":{"icon":"maki-hospital","fields":["name","healthcare","{healthcare}"],"geometry":["point","area"],"tags":{"healthcare":"yes"},"searchable":false,"matchScore":0.5},"healthcare/alternative":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"alternative"}},"healthcare/alternative/chiropractic":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"alternative","healthcare:speciality":"chiropractic"}},"healthcare/audiologist":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"audiologist"}},"healthcare/birthing_center":{"icon":"fas-baby","geometry":["point","area"],"tags":{"healthcare":"birthing_centre"}},"healthcare/blood_donation":{"icon":"maki-blood-bank","fields":["{healthcare}","blood_components"],"geometry":["point","area"],"tags":{"healthcare":"blood_donation"}},"healthcare/counselling":{"icon":"fas-comments","geometry":["point","area"],"tags":{"healthcare":"counselling"}},"healthcare/dentist/orthodontics":{"icon":"fas-teeth","fields":["{amenity/dentist}"],"moreFields":["{amenity/dentist}"],"geometry":["point","area"],"tags":{"healthcare":"dentist","healthcare:speciality":"orthodontics"},"addTags":{"healthcare":"dentist","amenity":"dentist","healthcare:speciality":"orthodontics"},"reference":{"key":"healthcare:speciality","value":"orthodontics"}},"healthcare/hospice":{"icon":"fas-procedures","geometry":["point","area"],"tags":{"healthcare":"hospice"}},"healthcare/laboratory":{"icon":"fas-vial","fields":["name","operator","healthcare/speciality","website","phone","ref","address","opening_hours"],"moreFields":["{healthcare}","opening_hours/covid19"],"geometry":["point","area"],"tags":{"healthcare":"laboratory"}},"healthcare/midwife":{"icon":"fas-baby","geometry":["point","area"],"tags":{"healthcare":"midwife"}},"healthcare/occupational_therapist":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"occupational_therapist"}},"healthcare/optometrist":{"icon":"fas-eye","geometry":["point","area"],"tags":{"healthcare":"optometrist"}},"healthcare/physiotherapist":{"icon":"temaki-physiotherapist","geometry":["point","area"],"tags":{"healthcare":"physiotherapist"}},"healthcare/podiatrist":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"podiatrist"}},"healthcare/psychotherapist":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"psychotherapist"}},"healthcare/rehabilitation":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"rehabilitation"}},"healthcare/sample_collection":{"icon":"fas-vial","fields":["name","sample_collection","operator","website","phone","address","opening_hours"],"moreFields":["{healthcare}","opening_hours/covid19"],"geometry":["point","area"],"tags":{"healthcare":"sample_collection"}},"healthcare/speech_therapist":{"icon":"fas-comment","geometry":["point","area"],"tags":{"healthcare":"speech_therapist"}},"highway/bus_stop":{"icon":"temaki-bus","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point","vertex"],"tags":{"highway":"bus_stop"},"matchScore":0.95,"searchable":false,"replacement":"public_transport/platform/bus_point"},"highway/crossing":{"fields":["crossing"],"geometry":["vertex"],"tags":{"highway":"crossing"},"searchable":false,"matchScore":0.95},"highway/bridleway":{"fields":["name","surface","width","structure","access","incline","horse_scale"],"moreFields":["covered_no","dog","lit","maxweight_bridge","smoothness","stroller","wheelchair"],"icon":"maki-horse-riding","geometry":["line"],"tags":{"highway":"bridleway"}},"highway/bus_guideway":{"icon":"temaki-bus_guided","fields":["name","operator","oneway","structure"],"moreFields":["covered_no","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"bus_guideway"},"addTags":{"highway":"bus_guideway","access":"no","bus":"designated"}},"highway/busway":{"icon":"temaki-bus","fields":["name","operator","oneway","structure","covered"],"moreFields":["trolley_wire"],"geometry":["line"],"tags":{"highway":"busway"}},"highway/construction":{"icon":"maki-barrier","fields":["name","construction","opening_date","check_date","access","oneway","structure","note"],"geometry":["line"],"tags":{"highway":"construction"},"removeTags":{"highway":"construction","construction":"*"}},"highway/corridor":{"icon":"temaki-pedestrian_walled","fields":["name","width","level","access_simple","wheelchair"],"moreFields":["indoor","maxheight","stroller"],"geometry":["line"],"tags":{"highway":"corridor"},"addTags":{"highway":"corridor","indoor":"yes"}},"highway/crossing/marked":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","tactile_paving","crossing/island","crossing/markings","crossing_raised"],"moreFields":["flashing_lights"],"geometry":["vertex"],"tags":{"highway":"crossing","crossing":"marked"},"reference":{"key":"crossing","value":"marked"},"searchable":false},"highway/crossing/zebra":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","tactile_paving","crossing/island","crossing/markings","crossing_raised"],"geometry":["vertex"],"tags":{"highway":"crossing","crossing":"zebra"},"reference":{"key":"crossing","value":"zebra"},"searchable":false},"highway/crossing/traffic_signals":{"icon":"temaki-railway_signals","fields":["crossing","tactile_paving","crossing/island","crossing/markings","crossing_raised","button_operated","traffic_signals/sound","traffic_signals/vibration"],"moreFields":["traffic_signals/arrow","traffic_signals/countdown","traffic_signals/minimap"],"geometry":["vertex"],"tags":{"highway":"crossing","crossing":"traffic_signals"},"reference":{"key":"crossing","value":"traffic_signals"}},"highway/crossing/uncontrolled":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","tactile_paving","crossing/island","crossing/markings","crossing_raised"],"geometry":["vertex"],"tags":{"highway":"crossing","crossing":"uncontrolled"},"reference":{"key":"crossing","value":"uncontrolled"}},"highway/crossing/unmarked":{"icon":"temaki-pedestrian","fields":["crossing","tactile_paving","crossing/island","crossing_raised"],"moreFields":["flashing_lights"],"geometry":["vertex"],"tags":{"highway":"crossing","crossing":"unmarked"},"reference":{"key":"crossing","value":"unmarked"}},"highway/cycleway":{"icon":"fas-biking","fields":["name","oneway","surface","smoothness","width","structure","access","incline"],"moreFields":["covered_no","dog","lit","maxspeed","maxweight_bridge","not/name","stroller","wheelchair"],"geometry":["line"],"tags":{"highway":"cycleway"}},"highway/cycleway/crossing":{"icon":"temaki-cyclist_crosswalk","fields":["crossing","surface","tactile_paving","crossing/island","crossing/markings","access"],"geometry":["line"],"tags":{"cycleway":"crossing"},"addTags":{"highway":"cycleway","cycleway":"crossing"},"reference":{"key":"cycleway","value":"crossing"},"searchable":false,"matchScore":0.95},"highway/cycleway/bicycle_foot":{"locationSet":{"exclude":["fr","lt","pl","de"]},"icon":"temaki-pedestrian_and_cyclist","fields":["name","segregated","oneway","surface","smoothness","width","structure","access","incline"],"geometry":["line"],"tags":{"highway":"cycleway","foot":"designated"},"addTags":{"highway":"cycleway","foot":"designated","bicycle":"designated"},"matchScore":0.9},"highway/cycleway/crossing/marked":{"icon":"temaki-cyclist_crosswalk","fields":["crossing","surface","tactile_paving","crossing/island","crossing/markings","crossing_raised","access"],"geometry":["line"],"tags":{"highway":"cycleway","cycleway":"crossing","crossing":"marked"},"reference":{"key":"crossing","value":"marked"},"matchScore":0.95,"searchable":false},"highway/cycleway/crossing/bicycle_foot":{"locationSet":{"exclude":["fr","lt","pl"]},"icon":"temaki-ped_cyclist_crosswalk","fields":["crossing","surface","smoothness","tactile_paving","crossing/island","crossing/markings","crossing_raised","access"],"geometry":["line"],"tags":{"highway":"cycleway","cycleway":"crossing","foot":"designated"},"addTags":{"highway":"cycleway","cycleway":"crossing","foot":"designated","bicycle":"designated"},"reference":{"key":"cycleway","value":"crossing"},"matchScore":0.9},"highway/cycleway/crossing/traffic_signals":{"icon":"fas-biking","fields":["oneway","crossing","surface","tactile_paving","crossing/island","crossing_raised","button_operated","traffic_signals/sound","traffic_signals/vibration","access"],"geometry":["line"],"tags":{"highway":"cycleway","cycleway":"crossing","crossing":"traffic_signals"},"reference":{"key":"crossing","value":"traffic_signals"},"matchScore":0.95},"highway/cycleway/crossing/uncontrolled":{"icon":"temaki-cyclist_crosswalk","fields":["oneway","crossing","surface","tactile_paving","crossing/island","crossing/markings","crossing_raised","access"],"geometry":["line"],"tags":{"highway":"cycleway","cycleway":"crossing","crossing":"uncontrolled"},"reference":{"key":"crossing","value":"uncontrolled"},"matchScore":0.95},"highway/cycleway/crossing/unmarked":{"icon":"fas-biking","fields":["crossing","surface","tactile_paving","crossing/island","crossing_raised","access"],"geometry":["line"],"tags":{"highway":"cycleway","cycleway":"crossing","crossing":"unmarked"},"reference":{"key":"crossing","value":"unmarked"},"matchScore":0.95},"highway/cycleway/moped_link-NL":{"locationSet":{"include":["nl"]},"icon":"fas-motorcycle","fields":["name","oneway","surface","smoothness","width","structure","access","incline"],"geometry":["line"],"tags":{"highway":"cycleway","bicycle":"no","moped":"designated"},"addTags":{"highway":"cycleway","bicycle":"no","moped":"designated","foot":"no","mofa":"no"},"matchScore":0.9},"highway/elevator_line":{"icon":"temaki-elevator","fields":["{highway/elevator}"],"moreFields":["{highway/elevator}"],"geometry":["line"],"tags":{"highway":"elevator"}},"highway/elevator":{"icon":"temaki-elevator","fields":["ref","operator","level_semi","access_simple","wheelchair","maxweight"],"moreFields":["dog","manufacturer","maxheight","opening_hours","opening_hours/covid19"],"geometry":["vertex"],"tags":{"highway":"elevator"}},"highway/emergency_access_point":{"icon":"fas-compress-arrows-alt","geometry":["point"],"fields":["ref","operator"],"tags":{"highway":"emergency_access_point"}},"highway/emergency_bay":{"icon":"maki-car","geometry":["vertex"],"tags":{"highway":"emergency_bay"}},"highway/escape":{"icon":"fas-truck-fast","fields":["surface"],"geometry":["line"],"tags":{"highway":"escape"}},"highway/footway":{"icon":"temaki-pedestrian","fields":["name","surface","width","structure","access","incline"],"moreFields":["covered_no","dog","informal","lit","maxweight_bridge","not/name","smoothness","stroller","tactile_paving","wheelchair"],"geometry":["line"],"tags":{"highway":"footway"}},"highway/footway/crossing":{"fields":["crossing","surface","tactile_paving","crossing/island","crossing/markings","crossing_raised","access"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing"},"reference":{"key":"footway","value":"crossing"},"searchable":false},"highway/footway/informal":{"icon":"fas-shoe-prints","fields":["surface","width","access","trail_visibility","smoothness","incline"],"moreFields":["covered_no","dog","informal","lit","maxweight_bridge","sac_scale","stroller","structure","wheelchair"],"geometry":["line"],"tags":{"highway":"footway","informal":"yes"},"reference":{"key":"informal"},"searchable":false},"highway/footway/access_aisle":{"icon":"temaki-striped_zone","fields":["access_aisle","width","surface","tactile_paving","access","wheelchair"],"moreFields":["covered_no","dog","incline","lit","maxweight_bridge","ref","smoothness","stroller","structure"],"geometry":["line"],"tags":{"highway":"footway","footway":"access_aisle"},"reference":{"key":"footway","value":"access_aisle"}},"highway/footway/conveying":{"icon":"temaki-pedestrian","fields":["name","conveying","access_simple","lit","width","wheelchair"],"geometry":["line"],"tags":{"highway":"footway","conveying":"*"},"reference":{"key":"conveying"}},"highway/footway/crossing/marked":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","surface","tactile_paving","crossing/island","crossing/markings","crossing_raised","access"],"moreFields":["flashing_lights"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"marked"},"reference":{"key":"crossing","value":"marked"},"searchable":false},"highway/footway/crossing/zebra":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","surface","tactile_paving","crossing/island","crossing/markings","crossing_raised","access"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"zebra"},"reference":{"key":"crossing","value":"zebra"},"searchable":false},"highway/footway/crossing/traffic_signals":{"icon":"temaki-railway_signals","fields":["crossing","surface","tactile_paving","crossing/island","crossing/markings","crossing_raised","button_operated","traffic_signals/sound","traffic_signals/vibration","access"],"moreFields":["traffic_signals/arrow","traffic_signals/countdown","traffic_signals/minimap"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"traffic_signals"},"reference":{"key":"crossing","value":"traffic_signals"}},"highway/footway/crossing/uncontrolled":{"icon":"temaki-pedestrian","fields":["crossing","surface","tactile_paving","crossing/island","crossing/markings","crossing_raised","access"],"moreFields":["flashing_lights"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"uncontrolled"},"reference":{"key":"crossing","value":"uncontrolled"}},"highway/footway/crossing/unmarked":{"icon":"temaki-pedestrian","fields":["crossing","surface","tactile_paving","crossing/island","crossing_raised","access"],"moreFields":["flashing_lights"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"unmarked"},"reference":{"key":"crossing","value":"unmarked"}},"highway/footway/sidewalk":{"icon":"temaki-pedestrian","geometry":["line"],"tags":{"footway":"sidewalk"},"addTags":{"highway":"footway","footway":"sidewalk"},"reference":{"key":"footway","value":"sidewalk"}},"highway/footway/traffic_island":{"icon":"temaki-pedestrian","geometry":["line"],"tags":{"footway":"traffic_island"},"addTags":{"highway":"footway","footway":"traffic_island"},"reference":{"key":"footway","value":"traffic_island"}},"highway/give_way":{"icon":"temaki-yield","fields":["direction_vertex_dual"],"geometry":["vertex"],"tags":{"highway":"give_way"}},"highway/living_street":{"icon":"iD-highway-living-street","fields":["name","oneway","maxspeed","lanes","surface","structure","access"],"moreFields":["covered_no","cycleway","flood_prone","junction_line","lit","maxheight","maxweight_bridge","maxwidth","oneway/bicycle","smoothness","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"living_street"}},"highway/milestone":{"icon":"temaki-milestone","geometry":["point","vertex"],"fields":["distance","ref","direction_vertex"],"moreFields":["ref"],"tags":{"highway":"milestone"}},"highway/mini_roundabout":{"icon":"maki-circle-stroked","geometry":["vertex"],"tags":{"highway":"mini_roundabout"},"fields":["direction_clock"]},"highway/motorway_junction":{"icon":"temaki-junction","fields":["ref_highway_junction","name"],"geometry":["vertex"],"tags":{"highway":"motorway_junction"}},"highway/motorway_link-US-CA":{"name":"{highway/motorway_link}","icon":"iD-highway-motorway-link","fields":["destination_oneway","destination/ref_oneway","junction/ref_oneway","oneway","maxspeed/advisory","lanes","surface","structure","access"],"moreFields":["charge_toll","covered_no","destination/symbol_oneway","incline","junction_line","lit","maxheight","maxspeed","maxweight_bridge","maxwidth","ref_road_number","smoothness","toll","width"],"geometry":["line"],"tags":{"highway":"motorway_link"},"locationSet":{"include":["ca","us"]}},"highway/motorway_link":{"icon":"iD-highway-motorway-link","fields":["destination_oneway","destination/ref_oneway","junction/ref_oneway","oneway","maxspeed","lanes","surface","structure","access"],"moreFields":["charge_toll","covered_no","destination/symbol_oneway","incline","junction_line","lit","maxheight","maxspeed/advisory","maxweight_bridge","maxwidth","ref_road_number","smoothness","toll","width"],"geometry":["line"],"tags":{"highway":"motorway_link"},"locationSet":{"exclude":["ca","us"]}},"highway/motorway":{"icon":"iD-highway-motorway","fields":["name","ref_road_number","oneway_yes","maxspeed","lanes","surface","structure","access"],"moreFields":["charge_toll","covered_no","incline","junction_line","lit","maxheight","maxspeed/advisory","maxspeed/hgv","maxweight_bridge","maxwidth","minspeed","not/name","smoothness","toll","width"],"geometry":["line"],"tags":{"highway":"motorway"}},"highway/passing_place":{"icon":"maki-circle-stroked","geometry":["vertex"],"tags":{"highway":"passing_place"}},"highway/path":{"icon":"iD-other-line","fields":["name","surface","width","structure","access","incline"],"moreFields":["covered_no","dog","gnis/feature_id-US","horse_scale","informal","lit","maxweight_bridge","mtb/scale","mtb/scale/imba","mtb/scale/uphill","not/name","ref","sac_scale","smoothness","stroller","trail_visibility","wheelchair"],"geometry":["line"],"tags":{"highway":"path"}},"highway/path/boardwalk":{"icon":"temaki-pedestrian","geometry":["line"],"tags":{"highway":"path","bridge":"boardwalk"},"addTags":{"highway":"path","bridge":"boardwalk","surface":"wood"},"reference":{"key":"bridge","value":"boardwalk"}},"highway/path/informal":{"icon":"fas-shoe-prints","fields":["surface","width","access","trail_visibility","smoothness","incline"],"moreFields":["covered_no","dog","horse_scale","informal","lit","maxweight_bridge","mtb/scale","mtb/scale/imba","mtb/scale/uphill","sac_scale","stroller","structure","wheelchair"],"geometry":["line"],"tags":{"highway":"path","informal":"yes"},"reference":{"key":"informal"}},"highway/pedestrian_area":{"icon":"temaki-pedestrian","fields":["name","surface","lit","width","structure","access"],"geometry":["area"],"tags":{"highway":"pedestrian"}},"highway/pedestrian_line":{"icon":"temaki-pedestrian","fields":["name","surface","lit","width","oneway","structure","access"],"moreFields":["covered_no","incline","maxweight_bridge","smoothness"],"geometry":["line"],"tags":{"highway":"pedestrian"}},"highway/primary_link-US-CA":{"name":"{highway/primary_link}","icon":"iD-highway-primary-link","fields":["destination_oneway","destination/ref_oneway","oneway","maxspeed/advisory","lanes","surface","structure","access"],"moreFields":["charge_toll","covered_no","cycleway","destination/symbol_oneway","flood_prone","incline","junction_line","junction/ref_oneway","lit","maxheight","maxspeed","maxweight_bridge","maxwidth","oneway/bicycle","ref_road_number","smoothness","toll","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"primary_link"},"locationSet":{"include":["ca","us"]}},"highway/primary_link":{"icon":"iD-highway-primary-link","fields":["destination_oneway","destination/ref_oneway","oneway","maxspeed","lanes","surface","structure","access"],"moreFields":["charge_toll","covered_no","cycleway","destination/symbol_oneway","flood_prone","incline","junction_line","junction/ref_oneway","lit","maxheight","maxspeed/advisory","maxweight_bridge","maxwidth","oneway/bicycle","ref_road_number","smoothness","toll","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"primary_link"},"locationSet":{"exclude":["ca","us"]}},"highway/primary":{"icon":"iD-highway-primary","fields":["name","oneway","maxspeed","lanes","surface","structure","ref_road_number","access"],"moreFields":["charge_toll","covered_no","cycleway","expressway-US","flood_prone","incline","junction_line","lane_markings","lit","maxheight","maxspeed/advisory","maxspeed/hgv","maxweight_bridge","maxwidth","not/name","oneway/bicycle","smoothness","toll","traffic_calming","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"primary"}},"highway/raceway":{"icon":"temaki-speedway_oval","fields":["name","oneway","surface","sport_racing_motor","lit","width","lanes","structure"],"geometry":["line","area"],"tags":{"highway":"raceway"},"addTags":{"highway":"raceway","sport":"motor"}},"highway/raceway/karting":{"icon":"temaki-speedway_8","geometry":["line","area"],"tags":{"highway":"raceway","sport":"karting"},"reference":{"key":"sport","value":"karting"}},"highway/raceway/motocross":{"icon":"fas-motorcycle","geometry":["line","area"],"tags":{"highway":"raceway","sport":"motocross"},"reference":{"key":"sport","value":"motocross"}},"highway/residential":{"icon":"iD-highway-residential","fields":["name","oneway","maxspeed","lanes","surface","structure","access"],"moreFields":["covered_no","cycleway","flood_prone","incline","junction_line","lane_markings","lit","maxheight","maxspeed/advisory","maxweight_bridge","maxwidth","not/name","oneway/bicycle","smoothness","traffic_calming","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"residential"}},"highway/rest_area":{"icon":"maki-highway-rest-area","fields":["name","operator","opening_hours"],"moreFields":["address","email","fax","opening_hours/covid19","phone","wheelchair"],"geometry":["point","vertex","area"],"tags":{"highway":"rest_area"}},"highway/road":{"icon":"iD-other-line","fields":["highway","{highway/residential}"],"moreFields":["{highway/residential}"],"geometry":["line"],"tags":{"highway":"road"}},"highway/road/bridge":{"icon":"iD-other-line","fields":["highway","{highway/residential}"],"moreFields":["{highway/residential}"],"geometry":["line"],"tags":{"highway":"road","bridge":"*"},"addTags":{"highway":"road","bridge":"yes","layer":"1"},"matchScore":0.25},"highway/secondary_link":{"icon":"iD-highway-secondary-link","fields":["{highway/primary_link}"],"moreFields":["{highway/primary_link}"],"geometry":["line"],"tags":{"highway":"secondary_link"}},"highway/secondary":{"icon":"iD-highway-secondary","fields":["{highway/primary}"],"moreFields":["{highway/primary}"],"geometry":["line"],"tags":{"highway":"secondary"}},"highway/service_area":{"icon":"iD-highway-service","fields":["name","service","maxspeed","surface","structure","access"],"moreFields":["covered_no","flood_prone","lit","maxheight","maxspeed/advisory","maxweight_bridge","smoothness","trolley_wire"],"geometry":["area"],"tags":{"highway":"service"},"searchable":false},"highway/service":{"icon":"iD-highway-service","fields":["name","service","oneway","maxspeed","surface","structure","access"],"moreFields":["covered_no","flood_prone","incline","lanes","lit","maxheight","maxspeed/advisory","maxweight_bridge","maxwidth","oneway/bicycle","smoothness","traffic_calming","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"service"},"matchScore":0.9},"highway/service/alley":{"icon":"iD-highway-service","geometry":["line"],"tags":{"highway":"service","service":"alley"},"reference":{"key":"service","value":"alley"}},"highway/service/drive-through":{"icon":"iD-highway-service","geometry":["line"],"tags":{"highway":"service","service":"drive-through"},"reference":{"key":"service","value":"drive-through"}},"highway/service/driveway":{"icon":"iD-highway-service","geometry":["line"],"tags":{"highway":"service","service":"driveway"},"reference":{"key":"service","value":"driveway"}},"highway/service/emergency_access":{"icon":"iD-highway-service","geometry":["line"],"tags":{"highway":"service","service":"emergency_access"},"reference":{"key":"service","value":"emergency_access"}},"highway/service/parking_aisle":{"icon":"iD-highway-service","geometry":["line"],"tags":{"highway":"service","service":"parking_aisle"},"reference":{"key":"service","value":"parking_aisle"}},"highway/services":{"icon":"maki-car","fields":["{highway/rest_area}"],"moreFields":["{highway/rest_area}"],"geometry":["point","vertex","area"],"tags":{"highway":"services"}},"highway/speed_camera":{"icon":"temaki-security_camera","geometry":["point","vertex"],"fields":["direction","ref","maxspeed"],"tags":{"highway":"speed_camera"}},"highway/speed_display":{"icon":"maki-square-stroked","geometry":["point","vertex"],"fields":["direction_point","direction_vertex","maxspeed"],"moreFields":["maxspeed/advisory"],"tags":{"highway":"speed_display"}},"highway/steps":{"icon":"iD-highway-steps","fields":["name","incline_steps","access_simple","handrail","step_count","tactile_paving","surface","width"],"moreFields":["covered_no","dog","indoor","level_semi","lit","ref","ramp","stroller","wheelchair"],"geometry":["line"],"tags":{"highway":"steps"}},"highway/steps/conveying":{"icon":"maki-entrance","fields":["incline_steps","conveying","access_simple","indoor","level_semi","width"],"moreFields":["{highway/steps}","dog","handrail","operator","manufacturer","step_count","surface"],"geometry":["line"],"tags":{"highway":"steps","conveying":"*"}},"highway/stop":{"icon":"temaki-stop","fields":["stop","direction_vertex"],"geometry":["vertex"],"tags":{"highway":"stop"}},"highway/street_lamp":{"icon":"temaki-street_lamp_arm","geometry":["point","vertex"],"tags":{"highway":"street_lamp"},"fields":["lamp_type","support","lamp_mount","direction","height","ref"]},"highway/tertiary_link":{"icon":"iD-highway-tertiary-link","fields":["{highway/primary_link}"],"moreFields":["{highway/primary_link}"],"geometry":["line"],"tags":{"highway":"tertiary_link"}},"highway/tertiary":{"icon":"iD-highway-tertiary","fields":["{highway/primary}"],"moreFields":["{highway/primary}"],"geometry":["line"],"tags":{"highway":"tertiary"}},"highway/toll_gantry":{"locationSet":{"exclude":["de"]},"icon":"temaki-toll_gantry","fields":["ref","operator","access","maxheight","opening_hours","payment_multi"],"moreFields":["opening_hours/covid19"],"geometry":["vertex"],"tags":{"highway":"toll_gantry"}},"highway/track":{"icon":"fas-truck-monster","fields":["name","tracktype","surface","width","structure","access","incline","smoothness"],"moreFields":["covered_no","flood_prone","horse_scale","maxweight_bridge","mtb/scale","mtb/scale/imba","mtb/scale/uphill","stroller","wheelchair"],"geometry":["line"],"tags":{"highway":"track"}},"highway/traffic_mirror":{"icon":"maki-circle-stroked","geometry":["point","vertex"],"fields":["direction"],"tags":{"highway":"traffic_mirror"}},"highway/traffic_signals":{"icon":"temaki-traffic_signals","geometry":["vertex"],"tags":{"highway":"traffic_signals"},"fields":["traffic_signals","traffic_signals/direction"],"moreFields":["traffic_signals/countdown"]},"highway/trailhead":{"icon":"fas-hiking","fields":["name","operator","ele_node","address","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["gnis/feature_id-US","opening_hours","opening_hours/covid19"],"geometry":["vertex"],"tags":{"highway":"trailhead"}},"highway/trunk_link-US-CA":{"name":"{highway/trunk_link}","icon":"iD-highway-trunk-link","fields":["{highway/motorway_link-US-CA}"],"moreFields":["{highway/motorway_link-US-CA}"],"geometry":["line"],"tags":{"highway":"trunk_link"},"locationSet":{"include":["ca","us"]}},"highway/trunk_link":{"icon":"iD-highway-trunk-link","fields":["{highway/motorway_link}"],"moreFields":["{highway/motorway_link}"],"geometry":["line"],"tags":{"highway":"trunk_link"},"locationSet":{"exclude":["ca","us"]}},"highway/trunk":{"icon":"iD-highway-trunk","fields":["name","ref_road_number","oneway","maxspeed","lanes","expressway-US","surface","structure","access"],"moreFields":["charge_toll","covered_no","incline","junction_line","lit","maxheight","maxspeed/advisory","maxspeed/hgv","maxweight_bridge","maxwidth","minspeed","not/name","smoothness","toll","width"],"geometry":["line"],"tags":{"highway":"trunk"}},"highway/turning_circle":{"icon":"maki-circle-stroked","geometry":["vertex"],"fields":["turning_circle"],"tags":{"highway":"turning_circle"}},"highway/turning_loop":{"icon":"maki-circle","geometry":["vertex"],"tags":{"highway":"turning_loop"}},"highway/unclassified":{"icon":"iD-highway-unclassified","fields":["{highway/residential}"],"moreFields":["{highway/residential}"],"geometry":["line"],"tags":{"highway":"unclassified"}},"historic":{"icon":"temaki-ruins","fields":["historic","inscription"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex","line","area"],"tags":{"historic":"*"},"matchScore":0.5},"historic/archaeological_site":{"icon":"temaki-ruins","fields":["name","archaeological_site","historic/civilization","inscription","access_simple"],"geometry":["point","vertex","area"],"tags":{"historic":"archaeological_site"}},"historic/boundary_stone":{"icon":"temaki-milestone","fields":["name","inscription"],"moreFields":["{historic}","material"],"geometry":["point","vertex"],"tags":{"historic":"boundary_stone"}},"historic/building":{"icon":"maki-home","fields":["{building}","start_date"],"moreFields":["{building}","access_simple"],"geometry":["area"],"tags":{"historic":"building"},"addTags":{"historic":"building","building":"*"},"reference":{"key":"historic","value":"building"},"matchScore":0.5},"historic/castle":{"icon":"maki-castle","fields":["name","castle_type","building_area_yes","historic/civilization","access_simple","start_date"],"geometry":["point","area"],"tags":{"historic":"castle"}},"historic/castle/fortress":{"icon":"maki-castle","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"reference":{"key":"castle_type","value":"fortress"},"tags":{"historic":"castle","castle_type":"fortress"}},"historic/castle/palace":{"icon":"fas-crown","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"reference":{"key":"castle_type","value":"palace"},"tags":{"historic":"castle","castle_type":"palace"}},"historic/castle/stately":{"icon":"fas-crown","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"reference":{"key":"castle_type","value":"stately"},"tags":{"historic":"castle","castle_type":"stately"}},"historic/city_gate":{"icon":"maki-castle","fields":["name","building_area_yes","historic/civilization","start_date"],"geometry":["point","area"],"tags":{"historic":"city_gate"}},"historic/fort":{"icon":"maki-castle","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"tags":{"historic":"fort"}},"historic/manor":{"icon":"maki-castle","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"tags":{"historic":"manor"}},"historic/memorial":{"icon":"maki-monument","fields":["name","memorial","inscription","material"],"moreFields":["{historic}","subject/wikidata"],"geometry":["point","vertex","area"],"tags":{"historic":"memorial"}},"historic/memorial/plaque":{"icon":"temaki-plaque","fields":["{historic/memorial}","direction"],"geometry":["point","vertex"],"tags":{"historic":"memorial","memorial":"plaque"},"reference":{"key":"memorial","value":"plaque"}},"historic/monument":{"icon":"maki-monument","fields":["name","inscription","access_simple"],"moreFields":["{historic}","material"],"geometry":["point","vertex","area"],"tags":{"historic":"monument"}},"historic/pillory":{"icon":"maki-monument","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"tags":{"historic":"pillory"}},"historic/ruins":{"icon":"temaki-ruins","fields":["name","ruins","historic/civilization","inscription","access_simple"],"geometry":["point","vertex","area"],"tags":{"historic":"ruins"}},"historic/tomb":{"icon":"maki-cemetery","fields":["name","tomb","building_area_yes","inscription","access_simple"],"geometry":["point","area"],"tags":{"historic":"tomb"}},"historic/wayside_cross":{"icon":"maki-religious-christian","fields":["name","inscription","material"],"moreFields":["{historic}","religion","denomination"],"geometry":["point","vertex","area"],"tags":{"historic":"wayside_cross"}},"historic/wayside_shrine":{"icon":"maki-landmark","fields":["name","religion","denomination","inscription","access_simple"],"geometry":["point","vertex","area"],"tags":{"historic":"wayside_shrine"}},"historic/wreck":{"icon":"temaki-ruins","fields":["name","access_simple","seamark/wreck/category","historic/wreck/date_sunk","historic/wreck/visible_at_low_tide","historic/wreck/visible_at_high_tide"],"moreFields":["{historic}","seamark/type"],"geometry":["point","area"],"tags":{"historic":"wreck"},"addTags":{"historic":"wreck","seamark:type":"wreck"}},"indoor/corridor_line":{"fields":["level","name"],"geometry":["line"],"tags":{"indoor":"corridor"},"searchable":false,"matchScore":1.1,"replacement":"highway/corridor"},"indoor/area":{"icon":"temaki-room","fields":["level","name","ref_room_number","height"],"geometry":["area"],"tags":{"indoor":"area"},"matchScore":0.8},"indoor/corridor":{"icon":"temaki-pedestrian","fields":["level","name","ref","height"],"geometry":["area"],"tags":{"indoor":"corridor"},"matchScore":0.8},"indoor/door":{"icon":"maki-entrance-alt1","fields":["level","ref","door_type","access_simple","width","height"],"moreFields":["wheelchair"],"geometry":["vertex"],"tags":{"indoor":"door"},"addTags":{"indoor":"door","door":"yes"},"removeTags":{"indoor":"door","door":"*"}},"indoor/elevator":{"icon":"temaki-elevator","fields":["ref","level_semi"],"geometry":["area"],"tags":{"indoor":"room","elevator":"yes"},"matchScore":0.8},"indoor/room":{"icon":"temaki-room","fields":["level","name","ref_room_number","room","height"],"geometry":["area"],"tags":{"indoor":"room"},"matchScore":0.8},"indoor/stairs":{"icon":"iD-highway-steps","fields":["ref","level_semi","conveying_escalator"],"geometry":["area"],"tags":{"indoor":"room","stairs":"yes"},"matchScore":0.8},"indoor/wall":{"icon":"temaki-wall","fields":["level","height"],"geometry":["line"],"tags":{"indoor":"wall"}},"internet_access/wlan":{"icon":"fas-wifi","geometry":["point","area"],"fields":["internet_access/ssid","internet_access/fee"],"moreFields":["level"],"tags":{"internet_access":"wlan"},"matchScore":0.25},"junction":{"icon":"temaki-junction","fields":["name"],"geometry":["vertex","area"],"tags":{"junction":"yes"}},"landuse/basin":{"icon":"maki-water","fields":["name","basin","intermittent_yes"],"geometry":["area"],"tags":{"landuse":"basin"},"searchable":false},"landuse/churchyard":{"icon":"maki-religious-christian","fields":["{landuse/religious}"],"moreFields":["{landuse/religious}"],"geometry":["area"],"tags":{"landuse":"churchyard"},"searchable":false},"landuse/farm":{"icon":"maki-farm","fields":["name","operator","crop"],"geometry":["point","area"],"tags":{"landuse":"farm"},"searchable":false},"landuse/pond":{"icon":"maki-water","fields":["name","intermittent"],"geometry":["area"],"tags":{"landuse":"pond"},"searchable":false},"landuse/reservoir":{"icon":"maki-water","fields":["name","intermittent"],"geometry":["area"],"tags":{"landuse":"reservoir"},"searchable":false},"landuse/allotments":{"icon":"maki-garden-centre","geometry":["area"],"fields":["name","operator","plots"],"moreFields":["address","email","fax","phone"],"tags":{"landuse":"allotments"}},"landuse/aquaculture":{"icon":"maki-aquarium","fields":["name","operator","produce"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"aquaculture"}},"landuse/brownfield":{"icon":"temaki-bulldozer","geometry":["area"],"fields":["name"],"tags":{"landuse":"brownfield"},"matchScore":0.9},"landuse/cemetery":{"icon":"maki-cemetery","fields":["name","religion","denomination"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"cemetery"}},"landuse/commercial":{"icon":"maki-suitcase","fields":["name"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"commercial"},"matchScore":0.9},"landuse/construction":{"icon":"temaki-bulldozer","fields":["name","construction","operator","opening_date","check_date","note"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"construction"}},"landuse/education":{"icon":"temaki-school","fields":["name","operator"],"moreFields":[],"geometry":["area"],"tags":{"landuse":"education"},"matchScore":0.9},"landuse/farmland":{"icon":"fas-tractor","fields":["name","operator","crop","produce"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"farmland"}},"landuse/farmyard":{"icon":"maki-farm","fields":["name","operator"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"farmyard"}},"landuse/flowerbed":{"icon":"maki-garden","fields":["operator"],"moreFields":["address"],"geometry":["area"],"tags":{"landuse":"flowerbed"}},"landuse/forest":{"icon":"maki-park-alt1","fields":["name","leaf_type","leaf_cycle","produce"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"forest"}},"landuse/garages":{"icon":"fas-warehouse","geometry":["area"],"fields":["name"],"moreFields":["address","email","fax","phone"],"tags":{"landuse":"garages"}},"landuse/grass":{"icon":"temaki-lawn","geometry":["area"],"tags":{"landuse":"grass"}},"landuse/greenfield":{"icon":"temaki-bulldozer","geometry":["area"],"fields":["name"],"tags":{"landuse":"greenfield"},"matchScore":0.9},"landuse/greenhouse_horticulture":{"icon":"maki-garden","fields":["name","operator"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"greenhouse_horticulture"},"matchScore":0.9},"landuse/harbour":{"icon":"maki-harbor","fields":["name","operator"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"harbour"}},"landuse/industrial":{"icon":"maki-industry","fields":["name","industrial"],"moreFields":["operator","address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"industrial"},"matchScore":0.9},"landuse/industrial/brewery":{"icon":"temaki-storage_fermenter","fields":["{man_made/works/brewery}","product"],"moreFields":["{man_made/works/brewery}"],"geometry":["point","area"],"tags":{"industrial":"brewery"},"addTags":{"landuse":"industrial"},"reference":{"key":"industrial","value":"brewery"},"searchable":false,"matchScore":0.9,"name":"{man_made/works/brewery}"},"landuse/industrial/scrap_yard":{"icon":"temaki-junk_car","fields":["name","operator","address","opening_hours"],"moreFields":["{landuse/industrial}","opening_hours/covid19"],"geometry":["point","area"],"tags":{"industrial":"scrap_yard"},"addTags":{"landuse":"industrial","industrial":"scrap_yard"},"reference":{"key":"industrial","value":"scrap_yard"}},"landuse/industrial/slaughterhouse":{"icon":"maki-slaughterhouse","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{landuse/industrial}","opening_hours/covid19"],"geometry":["point","area"],"tags":{"industrial":"slaughterhouse"},"addTags":{"landuse":"industrial","industrial":"slaughterhouse"},"reference":{"key":"industrial","value":"slaughterhouse"}},"landuse/landfill":{"icon":"temaki-bulldozer","geometry":["area"],"fields":["name","operator"],"moreFields":["address","email","fax","phone"],"tags":{"landuse":"landfill"}},"landuse/meadow":{"icon":"maki-garden","geometry":["area"],"fields":["name"],"tags":{"landuse":"meadow"}},"landuse/military":{"icon":"temaki-military","fields":["name"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"military"},"matchScore":0.9},"landuse/military/airfield":{"icon":"temaki-fighter_jet","fields":["name","iata","icao"],"geometry":["point","area"],"tags":{"military":"airfield"},"addTags":{"aeroway":"aerodrome","landuse":"military","military":"airfield"},"reference":{"key":"military","value":"airfield"}},"landuse/military/barracks":{"icon":"temaki-army_tent","fields":["name","building_area"],"geometry":["point","area"],"tags":{"military":"barracks"}},"landuse/military/base":{"icon":"temaki-anchor_medal","fields":["name","military_service"],"geometry":["point","area"],"tags":{"military":"base"},"addTags":{"landuse":"military","military":"base"}},"landuse/military/base/navy":{"icon":"temaki-anchor_medal","fields":["name"],"geometry":["point","area"],"tags":{"military":"base","military_service":"navy"},"addTags":{"landuse":"military","military":"base","military_service":"navy"}},"landuse/military/danger_area":{"icon":"maki-danger","fields":["name"],"geometry":["point","vertex","area"],"tags":{"military":"danger_area"},"addTags":{"landuse":"military","military":"danger_area"}},"landuse/military/obstacle_course":{"icon":"temaki-tire_course","geometry":["point","area"],"tags":{"military":"obstacle_course"},"addTags":{"landuse":"military","military":"obstacle_course"}},"landuse/military/range":{"icon":"fas-bullseye","fields":["name"],"geometry":["point","area"],"tags":{"military":"range"},"addTags":{"landuse":"military","military":"range"}},"landuse/military/training_area":{"icon":"temaki-military","fields":["name"],"geometry":["point","area"],"tags":{"military":"training_area"},"addTags":{"landuse":"military","military":"training_area"}},"landuse/orchard":{"icon":"maki-park","fields":["name","operator","trees"],"moreFields":["address","email","fax","phone","species/wikidata"],"geometry":["area"],"tags":{"landuse":"orchard"}},"landuse/plant_nursery":{"icon":"fas-seedling","fields":["name","operator","plant"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"plant_nursery"}},"landuse/quarry":{"icon":"temaki-pick_hammer","geometry":["area","point"],"fields":["name","operator","resource"],"moreFields":["address","email","fax","phone"],"tags":{"landuse":"quarry"}},"landuse/railway":{"icon":"temaki-train","fields":["operator"],"geometry":["area"],"tags":{"landuse":"railway"}},"landuse/recreation_ground":{"icon":"maki-pitch","geometry":["area"],"fields":["name"],"moreFields":["address","email","fax","phone"],"tags":{"landuse":"recreation_ground"}},"landuse/religious":{"icon":"maki-place-of-worship","geometry":["area"],"fields":["name","religion","denomination"],"moreFields":["address","email","fax","phone"],"tags":{"landuse":"religious"}},"landuse/residential":{"icon":"maki-residential-community","fields":["name","residential"],"geometry":["area"],"tags":{"landuse":"residential"},"matchScore":0.9},"landuse/residential/apartments":{"icon":"maki-residential-community","fields":["name","operator","address"],"geometry":["point","area"],"tags":{"residential":"apartments"},"addTags":{"landuse":"residential","residential":"apartments"},"reference":{"key":"residential","value":"apartments"}},"landuse/residential/trailer_park":{"icon":"temaki-manufactured_home","fields":["name","operator","address"],"geometry":["point","area"],"tags":{"residential":"trailer_park"},"addTags":{"landuse":"residential","residential":"trailer_park"},"reference":{"key":"residential","value":"trailer_park"}},"landuse/retail":{"icon":"maki-commercial","geometry":["area"],"fields":["name"],"moreFields":["address","email","fax","phone"],"tags":{"landuse":"retail"},"matchScore":0.9},"landuse/salt_pond":{"icon":"maki-triangle-stroked","fields":["name","operator"],"geometry":["area"],"tags":{"landuse":"salt_pond"}},"landuse/vineyard":{"icon":"temaki-grapes","fields":["name","operator","grape_variety"],"moreFields":["address","email","fax","phone"],"geometry":["area"],"tags":{"landuse":"vineyard"},"addTags":{"landuse":"vineyard","crop":"grape"},"removeTags":{"landuse":"vineyard","crop":"grape","grape_variety":"*"}},"landuse/winter_sports":{"icon":"fas-skiing","geometry":["area"],"fields":["name","operator"],"moreFields":["access_simple","address","opening_hours","opening_hours/covid19"],"tags":{"landuse":"winter_sports"}},"leisure/adult_gaming_centre":{"icon":"temaki-casino","fields":["{amenity/casino}"],"moreFields":["{amenity/casino}"],"geometry":["point","area"],"tags":{"leisure":"adult_gaming_centre"}},"leisure/amusement_arcade":{"icon":"maki-gaming","fields":["name","operator","address","building_area_yes"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","max_age","min_age","opening_hours","opening_hours/covid19","payment_multi","phone","smoking","wheelchair"],"geometry":["point","area"],"tags":{"leisure":"amusement_arcade"}},"leisure/bandstand":{"icon":"fas-music","fields":["name","building_area_yes","operator"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"leisure":"bandstand"}},"leisure/beach_resort":{"icon":"fas-umbrella-beach","fields":["name","address","opening_hours","fee","payment_multi_fee","charge_fee"],"moreFields":["email","fax","gnis/feature_id-US","opening_hours/covid19","phone","smoking"],"geometry":["point","area"],"tags":{"leisure":"beach_resort"}},"leisure/bird_hide":{"icon":"temaki-binoculars","fields":["name","building_area_yes","address","opening_hours"],"moreFields":["opening_hours/covid19"],"geometry":["point","area"],"tags":{"leisure":"bird_hide"}},"leisure/bleachers":{"icon":"temaki-bleachers","geometry":["area"],"tags":{"leisure":"bleachers"}},"leisure/bowling_alley":{"icon":"temaki-bowling","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","min_age","opening_hours/covid19","payment_multi","phone","smoking","wheelchair"],"geometry":["point","area"],"tags":{"leisure":"bowling_alley"}},"leisure/common":{"icon":"temaki-pedestrian","fields":["name","access_simple"],"moreFields":["gnis/feature_id-US"],"geometry":["area","point"],"tags":{"leisure":"common"}},"leisure/dance":{"icon":"fas-music","fields":["name","operator","address","building_area_yes","opening_hours","dance/style"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","payment_multi","phone"],"geometry":["point","area"],"tags":{"leisure":"dance"}},"leisure/dancing_school":{"icon":"fas-music","fields":["name","operator","address","building_area_yes","opening_hours","dance/style"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","payment_multi","phone"],"geometry":["point","area"],"tags":{"leisure":"dance","dance:teaching":"yes"},"reference":{"key":"leisure","value":"dance"}},"leisure/disc_golf_course":{"icon":"temaki-disc_golf_basket","fields":["name","operator","access_simple","fee","payment_multi_fee","charge_fee","opening_hours"],"moreFields":["address","dog","email","fax","gnis/feature_id-US","lit","opening_hours/covid19","phone","wheelchair"],"geometry":["area","point"],"tags":{"leisure":"disc_golf_course"},"addTags":{"leisure":"disc_golf_course","sport":"disc_golf"}},"leisure/dog_park":{"icon":"maki-dog-park","fields":["name","operator","operator/type","address","access_simple","website"],"moreFields":["dog","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","phone","ref"],"geometry":["area","point"],"tags":{"leisure":"dog_park"}},"leisure/escape_game":{"icon":"fas-puzzle-piece","fields":["name","address","building_area_yes","opening_hours","website","fee","payment_multi_fee","charge_fee","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["air_conditioning","email","fax","level","opening_hours/covid19","phone","smoking","wheelchair"],"geometry":["point","area"],"tags":{"leisure":"escape_game"}},"leisure/firepit":{"icon":"temaki-campfire","fields":["access_simple","seasonal","width"],"moreFields":["ref"],"geometry":["point","area"],"tags":{"leisure":"firepit"}},"leisure/fishing":{"icon":"fas-fish","fields":["name","access_simple","fishing"],"geometry":["vertex","point","area"],"tags":{"leisure":"fishing"}},"leisure/fitness_centre":{"icon":"fas-dumbbell","fields":["name","sport","address","building_area_yes","opening_hours","phone","website"],"moreFields":["branch_brand","brand","charge_fee","email","fax","fee","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","payment_multi"],"geometry":["point","area"],"tags":{"leisure":"fitness_centre"}},"leisure/fitness_centre/yoga":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_centre","sport":"yoga"},"reference":{"key":"sport","value":"yoga"}},"leisure/fitness_station":{"icon":"temaki-horizontal_bar","fields":["fitness_station","ref","wheelchair","blind"],"moreFields":["access_simple","opening_hours","opening_hours/covid19"],"geometry":["point","area"],"tags":{"leisure":"fitness_station"},"addTags":{"leisure":"fitness_station","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/balance_beam":{"icon":"temaki-balance_beam","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"balance_beam"},"addTags":{"leisure":"fitness_station","fitness_station":"balance_beam","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/box":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"box"},"addTags":{"leisure":"fitness_station","fitness_station":"box","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/horizontal_bar":{"icon":"temaki-horizontal_bar","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"horizontal_bar"},"addTags":{"leisure":"fitness_station","fitness_station":"horizontal_bar","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/horizontal_ladder":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"horizontal_ladder"},"addTags":{"leisure":"fitness_station","fitness_station":"horizontal_ladder","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/hyperextension":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"hyperextension"},"addTags":{"leisure":"fitness_station","fitness_station":"hyperextension","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/parallel_bars":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"parallel_bars"},"addTags":{"leisure":"fitness_station","fitness_station":"parallel_bars","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/push-up":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"push-up"},"addTags":{"leisure":"fitness_station","fitness_station":"push-up","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/rings":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"rings"},"addTags":{"leisure":"fitness_station","fitness_station":"rings","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/sign":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"sign"},"addTags":{"leisure":"fitness_station","fitness_station":"sign","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/sit-up":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"sit-up"},"addTags":{"leisure":"fitness_station","fitness_station":"sit-up","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/stairs":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"stairs"},"addTags":{"leisure":"fitness_station","fitness_station":"stairs","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/garden":{"icon":"maki-garden","fields":["name","garden/type","operator","operator/type","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["email","fax","gnis/feature_id-US","phone"],"geometry":["point","area"],"tags":{"leisure":"garden"}},"leisure/garden/botanical":{"icon":"maki-garden","geometry":["point","area"],"tags":{"leisure":"garden","garden:type":"botanical"},"reference":{"key":"garden:type","value":"botanical"}},"leisure/garden/community":{"icon":"maki-garden","geometry":["point","area"],"tags":{"leisure":"garden","garden:type":"community"},"reference":{"key":"garden:type","value":"community"}},"leisure/garden/residential":{"icon":"maki-garden","geometry":["area"],"tags":{"leisure":"garden","garden:type":"residential"},"reference":{"key":"garden:type"}},"leisure/golf_course":{"icon":"maki-golf","fields":["name","operator","address","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","opening_hours/covid19","payment_multi","phone"],"geometry":["area","point"],"tags":{"leisure":"golf_course"}},"leisure/hackerspace":{"icon":"fas-code","fields":["name","address","building_area_yes","opening_hours","website","fee","payment_multi_fee","charge_fee","internet_access","internet_access/fee","internet_access/ssid"],"moreFields":["air_conditioning","email","fax","gnis/feature_id-US","level","opening_hours/covid19","phone","smoking","wheelchair"],"geometry":["point","area"],"tags":{"leisure":"hackerspace"}},"leisure/horse_riding":{"icon":"maki-horse-riding","fields":["name","access_simple","operator","address"],"moreFields":["email","fax","gnis/feature_id-US","opening_hours","opening_hours/covid19","payment_multi","phone"],"geometry":["point","area"],"tags":{"leisure":"horse_riding"}},"leisure/ice_rink":{"icon":"fas-skating","fields":["name","seasonal","sport_ice","operator","address","building","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","payment_multi","phone"],"geometry":["area","point"],"tags":{"leisure":"ice_rink"}},"leisure/indoor_play":{"icon":"temaki-slide","fields":["name","address","building_area_yes","opening_hours","phone","website"],"moreFields":["blind","branch_brand","brand","charge_fee","dog","email","fax","fee","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","max_age","min_age","opening_hours/covid19","operator","payment_multi","wheelchair"],"geometry":["point","area"],"tags":{"leisure":"indoor_play"}},"leisure/marina":{"icon":"temaki-sailboat","fields":["name","operator","capacity","fee","payment_multi_fee","charge_fee","sanitary_dump_station","power_supply"],"moreFields":["address","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","phone","seamark/type","vhf"],"geometry":["area","point","vertex"],"tags":{"leisure":"marina"},"addTags":{"leisure":"marina","seamark:type":"harbour","seamark:harbour:category":"marina"}},"leisure/miniature_golf":{"icon":"temaki-golf_green","fields":["name","operator","address","opening_hours","fee","payment_multi_fee","charge_fee"],"moreFields":["email","fax","gnis/feature_id-US","opening_hours/covid19","phone"],"geometry":["area","point"],"tags":{"leisure":"miniature_golf"}},"leisure/nature_reserve":{"icon":"maki-park","geometry":["area","point"],"fields":["name","operator","operator/type","address","opening_hours"],"moreFields":["access_simple","dog","email","fax","gnis/feature_id-US","opening_hours/covid19","phone"],"tags":{"leisure":"nature_reserve"}},"leisure/outdoor_seating":{"icon":"maki-picnic-site","geometry":["point","area"],"fields":["name","operator","capacity","lit","seasonal","heating"],"moreFields":["level","wheelchair"],"tags":{"leisure":"outdoor_seating"}},"leisure/park":{"icon":"temaki-tree_and_bench","fields":["name","operator","operator/type","address","opening_hours"],"moreFields":["access_simple","dog","email","fax","gnis/feature_id-US","opening_hours/covid19","phone","smoking"],"geometry":["area","point"],"tags":{"leisure":"park"}},"leisure/picnic_table":{"icon":"maki-picnic-site","fields":["material","lit","bench","colour"],"moreFields":["height","level","manufacturer","operator"],"geometry":["point"],"tags":{"leisure":"picnic_table"}},"leisure/picnic_table/chess":{"icon":"fas-chess-pawn","geometry":["point"],"tags":{"leisure":"picnic_table","sport":"chess"},"reference":{"key":"sport","value":"chess"}},"leisure/pitch":{"icon":"maki-pitch","fields":["name","sport","access_simple","surface","lit"],"moreFields":["address","charge_fee","covered","fee","gnis/feature_id-US","indoor","payment_multi_fee"],"geometry":["area","point"],"tags":{"leisure":"pitch"}},"leisure/pitch/american_football":{"icon":"maki-american-football","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"american_football"},"reference":{"key":"sport","value":"american_football"}},"leisure/pitch/american_handball":{"icon":"temaki-wall","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"american_handball"},"reference":{"key":"sport","value":"american_handball"}},"leisure/pitch/archery":{"icon":"temaki-archery","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"archery"},"reference":{"key":"sport","value":"archery"}},"leisure/pitch/australian_football":{"icon":"maki-american-football","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"australian_football"},"reference":{"key":"sport","value":"australian_football"}},"leisure/pitch/badminton":{"icon":"maki-tennis","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"badminton"},"reference":{"key":"sport","value":"badminton"}},"leisure/pitch/baseball":{"icon":"maki-baseball","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"baseball"},"reference":{"key":"sport","value":"baseball"}},"leisure/pitch/basketball":{"icon":"maki-basketball","fields":["{leisure/pitch}","hoops"],"geometry":["area","point"],"tags":{"leisure":"pitch","sport":"basketball"},"reference":{"key":"sport","value":"basketball"}},"leisure/pitch/beachvolleyball":{"icon":"maki-volleyball","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"beachvolleyball"},"addTags":{"leisure":"pitch","sport":"beachvolleyball","surface":"sand"},"reference":{"key":"sport","value":"beachvolleyball"}},"leisure/pitch/boules":{"icon":"maki-pitch","fields":["name","boules","{leisure/pitch}"],"geometry":["area","point"],"tags":{"leisure":"pitch","sport":"boules"},"reference":{"key":"sport","value":"boules"}},"leisure/pitch/bowls":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"bowls"},"reference":{"key":"sport","value":"bowls"}},"leisure/pitch/chess":{"icon":"fas-chess-bishop","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"chess"},"reference":{"key":"sport","value":"chess"}},"leisure/pitch/cricket":{"icon":"maki-cricket","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"cricket"},"reference":{"key":"sport","value":"cricket"}},"leisure/pitch/equestrian":{"icon":"maki-horse-riding","fields":["{leisure/pitch}"],"geometry":["area","point"],"tags":{"leisure":"pitch","sport":"equestrian"},"reference":{"key":"sport","value":"equestrian"}},"leisure/pitch/field_hockey":{"icon":"temaki-field_hockey","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"field_hockey"},"reference":{"key":"sport","value":"field_hockey"}},"leisure/pitch/four_square":{"icon":"fas-border-all","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"four_square"},"reference":{"key":"sport","value":"four_square"}},"leisure/pitch/funnel_ball":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"funnel_ball"},"reference":{"key":"sport","value":"funnel_ball"}},"leisure/pitch/futsal":{"icon":"maki-soccer","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"futsal"},"reference":{"key":"sport","value":"futsal"}},"leisure/pitch/gaga":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"gaga"},"reference":{"key":"sport","value":"gaga"}},"leisure/pitch/handball":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"handball"},"reference":{"key":"sport","value":"handball"}},"leisure/pitch/horseshoes":{"icon":"temaki-horseshoes","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"horseshoes"},"reference":{"key":"sport","value":"horseshoes"}},"leisure/pitch/netball":{"icon":"maki-volleyball","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"netball"},"reference":{"key":"sport","value":"netball"}},"leisure/pitch/padel":{"icon":"maki-tennis","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"padel"},"reference":{"key":"sport","value":"padel"}},"leisure/pitch/paintball":{"icon":"fas-crosshairs","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"paintball"},"reference":{"key":"sport","value":"paintball"}},"leisure/pitch/pickleball":{"icon":"maki-tennis","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"pickleball"},"reference":{"key":"sport","value":"pickleball"}},"leisure/pitch/rugby_league":{"icon":"maki-american-football","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"rugby_league"},"reference":{"key":"sport","value":"rugby_league"}},"leisure/pitch/rugby_union":{"icon":"maki-american-football","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"rugby_union"},"reference":{"key":"sport","value":"rugby_union"}},"leisure/pitch/shooting":{"icon":"fas-crosshairs","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"shooting"},"reference":{"key":"sport","value":"shooting"}},"leisure/pitch/shuffleboard":{"icon":"temaki-shuffleboard","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"shuffleboard"},"reference":{"key":"sport","value":"shuffleboard"}},"leisure/pitch/skateboard":{"icon":"maki-skateboard","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"skateboard"},"reference":{"key":"sport","value":"skateboard"}},"leisure/pitch/soccer":{"icon":"maki-soccer","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"soccer"},"reference":{"key":"sport","value":"soccer"}},"leisure/pitch/softball":{"icon":"maki-baseball","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"softball"},"reference":{"key":"sport","value":"softball"}},"leisure/pitch/table_soccer":{"fields":["name","lit","access_simple"],"geometry":["area","point"],"tags":{"leisure":"pitch","sport":"table_soccer"},"reference":{"key":"sport","value":"table_soccer"}},"leisure/pitch/table_tennis":{"icon":"fas-table-tennis","fields":["name","lit","access_simple"],"geometry":["area","point"],"tags":{"leisure":"pitch","sport":"table_tennis"},"reference":{"key":"sport","value":"table_tennis"}},"leisure/pitch/tennis":{"icon":"maki-tennis","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"tennis"},"reference":{"key":"sport","value":"tennis"}},"leisure/pitch/tetherball":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"tetherball"},"reference":{"key":"sport","value":"tetherball"}},"leisure/pitch/volleyball":{"icon":"maki-volleyball","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"volleyball"},"reference":{"key":"sport","value":"volleyball"}},"leisure/playground":{"icon":"maki-playground","fields":["name","operator","playground/theme","surface","access_simple","min_age","max_age"],"moreFields":["blind","dog","gnis/feature_id-US","indoor","wheelchair"],"geometry":["area","point"],"tags":{"leisure":"playground"}},"leisure/playground/indoor":{"icon":"maki-playground","geometry":["area","point"],"tags":{"leisure":"playground","indoor":"yes"}},"leisure/resort":{"icon":"maki-lodging","fields":["name","operator","resort","address","opening_hours"],"moreFields":["access_simple","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","opening_hours/covid19","payment_multi","phone"],"geometry":["point","area"],"tags":{"leisure":"resort"}},"leisure/sauna":{"icon":"fas-thermometer-three-quarters","fields":["name","operator","address","opening_hours","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["email","fax","gnis/feature_id-US","level","opening_hours/covid19","phone"],"geometry":["point","area"],"tags":{"leisure":"sauna"}},"leisure/slipway_drivable":{"icon":"maki-slipway","fields":["{leisure/slipway}","lanes"],"moreFields":["{leisure/slipway}"],"geometry":["line"],"tags":{"leisure":"slipway","highway":"service"},"addTags":{"leisure":"slipway","highway":"service","service":"slipway"},"matchScore":1.1},"leisure/slipway":{"icon":"maki-slipway","fields":["name","surface","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["lit","opening_hours","opening_hours/covid19","seamark/type","width"],"geometry":["point","vertex","line"],"tags":{"leisure":"slipway"}},"leisure/sports_centre":{"icon":"maki-pitch","fields":["name","operator","operator/type","sport","building_area","address","fee","opening_hours","payment_multi_fee","charge_fee"],"moreFields":["access_simple","email","fax","gnis/feature_id-US","level","opening_hours/covid19","phone"],"geometry":["point","area"],"tags":{"leisure":"sports_centre"}},"leisure/sports_centre/climbing":{"icon":"temaki-abseiling","geometry":["point","area"],"fields":["{leisure/sports_centre}","building_area_yes"],"tags":{"leisure":"sports_centre","sport":"climbing"},"reference":{"key":"sport","value":"climbing"}},"leisure/sports_centre/horse_racing":{"icon":"maki-racetrack-horse","geometry":["area","point"],"tags":{"leisure":"sports_centre","sport":"horse_racing"},"reference":{"key":"sport","value":"horse_racing"}},"leisure/sports_centre/shooting":{"icon":"fas-crosshairs","geometry":["area","point"],"tags":{"leisure":"sports_centre","sport":"shooting"},"reference":{"key":"sport","value":"shooting"}},"leisure/sports_centre/swimming":{"icon":"fas-swimmer","geometry":["area","point"],"tags":{"leisure":"sports_centre","sport":"swimming"},"reference":{"key":"sport","value":"swimming"}},"leisure/sports_hall":{"icon":"maki-pitch","fields":["name","operator","sport","address","building_area_yes","opening_hours","access_simple"],"moreFields":["air_conditioning","level","opening_hours/covid19","fee","payment_multi_fee","charge_fee","wheelchair"],"geometry":["point","area"],"tags":{"leisure":"sports_hall"}},"leisure/stadium":{"icon":"maki-pitch","fields":["name","operator","sport","address"],"moreFields":["email","fax","gnis/feature_id-US","phone"],"geometry":["point","area"],"tags":{"leisure":"stadium"}},"leisure/swimming_area":{"icon":"fas-swimmer","fields":["name","access_simple","supervised","fee","payment_multi_fee","charge_fee","lit"],"moreFields":["opening_hours","opening_hours/covid19","operator"],"geometry":["area"],"tags":{"leisure":"swimming_area"}},"leisure/swimming_pool":{"icon":"fas-swimming-pool","fields":["name","access_simple","lit","location_pool","length","swimming_pool"],"moreFields":["address","level","gnis/feature_id-US","opening_hours","opening_hours/covid19","operator"],"geometry":["area","point"],"tags":{"leisure":"swimming_pool"}},"leisure/track":{"icon":"temaki-racetrack_oval","fields":["surface","sport_racing_nonmotor","lit","width","lanes"],"moreFields":["access","covered","gnis/feature_id-US","indoor","level"],"geometry":["line","point","area"],"tags":{"leisure":"track"}},"leisure/track/cycling":{"icon":"maki-racetrack-cycling","fields":["name","surface","sport_racing_nonmotor","lit","width","lanes"],"geometry":["point","line","area"],"tags":{"leisure":"track","sport":"cycling"},"reference":{"key":"sport","value":"cycling"}},"leisure/track/horse_racing":{"icon":"maki-racetrack-horse","fields":["name","surface","sport_racing_nonmotor","lit","width","lanes"],"geometry":["point","line","area"],"tags":{"leisure":"track","sport":"horse_racing"},"reference":{"key":"sport","value":"horse_racing"}},"leisure/track/running":{"icon":"fas-running","fields":["name","surface","sport_racing_nonmotor","lit","width","lanes"],"geometry":["point","line","area"],"tags":{"leisure":"track","sport":"running"},"reference":{"key":"sport","value":"running"}},"leisure/trampoline_park":{"icon":"fas-chevron-circle-up","fields":["name","address","building_area_yes","opening_hours","phone","website"],"moreFields":["branch_brand","brand","charge_fee","email","fax","fee","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","opening_hours/covid19","operator","payment_multi"],"geometry":["point","area"],"tags":{"leisure":"trampoline_park"}},"leisure/water_park":{"icon":"fas-swimmer","fields":["{tourism/theme_park}","sport"],"moreFields":["{tourism/theme_park}"],"geometry":["area","point"],"tags":{"leisure":"water_park"}},"line":{"fields":["name"],"geometry":["line"],"tags":{},"matchScore":0.1},"man_made/courtyard":{"icon":"maki-square-stroked","fields":["name"],"moreFields":[],"geometry":["area"],"tags":{"man_made":"courtyard"},"searchable":false},"man_made/yes":{"icon":"temaki-storage_tank","fields":["name","man_made","{man_made}"],"geometry":["point","vertex","line","area"],"tags":{"man_made":"yes"},"matchScore":0.5,"searchable":false},"man_made/adit":{"icon":"temaki-adit_profile","geometry":["point","vertex","area"],"fields":["name","operator","resource","direction"],"moreFields":["gnis/feature_id-US"],"tags":{"man_made":"adit"}},"man_made/antenna":{"icon":"temaki-antenna","fields":["communication_multi","operator","manufacturer","height"],"geometry":["point"],"tags":{"man_made":"antenna"}},"man_made/beacon":{"icon":"maki-communications-tower","fields":["name","height"],"moreFields":["seamark/type"],"geometry":["point","vertex","area"],"tags":{"man_made":"beacon"},"matchScore":0.5},"man_made/beehive":{"icon":"fas-archive","geometry":["point","area"],"fields":["ref","operator","seasonal","height","colour"],"moreFields":["manufacturer"],"tags":{"man_made":"beehive"}},"man_made/breakwater":{"fields":["material","seamark/type"],"geometry":["line","area"],"tags":{"man_made":"breakwater"}},"man_made/bridge":{"icon":"maki-bridge","fields":["name","bridge_combo","layer","maxweight"],"moreFields":["gnis/feature_id-US","manufacturer","material","seamark/type"],"geometry":["area"],"tags":{"man_made":"bridge"},"addTags":{"man_made":"bridge","layer":"1"},"removeTags":{"man_made":"bridge","layer":"*"},"reference":{"key":"man_made","value":"bridge"}},"man_made/bunker_silo":{"icon":"temaki-bunker_silo","fields":["content"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"bunker_silo"}},"man_made/cairn":{"icon":"temaki-cairn","fields":["height","ele","ele_node","check_date"],"moreFields":["colour","material","operator","ref"],"geometry":["point","area"],"tags":{"man_made":"cairn"}},"man_made/carpet_hanger":{"icon":"maki-picnic-site","fields":["material","height","colour"],"geometry":["point","line"],"tags":{"man_made":"carpet_hanger"}},"man_made/chimney":{"icon":"temaki-chimney","fields":["operator","material","height"],"geometry":["point","area"],"tags":{"man_made":"chimney"}},"man_made/clearcut":{"icon":"maki-logging","geometry":["area"],"tags":{"man_made":"clearcut"}},"man_made/compass_rose":{"icon":"temaki-compass","geometry":["point","area"],"tags":{"man_made":"compass_rose"}},"man_made/crane":{"icon":"temaki-crane","fields":["operator","manufacturer","height","crane/type"],"geometry":["point","line","vertex","area"],"tags":{"man_made":"crane"}},"man_made/crane/gantry_crane":{"icon":"temaki-crane","geometry":["point","vertex","area"],"tags":{"man_made":"crane","crane:type":"gantry_crane"},"reference":{"key":"crane:type","value":"gantry_crane"}},"man_made/crane/portal_crane":{"icon":"temaki-crane","geometry":["point","vertex","area"],"tags":{"man_made":"crane","crane:type":"portal_crane"},"reference":{"key":"crane:type","value":"portal_crane"}},"man_made/cross":{"icon":"maki-religious-christian","fields":["name","material","height","ele_node","inscription","direction"],"geometry":["point","vertex"],"tags":{"man_made":"cross"}},"man_made/cutline":{"icon":"maki-logging","geometry":["line"],"tags":{"man_made":"cutline"}},"man_made/dovecote":{"icon":"fas-dove","fields":["operator","building_area_yes","height","capacity"],"moreFields":["layer","location"],"geometry":["area","point"],"tags":{"man_made":"dovecote"}},"man_made/dyke":{"geometry":["line"],"tags":{"man_made":"dyke"}},"man_made/embankment":{"geometry":["line"],"tags":{"man_made":"embankment"}},"man_made/flagpole":{"icon":"maki-embassy","fields":["operator","flag/type","country_flag","flag/name","flag/wikidata","lit","height"],"moreFields":["manufacturer","material"],"geometry":["point","vertex"],"tags":{"man_made":"flagpole"}},"man_made/gantry":{"icon":"temaki-toll_gantry","fields":["layer"],"moreFields":["material","maxheight","operator","ref"],"geometry":["line"],"tags":{"man_made":"gantry"}},"man_made/gasometer":{"icon":"temaki-storage_tank","fields":["content","building_area_yes"],"geometry":["point","area"],"tags":{"man_made":"gasometer"}},"man_made/goods_conveyor":{"icon":"temaki-conveyor","fields":["name","ref","operator","oneway_yes","resource","width"],"moreFields":["colour","covered","indoor","lit","manufacturer","material"],"geometry":["line"],"tags":{"man_made":"goods_conveyor"}},"man_made/groyne":{"fields":["material","seamark/type"],"geometry":["line","area"],"tags":{"man_made":"groyne"}},"man_made/lighthouse":{"icon":"maki-lighthouse","fields":["name","operator","building_area_yes","height"],"moreFields":["address","email","fax","gnis/feature_id-US","phone","seamark/type"],"geometry":["point","vertex","area"],"tags":{"man_made":"lighthouse"}},"man_made/manhole":{"icon":"temaki-manhole","fields":["manhole","operator","label","ref"],"geometry":["point","vertex"],"tags":{"man_made":"manhole"}},"man_made/manhole/drain":{"icon":"temaki-manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"drain"},"addTags":{"man_made":"manhole","manhole":"drain"}},"man_made/manhole/gas":{"icon":"temaki-gas_manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"gas"},"addTags":{"man_made":"manhole","manhole":"gas"}},"man_made/manhole/power":{"icon":"temaki-power_manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"power"},"addTags":{"man_made":"manhole","manhole":"power"}},"man_made/manhole/sewer":{"icon":"temaki-waste_manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"sewer"},"addTags":{"man_made":"manhole","manhole":"sewer"}},"man_made/manhole/telecom":{"icon":"temaki-cable_manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"telecom"},"addTags":{"man_made":"manhole","manhole":"telecom"}},"man_made/manhole/water":{"icon":"temaki-waste_manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"water"},"addTags":{"man_made":"manhole","manhole":"water"}},"man_made/mast":{"icon":"temaki-mast","fields":["tower/type","tower/construction","height"],"moreFields":["communication_multi","gnis/feature_id-US","manufacturer","material"],"geometry":["point","vertex"],"tags":{"man_made":"mast"}},"man_made/mast/communication":{"icon":"temaki-mast_communication","fields":["{man_made/mast}","communication_multi"],"moreFields":["{man_made/mast}","mimics"],"geometry":["point","vertex"],"tags":{"man_made":"mast","tower:type":"communication"},"reference":{"key":"tower:type","value":"communication"}},"man_made/mast/communication/mobile_phone":{"icon":"temaki-mast_communication","geometry":["point","vertex"],"tags":{"man_made":"mast","tower:type":"communication","communication:mobile_phone":"yes"},"reference":{"key":"communication:mobile_phone","value":"yes"}},"man_made/mast/communication/radio":{"icon":"temaki-mast_communication","geometry":["point","vertex"],"tags":{"man_made":"mast","tower:type":"communication","communication:radio":"yes"},"reference":{"key":"communication:radio","value":"yes"}},"man_made/mast/communication/television":{"icon":"temaki-mast_communication","geometry":["point","vertex"],"tags":{"man_made":"mast","tower:type":"communication","communication:television":"yes"},"reference":{"key":"communication:television","value":"yes"}},"man_made/mast/lighting":{"icon":"temaki-mast_lighting","fields":["{man_made/mast}","direction_point"],"moreFields":["{man_made/mast}"],"geometry":["point"],"tags":{"man_made":"mast","tower:type":"lighting"},"reference":{"key":"tower:type","value":"lighting"}},"man_made/mineshaft":{"icon":"temaki-mineshaft_cage","geometry":["point","area"],"fields":["name","operator","resource"],"moreFields":["gnis/feature_id-US"],"tags":{"man_made":"mineshaft"}},"man_made/monitoring_station":{"icon":"temaki-antenna","geometry":["point","vertex","area"],"fields":["monitoring_multi","operator","manufacturer"],"moreFields":["ref"],"tags":{"man_made":"monitoring_station"}},"man_made/obelisk":{"icon":"temaki-obelisk","fields":["name","inscription","height","material","colour"],"geometry":["point","vertex","area"],"tags":{"man_made":"obelisk"}},"man_made/observatory":{"icon":"temaki-telescope","fields":["name","operator","address","access_simple","building_area_yes"],"moreFields":["email","fax","gnis/feature_id-US","phone"],"geometry":["point","area"],"tags":{"man_made":"observatory"}},"man_made/petroleum_well":{"icon":"temaki-oil_well","fields":["name","ref","operator","substance"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex"],"tags":{"man_made":"petroleum_well"}},"man_made/pier":{"icon":"temaki-pier_fixed","fields":["name","surface","floating","width","access","lit"],"moreFields":["{highway/footway}","access","fishing","gnis/feature_id-US","incline"],"geometry":["line","area"],"tags":{"man_made":"pier"}},"man_made/pier/floating":{"icon":"temaki-pier_floating","geometry":["line","area"],"tags":{"man_made":"pier","floating":"yes"}},"man_made/pipeline":{"icon":"iD-pipeline-line","fields":["operator","location","substance","layer","diameter"],"geometry":["line"],"tags":{"man_made":"pipeline"}},"man_made/pipeline/underground":{"icon":"iD-pipeline-line","geometry":["line"],"tags":{"man_made":"pipeline","location":"underground"},"addTags":{"man_made":"pipeline","location":"underground","layer":"-1"}},"man_made/planter":{"icon":"maki-garden","geometry":["point","vertex","area"],"fields":["material","barrier_planter"],"tags":{"man_made":"planter"},"matchScore":0.9},"man_made/pumping_station":{"icon":"temaki-powered_pump","geometry":["point","area"],"fields":["name","operator","address"],"moreFields":["gnis/feature_id-US"],"tags":{"man_made":"pumping_station"}},"man_made/reservoir_covered":{"icon":"maki-water","fields":["name","operator","capacity_volume","access_simple","layer"],"moreFields":["ref"],"geometry":["area","point"],"tags":{"man_made":"reservoir_covered"}},"man_made/silo":{"icon":"temaki-silo","fields":["crop","building_area_yes"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"silo"}},"man_made/storage_tank":{"icon":"temaki-storage_tank","fields":["content","operator","material","building_area","height","capacity_volume"],"moreFields":["layer","location","manufacturer"],"geometry":["area","point"],"tags":{"man_made":"storage_tank"}},"man_made/storage_tank/water":{"icon":"temaki-storage_tank","geometry":["point","area"],"moreFields":["{man_made/storage_tank}","covered","ref"],"tags":{"man_made":"storage_tank","content":"water"}},"man_made/street_cabinet":{"icon":"fas-door-closed","geometry":["point","area"],"fields":["ref","operator","street_cabinet","utility_semi","height","colour"],"moreFields":["model"],"tags":{"man_made":"street_cabinet"}},"man_made/surveillance":{"icon":"temaki-security_camera","geometry":["point","vertex"],"fields":["surveillance","surveillance/type","surveillance/zone","direction"],"tags":{"man_made":"surveillance"}},"man_made/surveillance/camera":{"icon":"temaki-security_camera","geometry":["point","vertex"],"fields":["surveillance","surveillance/type","camera/type","camera/mount","camera/direction","surveillance/zone","contact/webcam"],"moreFields":["manufacturer"],"tags":{"man_made":"surveillance","surveillance:type":"camera"}},"man_made/survey_point":{"icon":"temaki-benchmark_disk","fields":["name","ref","survey_point/structure","survey_point/purpose","ele_node"],"moreFields":["survey_point/datum_aligned","inscription"],"geometry":["point","vertex"],"tags":{"man_made":"survey_point"}},"man_made/tailings_pond":{"icon":"maki-water","fields":["name","resource","operator","intermittent"],"geometry":["area"],"tags":{"man_made":"tailings_pond"}},"man_made/torii":{"icon":"temaki-shinto","fields":["height","material","colour","lit"],"moreFields":["operator","ref"],"geometry":["point","vertex","line"],"tags":{"man_made":"torii"}},"man_made/tower":{"icon":"temaki-tower","fields":["tower/type","tower/construction","height","building_area_yes"],"moreFields":["architect","gnis/feature_id-US"],"geometry":["point","vertex","area"],"tags":{"man_made":"tower"}},"man_made/tower/bell_tower":{"icon":"fas-bell","moreFields":["{man_made/tower}","opening_hours","opening_hours/covid19"],"geometry":["point","area"],"tags":{"man_made":"tower","tower:type":"bell_tower"},"reference":{"key":"tower:type","value":"bell_tower"}},"man_made/tower/communication":{"icon":"temaki-tower_communication","fields":["{man_made/tower}","communication_multi","mimics"],"moreFields":["{man_made/tower}","mimics"],"geometry":["point","vertex","area"],"tags":{"man_made":"tower","tower:type":"communication"},"reference":{"key":"tower:type","value":"communication"}},"man_made/tower/cooling":{"icon":"temaki-cooling_tower","fields":["ref","operator","material","building_area_yes","height"],"moreFields":["layer"],"geometry":["area"],"tags":{"man_made":"tower","tower:type":"cooling"},"reference":{"key":"tower:type","value":"cooling"}},"man_made/tower/defensive":{"icon":"maki-castle","geometry":["point","area"],"tags":{"man_made":"tower","tower:type":"defensive"},"reference":{"key":"tower:type","value":"defensive"}},"man_made/tower/diving":{"icon":"temaki-diving","geometry":["point","area"],"fields":["{man_made/tower}","tower/platforms"],"tags":{"man_made":"tower","tower:type":"diving"},"reference":{"key":"tower:type","value":"diving"}},"man_made/tower/minaret":{"icon":"temaki-domed_tower","geometry":["point","area"],"tags":{"man_made":"tower","tower:type":"minaret"},"reference":{"key":"tower:type","value":"minaret"}},"man_made/tower/observation":{"icon":"maki-observation-tower","moreFields":["{man_made/tower}","opening_hours","opening_hours/covid19"],"geometry":["point","area"],"tags":{"man_made":"tower","tower:type":"observation"},"reference":{"key":"tower:type","value":"observation"}},"man_made/tower/pagoda":{"icon":"fas-vihara","moreFields":["{man_made/tower}","opening_hours","opening_hours/covid19"],"geometry":["point","area"],"tags":{"man_made":"tower","tower:type":"pagoda"},"reference":{"key":"tower:type","value":"pagoda"}},"man_made/tunnel":{"icon":"temaki-tunnel","fields":["name","tunnel_combo","layer","width","length","height"],"moreFields":["gnis/feature_id-US"],"geometry":["area"],"tags":{"man_made":"tunnel"},"addTags":{"man_made":"tunnel","layer":"-1"},"removeTags":{"man_made":"tunnel","layer":"*"},"reference":{"key":"man_made","value":"tunnel"}},"man_made/utility_pole":{"icon":"temaki-utility_pole","fields":["ref","operator","utility_semi","height","material"],"moreFields":["colour","manufacturer"],"geometry":["point","vertex"],"tags":{"man_made":"utility_pole"}},"man_made/video_wall":{"icon":"temaki-billboard","fields":["support","operator","height","min_height"],"moreFields":["ref","visibility"],"geometry":["point","vertex","line"],"tags":{"man_made":"video_wall"}},"man_made/wastewater_plant":{"icon":"temaki-waste","fields":["name","operator","address","ref"],"moreFields":["email","fax","gnis/feature_id-US","phone"],"geometry":["point","area"],"tags":{"man_made":"wastewater_plant"}},"man_made/water_tap":{"icon":"temaki-water_tap","fields":["ref","operator","drinking_water","access_simple"],"geometry":["point","vertex"],"tags":{"man_made":"water_tap"}},"man_made/water_tower":{"icon":"temaki-water_tower","fields":["operator","height"],"moreFields":["gnis/feature_id-US"],"geometry":["area","point"],"tags":{"man_made":"water_tower"}},"man_made/water_well":{"icon":"temaki-well_pump_manual","fields":["ref","operator","drinking_water","pump","access_simple"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"water_well"}},"man_made/water_works":{"icon":"temaki-powered_pump","fields":["name","operator","address"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"water_works"}},"man_made/watermill":{"icon":"maki-watermill","fields":["building_area_yes"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"watermill"}},"man_made/windmill":{"icon":"maki-windmill","fields":["building_area_yes"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"windmill"}},"man_made/windpump":{"icon":"temaki-windpump","fields":["ref","operator","height","material","manufacturer","lit"],"geometry":["point"],"tags":{"man_made":"windpump"}},"man_made/works":{"icon":"maki-industry","fields":["name","operator","address","building_area_yes","product"],"moreFields":["email","fax","gnis/feature_id-US","phone"],"geometry":["point","area"],"tags":{"man_made":"works"}},"man_made/works/brewery":{"icon":"temaki-storage_fermenter","fields":["{man_made/works}","website"],"moreFields":["{man_made/works}","min_age"],"geometry":["point","area"],"tags":{"man_made":"works","product":"beer"},"reference":{"key":"product","value":"beer"}},"marker":{"icon":"temaki-silo","fields":["ref","operator","marker","utility","colour","material","inscription"],"moreFields":["height","location","manufacturer","material"],"geometry":["point"],"tags":{"marker":"*"}},"marker/utility":{"icon":"temaki-silo","fields":["ref","operator","marker","utility","{marker}"],"geometry":["point"],"tags":{"marker":"*","utility":"*"}},"marker/utility/power":{"icon":"temaki-silo","fields":["ref","operator","marker","{marker}"],"geometry":["point"],"tags":{"marker":"*","utility":"power"}},"military/bunker":{"icon":"temaki-bunker","fields":["name","bunker_type","building_area_yes"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"military":"bunker"},"addTags":{"building":"bunker","military":"bunker"}},"military/checkpoint":{"icon":"temaki-military_checkpoint","fields":["name"],"geometry":["point","vertex","area"],"tags":{"military":"checkpoint"}},"military/nuclear_explosion_site":{"icon":"maki-danger","fields":["name"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex","area"],"tags":{"military":"nuclear_explosion_site"}},"military/office":{"icon":"temaki-military","fields":["name","building_area_yes"],"moreFields":["gnis/feature_id-US","level"],"geometry":["point","area"],"tags":{"military":"office"}},"military/trench":{"icon":"temaki-trench","fields":["name","trench"],"geometry":["point","line"],"tags":{"military":"trench"}},"natural/bare_rock":{"icon":"temaki-boulder3","geometry":["area"],"tags":{"natural":"bare_rock"}},"natural/bay":{"icon":"temaki-beach","geometry":["point","line","area"],"fields":["name"],"tags":{"natural":"bay"}},"natural/beach":{"icon":"temaki-beach","fields":["name","surface","lifeguard","supervised"],"geometry":["point","area"],"tags":{"natural":"beach"}},"natural/cape":{"icon":"temaki-cape_landform","fields":["name","ele_node"],"geometry":["point","vertex"],"tags":{"natural":"cape"}},"natural/cave_entrance":{"icon":"maki-triangle","geometry":["point","vertex","area"],"fields":["name","ele_node","access_simple","direction","fee","payment_multi_fee","charge_fee"],"tags":{"natural":"cave_entrance"}},"natural/cliff":{"icon":"temaki-cliff_falling_rocks","fields":["name","height"],"geometry":["point","vertex","line","area"],"tags":{"natural":"cliff"}},"natural/coastline":{"icon":"temaki-beach","geometry":["line"],"tags":{"natural":"coastline"}},"natural/fell":{"geometry":["area"],"tags":{"natural":"fell"}},"natural/geyser":{"icon":"maki-water","fields":["name","geyser/height","ele_node"],"geometry":["point"],"tags":{"natural":"geyser"}},"natural/glacier":{"icon":"temaki-snow","geometry":["area"],"tags":{"natural":"glacier"}},"natural/grassland":{"icon":"temaki-grass","geometry":["area"],"tags":{"natural":"grassland"}},"natural/heath":{"icon":"temaki-shrub_low","geometry":["area"],"tags":{"natural":"heath"}},"natural/hot_spring":{"icon":"maki-hot-spring","fields":["name","intermittent"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"natural":"hot_spring"}},"natural/mud":{"geometry":["area"],"tags":{"natural":"mud"}},"natural/peak":{"icon":"maki-mountain","fields":["name","ele_node"],"geometry":["point","vertex"],"tags":{"natural":"peak"}},"natural/reef":{"icon":"temaki-coral_reef","geometry":["area","point"],"tags":{"natural":"reef"}},"natural/ridge":{"icon":"temaki-mountain_range","geometry":["line"],"tags":{"natural":"ridge"}},"natural/rock":{"icon":"temaki-boulder2","fields":["name"],"geometry":["point","area"],"tags":{"natural":"rock"}},"natural/saddle":{"icon":"temaki-saddle","fields":["name","ele_node"],"geometry":["point","vertex"],"tags":{"natural":"saddle"}},"natural/sand":{"geometry":["area"],"tags":{"natural":"sand"}},"natural/scree":{"geometry":["area"],"tags":{"natural":"scree"}},"natural/scrub":{"icon":"temaki-shrub","moreFields":["leaf_type","leaf_cycle","species/wikidata"],"geometry":["area"],"tags":{"natural":"scrub"}},"natural/shingle":{"geometry":["area"],"tags":{"natural":"shingle"}},"natural/shrub":{"icon":"temaki-shrub","fields":["height"],"moreFields":["species/wikidata"],"geometry":["point","vertex"],"tags":{"natural":"shrub"}},"natural/spring":{"icon":"maki-water","fields":["name","drinking_water","intermittent"],"geometry":["point","vertex","area"],"tags":{"natural":"spring"}},"natural/stone":{"icon":"temaki-boulder1","fields":["name"],"geometry":["point","area"],"tags":{"natural":"stone"}},"natural/strait":{"icon":"iD-waterway-river","geometry":["point","line","area"],"fields":["name"],"tags":{"natural":"strait"}},"natural/tree_row":{"icon":"temaki-tree_row","fields":["leaf_type","leaf_cycle","denotation"],"moreFields":["species/wikidata"],"geometry":["line"],"tags":{"natural":"tree_row"}},"natural/tree_stump":{"icon":"temaki-tree_stump","geometry":["area","point"],"moreFields":["leaf_type_singular","leaf_cycle_singular","denotation","height","circumference","{natural/tree}"],"tags":{"natural":"tree_stump"}},"natural/tree":{"icon":"maki-park","fields":["leaf_type_singular","leaf_cycle_singular","denotation","height","circumference"],"moreFields":["genus","species","species/wikidata","taxon","diameter_crown","diameter"],"geometry":["point","vertex"],"tags":{"natural":"tree"}},"natural/valley":{"icon":"temaki-valley","fields":["name","ele_node"],"geometry":["vertex","point","line"],"tags":{"natural":"valley"}},"natural/volcano":{"icon":"maki-volcano","fields":["name","ele_node","volcano/status","volcano/type"],"geometry":["point","vertex"],"tags":{"natural":"volcano"}},"natural/water":{"icon":"maki-water","fields":["name","water","intermittent"],"moreFields":["fishing","gnis/feature_id-US","salt","tidal"],"geometry":["area"],"tags":{"natural":"water"}},"natural/water/basin":{"icon":"maki-water","fields":["name","basin","intermittent_yes"],"geometry":["area"],"tags":{"natural":"water","water":"basin"},"reference":{"key":"water","value":"basin"}},"natural/water/canal":{"icon":"iD-waterway-canal","fields":["{natural/water}","salt"],"geometry":["area"],"tags":{"natural":"water","water":"canal"},"reference":{"key":"water","value":"canal"}},"natural/water/lake":{"icon":"maki-water","fields":["{natural/water}","salt","tidal"],"geometry":["area"],"tags":{"natural":"water","water":"lake"},"reference":{"key":"water","value":"lake"}},"natural/water/moat":{"icon":"maki-water","fields":["{natural/water}","salt"],"geometry":["area"],"tags":{"natural":"water","water":"moat"}},"natural/water/oxbow":{"icon":"maki-water","geometry":["area"],"tags":{"natural":"water","water":"oxbow"},"reference":{"key":"water","value":"oxbow"}},"natural/water/pond":{"icon":"maki-water","fields":["{natural/water}","salt"],"geometry":["area"],"tags":{"natural":"water","water":"pond"},"reference":{"key":"water","value":"pond"}},"natural/water/reservoir":{"icon":"maki-water","geometry":["area"],"tags":{"natural":"water","water":"reservoir"},"reference":{"key":"water","value":"reservoir"}},"natural/water/river":{"icon":"iD-waterway-river","fields":["water","intermittent","tidal"],"moreFields":[],"geometry":["area"],"tags":{"natural":"water","water":"river"},"reference":{"key":"water","value":"river"}},"natural/water/stream":{"icon":"iD-waterway-stream","fields":["water","intermittent"],"moreFields":[],"geometry":["area"],"tags":{"natural":"water","water":"stream"},"reference":{"key":"water","value":"stream"}},"natural/water/wastewater":{"icon":"temaki-waste","geometry":["area"],"tags":{"natural":"water","water":"wastewater"},"reference":{"key":"water","value":"wastewater"}},"natural/wetland":{"icon":"maki-wetland","fields":["wetland","salt","tidal"],"geometry":["point","area"],"tags":{"natural":"wetland"}},"natural/wetland/bog":{"icon":"maki-wetland","fields":[],"geometry":["area"],"tags":{"natural":"wetland","wetland":"bog"},"reference":{"key":"wetland","value":"bog"}},"natural/wetland/fen":{"icon":"maki-wetland","fields":[],"geometry":["area"],"tags":{"natural":"wetland","wetland":"fen"},"reference":{"key":"wetland","value":"fen"}},"natural/wetland/mangrove":{"icon":"maki-wetland","fields":["salt","tidal"],"geometry":["area"],"tags":{"natural":"wetland","wetland":"mangrove"},"reference":{"key":"wetland","value":"mangrove"}},"natural/wetland/marsh":{"icon":"maki-wetland","fields":[],"geometry":["area"],"tags":{"natural":"wetland","wetland":"marsh"},"reference":{"key":"wetland","value":"marsh"}},"natural/wetland/reedbed":{"icon":"maki-wetland","fields":[],"geometry":["area"],"tags":{"natural":"wetland","wetland":"reedbed"},"reference":{"key":"wetland","value":"reedbed"}},"natural/wetland/saltmarsh":{"icon":"maki-wetland","fields":["salt","tidal"],"geometry":["area"],"tags":{"natural":"wetland","wetland":"saltmarsh"},"reference":{"key":"wetland","value":"saltmarsh"}},"natural/wetland/string_bog":{"icon":"maki-wetland","fields":[],"geometry":["area"],"tags":{"natural":"wetland","wetland":"string_bog"},"reference":{"key":"wetland","value":"string_bog"}},"natural/wetland/swamp":{"icon":"temaki-swamp","fields":[],"moreFields":["tidal"],"geometry":["area"],"tags":{"natural":"wetland","wetland":"swamp"},"reference":{"key":"wetland","value":"swamp"}},"natural/wetland/tidalflat":{"icon":"maki-wetland","fields":["salt","tidal"],"geometry":["area"],"tags":{"natural":"wetland","wetland":"tidalflat"},"reference":{"key":"wetland","value":"tidalflat"}},"natural/wetland/wet_meadow":{"icon":"maki-wetland","fields":[],"geometry":["area"],"tags":{"natural":"wetland","wetland":"wet_meadow"},"reference":{"key":"wetland","value":"wet_meadow"}},"natural/wood":{"icon":"maki-park-alt1","fields":["name","leaf_type","leaf_cycle"],"moreFields":["species/wikidata"],"geometry":["area","point"],"tags":{"natural":"wood"}},"network/type/node_network-DE-NL-BE-LU":{"fields":["name","rwn_ref","expected_rwn_route_relations","rcn_ref","expected_rcn_route_relations"],"geometry":["vertex"],"tags":{"network:type":"node_network"},"locationSet":{"include":["be","de","lu","nl"]},"matchScore":0.2},"noexit/yes":{"icon":"maki-barrier","geometry":["vertex"],"tags":{"noexit":"yes"},"reference":{"key":"noexit","value":"*"}},"office":{"icon":"maki-suitcase","fields":["name","office","address","building_area_yes","opening_hours","phone","website"],"moreFields":["air_conditioning","baby_feeding","building/levels_building","ele","email","fax","gnis/feature_id-US","height_building","internet_access","internet_access/fee","internet_access/ssid","level","not/name","opening_hours/covid19","operator","ref/vatin","ref/FR/siret-FR","smoking","wheelchair"],"geometry":["point","vertex","area"],"tags":{"office":"*"},"matchScore":0.7},"office/administrative":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"administrative"},"searchable":false},"office/physician":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"physician"},"searchable":false},"office/travel_agent":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"travel_agent"},"reference":{"key":"shop","value":"travel_agency"},"searchable":false},"office/yes":{"icon":"maki-suitcase","fields":["name","office","{office}"],"geometry":["point","vertex","area"],"tags":{"office":"yes"},"searchable":false,"matchScore":0.8},"office/accountant":{"icon":"temaki-accounting","geometry":["point","area"],"tags":{"office":"accountant"}},"office/adoption_agency":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"adoption_agency"}},"office/advertising_agency":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"advertising_agency"}},"office/architect":{"icon":"fas-drafting-compass","geometry":["point","area"],"tags":{"office":"architect"}},"office/association":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"association"}},"office/bail_bond_agent-US-PH":{"locationSet":{"include":["us","ph"]},"icon":"maki-bank","moreFields":["{office}","currency_multi","payment_multi"],"geometry":["point","area"],"tags":{"office":"bail_bond_agent"}},"office/charity":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"charity"}},"office/company":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"company"}},"office/consulting":{"icon":"maki-suitcase","fields":["name","consulting","{office}"],"geometry":["point","area"],"tags":{"office":"consulting"}},"office/coworking":{"icon":"maki-suitcase","fields":["{office}","internet_access"],"moreFields":["internet_access/fee","internet_access/ssid"],"geometry":["point","area"],"tags":{"office":"coworking"}},"office/diplomatic":{"icon":"temaki-embassy","fields":["name","diplomatic","country","target","diplomatic/services","{office}"],"geometry":["point","area"],"tags":{"office":"diplomatic"}},"office/diplomatic/consulate":{"icon":"temaki-embassy","fields":["name","consulate","{office/diplomatic}"],"geometry":["point","area"],"tags":{"office":"diplomatic","diplomatic":"consulate"},"reference":{"key":"diplomatic","value":"consulate"}},"office/diplomatic/embassy":{"icon":"temaki-embassy","fields":["name","embassy","{office/diplomatic}"],"geometry":["point","area"],"tags":{"office":"diplomatic","diplomatic":"embassy"},"reference":{"key":"diplomatic","value":"embassy"}},"office/diplomatic/liaison":{"icon":"temaki-embassy","fields":["name","liaison","{office/diplomatic}"],"geometry":["point","area"],"tags":{"office":"diplomatic","diplomatic":"liaison"},"reference":{"key":"diplomatic","value":"liaison"}},"office/educational_institution":{"icon":"maki-school","geometry":["point","area"],"tags":{"office":"educational_institution"}},"office/employment_agency":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"employment_agency"}},"office/energy_supplier":{"icon":"temaki-briefcase_bolt","geometry":["point","area"],"tags":{"office":"energy_supplier"}},"office/estate_agent":{"icon":"temaki-real_estate_agency","moreFields":["branch_brand","brand","{office}"],"geometry":["point","area"],"tags":{"office":"estate_agent"}},"office/financial_advisor":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"financial_advisor"}},"office/financial":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"financial"}},"office/forestry":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"forestry"}},"office/foundation":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"foundation"}},"office/government":{"icon":"temaki-town_hall","fields":["name","government","{office}"],"geometry":["point","area"],"tags":{"office":"government"}},"office/government/prosecutor":{"icon":"maki-suitcase","fields":["{office}","operator"],"geometry":["point","area"],"tags":{"office":"government","government":"prosecutor"},"reference":{"key":"government","value":"prosecutor"}},"office/government/register_office":{"icon":"temaki-town_hall","fields":["{office}","operator"],"geometry":["point","area"],"tags":{"office":"government","government":"register_office"},"reference":{"key":"government","value":"register_office"}},"office/government/tax":{"icon":"temaki-town_hall","fields":["{office}","operator"],"geometry":["point","area"],"tags":{"office":"government","government":"tax"},"reference":{"key":"government","value":"tax"}},"office/graphic_design":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"graphic_design"}},"office/guide":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"guide"}},"office/insurance":{"icon":"temaki-briefcase_shield","moreFields":["branch_brand","brand","{office}"],"geometry":["point","area"],"tags":{"office":"insurance"}},"office/it":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"it"}},"office/lawyer":{"icon":"fas-balance-scale","geometry":["point","area"],"tags":{"office":"lawyer"}},"office/lawyer/notary":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"lawyer","lawyer":"notary"},"reference":{"key":"office","value":"notary"},"searchable":false},"office/moving_company":{"icon":"fas-people-carry","geometry":["point","area"],"tags":{"office":"moving_company"}},"office/newspaper":{"icon":"fas-newspaper","geometry":["point","area"],"tags":{"office":"newspaper"}},"office/ngo":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"ngo"}},"office/notary":{"icon":"fas-stamp","geometry":["point","area"],"tags":{"office":"notary"}},"office/political_party":{"icon":"maki-town-hall","geometry":["point","area"],"tags":{"office":"political_party"}},"office/private_investigator":{"icon":"fas-user-secret","geometry":["point","area"],"tags":{"office":"private_investigator"}},"office/property_management":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"property_management"}},"office/quango":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"quango"}},"office/religion":{"icon":"maki-suitcase","fields":["{office}","religion","denomination"],"geometry":["point","area"],"tags":{"office":"religion"}},"office/research":{"icon":"fas-flask","geometry":["point","area"],"tags":{"office":"research"}},"office/security":{"icon":"temaki-briefcase_shield","geometry":["point","area"],"tags":{"office":"security"}},"office/surveyor":{"icon":"fas-vest","geometry":["point","area"],"tags":{"office":"surveyor"}},"office/tax_advisor":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"tax_advisor"}},"office/telecommunication":{"icon":"maki-telephone","geometry":["point","area"],"tags":{"office":"telecommunication"}},"office/therapist":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"therapist"}},"office/union":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"union"}},"office/water_utility":{"icon":"maki-suitcase","fields":["{office}","operator"],"geometry":["point","area"],"tags":{"office":"water_utility"}},"pipeline/substation":{"icon":"temaki-powered_pump","fields":["name","substation_pipeline","operator","building","substance","ref"],"moreFields":["address"],"geometry":["area","point"],"tags":{"pipeline":"substation"}},"pipeline/valve":{"icon":"temaki-wheel","geometry":["vertex"],"fields":["ref","operator","valve","location","diameter"],"moreFields":["colour","manufacturer","material"],"tags":{"pipeline":"valve"}},"piste/downhill":{"icon":"fas-skiing","fields":["name","piste/type","piste/difficulty_downhill","piste/grooming_downhill","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"downhill"}},"piste/downhill/halfpipe":{"icon":"fas-snowboarding","geometry":["line","area"],"tags":{"piste:type":"downhill","man_made":"piste:halfpipe"},"reference":{"key":"man_made","value":"piste:halfpipe"}},"piste/hike":{"icon":"temaki-snow_shoeing","fields":["name","piste/type","piste/difficulty","piste/grooming_hike","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"hike"}},"piste/ice_skate":{"icon":"fas-skating","fields":["name","piste/type","sport_ice","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"ice_skate"}},"piste/nordic":{"icon":"fas-skiing-nordic","fields":["name","piste/type","piste/difficulty_nordic","piste/grooming_nordic","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"nordic"}},"piste/piste":{"icon":"fas-skiing","fields":["name","piste/type","piste/difficulty","piste/grooming","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"*"}},"piste/skitour":{"icon":"fas-skiing-nordic","fields":["name","piste/type","piste/difficulty_skitour","piste/grooming","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"skitour"}},"piste/sled":{"icon":"temaki-sledding","fields":["name","piste/type","piste/difficulty","piste/grooming","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"sled"}},"piste/sleigh":{"icon":"fas-sleigh","fields":["name","piste/type","piste/difficulty","piste/grooming","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"sleigh"}},"place/farm":{"icon":"maki-farm","geometry":["point","area"],"tags":{"place":"farm"},"searchable":false},"place/city_block":{"icon":"maki-triangle-stroked","geometry":["point","area"],"tags":{"place":"city_block"}},"place/city":{"icon":"maki-city","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"city"}},"place/hamlet":{"icon":"maki-triangle-stroked","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"hamlet"}},"place/island":{"icon":"temaki-island_trees_building","geometry":["point","area"],"tags":{"place":"island"}},"place/islet":{"icon":"temaki-islet_tree","geometry":["point","area"],"tags":{"place":"islet"}},"place/isolated_dwelling":{"icon":"maki-home","geometry":["point","area"],"tags":{"place":"isolated_dwelling"}},"place/locality":{"icon":"maki-triangle-stroked","geometry":["point","area"],"tags":{"place":"locality"}},"place/neighbourhood":{"icon":"maki-triangle-stroked","fields":["name","population","population/date","source/population"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"place":"neighbourhood"}},"place/plot":{"icon":"maki-triangle-stroked","geometry":["point","area"],"tags":{"place":"plot"}},"place/quarter":{"icon":"maki-triangle-stroked","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"quarter"}},"place/square":{"icon":"maki-marker-stroked","geometry":["point","area"],"tags":{"place":"square"}},"place/suburb":{"icon":"maki-triangle-stroked","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"suburb"}},"place/town":{"icon":"maki-town","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"town"}},"place/village":{"icon":"maki-village","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"village"}},"playground/activitypanel":{"icon":"maki-playground","geometry":["point","line","area"],"tags":{"playground":"activitypanel"}},"playground/aerialrotator":{"icon":"maki-playground","geometry":["point"],"tags":{"playground":"aerialrotator"}},"playground/balancebeam":{"icon":"temaki-balance_beam","geometry":["point","line"],"tags":{"playground":"balancebeam"}},"playground/basketrotator":{"icon":"maki-playground","geometry":["point"],"tags":{"playground":"basketrotator"}},"playground/basketswing":{"icon":"maki-playground","geometry":["point","line","area"],"tags":{"playground":"basketswing"}},"playground/bridge":{"icon":"maki-playground","geometry":["point","line","area"],"moreFields":["{playground}","length","width"],"tags":{"playground":"bridge"}},"playground/climbingframe":{"icon":"maki-playground","geometry":["point","area"],"tags":{"playground":"climbingframe"}},"playground/climbingwall":{"icon":"maki-playground","geometry":["point","line","area"],"tags":{"playground":"climbingwall"}},"playground/cushion":{"icon":"maki-playground","geometry":["point","area"],"tags":{"playground":"cushion"}},"playground/funnel_ball":{"icon":"maki-playground","geometry":["point"],"tags":{"playground":"funnel_ball"}},"playground/hopscotch":{"icon":"maki-playground","geometry":["point","line","area"],"tags":{"playground":"hopscotch"}},"playground/horizontal_bar":{"icon":"temaki-horizontal_bar","geometry":["point","line","area"],"tags":{"playground":"horizontal_bar"}},"playground/map":{"icon":"temaki-compass","geometry":["point","area"],"fields":["subject/wikidata","surface"],"moreFields":["colour","subject"],"tags":{"playground":"map"}},"playground/playhouse":{"icon":"temaki-play_structure","geometry":["point","area"],"tags":{"playground":"playhouse"}},"playground/roundabout":{"icon":"maki-stadium","fields":["{playground}","bench"],"geometry":["point","area"],"tags":{"playground":"roundabout"}},"playground/sandpit":{"icon":"temaki-sandbox","geometry":["point","area"],"tags":{"playground":"sandpit"}},"playground/seesaw":{"icon":"temaki-seesaw","geometry":["point","line","area"],"tags":{"playground":"seesaw"}},"playground/sledding":{"icon":"temaki-sledding","geometry":["point"],"tags":{"playground":"sledding"}},"playground/slide":{"icon":"temaki-slide","geometry":["point","line","area"],"tags":{"playground":"slide"}},"playground/splash_pad":{"icon":"temaki-fountain","geometry":["point","area"],"tags":{"playground":"splash_pad"}},"playground/springy":{"icon":"temaki-spring_rider","geometry":["point"],"tags":{"playground":"springy"}},"playground/structure":{"icon":"temaki-play_structure","geometry":["point","line","area"],"tags":{"playground":"structure"}},"playground/swing":{"icon":"maki-playground","fields":["capacity","baby_seat","wheelchair","blind"],"geometry":["point","line","area"],"tags":{"playground":"swing"}},"playground/teenshelter":{"icon":"maki-shelter","geometry":["point","area"],"tags":{"playground":"teenshelter"}},"playground/tetherball":{"icon":"maki-playground","geometry":["point"],"tags":{"playground":"tetherball"}},"playground/trampoline":{"icon":"maki-playground","geometry":["point","area"],"tags":{"playground":"trampoline"}},"playground/tunnel_tube":{"icon":"maki-playground","geometry":["point","line","area"],"tags":{"playground":"tunnel_tube"}},"playground/water":{"icon":"temaki-water","geometry":["point","line","area"],"tags":{"playground":"water"}},"playground/zipwire":{"icon":"maki-playground","geometry":["line","area"],"tags":{"playground":"zipwire"}},"point":{"fields":["name"],"geometry":["vertex","point"],"tags":{},"matchScore":0.1},"police/checkpoint":{"icon":"temaki-military_checkpoint","fields":["name"],"moreFields":["opening_hours"],"geometry":["point","vertex","area"],"tags":{"police":"checkpoint"}},"polling_station":{"icon":"fas-vote-yea","fields":["name","ref","operator","address","opening_hours","building_area","phone"],"moreFields":["air_conditioning","email","fax","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","wheelchair"],"geometry":["point","area"],"tags":{"polling_station":"*"},"matchScore":0.75},"power/cable":{"icon":"temaki-cable","fields":["name","ref","operator","voltage","location","layer"],"geometry":["line"],"tags":{"power":"cable"},"searchable":false},"power/cable/underground":{"icon":"temaki-cable","geometry":["line"],"tags":{"power":"cable","location":"underground"},"addTags":{"power":"cable","location":"underground","layer":"-1"}},"power/catenary_mast":{"icon":"temaki-power_pole","fields":["ref","operator"],"moreFields":["height","line_attachment","line_management","manufacturer","material"],"geometry":["point","vertex"],"tags":{"power":"catenary_mast"}},"power/generator":{"icon":"temaki-power","fields":["ref","operator","generator/source","generator/method","generator/type","generator/output/electricity"],"moreFields":["colour","height","level","manufacturer","material"],"geometry":["point","vertex","area"],"tags":{"power":"generator"}},"power/generator/method/photovoltaic":{"icon":"fas-solar-panel","fields":["ref","operator","generator/output/electricity"],"moreFields":["{power/generator}"],"geometry":["area","point","vertex"],"tags":{"power":"generator","generator:method":"photovoltaic"},"addTags":{"power":"generator","generator:source":"solar","generator:method":"photovoltaic","generator:type":"solar_photovoltaic_panel","generator:output:electricity":"*"},"reference":{"key":"generator:method","value":"photovoltaic"}},"power/generator/method/photovoltaic/building/roof":{"icon":"fas-solar-panel","fields":["{power/generator/method/photovoltaic}"],"moreFields":["{power/generator}"],"geometry":["area","point","vertex"],"tags":{"power":"generator","generator:method":"photovoltaic","building":"roof"},"addTags":{"power":"generator","generator:source":"solar","generator:method":"photovoltaic","generator:type":"solar_photovoltaic_panel","generator:output:electricity":"*","building":"roof","layer":"1"},"reference":{"key":"generator:method","value":"photovoltaic"}},"power/generator/method/photovoltaic/location/roof":{"icon":"fas-solar-panel","fields":["{power/generator/method/photovoltaic}"],"moreFields":["{power/generator}"],"geometry":["area","point","vertex"],"tags":{"power":"generator","generator:method":"photovoltaic","location":"roof"},"addTags":{"power":"generator","generator:source":"solar","generator:method":"photovoltaic","generator:type":"solar_photovoltaic_panel","generator:output:electricity":"*","location":"roof"},"reference":{"key":"generator:method","value":"photovoltaic"}},"power/generator/source/hydro":{"icon":"temaki-power","fields":["ref","operator","generator/method/hydro","generator/type","generator/output/electricity"],"moreFields":["{power/generator}"],"geometry":["point","vertex","area"],"tags":{"power":"generator","generator:source":"hydro"},"addTags":{"power":"generator","generator:source":"hydro","generator:output:electricity":"yes"},"reference":{"key":"generator:source","value":"hydro"}},"power/generator/source/nuclear":{"icon":"temaki-radiation","fields":["ref","operator","generator/type","generator/output/electricity"],"moreFields":["{power/generator}"],"geometry":["point","vertex","area"],"tags":{"power":"generator","generator:source":"nuclear","generator:method":"fission"},"reference":{"key":"generator:source","value":"nuclear"}},"power/generator/source/wind":{"icon":"temaki-wind_turbine","fields":["ref","operator","generator/type","generator/output/electricity"],"moreFields":["{power/generator}","height/hub","rotor/diameter"],"geometry":["point","vertex","area"],"tags":{"power":"generator","generator:source":"wind"},"addTags":{"power":"generator","generator:source":"wind","generator:method":"wind_turbine"},"reference":{"key":"generator:source","value":"wind"}},"power/line":{"icon":"temaki-power_tower","fields":["name","operator","voltage","cables","ref","layer"],"geometry":["line"],"tags":{"power":"line"}},"power/minor_line":{"icon":"iD-power-line","fields":["name","operator","voltage","cables","ref","layer"],"geometry":["line"],"tags":{"power":"minor_line"}},"power/plant":{"icon":"maki-industry","fields":["name","operator","plant/source","plant/method","plant/output","plant/output/electricity","address","start_date"],"moreFields":["gnis/feature_id-US"],"geometry":["area"],"tags":{"power":"plant"},"addTags":{"power":"plant","landuse":"industrial"}},"power/plant/source/coal":{"icon":"maki-industry","fields":["name","operator","plant/output","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"coal"},"addTags":{"power":"plant","landuse":"industrial","plant:source":"coal","plant:method":"combustion","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"coal"}},"power/plant/source/gas":{"icon":"temaki-gas","fields":["name","operator","plant/output","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"gas"},"addTags":{"power":"plant","landuse":"industrial","plant:source":"gas","plant:method":"combustion","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"gas"}},"power/plant/source/hydro":{"icon":"maki-dam","fields":["name","operator","plant/source","plant/method/hydro","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"hydro"},"addTags":{"power":"plant","plant:source":"hydro","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"hydro"}},"power/plant/source/method/photovoltaic":{"icon":"fas-solar-panel","fields":["name","operator","plant/method/solar","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"solar","plant:method":"photovoltaic"},"addTags":{"power":"plant","plant:source":"solar","plant:method":"photovoltaic","plant:output:electricity":"*"},"removeTags":{"power":"plant","plant:method":"*","plant:source":"solar","plant:output:electricity":"*","landuse":"industrial"},"reference":{"key":"plant:method","value":"photovoltaic"}},"power/plant/source/nuclear":{"icon":"temaki-radiation","fields":["{power/plant}"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"nuclear"},"addTags":{"power":"plant","landuse":"industrial","plant:source":"nuclear","plant:method":"fission","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"nuclear"}},"power/plant/source/oil":{"icon":"fas-tint","fields":["name","operator","plant/output","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"oil"},"addTags":{"power":"plant","landuse":"industrial","plant:source":"oil","plant:method":"combustion","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"oil"}},"power/plant/source/solar":{"icon":"fas-solar-panel","fields":["name","operator","plant/method/solar","plant/output","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"solar"},"addTags":{"power":"plant","plant:source":"solar"},"removeTags":{"power":"plant","plant:source":"solar","plant:method":"*","plant:output:electricity":"*","landuse":"industrial"},"reference":{"key":"plant:source","value":"solar"}},"power/plant/source/waste":{"icon":"fas-dumpster-fire","fields":["name","operator","plant/method/waste","plant/output","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"waste"},"addTags":{"power":"plant","landuse":"industrial","plant:source":"waste","plant:method":"combustion","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"waste"}},"power/plant/source/wind":{"icon":"temaki-wind_turbine","fields":["name","operator","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"wind"},"addTags":{"power":"plant","plant:source":"wind","plant:method":"wind_turbine","plant:output:electricity":"*"},"removeTags":{"power":"plant","plant:method":"*","plant:source":"wind","plant:output:electricity":"*","landuse":"industrial"},"reference":{"key":"plant:source","value":"wind"}},"power/pole":{"icon":"temaki-power_pole","fields":["ref","operator","height","material","line_attachment"],"moreFields":["line_management","manufacturer"],"geometry":["point","vertex"],"tags":{"power":"pole"}},"power/portal":{"icon":"temaki-power","fields":["ref","operator","structure_power","material"],"moreFields":["colour","design","height","line_management","manufacturer"],"geometry":["vertex","line"],"tags":{"power":"portal"}},"power/substation":{"icon":"temaki-power","fields":["name","substation","operator","building","voltage","ref"],"moreFields":["address","gnis/feature_id-US"],"geometry":["area","point"],"tags":{"power":"substation"}},"power/switch":{"icon":"temaki-power_switch","fields":["switch","operator","location","cables","voltage","ref"],"geometry":["point","vertex"],"tags":{"power":"switch"}},"power/tower":{"icon":"temaki-power_tower","fields":["ref","operator","design","height","material","line_attachment","structure_power"],"moreFields":["line_management","manufacturer"],"geometry":["point","vertex"],"tags":{"power":"tower"},"matchScore":1.05},"power/transformer":{"icon":"temaki-power_transformer","fields":["ref","operator","transformer","location","rating","devices","phases"],"moreFields":["frequency","manufacturer","voltage/primary","voltage/secondary","voltage/tertiary","windings","windings/configuration","windings/auto"],"geometry":["point","vertex"],"tags":{"power":"transformer"}},"public_transport/platform_point":{"icon":"temaki-sign_and_bench","fields":["name","ref_stop_position","network","operator","vehicles","departures_board","shelter"],"moreFields":["bench","bin","gnis/feature_id-US","level","lit","tactile_paving","wheelchair"],"geometry":["point"],"tags":{"public_transport":"platform"},"matchScore":0.6},"public_transport/platform":{"icon":"temaki-board_transit","fields":["ref_platform","network","operator","vehicles","departures_board","surface"],"moreFields":["access","covered","indoor","layer","level","lit","wheelchair"],"geometry":["line","area"],"tags":{"public_transport":"platform"},"matchScore":0.6},"public_transport/platform/aerialway_point":{"icon":"temaki-gondola_lift","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","aerialway":"yes"},"reference":{"key":"public_transport","value":"platform"},"searchable":false},"public_transport/platform/ferry_point":{"icon":"temaki-ferry","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","ferry":"yes"},"reference":{"key":"public_transport","value":"platform"},"searchable":false},"public_transport/platform/light_rail_point":{"icon":"temaki-light_rail","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","light_rail":"yes"},"reference":{"key":"railway","value":"platform"},"searchable":false},"public_transport/platform/monorail_point":{"icon":"temaki-monorail","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","monorail":"yes"},"reference":{"key":"railway","value":"platform"},"searchable":false},"public_transport/platform/subway_point":{"icon":"temaki-subway","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","subway":"yes"},"reference":{"key":"railway","value":"platform"},"searchable":false},"public_transport/platform/train_point":{"icon":"temaki-train","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","train":"yes"},"reference":{"key":"railway","value":"platform"},"searchable":false},"public_transport/platform/aerialway":{"icon":"temaki-board_gondola_lift","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","aerialway":"yes"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/bus_point":{"icon":"temaki-bus","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point","vertex"],"tags":{"public_transport":"platform","bus":"yes"},"addTags":{"public_transport":"platform","bus":"yes","highway":"bus_stop"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/bus_tram_point":{"icon":"temaki-tram","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point","vertex"],"tags":{"public_transport":"platform","bus":"yes","tram":"yes"},"addTags":{"public_transport":"platform","bus":"yes","tram":"yes","highway":"bus_stop"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/bus":{"icon":"temaki-board_bus","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","bus":"yes"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/ferry":{"icon":"temaki-board_ferry","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","ferry":"yes"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/light_rail":{"icon":"temaki-board_light_rail","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","light_rail":"yes"},"addTags":{"public_transport":"platform","light_rail":"yes","railway":"platform"},"reference":{"key":"railway","value":"platform"}},"public_transport/platform/monorail":{"icon":"temaki-board_monorail","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","monorail":"yes"},"addTags":{"public_transport":"platform","monorail":"yes","railway":"platform"},"reference":{"key":"railway","value":"platform"}},"public_transport/platform/subway":{"icon":"temaki-board_subway","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","subway":"yes"},"addTags":{"public_transport":"platform","subway":"yes","railway":"platform"},"reference":{"key":"railway","value":"platform"}},"public_transport/platform/train":{"icon":"temaki-board_train","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","train":"yes"},"addTags":{"public_transport":"platform","train":"yes","railway":"platform"},"reference":{"key":"railway","value":"platform"}},"public_transport/platform/tram_point":{"icon":"temaki-tram","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","tram":"yes"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/tram":{"icon":"temaki-board_tram","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","tram":"yes"},"addTags":{"public_transport":"platform","tram":"yes","railway":"platform"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/trolleybus_point":{"icon":"temaki-trolleybus","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point","vertex"],"tags":{"public_transport":"platform","trolleybus":"yes"},"addTags":{"public_transport":"platform","trolleybus":"yes","highway":"bus_stop"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/trolleybus":{"icon":"temaki-board_trolleybus","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","trolleybus":"yes"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/station_aerialway":{"icon":"temaki-gondola_lift","fields":["{public_transport/station}","aerialway/access","aerialway/summer/access"],"moreFields":["{public_transport/station}"],"geometry":["point","vertex","area"],"tags":{"aerialway":"station"},"addTags":{"public_transport":"station","aerialway":"station"},"reference":{"key":"aerialway","value":"station"}},"public_transport/station_bus":{"icon":"temaki-bus","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","bus":"yes"},"addTags":{"public_transport":"station","bus":"yes","amenity":"bus_station"},"reference":{"key":"amenity","value":"bus_station"}},"public_transport/station_ferry":{"icon":"temaki-ferry","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["vertex","point","area"],"tags":{"public_transport":"station","ferry":"yes"},"addTags":{"public_transport":"station","ferry":"yes","amenity":"ferry_terminal"},"reference":{"key":"amenity","value":"ferry_terminal"}},"public_transport/station_light_rail":{"icon":"temaki-light_rail","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","light_rail":"yes"},"addTags":{"public_transport":"station","light_rail":"yes","railway":"station","station":"light_rail"},"reference":{"key":"station","value":"light_rail"}},"public_transport/station_monorail":{"icon":"temaki-monorail","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","monorail":"yes"},"addTags":{"public_transport":"station","monorail":"yes","railway":"station"},"reference":{"key":"railway","value":"station"}},"public_transport/station_subway":{"icon":"temaki-subway","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","subway":"yes"},"addTags":{"public_transport":"station","subway":"yes","railway":"station","station":"subway"},"reference":{"key":"station","value":"subway"}},"public_transport/station_train_halt":{"icon":"temaki-rail_flag","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","train":"yes","railway":"halt"},"reference":{"key":"railway","value":"halt"}},"public_transport/station_train":{"icon":"temaki-train","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["vertex","point","area"],"tags":{"public_transport":"station","train":"yes"},"addTags":{"public_transport":"station","train":"yes","railway":"station"},"reference":{"key":"railway","value":"station"}},"public_transport/station_tram":{"icon":"temaki-tram","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","tram":"yes"},"reference":{"key":"public_transport","value":"station"}},"public_transport/station_trolleybus":{"icon":"temaki-trolleybus","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","trolleybus":"yes"},"addTags":{"public_transport":"station","trolleybus":"yes","amenity":"bus_station"},"reference":{"key":"amenity","value":"bus_station"}},"public_transport/station":{"icon":"temaki-transit","fields":["name","network","operator","vehicles","address","building_area","internet_access"],"moreFields":["air_conditioning","baby_feeding","email","fax","gnis/feature_id-US","internet_access/fee","internet_access/ssid","level","phone","wheelchair"],"geometry":["point","area"],"tags":{"public_transport":"station"},"matchScore":0.2},"public_transport/stop_area":{"icon":"iD-relation","fields":["name","ref","network","operator"],"geometry":["relation"],"tags":{"type":"public_transport","public_transport":"stop_area"},"reference":{"key":"public_transport","value":"stop_area"}},"public_transport/stop_position_aerialway":{"icon":"temaki-gondola_lift","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","aerialway":"yes"},"reference":{"key":"public_transport","value":"stop_position"}},"public_transport/stop_position_bus":{"icon":"temaki-bus","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","bus":"yes"},"reference":{"key":"public_transport","value":"stop_position"}},"public_transport/stop_position_ferry":{"icon":"temaki-ferry","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","ferry":"yes"},"reference":{"key":"public_transport","value":"stop_position"}},"public_transport/stop_position_light_rail":{"icon":"temaki-light_rail","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","light_rail":"yes"},"addTags":{"public_transport":"stop_position","light_rail":"yes","railway":"stop"},"reference":{"key":"railway","value":"stop"}},"public_transport/stop_position_monorail":{"icon":"temaki-monorail","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","monorail":"yes"},"addTags":{"public_transport":"stop_position","monorail":"yes","railway":"stop"},"reference":{"key":"railway","value":"stop"}},"public_transport/stop_position_subway":{"icon":"temaki-subway","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","subway":"yes"},"addTags":{"public_transport":"stop_position","subway":"yes","railway":"stop"},"reference":{"key":"railway","value":"stop"}},"public_transport/stop_position_train":{"icon":"temaki-train","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","train":"yes"},"addTags":{"public_transport":"stop_position","train":"yes","railway":"stop"},"reference":{"key":"railway","value":"stop"}},"public_transport/stop_position_tram":{"icon":"temaki-tram","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","tram":"yes"},"addTags":{"public_transport":"stop_position","tram":"yes","railway":"tram_stop"},"reference":{"key":"public_transport","value":"stop_position"}},"public_transport/stop_position_trolleybus":{"icon":"temaki-trolleybus","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","trolleybus":"yes"},"reference":{"key":"public_transport","value":"stop_position"}},"public_transport/stop_position":{"icon":"temaki-transit","fields":["name","ref_stop_position","network","operator","vehicles"],"moreFields":[],"geometry":["vertex"],"tags":{"public_transport":"stop_position"},"matchScore":0.2},"railway/halt":{"icon":"temaki-rail_flag","geometry":["point","vertex"],"tags":{"railway":"halt"},"searchable":false},"railway/platform":{"icon":"temaki-board_train","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"railway":"platform"},"searchable":false},"railway/station":{"icon":"temaki-train","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","vertex","area"],"tags":{"railway":"station"},"matchScore":0.95,"searchable":false},"railway/tram_stop":{"icon":"temaki-tram","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"railway":"tram_stop"},"searchable":false},"railway/abandoned":{"icon":"temaki-railway_track_askew","fields":["name","structure","service_rail","usage_rail"],"moreFields":["covered_no","incline"],"geometry":["line"],"tags":{"railway":"abandoned"},"matchScore":0.85},"railway/buffer_stop":{"icon":"temaki-buffer_stop","geometry":["vertex"],"tags":{"railway":"buffer_stop"}},"railway/construction":{"icon":"temaki-railway_track_partial","fields":["name","opening_date","check_date","note","structure","gauge","electrified"],"moreFields":["covered_no","frequency_electrified","highspeed","incline","maxspeed","service_rail","usage_rail","voltage_electrified"],"geometry":["line"],"tags":{"railway":"construction"},"matchScore":0.95},"railway/crossing":{"icon":"temaki-pedestrian","fields":["crossing","crossing/barrier","crossing/bell","crossing/light"],"moreFields":["crossing/markings"],"geometry":["vertex"],"tags":{"railway":"crossing"}},"railway/derail":{"icon":"maki-roadblock","geometry":["vertex"],"fields":["direction_vertex"],"tags":{"railway":"derail"}},"railway/disused":{"icon":"temaki-railway_track","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}","highspeed"],"geometry":["line"],"tags":{"railway":"disused"},"matchScore":0.95},"railway/funicular":{"icon":"temaki-railway_cable_track","fields":["name","operator","incline","structure","gauge","service_rail"],"moreFields":["covered_no","electrified","frequency_electrified","maxspeed","voltage_electrified"],"geometry":["line"],"tags":{"railway":"funicular"}},"railway/level_crossing":{"icon":"maki-cross","fields":["crossing/barrier","crossing/bell","crossing/light"],"geometry":["vertex"],"tags":{"railway":"level_crossing"}},"railway/light_rail":{"icon":"temaki-light_rail","fields":["name","operator","structure","gauge","electrified","service_rail","usage_rail"],"moreFields":["covered_no","frequency_electrified","incline","maxspeed","voltage_electrified"],"geometry":["line"],"tags":{"railway":"light_rail"}},"railway/milestone":{"icon":"temaki-milestone","geometry":["point","vertex"],"fields":["railway/position","direction_vertex"],"moreFields":["ref"],"tags":{"railway":"milestone"}},"railway/miniature":{"icon":"temaki-railway_track_mini","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"miniature"}},"railway/monorail":{"icon":"temaki-monorail","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"monorail"}},"railway/monorail/hanging":{"icon":"temaki-hanging_rail","geometry":["line"],"tags":{"railway":"monorail","monorail":"hanging"},"reference":{"key":"monorail","value":"hanging"}},"railway/narrow_gauge":{"icon":"temaki-railway_track_narrow","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"narrow_gauge"}},"railway/preserved":{"icon":"temaki-train_steam","fields":["railway","{railway/light_rail}"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"*","railway:preserved":"yes"},"addTags":{"railway":"rail","railway:preserved":"yes"},"reference":{"key":"railway:preserved"}},"railway/rail":{"icon":"temaki-railway_track","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}","highspeed"],"geometry":["line"],"tags":{"railway":"rail"}},"railway/rail/highspeed":{"icon":"temaki-train_bullet","geometry":["line"],"tags":{"railway":"rail","highspeed":"yes"},"reference":{"key":"highspeed"}},"railway/railway_crossing":{"icon":"temaki-x_oblique","geometry":["vertex"],"tags":{"railway":"railway_crossing"}},"railway/signal":{"icon":"temaki-railway_signals","geometry":["point","vertex"],"fields":["railway/position","railway/signal/direction","ref"],"tags":{"railway":"signal"}},"railway/subway_entrance":{"icon":"maki-entrance","geometry":["point","vertex"],"fields":["name","level","wheelchair","ref"],"tags":{"railway":"subway_entrance"}},"railway/subway":{"icon":"temaki-subway","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"subway"}},"railway/switch":{"icon":"temaki-junction","geometry":["vertex"],"tags":{"railway":"switch"}},"railway/train_wash":{"icon":"temaki-train_wash","geometry":["point","vertex","area"],"fields":["operator","building_area_yes"],"tags":{"railway":"wash"}},"railway/tram_crossing":{"icon":"temaki-crossing_tram_striped","geometry":["vertex"],"tags":{"railway":"tram_crossing"}},"railway/tram_level_crossing":{"icon":"temaki-crossing_tram_solid","geometry":["vertex"],"tags":{"railway":"tram_level_crossing"}},"railway/tram":{"icon":"temaki-tram","fields":["{railway/light_rail}","oneway"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"tram"}},"railway/yard":{"icon":"temaki-freight_car","fields":["name","operator"],"moreFields":["gnis/feature_id-US"],"geometry":["point"],"tags":{"railway":"yard"}},"relation":{"icon":"iD-relation","fields":["name","relation"],"geometry":["relation"],"tags":{}},"route/ferry":{"icon":"temaki-ferry","geometry":["line"],"fields":["name","operator","duration","access","toll","from","to"],"moreFields":["charge_toll","distance","dog","email","interval","maxheight","maxweight","maxwidth","network","oneway","opening_hours","opening_hours/covid19","phone","ref_route","reservation","roundtrip","vhf","wheelchair"],"tags":{"route":"ferry"}},"seamark/beacon_isolated_danger":{"fields":["ref","operator","seamark/beacon_isolated_danger/shape","seamark/type"],"geometry":["point","vertex"],"tags":{"seamark:type":"beacon_isolated_danger"}},"seamark/beacon_lateral":{"fields":["ref","operator","seamark/beacon_lateral/colour","seamark/beacon_lateral/category","seamark/beacon_lateral/shape","seamark/beacon_lateral/system","seamark/type"],"geometry":["point","vertex"],"tags":{"seamark:type":"beacon_lateral"}},"seamark/buoy_lateral":{"icon":"temaki-buoy","fields":["ref","operator","seamark/buoy_lateral/colour","seamark/buoy_lateral/category","seamark/buoy_lateral/shape","seamark/buoy_lateral/system","seamark/type"],"geometry":["point","vertex"],"tags":{"seamark:type":"buoy_lateral"}},"seamark/buoy_lateral/green":{"icon":"temaki-buoy","geometry":["point","vertex"],"tags":{"seamark:type":"buoy_lateral","seamark:buoy_lateral:colour":"green"}},"seamark/buoy_lateral/red":{"icon":"temaki-buoy","geometry":["point","vertex"],"tags":{"seamark:type":"buoy_lateral","seamark:buoy_lateral:colour":"red"}},"seamark/mooring":{"icon":"temaki-horn_cleat","fields":["ref","operator","seamark/mooring/category","seamark/type"],"geometry":["point"],"tags":{"seamark:type":"mooring"}},"shop":{"icon":"maki-shop","fields":["name","shop","operator","address","building_area_yes","opening_hours","payment_multi","phone"],"moreFields":["air_conditioning","branch_brand","brand","building/levels_building","currency_multi","ele","email","fax","gnis/feature_id-US","height_building","internet_access","internet_access/fee","internet_access/ssid","level","not/name","opening_hours/covid19","ref/vatin","ref/FR/siret-FR","second_hand","stroller","toilets","toilets/wheelchair","wheelchair"],"geometry":["point","area"],"tags":{"shop":"*"},"matchScore":0.7},"shop/boutique":{"icon":"maki-shop","fields":["name","clothes","{shop}"],"geometry":["point","area"],"tags":{"shop":"boutique"},"searchable":false},"shop/fashion":{"icon":"maki-shop","fields":["name","clothes","{shop}"],"geometry":["point","area"],"tags":{"shop":"fashion"},"searchable":false},"shop/vacant":{"icon":"maki-shop","fields":["name","address","building_area_yes"],"geometry":["point","area"],"tags":{"shop":"vacant"},"searchable":false},"shop/yes":{"icon":"maki-shop","fields":["name","shop","{shop}"],"geometry":["point","area"],"tags":{"shop":"yes"},"searchable":false,"matchScore":0.8},"shop/agrarian":{"icon":"fas-tractor","fields":["{shop}","agrarian"],"geometry":["point","area"],"tags":{"shop":"agrarian"}},"shop/alcohol":{"icon":"fas-wine-bottle","fields":["{shop}","drive_through"],"moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"alcohol"}},"shop/anime":{"icon":"fas-dragon","geometry":["point","area"],"tags":{"shop":"anime"}},"shop/antiques":{"icon":"temaki-furniture","geometry":["point","area"],"tags":{"shop":"antiques"}},"shop/appliance":{"icon":"temaki-laundry","geometry":["point","area"],"tags":{"shop":"appliance"}},"shop/art":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"art"}},"shop/baby_goods":{"icon":"fas-baby-carriage","geometry":["point","area"],"tags":{"shop":"baby_goods"}},"shop/bag":{"icon":"fas-suitcase-rolling","geometry":["point","area"],"tags":{"shop":"bag"}},"shop/bakery":{"icon":"maki-bakery","geometry":["point","area"],"tags":{"shop":"bakery"}},"shop/bathroom_furnishing":{"icon":"fas-bath","geometry":["point","area"],"tags":{"shop":"bathroom_furnishing"}},"shop/beauty":{"icon":"temaki-lipstick","fields":["{shop}","beauty"],"geometry":["point","area"],"tags":{"shop":"beauty"}},"shop/beauty/nails":{"icon":"temaki-polished_nail","geometry":["point","area"],"tags":{"shop":"beauty","beauty":"nails"},"reference":{"key":"shop","value":"beauty"}},"shop/beauty/tanning":{"icon":"temaki-tanning","geometry":["point","area"],"tags":{"shop":"beauty","beauty":"tanning"},"reference":{"key":"leisure","value":"tanning_salon"}},"shop/bed":{"icon":"maki-lodging","geometry":["point","area"],"tags":{"shop":"bed"}},"shop/beverages":{"icon":"temaki-bottles","geometry":["point","area"],"tags":{"shop":"beverages"}},"shop/bicycle":{"icon":"maki-bicycle","fields":["{shop}","service/bicycle"],"geometry":["point","area"],"tags":{"shop":"bicycle"}},"shop/boat":{"icon":"temaki-boat","geometry":["point","area"],"tags":{"shop":"boat"}},"shop/bookmaker":{"icon":"temaki-money_hand","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"bookmaker"}},"shop/books":{"icon":"fas-book","fields":["{shop}","internet_access"],"moreFields":["{shop}","internet_access/fee","internet_access/ssid"],"geometry":["point","area"],"tags":{"shop":"books"}},"shop/brewing_supplies":{"icon":"temaki-storage_fermenter","geometry":["point","area"],"tags":{"shop":"brewing_supplies"}},"shop/butcher":{"icon":"temaki-cleaver","geometry":["point","area"],"tags":{"shop":"butcher"}},"shop/camera":{"icon":"fas-camera-retro","geometry":["point","area"],"tags":{"shop":"camera"}},"shop/candles":{"icon":"fas-burn","geometry":["point","area"],"tags":{"shop":"candles"}},"shop/cannabis":{"icon":"fas-cannabis","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"cannabis"}},"shop/car_parts":{"icon":"fas-car-battery","geometry":["point","area"],"tags":{"shop":"car_parts"}},"shop/car_repair":{"icon":"maki-car-repair","fields":["{shop}","service/vehicle"],"geometry":["point","area"],"tags":{"shop":"car_repair"}},"shop/car":{"icon":"maki-car","fields":["name","brand","{shop}","second_hand","service/vehicle"],"geometry":["point","area"],"tags":{"shop":"car"}},"shop/car/second_hand":{"icon":"maki-car","geometry":["point","area"],"tags":{"shop":"car","second_hand":"only"}},"shop/caravan":{"icon":"temaki-camper_trailer","fields":["name","brand","{shop}","second_hand","service/vehicle"],"geometry":["point","area"],"tags":{"shop":"caravan"}},"shop/carpet":{"icon":"fas-tape","geometry":["point","area"],"tags":{"shop":"carpet"}},"shop/catalogue":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"catalogue"}},"shop/charity":{"icon":"maki-shop","fields":["{shop}","second_hand"],"geometry":["point","area"],"tags":{"shop":"charity"}},"shop/cheese":{"icon":"fas-cheese","geometry":["point","area"],"tags":{"shop":"cheese"}},"shop/chemist":{"icon":"fas-shopping-basket","geometry":["point","area"],"tags":{"shop":"chemist"}},"shop/chocolate":{"icon":"maki-confectionery","geometry":["point","area"],"tags":{"shop":"chocolate"}},"shop/clothes":{"icon":"maki-clothing-store","fields":["name","clothes","{shop}"],"geometry":["point","area"],"tags":{"shop":"clothes"}},"shop/clothes/second_hand":{"icon":"fas-tshirt","geometry":["point","area"],"tags":{"shop":"clothes","second_hand":"only"}},"shop/clothes/suits":{"icon":"fas-tshirt","geometry":["point","area"],"tags":{"shop":"clothes","clothes":"suits"}},"shop/clothes/underwear":{"icon":"temaki-bikini","geometry":["point","area"],"tags":{"shop":"clothes","clothes":"underwear"},"reference":{"key":"clothes","value":"underwear"}},"shop/clothes/wedding":{"icon":"temaki-gown","geometry":["point","area"],"tags":{"shop":"clothes","clothes":"wedding"},"reference":{"key":"clothes","value":"wedding"}},"shop/clothes/workwear":{"icon":"fas-tshirt","geometry":["point","area"],"tags":{"shop":"clothes","clothes":"workwear"}},"shop/coffee":{"icon":"temaki-coffee","geometry":["point","area"],"tags":{"shop":"coffee"}},"shop/collector":{"icon":"fas-th","fields":["name","collector","{shop}"],"geometry":["point","area"],"tags":{"shop":"collector"}},"shop/computer":{"icon":"fas-laptop","geometry":["point","area"],"tags":{"shop":"computer"}},"shop/confectionery":{"icon":"maki-confectionery","geometry":["point","area"],"tags":{"shop":"confectionery"}},"shop/convenience":{"icon":"fas-shopping-basket","moreFields":["{shop}","organic"],"geometry":["point","area"],"tags":{"shop":"convenience"}},"shop/copyshop":{"icon":"fas-print","geometry":["point","area"],"tags":{"shop":"copyshop"}},"shop/cosmetics":{"icon":"temaki-lipstick","geometry":["point","area"],"tags":{"shop":"cosmetics"}},"shop/country_store":{"icon":"fas-hat-cowboy-side","geometry":["point","area"],"tags":{"shop":"country_store"}},"shop/craft":{"icon":"fas-cut","geometry":["point","area"],"tags":{"shop":"craft"}},"shop/curtain":{"icon":"temaki-curtains","geometry":["point","area"],"tags":{"shop":"curtain"}},"shop/dairy":{"icon":"fas-cheese","geometry":["point","area"],"tags":{"shop":"dairy"}},"shop/deli":{"icon":"fas-jar","geometry":["point","area"],"tags":{"shop":"deli"}},"shop/department_store":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"department_store"}},"shop/doityourself":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"shop":"doityourself"}},"shop/doors":{"icon":"fas-door-open","geometry":["point","area"],"tags":{"shop":"doors"}},"shop/dry_cleaning":{"icon":"temaki-clothes_hanger","geometry":["point","area"],"tags":{"shop":"dry_cleaning"}},"shop/e-cigarette":{"icon":"maki-shop","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"e-cigarette"}},"shop/electrical":{"icon":"temaki-power","geometry":["point","area"],"tags":{"shop":"electrical"}},"shop/electronics":{"icon":"fas-plug","geometry":["point","area"],"tags":{"shop":"electronics"}},"shop/erotic":{"icon":"maki-shop","fields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"erotic"}},"shop/erotic/lgbtq":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"erotic","lgbtq":"primary"}},"shop/fabric":{"icon":"fas-tape","geometry":["point","area"],"tags":{"shop":"fabric"}},"shop/farm":{"icon":"fas-apple-alt","fields":["{shop}","organic"],"geometry":["point","area"],"tags":{"shop":"farm"}},"shop/fashion_accessories":{"icon":"temaki-fashion_accessories","fields":["name","clothes","{shop}"],"geometry":["point","area"],"tags":{"shop":"fashion_accessories"}},"shop/fireplace":{"icon":"temaki-fireplace","geometry":["point","area"],"tags":{"shop":"fireplace"}},"shop/fishing":{"icon":"temaki-ice_fishing","geometry":["point","area"],"tags":{"shop":"fishing"}},"shop/flooring":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"shop":"flooring"}},"shop/florist":{"icon":"maki-florist","geometry":["point","area"],"tags":{"shop":"florist"}},"shop/frame":{"icon":"fas-vector-square","geometry":["point","area"],"tags":{"shop":"frame"}},"shop/frozen_food":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"frozen_food"}},"shop/fuel":{"icon":"temaki-propane_tank","fields":["{shop}","fuel/fuel_multi"],"geometry":["point","area"],"tags":{"shop":"fuel"},"matchScore":0.5},"shop/funeral_directors":{"icon":"maki-cemetery","fields":["{shop}","religion","denomination"],"geometry":["point","area"],"tags":{"shop":"funeral_directors"}},"shop/furniture":{"icon":"fas-couch","geometry":["point","area"],"tags":{"shop":"furniture"}},"shop/games":{"icon":"fas-dice","geometry":["point","area"],"tags":{"shop":"games"}},"shop/garden_centre":{"icon":"maki-garden-centre","geometry":["point","area"],"tags":{"shop":"garden_centre"}},"shop/gas":{"icon":"temaki-propane_tank","geometry":["point","area"],"tags":{"shop":"gas"}},"shop/general":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"general"}},"shop/gift":{"icon":"maki-gift","geometry":["point","area"],"tags":{"shop":"gift"}},"shop/greengrocer":{"icon":"fas-carrot","fields":["{shop}","organic"],"geometry":["point","area"],"tags":{"shop":"greengrocer"}},"shop/hairdresser_supply":{"icon":"temaki-hair_care","geometry":["point","area"],"tags":{"shop":"hairdresser_supply"}},"shop/hairdresser":{"icon":"temaki-beauty_salon","geometry":["point","area"],"fields":["name","operator","address","building_area_yes","opening_hours","payment_multi","phone","gender"],"tags":{"shop":"hairdresser"}},"shop/hardware":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"shop":"hardware"}},"shop/health_food":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"health_food"}},"shop/hearing_aids":{"icon":"temaki-hearing_aid","geometry":["point","area"],"tags":{"shop":"hearing_aids"}},"shop/herbalist":{"icon":"fas-leaf","geometry":["point","area"],"tags":{"shop":"herbalist"}},"shop/hifi":{"icon":"temaki-speaker","geometry":["point","area"],"tags":{"shop":"hifi"}},"shop/hobby":{"icon":"fas-dragon","geometry":["point","area"],"tags":{"shop":"hobby"}},"shop/household_linen":{"icon":"temaki-cloth","geometry":["point","area"],"tags":{"shop":"household_linen"}},"shop/houseware":{"icon":"fas-blender","geometry":["point","area"],"tags":{"shop":"houseware"}},"shop/hunting":{"icon":"temaki-bow_and_arrow","geometry":["point","area"],"tags":{"shop":"hunting"}},"shop/interior_decoration":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"interior_decoration"}},"shop/jewelry":{"icon":"maki-jewelry-store","geometry":["point","area"],"tags":{"shop":"jewelry"}},"shop/kiosk":{"icon":"fas-store","geometry":["point","area"],"tags":{"shop":"kiosk"}},"shop/kitchen":{"icon":"temaki-kitchen_sink","geometry":["point","area"],"tags":{"shop":"kitchen"}},"shop/laundry":{"icon":"temaki-laundry","fields":["{shop}","self_service"],"geometry":["point","area"],"tags":{"shop":"laundry"}},"shop/laundry/self_service":{"icon":"temaki-laundry","geometry":["point","area"],"tags":{"shop":"laundry","self_service":"yes"}},"shop/leather":{"icon":"temaki-handbag","geometry":["point","area"],"tags":{"shop":"leather"}},"shop/lighting":{"icon":"temaki-desk_lamp","geometry":["point","area"],"tags":{"shop":"lighting"}},"shop/locksmith":{"icon":"fas-key","geometry":["point","area"],"tags":{"shop":"locksmith"}},"shop/lottery":{"icon":"fas-ticket-alt","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"lottery"}},"shop/mall":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"mall"}},"shop/massage":{"icon":"temaki-spa","geometry":["point","area"],"tags":{"shop":"massage"}},"shop/medical_supply":{"icon":"fas-crutch","geometry":["point","area"],"tags":{"shop":"medical_supply"}},"shop/military_surplus":{"icon":"temaki-military","geometry":["point","area"],"tags":{"shop":"military_surplus"}},"shop/mobile_phone":{"icon":"fas-mobile-alt","geometry":["point","area"],"tags":{"shop":"mobile_phone"}},"shop/model":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"model"}},"shop/money_lender":{"icon":"temaki-money_hand","fields":["{shop}","currency_multi"],"geometry":["point","area"],"tags":{"shop":"money_lender"}},"shop/motorcycle_repair":{"icon":"temaki-motorcycle_repair","fields":["{shop}","service/vehicle"],"geometry":["point","area"],"tags":{"shop":"motorcycle_repair"}},"shop/motorcycle":{"icon":"fas-motorcycle","fields":["name","brand","{shop}"],"geometry":["point","area"],"tags":{"shop":"motorcycle"}},"shop/music":{"icon":"fas-compact-disc","geometry":["point","area"],"tags":{"shop":"music"}},"shop/musical_instrument":{"icon":"fas-guitar","geometry":["point","area"],"tags":{"shop":"musical_instrument"}},"shop/newsagent":{"icon":"fas-newspaper","geometry":["point","area"],"tags":{"shop":"newsagent"}},"shop/nutrition_supplements":{"icon":"fas-pills","geometry":["point","area"],"tags":{"shop":"nutrition_supplements"}},"shop/optician":{"icon":"maki-optician","geometry":["point","area"],"tags":{"shop":"optician"}},"shop/outdoor":{"icon":"temaki-compass","fields":["{shop}"],"moreFields":["{shop}","clothes","service/bicycle"],"geometry":["point","area"],"tags":{"shop":"outdoor"}},"shop/outpost":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"outpost"}},"shop/paint":{"icon":"fas-paint-roller","geometry":["point","area"],"tags":{"shop":"paint"}},"shop/party":{"icon":"temaki-balloon","geometry":["point","area"],"tags":{"shop":"party"}},"shop/pastry":{"icon":"maki-bakery","geometry":["point","area"],"tags":{"shop":"pastry"}},"shop/pawnbroker":{"icon":"temaki-money_hand","geometry":["point","area"],"tags":{"shop":"pawnbroker"}},"shop/perfumery":{"icon":"temaki-perfume","geometry":["point","area"],"tags":{"shop":"perfumery"}},"shop/pet_grooming":{"icon":"temaki-pet_grooming","geometry":["point","area"],"tags":{"shop":"pet_grooming"}},"shop/pet":{"icon":"fas-cat","geometry":["point","area"],"tags":{"shop":"pet"}},"shop/photo":{"icon":"fas-camera-retro","geometry":["point","area"],"tags":{"shop":"photo"}},"shop/pottery":{"icon":"temaki-vase","geometry":["point","area"],"tags":{"shop":"pottery"}},"shop/printer_ink":{"icon":"fas-print","geometry":["point","area"],"tags":{"shop":"printer_ink"}},"shop/psychic":{"icon":"temaki-psychic","geometry":["point","area"],"tags":{"shop":"psychic"}},"shop/pyrotechnics":{"icon":"temaki-rocket_firework","geometry":["point","area"],"tags":{"shop":"pyrotechnics"}},"shop/radiotechnics":{"icon":"fas-microchip","geometry":["point","area"],"tags":{"shop":"radiotechnics"}},"shop/religion":{"icon":"maki-shop","fields":["{shop}","religion","denomination"],"geometry":["point","area"],"tags":{"shop":"religion"}},"shop/rental":{"icon":"fas-dolly","geometry":["point","area"],"tags":{"shop":"rental"}},"shop/repair":{"icon":"fas-tools","geometry":["point","area"],"tags":{"shop":"repair"}},"shop/scuba_diving":{"icon":"temaki-scuba_diving","fields":["{shop}","scuba_diving"],"geometry":["point","area"],"tags":{"shop":"scuba_diving"}},"shop/seafood":{"icon":"temaki-fish_cleaning","geometry":["point","area"],"tags":{"shop":"seafood"}},"shop/second_hand":{"icon":"maki-shop","fields":["{shop}","second_hand"],"geometry":["point","area"],"tags":{"shop":"second_hand"}},"shop/sewing":{"icon":"temaki-needle_and_spool","geometry":["point","area"],"tags":{"shop":"sewing"}},"shop/shoe_repair":{"icon":"temaki-hammer_shoe","geometry":["point","area"],"tags":{"shop":"shoe_repair"}},"shop/shoes":{"icon":"maki-shoe","geometry":["point","area"],"fields":["name","shoes","{shop}"],"tags":{"shop":"shoes"}},"shop/spices":{"icon":"temaki-spice_bottle","geometry":["point","area"],"tags":{"shop":"spices"}},"shop/sports":{"icon":"fas-futbol","fields":["name","operator","sport","{shop}"],"moreFields":["{shop}","service/bicycle"],"geometry":["point","area"],"tags":{"shop":"sports"}},"shop/stationery":{"icon":"fas-paperclip","geometry":["point","area"],"tags":{"shop":"stationery"}},"shop/storage_rental":{"icon":"temaki-storage_rental","geometry":["point","area"],"tags":{"shop":"storage_rental"}},"shop/supermarket":{"icon":"maki-grocery","moreFields":["{shop}","diet_multi","organic"],"geometry":["point","area"],"tags":{"shop":"supermarket"}},"shop/supermarket/organic":{"icon":"maki-grocery","geometry":["point","area"],"tags":{"shop":"supermarket","organic":"only"},"reference":{"key":"organic"}},"shop/swimming_pool":{"icon":"fas-swimmer","geometry":["point","area"],"tags":{"shop":"swimming_pool"}},"shop/tailor":{"icon":"temaki-needle_and_spool","geometry":["point","area"],"tags":{"shop":"tailor"}},"shop/tattoo":{"icon":"temaki-tattoo_machine","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"tattoo"}},"shop/tea":{"icon":"maki-teahouse","geometry":["point","area"],"tags":{"shop":"tea"}},"shop/telecommunication":{"icon":"maki-telephone","geometry":["point","area"],"tags":{"shop":"telecommunication"}},"shop/ticket":{"icon":"fas-ticket-alt","geometry":["point","area"],"tags":{"shop":"ticket"}},"shop/tiles":{"icon":"temaki-tiling","geometry":["point","area"],"tags":{"shop":"tiles"}},"shop/tobacco":{"icon":"temaki-pipe","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"tobacco"}},"shop/tool_hire":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"shop":"tool_hire"}},"shop/toys":{"icon":"fas-rocket","geometry":["point","area"],"tags":{"shop":"toys"}},"shop/trade":{"icon":"temaki-tools","fields":["name","trade","{shop}"],"geometry":["point","area"],"tags":{"shop":"trade"}},"shop/travel_agency":{"icon":"fas-suitcase","geometry":["point","area"],"tags":{"shop":"travel_agency"}},"shop/trophy":{"icon":"fas-trophy","geometry":["point","area"],"tags":{"shop":"trophy"}},"shop/tyres":{"icon":"temaki-tire","geometry":["point","area"],"tags":{"shop":"tyres"}},"shop/vacuum_cleaner":{"icon":"temaki-vacuum","geometry":["point","area"],"tags":{"shop":"vacuum_cleaner"}},"shop/variety_store":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"variety_store"}},"shop/video_games":{"icon":"maki-gaming","geometry":["point","area"],"tags":{"shop":"video_games"}},"shop/video":{"icon":"temaki-movie_rental","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"video"}},"shop/watches":{"icon":"maki-watch","geometry":["point","area"],"tags":{"shop":"watches"}},"shop/water_sports":{"icon":"fas-swimmer","geometry":["point","area"],"tags":{"shop":"water_sports"}},"shop/water":{"icon":"temaki-water_bottle","geometry":["point","area"],"tags":{"shop":"water"}},"shop/weapons":{"icon":"temaki-dagger","geometry":["point","area"],"tags":{"shop":"weapons"}},"shop/wholesale":{"icon":"maki-warehouse","fields":["{shop}","wholesale"],"geometry":["point","area"],"tags":{"shop":"wholesale"}},"shop/wigs":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"wigs"}},"shop/window_blind":{"icon":"temaki-window","geometry":["point","area"],"tags":{"shop":"window_blind"}},"shop/wine":{"icon":"maki-alcohol-shop","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"wine"}},"telecom/data_center":{"icon":"fas-server","fields":["name","ref","operator","building_area_yes"],"moreFields":["address","gnis/feature_id-US","phone"],"geometry":["point","area"],"tags":{"telecom":"data_center"}},"telecom/exchange":{"icon":"temaki-cable","fields":["ref","operator","telecom/medium","address","building_area_yes"],"geometry":["point","area"],"tags":{"telecom":"exchange"}},"tourism/alpine_hut":{"icon":"temaki-cabin","fields":["name","operator","address","phone","building_area_yes","internet_access","internet_access/fee","fee","payment_multi_fee","charge_fee"],"moreFields":["email","fax","gnis/feature_id-US","internet_access/ssid","reservation","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"alpine_hut"}},"tourism/apartment":{"icon":"maki-lodging","fields":["name","operator","address","website","email","phone","building_area_yes","rooms","internet_access","internet_access/fee"],"moreFields":["building/levels_building","fax","height_building","internet_access/ssid","level","payment_multi","reservation","smoking","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"apartment"}},"tourism/aquarium":{"icon":"maki-aquarium","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["charge_fee","email","fax","fee","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","opening_hours/covid19","payment_multi_fee","phone","ref/vatin","smoking","toilets","toilets/wheelchair","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"aquarium"}},"tourism/artwork":{"icon":"maki-art-gallery","fields":["name","artwork_type","artist"],"moreFields":["level","material","subject/wikidata"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork"}},"tourism/artwork/bust":{"icon":"fas-user-alt","fields":["name","artist","material","inscription"],"geometry":["point","vertex"],"tags":{"tourism":"artwork","artwork_type":"bust"},"reference":{"key":"artwork_type","value":"bust"}},"tourism/artwork/graffiti":{"icon":"maki-art-gallery","fields":["name","artist"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork","artwork_type":"graffiti"},"reference":{"key":"artwork_type","value":"graffiti"}},"tourism/artwork/installation":{"icon":"temaki-sculpture","fields":["name","artist"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork","artwork_type":"installation"},"reference":{"key":"artwork_type","value":"installation"}},"tourism/artwork/mural":{"icon":"maki-art-gallery","fields":["name","artist"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork","artwork_type":"mural"},"reference":{"key":"artwork_type","value":"mural"}},"tourism/artwork/sculpture":{"icon":"temaki-sculpture","fields":["name","artist","material"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork","artwork_type":"sculpture"},"reference":{"key":"artwork_type","value":"sculpture"}},"tourism/artwork/statue":{"icon":"temaki-statue","fields":["name","artist","material"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork","artwork_type":"statue"},"reference":{"key":"artwork_type","value":"statue"}},"tourism/attraction":{"icon":"maki-star","fields":["name","operator","address"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"attraction"},"matchScore":0.75},"tourism/camp_pitch":{"icon":"maki-campsite","fields":["name","ref"],"geometry":["point","area"],"tags":{"tourism":"camp_pitch"}},"tourism/camp_site":{"icon":"maki-campsite","fields":["name","operator","address","access_simple","capacity/caravans","capacity/persons","capacity/tents","fee","payment_multi_fee","charge_fee"],"moreFields":["backcountry","dog","drinking_water_available","email","fax","gnis/feature_id-US","group_only","internet_access","internet_access/fee","internet_access/ssid","openfire","opening_hours","opening_hours/covid19","phone","power_supply","ref/vatin","reservation","sanitary_dump_station","shower","stars","toilets","wheelchair"],"geometry":["point","vertex","area"],"tags":{"tourism":"camp_site"}},"tourism/camp_site/backcountry":{"icon":"maki-campsite","geometry":["point","vertex","area"],"tags":{"tourism":"camp_site","backcountry":"yes"},"reference":{"key":"backcountry"}},"tourism/camp_site/group_only":{"icon":"maki-campsite","geometry":["point","vertex","area"],"tags":{"tourism":"camp_site","group_only":"yes"},"reference":{"key":"group_only"}},"tourism/caravan_site":{"icon":"temaki-camper_trailer","fields":["name","address","capacity/caravans","sanitary_dump_station","power_supply","internet_access","internet_access/fee"],"moreFields":["charge_fee","email","fax","fee","gnis/feature_id-US","internet_access/ssid","operator","payment_multi_fee","phone","reservation","smoking","wheelchair"],"geometry":["point","vertex","area"],"tags":{"tourism":"caravan_site"}},"tourism/chalet":{"icon":"temaki-cabin","fields":["name","operator","address","website","email","phone","building_area_yes","internet_access","internet_access/fee"],"moreFields":["air_conditioning","building/levels_building","fax","gnis/feature_id-US","height_building","internet_access/ssid","payment_multi","reservation","smoking","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"chalet"}},"tourism/gallery":{"icon":"maki-art-gallery","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","opening_hours/covid19","payment_multi","phone","ref/vatin","toilets","toilets/wheelchair","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"gallery"}},"tourism/guest_house":{"icon":"maki-lodging","fields":["name","operator","guest_house","address","website","email","phone","building_area_yes","rooms","internet_access","internet_access/fee"],"moreFields":["air_conditioning","building/levels_building","fax","gnis/feature_id-US","height_building","internet_access/ssid","payment_multi","ref/vatin","reservation","smoking","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"guest_house"}},"tourism/hostel":{"icon":"temaki-bunk_beds","fields":["{tourism/guest_house}"],"moreFields":["{tourism/guest_house}"],"geometry":["point","area"],"tags":{"tourism":"hostel"}},"tourism/hotel":{"icon":"fas-concierge-bell","fields":["{tourism/motel}"],"moreFields":["{tourism/motel}","bar","ref/FR/siret-FR","stars"],"geometry":["point","area"],"tags":{"tourism":"hotel"}},"tourism/information":{"icon":"maki-information","fields":["information","operator","address","building_area_yes"],"moreFields":["level"],"geometry":["point","vertex","area"],"tags":{"tourism":"information"}},"tourism/information/board":{"icon":"temaki-info_board","fields":["name","operator","board_type","direction","subject/wikidata"],"geometry":["point","vertex"],"tags":{"tourism":"information","information":"board"},"reference":{"key":"information","value":"board"}},"tourism/information/board/welcome_sign":{"icon":"maki-embassy","geometry":["point"],"tags":{"tourism":"information","information":"board","board_type":"welcome_sign"}},"tourism/information/guidepost":{"icon":"fas-map-signs","fields":["name","ele_node","operator","ref","activity"],"moreFields":["material"],"geometry":["point","vertex"],"tags":{"tourism":"information","information":"guidepost"},"reference":{"key":"information","value":"guidepost"}},"tourism/information/map":{"icon":"fas-map","fields":["operator","map_type","map_size","direction","activity"],"geometry":["point","vertex"],"tags":{"tourism":"information","information":"map"},"reference":{"key":"information","value":"map"}},"tourism/information/office":{"icon":"maki-information","fields":["name","operator","address","building_area_yes","internet_access","internet_access/fee"],"moreFields":["building/levels_building","email","fax","gnis/feature_id-US","height_building","internet_access/ssid","phone","toilets","toilets/wheelchair","wheelchair"],"geometry":["point","vertex","area"],"tags":{"tourism":"information","information":"office"},"reference":{"key":"information","value":"office"}},"tourism/information/route_marker":{"icon":"maki-information","fields":["ref","operator","colour","material","ele_node"],"geometry":["point","vertex"],"tags":{"tourism":"information","information":"route_marker"},"reference":{"key":"information","value":"route_marker"}},"tourism/information/terminal":{"icon":"temaki-app_terminal","fields":["operator"],"geometry":["point","vertex"],"tags":{"tourism":"information","information":"terminal"},"reference":{"key":"information","value":"terminal"}},"tourism/motel":{"icon":"maki-lodging","fields":["name","brand","address","website","email","phone","building_area_yes","rooms","internet_access","internet_access/fee"],"moreFields":["air_conditioning","branch_brand","brand","building/levels_building","fax","gnis/feature_id-US","height_building","internet_access/ssid","operator","payment_multi","ref/vatin","reservation","smoking","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"motel"}},"tourism/museum":{"icon":"temaki-museum","fields":["name","operator","operator/type","museum","address","building_area_yes","opening_hours"],"moreFields":["air_conditioning","building/levels_building","charge_fee","email","fax","fee","gnis/feature_id-US","height_building","internet_access","internet_access/fee","internet_access/ssid","level","opening_hours/covid19","payment_multi","phone","toilets","toilets/wheelchair","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"museum"}},"tourism/museum/history":{"icon":"temaki-museum","geometry":["point","area"],"tags":{"tourism":"museum","museum":"history"},"reference":{"key":"museum","value":"history"}},"tourism/picnic_site":{"icon":"maki-picnic-site","fields":["name","operator","address","access_simple","capacity"],"moreFields":["charge_fee","fee","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","level","payment_multi_fee","phone","reservation","smoking","wheelchair"],"geometry":["point","vertex","area"],"tags":{"tourism":"picnic_site"}},"tourism/theme_park":{"icon":"maki-amusement-park","fields":["name","operator","address","opening_hours","website"],"moreFields":["branch_brand","brand","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","opening_hours/covid19","payment_multi","phone","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"theme_park"}},"tourism/trail_riding_station":{"icon":"maki-horse-riding","fields":["name","horse_stables","horse_riding","horse_dressage"],"moreFields":["address","email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","opening_hours","opening_hours/covid19","phone"],"geometry":["point","area"],"tags":{"tourism":"trail_riding_station"},"matchScore":2},"tourism/viewpoint":{"icon":"temaki-spotting_scope","geometry":["point","vertex","area"],"fields":["direction"],"moreFields":["level"],"tags":{"tourism":"viewpoint"}},"tourism/wilderness_hut":{"icon":"temaki-cabin","fields":["name","operator","building_area_yes","access_simple","fee","payment_multi_fee","charge_fee","fireplace"],"moreFields":["address","capacity","drinking_water_available","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","kitchen","mattress","reservation","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"wilderness_hut"}},"tourism/zoo":{"icon":"temaki-zoo","fields":["name","operator","address","opening_hours","fee","charge_fee"],"moreFields":["email","fax","gnis/feature_id-US","internet_access","internet_access/fee","internet_access/ssid","payment_multi","opening_hours/covid19","phone","ref/vatin","toilets","toilets/wheelchair","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"zoo"}},"tourism/zoo/petting":{"icon":"fas-horse","geometry":["point","area"],"tags":{"tourism":"zoo","zoo":"petting_zoo"},"reference":{"key":"zoo","value":"petting_zoo"}},"tourism/zoo/safari":{"icon":"temaki-zoo","geometry":["point","area"],"tags":{"tourism":"zoo","zoo":"safari_park"},"reference":{"key":"zoo","value":"safari_park"}},"tourism/zoo/wildlife":{"icon":"fas-frog","geometry":["point","area"],"tags":{"tourism":"zoo","zoo":"wildlife_park"},"reference":{"key":"zoo","value":"wildlife_park"}},"traffic_calming":{"icon":"temaki-diamond","fields":["traffic_calming","surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"*"},"matchScore":0.4},"traffic_calming/yes":{"icon":"temaki-diamond","fields":["traffic_calming","{traffic_calming}"],"geometry":["vertex"],"tags":{"traffic_calming":"yes"},"searchable":false,"matchScore":0.5},"traffic_calming/bump":{"icon":"temaki-speed_bump","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"bump"}},"traffic_calming/chicane":{"icon":"temaki-chicane_arrow","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"chicane"}},"traffic_calming/choker":{"icon":"temaki-diamond","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"choker"}},"traffic_calming/cushion":{"icon":"temaki-speed_hump","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"cushion"}},"traffic_calming/dip":{"icon":"temaki-speed_dip","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"dip"}},"traffic_calming/hump":{"icon":"temaki-speed_hump","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"hump"}},"traffic_calming/island":{"icon":"temaki-diamond","fields":["surface"],"geometry":["vertex","area"],"tags":{"traffic_calming":"island"}},"traffic_calming/mini_bumps":{"icon":"temaki-speed_bump","tags":{"traffic_calming":"mini_bumps"},"geometry":["vertex"],"fields":["surface","direction_vertex"]},"traffic_calming/rumble_strip":{"icon":"temaki-rumble_strip","fields":["direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"rumble_strip"}},"traffic_calming/table":{"icon":"temaki-speed_table","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"table"}},"traffic_sign":{"icon":"fas-directions","fields":["traffic_sign","traffic_sign/direction","direction_point"],"geometry":["point","vertex"],"tags":{"traffic_sign":"*"}},"traffic_sign/city_limit":{"icon":"maki-square-stroked","fields":["{traffic_sign}","name"],"geometry":["point","vertex"],"tags":{"traffic_sign":"city_limit"}},"traffic_sign/maxspeed":{"icon":"maki-square-stroked","fields":["{traffic_sign}","maxspeed"],"geometry":["point","vertex"],"tags":{"traffic_sign":"maxspeed"}},"traffic_sign/variable_message":{"icon":"temaki-billboard","fields":["{traffic_sign}","direction_vertex"],"geometry":["point","vertex"],"tags":{"traffic_sign":"variable_message"}},"type/boundary":{"icon":"iD-boundary","fields":["name","boundary"],"geometry":["relation"],"tags":{"type":"boundary"}},"type/boundary/administrative":{"icon":"iD-boundary","fields":["name","admin_level"],"moreFields":["gnis/feature_id-US"],"geometry":["relation"],"tags":{"type":"boundary","boundary":"administrative"},"reference":{"key":"boundary","value":"administrative"}},"type/connectivity":{"icon":"iD-relation","fields":["connectivity"],"geometry":["relation"],"tags":{"type":"connectivity"}},"type/destination_sign":{"icon":"iD-relation","fields":["destination","destination/ref","destination/symbol","distance"],"geometry":["relation"],"tags":{"type":"destination_sign"}},"type/enforcement":{"icon":"iD-relation","fields":["enforcement"],"geometry":["relation"],"tags":{"type":"enforcement"}},"type/enforcement/maxspeed":{"icon":"iD-relation","fields":["maxspeed"],"geometry":["relation"],"tags":{"type":"enforcement","enforcement":"maxspeed"},"reference":{"key":"enforcement","value":"maxspeed"}},"type/multipolygon":{"icon":"iD-multipolygon","geometry":["relation"],"tags":{"type":"multipolygon"},"removeTags":{},"matchScore":0.1},"type/public_transport/stop_area_group":{"icon":"iD-relation","fields":["name","ref","network","operator"],"geometry":["relation"],"tags":{"type":"public_transport","public_transport":"stop_area_group"},"reference":{"key":"public_transport","value":"stop_area_group"}},"type/restriction":{"icon":"iD-restriction","fields":["restriction","except"],"geometry":["relation"],"tags":{"type":"restriction"}},"type/restriction/no_left_turn":{"icon":"iD-restriction-no-left-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"no_left_turn"},"reference":{"key":"restriction","value":"no_left_turn"}},"type/restriction/no_right_turn":{"icon":"iD-restriction-no-right-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"no_right_turn"},"reference":{"key":"restriction","value":"no_right_turn"}},"type/restriction/no_straight_on":{"icon":"iD-restriction-no-straight-on","geometry":["relation"],"tags":{"type":"restriction","restriction":"no_straight_on"},"reference":{"key":"restriction","value":"no_straight_on"}},"type/restriction/no_u_turn":{"icon":"iD-restriction-no-u-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"no_u_turn"},"reference":{"key":"restriction","value":"no_u_turn"}},"type/restriction/only_left_turn":{"icon":"iD-restriction-only-left-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"only_left_turn"},"reference":{"key":"restriction","value":"only_left_turn"}},"type/restriction/only_right_turn":{"icon":"iD-restriction-only-right-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"only_right_turn"},"reference":{"key":"restriction","value":"only_right_turn"}},"type/restriction/only_straight_on":{"icon":"iD-restriction-only-straight-on","geometry":["relation"],"tags":{"type":"restriction","restriction":"only_straight_on"},"reference":{"key":"restriction","value":"only_straight_on"}},"type/restriction/only_u_turn":{"icon":"iD-restriction-only-u-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"only_u_turn"},"reference":{"key":"restriction","value":"only_u_turn"}},"type/route_master":{"icon":"iD-route-master","fields":["name","route_master","ref","operator","network"],"moreFields":["colour","interval","opening_hours","opening_hours/covid19","wheelchair"],"geometry":["relation"],"tags":{"type":"route_master"}},"type/route":{"icon":"iD-route","fields":["name","route","ref_route","operator","network","network/type"],"moreFields":["distance"],"geometry":["relation"],"tags":{"type":"route"}},"type/route/aerialway":{"icon":"temaki-gondola_lift","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"aerialway"},"reference":{"key":"route","value":"aerialway"}},"type/route/bicycle":{"icon":"maki-bicycle","fields":["name","ref_route","network_bicycle","cycle_network","network/type","from","to","via"],"moreFields":["ascent","colour","descent","direction_cardinal-US-CA-NZ","distance","roundtrip"],"geometry":["relation"],"tags":{"type":"route","route":"bicycle"},"reference":{"key":"route","value":"bicycle"}},"type/route/bus":{"icon":"temaki-bus","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"bus"},"reference":{"key":"route","value":"bus"}},"type/route/detour":{"icon":"iD-route-detour","fields":["name","ref_route","from","to"],"geometry":["relation"],"tags":{"type":"route","route":"detour"},"reference":{"key":"route","value":"detour"}},"type/route/ferry":{"icon":"temaki-ferry","fields":["{route/ferry}"],"moreFields":["{route/ferry}"],"geometry":["relation"],"tags":{"type":"route","route":"ferry"},"reference":{"key":"route","value":"ferry"}},"type/route/foot":{"icon":"temaki-pedestrian","fields":["{type/route/hiking}"],"moreFields":["{type/route/hiking}"],"geometry":["relation"],"tags":{"type":"route","route":"foot"},"reference":{"key":"route","value":"foot"}},"type/route/hiking":{"icon":"fas-hiking","fields":["name","ref_route","operator","network_foot","network/type","from","to","via"],"moreFields":["ascent","cai_scale-IT","colour","descent","distance","roundtrip"],"geometry":["relation"],"tags":{"type":"route","route":"hiking"},"reference":{"key":"route","value":"hiking"}},"type/route/horse":{"icon":"maki-horse-riding","fields":["name","ref_route","operator","network_horse","network/type","from","to","via"],"moreFields":["ascent","colour","descent","distance"],"geometry":["relation"],"tags":{"type":"route","route":"horse"},"reference":{"key":"route","value":"horse"}},"type/route/light_rail":{"icon":"temaki-light_rail","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"light_rail"},"reference":{"key":"route","value":"light_rail"}},"type/route/monorail":{"icon":"temaki-monorail","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"monorail"},"reference":{"key":"route","value":"monorail"}},"type/route/mtb":{"icon":"maki-bicycle","fields":["{type/route/bicycle}"],"moreFields":["{type/route/bicycle}"],"geometry":["relation"],"tags":{"type":"route","route":"mtb"},"reference":{"key":"route","value":"mtb"}},"type/route/pipeline":{"icon":"iD-pipeline-line","fields":["{type/route/power}"],"moreFields":["{type/route/power}"],"geometry":["relation"],"tags":{"type":"route","route":"pipeline"},"reference":{"key":"route","value":"pipeline"}},"type/route/piste":{"icon":"fas-skiing","fields":["name","piste/type","ref_route","operator","from","to","via"],"moreFields":["ascent","colour","descent","distance","roundtrip"],"geometry":["relation"],"tags":{"type":"route","route":"piste"},"reference":{"key":"route","value":"piste"}},"type/route/power":{"icon":"iD-power-line","fields":["name","ref_route","operator","from","to"],"moreFields":["distance"],"geometry":["relation"],"tags":{"type":"route","route":"power"},"reference":{"key":"route","value":"power"}},"type/route/railway":{"icon":"temaki-railway_track","fields":["name","ref_route","operator","network","from","to","via"],"moreFields":["distance"],"geometry":["relation"],"tags":{"type":"route","route":"railway"},"reference":{"key":"route","value":"railway"}},"type/route/road":{"icon":"iD-highway-unclassified","fields":["name","ref_route","network_road","direction_cardinal-US-CA-NZ","from","to","via"],"moreFields":["colour","distance","roundtrip"],"geometry":["relation"],"tags":{"type":"route","route":"road"},"reference":{"key":"route","value":"road"}},"type/route/subway":{"icon":"temaki-subway","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"subway"},"reference":{"key":"route","value":"subway"}},"type/route/train":{"icon":"temaki-train","fields":["name","ref_route","operator","network","from","to","via"],"moreFields":["colour","direction_cardinal-US-CA-NZ","distance","duration","interval","opening_hours","opening_hours/covid19","roundtrip","wheelchair"],"geometry":["relation"],"tags":{"type":"route","route":"train"},"reference":{"key":"route","value":"train"}},"type/route/tram":{"icon":"temaki-tram","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"tram"},"reference":{"key":"route","value":"tram"}},"type/route/trolleybus":{"icon":"temaki-trolleybus","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"trolleybus"},"reference":{"key":"route","value":"trolleybus"}},"type/site":{"icon":"iD-relation","fields":["name","site"],"geometry":["relation"],"tags":{"type":"site"}},"type/waterway":{"icon":"iD-waterway-stream","fields":["name","waterway","destination_waterway","ref"],"moreFields":["gnis/feature_id-US"],"geometry":["relation"],"tags":{"type":"waterway"}},"waterway/boatyard":{"icon":"temaki-boat","fields":["name","operator"],"moreFields":["address","email","fax","gnis/feature_id-US","phone","wheelchair"],"geometry":["area","vertex","point"],"tags":{"waterway":"boatyard"}},"waterway/canal":{"icon":"iD-waterway-canal","fields":["name","structure_waterway","width","usage_waterway","intermittent","lock"],"moreFields":["fishing","gnis/feature_id-US","salt","tidal"],"geometry":["line"],"tags":{"waterway":"canal"}},"waterway/canal/lock":{"icon":"iD-waterway-canal","fields":["name","width","lock"],"moreFields":["gnis/feature_id-US","intermittent","salt","tidal"],"geometry":["line"],"tags":{"waterway":"canal","lock":"yes"}},"waterway/dam":{"icon":"maki-dam","geometry":["point","vertex","line","area"],"fields":["name","operator","gnis/feature_id-US","height","material"],"moreFields":["seamark/type"],"tags":{"waterway":"dam"}},"waterway/ditch":{"icon":"iD-waterway-ditch","fields":["{waterway/drain}"],"moreFields":["{waterway/drain}"],"geometry":["line"],"tags":{"waterway":"ditch"}},"waterway/dock":{"icon":"maki-harbor","fields":["name","dock","operator"],"geometry":["area","vertex","point"],"tags":{"waterway":"dock"}},"waterway/drain":{"icon":"iD-waterway-ditch","fields":["structure_waterway","intermittent"],"moreFields":["covered"],"geometry":["line"],"tags":{"waterway":"drain"}},"waterway/fish_pass":{"icon":"temaki-fish_ladder","fields":["name","structure_waterway","width","seasonal"],"moreFields":["covered","gnis/feature_id-US","salt"],"geometry":["line"],"tags":{"waterway":"fish_pass"}},"waterway/fuel":{"icon":"maki-fuel","fields":["name","operator","address","opening_hours","fuel/fuel_multi"],"moreFields":["branch_brand","brand","building","email","fax","payment_multi","opening_hours/covid19","phone","seamark/type","wheelchair"],"geometry":["point","vertex","area"],"tags":{"waterway":"fuel"},"addTags":{"waterway":"fuel","seamark:type":"small_craft_facility","seamark:small_craft_facility:category":"fuel_station"}},"waterway/lock_gate":{"icon":"maki-dam","geometry":["vertex","line"],"fields":["name","ref","height","material"],"tags":{"waterway":"lock_gate"},"addTags":{"waterway":"lock_gate","seamark:type":"gate"}},"waterway/milestone":{"icon":"temaki-milestone","fields":["distance","direction_vertex"],"moreFields":["seamark/type"],"geometry":["point","vertex"],"tags":{"waterway":"milestone"}},"waterway/river":{"icon":"iD-waterway-river","fields":["name","structure_waterway","width","intermittent","tidal"],"moreFields":["covered","fishing","gnis/feature_id-US","salt"],"geometry":["line"],"tags":{"waterway":"river"}},"waterway/sanitary_dump_station":{"icon":"temaki-waste","fields":["name","operator","access_simple","fee","payment_multi_fee","charge_fee","water_point"],"moreFields":["opening_hours","opening_hours/covid19","seamark/type"],"geometry":["point","vertex","area"],"tags":{"waterway":"sanitary_dump_station"},"addTags":{"waterway":"sanitary_dump_station","seamark:type":"small_craft_facility","seamark:small_craft_facility:category":"pump-out"}},"waterway/stream_intermittent":{"icon":"iD-waterway-stream","fields":["{waterway/stream}"],"moreFields":["{waterway/stream}"],"geometry":["line"],"tags":{"waterway":"stream","intermittent":"yes"},"reference":{"key":"waterway","value":"stream"}},"waterway/stream":{"icon":"iD-waterway-stream","fields":["name","structure_waterway","width","intermittent"],"moreFields":["covered","fishing","gnis/feature_id-US","salt","tidal"],"geometry":["line"],"tags":{"waterway":"stream"}},"waterway/tidal_channel":{"icon":"iD-waterway-stream","fields":["name","structure_waterway","width","salt","tidal","intermittent"],"moreFields":["covered","fishing","gnis/feature_id-US"],"geometry":["line"],"tags":{"waterway":"tidal_channel"}},"waterway/water_point":{"icon":"maki-drinking-water","fields":["{amenity/water_point}"],"moreFields":["{amenity/water_point}"],"geometry":["point","vertex","area"],"tags":{"waterway":"water_point"}},"waterway/waterfall":{"icon":"maki-waterfall","fields":["name","height","width","intermittent"],"moreFields":["gnis/feature_id-US"],"geometry":["vertex"],"tags":{"waterway":"waterfall"}},"waterway/weir":{"icon":"maki-dam","fields":["name","operator","height","material"],"moreFields":["gnis/feature_id-US","seamark/type"],"geometry":["vertex","line"],"tags":{"waterway":"weir"}}}
\ No newline at end of file
+{"traffic_sign":{"icon":"fas-directions","fields":["traffic_sign","traffic_sign/direction","direction_point"],"geometry":["point","vertex"],"tags":{"traffic_sign":"*"}},"traffic_calming":{"icon":"temaki-diamond","fields":["traffic_calming","surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"*"},"matchScore":0.4},"shop":{"icon":"maki-shop","fields":["name","shop","operator","address","building_area_yes","opening_hours","payment_multi","phone"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","branch_brand","brand","building/levels_building","changing_table","currency_multi","ele","height_building","second_hand","stroller","toilets","toilets/wheelchair","toilets/menstrual_products_poi"],"geometry":["point","area"],"tags":{"shop":"*"},"matchScore":0.7},"relation":{"icon":"iD-relation","fields":["name","relation"],"geometry":["relation"],"tags":{}},"polling_station":{"icon":"fas-vote-yea","fields":["name","ref","operator","address","opening_hours","building_area","phone"],"moreFields":["{@templates/contact}","{@templates/internet_access}","air_conditioning","level","wheelchair"],"geometry":["point","area"],"tags":{"polling_station":"*"},"matchScore":0.75},"point":{"fields":["name"],"geometry":["vertex","point"],"tags":{},"matchScore":0.1},"office":{"icon":"maki-suitcase","fields":["name","office","address","building_area_yes","opening_hours","phone","website"],"moreFields":["{@templates/contact}","{@templates/internet_access}","air_conditioning","baby_feeding","building/levels_building","ele","gnis/feature_id-US","height_building","level","not/name","operator","ref/vatin","ref/FR/siret-FR","smoking","wheelchair"],"geometry":["point","vertex","area"],"tags":{"office":"*"},"matchScore":0.7},"marker":{"icon":"temaki-silo","fields":["ref","operator","marker","utility","colour","material","inscription"],"moreFields":["height","location","manufacturer"],"geometry":["point","vertex"],"tags":{"marker":"*"}},"line":{"fields":["name"],"geometry":["line"],"tags":{},"matchScore":0.1},"junction":{"icon":"temaki-junction","fields":["name"],"geometry":["vertex","area"],"tags":{"junction":"yes"}},"historic":{"icon":"temaki-ruins","fields":["historic","inscription"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex","line","area"],"tags":{"historic":"*"},"matchScore":0.5},"healthcare":{"icon":"maki-hospital","fields":["name","healthcare","operator","healthcare/speciality","address","building_area","phone","website"],"moreFields":["{@templates/contact}","branch_brand","brand","building/levels_building","gnis/feature_id-US","height_building","level","opening_hours","payment_multi","wheelchair"],"geometry":["point","area"],"tags":{"healthcare":"*"},"matchScore":0.4},"ford":{"icon":"roentgen-ford","fields":["name","depth","access","seasonal"],"moreFields":["gnis/feature_id-US"],"geometry":["vertex"],"tags":{"ford":"yes"}},"entrance":{"icon":"maki-entrance-alt1","fields":["ref","entrance","door","access_simple","wheelchair","level","address"],"geometry":["vertex"],"tags":{"entrance":"*"}},"education":{"icon":"temaki-school","fields":["name","education","operator","address","building_area","phone","website"],"moreFields":["{@templates/contact}","branch_brand","brand","building/levels_building","gnis/feature_id-US","height_building","level","opening_hours","payment_multi","wheelchair"],"geometry":["point","area"],"tags":{"education":"*"},"matchScore":0.7},"craft":{"icon":"temaki-tools","fields":["name","craft","operator","address","building_area_yes","opening_hours","phone","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","building/levels_building","height_building","product"],"geometry":["point","area"],"tags":{"craft":"*"}},"club":{"icon":"fas-handshake","fields":["name","club","operator","address","building_area_yes","opening_hours","phone","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","access_simple","building/levels_building","height_building","max_age","min_age"],"geometry":["point","area"],"tags":{"club":"*"}},"building_part":{"icon":"maki-building","fields":["building/part","building/levels","height","building/material","building/colour","roof/colour","roof/height","roof/shape"],"moreFields":["layer"],"geometry":["area"],"tags":{"building:part":"*"},"matchScore":0.5},"building":{"icon":"maki-home","fields":["name","building","building/levels","height","address"],"moreFields":["architect","building/colour","building/levels/underground","building/material","building/prefabricated","ele","gnis/feature_id-US","layer","not/name","operator","roof/colour","roof/shape","roof/height","smoking","wheelchair"],"geometry":["area"],"tags":{"building":"*"},"matchScore":0.6},"barrier":{"icon":"maki-roadblock","geometry":["point","vertex","line","area"],"tags":{"barrier":"*"},"fields":["barrier"],"moreFields":["level"],"matchScore":0.4},"area":{"fields":["name"],"geometry":["area"],"tags":{"area":"yes"},"matchScore":0.1},"advertising":{"icon":"temaki-billboard","fields":["advertising","operator","lit","visibility"],"moreFields":["access_simple","height","message"],"geometry":["point","line","area"],"tags":{"advertising":"*"}},"address":{"fields":["address"],"geometry":["point","vertex","area"],"tags":{"addr:*":"*"},"addTags":{},"removeTags":{},"reference":{"key":"addr"},"matchScore":0.15},"waterway":{"fields":["name","waterway"],"geometry":["point","vertex","line","area"],"tags":{"waterway":"*"},"searchable":false},"tourism":{"icon":"maki-attraction","fields":["name","tourism"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"*"},"searchable":false},"telecom":{"icon":"temaki-cable","fields":["telecom","operator"],"geometry":["point","vertex","line","area"],"tags":{"telecom":"*"},"searchable":false},"seamark":{"icon":"maki-harbor","fields":["seamark/type"],"geometry":["point","vertex","line","area"],"tags":{"seamark:type":"*"},"searchable":false},"railway":{"icon":"temaki-rail_profile","fields":["railway"],"geometry":["point","vertex","line","area"],"tags":{"railway":"*"},"searchable":false},"power":{"icon":"temaki-power","geometry":["point","vertex","line","area"],"tags":{"power":"*"},"fields":["power","operator"],"searchable":false},"playground":{"icon":"maki-playground","fields":["playground","playground/theme","min_age","max_age","wheelchair","blind","height"],"moreFields":["access_simple","colour","manufacturer","material","ref"],"geometry":["point","vertex","line","area"],"tags":{"playground":"*"},"searchable":false},"place":{"fields":["name","place"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex","area"],"tags":{"place":"*"},"searchable":false},"pipeline":{"icon":"iD-pipeline-line","fields":["pipeline","operator"],"geometry":["point","vertex","line","area"],"tags":{"pipeline":"*"},"searchable":false},"natural":{"icon":"maki-natural","fields":["name","natural"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex","line","area"],"tags":{"natural":"*"},"searchable":false},"man_made":{"icon":"temaki-storage_tank","fields":["name","man_made"],"moreFields":["material"],"geometry":["point","vertex","line","area"],"tags":{"man_made":"*"},"matchScore":0.4,"searchable":false},"leisure":{"icon":"maki-pitch","fields":["name","leisure"],"geometry":["point","vertex","line","area"],"tags":{"leisure":"*"},"searchable":false},"landuse":{"fields":["name","landuse"],"geometry":["area"],"tags":{"landuse":"*"},"matchScore":0.9,"searchable":false},"indoor":{"icon":"temaki-room","fields":["level","indoor_type"],"geometry":["point","vertex","line","area"],"tags":{"indoor":"*"},"matchScore":0.8,"searchable":false},"highway":{"fields":["name","highway"],"geometry":["point","vertex","line","area"],"tags":{"highway":"*"},"searchable":false},"ford_line":{"icon":"roentgen-ford","geometry":["line"],"tags":{"ford":"*"},"searchable":false},"emergency":{"fields":["emergency_combo"],"geometry":["point","vertex","area"],"tags":{"emergency":"*"},"searchable":false},"embankment":{"geometry":["line"],"tags":{"embankment":"yes"},"matchScore":0.2,"searchable":false},"building_point":{"icon":"maki-home","fields":["{building}"],"moreFields":["{building}"],"geometry":["point"],"tags":{"building":"*"},"matchScore":0.6,"searchable":false},"boundary":{"fields":["boundary"],"geometry":["line"],"tags":{"boundary":"*"},"searchable":false,"matchScore":0.45},"attraction":{"icon":"maki-star","fields":["name","attraction","operator","opening_hours","fee","charge_fee"],"moreFields":["{@templates/contact}","address","payment_multi"],"geometry":["point","vertex","line","area"],"tags":{"attraction":"*"},"searchable":false},"amenity":{"fields":["amenity"],"geometry":["point","vertex","line","area"],"tags":{"amenity":"*"},"searchable":false},"aeroway":{"icon":"maki-airport","fields":["aeroway"],"geometry":["point","vertex","line","area"],"tags":{"aeroway":"*"},"searchable":false},"aerialway":{"fields":["name","aerialway"],"moreFields":["layer"],"geometry":["point","vertex","line"],"tags":{"aerialway":"*"},"searchable":false},"waterway/weir":{"icon":"maki-dam","fields":["name","operator","height","material"],"moreFields":["gnis/feature_id-US","seamark/type"],"geometry":["vertex","line"],"tags":{"waterway":"weir"}},"waterway/waterfall":{"icon":"maki-waterfall","fields":["name","height","width","intermittent"],"moreFields":["gnis/feature_id-US"],"geometry":["vertex"],"tags":{"waterway":"waterfall"}},"waterway/water_point":{"icon":"maki-drinking-water","fields":["{amenity/water_point}"],"moreFields":["{amenity/water_point}"],"geometry":["point","vertex","area"],"tags":{"waterway":"water_point"}},"waterway/tidal_channel":{"icon":"iD-waterway-stream","fields":["name","structure_waterway","width","salt","tidal","intermittent"],"moreFields":["covered","fishing","gnis/feature_id-US"],"geometry":["line"],"tags":{"waterway":"tidal_channel"}},"waterway/stream_intermittent":{"icon":"iD-waterway-stream","fields":["{waterway/stream}"],"moreFields":["{waterway/stream}"],"geometry":["line"],"tags":{"waterway":"stream","intermittent":"yes"},"reference":{"key":"waterway","value":"stream"}},"waterway/stream":{"icon":"iD-waterway-stream","fields":["name","structure_waterway","width","intermittent"],"moreFields":["covered","fishing","gnis/feature_id-US","salt","tidal"],"geometry":["line"],"tags":{"waterway":"stream"}},"waterway/sanitary_dump_station":{"icon":"temaki-waste","fields":["name","operator","access_simple","fee","payment_multi_fee","charge_fee","water_point"],"moreFields":["opening_hours","seamark/type"],"geometry":["point","vertex","area"],"tags":{"waterway":"sanitary_dump_station"},"addTags":{"waterway":"sanitary_dump_station","seamark:type":"small_craft_facility","seamark:small_craft_facility:category":"pump-out"}},"waterway/river":{"icon":"iD-waterway-river","fields":["name","structure_waterway","width","intermittent","tidal"],"moreFields":["covered","fishing","gnis/feature_id-US","salt"],"geometry":["line"],"tags":{"waterway":"river"}},"waterway/milestone":{"icon":"temaki-milestone","fields":["distance","direction_vertex"],"moreFields":["seamark/type"],"geometry":["point","vertex"],"tags":{"waterway":"milestone"}},"waterway/lock_gate":{"icon":"maki-dam","geometry":["vertex","line"],"fields":["name","ref","height","material"],"tags":{"waterway":"lock_gate"},"addTags":{"waterway":"lock_gate","seamark:type":"gate"}},"waterway/fuel":{"icon":"maki-fuel","fields":["name","operator","address","opening_hours","fuel/fuel_multi"],"moreFields":["{@templates/contact}","branch_brand","brand","building","payment_multi","seamark/type","wheelchair"],"geometry":["point","vertex","area"],"tags":{"waterway":"fuel"},"addTags":{"waterway":"fuel","seamark:type":"small_craft_facility","seamark:small_craft_facility:category":"fuel_station"}},"waterway/fish_pass":{"icon":"temaki-fish_ladder","fields":["name","structure_waterway","width","seasonal"],"moreFields":["covered","gnis/feature_id-US","salt"],"geometry":["line"],"tags":{"waterway":"fish_pass"}},"waterway/drain":{"icon":"iD-waterway-ditch","fields":["structure_waterway","intermittent"],"moreFields":["covered"],"geometry":["line"],"tags":{"waterway":"drain"}},"waterway/dock":{"icon":"maki-harbor","fields":["name","dock","operator"],"geometry":["area","vertex","point"],"tags":{"waterway":"dock"}},"waterway/ditch":{"icon":"iD-waterway-ditch","fields":["{waterway/drain}"],"moreFields":["{waterway/drain}"],"geometry":["line"],"tags":{"waterway":"ditch"}},"waterway/dam":{"icon":"maki-dam","geometry":["point","vertex","line","area"],"fields":["name","operator","gnis/feature_id-US","height","material"],"moreFields":["seamark/type"],"tags":{"waterway":"dam"}},"waterway/canal":{"icon":"iD-waterway-canal","fields":["name","structure_canal","width","usage_waterway","intermittent","lock"],"moreFields":["fishing","gnis/feature_id-US","salt","tidal"],"geometry":["line"],"tags":{"waterway":"canal"}},"waterway/boatyard":{"icon":"temaki-boat","fields":["name","operator"],"moreFields":["{@templates/contact}","address","gnis/feature_id-US","wheelchair"],"geometry":["area","vertex","point"],"tags":{"waterway":"boatyard"}},"waterway/canal/lock":{"icon":"iD-waterway-canal","fields":["name","width","lock"],"moreFields":["gnis/feature_id-US","intermittent","salt","tidal"],"geometry":["line"],"tags":{"waterway":"canal","lock":"yes"}},"type/waterway":{"icon":"iD-waterway-stream","fields":["name","waterway","destination_waterway","ref"],"moreFields":["gnis/feature_id-US"],"geometry":["relation"],"tags":{"type":"waterway"}},"type/site":{"icon":"iD-relation","fields":["name","site"],"geometry":["relation"],"tags":{"type":"site"}},"type/route_master":{"icon":"iD-route-master","fields":["name","route_master","ref","operator","network"],"moreFields":["colour","interval","opening_hours","wheelchair"],"geometry":["relation"],"tags":{"type":"route_master"}},"type/route":{"icon":"iD-route","fields":["name","route","ref_route","operator","network","network/type"],"moreFields":["distance"],"geometry":["relation"],"tags":{"type":"route"}},"type/restriction":{"icon":"iD-restriction","fields":["restriction","except"],"geometry":["relation"],"tags":{"type":"restriction"}},"type/multipolygon":{"icon":"iD-multipolygon","geometry":["relation"],"tags":{"type":"multipolygon"},"removeTags":{},"matchScore":0.1},"type/enforcement":{"icon":"iD-relation","fields":["enforcement"],"geometry":["relation"],"tags":{"type":"enforcement"}},"type/destination_sign":{"icon":"iD-relation","fields":["destination","destination/ref","destination/symbol","distance"],"geometry":["relation"],"tags":{"type":"destination_sign"}},"type/connectivity":{"icon":"iD-relation","fields":["connectivity"],"geometry":["relation"],"tags":{"type":"connectivity"}},"type/boundary":{"icon":"iD-boundary","fields":["name","boundary"],"geometry":["relation"],"tags":{"type":"boundary"}},"type/associatedStreet":{"icon":"iD-relation","fields":["name"],"geometry":["relation"],"tags":{"type":"associatedStreet"},"searchable":false},"type/site/climbing/crag":{"icon":"temaki-climbing","fields":["{climbing/crag}"],"moreFields":["{climbing/crag}"],"geometry":["relation"],"tags":{"type":"site","climbing":"crag"},"addTags":{"climbing":"crag","site":"climbing","sport":"climbing","type":"site"},"reference":{"key":"climbing","value":"crag"}},"type/site/climbing/area":{"icon":"temaki-climbing","fields":["name"],"moreFields":["website"],"geometry":["relation"],"tags":{"climbing":"area","type":"site"},"addTags":{"climbing":"area","site":"climbing","sport":"climbing","type":"site"},"reference":{"key":"climbing","value":"crag"}},"type/route/trolleybus":{"icon":"temaki-trolleybus","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"trolleybus"},"reference":{"key":"route","value":"trolleybus"}},"type/route/tram":{"icon":"temaki-tram","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"tram"},"reference":{"key":"route","value":"tram"}},"type/route/train":{"icon":"temaki-train","fields":["name","ref_route","operator","network","from","to","via"],"moreFields":["colour","direction_cardinal-US-CA-NZ","distance","duration","interval","opening_hours","roundtrip","wheelchair"],"geometry":["relation"],"tags":{"type":"route","route":"train"},"reference":{"key":"route","value":"train"}},"type/route/subway":{"icon":"temaki-subway","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"subway"},"reference":{"key":"route","value":"subway"}},"type/route/road":{"icon":"iD-highway-unclassified","fields":["name","ref_route","network_road","direction_cardinal-US-CA-NZ","from","to","via"],"moreFields":["colour","distance","roundtrip"],"geometry":["relation"],"tags":{"type":"route","route":"road"},"reference":{"key":"route","value":"road"}},"type/route/railway":{"icon":"temaki-railway_track","fields":["name","ref_route","operator","network","from","to","via"],"moreFields":["distance"],"geometry":["relation"],"tags":{"type":"route","route":"railway"},"reference":{"key":"route","value":"railway"}},"type/route/power":{"icon":"iD-power-line","fields":["name","ref_route","operator","from","to"],"moreFields":["distance"],"geometry":["relation"],"tags":{"type":"route","route":"power"},"reference":{"key":"route","value":"power"}},"type/route/piste":{"icon":"fas-skiing","fields":["name","piste/type","ref_route","operator","from","to","via"],"moreFields":["ascent","colour","descent","distance","roundtrip"],"geometry":["relation"],"tags":{"type":"route","route":"piste"},"reference":{"key":"route","value":"piste"}},"type/route/pipeline":{"icon":"iD-pipeline-line","fields":["{type/route/power}"],"moreFields":["{type/route/power}"],"geometry":["relation"],"tags":{"type":"route","route":"pipeline"},"reference":{"key":"route","value":"pipeline"}},"type/route/mtb":{"icon":"maki-bicycle","fields":["{type/route/bicycle}"],"moreFields":["{type/route/bicycle}"],"geometry":["relation"],"tags":{"type":"route","route":"mtb"},"reference":{"key":"route","value":"mtb"}},"type/route/monorail":{"icon":"temaki-monorail","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"monorail"},"reference":{"key":"route","value":"monorail"}},"type/route/light_rail":{"icon":"temaki-light_rail","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"light_rail"},"reference":{"key":"route","value":"light_rail"}},"type/route/horse":{"icon":"maki-horse-riding","fields":["name","ref_route","operator","network_horse","network/type","from","to","via"],"moreFields":["ascent","colour","descent","distance"],"geometry":["relation"],"tags":{"type":"route","route":"horse"},"reference":{"key":"route","value":"horse"}},"type/route/hiking":{"icon":"fas-hiking","fields":["name","ref_route","operator","network_foot","network/type","from","to","via"],"moreFields":["ascent","cai_scale-IT","colour","descent","distance","roundtrip"],"geometry":["relation"],"tags":{"type":"route","route":"hiking"},"reference":{"key":"route","value":"hiking"}},"type/route/foot":{"icon":"temaki-pedestrian","fields":["{type/route/hiking}"],"moreFields":["{type/route/hiking}"],"geometry":["relation"],"tags":{"type":"route","route":"foot"},"reference":{"key":"route","value":"foot"}},"type/route/ferry":{"icon":"temaki-ferry","fields":["{route/ferry}"],"moreFields":["{route/ferry}"],"geometry":["relation"],"tags":{"type":"route","route":"ferry"},"reference":{"key":"route","value":"ferry"}},"type/route/detour":{"icon":"iD-route-detour","fields":["name","ref_route","from","to"],"geometry":["relation"],"tags":{"type":"route","route":"detour"},"reference":{"key":"route","value":"detour"}},"type/route/climbing":{"icon":"temaki-climbing","geometry":["relation"],"fields":["{climbing/route_bottom}"],"moreFields":["{climbing/route_bottom}"],"tags":{"type":"route","route":"climbing"},"addTags":{"climbing":"route","route":"climbing","sport":"climbing","type":"route"},"reference":{"key":"climbing","value":"route"}},"type/route/bus":{"icon":"temaki-bus","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"bus"},"reference":{"key":"route","value":"bus"}},"type/route/bicycle":{"icon":"maki-bicycle","fields":["name","ref_route","network_bicycle","cycle_network","network/type","from","to","via"],"moreFields":["ascent","colour","descent","direction_cardinal-US-CA-NZ","distance","roundtrip"],"geometry":["relation"],"tags":{"type":"route","route":"bicycle"},"reference":{"key":"route","value":"bicycle"}},"type/route/aerialway":{"icon":"temaki-gondola_lift","fields":["{type/route/train}"],"moreFields":["{type/route/train}"],"geometry":["relation"],"tags":{"type":"route","route":"aerialway"},"reference":{"key":"route","value":"aerialway"}},"type/restriction/only_u_turn":{"icon":"iD-restriction-only-u-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"only_u_turn"},"reference":{"key":"restriction","value":"only_u_turn"}},"type/restriction/only_straight_on":{"icon":"iD-restriction-only-straight-on","geometry":["relation"],"tags":{"type":"restriction","restriction":"only_straight_on"},"reference":{"key":"restriction","value":"only_straight_on"}},"type/restriction/only_right_turn":{"icon":"iD-restriction-only-right-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"only_right_turn"},"reference":{"key":"restriction","value":"only_right_turn"}},"type/restriction/only_left_turn":{"icon":"iD-restriction-only-left-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"only_left_turn"},"reference":{"key":"restriction","value":"only_left_turn"}},"type/restriction/no_u_turn":{"icon":"iD-restriction-no-u-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"no_u_turn"},"reference":{"key":"restriction","value":"no_u_turn"}},"type/restriction/no_straight_on":{"icon":"iD-restriction-no-straight-on","geometry":["relation"],"tags":{"type":"restriction","restriction":"no_straight_on"},"reference":{"key":"restriction","value":"no_straight_on"}},"type/restriction/no_right_turn":{"icon":"iD-restriction-no-right-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"no_right_turn"},"reference":{"key":"restriction","value":"no_right_turn"}},"type/restriction/no_left_turn":{"icon":"iD-restriction-no-left-turn","geometry":["relation"],"tags":{"type":"restriction","restriction":"no_left_turn"},"reference":{"key":"restriction","value":"no_left_turn"}},"type/public_transport/stop_area_group":{"icon":"iD-relation","fields":["name","ref","network","operator"],"geometry":["relation"],"tags":{"type":"public_transport","public_transport":"stop_area_group"},"reference":{"key":"public_transport","value":"stop_area_group"}},"type/enforcement/maxspeed":{"icon":"iD-relation","fields":["maxspeed"],"geometry":["relation"],"tags":{"type":"enforcement","enforcement":"maxspeed"},"reference":{"key":"enforcement","value":"maxspeed"}},"type/boundary/administrative":{"icon":"iD-boundary","fields":["name","admin_level"],"moreFields":["gnis/feature_id-US"],"geometry":["relation"],"tags":{"type":"boundary","boundary":"administrative"},"reference":{"key":"boundary","value":"administrative"}},"traffic_sign/variable_message":{"icon":"temaki-billboard","fields":["{traffic_sign}","direction_vertex"],"geometry":["point","vertex"],"tags":{"traffic_sign":"variable_message"}},"traffic_sign/maxspeed":{"icon":"fas-directions","fields":["{traffic_sign}","maxspeed"],"geometry":["point","vertex"],"tags":{"traffic_sign":"maxspeed"},"locationSet":{"exclude":["US","CA","LR"]}},"traffic_sign/maxspeed-US-CA-LR":{"icon":"maki-square-stroked","fields":["{traffic_sign/maxspeed}"],"moreFields":["{traffic_sign/maxspeed}"],"geometry":["point","vertex"],"tags":{"traffic_sign":"maxspeed"},"locationSet":{"include":["US","CA","LR"]},"name":"{traffic_sign/maxspeed}"},"traffic_sign/city_limit":{"icon":"roentgen-city_limit_sign","fields":["{traffic_sign}","name"],"geometry":["point","vertex"],"tags":{"traffic_sign":"city_limit"}},"traffic_calming/table":{"icon":"temaki-speed_table","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"table"},"matchScore":0.9},"traffic_calming/rumble_strip":{"icon":"temaki-rumble_strip","fields":["direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"rumble_strip"}},"traffic_calming/mini_bumps":{"icon":"temaki-speed_bump","tags":{"traffic_calming":"mini_bumps"},"geometry":["vertex"],"fields":["surface","direction_vertex"]},"traffic_calming/island":{"icon":"temaki-diamond","fields":["surface"],"geometry":["vertex"],"tags":{"traffic_calming":"island"}},"traffic_calming/hump":{"icon":"temaki-speed_hump","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"hump"}},"traffic_calming/dip":{"icon":"temaki-speed_dip","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"dip"}},"traffic_calming/cushion":{"icon":"temaki-speed_hump","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"cushion"}},"traffic_calming/choker":{"icon":"temaki-diamond","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"choker"}},"traffic_calming/chicane":{"icon":"temaki-chicane_arrow","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"chicane"}},"traffic_calming/bump":{"icon":"temaki-speed_bump","fields":["surface","direction_vertex"],"geometry":["vertex"],"tags":{"traffic_calming":"bump"}},"traffic_calming/yes":{"icon":"temaki-diamond","fields":["traffic_calming","{traffic_calming}"],"geometry":["vertex"],"tags":{"traffic_calming":"yes"},"searchable":false,"matchScore":0.5},"tourism/zoo":{"icon":"temaki-zoo","fields":["name","operator","address","opening_hours","fee","charge_fee"],"moreFields":["{@templates/internet_access}","{@templates/poi}","changing_table","toilets","toilets/wheelchair","toilets/menstrual_products_poi"],"geometry":["point","area"],"tags":{"tourism":"zoo"}},"tourism/wilderness_hut":{"icon":"temaki-cabin","fields":["name","operator","building_area_yes","access_simple","fee","payment_multi_fee","charge_fee","fireplace"],"moreFields":["{@templates/internet_access}","address","capacity","drinking_water_available","gnis/feature_id-US","kitchen","mattress","reservation","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"wilderness_hut"}},"tourism/viewpoint":{"icon":"temaki-spotting_scope","geometry":["point","vertex","area"],"fields":["direction"],"moreFields":["level"],"tags":{"tourism":"viewpoint"}},"tourism/trail_riding_station":{"icon":"maki-horse-riding","fields":["name","horse_riding"],"moreFields":["{@templates/contact}","{@templates/internet_access}","address","gnis/feature_id-US","opening_hours"],"geometry":["point","area"],"tags":{"tourism":"trail_riding_station"},"matchScore":2},"tourism/theme_park":{"icon":"maki-amusement-park","fields":["name","operator","address","opening_hours","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","branch_brand","brand"],"geometry":["point","area"],"tags":{"tourism":"theme_park"}},"tourism/picnic_site":{"icon":"maki-picnic-site","fields":["name","operator","address","access_simple","capacity"],"moreFields":["{@templates/internet_access}","charge_fee","fee","gnis/feature_id-US","level","payment_multi_fee","phone","reservation","smoking","wheelchair"],"geometry":["point","vertex","area"],"tags":{"tourism":"picnic_site"}},"tourism/museum":{"icon":"temaki-museum","fields":["name","operator","operator/type","museum","address","building_area_yes","opening_hours"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","building/levels_building","charge_fee","changing_table","fee","height_building","toilets","toilets/wheelchair","toilets/menstrual_products_poi"],"geometry":["point","area"],"tags":{"tourism":"museum"}},"tourism/motel":{"icon":"maki-lodging","fields":["name","brand","address","website","email","phone","building_area_yes","rooms","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","branch_brand","building/levels_building","height_building","operator","payment_multi","ref/vatin","reservation","smoking","wheelchair"],"geometry":["point","area"],"tags":{"tourism":"motel"}},"tourism/information":{"icon":"maki-information","fields":["information","operator","address","building_area_yes"],"moreFields":["level"],"geometry":["point","vertex","area"],"tags":{"tourism":"information"}},"tourism/hotel":{"icon":"fas-concierge-bell","fields":["{tourism/motel}"],"moreFields":["{tourism/motel}","bar","fhrs/id-GB","ref/FR/siret-FR","stars"],"geometry":["point","area"],"tags":{"tourism":"hotel"}},"tourism/hostel":{"icon":"temaki-bunk_beds","fields":["{tourism/guest_house}"],"moreFields":["fhrs/id-GB","{tourism/guest_house}"],"geometry":["point","area"],"tags":{"tourism":"hostel"}},"tourism/guest_house":{"icon":"maki-lodging","fields":["name","operator","guest_house","address","website","email","phone","building_area_yes","rooms","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","building/levels_building","fhrs/id-GB","height_building","reservation","smoking"],"geometry":["point","area"],"tags":{"tourism":"guest_house"}},"tourism/gallery":{"icon":"maki-art-gallery","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/internet_access}","{@templates/poi}","changing_table","toilets","toilets/wheelchair","toilets/menstrual_products_poi"],"geometry":["point","area"],"tags":{"tourism":"gallery"}},"tourism/chalet":{"icon":"temaki-cabin","fields":["name","operator","address","website","email","phone","building_area_yes","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","building/levels_building","height_building","payment_multi","fhrs/id-GB","reservation","smoking"],"geometry":["point","area"],"tags":{"tourism":"chalet"}},"tourism/caravan_site":{"icon":"temaki-camper_trailer","fields":["name","address","capacity/caravans","sanitary_dump_station","power_supply","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","charge_fee","fee","operator","reservation","smoking"],"geometry":["point","vertex","area"],"tags":{"tourism":"caravan_site"}},"tourism/camp_site":{"icon":"maki-campsite","fields":["name","operator","camp_site","address","access_simple","capacity/persons","tents","capacity/tents","caravans","capacity/caravans","static_caravans","fee","payment_multi_fee","charge_fee"],"moreFields":["{@templates/contact}","{@templates/internet_access}","backcountry","dog","drinking_water_available","gnis/feature_id-US","group_only","cabins","nudism","openfire","opening_hours","picnic_table","power_supply","ref/vatin","reservation","sanitary_dump_station","shower","stars","toilets","wheelchair"],"geometry":["point","vertex","area"],"tags":{"tourism":"camp_site"}},"tourism/camp_pitch":{"icon":"maki-campsite","fields":["name","ref"],"geometry":["point","area"],"tags":{"tourism":"camp_pitch"}},"tourism/attraction":{"icon":"maki-star","fields":["name","operator","address"],"moreFields":["fee","gnis/feature_id-US","level","opening_hours"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"attraction"},"matchScore":0.75},"tourism/artwork":{"icon":"maki-art-gallery","fields":["name","artwork_type","artist"],"moreFields":["level","material","subject/wikidata","inscription"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork"}},"tourism/aquarium":{"icon":"maki-aquarium","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/internet_access}","{@templates/poi}","charge_fee","changing_table","fee","smoking","toilets","toilets/wheelchair","toilets/menstrual_products_poi"],"geometry":["point","area"],"tags":{"tourism":"aquarium"}},"tourism/apartment":{"icon":"maki-lodging","fields":["name","operator","address","website","email","phone","building_area_yes","rooms","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","building/levels_building","height_building","reservation","smoking"],"geometry":["point","area"],"tags":{"tourism":"apartment"}},"tourism/alpine_hut":{"icon":"temaki-cabin","fields":["name","operator","address","phone","building_area_yes","{@templates/internet_access}","fee","payment_multi_fee","charge_fee"],"moreFields":["{@templates/internet_access}","{@templates/poi}","reservation"],"geometry":["point","area"],"tags":{"tourism":"alpine_hut"}},"tourism/zoo/wildlife":{"icon":"fas-frog","geometry":["point","area"],"tags":{"tourism":"zoo","zoo":"wildlife_park"},"reference":{"key":"zoo","value":"wildlife_park"}},"tourism/zoo/safari":{"icon":"temaki-zoo","geometry":["point","area"],"tags":{"tourism":"zoo","zoo":"safari_park"},"reference":{"key":"zoo","value":"safari_park"}},"tourism/zoo/petting":{"icon":"fas-horse","geometry":["point","area"],"tags":{"tourism":"zoo","zoo":"petting_zoo"},"reference":{"key":"zoo","value":"petting_zoo"}},"tourism/museum/history":{"icon":"temaki-museum","geometry":["point","area"],"tags":{"tourism":"museum","museum":"history"},"reference":{"key":"museum","value":"history"}},"tourism/information/terminal":{"icon":"temaki-app_terminal","fields":["operator"],"geometry":["point","vertex"],"tags":{"tourism":"information","information":"terminal"},"reference":{"key":"information","value":"terminal"}},"tourism/information/route_marker":{"icon":"maki-information","fields":["ref","operator","colour","material","ele_node","activity"],"geometry":["point","vertex"],"tags":{"tourism":"information","information":"route_marker"},"reference":{"key":"information","value":"route_marker"}},"tourism/information/office":{"icon":"maki-information","fields":["name","operator","address","building_area_yes","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","building/levels_building","height_building","toilets","toilets/wheelchair","toilets/menstrual_products_poi"],"geometry":["point","vertex","area"],"tags":{"tourism":"information","information":"office"},"reference":{"key":"information","value":"office"}},"tourism/information/map":{"icon":"fas-map","fields":["operator","map_type","map_size","direction","activity"],"geometry":["point","vertex"],"tags":{"tourism":"information","information":"map"},"reference":{"key":"information","value":"map"}},"tourism/information/guidepost":{"icon":"fas-map-signs","fields":["name","ele_node","operator","ref","activity"],"moreFields":["material"],"geometry":["point","vertex"],"tags":{"tourism":"information","information":"guidepost"},"reference":{"key":"information","value":"guidepost"}},"tourism/information/board":{"icon":"temaki-info_board","fields":["name","operator","board_type","direction","subject/wikidata"],"geometry":["point","vertex"],"tags":{"tourism":"information","information":"board"},"reference":{"key":"information","value":"board"}},"tourism/information/board/welcome_sign":{"icon":"maki-embassy","geometry":["point","vertex"],"tags":{"tourism":"information","information":"board","board_type":"welcome_sign"}},"tourism/camp_site/group_only":{"icon":"maki-campsite","geometry":["point","vertex","area"],"tags":{"tourism":"camp_site","group_only":"yes"},"reference":{"key":"group_only"}},"tourism/camp_site/backcountry":{"icon":"maki-campsite","geometry":["point","vertex","area"],"tags":{"tourism":"camp_site","backcountry":"yes"},"reference":{"key":"backcountry"}},"tourism/artwork/statue":{"icon":"temaki-statue","fields":["name","artist","material"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork","artwork_type":"statue"},"reference":{"key":"artwork_type","value":"statue"}},"tourism/artwork/sculpture":{"icon":"temaki-sculpture","fields":["name","artist","material"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork","artwork_type":"sculpture"},"reference":{"key":"artwork_type","value":"sculpture"}},"tourism/artwork/mural":{"icon":"maki-art-gallery","fields":["name","artist"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork","artwork_type":"mural"},"reference":{"key":"artwork_type","value":"mural"}},"tourism/artwork/installation":{"icon":"temaki-sculpture","fields":["name","artist"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork","artwork_type":"installation"},"reference":{"key":"artwork_type","value":"installation"}},"tourism/artwork/graffiti":{"icon":"maki-art-gallery","fields":["name","artist"],"geometry":["point","vertex","line","area"],"tags":{"tourism":"artwork","artwork_type":"graffiti"},"reference":{"key":"artwork_type","value":"graffiti"}},"tourism/artwork/bust":{"icon":"fas-user-alt","fields":["name","artist","material","inscription"],"geometry":["point","vertex"],"tags":{"tourism":"artwork","artwork_type":"bust"},"reference":{"key":"artwork_type","value":"bust"}},"telecom/exchange":{"icon":"temaki-cable","fields":["ref","operator","telecom/medium","address","building_area_yes"],"geometry":["point","area"],"tags":{"telecom":"exchange"}},"telecom/data_center":{"icon":"fas-server","fields":["name","ref","operator","building_area_yes"],"moreFields":["address","gnis/feature_id-US","phone"],"geometry":["point","area"],"tags":{"telecom":"data_center"}},"shop/wine":{"icon":"maki-alcohol-shop","moreFields":["{shop}","fhrs/id-GB","min_age"],"geometry":["point","area"],"tags":{"shop":"wine"}},"shop/window_blind":{"icon":"temaki-window","geometry":["point","area"],"tags":{"shop":"window_blind"}},"shop/wigs":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"wigs"}},"shop/wholesale":{"icon":"maki-warehouse","fields":["{shop}","wholesale"],"geometry":["point","area"],"tags":{"shop":"wholesale"}},"shop/weapons":{"icon":"temaki-dagger","geometry":["point","area"],"tags":{"shop":"weapons"}},"shop/water_sports":{"icon":"fas-swimmer","geometry":["point","area"],"tags":{"shop":"water_sports"}},"shop/water":{"icon":"temaki-water_bottle","geometry":["point","area"],"tags":{"shop":"water"}},"shop/watches":{"icon":"maki-watch","geometry":["point","area"],"tags":{"shop":"watches"}},"shop/video_games":{"icon":"maki-gaming","geometry":["point","area"],"tags":{"shop":"video_games"}},"shop/video":{"icon":"temaki-movie_rental","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"video"}},"shop/variety_store":{"icon":"maki-shop","geometry":["point","area"],"moreFields":["fhrs/id-GB"],"tags":{"shop":"variety_store"}},"shop/vacuum_cleaner":{"icon":"temaki-vacuum","geometry":["point","area"],"tags":{"shop":"vacuum_cleaner"}},"shop/tyres":{"icon":"temaki-tire","geometry":["point","area"],"tags":{"shop":"tyres"}},"shop/trophy":{"icon":"fas-trophy","geometry":["point","area"],"tags":{"shop":"trophy"}},"shop/travel_agency":{"icon":"fas-suitcase","geometry":["point","area"],"tags":{"shop":"travel_agency"}},"shop/trade":{"icon":"temaki-tools","fields":["name","trade","{shop}"],"geometry":["point","area"],"tags":{"shop":"trade"}},"shop/toys":{"icon":"fas-rocket","geometry":["point","area"],"tags":{"shop":"toys"}},"shop/tool_hire":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"shop":"tool_hire"}},"shop/tobacco":{"icon":"temaki-pipe","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"tobacco"}},"shop/tiles":{"icon":"temaki-tiling","geometry":["point","area"],"tags":{"shop":"tiles"}},"shop/ticket":{"icon":"fas-ticket-alt","geometry":["point","area"],"tags":{"shop":"ticket"}},"shop/telecommunication":{"icon":"maki-telephone","geometry":["point","area"],"tags":{"shop":"telecommunication"}},"shop/tea":{"icon":"maki-teahouse","geometry":["point","area"],"moreFields":["fhrs/id-GB"],"tags":{"shop":"tea"}},"shop/tattoo":{"icon":"temaki-tattoo_machine","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"tattoo"}},"shop/tailor":{"icon":"temaki-needle_and_spool","geometry":["point","area"],"tags":{"shop":"tailor"}},"shop/swimming_pool":{"icon":"fas-swimmer","geometry":["point","area"],"tags":{"shop":"swimming_pool"}},"shop/supermarket":{"icon":"maki-grocery","moreFields":["{shop}","self_checkout","diet_multi","fhrs/id-GB","organic"],"geometry":["point","area"],"tags":{"shop":"supermarket"}},"shop/storage_rental":{"icon":"temaki-storage_rental","geometry":["point","area"],"tags":{"shop":"storage_rental"}},"shop/stationery":{"icon":"fas-paperclip","geometry":["point","area"],"tags":{"shop":"stationery"}},"shop/sports":{"icon":"fas-futbol","fields":["name","operator","sport","{shop}"],"moreFields":["{shop}","service/bicycle"],"geometry":["point","area"],"tags":{"shop":"sports"}},"shop/spices":{"icon":"temaki-spice_bottle","geometry":["point","area"],"tags":{"shop":"spices"}},"shop/shoes":{"icon":"maki-shoe","geometry":["point","area"],"fields":["name","shoes","{shop}"],"tags":{"shop":"shoes"}},"shop/shoe_repair":{"icon":"temaki-hammer_shoe","geometry":["point","area"],"tags":{"shop":"shoe_repair"}},"shop/sewing":{"icon":"temaki-needle_and_spool","geometry":["point","area"],"tags":{"shop":"sewing"}},"shop/second_hand":{"icon":"maki-shop","fields":["{shop}","second_hand"],"geometry":["point","area"],"tags":{"shop":"second_hand"}},"shop/seafood":{"icon":"temaki-fish_cleaning","geometry":["point","area"],"tags":{"shop":"seafood"},"moreFields":["fhrs/id-GB"]},"shop/scuba_diving":{"icon":"temaki-scuba_diving","fields":["{shop}","scuba_diving"],"geometry":["point","area"],"tags":{"shop":"scuba_diving"}},"shop/rice":{"icon":"fas-bowl-rice","fields":["name","{shop}"],"moreFields":["{shop}"],"geometry":["point","area"],"tags":{"shop":"rice"},"reference":{"key":"shop","value":"rice"}},"shop/repair":{"icon":"fas-tools","geometry":["point","area"],"tags":{"shop":"repair"}},"shop/rental":{"icon":"fas-dolly","geometry":["point","area"],"tags":{"shop":"rental"}},"shop/religion":{"icon":"maki-shop","fields":["{shop}","religion","denomination"],"geometry":["point","area"],"tags":{"shop":"religion"}},"shop/radiotechnics":{"icon":"fas-microchip","geometry":["point","area"],"tags":{"shop":"radiotechnics"}},"shop/pyrotechnics":{"icon":"temaki-rocket_firework","geometry":["point","area"],"tags":{"shop":"pyrotechnics"}},"shop/psychic":{"icon":"temaki-psychic","geometry":["point","area"],"tags":{"shop":"psychic"}},"shop/printer_ink":{"icon":"fas-print","geometry":["point","area"],"tags":{"shop":"printer_ink"}},"shop/pottery":{"icon":"temaki-vase","geometry":["point","area"],"tags":{"shop":"pottery"}},"shop/photo":{"icon":"fas-camera-retro","geometry":["point","area"],"tags":{"shop":"photo"}},"shop/pet_grooming":{"icon":"temaki-pet_grooming","geometry":["point","area"],"tags":{"shop":"pet_grooming"}},"shop/pet":{"icon":"fas-cat","geometry":["point","area"],"tags":{"shop":"pet"}},"shop/perfumery":{"icon":"temaki-perfume","geometry":["point","area"],"tags":{"shop":"perfumery"}},"shop/pawnbroker":{"icon":"temaki-money_hand","geometry":["point","area"],"tags":{"shop":"pawnbroker"}},"shop/pastry":{"icon":"maki-bakery","geometry":["point","area"],"tags":{"shop":"pastry"},"moreFields":["fhrs/id-GB"]},"shop/pasta":{"icon":"fas-plate-wheat","fields":["name","address","opening_hours"],"moreFields":["{shop}"],"geometry":["point","area"],"tags":{"shop":"pasta"},"reference":{"key":"shop","value":"pasta"}},"shop/party":{"icon":"temaki-balloon","geometry":["point","area"],"tags":{"shop":"party"}},"shop/paint":{"icon":"fas-paint-roller","geometry":["point","area"],"tags":{"shop":"paint"}},"shop/outpost":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"outpost"}},"shop/outdoor":{"icon":"temaki-compass","fields":["{shop}"],"moreFields":["{shop}","clothes","service/bicycle"],"geometry":["point","area"],"tags":{"shop":"outdoor"}},"shop/optician":{"icon":"maki-optician","geometry":["point","area"],"tags":{"shop":"optician"}},"shop/nuts":{"tags":{"shop":"nuts"},"icon":"maki-shop","geometry":["point","area"]},"shop/nutrition_supplements":{"icon":"fas-pills","geometry":["point","area"],"tags":{"shop":"nutrition_supplements"}},"shop/newsagent":{"icon":"fas-newspaper","geometry":["point","area"],"moreFields":["fhrs/id-GB"],"tags":{"shop":"newsagent"}},"shop/musical_instrument":{"icon":"fas-guitar","geometry":["point","area"],"tags":{"shop":"musical_instrument"}},"shop/music":{"icon":"fas-compact-disc","geometry":["point","area"],"tags":{"shop":"music"}},"shop/motorcycle_repair":{"icon":"temaki-motorcycle_repair","fields":["{shop}","service/vehicle"],"geometry":["point","area"],"tags":{"shop":"motorcycle_repair"}},"shop/motorcycle":{"icon":"fas-motorcycle","fields":["name","brand","{shop}"],"geometry":["point","area"],"tags":{"shop":"motorcycle"}},"shop/money_lender":{"icon":"temaki-money_hand","fields":["{shop}","currency_multi"],"geometry":["point","area"],"tags":{"shop":"money_lender"}},"shop/model":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"model"}},"shop/mobile_phone_accessories":{"icon":"fas-mobile-screen","geometry":["point","area"],"tags":{"shop":"mobile_phone_accessories"}},"shop/mobile_phone":{"icon":"fas-mobile-alt","geometry":["point","area"],"tags":{"shop":"mobile_phone"}},"shop/military_surplus":{"icon":"temaki-military","geometry":["point","area"],"tags":{"shop":"military_surplus"}},"shop/medical_supply":{"icon":"fas-crutch","geometry":["point","area"],"tags":{"shop":"medical_supply"}},"shop/massage":{"icon":"temaki-spa","geometry":["point","area"],"tags":{"shop":"massage"}},"shop/mall":{"icon":"temaki-shopping_mall","moreFields":["{shop}","baby_feeding"],"geometry":["point","area"],"tags":{"shop":"mall"}},"shop/lottery":{"icon":"fas-ticket-alt","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"lottery"}},"shop/locksmith":{"icon":"fas-key","geometry":["point","area"],"tags":{"shop":"locksmith"}},"shop/lighting":{"icon":"temaki-desk_lamp","geometry":["point","area"],"tags":{"shop":"lighting"}},"shop/leather":{"icon":"temaki-handbag","geometry":["point","area"],"tags":{"shop":"leather"}},"shop/laundry":{"icon":"temaki-laundry","fields":["{shop}","self_service"],"geometry":["point","area"],"tags":{"shop":"laundry"}},"shop/kitchen":{"icon":"temaki-kitchen_sink","geometry":["point","area"],"tags":{"shop":"kitchen"}},"shop/kiosk":{"icon":"fas-store","geometry":["point","area"],"tags":{"shop":"kiosk"}},"shop/jewelry":{"icon":"maki-jewelry-store","geometry":["point","area"],"tags":{"shop":"jewelry"}},"shop/interior_decoration":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"interior_decoration"}},"shop/hunting":{"icon":"temaki-bow_and_arrow","geometry":["point","area"],"tags":{"shop":"hunting"}},"shop/houseware":{"icon":"fas-blender","geometry":["point","area"],"tags":{"shop":"houseware"}},"shop/household_linen":{"icon":"temaki-cloth","geometry":["point","area"],"tags":{"shop":"household_linen"}},"shop/honey":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"honey"}},"shop/hifi":{"icon":"temaki-speaker","geometry":["point","area"],"tags":{"shop":"hifi"}},"shop/herbalist":{"icon":"fas-leaf","geometry":["point","area"],"tags":{"shop":"herbalist"},"moreFields":["fhrs/id-GB"]},"shop/hearing_aids":{"icon":"temaki-hearing_aid","geometry":["point","area"],"tags":{"shop":"hearing_aids"}},"shop/health_food":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"health_food"},"moreFields":["fhrs/id-GB"]},"shop/hardware":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"shop":"hardware"}},"shop/hairdresser_supply":{"icon":"temaki-hair_care","geometry":["point","area"],"tags":{"shop":"hairdresser_supply"}},"shop/hairdresser":{"icon":"temaki-beauty_salon","geometry":["point","area"],"fields":["name","operator","address","building_area_yes","opening_hours","payment_multi","phone","gender_simple"],"tags":{"shop":"hairdresser"}},"shop/groundskeeping":{"icon":"fas-tractor","geometry":["point","area"],"tags":{"shop":"groundskeeping"}},"shop/greengrocer":{"icon":"fas-carrot","fields":["{shop}","organic"],"moreFields":["fhrs/id-GB"],"geometry":["point","area"],"tags":{"shop":"greengrocer"}},"shop/gold_buyer":{"icon":"fas-hand-holding","fields":["{shop}"],"geometry":["point","area"],"tags":{"shop":"gold_buyer"}},"shop/gift":{"icon":"maki-gift","geometry":["point","area"],"tags":{"shop":"gift"}},"shop/general":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"general"}},"shop/gas":{"icon":"temaki-propane_tank","geometry":["point","area"],"tags":{"shop":"gas"}},"shop/garden_centre":{"icon":"maki-garden-centre","geometry":["point","area"],"tags":{"shop":"garden_centre"}},"shop/games":{"icon":"fas-dice","geometry":["point","area"],"tags":{"shop":"games"}},"shop/furniture":{"icon":"fas-couch","geometry":["point","area"],"tags":{"shop":"furniture"}},"shop/funeral_directors":{"icon":"maki-cemetery","fields":["{shop}","religion","denomination"],"geometry":["point","area"],"tags":{"shop":"funeral_directors"}},"shop/fuel":{"icon":"temaki-propane_tank","fields":["{shop}","fuel/fuel_multi"],"geometry":["point","area"],"tags":{"shop":"fuel"},"matchScore":0.5},"shop/frozen_food":{"icon":"far-snowflake","geometry":["point","area"],"moreFields":["fhrs/id-GB"],"tags":{"shop":"frozen_food"}},"shop/frame":{"icon":"temaki-portrait_framed","geometry":["point","area"],"tags":{"shop":"frame"}},"shop/florist":{"icon":"maki-florist","geometry":["point","area"],"tags":{"shop":"florist"}},"shop/flooring":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"shop":"flooring"}},"shop/fishing":{"icon":"temaki-ice_fishing","geometry":["point","area"],"tags":{"shop":"fishing"}},"shop/fireplace":{"icon":"temaki-fireplace","geometry":["point","area"],"tags":{"shop":"fireplace"}},"shop/fashion_accessories":{"icon":"temaki-fashion_accessories","fields":["name","clothes","{shop}"],"geometry":["point","area"],"tags":{"shop":"fashion_accessories"}},"shop/farm":{"icon":"fas-apple-alt","fields":["{shop}","organic"],"moreFields":["fhrs/id-GB"],"geometry":["point","area"],"tags":{"shop":"farm"}},"shop/fabric":{"icon":"fas-tape","geometry":["point","area"],"tags":{"shop":"fabric"}},"shop/erotic":{"icon":"maki-shop","fields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"erotic"}},"shop/electronics":{"icon":"fas-plug","geometry":["point","area"],"tags":{"shop":"electronics"}},"shop/electrical":{"icon":"temaki-power","geometry":["point","area"],"tags":{"shop":"electrical"}},"shop/e-cigarette":{"icon":"fas-smoking","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"e-cigarette"}},"shop/dry_cleaning":{"icon":"temaki-clothes_hanger","geometry":["point","area"],"tags":{"shop":"dry_cleaning"}},"shop/doors":{"icon":"fas-door-open","geometry":["point","area"],"tags":{"shop":"doors"}},"shop/doityourself":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"shop":"doityourself"}},"shop/department_store":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"department_store"},"moreFields":["fhrs/id-GB"]},"shop/deli":{"icon":"fas-jar","geometry":["point","area"],"tags":{"shop":"deli"},"moreFields":["fhrs/id-GB"]},"shop/dairy":{"icon":"fas-cheese","geometry":["point","area"],"tags":{"shop":"dairy"}},"shop/curtain":{"icon":"temaki-curtains","geometry":["point","area"],"tags":{"shop":"curtain"}},"shop/craft":{"icon":"fas-palette","geometry":["point","area"],"tags":{"shop":"craft"}},"shop/country_store":{"icon":"fas-hat-cowboy-side","geometry":["point","area"],"tags":{"shop":"country_store"}},"shop/cosmetics":{"icon":"temaki-lipstick","geometry":["point","area"],"tags":{"shop":"cosmetics"}},"shop/copyshop":{"icon":"fas-print","geometry":["point","area"],"tags":{"shop":"copyshop"}},"shop/convenience":{"icon":"fas-shopping-basket","moreFields":["{shop}","fhrs/id-GB","organic"],"geometry":["point","area"],"tags":{"shop":"convenience"}},"shop/confectionery":{"icon":"maki-confectionery","geometry":["point","area"],"tags":{"shop":"confectionery"},"moreFields":["fhrs/id-GB"]},"shop/computer":{"icon":"fas-laptop","geometry":["point","area"],"tags":{"shop":"computer"}},"shop/collector":{"icon":"fas-th","fields":["name","collector","{shop}"],"geometry":["point","area"],"tags":{"shop":"collector"}},"shop/coffee":{"icon":"temaki-coffee","geometry":["point","area"],"tags":{"shop":"coffee"}},"shop/clothes":{"icon":"maki-clothing-store","fields":["name","clothes","{shop}"],"geometry":["point","area"],"tags":{"shop":"clothes"}},"shop/chocolate":{"icon":"maki-confectionery","geometry":["point","area"],"tags":{"shop":"chocolate"}},"shop/chemist":{"icon":"fas-shopping-basket","geometry":["point","area"],"tags":{"shop":"chemist"},"moreFields":["fhrs/id-GB"]},"shop/cheese":{"icon":"fas-cheese","geometry":["point","area"],"tags":{"shop":"cheese"},"moreFields":["fhrs/id-GB"]},"shop/charity":{"icon":"maki-shop","fields":["{shop}","second_hand"],"geometry":["point","area"],"tags":{"shop":"charity"}},"shop/catalogue":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"catalogue"}},"shop/carpet":{"icon":"fas-tape","geometry":["point","area"],"tags":{"shop":"carpet"}},"shop/caravan":{"icon":"temaki-camper_trailer","fields":["name","brand","{shop}","second_hand","service/vehicle"],"geometry":["point","area"],"tags":{"shop":"caravan"}},"shop/car_repair":{"icon":"maki-car-repair","fields":["{shop}","service/vehicle"],"geometry":["point","area"],"tags":{"shop":"car_repair"}},"shop/car_parts":{"icon":"fas-car-battery","geometry":["point","area"],"tags":{"shop":"car_parts"}},"shop/car":{"icon":"temaki-car_dealer","fields":["name","brand","{shop}","second_hand","service/vehicle"],"geometry":["point","area"],"tags":{"shop":"car"}},"shop/cannabis":{"icon":"fas-cannabis","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"cannabis"}},"shop/candles":{"icon":"fas-burn","geometry":["point","area"],"tags":{"shop":"candles"}},"shop/camera":{"icon":"fas-camera-retro","geometry":["point","area"],"tags":{"shop":"camera"}},"shop/butcher":{"icon":"temaki-cleaver","geometry":["point","area"],"tags":{"shop":"butcher"},"moreFields":["fhrs/id-GB"]},"shop/brewing_supplies":{"icon":"temaki-storage_fermenter","geometry":["point","area"],"tags":{"shop":"brewing_supplies"}},"shop/books":{"icon":"fas-book","fields":["{shop}","books","internet_access"],"moreFields":["{shop}","internet_access/fee","internet_access/ssid"],"geometry":["point","area"],"tags":{"shop":"books"}},"shop/bookmaker":{"icon":"temaki-money_hand","moreFields":["{shop}","min_age"],"geometry":["point","area"],"tags":{"shop":"bookmaker"}},"shop/boat":{"icon":"temaki-boat","geometry":["point","area"],"tags":{"shop":"boat"}},"shop/bicycle":{"icon":"maki-bicycle","fields":["{shop}","service/bicycle"],"geometry":["point","area"],"tags":{"shop":"bicycle"}},"shop/beverages":{"icon":"temaki-bottles","geometry":["point","area"],"tags":{"shop":"beverages"}},"shop/bed":{"icon":"maki-lodging","geometry":["point","area"],"tags":{"shop":"bed"}},"shop/beauty":{"icon":"temaki-lipstick","fields":["{shop}","beauty"],"geometry":["point","area"],"tags":{"shop":"beauty"}},"shop/bbq":{"icon":"maki-bbq","fields":["{shop}"],"moreFields":["{shop}"],"geometry":["point","area"],"tags":{"shop":"bbq"}},"shop/bathroom_furnishing":{"icon":"fas-bath","geometry":["point","area"],"tags":{"shop":"bathroom_furnishing"}},"shop/bakery":{"icon":"maki-bakery","geometry":["point","area"],"tags":{"shop":"bakery"},"moreFields":["{shop}","fhrs/id-GB"]},"shop/bag":{"icon":"fas-suitcase-rolling","geometry":["point","area"],"tags":{"shop":"bag"}},"shop/baby_goods":{"icon":"fas-baby-carriage","geometry":["point","area"],"tags":{"shop":"baby_goods"}},"shop/art":{"icon":"maki-art-gallery","geometry":["point","area"],"tags":{"shop":"art"}},"shop/appliance":{"icon":"temaki-laundry","geometry":["point","area"],"tags":{"shop":"appliance"}},"shop/antiques":{"icon":"temaki-furniture","geometry":["point","area"],"tags":{"shop":"antiques"}},"shop/anime":{"icon":"fas-dragon","geometry":["point","area"],"tags":{"shop":"anime"}},"shop/alcohol":{"icon":"fas-wine-bottle","fields":["{shop}","drive_through","opening_hours/drive_through"],"moreFields":["{shop}","fhrs/id-GB","min_age"],"geometry":["point","area"],"tags":{"shop":"alcohol"}},"shop/agrarian":{"icon":"fas-tractor","fields":["{shop}","agrarian"],"geometry":["point","area"],"tags":{"shop":"agrarian"}},"shop/yes":{"icon":"maki-shop","fields":["name","shop","{shop}"],"geometry":["point","area"],"tags":{"shop":"yes"},"searchable":false,"matchScore":0.8},"shop/vacant":{"icon":"fas-store-alt-slash","fields":["name","address","building_area_yes"],"geometry":["point","area"],"tags":{"shop":"vacant"}},"shop/hobby":{"icon":"fas-dragon","geometry":["point","area"],"tags":{"shop":"hobby"},"searchable":false},"shop/fashion":{"icon":"maki-shop","fields":["name","clothes","{shop}"],"geometry":["point","area"],"tags":{"shop":"fashion"},"searchable":false},"shop/boutique":{"icon":"maki-shop","fields":["name","clothes","{shop}"],"geometry":["point","area"],"tags":{"shop":"boutique"},"searchable":false},"shop/supermarket/organic":{"icon":"maki-grocery","geometry":["point","area"],"tags":{"shop":"supermarket","organic":"only"},"reference":{"key":"organic"}},"shop/laundry/self_service":{"icon":"temaki-laundry","geometry":["point","area"],"tags":{"shop":"laundry","self_service":"yes"}},"shop/hairdresser/barber":{"icon":"temaki-beauty_salon","geometry":["point","area"],"fields":["name","operator","address","building_area_yes","opening_hours","payment_multi","phone","gender_simple"],"tags":{"shop":"hairdresser","hairdresser":"barber"},"reference":{"key":"hairdresser","value":"barber"}},"shop/erotic/lgbtq":{"icon":"maki-shop","geometry":["point","area"],"tags":{"shop":"erotic","lgbtq":"primary"}},"shop/clothes/workwear":{"icon":"fas-tshirt","geometry":["point","area"],"tags":{"shop":"clothes","clothes":"workwear"}},"shop/clothes/wedding":{"icon":"temaki-gown","geometry":["point","area"],"tags":{"shop":"clothes","clothes":"wedding"},"reference":{"key":"clothes","value":"wedding"}},"shop/clothes/underwear":{"icon":"temaki-bikini","geometry":["point","area"],"tags":{"shop":"clothes","clothes":"underwear"},"reference":{"key":"clothes","value":"underwear"}},"shop/clothes/suits":{"icon":"fas-tshirt","geometry":["point","area"],"tags":{"shop":"clothes","clothes":"suits"}},"shop/clothes/second_hand":{"icon":"fas-tshirt","geometry":["point","area"],"tags":{"shop":"clothes","second_hand":"only"}},"shop/car/second_hand":{"icon":"temaki-car_dealer","geometry":["point","area"],"tags":{"shop":"car","second_hand":"only"}},"shop/beauty/tanning":{"icon":"temaki-tanning","geometry":["point","area"],"tags":{"shop":"beauty","beauty":"tanning"},"reference":{"key":"leisure","value":"tanning_salon"}},"shop/beauty/nails":{"icon":"temaki-polished_nail","geometry":["point","area"],"tags":{"shop":"beauty","beauty":"nails"},"reference":{"key":"shop","value":"beauty"}},"seamark/mooring":{"icon":"temaki-horn_cleat","fields":["ref","operator","seamark/mooring/category","seamark/type"],"geometry":["point"],"tags":{"seamark:type":"mooring"}},"seamark/buoy_lateral":{"icon":"temaki-buoy","fields":["ref","operator","seamark/buoy_lateral/colour","seamark/buoy_lateral/category","seamark/buoy_lateral/shape","seamark/buoy_lateral/system","seamark/type"],"geometry":["point","vertex"],"tags":{"seamark:type":"buoy_lateral"}},"seamark/beacon_lateral":{"fields":["ref","operator","seamark/beacon_lateral/colour","seamark/beacon_lateral/category","seamark/beacon_lateral/shape","seamark/beacon_lateral/system","seamark/type"],"geometry":["point","vertex"],"tags":{"seamark:type":"beacon_lateral"}},"seamark/beacon_isolated_danger":{"fields":["ref","operator","seamark/beacon_isolated_danger/shape","seamark/type"],"geometry":["point","vertex"],"tags":{"seamark:type":"beacon_isolated_danger"}},"seamark/buoy_lateral/red":{"icon":"temaki-buoy","geometry":["point","vertex"],"tags":{"seamark:type":"buoy_lateral","seamark:buoy_lateral:colour":"red"}},"seamark/buoy_lateral/green":{"icon":"temaki-buoy","geometry":["point","vertex"],"tags":{"seamark:type":"buoy_lateral","seamark:buoy_lateral:colour":"green"}},"route/ferry":{"icon":"temaki-ferry","geometry":["line"],"fields":["name","operator","duration","access","toll","from","to"],"moreFields":["charge_toll","distance","dog","email","interval","maxheight","maxweight","maxwidth","network","oneway","opening_hours","phone","ref_route","reservation","roundtrip","via","vhf","wheelchair"],"tags":{"route":"ferry"}},"roller_coaster/track":{"icon":"temaki-roller_coaster","fields":["roller_coaster/track","height","layer"],"geometry":["line"],"tags":{"roller_coaster":"track"}},"roller_coaster/support":{"icon":"roentgen-tower","fields":["height","layer","material"],"moreFields":["colour"],"geometry":["line"],"tags":{"roller_coaster":"support"}},"roller_coaster/station":{"icon":"temaki-roller_coaster","fields":["building_area_yes"],"geometry":["vertex","area"],"tags":{"roller_coaster":"station"}},"railway/yard":{"icon":"temaki-freight_car","fields":["name","operator"],"moreFields":["gnis/feature_id-US"],"geometry":["point"],"tags":{"railway":"yard"}},"railway/turntable":{"icon":"maki-circle-stroked","geometry":["area","vertex"],"fields":["ref"],"tags":{"railway":"turntable"}},"railway/tram_level_crossing":{"icon":"temaki-crossing_tram_solid","geometry":["vertex"],"tags":{"railway":"tram_level_crossing"}},"railway/tram_crossing":{"icon":"temaki-crossing_tram_striped","geometry":["vertex"],"tags":{"railway":"tram_crossing"}},"railway/tram":{"icon":"temaki-tram","fields":["{railway/light_rail}","oneway"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"tram"}},"railway/train_wash":{"icon":"temaki-train_wash","geometry":["point","vertex","area"],"fields":["operator","building_area_yes"],"tags":{"railway":"wash"}},"railway/switch":{"icon":"temaki-junction","fields":["railway/switch","ref"],"geometry":["vertex"],"tags":{"railway":"switch"}},"railway/subway_entrance":{"icon":"maki-entrance","geometry":["point","vertex"],"fields":["name","level","wheelchair","ref"],"tags":{"railway":"subway_entrance"}},"railway/subway":{"icon":"temaki-subway","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"subway"}},"railway/signal":{"icon":"temaki-railway_signals","geometry":["point","vertex"],"fields":["railway/position","railway/signal/direction","ref"],"tags":{"railway":"signal"}},"railway/railway_crossing":{"icon":"temaki-x_oblique","geometry":["vertex"],"tags":{"railway":"railway_crossing"}},"railway/rail":{"icon":"temaki-railway_track","fields":["{railway/light_rail}","railway/track_ref"],"moreFields":["{railway/light_rail}","highspeed","ref_rail"],"geometry":["line"],"tags":{"railway":"rail"}},"railway/preserved":{"icon":"temaki-train_steam","fields":["railway","{railway/light_rail}"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"*","railway:preserved":"yes"},"addTags":{"railway":"rail","railway:preserved":"yes"},"reference":{"key":"railway:preserved"}},"railway/narrow_gauge":{"icon":"temaki-railway_track_narrow","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"narrow_gauge"}},"railway/monorail":{"icon":"temaki-monorail","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"monorail"}},"railway/miniature":{"icon":"temaki-railway_track_mini","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}"],"geometry":["line"],"tags":{"railway":"miniature"}},"railway/milestone":{"icon":"temaki-milestone","geometry":["point","vertex"],"fields":["railway/position","direction_vertex"],"moreFields":["ref"],"tags":{"railway":"milestone"}},"railway/light_rail":{"icon":"temaki-light_rail","fields":["name","operator","structure","gauge","electrified","service_rail","usage_rail"],"moreFields":["bridge/ref","covered_no","frequency_electrified","incline","maxspeed","voltage_electrified"],"geometry":["line"],"tags":{"railway":"light_rail"}},"railway/level_crossing":{"icon":"maki-cross","fields":["crossing/barrier","crossing/bell","crossing/light"],"geometry":["vertex"],"tags":{"railway":"level_crossing"}},"railway/funicular":{"icon":"temaki-railway_cable_track","fields":["name","operator","incline","structure","gauge","service_rail"],"moreFields":["bridge/ref","covered_no","electrified","frequency_electrified","maxspeed","voltage_electrified"],"geometry":["line"],"tags":{"railway":"funicular"}},"railway/disused":{"icon":"temaki-railway_track","fields":["{railway/light_rail}"],"moreFields":["{railway/light_rail}","highspeed"],"geometry":["line"],"tags":{"railway":"disused"},"matchScore":0.95},"railway/derail":{"icon":"maki-roadblock","geometry":["vertex"],"fields":["direction_vertex"],"tags":{"railway":"derail"}},"railway/crossing":{"icon":"temaki-pedestrian","fields":["crossing","crossing/barrier","crossing/bell","crossing/light"],"moreFields":["crossing/markings"],"geometry":["vertex"],"tags":{"railway":"crossing"}},"railway/construction":{"icon":"temaki-railway_track_partial","fields":["name","opening_date","check_date","note","structure","gauge","electrified"],"moreFields":["bridge/ref","covered_no","frequency_electrified","highspeed","incline","maxspeed","service_rail","usage_rail","voltage_electrified"],"geometry":["line"],"tags":{"railway":"construction"},"matchScore":0.95},"railway/buffer_stop":{"icon":"temaki-buffer_stop","geometry":["vertex"],"tags":{"railway":"buffer_stop"}},"railway/abandoned":{"icon":"temaki-railway_track_askew","fields":["name","structure","service_rail","usage_rail"],"moreFields":["bridge/ref","covered_no","incline"],"geometry":["line"],"tags":{"railway":"abandoned"},"matchScore":0.85},"railway/tram_stop":{"icon":"temaki-tram","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"railway":"tram_stop"},"searchable":false},"railway/station":{"icon":"temaki-board_train","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","vertex","area"],"tags":{"railway":"station"},"matchScore":0.95,"searchable":false},"railway/platform":{"icon":"temaki-board_train","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"railway":"platform"},"searchable":false},"railway/halt":{"icon":"temaki-rail_flag","geometry":["point","vertex"],"tags":{"railway":"halt"},"searchable":false},"railway/rail/highspeed":{"icon":"temaki-train_bullet","geometry":["line"],"tags":{"railway":"rail","highspeed":"yes"},"reference":{"key":"highspeed"}},"railway/monorail/hanging":{"icon":"temaki-hanging_rail","geometry":["line"],"tags":{"railway":"monorail","monorail":"hanging"},"reference":{"key":"monorail","value":"hanging"}},"public_transport/stop_position_trolleybus":{"icon":"temaki-trolleybus","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","trolleybus":"yes"},"reference":{"key":"public_transport","value":"stop_position"}},"public_transport/stop_position_tram":{"icon":"temaki-tram","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","tram":"yes"},"addTags":{"public_transport":"stop_position","tram":"yes","railway":"tram_stop"},"reference":{"key":"public_transport","value":"stop_position"}},"public_transport/stop_position_train":{"icon":"temaki-train","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","train":"yes"},"addTags":{"public_transport":"stop_position","train":"yes","railway":"stop"},"reference":{"key":"railway","value":"stop"}},"public_transport/stop_position_subway":{"icon":"temaki-subway","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","subway":"yes"},"addTags":{"public_transport":"stop_position","subway":"yes","railway":"stop"},"reference":{"key":"railway","value":"stop"}},"public_transport/stop_position_monorail":{"icon":"temaki-monorail","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","monorail":"yes"},"addTags":{"public_transport":"stop_position","monorail":"yes","railway":"stop"},"reference":{"key":"railway","value":"stop"}},"public_transport/stop_position_light_rail":{"icon":"temaki-light_rail","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","light_rail":"yes"},"addTags":{"public_transport":"stop_position","light_rail":"yes","railway":"stop"},"reference":{"key":"railway","value":"stop"}},"public_transport/stop_position_ferry":{"icon":"temaki-ferry","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","ferry":"yes"},"reference":{"key":"public_transport","value":"stop_position"}},"public_transport/stop_position_bus":{"icon":"temaki-bus","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","bus":"yes"},"reference":{"key":"public_transport","value":"stop_position"}},"public_transport/stop_position_aerialway":{"icon":"temaki-gondola_lift","fields":["{public_transport/stop_position}"],"moreFields":["{public_transport/stop_position}"],"geometry":["vertex"],"tags":{"public_transport":"stop_position","aerialway":"yes"},"reference":{"key":"public_transport","value":"stop_position"}},"public_transport/stop_position":{"icon":"temaki-transit","fields":["name","ref_stop_position","network","operator","vehicles"],"geometry":["vertex"],"tags":{"public_transport":"stop_position"},"matchScore":0.2},"public_transport/stop_area":{"icon":"iD-relation","fields":["name","ref","network","operator"],"geometry":["relation"],"tags":{"type":"public_transport","public_transport":"stop_area"},"reference":{"key":"public_transport","value":"stop_area"}},"public_transport/station_trolleybus":{"icon":"temaki-trolleybus","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","trolleybus":"yes"},"addTags":{"public_transport":"station","trolleybus":"yes","amenity":"bus_station"},"reference":{"key":"amenity","value":"bus_station"}},"public_transport/station_tram":{"icon":"temaki-board_tram","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","tram":"yes"},"reference":{"key":"public_transport","value":"station"}},"public_transport/station_train_halt":{"icon":"temaki-rail_flag","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","train":"yes","railway":"halt"},"reference":{"key":"railway","value":"halt"}},"public_transport/station_train":{"icon":"temaki-board_train","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["vertex","point","area"],"tags":{"public_transport":"station","train":"yes"},"addTags":{"public_transport":"station","train":"yes","railway":"station"},"reference":{"key":"railway","value":"station"}},"public_transport/station_subway":{"icon":"temaki-board_subway","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","vertex","area"],"tags":{"public_transport":"station","subway":"yes"},"addTags":{"public_transport":"station","subway":"yes","railway":"station","station":"subway"},"reference":{"key":"station","value":"subway"}},"public_transport/station_monorail":{"icon":"temaki-board_monorail","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","vertex","area"],"tags":{"public_transport":"station","monorail":"yes"},"addTags":{"public_transport":"station","monorail":"yes","railway":"station"},"reference":{"key":"railway","value":"station"}},"public_transport/station_light_rail":{"icon":"temaki-board_light_rail","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","vertex","area"],"tags":{"public_transport":"station","light_rail":"yes"},"addTags":{"public_transport":"station","light_rail":"yes","railway":"station","station":"light_rail"},"reference":{"key":"station","value":"light_rail"}},"public_transport/station_ferry":{"icon":"temaki-board_ferry","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["vertex","point","area"],"tags":{"public_transport":"station","ferry":"yes"},"addTags":{"public_transport":"station","ferry":"yes","amenity":"ferry_terminal"},"reference":{"key":"amenity","value":"ferry_terminal"}},"public_transport/station_bus":{"icon":"temaki-board_bus","fields":["{public_transport/station}"],"moreFields":["{public_transport/station}"],"geometry":["point","area"],"tags":{"public_transport":"station","bus":"yes"},"addTags":{"public_transport":"station","bus":"yes","amenity":"bus_station"},"reference":{"key":"amenity","value":"bus_station"}},"public_transport/station_aerialway":{"icon":"temaki-gondola_lift","fields":["{public_transport/station}","aerialway/access","aerialway/summer/access"],"moreFields":["{public_transport/station}"],"geometry":["point","vertex","area"],"tags":{"aerialway":"station"},"addTags":{"public_transport":"station","aerialway":"station"},"reference":{"key":"aerialway","value":"station"}},"public_transport/station":{"icon":"temaki-transit","fields":["name","network","operator","vehicles","address","building_area","{@templates/internet_access}"],"moreFields":["{@templates/contact}","{@templates/internet_access}","air_conditioning","baby_feeding","changing_table","gnis/feature_id-US","level","toilets","toilets/wheelchair","toilets/menstrual_products_poi","wheelchair"],"geometry":["point","area"],"tags":{"public_transport":"station"},"matchScore":0.2},"public_transport/platform_point":{"icon":"temaki-sign_and_bench","fields":["name","ref_stop_position","network","operator","vehicles","departures_board","shelter"],"moreFields":["bench","bin","gnis/feature_id-US","level","lit","tactile_paving","wheelchair"],"geometry":["point"],"tags":{"public_transport":"platform"},"matchScore":0.6},"public_transport/platform":{"icon":"temaki-board_transit","fields":["ref_platform","network","operator","vehicles","departures_board","surface"],"moreFields":["access","covered","indoor","layer","level","lit","wheelchair"],"geometry":["line","area"],"tags":{"public_transport":"platform"},"matchScore":0.6},"public_transport/platform/trolleybus_point":{"icon":"temaki-trolleybus","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point","vertex"],"tags":{"public_transport":"platform","trolleybus":"yes"},"addTags":{"public_transport":"platform","trolleybus":"yes","highway":"bus_stop"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/trolleybus":{"icon":"temaki-board_trolleybus","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","trolleybus":"yes"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/tram_point":{"icon":"temaki-tram","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","tram":"yes"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/tram":{"icon":"temaki-board_tram","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","tram":"yes"},"addTags":{"public_transport":"platform","tram":"yes","railway":"platform"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/train":{"icon":"temaki-board_train","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","train":"yes"},"addTags":{"public_transport":"platform","train":"yes","railway":"platform"},"reference":{"key":"railway","value":"platform"}},"public_transport/platform/subway":{"icon":"temaki-board_subway","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","subway":"yes"},"addTags":{"public_transport":"platform","subway":"yes","railway":"platform"},"reference":{"key":"railway","value":"platform"}},"public_transport/platform/monorail":{"icon":"temaki-board_monorail","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","monorail":"yes"},"addTags":{"public_transport":"platform","monorail":"yes","railway":"platform"},"reference":{"key":"railway","value":"platform"}},"public_transport/platform/light_rail":{"icon":"temaki-board_light_rail","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","light_rail":"yes"},"addTags":{"public_transport":"platform","light_rail":"yes","railway":"platform"},"reference":{"key":"railway","value":"platform"}},"public_transport/platform/ferry":{"icon":"temaki-board_ferry","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","ferry":"yes"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/bus_tram_point":{"icon":"temaki-tram","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point","vertex"],"tags":{"public_transport":"platform","bus":"yes","tram":"yes"},"addTags":{"public_transport":"platform","bus":"yes","tram":"yes","highway":"bus_stop"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/bus_point":{"icon":"temaki-bus","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point","vertex"],"tags":{"public_transport":"platform","bus":"yes"},"addTags":{"public_transport":"platform","bus":"yes","highway":"bus_stop"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/bus":{"icon":"temaki-board_bus","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","bus":"yes"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/aerialway":{"icon":"temaki-board_gondola_lift","fields":["{public_transport/platform}"],"moreFields":["{public_transport/platform}"],"geometry":["line","area"],"tags":{"public_transport":"platform","aerialway":"yes"},"reference":{"key":"public_transport","value":"platform"}},"public_transport/platform/train_point":{"icon":"temaki-train","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","train":"yes"},"reference":{"key":"railway","value":"platform"},"searchable":false},"public_transport/platform/subway_point":{"icon":"temaki-subway","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","subway":"yes"},"reference":{"key":"railway","value":"platform"},"searchable":false},"public_transport/platform/monorail_point":{"icon":"temaki-monorail","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","monorail":"yes"},"reference":{"key":"railway","value":"platform"},"searchable":false},"public_transport/platform/light_rail_point":{"icon":"temaki-light_rail","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","light_rail":"yes"},"reference":{"key":"railway","value":"platform"},"searchable":false},"public_transport/platform/ferry_point":{"icon":"temaki-ferry","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","ferry":"yes"},"reference":{"key":"public_transport","value":"platform"},"searchable":false},"public_transport/platform/aerialway_point":{"icon":"temaki-gondola_lift","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point"],"tags":{"public_transport":"platform","aerialway":"yes"},"reference":{"key":"public_transport","value":"platform"},"searchable":false},"power/transformer":{"icon":"temaki-power_transformer","fields":["ref","operator","transformer","location","rating","devices","phases"],"moreFields":["frequency","manufacturer","voltage/primary","voltage/secondary","voltage/tertiary","windings","windings/configuration","windings/auto"],"geometry":["point","vertex"],"tags":{"power":"transformer"}},"power/tower":{"icon":"temaki-power_tower","fields":["ref","operator","structure_power","design_power_tower","height","material","line_attachment"],"moreFields":["line_management","manufacturer"],"geometry":["point","vertex"],"tags":{"power":"tower"},"matchScore":1.05},"power/switchgear":{"icon":"temaki-power_switch","fields":["voltage","location"],"geometry":["area"],"tags":{"power":"switchgear"}},"power/switch":{"icon":"temaki-power_switch","fields":["switch","operator","location","cables","voltage","ref"],"geometry":["point","vertex"],"tags":{"power":"switch"}},"power/substation":{"icon":"temaki-power","fields":["name","substation","operator","building","voltage","ref"],"moreFields":["address","gnis/feature_id-US"],"geometry":["area","point"],"tags":{"power":"substation"}},"power/portal":{"icon":"temaki-power","fields":["ref","operator","structure_power","material"],"moreFields":["colour","design_power_tower","height","line_management","manufacturer"],"geometry":["vertex","line"],"tags":{"power":"portal"}},"power/pole":{"icon":"temaki-power_pole","fields":["ref","operator","design_power_pole","height","material","line_attachment"],"moreFields":["line_management","manufacturer"],"geometry":["point","vertex"],"tags":{"power":"pole"}},"power/plant":{"icon":"maki-industry","fields":["name","operator","plant/source","plant/method","plant/output","plant/output/electricity","address","start_date"],"moreFields":["gnis/feature_id-US"],"geometry":["area"],"tags":{"power":"plant"},"addTags":{"power":"plant","landuse":"industrial"}},"power/minor_line":{"icon":"iD-power-line","fields":["name","operator","voltage","cables","ref","layer"],"geometry":["line"],"tags":{"power":"minor_line"}},"power/line":{"icon":"temaki-power_tower","fields":["name","operator","voltage","cables","ref","layer"],"geometry":["line"],"tags":{"power":"line"}},"power/generator":{"icon":"temaki-power","fields":["ref","operator","generator/source","generator/method","generator/type","generator/output/electricity"],"moreFields":["colour","height","level","manufacturer","material"],"geometry":["point","vertex","area"],"tags":{"power":"generator"}},"power/catenary_mast":{"icon":"temaki-power_pole","fields":["ref","operator"],"moreFields":["height","line_attachment","line_management","manufacturer","material"],"geometry":["point","vertex"],"tags":{"power":"catenary_mast"}},"power/cable":{"icon":"temaki-cable","fields":["name","ref","operator","voltage","location","layer"],"geometry":["line"],"tags":{"power":"cable"},"searchable":false},"power/plant/source/wind":{"icon":"temaki-wind_turbine","fields":["name","operator","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"wind"},"addTags":{"power":"plant","plant:source":"wind","plant:method":"wind_turbine","plant:output:electricity":"*"},"removeTags":{"power":"plant","plant:method":"*","plant:source":"wind","plant:output:electricity":"*","landuse":"industrial"},"reference":{"key":"plant:source","value":"wind"}},"power/plant/source/waste":{"icon":"fas-dumpster-fire","fields":["name","operator","plant/method/waste","plant/output","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"waste"},"addTags":{"power":"plant","landuse":"industrial","plant:source":"waste","plant:method":"combustion","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"waste"}},"power/plant/source/solar":{"icon":"fas-solar-panel","fields":["name","operator","plant/method/solar","plant/output","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"solar"},"addTags":{"power":"plant","plant:source":"solar"},"removeTags":{"power":"plant","plant:source":"solar","plant:method":"*","plant:output:electricity":"*","landuse":"industrial"},"reference":{"key":"plant:source","value":"solar"}},"power/plant/source/oil":{"icon":"fas-tint","fields":["name","operator","plant/output","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"oil"},"addTags":{"power":"plant","landuse":"industrial","plant:source":"oil","plant:method":"combustion","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"oil"}},"power/plant/source/nuclear":{"icon":"temaki-radiation","fields":["{power/plant}"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"nuclear"},"addTags":{"power":"plant","landuse":"industrial","plant:source":"nuclear","plant:method":"fission","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"nuclear"}},"power/plant/source/hydro":{"icon":"maki-dam","fields":["name","operator","plant/source","plant/method/hydro","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"hydro"},"addTags":{"power":"plant","plant:source":"hydro","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"hydro"}},"power/plant/source/gas":{"icon":"temaki-gas","fields":["name","operator","plant/output","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"gas"},"addTags":{"power":"plant","landuse":"industrial","plant:source":"gas","plant:method":"combustion","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"gas"}},"power/plant/source/coal":{"icon":"maki-industry","fields":["name","operator","plant/output","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"coal"},"addTags":{"power":"plant","landuse":"industrial","plant:source":"coal","plant:method":"combustion","plant:output:electricity":"*"},"reference":{"key":"plant:source","value":"coal"}},"power/plant/source/method/photovoltaic":{"icon":"fas-solar-panel","fields":["name","operator","plant/method/solar","plant/output/electricity","address","start_date"],"moreFields":["{power/plant}"],"geometry":["area"],"tags":{"power":"plant","plant:source":"solar","plant:method":"photovoltaic"},"addTags":{"power":"plant","plant:source":"solar","plant:method":"photovoltaic","plant:output:electricity":"*"},"removeTags":{"power":"plant","plant:method":"*","plant:source":"solar","plant:output:electricity":"*","landuse":"industrial"},"reference":{"key":"plant:method","value":"photovoltaic"}},"power/generator/source/wind":{"icon":"temaki-wind_turbine","fields":["ref","operator","generator/type","generator/output/electricity"],"moreFields":["{power/generator}","height/hub","rotor/diameter"],"geometry":["point","vertex","area"],"tags":{"power":"generator","generator:source":"wind"},"addTags":{"power":"generator","generator:source":"wind","generator:method":"wind_turbine"},"reference":{"key":"generator:source","value":"wind"}},"power/generator/source/nuclear":{"icon":"temaki-radiation","fields":["ref","operator","generator/type","generator/output/electricity"],"moreFields":["{power/generator}"],"geometry":["point","vertex","area"],"tags":{"power":"generator","generator:source":"nuclear","generator:method":"fission"},"reference":{"key":"generator:source","value":"nuclear"}},"power/generator/source/hydro":{"icon":"temaki-power","fields":["ref","operator","generator/method/hydro","generator/type","generator/output/electricity"],"moreFields":["{power/generator}"],"geometry":["point","vertex","area"],"tags":{"power":"generator","generator:source":"hydro"},"addTags":{"power":"generator","generator:source":"hydro","generator:output:electricity":"yes"},"reference":{"key":"generator:source","value":"hydro"}},"power/generator/method/photovoltaic":{"icon":"fas-solar-panel","fields":["ref","operator","generator/output/electricity"],"moreFields":["{power/generator}"],"geometry":["area","point","vertex"],"tags":{"power":"generator","generator:method":"photovoltaic"},"addTags":{"power":"generator","generator:source":"solar","generator:method":"photovoltaic","generator:type":"solar_photovoltaic_panel","generator:output:electricity":"*"},"reference":{"key":"generator:method","value":"photovoltaic"}},"power/generator/method/photovoltaic/location/roof":{"icon":"fas-solar-panel","fields":["{power/generator/method/photovoltaic}"],"moreFields":["{power/generator}"],"geometry":["area","point","vertex"],"tags":{"power":"generator","generator:method":"photovoltaic","location":"roof"},"addTags":{"power":"generator","generator:source":"solar","generator:method":"photovoltaic","generator:type":"solar_photovoltaic_panel","generator:output:electricity":"*","location":"roof"},"reference":{"key":"generator:method","value":"photovoltaic"}},"power/generator/method/photovoltaic/building/roof":{"icon":"fas-solar-panel","fields":["{power/generator/method/photovoltaic}","layer_1"],"moreFields":["{power/generator}"],"geometry":["area","point","vertex"],"tags":{"power":"generator","generator:method":"photovoltaic","building":"roof"},"addTags":{"power":"generator","generator:source":"solar","generator:method":"photovoltaic","generator:type":"solar_photovoltaic_panel","generator:output:electricity":"*","building":"roof"},"reference":{"key":"generator:method","value":"photovoltaic"}},"power/cable/underground":{"icon":"temaki-cable","geometry":["line"],"tags":{"power":"cable","location":"underground"},"addTags":{"power":"cable","location":"underground","layer":"-1"}},"police/checkpoint":{"icon":"temaki-military_checkpoint","fields":["name"],"moreFields":["opening_hours"],"geometry":["point","vertex","area"],"tags":{"police":"checkpoint"}},"playground/zipwire":{"icon":"maki-playground","geometry":["line","area"],"tags":{"playground":"zipwire"}},"playground/water":{"icon":"temaki-water","geometry":["point","line","area"],"tags":{"playground":"water"}},"playground/tunnel_tube":{"icon":"maki-playground","geometry":["point","line","area"],"tags":{"playground":"tunnel_tube"}},"playground/trampoline":{"icon":"maki-playground","geometry":["point","area"],"tags":{"playground":"trampoline"}},"playground/tetherball":{"icon":"maki-playground","geometry":["point"],"tags":{"playground":"tetherball"}},"playground/teenshelter":{"icon":"maki-shelter","geometry":["point","area"],"tags":{"playground":"teenshelter"}},"playground/swing":{"icon":"maki-playground","fields":["capacity","baby_seat","wheelchair","blind"],"geometry":["point","line","area"],"tags":{"playground":"swing"}},"playground/structure":{"icon":"temaki-play_structure","geometry":["point","line","area"],"tags":{"playground":"structure"}},"playground/springy":{"icon":"temaki-spring_rider","geometry":["point"],"tags":{"playground":"springy"}},"playground/splash_pad":{"icon":"temaki-fountain","geometry":["point","area"],"tags":{"playground":"splash_pad"}},"playground/slide":{"icon":"roentgen-slide","geometry":["point","line","area"],"tags":{"playground":"slide"}},"playground/sledding":{"icon":"temaki-sledding","geometry":["point"],"tags":{"playground":"sledding"}},"playground/seesaw":{"icon":"temaki-seesaw","geometry":["point","line","area"],"tags":{"playground":"seesaw"}},"playground/sandpit":{"icon":"temaki-sandbox","geometry":["point","area"],"tags":{"playground":"sandpit"}},"playground/roundabout":{"icon":"maki-stadium","fields":["{playground}","bench"],"geometry":["point","area"],"tags":{"playground":"roundabout"}},"playground/playhouse":{"icon":"temaki-play_structure","geometry":["point","area"],"tags":{"playground":"playhouse"}},"playground/map":{"icon":"temaki-compass","geometry":["point","area"],"fields":["subject/wikidata","surface"],"moreFields":["colour","subject"],"tags":{"playground":"map"}},"playground/horizontal_bar":{"icon":"temaki-horizontal_bar","geometry":["point","line","area"],"tags":{"playground":"horizontal_bar"}},"playground/hopscotch":{"icon":"roentgen-hopscotch","geometry":["point","line","area"],"tags":{"playground":"hopscotch"}},"playground/funnel_ball":{"icon":"maki-playground","geometry":["point"],"tags":{"playground":"funnel_ball"}},"playground/cushion":{"icon":"maki-playground","geometry":["point","area"],"tags":{"playground":"cushion"}},"playground/climbingwall":{"icon":"maki-playground","geometry":["point","line","area"],"tags":{"playground":"climbingwall"}},"playground/climbingframe":{"icon":"maki-playground","geometry":["point","area"],"tags":{"playground":"climbingframe"}},"playground/bridge":{"icon":"maki-playground","geometry":["point","line","area"],"moreFields":["{playground}","length","width"],"tags":{"playground":"bridge"}},"playground/basketswing":{"icon":"maki-playground","geometry":["point","line","area"],"tags":{"playground":"basketswing"}},"playground/basketrotator":{"icon":"maki-playground","geometry":["point"],"tags":{"playground":"basketrotator"}},"playground/balancebeam":{"icon":"temaki-balance_beam","geometry":["point","line"],"tags":{"playground":"balancebeam"}},"playground/aerialrotator":{"icon":"maki-playground","geometry":["point"],"tags":{"playground":"aerialrotator"}},"playground/activitypanel":{"icon":"maki-playground","geometry":["point","line","area"],"tags":{"playground":"activitypanel"}},"place/village":{"icon":"maki-village","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"village"}},"place/town":{"icon":"maki-town","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"town"}},"place/suburb":{"icon":"maki-triangle-stroked","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"suburb"}},"place/square":{"icon":"maki-marker-stroked","geometry":["point","area"],"tags":{"place":"square"}},"place/quarter":{"icon":"maki-triangle-stroked","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"quarter"}},"place/plot":{"icon":"maki-triangle-stroked","geometry":["point","area"],"tags":{"place":"plot"}},"place/neighbourhood":{"icon":"maki-triangle-stroked","fields":["name","population","population/date","source/population"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"place":"neighbourhood"}},"place/locality":{"icon":"maki-triangle-stroked","geometry":["point","area"],"tags":{"place":"locality"}},"place/isolated_dwelling":{"icon":"maki-home","geometry":["point","area"],"tags":{"place":"isolated_dwelling"}},"place/islet":{"icon":"temaki-islet_tree","geometry":["point","area"],"tags":{"place":"islet"}},"place/island":{"icon":"temaki-island_trees_building","geometry":["point","area"],"tags":{"place":"island"}},"place/hamlet":{"icon":"maki-triangle-stroked","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"hamlet"}},"place/city_block":{"icon":"maki-triangle-stroked","geometry":["point","area"],"tags":{"place":"city_block"}},"place/city":{"icon":"maki-city","fields":["name","population","population/date","source/population"],"geometry":["point","area"],"tags":{"place":"city"}},"place/farm":{"icon":"maki-farm","geometry":["point","area"],"tags":{"place":"farm"},"searchable":false},"piste/take_off":{"icon":"temaki-ski_jumping","fields":["height"],"geometry":["vertex"],"tags":{"piste:takeoff":"yes"}},"piste/sleigh":{"icon":"fas-sleigh","fields":["name","piste/type","piste/difficulty","piste/grooming","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"sleigh"}},"piste/sled":{"icon":"temaki-sledding","fields":["name","piste/type","piste/difficulty","piste/grooming","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"sled"}},"piste/skitour":{"icon":"fas-skiing-nordic","fields":["name","piste/type","piste/difficulty_skitour","piste/grooming","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"skitour"}},"piste/ski_jump":{"icon":"temaki-ski_jumping","fields":["name","piste/type","ref","oneway_yes","lit"],"geometry":["line","area"],"tags":{"piste:type":"ski_jump"}},"piste/nordic":{"icon":"fas-skiing-nordic","fields":["name","piste/type","piste/difficulty_nordic","piste/grooming_nordic","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"nordic"}},"piste/ice_skate":{"icon":"fas-skating","fields":["name","piste/type","sport/sport_ice","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"ice_skate"}},"piste/hike":{"icon":"temaki-snow_shoeing","fields":["name","piste/type","piste/difficulty","piste/grooming_hike","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"hike"}},"piste/downhill":{"icon":"fas-skiing","fields":["name","piste/type","piste/difficulty_downhill","piste/grooming_downhill","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"downhill"}},"piste/piste":{"icon":"fas-skiing","fields":["name","piste/type","piste/difficulty","piste/grooming","oneway","lit"],"geometry":["line","area"],"tags":{"piste:type":"*"},"searchable":false},"piste/downhill/halfpipe":{"icon":"fas-snowboarding","geometry":["line","area"],"tags":{"piste:type":"downhill","man_made":"piste:halfpipe"},"reference":{"key":"man_made","value":"piste:halfpipe"}},"pipeline/valve":{"icon":"temaki-wheel","geometry":["vertex"],"fields":["ref","operator","valve","location","diameter"],"moreFields":["colour","manufacturer","material"],"tags":{"pipeline":"valve"}},"pipeline/substation":{"icon":"temaki-powered_pump","fields":["name","substation_pipeline","operator","building","substance","ref"],"moreFields":["address"],"geometry":["area","point"],"tags":{"pipeline":"substation"}},"office/water_utility":{"icon":"maki-suitcase","fields":["{office}","operator"],"geometry":["point","area"],"tags":{"office":"water_utility"}},"office/union":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"union"}},"office/translator":{"icon":"fas-language","geometry":["point","area"],"tags":{"office":"translator"}},"office/therapist":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"therapist"},"fields":["healthcare_therapist","healthcare/speciality","{office}"],"matchScore":0.9},"office/telecommunication":{"icon":"maki-telephone","geometry":["point","area"],"tags":{"office":"telecommunication"}},"office/tax_advisor":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"tax_advisor"}},"office/surveyor":{"icon":"fas-vest","geometry":["point","area"],"tags":{"office":"surveyor"}},"office/security":{"icon":"temaki-briefcase_shield","geometry":["point","area"],"tags":{"office":"security"}},"office/research":{"icon":"fas-flask","geometry":["point","area"],"tags":{"office":"research"}},"office/religion":{"icon":"maki-suitcase","fields":["{office}","religion","denomination"],"geometry":["point","area"],"tags":{"office":"religion"}},"office/quango":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"quango"}},"office/property_management":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"property_management"}},"office/private_investigator":{"icon":"fas-user-secret","geometry":["point","area"],"tags":{"office":"private_investigator"}},"office/political_party":{"icon":"maki-town-hall","geometry":["point","area"],"tags":{"office":"political_party"}},"office/notary":{"icon":"fas-stamp","geometry":["point","area"],"tags":{"office":"notary"}},"office/ngo":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"ngo"}},"office/newspaper":{"icon":"fas-newspaper","geometry":["point","area"],"tags":{"office":"newspaper"}},"office/moving_company":{"icon":"fas-people-carry","geometry":["point","area"],"tags":{"office":"moving_company"}},"office/lawyer":{"icon":"fas-balance-scale","geometry":["point","area"],"tags":{"office":"lawyer"}},"office/it":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"it"}},"office/insurance":{"icon":"temaki-briefcase_shield","moreFields":["branch_brand","brand","{office}"],"geometry":["point","area"],"tags":{"office":"insurance"}},"office/guide":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"guide"}},"office/graphic_design":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"graphic_design"}},"office/government":{"icon":"temaki-town_hall","fields":["name","government","{office}"],"geometry":["point","area"],"tags":{"office":"government"}},"office/foundation":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"foundation"}},"office/forestry":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"forestry"}},"office/financial_advisor":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"financial_advisor"}},"office/financial":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"financial"}},"office/estate_agent":{"icon":"temaki-real_estate_agency","moreFields":["branch_brand","brand","{office}"],"geometry":["point","area"],"tags":{"office":"estate_agent"}},"office/engineer":{"icon":"fas-pen-ruler","geometry":["point","area"],"tags":{"office":"engineer"}},"office/energy_supplier":{"icon":"temaki-briefcase_bolt","geometry":["point","area"],"tags":{"office":"energy_supplier"}},"office/employment_agency":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"employment_agency"}},"office/educational_institution":{"icon":"maki-school","geometry":["point","area"],"tags":{"office":"educational_institution"}},"office/diplomatic":{"icon":"temaki-embassy","fields":["name","diplomatic","country","target","diplomatic/services","{office}"],"geometry":["point","area"],"tags":{"office":"diplomatic"}},"office/coworking":{"icon":"maki-suitcase","fields":["{office}","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}"],"geometry":["point","area"],"tags":{"office":"coworking"}},"office/consulting":{"icon":"maki-suitcase","fields":["name","consulting","{office}"],"geometry":["point","area"],"tags":{"office":"consulting"}},"office/company":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"company"}},"office/charity":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"charity"}},"office/bail_bond_agent-US-PH":{"locationSet":{"include":["us","ph"]},"icon":"maki-bank","moreFields":["{office}","currency_multi","payment_multi"],"geometry":["point","area"],"tags":{"office":"bail_bond_agent"}},"office/association":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"association"}},"office/architect":{"icon":"fas-drafting-compass","geometry":["point","area"],"tags":{"office":"architect"}},"office/advertising_agency":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"advertising_agency"}},"office/adoption_agency":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"adoption_agency"}},"office/accountant":{"icon":"temaki-accounting","geometry":["point","area"],"tags":{"office":"accountant"}},"office/yes":{"icon":"maki-suitcase","fields":["name","office","{office}"],"geometry":["point","vertex","area"],"tags":{"office":"yes"},"searchable":false,"matchScore":0.8},"office/travel_agent":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"travel_agent"},"reference":{"key":"shop","value":"travel_agency"},"searchable":false},"office/physician":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"physician"},"searchable":false},"office/administrative":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"administrative"},"searchable":false},"office/lawyer/notary":{"icon":"maki-suitcase","geometry":["point","area"],"tags":{"office":"lawyer","lawyer":"notary"},"reference":{"key":"office","value":"notary"},"searchable":false},"office/government/tax":{"icon":"temaki-town_hall","fields":["{office}","operator"],"geometry":["point","area"],"tags":{"office":"government","government":"tax"},"reference":{"key":"government","value":"tax"}},"office/government/register_office":{"icon":"temaki-town_hall","fields":["{office}","operator"],"geometry":["point","area"],"tags":{"office":"government","government":"register_office"},"reference":{"key":"government","value":"register_office"}},"office/government/prosecutor":{"icon":"maki-suitcase","fields":["{office}","operator"],"geometry":["point","area"],"tags":{"office":"government","government":"prosecutor"},"reference":{"key":"government","value":"prosecutor"}},"office/diplomatic/liaison":{"icon":"temaki-embassy","fields":["name","liaison","{office/diplomatic}"],"geometry":["point","area"],"tags":{"office":"diplomatic","diplomatic":"liaison"},"reference":{"key":"diplomatic","value":"liaison"}},"office/diplomatic/embassy":{"icon":"temaki-embassy","fields":["name","embassy","{office/diplomatic}"],"geometry":["point","area"],"tags":{"office":"diplomatic","diplomatic":"embassy"},"reference":{"key":"diplomatic","value":"embassy"}},"office/diplomatic/consulate":{"icon":"temaki-embassy","fields":["name","consulate","{office/diplomatic}"],"geometry":["point","area"],"tags":{"office":"diplomatic","diplomatic":"consulate"},"reference":{"key":"diplomatic","value":"consulate"}},"noexit/yes":{"icon":"maki-barrier","geometry":["vertex"],"tags":{"noexit":"yes"},"reference":{"key":"noexit","value":"*"}},"network/type/node_network-DE-NL-BE-LU":{"fields":["name","rwn_ref","expected_rwn_route_relations","rcn_ref","expected_rcn_route_relations"],"geometry":["vertex"],"tags":{"network:type":"node_network"},"locationSet":{"include":["be","de","lu","nl"]},"matchScore":0.2},"natural/wood":{"icon":"maki-park-alt1","fields":["name","leaf_type","leaf_cycle"],"moreFields":["species/wikidata"],"geometry":["area"],"tags":{"natural":"wood"}},"natural/wetland":{"icon":"maki-wetland","fields":["wetland","salt","tidal"],"geometry":["point","area"],"tags":{"natural":"wetland"}},"natural/water":{"icon":"maki-water","fields":["name","water","intermittent"],"moreFields":["fishing","gnis/feature_id-US","salt","tidal"],"geometry":["area"],"tags":{"natural":"water"}},"natural/volcano":{"icon":"maki-volcano","fields":["name","ele_node","volcano/status","volcano/type"],"geometry":["point","vertex"],"tags":{"natural":"volcano"}},"natural/valley":{"icon":"temaki-valley","fields":["name","ele_node"],"geometry":["vertex","point","line"],"tags":{"natural":"valley"}},"natural/tree_stump":{"icon":"temaki-tree_stump","moreFields":["leaf_type_singular","leaf_cycle_singular","denotation","height","circumference","{natural/tree}"],"geometry":["point","vertex"],"tags":{"natural":"tree_stump"}},"natural/tree_row":{"icon":"temaki-tree_row","fields":["leaf_type","leaf_cycle","denotation"],"moreFields":["species/wikidata"],"geometry":["line"],"tags":{"natural":"tree_row"}},"natural/tree":{"icon":"roentgen-tree","fields":["leaf_type_singular","leaf_cycle_singular","denotation","height","circumference"],"moreFields":["genus","species","species/wikidata","taxon","diameter_crown","diameter","ref"],"geometry":["point","vertex"],"tags":{"natural":"tree"}},"natural/strait":{"icon":"iD-waterway-river","geometry":["point","line","area"],"fields":["name"],"tags":{"natural":"strait"}},"natural/stone":{"icon":"temaki-boulder1","fields":["name"],"geometry":["point","area"],"tags":{"natural":"stone"}},"natural/spring":{"icon":"maki-water","fields":["name","drinking_water","intermittent"],"geometry":["point","vertex","area"],"tags":{"natural":"spring"}},"natural/sinkhole":{"icon":"temaki-trench","fields":["name"],"geometry":["point","vertex","area"],"tags":{"natural":"sinkhole"}},"natural/shrub":{"icon":"temaki-shrub","fields":["height"],"moreFields":["species/wikidata"],"geometry":["point","vertex"],"tags":{"natural":"shrub"}},"natural/shingle":{"geometry":["area"],"tags":{"natural":"shingle"}},"natural/scrub":{"icon":"temaki-shrub","moreFields":["leaf_type","leaf_cycle","species/wikidata"],"geometry":["area"],"tags":{"natural":"scrub"}},"natural/scree":{"geometry":["area"],"tags":{"natural":"scree"}},"natural/sand":{"geometry":["area"],"tags":{"natural":"sand"}},"natural/saddle":{"icon":"temaki-saddle","fields":["name","ele_node"],"geometry":["point","vertex"],"tags":{"natural":"saddle"}},"natural/rock":{"icon":"temaki-boulder2","fields":["name"],"geometry":["point","area"],"tags":{"natural":"rock"}},"natural/ridge":{"icon":"temaki-mountain_range","geometry":["line"],"tags":{"natural":"ridge"}},"natural/reef":{"icon":"temaki-coral_reef","geometry":["area","point"],"tags":{"natural":"reef"}},"natural/peninsula":{"icon":"temaki-cape_landform","geometry":["point","area"],"fields":["name"],"tags":{"natural":"peninsula"}},"natural/peak":{"icon":"maki-mountain","fields":["name","ele_node"],"moreFields":["{natural}","summit/cross"],"geometry":["point","vertex"],"tags":{"natural":"peak"}},"natural/mud":{"geometry":["area"],"tags":{"natural":"mud"}},"natural/hot_spring":{"icon":"maki-hot-spring","fields":["name","intermittent"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"natural":"hot_spring"}},"natural/heath":{"icon":"temaki-shrub_low","geometry":["area"],"tags":{"natural":"heath"}},"natural/grassland":{"icon":"temaki-grass","geometry":["area"],"tags":{"natural":"grassland"}},"natural/glacier":{"icon":"temaki-snow","geometry":["area"],"tags":{"natural":"glacier"}},"natural/geyser":{"icon":"maki-water","fields":["name","geyser/height","ele_node"],"geometry":["point"],"tags":{"natural":"geyser"}},"natural/fell":{"geometry":["area"],"tags":{"natural":"fell"}},"natural/coastline":{"icon":"temaki-beach","geometry":["line"],"tags":{"natural":"coastline"}},"natural/cliff":{"icon":"temaki-cliff_falling_rocks","fields":["name","height"],"geometry":["point","vertex","line"],"tags":{"natural":"cliff"}},"natural/cave_entrance":{"icon":"maki-triangle","geometry":["point","vertex","area"],"fields":["name","ele_node","access_simple","direction","fee","payment_multi_fee","charge_fee"],"tags":{"natural":"cave_entrance"}},"natural/cape":{"icon":"temaki-cape_landform","fields":["name","ele_node"],"geometry":["point","vertex"],"tags":{"natural":"cape"}},"natural/beach":{"icon":"temaki-beach","fields":["name","surface","lifeguard_check","supervised"],"geometry":["point","area"],"tags":{"natural":"beach"}},"natural/bay":{"icon":"temaki-beach","geometry":["point","line","area"],"fields":["name"],"tags":{"natural":"bay"}},"natural/bare_rock":{"icon":"temaki-boulder3","geometry":["area"],"tags":{"natural":"bare_rock"}},"natural/arch":{"icon":"temaki-natural_arch","fields":["name"],"geometry":["point","area"],"tags":{"natural":"arch"}},"natural/wood_point":{"icon":"maki-park-alt1","fields":["{natural/wood}"],"moreFields":["{natural/wood}"],"geometry":["point"],"tags":{"natural":"wood"},"searchable":false,"matchScore":1.1,"name":"{natural/wood}"},"natural/wetland/wet_meadow":{"icon":"maki-wetland","geometry":["area"],"tags":{"natural":"wetland","wetland":"wet_meadow"},"reference":{"key":"wetland","value":"wet_meadow"}},"natural/wetland/tidalflat":{"icon":"maki-wetland","fields":["salt","tidal"],"geometry":["area"],"tags":{"natural":"wetland","wetland":"tidalflat"},"reference":{"key":"wetland","value":"tidalflat"}},"natural/wetland/swamp":{"icon":"temaki-swamp","moreFields":["tidal"],"geometry":["area"],"tags":{"natural":"wetland","wetland":"swamp"},"reference":{"key":"wetland","value":"swamp"}},"natural/wetland/string_bog":{"icon":"maki-wetland","geometry":["area"],"tags":{"natural":"wetland","wetland":"string_bog"},"reference":{"key":"wetland","value":"string_bog"}},"natural/wetland/saltmarsh":{"icon":"maki-wetland","fields":["salt","tidal"],"geometry":["area"],"tags":{"natural":"wetland","wetland":"saltmarsh"},"reference":{"key":"wetland","value":"saltmarsh"}},"natural/wetland/reedbed":{"icon":"maki-wetland","geometry":["area"],"tags":{"natural":"wetland","wetland":"reedbed"},"reference":{"key":"wetland","value":"reedbed"}},"natural/wetland/marsh":{"icon":"maki-wetland","geometry":["area"],"tags":{"natural":"wetland","wetland":"marsh"},"reference":{"key":"wetland","value":"marsh"}},"natural/wetland/mangrove":{"icon":"maki-wetland","fields":["salt","tidal"],"geometry":["area"],"tags":{"natural":"wetland","wetland":"mangrove"},"reference":{"key":"wetland","value":"mangrove"}},"natural/wetland/fen":{"icon":"maki-wetland","geometry":["area"],"tags":{"natural":"wetland","wetland":"fen"},"reference":{"key":"wetland","value":"fen"}},"natural/wetland/bog":{"icon":"maki-wetland","geometry":["area"],"tags":{"natural":"wetland","wetland":"bog"},"reference":{"key":"wetland","value":"bog"}},"natural/water/wastewater":{"icon":"temaki-waste","geometry":["area"],"tags":{"natural":"water","water":"wastewater"},"reference":{"key":"water","value":"wastewater"}},"natural/water/stream":{"icon":"iD-waterway-stream","fields":["water","intermittent"],"geometry":["area"],"tags":{"natural":"water","water":"stream"},"reference":{"key":"water","value":"stream"}},"natural/water/river":{"icon":"iD-waterway-river","fields":["water","intermittent","tidal"],"geometry":["area"],"tags":{"natural":"water","water":"river"},"reference":{"key":"water","value":"river"}},"natural/water/reservoir":{"icon":"maki-water","geometry":["area"],"tags":{"natural":"water","water":"reservoir"},"reference":{"key":"water","value":"reservoir"}},"natural/water/pond":{"icon":"maki-water","fields":["{natural/water}","salt"],"geometry":["area"],"tags":{"natural":"water","water":"pond"},"reference":{"key":"water","value":"pond"}},"natural/water/oxbow":{"icon":"maki-water","geometry":["area"],"tags":{"natural":"water","water":"oxbow"},"reference":{"key":"water","value":"oxbow"}},"natural/water/moat":{"icon":"maki-water","fields":["{natural/water}","salt"],"geometry":["area"],"tags":{"natural":"water","water":"moat"}},"natural/water/lake":{"icon":"maki-water","fields":["{natural/water}","salt","tidal"],"geometry":["area"],"tags":{"natural":"water","water":"lake"},"reference":{"key":"water","value":"lake"}},"natural/water/canal":{"icon":"iD-waterway-canal","fields":["{natural/water}","salt"],"geometry":["area"],"tags":{"natural":"water","water":"canal"},"reference":{"key":"water","value":"canal"}},"natural/water/basin":{"icon":"maki-water","fields":["name","basin","intermittent_yes"],"geometry":["area"],"tags":{"natural":"water","water":"basin"},"reference":{"key":"water","value":"basin"}},"natural/tree/needleleaved":{"icon":"roentgen-needleleaved_tree","fields":["leaf_type_singular","leaf_cycle_singular","{natural/tree}"],"geometry":["point","vertex"],"tags":{"natural":"tree","leaf_type":"needleleaved"},"searchable":false},"natural/tree/broadleaved":{"icon":"maki-park","fields":["leaf_type_singular","leaf_cycle_singular","{natural/tree}"],"geometry":["point","vertex"],"tags":{"natural":"tree","leaf_type":"broadleaved"},"searchable":false},"natural/tree/needleleaved/evergreen":{"icon":"roentgen-needleleaved_tree","fields":["leaf_type_singular","leaf_cycle_singular","{natural/tree/needleleaved}"],"geometry":["point","vertex"],"tags":{"natural":"tree","leaf_type":"needleleaved","leaf_cycle":"evergreen"}},"natural/tree/needleleaved/deciduous":{"icon":"roentgen-needleleaved_tree","fields":["leaf_type_singular","leaf_cycle_singular","{natural/tree/needleleaved}"],"geometry":["point","vertex"],"tags":{"natural":"tree","leaf_type":"needleleaved","leaf_cycle":"deciduous"},"matchScore":0.99},"natural/tree/broadleaved/evergreen":{"icon":"maki-park","fields":["leaf_type_singular","leaf_cycle_singular","{natural/tree/broadleaved}"],"geometry":["point","vertex"],"tags":{"natural":"tree","leaf_type":"broadleaved","leaf_cycle":"evergreen"},"matchScore":0.99},"natural/tree/broadleaved/deciduous":{"icon":"maki-park","fields":["leaf_type_singular","leaf_cycle_singular","{natural/tree/broadleaved}"],"geometry":["point","vertex"],"tags":{"natural":"tree","leaf_type":"broadleaved","leaf_cycle":"deciduous"}},"military/trench":{"icon":"temaki-trench","fields":["name","trench"],"geometry":["point","line"],"tags":{"military":"trench"}},"military/office":{"icon":"temaki-military","fields":["name","building_area_yes"],"moreFields":["gnis/feature_id-US","level"],"geometry":["point","area"],"tags":{"military":"office"}},"military/nuclear_explosion_site":{"icon":"maki-danger","fields":["name"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex","area"],"tags":{"military":"nuclear_explosion_site"}},"military/checkpoint":{"icon":"temaki-military_checkpoint","fields":["name"],"geometry":["point","vertex","area"],"tags":{"military":"checkpoint"}},"military/bunker":{"icon":"temaki-bunker","fields":["name","bunker_type","building_area_yes"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"military":"bunker"},"addTags":{"building":"bunker","military":"bunker"}},"marker/utility":{"icon":"temaki-silo","fields":["ref","operator","marker","utility","{marker}"],"geometry":["point"],"tags":{"marker":"*","utility":"*"}},"marker/utility/power":{"icon":"temaki-silo","fields":["ref","operator","marker","{marker}"],"geometry":["point"],"tags":{"marker":"*","utility":"power"}},"man_made/works":{"icon":"maki-industry","fields":["name","operator","address","product"],"moreFields":["{@templates/contact}","building_area","gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"works"}},"man_made/windpump":{"icon":"temaki-windpump","fields":["ref","operator","height","material","manufacturer","lit"],"geometry":["point"],"tags":{"man_made":"windpump"}},"man_made/windmill":{"icon":"maki-windmill","fields":["name","start_date","building_area_yes"],"moreFields":["address","gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"windmill"}},"man_made/watermill":{"icon":"maki-watermill","fields":["name","start_date","building_area_yes","address"],"moreFields":["{@templates/contact}","gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"watermill"}},"man_made/water_works":{"icon":"temaki-powered_pump","fields":["name","operator","address"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"water_works"}},"man_made/water_well":{"icon":"temaki-well_pump_manual","fields":["ref","operator","drinking_water","pump","access_simple"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"water_well"}},"man_made/water_tower":{"icon":"temaki-water_tower","fields":["operator","height"],"moreFields":["gnis/feature_id-US"],"geometry":["area","point"],"tags":{"man_made":"water_tower"}},"man_made/water_tap":{"icon":"temaki-water_tap","fields":["ref","operator","drinking_water","access_simple"],"geometry":["point","vertex"],"tags":{"man_made":"water_tap"}},"man_made/wastewater_plant":{"icon":"temaki-waste","fields":["name","operator","address","ref"],"moreFields":["{@templates/contact}","gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"wastewater_plant"}},"man_made/video_wall":{"icon":"temaki-billboard","fields":["support","operator","height","min_height"],"moreFields":["ref","visibility"],"geometry":["point","vertex","line"],"tags":{"man_made":"video_wall"}},"man_made/utility_pole":{"icon":"temaki-utility_pole","fields":["ref","operator","utility_semi","height","material","line_attachment"],"moreFields":["colour","manufacturer","line_management"],"geometry":["point","vertex"],"tags":{"man_made":"utility_pole"}},"man_made/tunnel":{"icon":"temaki-tunnel","fields":["name","tunnel_combo","layer","width","length","height"],"moreFields":["gnis/feature_id-US"],"geometry":["area"],"tags":{"man_made":"tunnel"},"addTags":{"man_made":"tunnel","layer":"-1"},"removeTags":{"man_made":"tunnel","layer":"*"},"reference":{"key":"man_made","value":"tunnel"}},"man_made/tower":{"icon":"temaki-tower","fields":["tower/type","tower/construction","height","building_area_yes"],"moreFields":["architect","gnis/feature_id-US"],"geometry":["point","vertex","area"],"tags":{"man_made":"tower"}},"man_made/telescope":{"icon":"fas-satellite-dish","fields":["name","telescope/type","operator","ref"],"geometry":["point","area"],"tags":{"man_made":"telescope"},"reference":{"key":"man_made"}},"man_made/tailings_pond":{"icon":"maki-water","fields":["name","resource","operator","intermittent"],"geometry":["area"],"tags":{"man_made":"tailings_pond"}},"man_made/survey_point":{"icon":"temaki-benchmark_disk","fields":["name","ref","survey_point/structure","survey_point/purpose","ele_node"],"moreFields":["survey_point/datum_aligned","inscription"],"geometry":["point","vertex"],"tags":{"man_made":"survey_point"}},"man_made/surveillance":{"icon":"temaki-security_camera","geometry":["point","vertex"],"fields":["surveillance","surveillance/type","surveillance/zone","direction"],"tags":{"man_made":"surveillance"}},"man_made/street_cabinet":{"icon":"fas-door-closed","geometry":["point","area"],"fields":["ref","operator","utility_semi","height","colour"],"moreFields":["model","street_cabinet"],"tags":{"man_made":"street_cabinet"}},"man_made/storage_tank":{"icon":"temaki-storage_tank","fields":["content","operator","material","building_area","height","capacity_volume"],"moreFields":["layer","location","manufacturer"],"geometry":["area","point"],"tags":{"man_made":"storage_tank"}},"man_made/ski_jump":{"icon":"temaki-ski_jumping","fields":["name","operator"],"moreFields":["building"],"geometry":["point","area"],"tags":{"man_made":"ski_jump"}},"man_made/silo":{"icon":"temaki-silo","fields":["crop","building_area_yes"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"silo"}},"man_made/satellite_dish":{"icon":"fas-satellite-dish","fields":["operator","ref"],"geometry":["point","area"],"tags":{"man_made":"satellite_dish"}},"man_made/reservoir_covered":{"icon":"maki-water","fields":["name","operator","capacity_volume","access_simple","layer"],"moreFields":["ref"],"geometry":["area","point"],"tags":{"man_made":"reservoir_covered"}},"man_made/quay":{"icon":"temaki-quay","fields":["name","mooring"],"geometry":["line","area"],"tags":{"man_made":"quay"}},"man_made/pumping_station":{"icon":"temaki-powered_pump","geometry":["point","area"],"fields":["name","operator","address"],"moreFields":["gnis/feature_id-US"],"tags":{"man_made":"pumping_station"}},"man_made/planter":{"icon":"maki-garden","geometry":["point","vertex","area"],"fields":["material","barrier_planter"],"tags":{"man_made":"planter"},"matchScore":0.9},"man_made/pipeline":{"icon":"iD-pipeline-line","fields":["operator","location","substance","layer","diameter"],"geometry":["line"],"tags":{"man_made":"pipeline"}},"man_made/pier":{"icon":"temaki-pier_fixed","fields":["name","mooring","surface","floating","width","access","lit"],"moreFields":["{highway/footway}","fishing","gnis/feature_id-US","incline"],"geometry":["line","area"],"tags":{"man_made":"pier"}},"man_made/petroleum_well":{"icon":"temaki-oil_well","fields":["name","ref","operator","substance"],"moreFields":["gnis/feature_id-US"],"geometry":["point","vertex"],"tags":{"man_made":"petroleum_well"}},"man_made/observatory":{"icon":"temaki-telescope","fields":["name","operator","address","access_simple","building_area_yes"],"moreFields":["{@templates/contact}","gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"observatory"}},"man_made/obelisk":{"icon":"temaki-obelisk","fields":["name","inscription","height","material","colour"],"geometry":["point","vertex","area"],"tags":{"man_made":"obelisk"}},"man_made/monitoring_station":{"icon":"temaki-antenna","geometry":["point","vertex","area"],"fields":["monitoring_multi","operator","manufacturer"],"moreFields":["ref"],"tags":{"man_made":"monitoring_station"}},"man_made/mineshaft":{"icon":"temaki-mineshaft_cage","geometry":["point","vertex","area"],"fields":["name","operator","resource"],"moreFields":["gnis/feature_id-US"],"tags":{"man_made":"mineshaft"}},"man_made/milk_churn_stand":{"icon":"temaki-milk_jug","fields":["material"],"geometry":["point","area"],"tags":{"man_made":"milk_churn_stand"}},"man_made/mast":{"icon":"temaki-mast","fields":["tower/type","tower/construction","height"],"moreFields":["communication_multi","gnis/feature_id-US","manufacturer","material"],"geometry":["point","vertex"],"tags":{"man_made":"mast"}},"man_made/manhole":{"icon":"temaki-manhole","fields":["manhole","operator","label","ref"],"geometry":["point","vertex"],"tags":{"man_made":"manhole"}},"man_made/lighthouse":{"icon":"maki-lighthouse","fields":["name","operator","building_area_yes","height"],"moreFields":["{@templates/contact}","address","gnis/feature_id-US","seamark/type"],"geometry":["point","vertex","area"],"tags":{"man_made":"lighthouse"}},"man_made/insect_hotel":{"icon":"fas-bugs","geometry":["point"],"moreFields":["ref","operator","length","width","height"],"tags":{"man_made":"insect_hotel"}},"man_made/groyne":{"fields":["material","seamark/type"],"geometry":["line","area"],"tags":{"man_made":"groyne"}},"man_made/goods_conveyor":{"icon":"temaki-conveyor","fields":["name","ref","operator","oneway_yes","resource","width"],"moreFields":["colour","covered","indoor","lit","manufacturer","material"],"geometry":["line"],"tags":{"man_made":"goods_conveyor"}},"man_made/gasometer":{"icon":"temaki-storage_tank","fields":["content","building_area_yes"],"geometry":["point","area"],"tags":{"man_made":"gasometer"}},"man_made/gantry":{"icon":"temaki-toll_gantry","fields":["layer"],"moreFields":["material","maxheight","operator","ref"],"geometry":["line"],"tags":{"man_made":"gantry"}},"man_made/fuel_pump":{"icon":"maki-fuel","fields":["ref","fuel/fuel_multi","fuel/fuel_multi-RU","operator","self_service"],"geometry":["point","vertex"],"tags":{"man_made":"fuel_pump"}},"man_made/footwear_decontamination-AU-NZ":{"icon":"temaki-footwear_decontamination","fields":["operator","capacity"],"moreFields":["{@templates/poi}","covered"],"geometry":["point","vertex","area"],"tags":{"man_made":"footwear_decontamination"},"locationSet":{"include":["AU","NZ"]}},"man_made/flare":{"icon":"temaki-chimney","fields":["height"],"moreFields":["ref","visibility"],"geometry":["point","vertex"],"tags":{"man_made":"flare"}},"man_made/flagpole":{"icon":"maki-embassy","fields":["operator","flag/type","country_flag","flag/name","flag/wikidata","lit","height"],"moreFields":["manufacturer","material"],"geometry":["point","vertex"],"tags":{"man_made":"flagpole"}},"man_made/embankment":{"geometry":["line"],"tags":{"man_made":"embankment"}},"man_made/dyke":{"geometry":["line"],"tags":{"man_made":"dyke"}},"man_made/dovecote":{"icon":"fas-dove","fields":["operator","building_area_yes","height","capacity"],"moreFields":["layer","location"],"geometry":["area","point"],"tags":{"man_made":"dovecote"}},"man_made/cutline":{"icon":"maki-logging","geometry":["line"],"tags":{"man_made":"cutline"}},"man_made/cross":{"icon":"maki-religious-christian","fields":["name","material","height","ele_node","inscription","direction"],"geometry":["point","vertex"],"tags":{"man_made":"cross"}},"man_made/crane":{"icon":"roentgen-crane","fields":["operator","manufacturer","height","crane/type"],"geometry":["point","line","vertex","area"],"tags":{"man_made":"crane"}},"man_made/compass_rose":{"icon":"temaki-compass","geometry":["point","area"],"tags":{"man_made":"compass_rose"}},"man_made/clearcut":{"icon":"maki-logging","geometry":["area"],"tags":{"man_made":"clearcut"}},"man_made/clarifier":{"icon":"temaki-waste","geometry":["point","area"],"tags":{"man_made":"clarifier"},"addTags":{"man_made":"clarifier","natural":"water","water":"wastewater"}},"man_made/chimney":{"icon":"temaki-chimney","fields":["operator","material","height"],"geometry":["point","area"],"tags":{"man_made":"chimney"}},"man_made/charge_point":{"icon":"fas-plug-circle-bolt","fields":["capacity","ref"],"moreFields":["level","manufacturer"],"geometry":["point"],"tags":{"man_made":"charge_point"}},"man_made/ceremonial_gate":{"icon":"fas-archway","fields":["ceremonial_gate","height","material","religion"],"moreFields":["name","inscription","operator","access","ref","lit"],"geometry":["point","vertex","line","area"],"tags":{"man_made":"ceremonial_gate"}},"man_made/carpet_hanger":{"icon":"maki-picnic-site","fields":["material","height","colour"],"geometry":["point","line"],"tags":{"man_made":"carpet_hanger"}},"man_made/cairn":{"icon":"temaki-cairn","fields":["height","ele","ele_node","check_date"],"moreFields":["colour","material","operator","ref"],"geometry":["point","area"],"tags":{"man_made":"cairn"}},"man_made/bunker_silo":{"icon":"temaki-bunker_silo","fields":["content"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"man_made":"bunker_silo"}},"man_made/bridge":{"icon":"maki-bridge","fields":["name","bridge_combo","layer","maxweight","ref_bridge_number"],"moreFields":["gnis/feature_id-US","manufacturer","material","seamark/type"],"geometry":["area"],"tags":{"man_made":"bridge"},"addTags":{"man_made":"bridge","layer":"1"},"removeTags":{"man_made":"bridge","layer":"*"},"reference":{"key":"man_made","value":"bridge"}},"man_made/breakwater":{"fields":["material","seamark/type"],"geometry":["line","area"],"tags":{"man_made":"breakwater"}},"man_made/beehive":{"icon":"fas-archive","geometry":["point","area"],"fields":["ref","operator","seasonal","height","colour"],"moreFields":["manufacturer"],"tags":{"man_made":"beehive"}},"man_made/beacon":{"icon":"maki-communications-tower","fields":["name","height"],"moreFields":["seamark/type"],"geometry":["point","vertex","area"],"tags":{"man_made":"beacon"},"matchScore":0.5},"man_made/antenna":{"icon":"temaki-antenna","fields":["communication_multi","operator","manufacturer","height"],"geometry":["point"],"tags":{"man_made":"antenna"}},"man_made/adit":{"icon":"temaki-adit_profile","geometry":["point","vertex","area"],"fields":["name","operator","resource","direction"],"moreFields":["gnis/feature_id-US"],"tags":{"man_made":"adit"}},"man_made/yes":{"icon":"temaki-storage_tank","fields":["name","man_made","{man_made}"],"geometry":["point","vertex","line","area"],"tags":{"man_made":"yes"},"matchScore":0.5,"searchable":false},"man_made/courtyard":{"icon":"maki-square-stroked","fields":["name"],"geometry":["area"],"tags":{"man_made":"courtyard"},"searchable":false},"man_made/works/brewery":{"icon":"temaki-storage_fermenter","fields":["{man_made/works}","website"],"moreFields":["{man_made/works}","min_age"],"geometry":["point","area"],"tags":{"man_made":"works","product":"beer"},"reference":{"key":"product","value":"beer"}},"man_made/tower/pagoda":{"icon":"fas-vihara","moreFields":["{man_made/tower}","opening_hours"],"geometry":["point","area"],"tags":{"man_made":"tower","tower:type":"pagoda"},"reference":{"key":"tower:type","value":"pagoda"}},"man_made/tower/observation":{"icon":"maki-observation-tower","fields":["{man_made/tower}","access_simple","fee"],"moreFields":["{man_made/tower}","opening_hours","direction"],"geometry":["point","area"],"tags":{"man_made":"tower","tower:type":"observation"},"reference":{"key":"tower:type","value":"observation"}},"man_made/tower/minaret":{"icon":"temaki-domed_tower","geometry":["point","area"],"tags":{"man_made":"tower","tower:type":"minaret"},"reference":{"key":"tower:type","value":"minaret"}},"man_made/tower/diving":{"icon":"roentgen-diving_1_platforms","geometry":["point","area"],"fields":["{man_made/tower}","tower/platforms"],"tags":{"man_made":"tower","tower:type":"diving"},"reference":{"key":"tower:type","value":"diving"}},"man_made/tower/defensive":{"icon":"maki-castle","geometry":["point","area"],"tags":{"man_made":"tower","tower:type":"defensive"},"reference":{"key":"tower:type","value":"defensive"}},"man_made/tower/cooling":{"icon":"temaki-cooling_tower","fields":["ref","operator","material","building_area_yes","height"],"moreFields":["layer"],"geometry":["area"],"tags":{"man_made":"tower","tower:type":"cooling"},"reference":{"key":"tower:type","value":"cooling"}},"man_made/tower/communication":{"icon":"temaki-tower_communication","fields":["{man_made/tower}","communication_multi","mimics"],"moreFields":["{man_made/tower}"],"geometry":["point","vertex","area"],"tags":{"man_made":"tower","tower:type":"communication"},"reference":{"key":"tower:type","value":"communication"}},"man_made/tower/bell_tower":{"icon":"fas-bell","moreFields":["{man_made/tower}","opening_hours"],"geometry":["point","area"],"tags":{"man_made":"tower","tower:type":"bell_tower"},"reference":{"key":"tower:type","value":"bell_tower"}},"man_made/telescope/radio":{"icon":"roentgen-telescope-radio","geometry":["point","area"],"tags":{"man_made":"telescope","telescope:type":"radio"},"reference":{"key":"man_made"}},"man_made/telescope/optical":{"icon":"temaki-telescope","fields":["operator","ref"],"geometry":["point","area"],"tags":{"man_made":"telescope","telescope:type":"optical"},"reference":{"key":"man_made"}},"man_made/surveillance/camera":{"icon":"temaki-security_camera","geometry":["point","vertex"],"fields":["surveillance","surveillance/type","camera/type","camera/mount","camera/direction","surveillance/zone","contact/webcam"],"moreFields":["manufacturer"],"tags":{"man_made":"surveillance","surveillance:type":"camera"}},"man_made/street_cabinet/waste":{"icon":"maki-recycling","geometry":["point","area"],"fields":["{man_made/street_cabinet}"],"moreFields":["{man_made/street_cabinet}"],"tags":{"man_made":"street_cabinet","street_cabinet":"waste"},"reference":{"key":"man_made","value":"street_cabinet"}},"man_made/street_cabinet/transport_management":{"icon":"fas-door-closed","geometry":["point","area"],"fields":["{man_made/street_cabinet}"],"moreFields":["{man_made/street_cabinet}"],"tags":{"man_made":"street_cabinet","street_cabinet":"transport_management"},"reference":{"key":"man_made","value":"street_cabinet"}},"man_made/street_cabinet/traffic_monitoring":{"icon":"fas-door-closed","geometry":["point","area"],"fields":["{man_made/street_cabinet}"],"moreFields":["{man_made/street_cabinet}"],"tags":{"man_made":"street_cabinet","street_cabinet":"traffic_monitoring"},"reference":{"key":"man_made","value":"street_cabinet"}},"man_made/street_cabinet/traffic_control":{"icon":"fas-door-closed","geometry":["point","area"],"fields":["{man_made/street_cabinet}"],"moreFields":["{man_made/street_cabinet}"],"tags":{"man_made":"street_cabinet","street_cabinet":"traffic_control"},"reference":{"key":"man_made","value":"street_cabinet"}},"man_made/street_cabinet/postal_service":{"icon":"fas-door-closed","geometry":["point","area"],"fields":["{man_made/street_cabinet}"],"moreFields":["{man_made/street_cabinet}"],"tags":{"man_made":"street_cabinet","street_cabinet":"postal_service"},"reference":{"key":"street_cabinet","value":"postal_service"}},"man_made/storage_tank/water":{"icon":"temaki-storage_tank","geometry":["point","area"],"moreFields":["{man_made/storage_tank}","covered","ref"],"tags":{"man_made":"storage_tank","content":"water"}},"man_made/pipeline/underground":{"icon":"iD-pipeline-line","geometry":["line"],"tags":{"man_made":"pipeline","location":"underground"},"addTags":{"man_made":"pipeline","location":"underground","layer":"-1"}},"man_made/pier/floating":{"icon":"temaki-pier_floating","geometry":["line","area"],"tags":{"man_made":"pier","floating":"yes"}},"man_made/mast/lighting":{"icon":"temaki-mast_lighting","fields":["{man_made/mast}","direction_point"],"moreFields":["{man_made/mast}"],"geometry":["point"],"tags":{"man_made":"mast","tower:type":"lighting"},"reference":{"key":"tower:type","value":"lighting"}},"man_made/mast/communication":{"icon":"temaki-mast_communication","fields":["{man_made/mast}","communication_multi"],"moreFields":["{man_made/mast}","mimics"],"geometry":["point","vertex"],"tags":{"man_made":"mast","tower:type":"communication"},"reference":{"key":"tower:type","value":"communication"}},"man_made/mast/communication/television":{"icon":"temaki-mast_communication","geometry":["point","vertex"],"tags":{"man_made":"mast","tower:type":"communication","communication:television":"yes"},"reference":{"key":"communication:television","value":"yes"}},"man_made/mast/communication/radio":{"icon":"temaki-mast_communication","geometry":["point","vertex"],"tags":{"man_made":"mast","tower:type":"communication","communication:radio":"yes"},"reference":{"key":"communication:radio","value":"yes"}},"man_made/mast/communication/mobile_phone":{"icon":"temaki-mast_communication","geometry":["point","vertex"],"tags":{"man_made":"mast","tower:type":"communication","communication:mobile_phone":"yes"},"reference":{"key":"communication:mobile_phone","value":"yes"}},"man_made/manhole/water":{"icon":"temaki-waste_manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"water"},"addTags":{"man_made":"manhole","manhole":"water"}},"man_made/manhole/telecom":{"icon":"temaki-cable_manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"telecom"},"addTags":{"man_made":"manhole","manhole":"telecom"}},"man_made/manhole/sewer":{"icon":"temaki-waste_manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"sewer"},"addTags":{"man_made":"manhole","manhole":"sewer"}},"man_made/manhole/power":{"icon":"temaki-power_manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"power"},"addTags":{"man_made":"manhole","manhole":"power"}},"man_made/manhole/gas":{"icon":"temaki-gas_manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"gas"},"addTags":{"man_made":"manhole","manhole":"gas"}},"man_made/manhole/drain":{"icon":"temaki-manhole","fields":["operator","ref"],"geometry":["point","vertex"],"tags":{"manhole":"drain"},"addTags":{"man_made":"manhole","manhole":"drain"}},"man_made/crane/portal_crane":{"icon":"roentgen-crane_portal","geometry":["point","vertex","area"],"tags":{"man_made":"crane","crane:type":"portal_crane"},"reference":{"key":"crane:type","value":"portal_crane"}},"man_made/crane/gantry_crane":{"icon":"roentgen-crane_gantry","geometry":["point","vertex","area"],"tags":{"man_made":"crane","crane:type":"gantry_crane"},"reference":{"key":"crane:type","value":"gantry_crane"}},"man_made/ceremonial_gate/torii":{"icon":"temaki-shinto","fields":["{man_made/ceremonial_gate}","colour"],"moreFields":["{man_made/ceremonial_gate}"],"geometry":["point","vertex","line"],"tags":{"ceremonial_gate":"torii"},"addTags":{"man_made":"ceremonial_gate","ceremonial_gate":"torii"},"reference":{"key":"ceremonial_gate","value":"torii"}},"man_made/ceremonial_gate/paifang":{"icon":"temaki-paifang","fields":["{man_made/ceremonial_gate}"],"moreFields":["{man_made/ceremonial_gate}"],"geometry":["point","vertex","line","area"],"tags":{"ceremonial_gate":"paifang"},"addTags":{"man_made":"ceremonial_gate","ceremonial_gate":"paifang"},"reference":{"key":"ceremonial_gate","value":"paifang"}},"leisure/water_park":{"icon":"fas-swimmer","fields":["{tourism/theme_park}","sport"],"moreFields":["{tourism/theme_park}"],"geometry":["area","point"],"tags":{"leisure":"water_park"}},"leisure/trampoline_park":{"icon":"fas-chevron-circle-up","fields":["name","address","building_area_yes","opening_hours","phone","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","branch_brand","brand","charge_fee","fee","operator"],"geometry":["point","area"],"tags":{"leisure":"trampoline_park"}},"leisure/track":{"icon":"temaki-racetrack_oval","fields":["surface","sport/sport_racing_nonmotor","lit","width","lanes"],"moreFields":["access","covered","gnis/feature_id-US","indoor","level"],"geometry":["line","point","area"],"tags":{"leisure":"track"}},"leisure/swimming_pool":{"icon":"fas-swimming-pool","fields":["name","access_simple","lit","location_pool","length","swimming_pool"],"moreFields":["address","level","gnis/feature_id-US","opening_hours","operator"],"geometry":["area","point"],"tags":{"leisure":"swimming_pool"}},"leisure/swimming_area":{"icon":"fas-swimmer","fields":["name","access_simple","supervised","fee","payment_multi_fee","charge_fee","lit"],"moreFields":["opening_hours","operator"],"geometry":["area"],"tags":{"leisure":"swimming_area"}},"leisure/stadium":{"icon":"maki-pitch","fields":["name","operator","sport","address"],"moreFields":["{@templates/contact}","gnis/feature_id-US"],"geometry":["point","area"],"tags":{"leisure":"stadium"}},"leisure/sports_hall":{"icon":"maki-pitch","fields":["name","operator","sport","address","building_area_yes","opening_hours","access_simple"],"moreFields":["air_conditioning","level","fee","payment_multi_fee","charge_fee","wheelchair"],"geometry":["point","area"],"tags":{"leisure":"sports_hall"}},"leisure/sports_centre":{"icon":"maki-pitch","fields":["name","operator","operator/type","sport","building_area","address","fee","opening_hours","payment_multi_fee","charge_fee"],"moreFields":["{@templates/poi}","access_simple"],"geometry":["point","area"],"tags":{"leisure":"sports_centre"}},"leisure/slipway_drivable":{"icon":"maki-slipway","fields":["{leisure/slipway}","lanes"],"moreFields":["{leisure/slipway}"],"geometry":["line"],"tags":{"leisure":"slipway","highway":"service"},"addTags":{"leisure":"slipway","highway":"service","service":"slipway"},"matchScore":1.1},"leisure/slipway":{"icon":"maki-slipway","fields":["name","surface","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["lit","opening_hours","seamark/type","width"],"geometry":["point","vertex","line"],"tags":{"leisure":"slipway"}},"leisure/sauna":{"icon":"fas-thermometer-three-quarters","fields":["name","operator","address","opening_hours","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["{@templates/contact}","gnis/feature_id-US","level"],"geometry":["point","area"],"tags":{"leisure":"sauna"}},"leisure/resort":{"icon":"maki-lodging","fields":["name","operator","resort","address","opening_hours"],"moreFields":["{@templates/internet_access}","{@templates/poi}","access_simple"],"geometry":["point","area"],"tags":{"leisure":"resort"}},"leisure/playground":{"icon":"maki-playground","fields":["name","operator","surface","access_simple","min_age","max_age"],"moreFields":["playground/theme","blind","dog","gnis/feature_id-US","indoor","wheelchair"],"geometry":["area","point"],"tags":{"leisure":"playground"}},"leisure/pitch":{"icon":"maki-pitch","fields":["name","sport","access_simple","surface","lit","ref"],"moreFields":["address","charge_fee","covered","fee","gnis/feature_id-US","indoor","payment_multi_fee"],"geometry":["area","point"],"tags":{"leisure":"pitch"}},"leisure/picnic_table":{"icon":"maki-picnic-site","fields":["material","lit","bench","colour"],"moreFields":["height","level","manufacturer","operator"],"geometry":["point"],"tags":{"leisure":"picnic_table"}},"leisure/park":{"icon":"temaki-tree_and_bench","fields":["name","operator","operator/type","address","opening_hours"],"moreFields":["{@templates/contact}","access_simple","dog","gnis/feature_id-US","smoking"],"geometry":["area","point"],"tags":{"leisure":"park"}},"leisure/outdoor_seating":{"icon":"maki-picnic-site","geometry":["point","area"],"fields":["name","operator","capacity","lit","seasonal","heating"],"moreFields":["level","wheelchair"],"tags":{"leisure":"outdoor_seating"}},"leisure/nature_reserve":{"icon":"maki-park","geometry":["area","point"],"fields":["name","operator","operator/type","address","opening_hours"],"moreFields":["{@templates/contact}","access_simple","dog","gnis/feature_id-US"],"tags":{"leisure":"nature_reserve"}},"leisure/miniature_golf":{"icon":"temaki-golf_green","fields":["name","operator","address","opening_hours","fee","payment_multi_fee","charge_fee"],"moreFields":["{@templates/contact}","gnis/feature_id-US"],"geometry":["area","point"],"tags":{"leisure":"miniature_golf"}},"leisure/marina_no_facilities":{"icon":"temaki-sailboat","fields":["name","operator","capacity","fee","payment_multi_fee","charge_fee"],"moreFields":["{@templates/contact}","address","gnis/feature_id-US","seamark/harbour/category_marina","seamark/type"],"geometry":["area","point","vertex"],"tags":{"seamark:harbour:category":"marina_no_facilities"},"addTags":{"leisure":"marina","seamark:type":"harbour","seamark:harbour:category":"marina_no_facilities"}},"leisure/marina":{"icon":"temaki-sailboat","fields":["name","operator","capacity","fee","payment_multi_fee","charge_fee","sanitary_dump_station","power_supply"],"moreFields":["{@templates/internet_access}","{@templates/contact}","address","gnis/feature_id-US","seamark/harbour/category_marina","seamark/type","vhf"],"geometry":["area","point","vertex"],"tags":{"leisure":"marina"},"addTags":{"leisure":"marina","seamark:type":"harbour","seamark:harbour:category":"marina"}},"leisure/indoor_play":{"icon":"temaki-slide","fields":["name","address","building_area_yes","opening_hours","phone","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","blind","branch_brand","brand","charge_fee","dog","fee","max_age","min_age","fhrs/id-GB","operator"],"geometry":["point","area"],"tags":{"leisure":"indoor_play"}},"leisure/ice_rink":{"icon":"fas-skating","fields":["name","seasonal","sport/sport_ice","operator","address","building","opening_hours"],"moreFields":["{@templates/contact}","{@templates/internet_access}","gnis/feature_id-US","level","payment_multi"],"geometry":["area","point"],"tags":{"leisure":"ice_rink"}},"leisure/hot_tub":{"icon":"fas-hot-tub-person","fields":["access_simple","location_pool"],"moreFields":["level","gender","lit","nudism","opening_hours","operator"],"geometry":["area","point"],"tags":{"leisure":"hot_tub"}},"leisure/horse_riding":{"icon":"maki-horse-riding","fields":["name","access_simple","operator","address"],"moreFields":["{@templates/contact}","contact/facebook","gnis/feature_id-US","opening_hours","payment_multi"],"geometry":["point","area"],"tags":{"leisure":"horse_riding"}},"leisure/hackerspace":{"icon":"fas-code","fields":["name","address","building_area_yes","opening_hours","website","fee","payment_multi_fee","charge_fee","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","smoking"],"geometry":["point","area"],"tags":{"leisure":"hackerspace"}},"leisure/golf_course":{"icon":"maki-golf","fields":["name","operator","address","opening_hours"],"moreFields":["{@templates/poi}"],"geometry":["area","point"],"tags":{"leisure":"golf_course"}},"leisure/garden":{"icon":"maki-garden","fields":["name","garden/type","operator","operator/type","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["{@templates/contact}","gnis/feature_id-US"],"geometry":["point","area"],"tags":{"leisure":"garden"}},"leisure/fitness_station":{"icon":"temaki-horizontal_bar","fields":["fitness_station","ref","wheelchair","blind"],"moreFields":["access_simple","opening_hours"],"geometry":["point","area"],"tags":{"leisure":"fitness_station"},"addTags":{"leisure":"fitness_station","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_centre":{"icon":"fas-dumbbell","fields":["name","sport","address","building_area_yes","opening_hours","phone","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","branch_brand","brand","charge_fee","fee"],"geometry":["point","area"],"tags":{"leisure":"fitness_centre"}},"leisure/fishing":{"icon":"fas-fish","fields":["name","access_simple","fishing"],"geometry":["vertex","point","area"],"tags":{"leisure":"fishing"}},"leisure/firepit":{"icon":"temaki-campfire","fields":["access_simple","seasonal","width"],"moreFields":["ref","wood_provided"],"geometry":["point","area"],"tags":{"leisure":"firepit"}},"leisure/escape_game":{"icon":"fas-puzzle-piece","fields":["name","address","building_area_yes","opening_hours","website","fee","payment_multi_fee","charge_fee","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","smoking"],"geometry":["point","area"],"tags":{"leisure":"escape_game"}},"leisure/dog_park":{"icon":"maki-dog-park","fields":["name","operator","operator/type","address","access_simple","website"],"moreFields":["{@templates/contact}","{@templates/internet_access}","dog_yes","gnis/feature_id-US","ref"],"geometry":["area","point"],"tags":{"leisure":"dog_park"}},"leisure/disc_golf_course":{"icon":"temaki-disc_golf_basket","fields":["name","operator","access_simple","fee","payment_multi_fee","charge_fee","opening_hours"],"moreFields":["{@templates/contact}","address","dog","gnis/feature_id-US","lit","wheelchair"],"geometry":["area","point"],"tags":{"leisure":"disc_golf_course"}},"leisure/dance":{"icon":"fas-music","fields":["name","operator","address","building_area_yes","opening_hours","dance/style","dance/teaching"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"leisure":"dance"}},"leisure/common":{"icon":"temaki-pedestrian","fields":["name","access_simple"],"moreFields":["gnis/feature_id-US"],"geometry":["area","point"],"tags":{"leisure":"common"}},"leisure/bowling_alley":{"icon":"temaki-bowling","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","min_age","fhrs/id-GB","smoking"],"geometry":["point","area"],"tags":{"leisure":"bowling_alley"}},"leisure/bleachers":{"icon":"temaki-bleachers","geometry":["area"],"tags":{"leisure":"bleachers"}},"leisure/bird_hide":{"icon":"temaki-binoculars","fields":["name","building_area_yes","address","opening_hours"],"geometry":["point","area"],"tags":{"leisure":"bird_hide"}},"leisure/beach_resort":{"icon":"fas-umbrella-beach","fields":["name","address","opening_hours","fee","payment_multi_fee","charge_fee"],"moreFields":["{@templates/contact}","gnis/feature_id-US","smoking"],"geometry":["point","area"],"tags":{"leisure":"beach_resort"}},"leisure/bathing_place":{"icon":"maki-water","fields":["name","access_simple","informal","shower","toilets","drinking_water_available","picnic_table"],"geometry":["point","area"],"tags":{"leisure":"bathing_place"}},"leisure/bandstand":{"icon":"fas-music","fields":["name","building_area_yes","operator"],"moreFields":["gnis/feature_id-US"],"geometry":["point","area"],"tags":{"leisure":"bandstand"}},"leisure/amusement_arcade":{"icon":"maki-gaming","fields":["name","operator","address","building_area_yes"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","max_age","min_age","smoking"],"geometry":["point","area"],"tags":{"leisure":"amusement_arcade"}},"leisure/adult_gaming_centre":{"icon":"temaki-casino","fields":["{amenity/casino}"],"moreFields":["{amenity/casino}"],"geometry":["point","area"],"tags":{"leisure":"adult_gaming_centre"}},"leisure/track/running":{"icon":"fas-running","fields":["name","surface","sport/sport_racing_nonmotor","lit","width","lanes"],"geometry":["point","line","area"],"tags":{"leisure":"track","sport":"running"},"reference":{"key":"sport","value":"running"}},"leisure/track/horse_racing":{"icon":"maki-racetrack-horse","fields":["name","surface","sport/sport_racing_nonmotor","lit","width","lanes"],"geometry":["point","line","area"],"tags":{"leisure":"track","sport":"horse_racing"},"reference":{"key":"sport","value":"horse_racing"}},"leisure/track/cycling":{"icon":"maki-racetrack-cycling","fields":["name","surface","sport/sport_racing_nonmotor","lit","width","lanes"],"geometry":["point","line","area"],"tags":{"leisure":"track","sport":"cycling"},"reference":{"key":"sport","value":"cycling"}},"leisure/track/athletics":{"icon":"fas-running","fields":["athletics_track","{leisure/track}"],"geometry":["point","line","area"],"tags":{"leisure":"track","sport":"athletics"},"reference":{"key":"sport","value":"athletics"},"searchable":false},"leisure/track/athletics/triple_jump":{"icon":"fas-running","geometry":["point","line","area"],"tags":{"leisure":"track","sport":"athletics","athletics":"triple_jump"},"reference":{"key":"athletics","value":"triple_jump"}},"leisure/track/athletics/steeplechase":{"icon":"fas-running","geometry":["point","line","area"],"tags":{"leisure":"track","sport":"athletics","athletics":"steeplechase"},"reference":{"key":"athletics","value":"steeplechase"}},"leisure/track/athletics/sprint":{"icon":"fas-running","geometry":["point","line","area"],"tags":{"leisure":"track","sport":"athletics","athletics":"sprint"},"reference":{"key":"athletics","value":"sprint"}},"leisure/track/athletics/pole_vault":{"icon":"fas-running","geometry":["point","line","area"],"tags":{"leisure":"track","sport":"athletics","athletics":"pole_vault"},"reference":{"key":"athletics","value":"pole_vault"}},"leisure/track/athletics/long_jump":{"icon":"fas-running","geometry":["point","line","area"],"tags":{"leisure":"track","sport":"athletics","athletics":"long_jump"},"reference":{"key":"athletics","value":"long_jump"}},"leisure/track/athletics/javelin_throw":{"icon":"fas-running","geometry":["point","line","area"],"tags":{"leisure":"track","sport":"athletics","athletics":"javelin_throw"},"reference":{"key":"athletics","value":"javelin_throw"}},"leisure/track/athletics/running":{"icon":"fas-running","geometry":["point","line","area"],"tags":{"leisure":"track","sport":"athletics","athletics":"running"},"reference":{"key":"athletics","value":"running"},"searchable":false},"leisure/sports_centre/swimming":{"icon":"fas-swimmer","geometry":["area","point"],"tags":{"leisure":"sports_centre","sport":"swimming"},"reference":{"key":"sport","value":"swimming"}},"leisure/sports_centre/shooting":{"icon":"fas-crosshairs","geometry":["area","point"],"tags":{"leisure":"sports_centre","sport":"shooting"},"reference":{"key":"sport","value":"shooting"}},"leisure/sports_centre/karting":{"icon":"fas-flag-checkered","geometry":["area","point"],"tags":{"leisure":"sports_centre","sport":"karting"},"reference":{"key":"sport","value":"karting"}},"leisure/sports_centre/horse_racing":{"icon":"maki-racetrack-horse","geometry":["area","point"],"tags":{"leisure":"sports_centre","sport":"horse_racing"},"reference":{"key":"sport","value":"horse_racing"}},"leisure/sports_centre/climbing_adventure":{"icon":"temaki-abseiling","geometry":["point","area"],"fields":["{leisure/sports_centre}"],"tags":{"leisure":"sports_centre","sport":"climbing_adventure"},"reference":{"key":"sport","value":"climbing_adventure"}},"leisure/sports_centre/climbing":{"icon":"temaki-abseiling","geometry":["point","area"],"fields":["{leisure/sports_centre}","building_area_yes"],"tags":{"leisure":"sports_centre","sport":"climbing"},"reference":{"key":"sport","value":"climbing"}},"leisure/playground/indoor":{"icon":"maki-playground","geometry":["area","point"],"tags":{"leisure":"playground","indoor":"yes"}},"leisure/pitch/volleyball":{"icon":"maki-volleyball","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"volleyball"},"reference":{"key":"sport","value":"volleyball"}},"leisure/pitch/tetherball":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"tetherball"},"reference":{"key":"sport","value":"tetherball"}},"leisure/pitch/tennis":{"icon":"maki-tennis","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"tennis"},"reference":{"key":"sport","value":"tennis"}},"leisure/pitch/table_tennis":{"icon":"fas-table-tennis","fields":["name","lit","access_simple"],"geometry":["area","point"],"tags":{"leisure":"pitch","sport":"table_tennis"},"reference":{"key":"sport","value":"table_tennis"}},"leisure/pitch/table_soccer":{"fields":["name","lit","access_simple"],"geometry":["area","point"],"tags":{"leisure":"pitch","sport":"table_soccer"},"reference":{"key":"sport","value":"table_soccer"}},"leisure/pitch/softball":{"icon":"maki-baseball","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"softball"},"reference":{"key":"sport","value":"softball"}},"leisure/pitch/soccer":{"icon":"maki-soccer","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"soccer"},"reference":{"key":"sport","value":"soccer"}},"leisure/pitch/skateboard":{"icon":"maki-skateboard","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"skateboard"},"reference":{"key":"sport","value":"skateboard"}},"leisure/pitch/shuffleboard":{"icon":"temaki-shuffleboard","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"shuffleboard"},"reference":{"key":"sport","value":"shuffleboard"}},"leisure/pitch/shooting":{"icon":"fas-crosshairs","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"shooting"},"reference":{"key":"sport","value":"shooting"}},"leisure/pitch/rugby_union":{"icon":"maki-american-football","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"rugby_union"},"reference":{"key":"sport","value":"rugby_union"}},"leisure/pitch/rugby_league":{"icon":"maki-american-football","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"rugby_league"},"reference":{"key":"sport","value":"rugby_league"}},"leisure/pitch/pickleball":{"icon":"maki-tennis","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"pickleball"},"reference":{"key":"sport","value":"pickleball"}},"leisure/pitch/paintball":{"icon":"fas-crosshairs","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"paintball"},"reference":{"key":"sport","value":"paintball"}},"leisure/pitch/padel":{"icon":"maki-tennis","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"padel"},"reference":{"key":"sport","value":"padel"}},"leisure/pitch/netball":{"icon":"maki-volleyball","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"netball"},"reference":{"key":"sport","value":"netball"}},"leisure/pitch/horseshoes":{"icon":"temaki-horseshoes","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"horseshoes"},"reference":{"key":"sport","value":"horseshoes"}},"leisure/pitch/handball":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"handball"},"reference":{"key":"sport","value":"handball"}},"leisure/pitch/gaga":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"gaga"},"reference":{"key":"sport","value":"gaga"}},"leisure/pitch/futsal":{"icon":"maki-soccer","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"futsal"},"reference":{"key":"sport","value":"futsal"}},"leisure/pitch/funnel_ball":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"funnel_ball"},"reference":{"key":"sport","value":"funnel_ball"}},"leisure/pitch/four_square":{"icon":"fas-border-all","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"four_square"},"reference":{"key":"sport","value":"four_square"}},"leisure/pitch/field_hockey":{"icon":"temaki-field_hockey","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"field_hockey"},"reference":{"key":"sport","value":"field_hockey"}},"leisure/pitch/equestrian":{"icon":"maki-horse-riding","fields":["{leisure/pitch}"],"geometry":["area","point"],"tags":{"leisure":"pitch","sport":"equestrian"},"reference":{"key":"sport","value":"equestrian"}},"leisure/pitch/cricket":{"icon":"maki-cricket","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"cricket"},"reference":{"key":"sport","value":"cricket"}},"leisure/pitch/chess":{"icon":"fas-chess-bishop","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"chess"},"reference":{"key":"sport","value":"chess"}},"leisure/pitch/bowls":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"bowls"},"reference":{"key":"sport","value":"bowls"}},"leisure/pitch/boules":{"icon":"maki-pitch","fields":["name","boules","{leisure/pitch}"],"geometry":["area","point"],"tags":{"leisure":"pitch","sport":"boules"},"reference":{"key":"sport","value":"boules"}},"leisure/pitch/beachvolleyball":{"icon":"maki-volleyball","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"beachvolleyball"},"addTags":{"leisure":"pitch","sport":"beachvolleyball","surface":"sand"},"reference":{"key":"sport","value":"beachvolleyball"}},"leisure/pitch/basketball":{"icon":"maki-basketball","fields":["{leisure/pitch}","hoops"],"geometry":["area","point"],"tags":{"leisure":"pitch","sport":"basketball"},"reference":{"key":"sport","value":"basketball"}},"leisure/pitch/baseball":{"icon":"maki-baseball","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"baseball"},"reference":{"key":"sport","value":"baseball"}},"leisure/pitch/badminton":{"icon":"maki-tennis","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"badminton"},"reference":{"key":"sport","value":"badminton"}},"leisure/pitch/australian_football":{"icon":"maki-american-football","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"australian_football"},"reference":{"key":"sport","value":"australian_football"}},"leisure/pitch/archery":{"icon":"temaki-archery","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"archery"},"reference":{"key":"sport","value":"archery"}},"leisure/pitch/american_handball":{"icon":"temaki-wall","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"american_handball"},"reference":{"key":"sport","value":"american_handball"}},"leisure/pitch/american_football":{"icon":"maki-american-football","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"american_football"},"reference":{"key":"sport","value":"american_football"}},"leisure/pitch/athletics":{"icon":"maki-pitch","geometry":["area","point"],"fields":["athletics_pitch","access_simple","surface","lit"],"moreFields":["{leisure/pitch}","ref"],"tags":{"leisure":"pitch","sport":"athletics"},"reference":{"key":"sport","value":"athletics"},"searchable":false},"leisure/pitch/athletics/triple_jump":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"athletics","athletics":"triple_jump"},"reference":{"key":"athletics","value":"triple_jump"}},"leisure/pitch/athletics/shot_put":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"athletics","athletics":"shot_put"},"reference":{"key":"athletics","value":"shot_put"}},"leisure/pitch/athletics/pole_vault":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"athletics","athletics":"pole_vault"},"reference":{"key":"athletics","value":"pole_vault"}},"leisure/pitch/athletics/long_jump":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"athletics","athletics":"long_jump"},"reference":{"key":"athletics","value":"long_jump"}},"leisure/pitch/athletics/javelin_throw":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"athletics","athletics":"javelin_throw"},"reference":{"key":"athletics","value":"javelin_throw"}},"leisure/pitch/athletics/high_jump":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"athletics","athletics":"high_jump"},"reference":{"key":"athletics","value":"high_jump"}},"leisure/pitch/athletics/hammer_throw":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"athletics","athletics":"hammer_throw"},"reference":{"key":"athletics","value":"hammer_throw"}},"leisure/pitch/athletics/discus_throw":{"icon":"maki-pitch","geometry":["area","point"],"tags":{"leisure":"pitch","sport":"athletics","athletics":"discus_throw"},"reference":{"key":"athletics","value":"discus_throw"}},"leisure/picnic_table/chess":{"icon":"fas-chess-pawn","geometry":["point"],"tags":{"leisure":"picnic_table","sport":"chess"},"reference":{"key":"sport","value":"chess"}},"leisure/garden/residential":{"icon":"maki-garden","geometry":["area"],"tags":{"leisure":"garden","garden:type":"residential"},"reference":{"key":"garden:type"}},"leisure/garden/kitchen":{"icon":"fas-carrot","geometry":["area"],"fields":["name","garden/type","operator","operator/type"],"moreFields":["{@templates/contact}","access_simple","charge_fee","fee","gnis/feature_id-US","payment_multi_fee"],"tags":{"leisure":"garden","garden:style":"kitchen"},"reference":{"key":"garden:style"}},"leisure/garden/community":{"icon":"maki-garden","geometry":["point","area"],"tags":{"leisure":"garden","garden:type":"community"},"reference":{"key":"garden:type","value":"community"}},"leisure/garden/botanical":{"icon":"maki-garden","geometry":["point","area"],"tags":{"leisure":"garden","garden:type":"botanical"},"reference":{"key":"garden:type","value":"botanical"}},"leisure/fitness_station/stairs":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"stairs"},"addTags":{"leisure":"fitness_station","fitness_station":"stairs","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/sit-up":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"sit-up"},"addTags":{"leisure":"fitness_station","fitness_station":"sit-up","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/sign":{"icon":"roentgen-i_in_square","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"sign"},"addTags":{"leisure":"fitness_station","fitness_station":"sign","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/rings":{"icon":"roentgen-rings","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"rings"},"addTags":{"leisure":"fitness_station","fitness_station":"rings","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/push-up":{"icon":"roentgen-bench","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"push-up"},"addTags":{"leisure":"fitness_station","fitness_station":"push-up","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/parallel_bars":{"icon":"temaki-horizontal_bar","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"parallel_bars"},"addTags":{"leisure":"fitness_station","fitness_station":"parallel_bars","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/hyperextension":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"hyperextension"},"addTags":{"leisure":"fitness_station","fitness_station":"hyperextension","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/horizontal_ladder":{"icon":"roentgen-horizontal_ladder","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"horizontal_ladder"},"addTags":{"leisure":"fitness_station","fitness_station":"horizontal_ladder","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/horizontal_bar":{"icon":"temaki-horizontal_bar","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"horizontal_bar"},"addTags":{"leisure":"fitness_station","fitness_station":"horizontal_bar","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/box":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"box"},"addTags":{"leisure":"fitness_station","fitness_station":"box","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_station/balance_beam":{"icon":"temaki-balance_beam","geometry":["point","area"],"tags":{"leisure":"fitness_station","fitness_station":"balance_beam"},"addTags":{"leisure":"fitness_station","fitness_station":"balance_beam","sport":"fitness"},"reference":{"key":"leisure","value":"fitness_station"}},"leisure/fitness_centre/yoga":{"icon":"maki-pitch","geometry":["point","area"],"tags":{"leisure":"fitness_centre","sport":"yoga"},"reference":{"key":"sport","value":"yoga"}},"landuse/winter_sports":{"icon":"fas-skiing","geometry":["area"],"fields":["name","operator"],"moreFields":["access_simple","address","opening_hours"],"tags":{"landuse":"winter_sports"}},"landuse/vineyard":{"icon":"temaki-grapes","fields":["name","operator","grape_variety"],"moreFields":["{@templates/contact}","address"],"geometry":["area"],"tags":{"landuse":"vineyard"},"addTags":{"landuse":"vineyard","crop":"grape"},"removeTags":{"landuse":"vineyard","crop":"grape","grape_variety":"*"}},"landuse/salt_pond":{"icon":"maki-triangle-stroked","fields":["name","operator"],"geometry":["area"],"tags":{"landuse":"salt_pond"}},"landuse/retail":{"icon":"maki-commercial","geometry":["area"],"fields":["name"],"moreFields":["{@templates/contact}","address"],"tags":{"landuse":"retail"},"matchScore":0.9},"landuse/residential":{"icon":"maki-residential-community","fields":["name","residential"],"geometry":["area"],"tags":{"landuse":"residential"},"matchScore":0.9},"landuse/religious":{"icon":"maki-place-of-worship","geometry":["area"],"fields":["name","religion","denomination"],"moreFields":["{@templates/contact}","address"],"tags":{"landuse":"religious"}},"landuse/recreation_ground":{"icon":"maki-pitch","geometry":["area"],"fields":["name"],"moreFields":["{@templates/contact}","address"],"tags":{"landuse":"recreation_ground"}},"landuse/railway":{"icon":"temaki-train","fields":["operator"],"geometry":["area"],"tags":{"landuse":"railway"}},"landuse/quarry":{"icon":"temaki-pick_hammer","geometry":["area","point"],"fields":["name","operator","resource"],"moreFields":["{@templates/contact}","address"],"tags":{"landuse":"quarry"}},"landuse/plant_nursery":{"icon":"fas-seedling","fields":["name","operator","plant"],"moreFields":["{@templates/contact}","address"],"geometry":["area"],"tags":{"landuse":"plant_nursery"}},"landuse/orchard":{"icon":"maki-park","fields":["name","operator","trees"],"moreFields":["{@templates/contact}","address","species/wikidata"],"geometry":["area"],"tags":{"landuse":"orchard"}},"landuse/military":{"icon":"temaki-military","fields":["name"],"moreFields":["{@templates/contact}","address"],"geometry":["area"],"tags":{"landuse":"military"},"matchScore":0.9},"landuse/meadow":{"icon":"maki-garden","geometry":["area"],"fields":["name"],"tags":{"landuse":"meadow"}},"landuse/landfill":{"icon":"temaki-bulldozer","geometry":["area"],"fields":["name","operator"],"moreFields":["{@templates/contact}","address"],"tags":{"landuse":"landfill"}},"landuse/industrial":{"icon":"maki-industry","fields":["name","industrial"],"moreFields":["{@templates/contact}","address","operator"],"geometry":["area"],"tags":{"landuse":"industrial"},"matchScore":0.9},"landuse/harbour":{"icon":"maki-harbor","fields":["name","operator"],"moreFields":["{@templates/contact}","address"],"geometry":["area"],"tags":{"landuse":"harbour"}},"landuse/greenhouse_horticulture":{"icon":"maki-garden","fields":["name","operator"],"moreFields":["{@templates/contact}","address"],"geometry":["area"],"tags":{"landuse":"greenhouse_horticulture"},"matchScore":0.9},"landuse/greenfield":{"icon":"temaki-bulldozer","geometry":["area"],"fields":["name"],"tags":{"landuse":"greenfield"},"matchScore":0.9},"landuse/grass":{"icon":"temaki-lawn","geometry":["area"],"tags":{"landuse":"grass"}},"landuse/garages":{"icon":"fas-warehouse","geometry":["area"],"fields":["name"],"moreFields":["{@templates/contact}","address"],"tags":{"landuse":"garages"}},"landuse/forest":{"icon":"maki-park-alt1","fields":["name","leaf_type","leaf_cycle","produce"],"moreFields":["{@templates/contact}","address"],"geometry":["area"],"tags":{"landuse":"forest"}},"landuse/flowerbed":{"icon":"maki-garden","fields":["operator"],"moreFields":["address"],"geometry":["area"],"tags":{"landuse":"flowerbed"}},"landuse/farmyard":{"icon":"maki-farm","fields":["name","operator"],"moreFields":["{@templates/contact}","address"],"geometry":["area"],"tags":{"landuse":"farmyard"}},"landuse/farmland":{"icon":"fas-tractor","fields":["name","operator","crop","produce"],"moreFields":["{@templates/contact}","address","irrigation_pivot"],"geometry":["area"],"tags":{"landuse":"farmland"}},"landuse/education":{"icon":"temaki-school","fields":["name","operator"],"geometry":["area"],"tags":{"landuse":"education"},"matchScore":0.9},"landuse/construction":{"icon":"temaki-bulldozer","fields":["name","construction","operator","opening_date","check_date","note"],"moreFields":["{@templates/contact}","address"],"geometry":["area"],"tags":{"landuse":"construction"},"removeTags":{"landuse":"construction","construction":"*"}},"landuse/commercial":{"icon":"maki-suitcase","fields":["name"],"moreFields":["{@templates/contact}","address"],"geometry":["area"],"tags":{"landuse":"commercial"},"matchScore":0.9},"landuse/cemetery":{"icon":"maki-cemetery","fields":["name","religion","denomination"],"moreFields":["{@templates/contact}","address"],"geometry":["area","point"],"tags":{"landuse":"cemetery"}},"landuse/brownfield":{"icon":"temaki-bulldozer","geometry":["area"],"fields":["name"],"tags":{"landuse":"brownfield"},"matchScore":0.9},"landuse/aquaculture":{"icon":"maki-aquarium","fields":["name","operator","produce"],"moreFields":["{@templates/contact}","address"],"geometry":["point","area"],"tags":{"landuse":"aquaculture"}},"landuse/allotments":{"icon":"maki-garden-centre","geometry":["area"],"fields":["name","operator","plots"],"moreFields":["{@templates/contact}","address"],"tags":{"landuse":"allotments"}},"landuse/reservoir":{"icon":"maki-water","fields":["name","intermittent"],"geometry":["area"],"tags":{"landuse":"reservoir"},"searchable":false},"landuse/pond":{"icon":"maki-water","fields":["name","intermittent"],"geometry":["area"],"tags":{"landuse":"pond"},"searchable":false},"landuse/farm":{"icon":"maki-farm","fields":["name","operator","crop"],"geometry":["point","area"],"tags":{"landuse":"farm"},"searchable":false},"landuse/churchyard":{"icon":"maki-religious-christian","fields":["{landuse/religious}"],"moreFields":["{landuse/religious}"],"geometry":["area"],"tags":{"landuse":"churchyard"},"searchable":false},"landuse/basin":{"icon":"maki-water","fields":["name","basin","intermittent_yes"],"geometry":["area"],"tags":{"landuse":"basin"},"searchable":false},"landuse/residential/trailer_park":{"icon":"temaki-manufactured_home","fields":["name","operator","address"],"geometry":["point","area"],"tags":{"residential":"trailer_park"},"addTags":{"landuse":"residential","residential":"trailer_park"},"reference":{"key":"residential","value":"trailer_park"}},"landuse/residential/apartments":{"icon":"maki-residential-community","fields":["name","operator","address"],"geometry":["point","area"],"tags":{"residential":"apartments"},"addTags":{"landuse":"residential","residential":"apartments"},"reference":{"key":"residential","value":"apartments"}},"landuse/military/training_area":{"icon":"temaki-military","fields":["name"],"geometry":["point","area"],"tags":{"military":"training_area"},"addTags":{"landuse":"military","military":"training_area"}},"landuse/military/range":{"icon":"fas-bullseye","fields":["name"],"geometry":["point","area"],"tags":{"military":"range"},"addTags":{"landuse":"military","military":"range"}},"landuse/military/obstacle_course":{"icon":"temaki-tire_course","geometry":["point","area"],"tags":{"military":"obstacle_course"},"addTags":{"landuse":"military","military":"obstacle_course"}},"landuse/military/danger_area":{"icon":"maki-danger","fields":["name"],"geometry":["area"],"tags":{"military":"danger_area"},"addTags":{"landuse":"military","military":"danger_area"}},"landuse/military/base":{"icon":"temaki-anchor_medal","fields":["name","military_service"],"geometry":["point","area"],"tags":{"military":"base"},"addTags":{"landuse":"military","military":"base"}},"landuse/military/barracks":{"icon":"temaki-army_tent","fields":["name","building_area"],"geometry":["point","area"],"tags":{"military":"barracks"}},"landuse/military/airfield":{"icon":"temaki-fighter_jet","fields":["name","iata","icao"],"geometry":["point","area"],"tags":{"military":"airfield"},"addTags":{"aeroway":"aerodrome","landuse":"military","military":"airfield"},"reference":{"key":"military","value":"airfield"}},"landuse/military/danger_area_point":{"icon":"maki-danger","fields":["{landuse/military/danger_area}"],"geometry":["point","vertex"],"tags":{"military":"danger_area"},"addTags":{"landuse":"military","military":"danger_area"},"searchable":false,"name":"{landuse/military/danger_area}"},"landuse/military/base/navy":{"icon":"temaki-anchor_medal","fields":["name"],"geometry":["point","area"],"tags":{"military":"base","military_service":"navy"},"addTags":{"landuse":"military","military":"base","military_service":"navy"}},"landuse/meadow_orchard/orchard":{"icon":"maki-park","fields":["name","operator","trees"],"moreFields":["{@templates/contact}","address","species/wikidata","surface","description"],"geometry":["area"],"tags":{"landuse":"orchard","orchard":"meadow_orchard"},"reference":{"key":"orchard","value":"meadow_orchard"},"matchScore":0.9,"locationSet":{"include":["Q46"]}},"landuse/meadow_orchard/meadow":{"icon":"maki-park","fields":["name","operator","trees"],"moreFields":["{@templates/contact}","address","species/wikidata","surface","description"],"geometry":["area"],"tags":{"landuse":"meadow","meadow":"meadow_orchard"},"reference":{"key":"meadow","value":"meadow_orchard"},"matchScore":0.9,"locationSet":{"include":["Q46"]}},"landuse/industrial/slaughterhouse":{"icon":"maki-slaughterhouse","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{landuse/industrial}"],"geometry":["point","area"],"tags":{"industrial":"slaughterhouse"},"addTags":{"landuse":"industrial","industrial":"slaughterhouse"},"reference":{"key":"industrial","value":"slaughterhouse"}},"landuse/industrial/scrap_yard":{"icon":"temaki-junk_car","fields":["name","operator","address","opening_hours"],"moreFields":["{landuse/industrial}"],"geometry":["point","area"],"tags":{"industrial":"scrap_yard"},"addTags":{"landuse":"industrial","industrial":"scrap_yard"},"reference":{"key":"industrial","value":"scrap_yard"}},"landuse/industrial/depot":{"icon":"roentgen-buses","fields":["name","operator","depot"],"moreFields":["{landuse/industrial}"],"geometry":["point","area"],"tags":{"industrial":"depot"},"addTags":{"landuse":"industrial","industrial":"depot"},"reference":{"key":"industrial","value":"depot"}},"landuse/industrial/industrial_point":{"icon":"maki-industry","fields":["{landuse/industrial}"],"moreFields":["{landuse/industrial}"],"geometry":["point"],"tags":{"landuse":"industrial"},"searchable":false,"name":"{landuse/industrial}"},"landuse/industrial/brewery":{"icon":"temaki-storage_fermenter","fields":["{man_made/works/brewery}","product"],"moreFields":["{man_made/works/brewery}"],"geometry":["point","area"],"tags":{"industrial":"brewery"},"addTags":{"landuse":"industrial"},"reference":{"key":"industrial","value":"brewery"},"searchable":false,"matchScore":0.9,"name":"{man_made/works/brewery}"},"landuse/aquaculture/fish":{"icon":"fas-fish","fields":["{landuse/aquaculture}"],"moreFields":["{landuse/aquaculture}"],"geometry":["point","area"],"tags":{"landuse":"aquaculture","produce":"fish"}},"internet_access/wlan":{"icon":"fas-wifi","geometry":["point","area"],"fields":["internet_access/ssid","internet_access/fee"],"moreFields":["level"],"tags":{"internet_access":"wlan"},"matchScore":0.25},"indoor/wall":{"icon":"temaki-wall","fields":["level","height"],"geometry":["line"],"tags":{"indoor":"wall"}},"indoor/stairs":{"icon":"iD-highway-steps","fields":["ref","level_semi","conveying_escalator"],"geometry":["area"],"tags":{"indoor":"room","stairs":"yes"},"matchScore":0.8},"indoor/room":{"icon":"temaki-room","fields":["level","name","ref_room_number","room","height"],"geometry":["area"],"tags":{"indoor":"room"},"matchScore":0.8},"indoor/elevator":{"icon":"temaki-elevator","fields":["ref","level_semi"],"geometry":["area"],"tags":{"indoor":"room","elevator":"yes"},"matchScore":0.8},"indoor/door":{"icon":"maki-entrance-alt1","fields":["level","ref","door_type","access_simple","width","height"],"moreFields":["wheelchair"],"geometry":["vertex"],"tags":{"indoor":"door"},"addTags":{"indoor":"door","door":"yes"},"removeTags":{"indoor":"door","door":"*"}},"indoor/corridor":{"icon":"temaki-pedestrian","fields":["level","name","ref","height"],"geometry":["area"],"tags":{"indoor":"corridor"},"matchScore":0.8},"indoor/area":{"icon":"temaki-room","fields":["level","name","ref_room_number","height"],"geometry":["area"],"tags":{"indoor":"area"},"matchScore":0.8},"indoor/corridor_line":{"fields":["level","name"],"geometry":["line"],"tags":{"indoor":"corridor"},"searchable":false,"matchScore":1.1,"replacement":"highway/corridor"},"historic/wreck":{"icon":"temaki-ruins","fields":["name","access_simple","seamark/wreck/category","historic/wreck/date_sunk","historic/wreck/visible_at_low_tide","historic/wreck/visible_at_high_tide"],"moreFields":["{historic}","seamark/type"],"geometry":["point","area"],"tags":{"historic":"wreck"},"addTags":{"historic":"wreck","seamark:type":"wreck"}},"historic/wayside_shrine":{"icon":"maki-landmark","fields":["name","religion","denomination","inscription","access_simple"],"geometry":["point","vertex","area"],"tags":{"historic":"wayside_shrine"}},"historic/wayside_cross":{"icon":"maki-religious-christian","fields":["name","inscription","material"],"moreFields":["{historic}","religion","denomination"],"geometry":["point","vertex","area"],"tags":{"historic":"wayside_cross"}},"historic/tomb":{"icon":"maki-cemetery","fields":["name","tomb","building_area_yes","inscription","access_simple"],"geometry":["point","area"],"tags":{"historic":"tomb"}},"historic/ruins":{"icon":"temaki-ruins","fields":["name","ruins","historic/civilization","inscription","access_simple"],"geometry":["point","vertex","line","area"],"tags":{"historic":"ruins"}},"historic/pillory":{"icon":"maki-monument","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"tags":{"historic":"pillory"}},"historic/monument":{"icon":"maki-monument","fields":["name","inscription","access_simple"],"moreFields":["{historic}","material"],"geometry":["point","vertex","area"],"tags":{"historic":"monument"}},"historic/memorial":{"icon":"maki-monument","fields":["name","memorial","inscription","material"],"moreFields":["{historic}","subject/wikidata"],"geometry":["point","vertex","area"],"tags":{"historic":"memorial"}},"historic/manor":{"icon":"maki-castle","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"tags":{"historic":"manor"}},"historic/fort":{"icon":"maki-castle","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"tags":{"historic":"fort"}},"historic/city_gate":{"icon":"maki-castle","fields":["name","building_area_yes","historic/civilization","start_date"],"geometry":["point","area"],"tags":{"historic":"city_gate"}},"historic/castle":{"icon":"roentgen-fort","fields":["name","castle_type","building_area_yes","historic/civilization","access_simple","start_date"],"geometry":["point","area"],"tags":{"historic":"castle"}},"historic/cannon":{"icon":"roentgen-cannon","fields":["name","start_date","direction"],"moreFields":["description","wikipedia","wikidata","ref"],"geometry":["point"],"tags":{"historic":"cannon"}},"historic/building":{"icon":"maki-home","fields":["{building}","start_date"],"moreFields":["{building}","access_simple"],"geometry":["area"],"tags":{"historic":"building","building":"*"},"reference":{"key":"historic","value":"building"},"matchScore":0.5},"historic/boundary_stone":{"icon":"temaki-milestone","fields":["name","inscription"],"moreFields":["{historic}","material"],"geometry":["point","vertex"],"tags":{"historic":"boundary_stone"}},"historic/archaeological_site":{"icon":"temaki-ruins","fields":["name","archaeological_site","fortification_type","historic/civilization","inscription","access_simple"],"geometry":["point","vertex","area"],"tags":{"historic":"archaeological_site"}},"historic/aircraft":{"icon":"roentgen-plane","fields":["name","start_date","aircraft/type","model"],"moreFields":["ref","model/wikidata","manufacturer","manufacturer/wikidata","description"],"geometry":["point","area"],"tags":{"historic":"aircraft"}},"historic/memorial/stolperstein-EU":{"icon":"temaki-plaque","fields":["name","inscription","wikidata"],"moreFields":["memorial/addr","memorial/addr_subtags","subject/wikidata","image","wikimedia_commons","website"],"geometry":["point","vertex"],"tags":{"historic":"memorial","memorial":"stolperstein"},"locationSet":{"include":["Q46"]}},"historic/memorial/plaque":{"icon":"temaki-plaque","fields":["{historic/memorial}","direction"],"geometry":["point","vertex"],"tags":{"historic":"memorial","memorial":"plaque"},"reference":{"key":"memorial","value":"plaque"}},"historic/memorial/blue_plaque-GB-IE":{"icon":"temaki-plaque","fields":["name","inscription","subject/wikidata"],"moreFields":["direction","image","wikimedia_commons"],"geometry":["point","vertex"],"tags":{"memorial":"blue_plaque"},"addTags":{"historic":"memorial","memorial":"blue_plaque"},"locationSet":{"include":["gb","ie"]}},"historic/castle/stately":{"icon":"fas-crown","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"reference":{"key":"castle_type","value":"stately"},"tags":{"historic":"castle","castle_type":"stately"}},"historic/castle/palace":{"icon":"fas-crown","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"reference":{"key":"castle_type","value":"palace"},"tags":{"historic":"castle","castle_type":"palace"}},"historic/castle/fortress":{"icon":"maki-castle","fields":["name","building_area_yes","access_simple","start_date"],"geometry":["point","area"],"reference":{"key":"castle_type","value":"fortress"},"tags":{"historic":"castle","castle_type":"fortress"}},"highway/unclassified":{"icon":"iD-highway-unclassified","fields":["{highway/residential}"],"moreFields":["{highway/residential}"],"geometry":["line"],"tags":{"highway":"unclassified"}},"highway/turning_loop":{"icon":"roentgen-turning_loop","geometry":["vertex"],"tags":{"highway":"turning_loop"}},"highway/turning_circle":{"icon":"maki-circle","geometry":["vertex"],"fields":["turning_circle"],"tags":{"highway":"turning_circle"}},"highway/trunk_link":{"icon":"iD-highway-trunk-link","fields":["{highway/motorway_link}"],"moreFields":["{highway/motorway_link}"],"geometry":["line"],"tags":{"highway":"trunk_link"},"locationSet":{"exclude":["ca","us"]}},"highway/trunk_link-US-CA":{"name":"{highway/trunk_link}","icon":"iD-highway-trunk-link","fields":["{highway/motorway_link-US-CA}"],"moreFields":["{highway/motorway_link-US-CA}"],"geometry":["line"],"tags":{"highway":"trunk_link"},"locationSet":{"include":["ca","us"]}},"highway/trunk":{"icon":"iD-highway-trunk","fields":["name","ref_road_number","oneway","maxspeed","lanes","expressway-US","surface","structure","access"],"moreFields":["bridge/ref","charge_toll","covered_no","incline","junction_line","lit","maxaxleload_bridge","maxheight","maxlength","maxspeed/advisory","maxspeed/hgv","maxweight_bridge","maxwidth","minspeed","not/name","smoothness","toll","width"],"geometry":["line"],"tags":{"highway":"trunk"}},"highway/trailhead":{"icon":"fas-hiking","fields":["name","operator","ele_node","address","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["gnis/feature_id-US","opening_hours"],"geometry":["vertex"],"tags":{"highway":"trailhead"}},"highway/traffic_signals":{"icon":"temaki-traffic_signals","geometry":["vertex"],"tags":{"highway":"traffic_signals"},"fields":["traffic_signals","traffic_signals/direction"],"moreFields":["traffic_signals/countdown"]},"highway/traffic_mirror":{"icon":"maki-circle-stroked","geometry":["point","vertex"],"fields":["direction"],"tags":{"highway":"traffic_mirror"}},"highway/track":{"icon":"fas-truck-monster","fields":["name","tracktype","surface","width","structure","access","incline","smoothness"],"moreFields":["bridge/ref","covered_no","flood_prone","horse_scale","maxweight_bridge","mtb/scale","mtb/scale/imba","mtb/scale/uphill","oneway","stroller","wheelchair"],"geometry":["line"],"tags":{"highway":"track"}},"highway/toll_gantry":{"locationSet":{"exclude":["de"]},"icon":"temaki-toll_gantry","fields":["ref","operator","access","maxheight","opening_hours","payment_multi"],"geometry":["vertex"],"tags":{"highway":"toll_gantry"}},"highway/tertiary_link":{"icon":"iD-highway-tertiary-link","fields":["{highway/primary_link}"],"moreFields":["{highway/primary_link}"],"geometry":["line"],"tags":{"highway":"tertiary_link"}},"highway/tertiary":{"icon":"iD-highway-tertiary","fields":["{highway/primary}"],"moreFields":["{highway/primary}","bicycle_road","cyclestreet-BE-NL"],"geometry":["line"],"tags":{"highway":"tertiary"}},"highway/street_lamp":{"icon":"temaki-street_lamp_arm","geometry":["point","vertex"],"tags":{"highway":"street_lamp"},"fields":["lamp_type","support","lamp_mount","direction","height","operator","ref"]},"highway/stop":{"icon":"temaki-stop","fields":["stop","direction_vertex"],"geometry":["vertex"],"tags":{"highway":"stop"}},"highway/steps":{"icon":"iD-highway-steps","fields":["name","incline_steps","access_simple","handrail","step_count","tactile_paving","surface","width","structure"],"moreFields":["covered_no","dog","indoor","level_semi","lit","oneway","ref","ramp","stroller","wheelchair"],"geometry":["line"],"tags":{"highway":"steps"}},"highway/speed_display":{"icon":"maki-square-stroked","geometry":["point","vertex"],"fields":["direction_point","direction_vertex","maxspeed"],"moreFields":["maxspeed/advisory"],"tags":{"highway":"speed_display"}},"highway/speed_camera":{"icon":"temaki-security_camera","geometry":["point","vertex"],"fields":["direction","ref","maxspeed"],"tags":{"highway":"speed_camera"}},"highway/services":{"icon":"maki-car","fields":["{highway/rest_area}"],"moreFields":["{highway/rest_area}"],"geometry":["point","vertex","area"],"tags":{"highway":"services"}},"highway/service_area":{"icon":"iD-highway-service","fields":["name","service","maxspeed","surface","structure","access"],"moreFields":["bridge/ref","covered_no","flood_prone","lit","maxheight","maxspeed/advisory","maxweight_bridge","smoothness","trolley_wire"],"geometry":["area"],"tags":{"highway":"service"},"searchable":false},"highway/service":{"icon":"iD-highway-service","fields":["name","service","oneway","maxspeed","surface","structure","access"],"moreFields":["bridge/ref","covered_no","flood_prone","incline","lanes","lit","maxaxleload_bridge","maxheight","maxlength","maxspeed/advisory","maxweight_bridge","maxwidth","oneway/bicycle","parking/side/parking","parking/side/orientation","smoothness","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"service"},"matchScore":0.9},"highway/secondary_link":{"icon":"iD-highway-secondary-link","fields":["{highway/primary_link}"],"moreFields":["{highway/primary_link}"],"geometry":["line"],"tags":{"highway":"secondary_link"}},"highway/secondary":{"icon":"iD-highway-secondary","fields":["{highway/primary}"],"moreFields":["{highway/primary}"],"geometry":["line"],"tags":{"highway":"secondary"}},"highway/road":{"icon":"iD-other-line","fields":["highway","{highway/residential}"],"moreFields":["{highway/residential}"],"geometry":["line"],"tags":{"highway":"road"}},"highway/rest_area":{"icon":"maki-highway-rest-area","fields":["name","operator","opening_hours"],"moreFields":["{@templates/contact}","{@templates/internet_access}","address","bin","caravans","drinking_water_available","picnic_table","toilets","wheelchair"],"geometry":["point","vertex","area"],"tags":{"highway":"rest_area"}},"highway/residential":{"icon":"iD-highway-residential","fields":["name","oneway","maxspeed","lanes","surface","structure","access"],"moreFields":["bridge/ref","covered_no","cycleway","bicycle_road","cyclestreet-BE-NL","flood_prone","incline","junction_line","lane_markings","lit","maxaxleload_bridge","maxheight","maxlength","maxspeed/advisory","maxweight","maxwidth","not/name","oneway/bicycle","parking/side/parking","parking/side/orientation","smoothness","traffic_calming_road","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"residential"}},"highway/raceway":{"icon":"temaki-speedway_oval","fields":["name","oneway","surface","sport/sport_racing_motor","lit","width","lanes","structure"],"geometry":["line","area"],"tags":{"highway":"raceway"},"addTags":{"highway":"raceway","sport":"motor"}},"highway/primary_link":{"icon":"iD-highway-primary-link","fields":["destination_oneway","destination/ref_oneway","oneway","maxspeed","lanes","surface","structure","access"],"moreFields":["bridge/ref","charge_toll","covered_no","cycleway","destination/symbol_oneway","flood_prone","incline","junction_line","junction/ref_oneway","lit","maxaxleload_bridge","maxheight","maxlength","maxspeed/advisory","maxweight_bridge","maxwidth","oneway/bicycle","parking/side/parking","parking/side/orientation","ref_road_number","smoothness","toll","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"primary_link"},"locationSet":{"exclude":["ca","us"]}},"highway/primary_link-US-CA":{"name":"{highway/primary_link}","icon":"iD-highway-primary-link","fields":["destination_oneway","destination/ref_oneway","oneway","maxspeed/advisory","lanes","surface","structure","access"],"moreFields":["bridge/ref","charge_toll","covered_no","cycleway","destination/symbol_oneway","flood_prone","incline","junction_line","junction/ref_oneway","lit","maxaxleload_bridge","maxheight","maxlength","maxspeed","maxweight_bridge","maxwidth","oneway/bicycle","ref_road_number","smoothness","toll","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"primary_link"},"locationSet":{"include":["ca","us"]}},"highway/primary":{"icon":"iD-highway-primary","fields":["name","oneway","maxspeed","lanes","surface","structure","ref_road_number","access"],"moreFields":["bridge/ref","charge_toll","covered_no","cycleway","expressway-US","flood_prone","incline","junction_line","lane_markings","lit","maxaxleload_bridge","maxheight","maxlength","maxspeed/advisory","maxspeed/hgv","maxweight_bridge","maxwidth","not/name","oneway/bicycle","parking/side/parking","parking/side/orientation","smoothness","toll","traffic_calming_road","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"primary"}},"highway/pedestrian_line":{"icon":"temaki-pedestrian","fields":["name","surface","lit","width","oneway","structure","access"],"moreFields":["bridge/ref","covered_no","incline","maxweight_bridge","smoothness"],"geometry":["line"],"tags":{"highway":"pedestrian"}},"highway/pedestrian_area":{"icon":"temaki-pedestrian","fields":["name","surface","lit","width","structure","access"],"moreFields":["bridge/ref"],"geometry":["area"],"tags":{"highway":"pedestrian"}},"highway/path":{"icon":"iD-other-line","fields":["name","surface","width","structure","access","incline"],"moreFields":["bridge/ref","covered_no","dog","gnis/feature_id-US","horse_scale","informal","lit","maxweight_bridge","mtb/scale","mtb/scale/imba","mtb/scale/uphill","not/name","oneway","ref","sac_scale","smoothness","stroller","trail_visibility","wheelchair"],"geometry":["line"],"tags":{"highway":"path"}},"highway/passing_place":{"icon":"maki-circle-stroked","geometry":["vertex"],"tags":{"highway":"passing_place"}},"highway/motorway_link":{"icon":"iD-highway-motorway-link","fields":["destination_oneway","destination/ref_oneway","junction/ref_oneway","oneway","maxspeed","lanes","surface","structure","access"],"moreFields":["bridge/ref","charge_toll","covered_no","destination/symbol_oneway","incline","junction_line","lit","maxaxleload_bridge","maxheight","maxlength","maxspeed/advisory","maxweight_bridge","maxwidth","ref_road_number","smoothness","toll","width"],"geometry":["line"],"tags":{"highway":"motorway_link"},"locationSet":{"exclude":["ca","us"]}},"highway/motorway_link-US-CA":{"name":"{highway/motorway_link}","icon":"iD-highway-motorway-link","fields":["destination_oneway","destination/ref_oneway","junction/ref_oneway","oneway","maxspeed/advisory","lanes","surface","structure","access"],"moreFields":["bridge/ref","charge_toll","covered_no","destination/symbol_oneway","incline","junction_line","lit","maxaxleload_bridge","maxheight","maxlength","maxspeed","maxweight_bridge","maxwidth","ref_road_number","smoothness","toll","width"],"geometry":["line"],"tags":{"highway":"motorway_link"},"locationSet":{"include":["ca","us"]}},"highway/motorway_junction":{"icon":"temaki-junction","fields":["ref_highway_junction","name"],"geometry":["vertex"],"tags":{"highway":"motorway_junction"}},"highway/motorway":{"icon":"iD-highway-motorway","fields":["name","ref_road_number","oneway_yes","maxspeed","lanes","surface","structure","access"],"moreFields":["bridge/ref","charge_toll","covered_no","incline","junction_line","lit","maxaxleload_bridge","maxheight","maxlength","maxspeed/advisory","maxspeed/hgv","maxweight_bridge","maxwidth","minspeed","not/name","smoothness","toll","width"],"geometry":["line"],"tags":{"highway":"motorway"}},"highway/mini_roundabout":{"icon":"maki-circle-stroked","geometry":["vertex"],"tags":{"highway":"mini_roundabout"},"fields":["direction_clock"]},"highway/milestone":{"icon":"temaki-milestone","geometry":["point","vertex"],"fields":["distance","ref","direction_vertex"],"tags":{"highway":"milestone"}},"highway/living_street":{"icon":"iD-highway-living-street","fields":["name","oneway","maxspeed","lanes","surface","structure","access"],"moreFields":["bridge/ref","covered_no","bicycle_road","cyclestreet-BE-NL","cycleway","flood_prone","junction_line","lit","maxaxleload_bridge","maxheight","maxlength","maxweight_bridge","maxwidth","oneway/bicycle","parking/side/parking","parking/side/orientation","smoothness","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"living_street"}},"highway/ladder":{"icon":"temaki-crossing_markings-ladder","fields":["name","incline_steps","access_simple","handrail","step_count","material","width","height"],"moreFields":["covered_no","level_semi","lit","oneway","ref"],"geometry":["vertex","line"],"tags":{"highway":"ladder"}},"highway/give_way":{"icon":"temaki-yield","fields":["direction_vertex_dual"],"geometry":["vertex"],"tags":{"highway":"give_way"}},"highway/footway":{"icon":"temaki-pedestrian","fields":["name","surface","width","structure","access","incline"],"moreFields":["bridge/ref","covered_no","dog","informal","lit","maxweight_bridge","not/name","oneway","smoothness","stroller","tactile_paving","wheelchair"],"geometry":["line"],"tags":{"highway":"footway"}},"highway/escape":{"icon":"fas-truck-fast","fields":["surface"],"geometry":["line"],"tags":{"highway":"escape"}},"highway/emergency_bay":{"icon":"maki-car","geometry":["vertex","line"],"tags":{"highway":"emergency_bay"},"fields":["direction_vertex_dual"]},"highway/emergency_access_point":{"icon":"fas-compress-arrows-alt","geometry":["point"],"fields":["ref","operator"],"tags":{"highway":"emergency_access_point"}},"highway/elevator_line":{"icon":"temaki-elevator","fields":["{highway/elevator}"],"moreFields":["{highway/elevator}"],"geometry":["line"],"tags":{"highway":"elevator"}},"highway/elevator":{"icon":"temaki-elevator","fields":["ref","operator","level_semi","access_simple","wheelchair","maxweight"],"moreFields":["dog","manufacturer","maxheight","opening_hours"],"geometry":["vertex","point","area"],"tags":{"highway":"elevator"}},"highway/cyclist_waiting_aid":{"icon":"temaki-guard_rail","fields":["footrest","handrest","direction_vertex","side","count"],"moreFields":["capacity"],"geometry":["vertex"],"tags":{"highway":"cyclist_waiting_aid"}},"highway/cycleway":{"icon":"fas-biking","fields":["name","oneway","surface","smoothness","width","structure","access","incline"],"moreFields":["bridge/ref","covered_no","dog","lit","maxspeed","maxweight_bridge","not/name","stroller","wheelchair"],"geometry":["line"],"tags":{"highway":"cycleway"}},"highway/crossing":{"fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","tactile_paving"],"moreFields":["kerb","flashing_lights"],"geometry":["vertex"],"tags":{"highway":"crossing"}},"highway/corridor":{"icon":"temaki-pedestrian_walled","fields":["name","width","level","access_simple","wheelchair"],"moreFields":["indoor","maxheight","stroller"],"geometry":["line"],"tags":{"highway":"corridor"},"addTags":{"highway":"corridor","indoor":"yes"}},"highway/construction":{"icon":"maki-barrier","fields":["name","construction","opening_date","check_date","access","oneway","structure","note"],"moreFields":["bridge/ref"],"geometry":["line"],"tags":{"highway":"construction"},"removeTags":{"highway":"construction","construction":"*"}},"highway/busway":{"icon":"temaki-bus","fields":["name","oneway","maxspeed","lanes","surface","operator","structure","covered"],"moreFields":["bridge/ref","lit","maxaxleload_bridge","maxheight","maxlength","maxspeed/advisory","maxweight_bridge","maxwidth","trolley_wire"],"geometry":["line"],"tags":{"highway":"busway"}},"highway/bus_guideway":{"icon":"temaki-bus_guided","fields":["name","operator","oneway","structure"],"moreFields":["bridge/ref","covered_no","trolley_wire","width"],"geometry":["line"],"tags":{"highway":"bus_guideway"},"addTags":{"highway":"bus_guideway","access":"no","bus":"designated"}},"highway/bridleway":{"fields":["name","surface","width","structure","access","incline","horse_scale"],"moreFields":["bridge/ref","covered_no","dog","lit","maxweight_bridge","smoothness","stroller","wheelchair"],"icon":"maki-horse-riding","geometry":["line"],"tags":{"highway":"bridleway"}},"highway/traffic_sign":{"icon":"fas-directions","fields":["{traffic_sign}"],"geometry":["point","vertex"],"tags":{"highway":"traffic_sign"},"searchable":false,"name":"{traffic_sign}"},"highway/bus_stop":{"icon":"temaki-bus","fields":["{public_transport/platform_point}"],"moreFields":["{public_transport/platform_point}"],"geometry":["point","vertex"],"tags":{"highway":"bus_stop"},"matchScore":0.95,"searchable":false,"replacement":"public_transport/platform/bus_point"},"highway/steps/conveying":{"icon":"maki-entrance","fields":["incline_steps","conveying","access_simple","indoor","level_semi","width"],"moreFields":["{highway/steps}","dog","handrail","operator","manufacturer","step_count","surface"],"geometry":["line"],"tags":{"highway":"steps","conveying":"*"}},"highway/service/parking_aisle":{"icon":"iD-highway-service","geometry":["line"],"tags":{"highway":"service","service":"parking_aisle"},"reference":{"key":"service","value":"parking_aisle"}},"highway/service/emergency_access":{"icon":"iD-highway-service","geometry":["line"],"tags":{"highway":"service","service":"emergency_access"},"reference":{"key":"service","value":"emergency_access"}},"highway/service/driveway":{"icon":"iD-highway-service","geometry":["line"],"tags":{"highway":"service","service":"driveway"},"reference":{"key":"service","value":"driveway"}},"highway/service/drive-through":{"icon":"iD-highway-service","geometry":["line"],"tags":{"highway":"service","service":"drive-through"},"reference":{"key":"service","value":"drive-through"}},"highway/service/alley":{"icon":"iD-highway-service","geometry":["line"],"tags":{"highway":"service","service":"alley"},"reference":{"key":"service","value":"alley"}},"highway/road/bridge":{"icon":"iD-other-line","fields":["highway","{highway/residential}"],"moreFields":["{highway/residential}"],"geometry":["line"],"tags":{"highway":"road","bridge":"*"},"addTags":{"highway":"road","bridge":"yes","layer":"1"},"matchScore":0.25},"highway/raceway/motocross":{"icon":"fas-motorcycle","geometry":["line","area"],"tags":{"highway":"raceway","sport":"motocross"},"reference":{"key":"sport","value":"motocross"}},"highway/raceway/karting":{"icon":"temaki-speedway_8","geometry":["line","area"],"tags":{"highway":"raceway","sport":"karting"},"reference":{"key":"sport","value":"karting"}},"highway/path/traffic_island_shared":{"locationSet":{"include":["fr","lt","pl","de","il","ps"]},"icon":"temaki-pedestrian_and_cyclist","geometry":["line"],"tags":{"highway":"path","path":"traffic_island","foot":"designated","bicycle":"designated"},"reference":{"key":"path","value":"traffic_island"},"fields":["{highway/cycleway/traffic_island_shared}"],"name":"{highway/cycleway/traffic_island_shared}"},"highway/path/informal":{"icon":"fas-shoe-prints","fields":["surface","width","access","trail_visibility","smoothness","incline"],"moreFields":["covered_no","dog","horse_scale","informal","lit","maxweight_bridge","mtb/scale","mtb/scale/imba","mtb/scale/uphill","sac_scale","stroller","structure","wheelchair"],"geometry":["line"],"tags":{"highway":"path","informal":"yes"},"reference":{"key":"informal"}},"highway/path/boardwalk":{"icon":"temaki-pedestrian","geometry":["line"],"tags":{"highway":"path","bridge":"boardwalk"},"addTags":{"highway":"path","bridge":"boardwalk","surface":"wood"},"reference":{"key":"bridge","value":"boardwalk"}},"highway/path/bicycle_foot":{"locationSet":{"include":["fr","lt","pl","de","il","ps"]},"icon":"temaki-pedestrian_and_cyclist","fields":["{highway/cycleway/bicycle_foot}"],"geometry":["line"],"tags":{"highway":"path","foot":"designated","bicycle":"designated"},"removeTags":{"highway":"path","foot":"designated","bicycle":"designated","segregated":"*"},"matchScore":0.9,"name":"{highway/cycleway/bicycle_foot}"},"highway/path/crossing":{"icon":"temaki-cyclist_crosswalk","fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}","flashing_lights"],"geometry":["line"],"tags":{"path":"crossing"},"addTags":{"highway":"path","path":"crossing"},"reference":{"key":"path","value":"crossing"},"searchable":false},"highway/path/crossing/bicycle_foot":{"locationSet":{"include":["fr","lt","pl","de","il","ps"]},"icon":"temaki-ped_cyclist_crosswalk","fields":["{highway/cycleway/crossing/bicycle_foot}"],"geometry":["line"],"tags":{"highway":"path","path":"crossing","foot":"designated","bicycle":"designated"},"removeTags":{"highway":"path","path":"crossing","foot":"designated","bicycle":"designated","segregated":"*"},"reference":{"key":"path","value":"crossing"},"matchScore":0.9,"name":"{highway/cycleway/crossing/bicycle_foot}"},"highway/path/crossing/unmarked":{"icon":"temaki-pedestrian","fields":["crossing","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}","flashing_lights"],"geometry":["line"],"tags":{"highway":"path","path":"crossing","crossing":"unmarked"},"addTags":{"highway":"path","path":"crossing","crossing":"unmarked","crossing:markings":"no"},"reference":{"key":"crossing","value":"unmarked"},"searchable":false},"highway/path/crossing/uncontrolled":{"icon":"temaki-pedestrian","fields":["crossing","{@templates/crossing/markings_yes}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}","flashing_lights"],"geometry":["line"],"tags":{"highway":"path","path":"crossing","crossing":"uncontrolled"},"reference":{"key":"crossing","value":"uncontrolled"},"searchable":false},"highway/path/crossing/traffic_signals":{"icon":"temaki-railway_signals","fields":["crossing","{@templates/crossing/traffic_signal}","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/traffic_signal_more}","{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}","flashing_lights"],"geometry":["line"],"tags":{"highway":"path","path":"crossing","crossing":"traffic_signals"},"reference":{"key":"crossing","value":"traffic_signals"},"searchable":false},"highway/path/crossing/marked":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}","flashing_lights"],"geometry":["line"],"tags":{"highway":"path","path":"crossing","crossing":"marked"},"addTags":{"highway":"path","path":"crossing","crossing":"marked","crossing:markings":"yes"},"reference":{"key":"crossing","value":"marked"},"name":"{highway/path/crossing/uncontrolled}","searchable":false},"highway/path/crossing/informal":{"icon":"temaki-pedestrian","fields":["crossing","surface"],"moreFields":["{@templates/crossing/geometry_way_more}"],"geometry":["line"],"tags":{"highway":"path","path":"crossing","crossing":"informal"},"reference":{"key":"crossing","value":"informal"},"name":"{highway/crossing/informal}","searchable":false},"highway/footway/traffic_island":{"icon":"temaki-pedestrian","geometry":["line"],"tags":{"highway":"footway","footway":"traffic_island"},"reference":{"key":"footway","value":"traffic_island"}},"highway/footway/sidewalk":{"icon":"temaki-pedestrian","geometry":["line"],"tags":{"footway":"sidewalk"},"addTags":{"highway":"footway","footway":"sidewalk"},"reference":{"key":"footway","value":"sidewalk"}},"highway/footway/crossing":{"fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","flashing_lights"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing"},"reference":{"key":"footway","value":"crossing"}},"highway/footway/conveying":{"icon":"temaki-pedestrian","fields":["name","conveying","access_simple","lit","width","wheelchair"],"geometry":["line"],"tags":{"highway":"footway","conveying":"*"},"reference":{"key":"conveying"}},"highway/footway/access_aisle":{"icon":"temaki-striped_zone","fields":["access_aisle","width","surface","tactile_paving","access","wheelchair"],"moreFields":["covered_no","dog","incline","lit","maxweight_bridge","ref","smoothness","stroller","structure"],"geometry":["line"],"tags":{"highway":"footway","footway":"access_aisle"},"reference":{"key":"footway","value":"access_aisle"}},"highway/footway/informal":{"icon":"fas-shoe-prints","fields":["surface","width","access","trail_visibility","smoothness","incline"],"moreFields":["covered_no","dog","informal","lit","maxweight_bridge","sac_scale","stroller","structure","wheelchair"],"geometry":["line"],"tags":{"highway":"footway","informal":"yes"},"reference":{"key":"informal"},"searchable":false},"highway/footway/crossing/unmarked":{"icon":"temaki-pedestrian","fields":["crossing","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","flashing_lights"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"unmarked"},"addTags":{"highway":"footway","footway":"crossing","crossing":"unmarked","crossing:markings":"no"},"reference":{"key":"crossing","value":"unmarked"}},"highway/footway/crossing/uncontrolled":{"icon":"temaki-pedestrian","fields":["crossing","{@templates/crossing/markings_yes}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","flashing_lights"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"uncontrolled"},"reference":{"key":"crossing","value":"uncontrolled"}},"highway/footway/crossing/traffic_signals":{"icon":"temaki-railway_signals","fields":["crossing","{@templates/crossing/traffic_signal}","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/traffic_signal_more}","{@templates/crossing/geometry_way_more}","flashing_lights"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"traffic_signals"},"reference":{"key":"crossing","value":"traffic_signals"}},"highway/footway/crossing/zebra":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","flashing_lights"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"zebra"},"reference":{"key":"crossing","value":"zebra"},"name":"{highway/footway/crossing/uncontrolled}","searchable":false},"highway/footway/crossing/marked":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","flashing_lights"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"marked"},"addTags":{"highway":"footway","footway":"crossing","crossing":"marked","crossing:markings":"yes"},"reference":{"key":"crossing","value":"marked"},"name":"{highway/footway/crossing/uncontrolled}","searchable":false},"highway/footway/crossing/informal":{"icon":"temaki-pedestrian","fields":["crossing","surface"],"moreFields":["{@templates/crossing/geometry_way_more}"],"geometry":["line"],"tags":{"highway":"footway","footway":"crossing","crossing":"informal"},"reference":{"key":"crossing","value":"informal"},"name":"{highway/crossing/informal}","searchable":false},"highway/cycleway/traffic_island_shared":{"locationSet":{"exclude":["fr","lt","pl","de","il","ps"]},"icon":"temaki-pedestrian_and_cyclist","geometry":["line"],"tags":{"highway":"cycleway","cycleway":"traffic_island","foot":"designated","bicycle":"designated"},"reference":{"key":"cycleway","value":"traffic_island"}},"highway/cycleway/traffic_island":{"icon":"fas-biking","geometry":["line"],"tags":{"highway":"cycleway","cycleway":"traffic_island"},"reference":{"key":"cycleway","value":"traffic_island"}},"highway/cycleway/moped_link-NL":{"locationSet":{"include":["nl"]},"icon":"fas-motorcycle","fields":["name","oneway","surface","smoothness","width","structure","access","incline"],"geometry":["line"],"tags":{"highway":"cycleway","bicycle":"no","moped":"designated"},"addTags":{"highway":"cycleway","bicycle":"no","moped":"designated","foot":"no","mofa":"no"},"matchScore":0.9},"highway/cycleway/bicycle_foot":{"locationSet":{"exclude":["fr","lt","pl","de","il","ps"]},"icon":"temaki-pedestrian_and_cyclist","fields":["name","segregated","oneway","surface","smoothness","width","structure","access","incline"],"geometry":["line"],"tags":{"highway":"cycleway","foot":"designated"},"addTags":{"highway":"cycleway","foot":"designated","bicycle":"designated"},"removeTags":{"highway":"cycleway","foot":"designated","bicycle":"designated","segregated":"*"},"matchScore":0.9},"highway/cycleway/crossing":{"icon":"temaki-cyclist_crosswalk","fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}"],"geometry":["line"],"tags":{"cycleway":"crossing"},"addTags":{"highway":"cycleway","cycleway":"crossing"},"reference":{"key":"cycleway","value":"crossing"},"searchable":false,"matchScore":0.95},"highway/cycleway/crossing/unmarked":{"icon":"fas-biking","fields":["crossing","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}"],"geometry":["line"],"tags":{"highway":"cycleway","cycleway":"crossing","crossing":"unmarked"},"addTags":{"highway":"cycleway","cycleway":"crossing","crossing":"unmarked","crossing:markings":"no"},"reference":{"key":"crossing","value":"unmarked"},"matchScore":0.95},"highway/cycleway/crossing/uncontrolled":{"icon":"temaki-cyclist_crosswalk","fields":["crossing","{@templates/crossing/defaults}","{@templates/crossing/markings_yes}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}"],"geometry":["line"],"tags":{"highway":"cycleway","cycleway":"crossing","crossing":"uncontrolled"},"reference":{"key":"crossing","value":"uncontrolled"},"matchScore":0.95},"highway/cycleway/crossing/traffic_signals":{"icon":"fas-biking","fields":["crossing","{@templates/crossing/traffic_signal}","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/traffic_signal_more}","{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}"],"geometry":["line"],"tags":{"highway":"cycleway","cycleway":"crossing","crossing":"traffic_signals"},"reference":{"key":"crossing","value":"traffic_signals"},"matchScore":0.95},"highway/cycleway/crossing/bicycle_foot":{"locationSet":{"exclude":["fr","lt","pl","de","il","ps"]},"icon":"temaki-ped_cyclist_crosswalk","fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}"],"geometry":["line"],"tags":{"highway":"cycleway","cycleway":"crossing","foot":"designated"},"addTags":{"highway":"cycleway","cycleway":"crossing","foot":"designated","bicycle":"designated"},"reference":{"key":"cycleway","value":"crossing"},"matchScore":0.9},"highway/cycleway/crossing/marked":{"icon":"temaki-cyclist_crosswalk","fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","surface"],"moreFields":["{@templates/crossing/geometry_way_more}","{@templates/crossing/bicycle_more}"],"geometry":["line"],"tags":{"highway":"cycleway","cycleway":"crossing","crossing":"marked"},"addTags":{"highway":"cycleway","cycleway":"crossing","crossing":"marked","crossing:markings":"yes"},"reference":{"key":"crossing","value":"marked"},"matchScore":0.95,"name":"{highway/cycleway/crossing/uncontrolled}","searchable":false},"highway/crossing/unmarked":{"icon":"temaki-pedestrian","fields":["crossing","{@templates/crossing/defaults}","tactile_paving"],"moreFields":["kerb","flashing_lights"],"geometry":["vertex"],"tags":{"highway":"crossing","crossing":"unmarked"},"addTags":{"highway":"crossing","crossing":"unmarked","crossing:markings":"no"},"reference":{"key":"crossing","value":"unmarked"}},"highway/crossing/uncontrolled":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","{@templates/crossing/markings_yes}","{@templates/crossing/defaults}","tactile_paving"],"moreFields":["kerb","flashing_lights"],"geometry":["vertex"],"tags":{"highway":"crossing","crossing":"uncontrolled"},"reference":{"key":"crossing","value":"uncontrolled"}},"highway/crossing/traffic_signals":{"icon":"temaki-railway_signals","fields":["crossing","{@templates/crossing/traffic_signal}","{@templates/crossing/markings}","{@templates/crossing/defaults}","tactile_paving"],"moreFields":["{@templates/crossing/traffic_signal_more}","kerb","flashing_lights"],"geometry":["vertex"],"tags":{"highway":"crossing","crossing":"traffic_signals"},"reference":{"key":"crossing","value":"traffic_signals"}},"highway/crossing/zebra":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","tactile_paving"],"moreFields":["kerb","flashing_lights"],"geometry":["vertex"],"tags":{"highway":"crossing","crossing":"zebra"},"reference":{"key":"crossing","value":"zebra"},"name":"{highway/crossing/uncontrolled}","searchable":false},"highway/crossing/marked":{"icon":"temaki-pedestrian_crosswalk","fields":["crossing","{@templates/crossing/markings}","{@templates/crossing/defaults}","tactile_paving"],"moreFields":["kerb","flashing_lights"],"geometry":["vertex"],"tags":{"highway":"crossing","crossing":"marked"},"addTags":{"highway":"crossing","crossing":"marked","crossing:markings":"yes"},"reference":{"key":"crossing","value":"marked"},"name":"{highway/crossing/uncontrolled}","searchable":false},"highway/crossing/informal":{"icon":"temaki-pedestrian","fields":["crossing"],"geometry":["vertex"],"tags":{"crossing":"informal"},"reference":{"key":"crossing","value":"informal"},"searchable":false},"healthcare/speech_therapist":{"icon":"fas-comment","geometry":["point","area"],"tags":{"healthcare":"speech_therapist"}},"healthcare/sample_collection":{"icon":"fas-vial","fields":["name","sample_collection","operator","website","phone","address","opening_hours"],"moreFields":["{healthcare}"],"geometry":["point","area"],"tags":{"healthcare":"sample_collection"}},"healthcare/rehabilitation":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"rehabilitation"}},"healthcare/psychotherapist":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"psychotherapist"}},"healthcare/podiatrist":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"podiatrist"}},"healthcare/physiotherapist":{"icon":"temaki-physiotherapist","geometry":["point","area"],"tags":{"healthcare":"physiotherapist"}},"healthcare/optometrist":{"icon":"fas-eye","geometry":["point","area"],"tags":{"healthcare":"optometrist"}},"healthcare/occupational_therapist":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"occupational_therapist"}},"healthcare/midwife":{"icon":"fas-baby","geometry":["point","area"],"tags":{"healthcare":"midwife"}},"healthcare/laboratory":{"icon":"fas-vial","fields":["name","operator","healthcare/speciality","website","phone","ref","address","opening_hours"],"moreFields":["{healthcare}"],"geometry":["point","area"],"tags":{"healthcare":"laboratory"}},"healthcare/hospice":{"icon":"fas-procedures","geometry":["point","area"],"tags":{"healthcare":"hospice"}},"healthcare/counselling":{"icon":"fas-comments","geometry":["point","area"],"tags":{"healthcare":"counselling"}},"healthcare/blood_donation":{"icon":"maki-blood-bank","fields":["{healthcare}","blood_components"],"geometry":["point","area"],"tags":{"healthcare":"blood_donation"}},"healthcare/birthing_center":{"icon":"fas-baby","geometry":["point","area"],"tags":{"healthcare":"birthing_centre"}},"healthcare/audiologist":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"healthcare":"audiologist"}},"healthcare/alternative":{"icon":"fas-spa","geometry":["point","area"],"tags":{"healthcare":"alternative"}},"healthcare/yes":{"icon":"maki-hospital","fields":["name","healthcare","{healthcare}"],"geometry":["point","area"],"tags":{"healthcare":"yes"},"searchable":false,"matchScore":0.5},"healthcare/dentist/orthodontics":{"icon":"fas-teeth","fields":["{amenity/dentist}"],"moreFields":["{amenity/dentist}"],"geometry":["point","area"],"tags":{"healthcare":"dentist","healthcare:speciality":"orthodontics"},"addTags":{"healthcare":"dentist","amenity":"dentist","healthcare:speciality":"orthodontics"},"reference":{"key":"healthcare:speciality","value":"orthodontics"}},"healthcare/alternative/traditional_chinese_medicine":{"icon":"fas-spa","geometry":["point","area"],"tags":{"healthcare":"alternative","healthcare:speciality":"traditional_chinese_medicine"}},"healthcare/alternative/osteopathy":{"icon":"fas-spa","geometry":["point","area"],"tags":{"healthcare":"alternative","healthcare:speciality":"osteopathy"}},"healthcare/alternative/naturopathy":{"icon":"fas-spa","geometry":["point","area"],"tags":{"healthcare":"alternative","healthcare:speciality":"naturopathy"}},"healthcare/alternative/homeopathy":{"icon":"fas-spa","geometry":["point","area"],"tags":{"healthcare":"alternative","healthcare:speciality":"homeopathy"}},"healthcare/alternative/chiropractic":{"icon":"fas-spa","geometry":["point","area"],"tags":{"healthcare":"alternative","healthcare:speciality":"chiropractic"}},"healthcare/alternative/ayurveda":{"icon":"temaki-hinduism","geometry":["point","area"],"tags":{"healthcare":"alternative","healthcare:speciality":"ayurveda"}},"healthcare/alternative/acupuncture":{"icon":"fas-spa","geometry":["point","area"],"tags":{"healthcare":"alternative","healthcare:speciality":"acupuncture"}},"golf/water_hazard":{"icon":"maki-golf","geometry":["area"],"tags":{"golf":"water_hazard"},"addTags":{"golf":"water_hazard","natural":"water"}},"golf/tee":{"icon":"roentgen-golf_tee","fields":["tee","surface"],"geometry":["vertex","area"],"tags":{"golf":"tee"}},"golf/rough":{"icon":"maki-golf","fields":["surface"],"geometry":["area"],"tags":{"golf":"rough"}},"golf/path":{"icon":"maki-golf","fields":["name","surface","width","structure","access","incline"],"moreFields":["bridge/ref"],"geometry":["line"],"tags":{"golf":"path"},"addTags":{"golf":"path","highway":"footway"}},"golf/lateral_water_hazard":{"icon":"maki-golf","geometry":["area"],"tags":{"golf":"lateral_water_hazard"},"addTags":{"golf":"lateral_water_hazard","natural":"water"}},"golf/hole":{"icon":"temaki-golf_green","fields":["ref_golf_hole","par","handicap"],"geometry":["line"],"tags":{"golf":"hole"}},"golf/green":{"icon":"temaki-golf_green","fields":["surface"],"geometry":["area"],"tags":{"golf":"green"}},"golf/fairway":{"icon":"maki-golf","fields":["surface"],"geometry":["area"],"tags":{"golf":"fairway"}},"golf/driving_range":{"icon":"maki-golf","fields":["name","capacity","surface"],"geometry":["area"],"tags":{"golf":"driving_range"}},"golf/clubhouse":{"icon":"maki-golf","fields":["name","operator","address","building_area_yes","access_simple"],"moreFields":["{@templates/internet_access}","air_conditioning","fee","payment_multi_fee","charge_fee","level","opening_hours","phone","wheelchair"],"geometry":["point","area"],"tags":{"golf":"clubhouse"}},"golf/cartpath":{"icon":"temaki-golf_cart","fields":["name","highway_cartpath","{golf/path}","maxspeed"],"geometry":["line"],"tags":{"golf":"cartpath"},"addTags":{"golf":"cartpath","highway":"path","golf_cart":"yes"}},"golf/bunker":{"icon":"maki-golf","fields":["surface"],"geometry":["area"],"tags":{"golf":"bunker"}},"entrance/staircase":{"icon":"maki-entrance-alt1","geometry":["vertex"],"tags":{"entrance":"staircase"}},"entrance/shop":{"icon":"maki-entrance-alt1","geometry":["vertex"],"tags":{"entrance":"shop"}},"entrance/main":{"icon":"maki-entrance-alt1","geometry":["vertex"],"tags":{"entrance":"main"}},"entrance/emergency_ward_entrance":{"icon":"maki-hospital","fields":["ref","emergency_ward_entrance","address","level","opening_hours"],"geometry":["vertex"],"tags":{"emergency":"emergency_ward_entrance"},"addTags":{"emergency":"emergency_ward_entrance","entrance":"yes"}},"entrance/emergency":{"icon":"maki-entrance-alt1","fields":["ref","door","access_simple","wheelchair","level"],"geometry":["vertex"],"tags":{"entrance":"emergency"},"matchScore":0.8},"emergency/water_tank":{"icon":"temaki-storage_tank","fields":["name","ref","operator","water_tank/volume","drinking_water","building_area"],"moreFields":["covered","height","material"],"geometry":["point","vertex","area"],"tags":{"emergency":"water_tank","man_made":"storage_tank"},"addTags":{"emergency":"water_tank","man_made":"storage_tank","content":"water"}},"emergency/water_reservoir_covered":{"icon":"maki-water","fields":["name","ref","operator","capacity_volume","layer"],"moreFields":["water_tank/volume"],"geometry":["point","vertex","area"],"tags":{"emergency":"water_tank","man_made":"reservoir_covered"}},"emergency/water_reservoir":{"icon":"maki-water","fields":["name","operator","water","covered"],"moreFields":["ref"],"geometry":["point","vertex","area"],"tags":{"emergency":"water_tank","natural":"water","water":"reservoir"}},"emergency/siren":{"icon":"fas-volume-up","fields":["siren/purpose","siren/type","ref","operator"],"geometry":["point","vertex"],"tags":{"emergency":"siren"}},"emergency/phone":{"icon":"maki-emergency-phone","fields":["ref","operator","covered","indoor","booth"],"moreFields":["level"],"geometry":["point","vertex"],"tags":{"emergency":"phone"}},"emergency/mountain_rescue":{"icon":"temaki-mountain_cross","fields":["name","address","operator","building_area_yes","phone","website"],"moreFields":["{@templates/contact}","gnis/feature_id-US","wheelchair"],"geometry":["point","area"],"tags":{"emergency":"mountain_rescue"}},"emergency/lifeguard":{"icon":"fas-life-ring","fields":["lifeguard","ref","operator","building_area_yes","opening_hours"],"geometry":["point","area"],"tags":{"emergency":"lifeguard"}},"emergency/lifeboat_station":{"icon":"temaki-boat_tour","fields":["name","operator","seamark/rescue_station/category","address","building_area_yes","phone","website"],"moreFields":["{@templates/contact}","gnis/feature_id-US","wheelchair"],"geometry":["point","area"],"tags":{"emergency":"water_rescue"},"addTags":{"emergency":"water_rescue","seamark:type":"rescue_station"}},"emergency/life_ring":{"icon":"fas-life-ring","fields":["ref","operator"],"geometry":["point","vertex"],"tags":{"emergency":"life_ring"}},"emergency/landing_site":{"icon":"maki-heliport","fields":["name","operator","surface"],"geometry":["point","area"],"tags":{"emergency":"landing_site"}},"emergency/first_aid_kit":{"icon":"fas-medkit","fields":["indoor","ref","operator"],"moreFields":["level"],"geometry":["point","vertex"],"tags":{"emergency":"first_aid_kit"}},"emergency/fire_service_inlet":{"icon":"maki-water","fields":["fire_mains","fire_sprinkler","couplings"],"moreFields":["level","survey/date","fire_service_inlet","ref"],"geometry":["point","vertex"],"tags":{"emergency":"fire_service_inlet"}},"emergency/fire_hydrant":{"icon":"temaki-fire_hydrant","fields":["ref","fire_hydrant/type","colour","fire_hydrant/position","water_source","couplings"],"moreFields":["fire_hydrant/diameter","fire_hydrant/pressure","level","survey/date"],"geometry":["point","vertex"],"tags":{"emergency":"fire_hydrant"}},"emergency/fire_hose":{"icon":"fas-tape","fields":["indoor","ref","operator"],"moreFields":["level"],"geometry":["point","vertex"],"tags":{"emergency":"fire_hose"}},"emergency/fire_extinguisher":{"icon":"fas-fire-extinguisher","fields":["indoor","ref","operator"],"moreFields":["level"],"geometry":["point","vertex"],"tags":{"emergency":"fire_extinguisher"}},"emergency/fire_alarm":{"icon":"fas-bell","fields":["indoor","ref","operator"],"moreFields":["level"],"geometry":["point","vertex"],"tags":{"emergency":"fire_alarm_box"}},"emergency/disaster_response":{"icon":"fas-helmet-safety","fields":["name","operator","building_area_yes","address"],"moreFields":["{@templates/contact}","wheelchair"],"geometry":["point","area"],"tags":{"emergency":"disaster_response"}},"emergency/defibrillator":{"icon":"maki-defibrillator","fields":["indoor","ref","operator","defibrillator/location","access_simple"],"moreFields":["level","opening_hours"],"geometry":["point","vertex"],"tags":{"emergency":"defibrillator"}},"emergency/assembly_point":{"icon":"fas-compress-arrows-alt","fields":["name","ref","operator"],"geometry":["point","vertex","area"],"tags":{"emergency":"assembly_point"}},"emergency/ambulance_station":{"icon":"fas-ambulance","fields":["name","operator","building_area_yes","address"],"moreFields":["{@templates/contact}","gnis/feature_id-US","wheelchair"],"geometry":["point","area"],"tags":{"emergency":"ambulance_station"}},"emergency/yes":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"yes"},"name":"{emergency}","searchable":false,"matchScore":0.01},"emergency/private":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"private"},"name":"{emergency}","searchable":false,"matchScore":0.01},"emergency/official":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"official"},"name":"{emergency}","searchable":false,"matchScore":0.01},"emergency/no":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"no"},"name":"{emergency}","searchable":false,"matchScore":0.01},"emergency/destination":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"destination"},"name":"{emergency}","searchable":false,"matchScore":0.01},"emergency/designated":{"fields":["emergency_combo"],"geometry":["line"],"tags":{"emergency":"designated"},"name":"{emergency}","searchable":false,"matchScore":0.01},"emergency/fire_hydrant/underground":{"icon":"temaki-fire_hydrant_underground","geometry":["point","vertex"],"tags":{"emergency":"fire_hydrant","fire_hydrant:type":"underground"}},"emergency/fire_hydrant/pillar":{"icon":"temaki-fire_hydrant","geometry":["point","vertex"],"tags":{"emergency":"fire_hydrant","fire_hydrant:type":"pillar"}},"education/university":{"icon":"maki-college","fields":["{education/college}"],"moreFields":["{education/college}"],"geometry":["area","point"],"tags":{"amenity":"university"},"addTags":{"amenity":"university","education":"university"},"reference":{"key":"amenity","value":"university"}},"education/school":{"icon":"temaki-school","fields":["name","operator","operator/type","address","grades","religion","denomination","website","building_area"],"moreFields":["{@templates/contact}","{@templates/internet_access}","capacity","charge_fee","fee","fhrs/id-GB","gnis/feature_id-US","ref/edubase-GB","internet_access","internet_access/ssid","level","polling_station","wheelchair"],"geometry":["area","point"],"tags":{"amenity":"school"},"addTags":{"amenity":"school","education":"school"},"reference":{"key":"amenity","value":"school"}},"education/prep_school":{"icon":"temaki-school","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"prep_school"},"addTags":{"amenity":"prep_school","education":"prep_school"},"reference":{"key":"amenity","value":"prep_school"}},"education/music_school":{"icon":"fas-music","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"music_school"},"addTags":{"amenity":"music_school","education":"music_school"},"reference":{"key":"amenity","value":"music_school"}},"education/language_school":{"icon":"temaki-school","fields":["name","operator","operator/type","address","building_area_yes","opening_hours","language_multi"],"moreFields":["{@templates/contact}","{@templates/internet_access}","gnis/feature_id-US","level","payment_multi","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"language_school"},"addTags":{"amenity":"language_school","education":"language_school"},"reference":{"key":"amenity","value":"language_school"}},"education/kindergarten":{"icon":"temaki-school","fields":["name","operator","operator/type","address","phone","preschool"],"moreFields":["{@templates/contact}","capacity","fhrs/id-GB","gnis/feature_id-US","ref/edubase-GB","internet_access","internet_access/ssid","level","max_age","min_age","not/name","opening_hours","payment_multi","wheelchair"],"geometry":["area","point"],"tags":{"amenity":"kindergarten"},"addTags":{"amenity":"kindergarten","education":"kindergarten"},"reference":{"key":"amenity","value":"kindergarten"}},"education/driving_school":{"icon":"temaki-car_pool","fields":["name","operator","operator/type","address","building_area","opening_hours"],"moreFields":["{@templates/poi}","license_classes"],"geometry":["point","area"],"tags":{"amenity":"driving_school"},"addTags":{"amenity":"driving_school","education":"driving_school"},"reference":{"key":"amenity","value":"driving_school"}},"education/dancing_school":{"icon":"fas-music","fields":["name","operator","address","building_area_yes","opening_hours","dance/style"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"dancing_school"},"addTags":{"amenity":"dancing_school","education":"dancing_school"},"reference":{"key":"amenity","value":"dancing_school"}},"education/college":{"icon":"maki-college","fields":["name","operator","operator/type","address","website","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","denomination","ref/edubase-GB","religion"],"geometry":["area","point"],"tags":{"amenity":"college"},"addTags":{"amenity":"college","education":"college"},"reference":{"key":"amenity","value":"college"}},"education/yes":{"icon":"temaki-school","fields":["name","education","{education}"],"geometry":["point","area"],"tags":{"education":"yes"},"searchable":false,"matchScore":0.5},"disused/shop":{"icon":"fas-store-alt-slash","fields":["disused/shop"],"geometry":["point","area"],"tags":{"disused:shop":"*"},"matchScore":0.05,"searchable":false},"disused/railway":{"icon":"temaki-rail_profile","fields":["disused/railway"],"geometry":["point","vertex","line","area"],"tags":{"disused:railway":"*"},"matchScore":0.05,"searchable":false},"disused/amenity":{"fields":["disused/amenity"],"geometry":["point","vertex","area"],"tags":{"disused:amenity":"*"},"matchScore":0.05,"searchable":false},"disc_golf/tee":{"icon":"temaki-disc_golf_basket","fields":["surface"],"geometry":["point","vertex"],"tags":{"disc_golf":"tee"}},"disc_golf/hole":{"icon":"temaki-disc_golf_basket","fields":["name","ref_disc_golf_hole","par"],"geometry":["line"],"tags":{"disc_golf":"hole"}},"disc_golf/basket":{"icon":"temaki-disc_golf_basket","geometry":["point","vertex"],"tags":{"disc_golf":"basket"}},"demolished/building":{"icon":"fas-house-damage","fields":["name","address"],"geometry":["area"],"tags":{"demolished:building":"*"},"searchable":false},"cycleway/asl":{"icon":"maki-bicycle","fields":["ref","direction_vertex","width"],"geometry":["vertex"],"tags":{"cycleway":"asl"}},"craft/winery":{"icon":"maki-alcohol-shop","moreFields":["{craft}","fhrs/id-GB","min_age"],"geometry":["point","area"],"tags":{"craft":"winery"}},"craft/window_construction":{"icon":"temaki-window","geometry":["point","area"],"tags":{"craft":"window_construction"}},"craft/watchmaker":{"icon":"maki-watch","geometry":["point","area"],"tags":{"craft":"watchmaker"}},"craft/upholsterer":{"icon":"fas-couch","geometry":["point","area"],"tags":{"craft":"upholsterer"}},"craft/tinsmith":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"tinsmith"}},"craft/tiler":{"icon":"temaki-brick_trowel","geometry":["point","area"],"tags":{"craft":"tiler"}},"craft/stonemason":{"icon":"temaki-brick_trowel","geometry":["point","area"],"tags":{"craft":"stonemason"}},"craft/signmaker":{"icon":"fas-sign-hanging","geometry":["point","area"],"tags":{"craft":"signmaker"}},"craft/shoemaker":{"icon":"temaki-hammer_shoe","geometry":["point","area"],"tags":{"craft":"shoemaker"}},"craft/sculptor":{"icon":"maki-art-gallery","geometry":["point","area"],"tags":{"craft":"sculptor"}},"craft/scaffolder":{"icon":"temaki-scaffold","geometry":["point","area"],"tags":{"craft":"scaffolder"}},"craft/sawmill":{"icon":"maki-logging","geometry":["point","area"],"tags":{"craft":"sawmill"}},"craft/sailmaker":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"sailmaker"}},"craft/saddler":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"saddler"}},"craft/roofer":{"icon":"fas-hammer","geometry":["point","area"],"tags":{"craft":"roofer"}},"craft/rigger":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"rigger"}},"craft/pottery":{"icon":"temaki-vase","geometry":["point","area"],"tags":{"craft":"pottery"}},"craft/plumber":{"icon":"temaki-plumber","geometry":["point","area"],"tags":{"craft":"plumber"}},"craft/plasterer":{"icon":"temaki-brick_trowel","geometry":["point","area"],"tags":{"craft":"plasterer"}},"craft/photographic_laboratory":{"icon":"fas-film","geometry":["point","area"],"tags":{"craft":"photographic_laboratory"}},"craft/photographer":{"icon":"maki-attraction","geometry":["point","area"],"tags":{"craft":"photographer"}},"craft/parquet_layer":{"icon":"temaki-brick_trowel","geometry":["point","area"],"tags":{"craft":"parquet_layer"}},"craft/painter":{"icon":"fas-paint-roller","geometry":["point","area"],"tags":{"craft":"painter"}},"craft/metal_construction":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"metal_construction"}},"craft/key_cutter":{"icon":"fas-key","geometry":["point","area"],"tags":{"craft":"key_cutter"}},"craft/joiner":{"icon":"fas-hammer","geometry":["point","area"],"tags":{"craft":"joiner"}},"craft/insulator":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"insulation"}},"craft/hvac":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"hvac"}},"craft/handicraft":{"icon":"temaki-vase","geometry":["point","area"],"tags":{"craft":"handicraft"}},"craft/glaziery":{"icon":"temaki-window","geometry":["point","area"],"tags":{"craft":"glaziery"}},"craft/gardener":{"icon":"maki-garden-centre","geometry":["point","area"],"tags":{"craft":"gardener"}},"craft/floorer":{"icon":"temaki-brick_trowel","geometry":["point","area"],"tags":{"craft":"floorer"}},"craft/electronics_repair":{"icon":"fas-screwdriver","geometry":["point","area"],"tags":{"craft":"electronics_repair"}},"craft/electrician":{"icon":"temaki-power","geometry":["point","area"],"tags":{"craft":"electrician"}},"craft/dressmaker":{"icon":"temaki-dress","geometry":["point","area"],"tags":{"craft":"dressmaker"}},"craft/distillery":{"icon":"temaki-storage_fermenter","fields":["{craft}","product"],"moreFields":["{craft}","fhrs/id-GB","min_age"],"geometry":["point","area"],"tags":{"craft":"distillery"}},"craft/confectionery":{"icon":"maki-confectionery","geometry":["point","area"],"moreFields":["fhrs/id-GB"],"tags":{"craft":"confectionery"}},"craft/clockmaker":{"icon":"temaki-clock","geometry":["point","area"],"tags":{"craft":"clockmaker"}},"craft/cleaning":{"icon":"temaki-vacuum","geometry":["point","area"],"tags":{"craft":"cleaning"}},"craft/chimney_sweeper":{"icon":"temaki-chimney","geometry":["point","area"],"tags":{"craft":"chimney_sweeper"}},"craft/caterer":{"icon":"temaki-catering","fields":["name","cuisine","{craft}"],"moreFields":["fhrs/id-GB"],"geometry":["point","area"],"tags":{"craft":"caterer"}},"craft/carpet_layer":{"icon":"temaki-tools","geometry":["point","area"],"tags":{"craft":"carpet_layer"}},"craft/carpenter":{"icon":"fas-hammer","geometry":["point","area"],"tags":{"craft":"carpenter"}},"craft/brewery":{"icon":"temaki-storage_fermenter","fields":["{craft}","product"],"moreFields":["{craft}","min_age"],"geometry":["point","area"],"tags":{"craft":"brewery"}},"craft/bookbinder":{"icon":"maki-library","geometry":["point","area"],"tags":{"craft":"bookbinder"}},"craft/boatbuilder":{"icon":"temaki-boat_repair","geometry":["point","area"],"tags":{"craft":"boatbuilder"},"matchScore":0.6},"craft/blacksmith":{"icon":"temaki-anvil_and_hammer","geometry":["point","area"],"tags":{"craft":"blacksmith"}},"craft/beekeeper":{"icon":"maki-farm","geometry":["point","area"],"tags":{"craft":"beekeeper"}},"craft/basket_maker":{"icon":"temaki-vase","geometry":["point","area"],"tags":{"craft":"basket_maker"}},"craft/agricultural_engines":{"icon":"fas-tools","geometry":["point","area"],"tags":{"craft":"agricultural_engines"}},"craft/tailor":{"icon":"temaki-needle_and_spool","geometry":["point","area"],"tags":{"craft":"tailor"},"reference":{"key":"shop","value":"tailor"},"searchable":false},"craft/locksmith":{"icon":"maki-marker-stroked","geometry":["point","area"],"tags":{"craft":"locksmith"},"reference":{"key":"shop","value":"locksmith"},"searchable":false},"club/sport":{"icon":"maki-pitch","fields":["name","sport","{club}"],"moreFields":["{club}","access_simple"],"geometry":["point","area"],"tags":{"club":"sport"}},"club/scout":{"icon":"fas-handshake","fields":["{club}"],"moreFields":["{club}","brand"],"geometry":["point","area"],"tags":{"club":"scout"}},"climbing/route_bottom":{"icon":"temaki-abseiling","geometry":["point","vertex"],"fields":["name","climbing/sport","climbing/trad","climbing/bolts"],"moreFields":["climbing/grade/uiaa","climbing/grade/french","climbing/grade/saxon","climbing/grade/yds_class","website","climbing/length","description"],"tags":{"climbing":"route_bottom"},"addTags":{"sport":"climbing","climbing":"route_bottom"}},"climbing/route":{"icon":"temaki-climbing","geometry":["line","point"],"fields":["{climbing/route_bottom}"],"moreFields":["{climbing/route_bottom}"],"tags":{"climbing":"route"},"addTags":{"climbing":"route","sport":"climbing"}},"climbing/crag":{"icon":"temaki-climbing","fields":["name"],"moreFields":["website"],"geometry":["point"],"tags":{"climbing":"crag"},"addTags":{"sport":"climbing","climbing":"crag"}},"cemetery/sector":{"icon":"maki-cemetery","fields":["name","ref_sector"],"geometry":["point","area"],"tags":{"cemetery":"sector"}},"cemetery/grave":{"icon":"maki-cemetery","fields":["name","inscription"],"moreFields":["description"],"geometry":["point","area"],"tags":{"cemetery":"grave"}},"building/warehouse":{"icon":"maki-warehouse","fields":["{building}","phone"],"geometry":["area"],"tags":{"building":"warehouse"},"matchScore":0.5},"building/university":{"icon":"fas-school","moreFields":["{building}","polling_station"],"geometry":["area"],"tags":{"building":"university"},"matchScore":0.5},"building/transportation":{"icon":"maki-building","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"transportation"},"matchScore":0.5},"building/terrace":{"icon":"temaki-row_houses","geometry":["area"],"tags":{"building":"terrace"},"matchScore":0.5},"building/temple":{"icon":"maki-place-of-worship","geometry":["area"],"tags":{"building":"temple"},"matchScore":0.5},"building/synagogue":{"icon":"fas-synagogue","geometry":["area"],"tags":{"building":"synagogue"},"matchScore":0.5},"building/sty":{"icon":"temaki-barn","geometry":["area"],"tags":{"building":"sty"},"matchScore":0.5},"building/static_caravan":{"icon":"temaki-manufactured_home","geometry":["area"],"tags":{"building":"static_caravan"},"matchScore":0.5},"building/stadium":{"icon":"maki-stadium","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"stadium"},"matchScore":0.5},"building/stable":{"icon":"temaki-horse_shelter","geometry":["area"],"tags":{"building":"stable"},"matchScore":0.5},"building/shed":{"icon":"fas-warehouse","fields":["{building}","lockable"],"geometry":["area"],"tags":{"building":"shed"},"matchScore":0.5},"building/service":{"icon":"maki-building","geometry":["area"],"tags":{"building":"service"},"matchScore":0.5},"building/semidetached_house":{"icon":"maki-home","geometry":["area"],"tags":{"building":"semidetached_house"},"matchScore":0.5},"building/school":{"icon":"fas-school","moreFields":["{building}","polling_station"],"geometry":["area"],"tags":{"building":"school"},"matchScore":0.5},"building/ruins":{"icon":"temaki-ruins","geometry":["area"],"tags":{"building":"ruins"},"matchScore":0.5},"building/roof":{"icon":"maki-shelter","fields":["building","height","layer_1"],"moreFields":["address","architect","building/colour","building/levels","building/levels/underground","building/material","building/prefabricated","ele","gnis/feature_id-US","not/name","operator","roof/colour","roof/shape","roof/height"],"geometry":["area"],"tags":{"building":"roof"},"matchScore":0.5},"building/riding_hall":{"icon":"maki-horse-riding","geometry":["area"],"tags":{"building":"riding_hall"},"matchScore":0.5},"building/retail":{"icon":"maki-commercial","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"retail"},"matchScore":0.5},"building/residential":{"icon":"maki-residential-community","geometry":["area"],"tags":{"building":"residential"},"matchScore":0.5},"building/public":{"icon":"maki-building","fields":["{building}","smoking"],"moreFields":["{building}","polling_station"],"geometry":["area"],"tags":{"building":"public"},"matchScore":0.5},"building/pavilion":{"icon":"maki-building","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"pavilion"},"matchScore":0.5},"building/office":{"icon":"maki-suitcase","fields":["{building}","smoking"],"moreFields":["{building}","phone"],"geometry":["area"],"tags":{"building":"office"},"matchScore":0.5},"building/mosque":{"icon":"fas-mosque","geometry":["area"],"tags":{"building":"mosque"},"matchScore":0.5},"building/kindergarten":{"icon":"fas-school","geometry":["area"],"tags":{"building":"kindergarten"},"matchScore":0.5},"building/industrial":{"icon":"maki-industry","geometry":["area"],"tags":{"building":"industrial"},"matchScore":0.5},"building/hut":{"icon":"temaki-hut","geometry":["area"],"tags":{"building":"hut"},"matchScore":0.5},"building/houseboat":{"icon":"temaki-houseboat","geometry":["area"],"tags":{"building":"houseboat"},"matchScore":0.5},"building/house":{"icon":"maki-home","geometry":["area"],"fields":["house","{building}"],"tags":{"building":"house"},"matchScore":0.5},"building/hotel":{"icon":"fas-hotel","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"hotel"},"matchScore":0.5},"building/hospital":{"icon":"fas-hospital-alt","geometry":["area"],"tags":{"building":"hospital"},"matchScore":0.5},"building/hangar":{"icon":"temaki-hangar","fields":["name"],"geometry":["area"],"tags":{"building":"hangar"},"matchScore":0.5},"building/greenhouse":{"icon":"maki-garden-centre","geometry":["area"],"tags":{"building":"greenhouse"},"matchScore":0.5},"building/grandstand":{"icon":"maki-building","geometry":["area"],"tags":{"building":"grandstand"},"matchScore":0.5},"building/ger":{"icon":"temaki-hut","geometry":["area"],"tags":{"building":"ger"}},"building/garages":{"icon":"fas-warehouse","fields":["capacity"],"moreFields":["building","building/levels","height","address","{building}"],"geometry":["area"],"tags":{"building":"garages"},"matchScore":0.5},"building/garage":{"icon":"fas-warehouse","fields":["{building/garages}"],"moreFields":["{building/garages}"],"geometry":["area"],"tags":{"building":"garage"},"matchScore":0.5},"building/fire_station":{"icon":"fas-house-fire","geometry":["area"],"tags":{"building":"fire_station"},"matchScore":0.5},"building/farm_auxiliary":{"icon":"maki-farm","geometry":["area"],"tags":{"building":"farm_auxiliary"},"matchScore":0.5},"building/farm":{"icon":"maki-farm","geometry":["area"],"tags":{"building":"farm"},"matchScore":0.5},"building/dormitory":{"icon":"maki-building","fields":["{building}","smoking"],"geometry":["area"],"tags":{"building":"dormitory"},"matchScore":0.5},"building/detached":{"icon":"maki-home","geometry":["area"],"tags":{"building":"detached"},"matchScore":0.5},"building/cowshed":{"icon":"temaki-barn","geometry":["area"],"tags":{"building":"cowshed"},"matchScore":0.5},"building/construction":{"icon":"maki-building","fields":["name","construction","address","opening_date","check_date"],"geometry":["area"],"tags":{"building":"construction"},"removeTags":{"building":"construction","construction":"*"},"matchScore":0.5},"building/commercial":{"icon":"maki-suitcase","fields":["{building}","smoking"],"moreFields":["{building}","phone"],"geometry":["area"],"tags":{"building":"commercial"},"matchScore":0.5},"building/college":{"icon":"fas-school","moreFields":["{building}","polling_station"],"geometry":["area"],"tags":{"building":"college"},"matchScore":0.5},"building/civic":{"icon":"maki-building","fields":["{building}","smoking"],"moreFields":["{building}","polling_station"],"geometry":["area"],"tags":{"building":"civic"},"matchScore":0.5},"building/church":{"icon":"fas-church","geometry":["area"],"tags":{"building":"church"},"matchScore":0.5},"building/chapel":{"icon":"maki-place-of-worship","geometry":["area"],"tags":{"building":"chapel"},"matchScore":0.5},"building/cathedral":{"icon":"fas-church","geometry":["area"],"tags":{"building":"cathedral"},"matchScore":0.5},"building/carport":{"icon":"temaki-carport","fields":["{building}","capacity"],"geometry":["area"],"tags":{"building":"carport"},"matchScore":0.5},"building/cabin":{"icon":"temaki-cabin","geometry":["area"],"tags":{"building":"cabin"},"matchScore":0.5},"building/bungalow":{"icon":"maki-home","geometry":["area"],"tags":{"building":"bungalow"},"matchScore":0.5},"building/boathouse":{"icon":"maki-harbor","geometry":["area"],"tags":{"building":"boathouse"},"matchScore":0.5},"building/barn":{"icon":"temaki-barn","geometry":["area"],"tags":{"building":"barn"},"matchScore":0.5},"building/bakehouse":{"icon":"temaki-bread","geometry":["area"],"tags":{"building":"bakehouse"},"matchScore":0.5},"building/apartments":{"icon":"maki-building","fields":["{building}","building/flats"],"geometry":["area"],"tags":{"building":"apartments"},"matchScore":0.5},"building/allotment_house":{"icon":"maki-building","geometry":["area"],"tags":{"building":"allotment_house"},"matchScore":0.5},"building/train_station":{"icon":"maki-building","geometry":["point","vertex","area"],"tags":{"building":"train_station"},"matchScore":0.5,"searchable":false},"building/outbuilding":{"icon":"maki-building","geometry":["area"],"tags":{"building":"outbuilding"},"matchScore":0.5,"searchable":false},"building/manufacture":{"icon":"maki-industry","geometry":["area"],"tags":{"building":"manufacture"},"matchScore":0.5,"searchable":false},"building/entrance":{"icon":"maki-entrance-alt1","geometry":["vertex"],"tags":{"building":"entrance"},"searchable":false},"building/bunker":{"icon":"temaki-bunker","geometry":["area"],"tags":{"building":"bunker"},"fields":["{military/bunker}","{building}"],"moreFields":["{military/bunker}","{building}"],"matchScore":0.5,"searchable":false},"building/house/terraced":{"icon":"temaki-row_houses","geometry":["area"],"fields":["house","{building}"],"tags":{"building":"house","house":"terraced"},"reference":{"key":"house","value":"terraced"},"matchScore":0.5},"building/house/terrace":{"icon":"temaki-row_houses","geometry":["area"],"fields":["house","{building}"],"tags":{"building":"house","house":"terrace"},"reference":{"key":"house","value":"terrace"},"matchScore":0.5,"name":"{building/terrace}","searchable":false},"building/house/semi-detached":{"icon":"maki-home","geometry":["area"],"fields":["house","{building}"],"tags":{"building":"house","house":"semi-detached"},"reference":{"key":"house","value":"semi-detached"},"matchScore":0.5,"name":"{building/semidetached_house}","searchable":false},"building/house/detached":{"icon":"maki-home","geometry":["area"],"fields":["house","{building}"],"tags":{"building":"house","house":"detached"},"reference":{"key":"house","value":"detached"},"matchScore":0.5,"name":"{building/detached}","searchable":false},"bridge/support":{"icon":"fas-archway","fields":["bridge/support","height","layer","material"],"moreFields":["colour","seamark/type"],"geometry":["point","vertex","area"],"tags":{"bridge:support":"*"}},"bridge/support/pier":{"icon":"fas-archway","fields":["bridge/support","{bridge/support}"],"geometry":["point","vertex","area"],"tags":{"bridge:support":"pier"}},"boundary/hazard":{"icon":"fas-triangle-exclamation","fields":["name","hazard_boundary"],"geometry":["area"],"tags":{"boundary":"hazard"}},"boundary/administrative":{"fields":["name","admin_level"],"geometry":["line"],"tags":{"boundary":"administrative"},"matchScore":0.5},"barrier/wicket_gate":{"icon":"temaki-gate","geometry":["vertex","line"],"fields":["access"],"moreFields":["entrance"],"tags":{"barrier":"wicket_gate"}},"barrier/wall":{"icon":"temaki-wall","fields":["wall","height","material"],"geometry":["line","area"],"tags":{"barrier":"wall"},"matchScore":0.25},"barrier/turnstile":{"icon":"temaki-turnstile","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"turnstile"}},"barrier/toll_booth":{"icon":"maki-toll","fields":["access","building_area_yes","payment_multi","currency_multi"],"moreFields":["{@templates/contact}","address","opening_hours"],"geometry":["vertex","area"],"tags":{"barrier":"toll_booth"}},"barrier/swing_gate":{"icon":"temaki-gate","fields":["{barrier/gate}"],"moreFields":["{barrier/gate}"],"geometry":["vertex"],"tags":{"barrier":"swing_gate"}},"barrier/stile":{"icon":"temaki-stile_squeezer","fields":["access","stile","material"],"geometry":["vertex"],"tags":{"barrier":"stile"}},"barrier/spikes":{"icon":"temaki-spike_strip","fields":["direction_vertex","access","height","colour"],"geometry":["vertex"],"tags":{"barrier":"spikes"},"matchScore":0.5},"barrier/sally_port":{"icon":"fas-dungeon","geometry":["vertex"],"tags":{"barrier":"sally_port"}},"barrier/rope":{"icon":"temaki-rope_fence","fields":["access"],"geometry":["vertex","line"],"tags":{"barrier":"rope"}},"barrier/retaining_wall":{"icon":"temaki-wall","fields":["height","material"],"geometry":["line","area"],"tags":{"barrier":"retaining_wall"}},"barrier/motorcycle_barrier":{"icon":"maki-roadblock","fields":["access"],"moreFields":["wheelchair"],"geometry":["vertex"],"tags":{"barrier":"motorcycle_barrier"}},"barrier/log":{"icon":"maki-roadblock","fields":["access"],"geometry":["vertex","point","line"],"tags":{"barrier":"log"}},"barrier/lift_gate":{"icon":"temaki-lift_gate","fields":["lift_gate/type","access","locked","opening_hours"],"moreFields":["{barrier}"],"geometry":["vertex"],"tags":{"barrier":"lift_gate"}},"barrier/kissing_gate":{"icon":"temaki-gate","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"kissing_gate"}},"barrier/kerb":{"icon":"temaki-kerb-unspecified","fields":["kerb/kerb_barrier","tactile_paving","wheelchair","two_sided"],"moreFields":["material"],"geometry":["vertex","line"],"tags":{"barrier":"kerb"},"matchScore":0.5},"barrier/jersey_barrier":{"icon":"maki-roadblock","fields":["height","material"],"moreFields":["access"],"geometry":["vertex","line"],"tags":{"barrier":"jersey_barrier"}},"barrier/height_restrictor":{"icon":"temaki-height_restrictor","fields":["maxheight"],"moreFields":["direction_vertex"],"geometry":["vertex"],"tags":{"barrier":"height_restrictor"}},"barrier/hedge":{"icon":"temaki-hedge","fields":["height"],"moreFields":["species/wikidata"],"geometry":["line","area"],"tags":{"barrier":"hedge"},"matchScore":0.25},"barrier/hampshire_gate":{"icon":"temaki-gate","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"hampshire_gate"}},"barrier/guard_rail":{"icon":"temaki-guard_rail","fields":["material"],"moreFields":["{barrier}","two_sided"],"geometry":["line"],"tags":{"barrier":"guard_rail"},"matchScore":0.75},"barrier/gate":{"icon":"temaki-gate","fields":["access","locked","wheelchair","opening_hours","height","material"],"moreFields":["colour","manufacturer","operator","ref"],"geometry":["vertex","line"],"tags":{"barrier":"gate"}},"barrier/full-height_turnstile":{"icon":"maki-roadblock","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"full-height_turnstile"}},"barrier/fence":{"icon":"maki-fence","fields":["fence_type","height","material"],"geometry":["line"],"tags":{"barrier":"fence"},"matchScore":0.25},"barrier/ditch":{"icon":"temaki-trench","geometry":["line"],"tags":{"barrier":"ditch"},"matchScore":0.25},"barrier/cycle_barrier":{"icon":"temaki-cycle_barrier","fields":["access","wheelchair","cycle_barrier","maxwidth/physical","opening","spacing","overlap","deflection"],"moreFields":["cycle_barrier/installation"],"geometry":["vertex"],"tags":{"barrier":"cycle_barrier"}},"barrier/city_wall":{"icon":"temaki-wall","fields":["height","material"],"moreFields":["{barrier}","two_sided"],"geometry":["line","area"],"tags":{"barrier":"city_wall"}},"barrier/chain":{"icon":"temaki-rope_fence","fields":["access","locked"],"geometry":["vertex","line"],"tags":{"barrier":"chain"}},"barrier/cattle_grid":{"icon":"temaki-cattle_grid","geometry":["vertex"],"tags":{"barrier":"cattle_grid"}},"barrier/cable_barrier":{"icon":"maki-roadblock","fields":["height","material"],"geometry":["line"],"tags":{"barrier":"cable_barrier"}},"barrier/bus_trap":{"icon":"maki-roadblock","fields":["access"],"moreFields":["maxwidth"],"geometry":["vertex"],"tags":{"barrier":"bus_trap"}},"barrier/bump_gate":{"icon":"maki-roadblock","fields":["access"],"geometry":["vertex"],"tags":{"barrier":"bump_gate"}},"barrier/border_control":{"icon":"temaki-passport_checkpoint","fields":["access","building_area_yes"],"moreFields":["{@templates/contact}","address"],"geometry":["vertex","area"],"tags":{"barrier":"border_control"}},"barrier/bollard_line":{"icon":"temaki-bollard_row","fields":["access","bollard","height","material","colour"],"geometry":["line"],"tags":{"barrier":"bollard"}},"barrier/bollard":{"icon":"temaki-bollard","fields":["access","bollard","height","width","material","colour"],"geometry":["point","vertex"],"tags":{"barrier":"bollard"}},"barrier/block":{"icon":"fas-cube","fields":["access","material"],"geometry":["point","vertex"],"tags":{"barrier":"block"}},"barrier/yes":{"icon":"maki-roadblock","geometry":["point","vertex","line","area"],"tags":{"barrier":"yes"},"fields":["barrier"],"searchable":false,"matchScore":0.5},"barrier/planter":{"icon":"maki-garden","fields":["access","material"],"geometry":["vertex"],"tags":{"barrier":"planter","man_made":"planter"},"searchable":false},"barrier/handrail":{"icon":"temaki-railing","geometry":["line"],"tags":{"barrier":"handrail"},"searchable":false},"barrier/entrance":{"icon":"maki-entrance-alt1","geometry":["vertex"],"tags":{"barrier":"entrance"},"searchable":false},"barrier/wall/noise_barrier":{"icon":"temaki-wall","geometry":["line","area"],"tags":{"barrier":"wall","wall":"noise_barrier"},"matchScore":0.27},"barrier/kerb/rolled":{"icon":"temaki-kerb-rolled","fields":["{barrier/kerb}","kerb/height"],"geometry":["vertex","line"],"tags":{"barrier":"kerb","kerb":"rolled"},"reference":{"key":"kerb","value":"rolled"},"matchScore":0.55},"barrier/kerb/raised":{"icon":"temaki-kerb-raised","fields":["{barrier/kerb}","kerb/height"],"geometry":["vertex","line"],"tags":{"barrier":"kerb","kerb":"raised"},"reference":{"key":"kerb","value":"raised"},"matchScore":0.55},"barrier/kerb/lowered":{"icon":"temaki-kerb-lowered","fields":["{barrier/kerb}","kerb/height"],"geometry":["vertex","line"],"tags":{"barrier":"kerb","kerb":"lowered"},"reference":{"key":"kerb","value":"lowered"},"matchScore":0.55},"barrier/kerb/flush":{"icon":"temaki-kerb-flush","geometry":["vertex","line"],"tags":{"barrier":"kerb","kerb":"flush"},"reference":{"key":"kerb","value":"flush"},"matchScore":0.55},"barrier/fence/railing":{"icon":"temaki-railing","geometry":["line"],"tags":{"barrier":"fence","fence_type":"railing"},"matchScore":0.5},"attraction/water_slide":{"icon":"roentgen-slide_and_water","fields":["{attraction}","height","layer"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","line"],"tags":{"attraction":"water_slide"}},"attraction/train":{"icon":"temaki-train_kids","fields":["{attraction}","fee","charge_fee"],"geometry":["point","line"],"tags":{"attraction":"train"}},"attraction/swing_carousel":{"icon":"temaki-tower","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"swing_carousel"}},"attraction/summer_toboggan":{"icon":"temaki-sledding","moreFields":["{attraction}","max_age","min_age"],"geometry":["line"],"tags":{"attraction":"summer_toboggan"}},"attraction/roller_coaster":{"icon":"temaki-roller_coaster","moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"roller_coaster"}},"attraction/river_rafting":{"icon":"maki-ferry","moreFields":["{attraction}","max_age","min_age"],"geometry":["point","line"],"tags":{"attraction":"river_rafting"}},"attraction/pirate_ship":{"icon":"maki-danger","moreFields":["{attraction}","max_age","min_age"],"geometry":["point"],"tags":{"attraction":"pirate_ship"}},"attraction/maze":{"icon":"temaki-maze","moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"maze"}},"attraction/log_flume":{"icon":"maki-ferry","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","line","area"],"tags":{"attraction":"log_flume"}},"attraction/kiddie_ride":{"icon":"temaki-amusement_park","fields":["{attraction}","fee","payment_multi_fee","charge_fee"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point"],"tags":{"attraction":"kiddie_ride"}},"attraction/drop_tower":{"icon":"temaki-tower","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"drop_tower"}},"attraction/dark_ride":{"icon":"maki-rail-metro","fields":["{attraction}","building_area_yes"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","line","area"],"tags":{"attraction":"dark_ride"}},"attraction/carousel":{"icon":"temaki-amusement_park","fields":["{attraction}","building_area_yes"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"carousel"}},"attraction/bungee_jumping":{"icon":"maki-pitch","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"bungee_jumping"}},"attraction/bumper_car":{"icon":"fas-car-crash","moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"bumper_car"}},"attraction/big_wheel":{"icon":"maki-amusement-park","fields":["{attraction}","height"],"moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"big_wheel"}},"attraction/animal":{"icon":"maki-zoo","fields":["name","operator","species/wikidata"],"moreFields":["{attraction}","opening_hours"],"geometry":["point","area"],"tags":{"attraction":"animal"}},"attraction/amusement_ride":{"icon":"maki-amusement-park","moreFields":["{attraction}","max_age","min_age"],"geometry":["point","area"],"tags":{"attraction":"amusement_ride"}},"area/highway":{"fields":["area/highway","surface"],"geometry":["area"],"tags":{"area:highway":"*"}},"area/footway":{"fields":["surface"],"geometry":["area"],"tags":{"area:highway":"footway"}},"area/highway/traffic_island":{"geometry":["area"],"tags":{"area:highway":"traffic_island"}},"amenity/weighbridge":{"icon":"fas-weight","fields":["ref","operator","access_simple","maxweight"],"moreFields":["address","colour","lit","manufacturer","material","wheelchair"],"geometry":["point","vertex","line"],"tags":{"amenity":"weighbridge"}},"amenity/watering_place":{"icon":"maki-drinking-water","fields":["operator","fee","payment_multi_fee","charge_fee","opening_hours"],"geometry":["point","vertex","area"],"tags":{"amenity":"watering_place"}},"amenity/water_point":{"icon":"maki-drinking-water","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","opening_hours"],"moreFields":["covered","drinking_water","lit","ref"],"geometry":["point","vertex","area"],"tags":{"amenity":"water_point"}},"amenity/waste_transfer_station":{"icon":"fas-trash-restore","fields":["name","operator","operator/type","waste","address","opening_hours","fee","payment_multi_fee","charge_fee"],"moreFields":["{@templates/contact}","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"waste_transfer_station"}},"amenity/waste_disposal":{"icon":"fas-dumpster","fields":["operator","waste","collection_times","access_simple"],"moreFields":["branch_brand","brand","colour","height","manufacturer","material"],"geometry":["point","vertex","area"],"tags":{"amenity":"waste_disposal"}},"amenity/waste_basket":{"icon":"maki-waste-basket","fields":["operator","waste","collection_times","material","colour"],"moreFields":["covered","indoor","manufacturer"],"geometry":["point","vertex"],"tags":{"amenity":"waste_basket"}},"amenity/veterinary_pharmacy":{"icon":"temaki-veterinary_care","fields":["{amenity/pharmacy}"],"moreFields":["{amenity/pharmacy}"],"geometry":["point","area"],"tags":{"amenity":"veterinary_pharmacy"}},"amenity/veterinary":{"icon":"temaki-veterinary_care","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/poi}","charge_fee","fee"],"geometry":["point","area"],"tags":{"amenity":"veterinary"}},"amenity/vending_machine":{"icon":"temaki-vending_machine","fields":["vending","ref","operator","payment_multi","currency_multi"],"moreFields":["blind","branch_brand","brand","covered","height","indoor","level","manufacturer"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine"},"matchScore":0.9},"amenity/vehicle_inspection":{"icon":"maki-car","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"vehicle_inspection"}},"amenity/vacuum_cleaner":{"icon":"temaki-vacuum_station","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","covered","lit"],"moreFields":["branch_brand","brand","manufacturer","opening_hours","ref/FR/siret-FR","ref"],"geometry":["point"],"tags":{"amenity":"vacuum_cleaner"}},"amenity/trolley_bay":{"icon":"fas-shopping-cart","fields":["capacity","deposit/trolley","payment_multi_fee"],"moreFields":["brand","covered","fee","indoor","opening_hours","operator"],"geometry":["point","area"],"tags":{"amenity":"trolley_bay"}},"amenity/toy_library":{"icon":"fas-chess-knight","fields":["operator","address","building_area_yes","opening_hours"],"moreFields":["level","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"toy_library"}},"amenity/townhall":{"icon":"temaki-town_hall","fields":["name","operator","townhall/type","address","building_area_yes"],"moreFields":["baby_feeding","{@templates/contact}","gnis/feature_id-US","polling_station","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"townhall"}},"amenity/toilets":{"icon":"maki-toilet","fields":["toilets/disposal","access_simple","gender","changing_table","wheelchair","building_area_yes"],"moreFields":["charge_fee","fee","level","opening_hours","operator","payment_multi_fee","portable","toilets/handwashing","toilets/menstrual_products","toilets/position"],"geometry":["point","vertex","area"],"tags":{"amenity":"toilets"}},"amenity/ticket_validator":{"icon":"temaki-vending_tickets","fields":["ref","operator"],"moreFields":["colour","covered","indoor","level","model","support"],"geometry":["point","vertex"],"tags":{"amenity":"ticket_validator"}},"amenity/theatre":{"icon":"maki-theatre","fields":["name","operator","address","building_area_yes","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","min_age"],"geometry":["point","area"],"tags":{"amenity":"theatre"}},"amenity/telephone":{"icon":"fas-phone-alt","fields":["operator","phone","payment_multi","covered"],"moreFields":["{@templates/internet_access}","booth","fee","indoor","level","lit","model","ref","sms","video_calls","wheelchair"],"geometry":["point","vertex"],"tags":{"amenity":"telephone"}},"amenity/taxi":{"icon":"fas-taxi","fields":["name","operator","capacity","address"],"moreFields":["access_simple","branch_brand","brand","opening_hours","taxi_vehicle","wheelchair"],"geometry":["point","vertex","area"],"tags":{"amenity":"taxi"}},"amenity/swingerclub":{"icon":"maki-heart","fields":["{amenity/nightclub}","smoking"],"moreFields":["{@templates/poi}","air_conditioning","fee"],"geometry":["point","area"],"tags":{"amenity":"swingerclub"}},"amenity/studio":{"icon":"fas-microphone","fields":["name","studio","address","building_area_yes","website"],"moreFields":["{@templates/contact}","{@templates/internet_access}","gnis/feature_id-US","level","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"studio"}},"amenity/stripclub":{"icon":"roentgen-pole_dancer","fields":["name","operator","address","building_area_yes","opening_hours","min_age","smoking"],"moreFields":["{@templates/poi}","air_conditioning","fee"],"geometry":["point","area"],"tags":{"amenity":"stripclub"}},"amenity/social_facility":{"icon":"temaki-social_facility","fields":["name","operator","operator/type","address","social_facility","social_facility_for"],"moreFields":["{@templates/internet_access}","{@templates/poi}","baby_feeding","fhrs/id-GB","building_area"],"geometry":["point","area"],"tags":{"amenity":"social_facility"}},"amenity/social_centre":{"icon":"fas-handshake","fields":["name","brand","operator","operator/type","address","building_area_yes"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","baby_feeding","branch_brand","polling_station"],"geometry":["point","area"],"tags":{"amenity":"social_centre"}},"amenity/smoking_area":{"icon":"fas-smoking","fields":["name","shelter","bin","bench","opening_hours"],"moreFields":["covered","level","lit","wheelchair"],"geometry":["point","vertex","area"],"tags":{"amenity":"smoking_area"}},"amenity/shower":{"icon":"temaki-shower","fields":["opening_hours","access_simple","fee","payment_multi_fee","charge_fee","supervised","building_area_yes","hot_water","wheelchair"],"moreFields":["address","gender","level","operator"],"geometry":["point","vertex","area"],"tags":{"amenity":"shower"}},"amenity/shelter":{"icon":"maki-shelter","fields":["name","operator","shelter_type","building_area_yes","bench","bin"],"moreFields":["gnis/feature_id-US","lit","lockable","wheelchair"],"geometry":["point","vertex","area"],"tags":{"amenity":"shelter"}},"amenity/sanitary_dump_station":{"icon":"temaki-camper_trailer_dump","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","water_point"],"moreFields":["opening_hours"],"geometry":["point","vertex","area"],"tags":{"amenity":"sanitary_dump_station"}},"amenity/restaurant":{"icon":"maki-restaurant","fields":["name","cuisine","diet_multi","address","building_area_yes","opening_hours","phone","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","bar","branch_brand","brand","brewery","capacity","changing_table","delivery","fhrs/id-GB","highchair","microbrewery","min_age","organic","outdoor_seating","reservation","smoking","sport/sport_pub","stars","takeaway","toilets","toilets/wheelchair","toilets/menstrual_products_poi","website/menu"],"geometry":["point","area"],"tags":{"amenity":"restaurant"}},"amenity/research_institute":{"icon":"fas-flask","fields":["name","operator","operator/type","address","website","{@templates/internet_access}"],"moreFields":["{@templates/contact}","{@templates/internet_access}","gnis/feature_id-US","toilets","toilets/wheelchair","toilets/menstrual_products_poi","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"research_institute"}},"amenity/refugee_site":{"icon":"temaki-tents","fields":["name","operator","operator/type","informal","start_date","capacity","population","population/date","source/population"],"moreFields":["{@templates/internet_access}"],"geometry":["point","area"],"tags":{"amenity":"refugee_site"}},"amenity/recycling_container":{"icon":"maki-recycling","fields":["operator","recycling_accepts","opening_hours","collection_times"],"moreFields":["colour","covered","indoor","level","manufacturer","material","ref"],"geometry":["point","area"],"tags":{"amenity":"recycling","recycling_type":"container"},"reference":{"key":"recycling_type","value":"container"}},"amenity/recycling_centre":{"icon":"maki-recycling","fields":["name","operator","operator/type","address","building","opening_hours","recycling_accepts"],"moreFields":["{@templates/contact}","charge_fee","fee","payment_multi_fee","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"recycling","recycling_type":"centre"},"reference":{"key":"recycling_type","value":"centre"}},"amenity/ranger_station":{"icon":"maki-ranger-station","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/contact}","{@templates/internet_access}","gnis/feature_id-US","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"ranger_station"}},"amenity/public_bookcase":{"icon":"maki-library","fields":["name","public_bookcase/type","operator","capacity","lit"],"moreFields":["access_simple","address","branch_brand","books","brand","colour","covered","direction","email","height","indoor","level","location","opening_hours","phone","ref","support","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"public_bookcase"}},"amenity/public_bath":{"icon":"fas-water-ladder","fields":["name","bath/type","bath/open_air","address","building_area","fee","charge_fee"],"moreFields":["{@templates/internet_access}","{@templates/poi}","bath/sand_bath-JP"],"geometry":["point","area"],"tags":{"amenity":"public_bath"}},"amenity/pub":{"icon":"maki-beer","fields":["name","address","building_area_yes","opening_hours","smoking","brewery"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","cuisine","diet_multi","microbrewery","fhrs/id-GB","min_age","outdoor_seating","real_fire-GB-IE","sport/sport_pub","toilets","toilets/wheelchair","toilets/menstrual_products_poi","website/menu"],"geometry":["point","area"],"tags":{"amenity":"pub"}},"amenity/prison":{"icon":"maki-prison","fields":["name","operator","operator/type","address"],"moreFields":["{@templates/contact}","gnis/feature_id-US","wheelchair"],"geometry":["area","point"],"tags":{"amenity":"prison"}},"amenity/post_office":{"icon":"maki-post","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/contact}","{@templates/internet_access}","branch_brand","brand","gnis/feature_id-US","level","ref/FR/siret-FR","payment_multi","polling_station","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"post_office"}},"amenity/post_depot":{"icon":"fas-mail-bulk","fields":["name","operator","address","building_area","phone"],"moreFields":["{@templates/contact}","gnis/feature_id-US","opening_hours","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"post_depot"}},"amenity/post_box":{"icon":"temaki-post_box","fields":["operator","collection_times","ref","post_box/type-GB","royal_cypher-GB"],"moreFields":["access_simple","branch_brand","brand","colour","covered","drive_through","height","indoor","level","manufacturer","material","post_box/type","support","wheelchair"],"geometry":["point","vertex"],"tags":{"amenity":"post_box"},"locationSet":{"exclude":["us"]}},"amenity/polling_station":{"icon":"fas-vote-yea","fields":["name","ref","operator","address","opening_hours","building_area_yes"],"moreFields":["{@templates/contact}","{@templates/internet_access}","air_conditioning","gnis/feature_id-US","level","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"polling_station"},"addTags":{"amenity":"polling_station","polling_station":"yes"}},"amenity/police":{"icon":"temaki-police_officer","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/contact}","gnis/feature_id-US","level","polling_station","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"police"}},"amenity/planetarium":{"icon":"maki-globe","fields":["name","operator","address","building_area_yes","opening_hours"],"moreFields":["{@templates/poi}","air_conditioning","charge_fee","fee"],"geometry":["point","area"],"tags":{"amenity":"planetarium"}},"amenity/place_of_worship":{"icon":"maki-place-of-worship","fields":["name","religion","denomination","address","building_area_yes","service_times"],"moreFields":["{@templates/contact}","air_conditioning","baby_feeding","gnis/feature_id-US","internet_access","internet_access/ssid","level","opening_hours","polling_station","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship"}},"amenity/photo_booth":{"icon":"fas-person-booth","fields":["name","operator","payment_multi","wheelchair"],"moreFields":["branch_brand","brand","indoor","level"],"geometry":["point","area"],"tags":{"amenity":"photo_booth"}},"amenity/pharmacy":{"icon":"maki-pharmacy","fields":["name","operator","address","building_area_yes","opening_hours","dispensing","drive_through","opening_hours/drive_through"],"moreFields":["{@templates/poi}","branch_brand","brand"],"geometry":["point","area"],"tags":{"amenity":"pharmacy"},"addTags":{"amenity":"pharmacy","healthcare":"pharmacy"},"reference":{"key":"amenity","value":"pharmacy"}},"amenity/payment_terminal":{"icon":"far-credit-card","fields":["name","brand","address","opening_hours","payment_multi"],"moreFields":["branch_brand","ref","covered","currency_multi","indoor","level","wheelchair"],"geometry":["point"],"tags":{"amenity":"payment_terminal"}},"amenity/payment_centre":{"icon":"temaki-money_hand","fields":["name","brand","address","building_area_yes","opening_hours","payment_multi"],"moreFields":["{@templates/poi}","branch_brand","currency_multi"],"geometry":["point","area"],"tags":{"amenity":"payment_centre"}},"amenity/parking_space":{"icon":"temaki-parking_space","fields":["parking_space","capacity","access_simple"],"geometry":["area","point","vertex"],"tags":{"amenity":"parking_space"},"matchScore":0.95},"amenity/parking_entrance":{"icon":"maki-entrance-alt1","fields":["parking_entrance","ref","access_simple","address","level","maxheight"],"geometry":["vertex"],"tags":{"amenity":"parking_entrance"}},"amenity/parking":{"icon":"temaki-car_parked","fields":["operator","operator/type","parking","capacity_parking","capacity/disabled_parking","access_simple","fee","payment_multi_fee","charge_fee","surface"],"moreFields":["{@templates/contact}","address","covered","maxstay","opening_hours","park_ride","ref","supervised","wheelchair"],"geometry":["area","point","vertex"],"tags":{"amenity":"parking"}},"amenity/parcel_locker":{"icon":"temaki-vending_lockers","fields":["operator","parcel_pickup","parcel_dropoff","opening_hours","payment_multi","ref","wheelchair"],"moreFields":["brand","collection_times","colour","indoor","surveillance"],"geometry":["point","vertex","area"],"tags":{"amenity":"parcel_locker"},"reference":{"key":"amenity","value":"parcel_locker"}},"amenity/nightclub":{"icon":"fas-cocktail","fields":["name","operator","address","building_area_yes","opening_hours","min_age","smoking"],"moreFields":["{@templates/poi}","air_conditioning","fhrs/id-GB","fee"],"geometry":["point","area"],"tags":{"amenity":"nightclub"}},"amenity/motorcycle_rental":{"icon":"temaki-motorcycle_rental","fields":["name","operator","address","opening_hours","payment_multi"],"moreFields":["{@templates/poi}","branch_brand","brand"],"geometry":["point","area"],"tags":{"amenity":"motorcycle_rental"}},"amenity/motorcycle_parking":{"icon":"fas-motorcycle","fields":["capacity_parking","operator","covered","access_simple"],"geometry":["point","vertex","area"],"tags":{"amenity":"motorcycle_parking"}},"amenity/mortuary":{"icon":"maki-cemetery","fields":["name","operator","address"],"moreFields":["religion","denomination"],"geometry":["point","area"],"tags":{"amenity":"mortuary"}},"amenity/money_transfer":{"icon":"temaki-money_hand","fields":["name","brand","address","building_area_yes","opening_hours","payment_multi","currency_multi"],"moreFields":["{@templates/poi}","branch_brand"],"geometry":["point","area"],"tags":{"amenity":"money_transfer"}},"amenity/monastery":{"icon":"maki-place-of-worship","fields":["name","religion","denomination","address"],"moreFields":["{@templates/contact}","gnis/feature_id-US","wheelchair"],"geometry":["area","point"],"tags":{"amenity":"monastery"}},"amenity/marketplace":{"icon":"fas-store","fields":["name","operator","address","building","opening_hours"],"moreFields":["{@templates/contact}","gnis/feature_id-US","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"marketplace"}},"amenity/luggage_locker":{"icon":"temaki-suitcase_key","fields":["operator","indoor","covered","fee","payment_multi_fee","charge_fee"],"moreFields":["opening_hours","ref"],"geometry":["point"],"tags":{"amenity":"luggage_locker"}},"amenity/love_hotel":{"icon":"maki-heart","fields":["name","operator","address","building_area_yes","rooms","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","min_age","smoking"],"geometry":["point","area"],"tags":{"amenity":"love_hotel"}},"amenity/lounger":{"icon":"temaki-lounger","fields":["material","colour","access_simple","lit"],"moreFields":["height","inscription","level","manufacturer","operator"],"geometry":["point"],"tags":{"amenity":"lounger"}},"amenity/loading_dock":{"icon":"fas-truck-loading","fields":["ref","operator","access_simple","door"],"moreFields":["address","dock/height","dock/width","door/height","door/width","colour","level","lit","maxheight","maxlength","maxwidth","wheelchair"],"geometry":["vertex"],"tags":{"amenity":"loading_dock"}},"amenity/library_dropoff":{"icon":"maki-library","fields":["operator","operator/type"],"moreFields":["collection_times","colour","ref/isil","lit"],"geometry":["point","vertex"],"tags":{"amenity":"library_dropoff"}},"amenity/library":{"icon":"maki-library","fields":["name","operator","operator/type","building_area_yes","opening_hours","address","ref/isil","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","access_simple","air_conditioning","baby_feeding","books","changing_table","polling_station","toilets"],"geometry":["point","area"],"tags":{"amenity":"library"}},"amenity/letter_box":{"icon":"temaki-letter_box","fields":["post","access_simple","height"],"moreFields":["colour","covered","indoor","level","lit","lockable","manufacturer","material","operator","support","wheelchair"],"geometry":["point","vertex"],"tags":{"amenity":"letter_box"}},"amenity/lavoir":{"icon":"temaki-detergent_bottle","fields":["name","operator","operator/type","address","access_simple","building_area"],"moreFields":["gnis/feature_id-US","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"lavoir"}},"amenity/kneipp_water_cure":{"icon":"maki-hospital","fields":["name","kneipp_water_cure_multi","access_simple","opening_hours","fee"],"moreFields":["address","level","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"kneipp_water_cure"}},"amenity/karaoke_box":{"icon":"maki-karaoke","fields":["name","operator","address","building_area_yes","opening_hours","website"],"moreFields":["{@templates/poi}","air_conditioning","min_age","smoking"],"geometry":["point","area"],"tags":{"amenity":"karaoke_box"}},"amenity/internet_cafe":{"icon":"temaki-antenna","fields":["name","operator","operator/type","address","building_area_yes","{@templates/internet_access}","phone","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","min_age","outdoor_seating","smoking"],"geometry":["point","area"],"tags":{"amenity":"internet_cafe"}},"amenity/ice_cream":{"icon":"fas-ice-cream","fields":["name","address","building_area_yes","opening_hours","outdoor_seating"],"moreFields":["{@templates/internet_access}","{@templates/poi}","delivery","diet_multi","drive_through","opening_hours/drive_through","organic","takeaway","toilets","fhrs/id-GB","website/menu"],"geometry":["point","area"],"tags":{"amenity":"ice_cream"}},"amenity/hunting_stand":{"icon":"temaki-hunting_blind","fields":["access_simple","lockable"],"geometry":["point","vertex","area"],"tags":{"amenity":"hunting_stand"}},"amenity/hospital":{"icon":"maki-hospital","fields":["name","operator","operator/type","healthcare/speciality","address","emergency"],"moreFields":["{@templates/internet_access}","{@templates/poi}"],"geometry":["area","point"],"tags":{"amenity":"hospital"},"addTags":{"amenity":"hospital","healthcare":"hospital"},"reference":{"key":"amenity","value":"hospital"}},"amenity/hookah_lounge":{"icon":"fas-smoking","fields":["name","address","building_area_yes","opening_hours","min_age"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","operator","outdoor_seating","smoking"],"geometry":["point","area"],"tags":{"amenity":"hookah_lounge"}},"amenity/grit_bin":{"icon":"fas-box","fields":["operator","access_simple","material","collection_times"],"moreFields":["colour","height","lit"],"geometry":["point","vertex"],"tags":{"amenity":"grit_bin"}},"amenity/grave_yard":{"icon":"maki-cemetery","fields":["religion","address"],"moreFields":["{@templates/contact}","gnis/feature_id-US"],"geometry":["point","area"],"tags":{"amenity":"grave_yard"}},"amenity/give_box":{"icon":"fas-box-open","fields":["name","operator","opening_hours","access_simple"],"moreFields":["address","branch_brand","brand","capacity","covered","email","indoor","level","lit","location","phone","ref","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"give_box"}},"amenity/gambling":{"icon":"fas-coins","fields":["{amenity/casino}"],"moreFields":["{amenity/casino}"],"geometry":["point","area"],"tags":{"amenity":"gambling"}},"amenity/funeral_hall":{"icon":"maki-cemetery","fields":["name","operator","building_area_yes","address"],"moreFields":["religion","denomination"],"geometry":["point","area"],"tags":{"amenity":"funeral_hall"}},"amenity/fuel":{"icon":"maki-fuel","fields":["name","brand","operator","address","fuel/fuel_multi","fuel/fuel_multi-RU","self_service","building_area"],"moreFields":["{@templates/poi}","branch_brand","toilets"],"geometry":["point","area"],"tags":{"amenity":"fuel"}},"amenity/fountain":{"icon":"temaki-fountain","fields":["name","operator","fountain","drinking_water","height","lit"],"moreFields":["covered","indoor","level","manufacturer"],"geometry":["point","area"],"tags":{"amenity":"fountain"}},"amenity/food_court":{"icon":"roentgen-food_court","fields":["name","operator","address","building_area_yes","opening_hours","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","capacity","diet_multi","outdoor_seating","smoking","website/menu"],"geometry":["point","area"],"tags":{"amenity":"food_court"}},"amenity/fire_station":{"icon":"maki-fire-station","fields":["name","operator","address","building_area"],"moreFields":["{@templates/contact}","gnis/feature_id-US","polling_station","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"fire_station"}},"amenity/fast_food":{"icon":"maki-fast-food","fields":["name","cuisine","diet_multi","operator","address","building_area_yes","opening_hours","drive_through","opening_hours/drive_through","phone","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","branch_brand","brand","capacity","changing_table","delivery","highchair","organic","outdoor_seating","smoking","stroller","takeaway","toilets","toilets/wheelchair","toilets/menstrual_products_poi","fhrs/id-GB","website/menu"],"geometry":["point","area"],"tags":{"amenity":"fast_food"}},"amenity/exhibition_centre":{"icon":"fas-user-tie","fields":["name","operator","operator/type","building_area_yes","address","website","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","smoking"],"geometry":["point","area"],"tags":{"amenity":"exhibition_centre"}},"amenity/events_venue":{"icon":"fas-users","fields":["name","operator","building_area_yes","address","website","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","fhrs/id-GB","min_age","smoking"],"geometry":["point","area"],"tags":{"amenity":"events_venue"}},"amenity/driver_training":{"icon":"maki-car","fields":["name","operator","operator/type","address","opening_hours"],"moreFields":["{@templates/poi}","license_classes"],"geometry":["point","area"],"tags":{"amenity":"driver_training"}},"amenity/drinking_water":{"icon":"maki-drinking-water","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","wheelchair"],"moreFields":["bottle","covered","dog_check","indoor","level","lit"],"geometry":["point","vertex"],"tags":{"amenity":"drinking_water"}},"amenity/dressing_room":{"icon":"maki-clothing-store","fields":["operator","access_simple","gender","wheelchair"],"moreFields":["building_area","charge_fee","fee","level","opening_hours","payment_multi_fee","ref"],"geometry":["point","area"],"tags":{"amenity":"dressing_room"}},"amenity/dojo":{"icon":"maki-pitch","fields":["name","sport","address","building_area_yes","opening_hours"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"dojo"}},"amenity/dog_toilet":{"icon":"maki-dog-park","fields":["name","operator","operator/type","address","access_simple","website"],"moreFields":["{@templates/contact}","dog_yes","gnis/feature_id-US","ref"],"geometry":["area","point"],"tags":{"amenity":"dog_toilet"}},"amenity/doctors":{"icon":"maki-doctor","fields":["name","operator","healthcare/speciality","address","building_area_yes","opening_hours"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"doctors"},"addTags":{"amenity":"doctors","healthcare":"doctor"},"reference":{"key":"amenity","value":"doctors"}},"amenity/dive_centre":{"icon":"temaki-scuba_diving","fields":["name","operator","address","building_area_yes","opening_hours","scuba_diving"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"dive_centre"}},"amenity/device_charging_station":{"icon":"temaki-electronic","fields":["access_simple","capacity","fee","payment_multi","level","lockable","opening_hours"],"moreFields":["wheelchair","operator","indoor"],"geometry":["point"],"tags":{"amenity":"device_charging_station"}},"amenity/dentist":{"icon":"maki-dentist","fields":["name","operator","healthcare/speciality","address","building_area_yes","opening_hours"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"dentist"},"addTags":{"amenity":"dentist","healthcare":"dentist"},"reference":{"key":"amenity","value":"dentist"}},"amenity/crematorium":{"icon":"maki-cemetery","fields":["name","opening_hours","wheelchair","phone","website"],"moreFields":["{@templates/contact}","address","gnis/feature_id-US","level","ref/FR/siret-FR"],"geometry":["point","area"],"tags":{"amenity":"crematorium"}},"amenity/courthouse":{"icon":"fas-gavel","fields":["name","operator","address","building_area_yes"],"moreFields":["{@templates/contact}","gnis/feature_id-US","level","polling_station","smoking","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"courthouse"}},"amenity/conference_centre":{"icon":"fas-user-tie","fields":["name","operator","operator/type","building_area_yes","address","website","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","smoking"],"geometry":["point","area"],"tags":{"amenity":"conference_centre"}},"amenity/compressed_air":{"icon":"fas-tachometer-alt","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","covered","lit"],"moreFields":["branch_brand","brand","manufacturer"],"geometry":["point","area"],"tags":{"amenity":"compressed_air"}},"amenity/community_centre":{"icon":"maki-town-hall","fields":["community_centre","name","operator","operator/type","address","building_area_yes","opening_hours","website"],"moreFields":["{@templates/poi}","air_conditioning","baby_feeding","polling_station"],"geometry":["point","area"],"tags":{"amenity":"community_centre"}},"amenity/clock":{"icon":"temaki-clock","fields":["name","support","display","visibility","date","faces"],"moreFields":["covered","height","indoor","level","lit","manufacturer"],"geometry":["point","vertex"],"tags":{"amenity":"clock"}},"amenity/clinic":{"icon":"maki-doctor","fields":["name","operator","operator/type","healthcare/speciality","address","building_area_yes","opening_hours"],"moreFields":["{@templates/poi}","air_conditioning","branch_brand","brand"],"geometry":["point","area"],"tags":{"amenity":"clinic"},"addTags":{"amenity":"clinic","healthcare":"clinic"},"reference":{"key":"amenity","value":"clinic"}},"amenity/cinema":{"icon":"maki-cinema","fields":["name","address","screen","building_area_yes","opening_hours","payment_multi"],"moreFields":["{@templates/poi}","air_conditioning","branch_brand","brand","fhrs/id-GB","min_age"],"geometry":["point","area"],"tags":{"amenity":"cinema"}},"amenity/childcare":{"icon":"fas-child-reaching","fields":["name","operator","operator/type","address","building_area_yes","opening_hours","website"],"moreFields":["{@templates/contact}","{@templates/internet_access}","baby_feeding","capacity","fhrs/id-GB","gnis/feature_id-US","level","max_age","min_age","not/name","payment_multi","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"childcare"}},"amenity/charging_station":{"icon":"fas-charging-station","fields":["brand","operator","capacity","access_simple","fee","payment_multi_fee","charge_fee","ref"],"moreFields":["covered","level","manufacturer","maxstay","network"],"geometry":["point","vertex","area"],"tags":{"amenity":"charging_station"}},"amenity/casino":{"icon":"maki-casino","fields":["name","operator","address","building_area_yes","opening_hours","gambling","smoking"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","level","min_age"],"geometry":["point","area"],"tags":{"amenity":"casino"}},"amenity/car_wash":{"icon":"temaki-car_wash","fields":["name","operator","address","building_area_yes","opening_hours","payment_multi","self_service","automated"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"car_wash"}},"amenity/car_sharing":{"icon":"temaki-sign_and_car","fields":["name","operator","operator/type","capacity","address","payment_multi","supervised"],"moreFields":["{@templates/contact}","branch_brand","brand","lit","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"car_sharing"}},"amenity/car_rental":{"icon":"maki-car-rental","fields":["name","operator","address","opening_hours","payment_multi"],"moreFields":["{@templates/poi}","branch_brand","brand"],"geometry":["point","area"],"tags":{"amenity":"car_rental"}},"amenity/car_pooling":{"icon":"temaki-car_pool","fields":["name","operator","operator/type","capacity","address","opening_hours","lit"],"moreFields":["{@templates/contact}","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"car_pooling"}},"amenity/cafe":{"icon":"maki-cafe","fields":["name","cuisine","address","building_area_yes","opening_hours","outdoor_seating","{@templates/internet_access}","phone","website","opening_hours/drive_through"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","bar","branch_brand","brand","capacity","changing_table","delivery","diet_multi","drive_through","highchair","min_age","organic","reservation","smoking","takeaway","toilets","toilets/wheelchair","toilets/menstrual_products_poi","fhrs/id-GB","website/menu"],"geometry":["point","area"],"tags":{"amenity":"cafe"}},"amenity/bureau_de_change":{"icon":"temaki-money_hand","fields":["name","operator","payment_multi","currency_multi","address","building_area"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"bureau_de_change"}},"amenity/boat_storage":{"icon":"temaki-boat_dry_dock","fields":["name","operator","access_simple","capacity"],"geometry":["point","area"],"tags":{"amenity":"boat_storage"}},"amenity/boat_rental":{"icon":"temaki-boat_rental","fields":["name","operator","operator/type","opening_hours","fee","payment_multi_fee","charge_fee"],"moreFields":["{@templates/poi}","access_simple","address"],"geometry":["point","area"],"tags":{"amenity":"boat_rental"}},"amenity/binoculars":{"icon":"temaki-binoculars","fields":["operator","access_simple","fee","payment_multi_fee","charge_fee","direction","height","ele_node"],"moreFields":["colour","covered","indoor","lit","manufacturer","ref"],"geometry":["point"],"tags":{"amenity":"binoculars"}},"amenity/biergarten":{"icon":"fas-beer","fields":["name","address","opening_hours","outdoor_seating","brewery"],"moreFields":["{amenity/bar}","cuisine","website/menu"],"geometry":["point","area"],"tags":{"amenity":"biergarten"}},"amenity/bicycle_wash":{"icon":"temaki-bicycle_wash","fields":["name","fee","payment_multi_fee","capacity","access","operator","self_service"],"moreFields":["{@templates/poi}","covered"],"geometry":["point","area"],"tags":{"amenity":"bicycle_wash"}},"amenity/bicycle_repair_station":{"icon":"temaki-bicycle_repair","fields":["operator","brand","opening_hours","fee","payment_multi_fee","charge_fee","service/bicycle"],"moreFields":["branch_brand","colour","covered","indoor","level","manufacturer"],"geometry":["point","vertex"],"tags":{"amenity":"bicycle_repair_station"}},"amenity/bicycle_rental":{"icon":"temaki-bicycle_rental","fields":["name","capacity","network","operator","operator/type","fee","payment_multi_fee"],"moreFields":["{@templates/poi}","address","covered","ref"],"geometry":["point","vertex","area"],"tags":{"amenity":"bicycle_rental"}},"amenity/bicycle_parking":{"icon":"temaki-bicycle_parked","fields":["bicycle_parking","capacity","operator","operator/type","covered","access_simple","fee","payment_multi_fee","charge_fee"],"moreFields":["bike_ride","colour","indoor","level","lit"],"geometry":["point","vertex","line","area"],"tags":{"amenity":"bicycle_parking"}},"amenity/bench":{"icon":"temaki-bench","fields":["backrest","armrest","material","seats"],"moreFields":["colour","access_simple","direction","height","inscription","level","lit","manufacturer","operator"],"geometry":["point","vertex","line"],"tags":{"amenity":"bench"}},"amenity/bbq":{"icon":"maki-bbq","fields":["covered","fuel","access_simple"],"moreFields":["lit"],"geometry":["point","area"],"tags":{"amenity":"bbq"}},"amenity/bar":{"icon":"maki-bar","fields":["name","address","building_area_yes","opening_hours","min_age","brewery"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","microbrewery","operator","outdoor_seating","smoking","fhrs/id-GB","sport/sport_pub"],"geometry":["point","area"],"tags":{"amenity":"bar"}},"amenity/bank":{"icon":"maki-bank","fields":["name","operator","address","building_area_yes","opening_hours","atm","drive_through","opening_hours/drive_through"],"moreFields":["{@templates/internet_access}","{@templates/poi}","air_conditioning","branch_brand","brand","currency_multi"],"geometry":["point","area"],"tags":{"amenity":"bank"}},"amenity/baking_oven":{"icon":"temaki-bread","geometry":["point","area"],"tags":{"amenity":"baking_oven"},"fields":["covered","access_simple"],"moreFields":["lit"]},"amenity/atm":{"icon":"temaki-atm2","fields":["operator","network","cash_in","currency_multi","drive_through"],"moreFields":["branch_brand","ref","brand","covered","height","indoor","level","lit","manufacturer","opening_hours","wheelchair"],"geometry":["point","vertex"],"tags":{"amenity":"atm"}},"amenity/arts_centre":{"icon":"maki-theatre","fields":["name","address","building_area_yes","opening_hours","website"],"moreFields":["{@templates/internet_access}","{@templates/poi}","charge_fee","fee"],"geometry":["point","area"],"tags":{"amenity":"arts_centre"}},"amenity/animal_shelter":{"icon":"maki-veterinary","fields":["name","operator","address","building_area","opening_hours","animal_shelter"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"animal_shelter"}},"amenity/animal_breeding":{"icon":"maki-veterinary","fields":["name","operator","address","building_area","opening_hours","animal_breeding"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"animal_breeding"}},"amenity/animal_boarding":{"icon":"maki-veterinary","fields":["name","operator","address","building_area","opening_hours","animal_boarding"],"moreFields":["{@templates/poi}"],"geometry":["point","area"],"tags":{"amenity":"animal_boarding"}},"amenity/recycling":{"icon":"maki-recycling","fields":["recycling_type","recycling_accepts","collection_times"],"geometry":["point","area"],"tags":{"amenity":"recycling"},"searchable":false},"amenity/nursing_home":{"icon":"maki-wheelchair","fields":["{amenity/social_facility}","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"nursing_home"},"reference":{"key":"social_facility","value":"nursing_home"},"searchable":false},"amenity/ferry_terminal":{"icon":"temaki-ferry","fields":["name","network","operator","address","building_area"],"geometry":["point","vertex","area"],"tags":{"amenity":"ferry_terminal"},"matchScore":0.95,"searchable":false,"replacement":"public_transport/station_ferry"},"amenity/embassy":{"icon":"temaki-embassy","fields":["name","country","address","building_area_yes"],"moreFields":["{@templates/contact}","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"embassy"},"searchable":false},"amenity/coworking_space":{"icon":"maki-commercial","fields":["name","address","building_area_yes","opening_hours","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","ref/FR/siret-FR"],"geometry":["point","area"],"tags":{"amenity":"coworking_space"},"searchable":false},"amenity/bus_station":{"icon":"temaki-bus","fields":["name","building_area","operator","{@templates/internet_access}"],"moreFields":["{@templates/internet_access}","{amenity}"],"geometry":["point","area"],"tags":{"amenity":"bus_station"},"searchable":false,"replacement":"public_transport/station_bus"},"amenity/waste/dog_excrement":{"icon":"maki-waste-basket","fields":["collection_times"],"geometry":["point","vertex","area"],"tags":{"amenity":"waste_basket","waste":"dog_excrement"},"reference":{"key":"waste","value":"dog_excrement"}},"amenity/vending_machine/sweets":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"sweets"},"reference":{"key":"vending","value":"sweets"}},"amenity/vending_machine/stamps":{"icon":"temaki-vending_stamps","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"stamps"},"reference":{"key":"vending","value":"stamps"}},"amenity/vending_machine/public_transport_tickets":{"icon":"temaki-vending_tickets","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"public_transport_tickets"},"reference":{"key":"vending","value":"public_transport_tickets"}},"amenity/vending_machine/pizza":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"pizza"},"reference":{"key":"vending","value":"pizza"}},"amenity/vending_machine/parking_tickets":{"icon":"temaki-vending_tickets","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"parking_tickets"},"reference":{"key":"vending","value":"parking_tickets"},"matchScore":0.94},"amenity/vending_machine/newspapers":{"icon":"temaki-vending_newspaper","fields":["vending","ref","operator","fee","payment_multi_fee","charge_fee","currency_multi"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"newspapers"},"reference":{"key":"vending","value":"newspapers"}},"amenity/vending_machine/ice_cubes":{"icon":"temaki-vending_ice","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"ice_cubes"},"reference":{"key":"vending","value":"ice_cubes"}},"amenity/vending_machine/ice_cream":{"icon":"temaki-vending_ice_cream","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"ice_cream"},"reference":{"key":"vending","value":"ice_cream"}},"amenity/vending_machine/fuel":{"icon":"maki-fuel","geometry":["point","vertex"],"fields":["ref","fuel/fuel_multi","fuel/fuel_multi-RU","operator"],"tags":{"amenity":"vending_machine","vending":"fuel"},"reference":{"key":"vending","value":"fuel"},"matchScore":0.5},"amenity/vending_machine/food":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"food"},"reference":{"key":"vending","value":"food"}},"amenity/vending_machine/feminine_hygiene":{"icon":"temaki-vending_venus","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"feminine_hygiene"},"reference":{"key":"vending","value":"feminine_hygiene"}},"amenity/vending_machine/excrement_bags":{"icon":"temaki-vending_pet_waste","fields":["bin","fee","operator"],"moreFields":["ref","payment_multi","currency_multi","blind","brand","covered","height","indoor","level","manufacturer"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"excrement_bags"},"reference":{"key":"vending","value":"excrement_bags"}},"amenity/vending_machine/elongated_coin":{"icon":"temaki-vending_flat_coin","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"elongated_coin"},"reference":{"key":"vending","value":"elongated_coin"}},"amenity/vending_machine/electronics":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"electronics"},"reference":{"key":"vending","value":"electronics"}},"amenity/vending_machine/eggs":{"icon":"temaki-vending_eggs","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"eggs"},"reference":{"key":"vending","value":"eggs"}},"amenity/vending_machine/drinks":{"icon":"temaki-vending_cold_drink","fields":["vending","drink_multi","{amenity/vending_machine}"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"drinks"},"reference":{"key":"vending","value":"drinks"}},"amenity/vending_machine/condoms":{"icon":"temaki-vending_love","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"condoms"},"reference":{"key":"vending","value":"condoms"}},"amenity/vending_machine/coffee":{"icon":"temaki-vending_hot_drink","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"coffee"},"reference":{"key":"vending","value":"coffee"}},"amenity/vending_machine/cigarettes":{"icon":"temaki-vending_cigarettes","moreFields":["{amenity/vending_machine}","min_age"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"cigarettes"},"reference":{"key":"vending","value":"cigarettes"}},"amenity/vending_machine/bread":{"icon":"temaki-vending_bread","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"bread"},"reference":{"key":"vending","value":"bread"}},"amenity/vending_machine/bottle_return":{"icon":"temaki-vending_machine","fields":["vending","operator"],"geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"bottle_return"},"reference":{"key":"vending","value":"bottle_return"}},"amenity/vending_machine/bicycle_tube":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"bicycle_tube"},"reference":{"key":"vending","value":"bicycle_tube"}},"amenity/vending_machine/food/snacks":{"icon":"temaki-vending_machine","geometry":["point","vertex"],"tags":{"amenity":"vending_machine","vending":"food","food":"snacks"}},"amenity/townhall/city":{"icon":"temaki-capitol","geometry":["point","area"],"tags":{"amenity":"townhall","townhall:type":"city"},"reference":{"key":"townhall:type","value":"city"}},"amenity/townhall/barangay-PH":{"icon":"fas-building-flag","locationSet":{"include":["ph"]},"geometry":["point","area"],"tags":{"amenity":"townhall","townhall:type":"barangay"},"addTags":{"amenity":"townhall","townhall:type":"barangay","admin_level":"10"},"reference":{"key":"amenity","value":"townhall"}},"amenity/toilets/portable":{"icon":"temaki-latrine","fields":["toilets/disposal","{amenity/toilets}","toilets/handwashing"],"moreFields":["{amenity/toilets}"],"geometry":["point","area","vertex"],"tags":{"amenity":"toilets","portable":"yes"}},"amenity/toilets/disposal/pitlatrine":{"icon":"temaki-latrine","fields":["toilets/disposal","{amenity/toilets}","toilets/handwashing"],"moreFields":["{amenity/toilets}"],"geometry":["point","vertex","area"],"tags":{"amenity":"toilets","toilets:disposal":"pitlatrine"},"reference":{"key":"toilets:disposal","value":"pitlatrine"}},"amenity/toilets/disposal/flush":{"icon":"fas-toilet","fields":["toilets/disposal","{amenity/toilets}"],"moreFields":["{amenity/toilets}"],"geometry":["point","vertex","area"],"tags":{"amenity":"toilets","toilets:disposal":"flush"},"reference":{"key":"toilets:disposal","value":"flush"}},"amenity/theatre/type/amphi":{"icon":"maki-theatre","fields":["name","operator","address","lit"],"geometry":["point","area"],"tags":{"amenity":"theatre","theatre:type":"amphi"},"reference":{"key":"theatre:type","value":"amphi"}},"amenity/taxi/motorcycle_taxi":{"icon":"temaki-pedestrian_and_cyclist","fields":["name","operator","capacity","address"],"moreFields":["access_simple","opening_hours","operator","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"taxi","taxi_vehicle":"motorcycle"}},"amenity/taxi/cycle_rickshaw":{"icon":"roentgen-bus_stop_sign","fields":["name","operator","capacity","address"],"moreFields":["access_simple","opening_hours","operator","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"taxi","taxi_vehicle":"cycle_rickshaw"}},"amenity/taxi/auto_rickshaw":{"icon":"fas-person-arrow-up-from-line","fields":["name","operator","capacity","address"],"moreFields":["access_simple","opening_hours","operator","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"taxi","taxi_vehicle":"auto_rickshaw"}},"amenity/studio/video":{"icon":"fas-video","geometry":["point","area"],"tags":{"amenity":"studio","studio":"video"},"reference":{"key":"studio","value":"video"}},"amenity/studio/television":{"icon":"fas-video","geometry":["point","area"],"tags":{"amenity":"studio","studio":"television"},"reference":{"key":"studio","value":"television"}},"amenity/studio/radio":{"icon":"fas-microphone","geometry":["point","area"],"tags":{"amenity":"studio","studio":"radio"},"reference":{"key":"studio","value":"radio"}},"amenity/studio/audio":{"icon":"fas-microphone","geometry":["point","area"],"tags":{"amenity":"studio","studio":"audio"},"reference":{"key":"studio","value":"audio"}},"amenity/social_facility/nursing_home":{"icon":"maki-wheelchair","fields":["{amenity/social_facility}","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"nursing_home","social_facility:for":"senior"},"reference":{"key":"social_facility","value":"nursing_home"}},"amenity/social_facility/homeless_shelter":{"icon":"temaki-social_facility","geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"shelter","social_facility:for":"homeless"},"reference":{"key":"social_facility","value":"shelter"}},"amenity/social_facility/group_home":{"icon":"maki-wheelchair","fields":["{amenity/social_facility}","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"group_home","social_facility:for":"senior"},"reference":{"key":"social_facility","value":"group_home"}},"amenity/social_facility/food_bank":{"icon":"temaki-social_facility","geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"food_bank"},"reference":{"key":"social_facility","value":"food_bank"}},"amenity/social_facility/assisted_living":{"icon":"maki-wheelchair","fields":["{amenity/social_facility}","wheelchair"],"geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"assisted_living","social_facility:for":"senior"},"reference":{"key":"social_facility","value":"assisted_living"}},"amenity/social_facility/ambulatory_care":{"icon":"maki-wheelchair","geometry":["point","area"],"tags":{"amenity":"social_facility","social_facility":"ambulatory_care"},"reference":{"key":"social_facility","value":"ambulatory_care"}},"amenity/shelter/public_transport":{"icon":"temaki-transit_shelter","fields":["name","operator","building_area_yes","bench","lit","bin"],"geometry":["point","area"],"tags":{"amenity":"shelter","shelter_type":"public_transport"},"reference":{"key":"shelter_type","value":"public_transport"}},"amenity/shelter/picnic_shelter":{"icon":"temaki-picnic_shelter","fields":["name","operator","building_area_yes","lit","bin"],"geometry":["point","area"],"tags":{"amenity":"shelter","shelter_type":"picnic_shelter"},"reference":{"key":"shelter_type","value":"picnic_shelter"}},"amenity/shelter/lean_to":{"icon":"temaki-sleep_shelter","fields":["name","operator","building_area_yes"],"geometry":["point","area"],"tags":{"amenity":"shelter","shelter_type":"lean_to"}},"amenity/shelter/gazebo":{"icon":"maki-shelter","fields":["name","building_area_yes","bench","lit"],"geometry":["point","area"],"tags":{"amenity":"shelter","shelter_type":"gazebo"}},"amenity/restaurant/vietnamese":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"vietnamese"},"reference":{"key":"cuisine","value":"vietnamese"}},"amenity/restaurant/ukrainian":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"ukrainian"},"reference":{"key":"cuisine","value":"ukrainian"}},"amenity/restaurant/turkish":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"turkish"},"reference":{"key":"cuisine","value":"turkish"}},"amenity/restaurant/thai":{"icon":"fas-spoon","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"thai"},"reference":{"key":"cuisine","value":"thai"}},"amenity/restaurant/sushi":{"icon":"temaki-temaki","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"sushi"},"reference":{"key":"cuisine","value":"sushi"}},"amenity/restaurant/steakhouse":{"icon":"maki-slaughterhouse","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"steak_house"},"reference":{"key":"cuisine","value":"steak_house"}},"amenity/restaurant/spanish":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"spanish"},"reference":{"key":"cuisine","value":"spanish"}},"amenity/restaurant/seafood":{"icon":"maki-restaurant-seafood","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"seafood"},"reference":{"key":"cuisine","value":"seafood"}},"amenity/restaurant/ramen":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"ramen"},"reference":{"key":"cuisine","value":"ramen"}},"amenity/restaurant/pizza":{"icon":"maki-restaurant-pizza","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"pizza"},"reference":{"key":"cuisine","value":"pizza"}},"amenity/restaurant/noodle":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"noodle"},"reference":{"key":"cuisine","value":"noodle"}},"amenity/restaurant/mexican":{"icon":"fas-pepper-hot","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"mexican"},"reference":{"key":"cuisine","value":"mexican"}},"amenity/restaurant/korean":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"korean"},"reference":{"key":"cuisine","value":"korean"}},"amenity/restaurant/japanese":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"japanese"},"reference":{"key":"cuisine","value":"japanese"}},"amenity/restaurant/italian":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"italian"},"reference":{"key":"cuisine","value":"italian"}},"amenity/restaurant/indian":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"indian"},"reference":{"key":"cuisine","value":"indian"}},"amenity/restaurant/greek":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"greek"},"reference":{"key":"cuisine","value":"greek"}},"amenity/restaurant/german":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"german"},"reference":{"key":"cuisine","value":"german"}},"amenity/restaurant/georgian":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"georgian"},"reference":{"key":"cuisine","value":"georgian"}},"amenity/restaurant/french":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"french"},"reference":{"key":"cuisine","value":"french"}},"amenity/restaurant/chinese":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"chinese"},"reference":{"key":"cuisine","value":"chinese"}},"amenity/restaurant/barbecue":{"icon":"maki-restaurant-bbq","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"barbecue"},"reference":{"key":"cuisine","value":"barbecue"}},"amenity/restaurant/asian":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"asian"},"reference":{"key":"cuisine","value":"asian"}},"amenity/restaurant/american":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"restaurant","cuisine":"american"},"reference":{"key":"cuisine","value":"american"}},"amenity/recycling/container/green_waste":{"icon":"maki-recycling","fields":["{amenity/recycling_container}"],"moreFields":["{amenity/recycling_container}"],"geometry":["point","area"],"tags":{"amenity":"recycling","recycling_type":"container","recycling:green_waste":"yes"},"reference":{"key":"recycling:green_waste","value":"yes"}},"amenity/recycling/container/electrical_items":{"icon":"maki-recycling","fields":["{amenity/recycling_container}"],"moreFields":["{amenity/recycling_container}"],"geometry":["point","area"],"tags":{"amenity":"recycling","recycling_type":"container","recycling:electrical_items":"yes"},"reference":{"key":"recycling:electrical_items","value":"yes"}},"amenity/pub/microbrewery":{"icon":"maki-beer","geometry":["point","area"],"tags":{"amenity":"pub","microbrewery":"yes"},"reference":{"key":"microbrewery"}},"amenity/pub/lgbtq":{"icon":"maki-beer","geometry":["point","area"],"tags":{"amenity":"pub","lgbtq":"primary"}},"amenity/pub/irish":{"icon":"maki-beer","geometry":["point","area"],"tags":{"amenity":"pub","theme":"irish"},"reference":{"key":"theme","value":"irish"},"locationSet":{"exclude":["ie"]}},"amenity/post_box/post_box-US":{"icon":"temaki-post_box","locationSet":{"include":["us"]},"fields":["{amenity/post_box}","drive_through"],"moreFields":["{amenity/post_box}","gnis/feature_id-US"],"geometry":["point","vertex"],"tags":{"amenity":"post_box"},"name":"{amenity/post_box}"},"amenity/place_of_worship/taoist":{"icon":"temaki-taoism","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"taoist"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/sikh":{"icon":"temaki-sikhism","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"sikh"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/shinto":{"icon":"temaki-shinto","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"shinto"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/muslim":{"icon":"maki-religious-muslim","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"muslim"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/jewish":{"icon":"maki-religious-jewish","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"jewish"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/hindu":{"icon":"temaki-hinduism","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"hindu"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/christian":{"icon":"maki-religious-christian","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"christian"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/buddhist":{"icon":"maki-religious-buddhist","fields":["name","religion","denomination","{amenity/place_of_worship}"],"geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"buddhist"},"reference":{"key":"amenity","value":"place_of_worship"}},"amenity/place_of_worship/christian/quaker":{"icon":"temaki-quakerism","geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"christian","denomination":"quaker"},"reference":{"key":"denomination","value":"quaker"}},"amenity/place_of_worship/christian/la_luz_del_mundo":{"icon":"maki-place-of-worship","geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"christian","denomination":"la_luz_del_mundo"},"reference":{"key":"denomination","value":"la_luz_del_mundo"}},"amenity/place_of_worship/christian/jehovahs_witness":{"icon":"maki-place-of-worship","geometry":["point","area"],"tags":{"amenity":"place_of_worship","religion":"christian","denomination":"jehovahs_witness"},"reference":{"key":"denomination","value":"jehovahs_witness"}},"amenity/parking_space/disabled":{"icon":"temaki-accessible_space","geometry":["area","point","vertex"],"tags":{"amenity":"parking_space","parking_space":"disabled"},"matchScore":0.95},"amenity/parking/underground":{"icon":"temaki-car_structure","fields":["{amenity/parking}","layer"],"geometry":["area","point","vertex"],"tags":{"amenity":"parking","parking":"underground"},"addTags":{"amenity":"parking","parking":"underground","layer":"-1"},"reference":{"key":"parking","value":"underground"}},"amenity/parking/street-side":{"icon":"temaki-car_parked","fields":["{amenity/parking}","orientation/orientation_parking"],"geometry":["area","point","vertex"],"tags":{"amenity":"parking","parking":"street_side"},"addTags":{"amenity":"parking","parking":"street_side"},"reference":{"key":"parking","value":"street_side"}},"amenity/parking/park_ride":{"icon":"temaki-sign_and_car","fields":["name","{amenity/parking}"],"geometry":["area","point","vertex"],"tags":{"amenity":"parking","park_ride":"yes"},"reference":{"key":"park_ride","value":"yes"},"matchScore":0.95},"amenity/parking/multi-storey":{"icon":"temaki-car_structure","fields":["name","{amenity/parking}","building_area_yes"],"moreFields":["{amenity/parking}","height","building/levels"],"geometry":["point","area"],"tags":{"amenity":"parking","parking":"multi-storey"},"reference":{"key":"parking","value":"multi-storey"}},"amenity/nightclub/lgbtq":{"icon":"fas-cocktail","geometry":["point","area"],"tags":{"amenity":"nightclub","lgbtq":"primary"}},"amenity/ice_cream/frozen_yogurt":{"icon":"maki-ice-cream","geometry":["point","area"],"tags":{"amenity":"ice_cream","cuisine":"frozen_yogurt"},"reference":{"key":"cuisine","value":"frozen_yogurt"}},"amenity/fast_food/wings":{"icon":"maki-fast-food","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"wings"},"reference":{"key":"cuisine","value":"wings"}},"amenity/fast_food/sandwich":{"icon":"temaki-sandwich","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"sandwich"},"reference":{"key":"cuisine","value":"sandwich"}},"amenity/fast_food/pizza":{"icon":"maki-restaurant-pizza","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"pizza"},"reference":{"key":"cuisine","value":"pizza"}},"amenity/fast_food/mexican":{"icon":"fas-pepper-hot","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"mexican"},"reference":{"key":"cuisine","value":"mexican"}},"amenity/fast_food/kebab":{"icon":"temaki-vertical_rotisserie","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"kebab"},"reference":{"key":"cuisine","value":"kebab"}},"amenity/fast_food/juice":{"icon":"temaki-drink_cup","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"juice"},"reference":{"key":"cuisine","value":"juice"}},"amenity/fast_food/hot_dog":{"icon":"fas-hotdog","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"hot_dog"},"reference":{"key":"cuisine","value":"hot_dog"}},"amenity/fast_food/fish_and_chips":{"icon":"fas-fish","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"fish_and_chips"},"reference":{"key":"cuisine","value":"fish_and_chips"}},"amenity/fast_food/donut":{"icon":"temaki-donut","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"donut"},"reference":{"key":"cuisine","value":"donut"}},"amenity/fast_food/chinese":{"icon":"maki-restaurant-noodle","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"chinese"},"reference":{"key":"cuisine","value":"chinese"}},"amenity/fast_food/chicken":{"icon":"fas-drumstick-bite","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"chicken"},"reference":{"key":"cuisine","value":"chicken"}},"amenity/fast_food/cafeteria":{"icon":"maki-restaurant","geometry":["point","area"],"tags":{"amenity":"fast_food","fast_food":"cafeteria"},"fields":["{amenity/fast_food}","access_simple"]},"amenity/fast_food/burger":{"icon":"maki-fast-food","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"burger"},"reference":{"key":"cuisine","value":"burger"}},"amenity/fast_food/bagel":{"icon":"maki-fast-food","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"bagel"},"reference":{"key":"cuisine","value":"bagel"}},"amenity/fast_food/ice_cream":{"icon":"fas-ice-cream","geometry":["point","area"],"tags":{"amenity":"fast_food","cuisine":"ice_cream"},"reference":{"key":"cuisine","value":"ice_cream"},"searchable":false},"amenity/doctors/urology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"urology"},"addTags":{"amenity":"doctors","healthcare:speciality":"urology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"urology"}},"amenity/doctors/trauma":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"trauma"},"addTags":{"amenity":"doctors","healthcare:speciality":"trauma","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"trauma"}},"amenity/doctors/surgery":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"surgery"},"addTags":{"amenity":"doctors","healthcare:speciality":"surgery","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"surgery"}},"amenity/doctors/rheumatology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"rheumatology"},"addTags":{"amenity":"doctors","healthcare:speciality":"rheumatology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"rheumatology"}},"amenity/doctors/radiology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"radiology"},"addTags":{"amenity":"doctors","healthcare:speciality":"radiology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"radiology"}},"amenity/doctors/pulmonology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"pulmonology"},"addTags":{"amenity":"doctors","healthcare:speciality":"pulmonology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"pulmonology"}},"amenity/doctors/psychiatrist":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"psychiatry"},"addTags":{"amenity":"doctors","healthcare:speciality":"psychiatry","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"psychiatry"}},"amenity/doctors/proctology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"proctology"},"addTags":{"amenity":"doctors","healthcare:speciality":"proctology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"proctology"}},"amenity/doctors/podiatry":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"podiatry"},"addTags":{"amenity":"doctors","healthcare:speciality":"podiatry","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"podiatry"}},"amenity/doctors/plastic_surgery":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"plastic_surgery"},"addTags":{"amenity":"doctors","healthcare:speciality":"plastic_surgery","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"plastic_surgery"}},"amenity/doctors/pathology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"pathology"},"addTags":{"amenity":"doctors","healthcare:speciality":"pathology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"pathology"}},"amenity/doctors/paediatrics":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"paediatrics"},"addTags":{"amenity":"doctors","healthcare:speciality":"paediatrics","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"paediatrics"}},"amenity/doctors/otolaryngology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"otolaryngology"},"addTags":{"amenity":"doctors","healthcare:speciality":"otolaryngology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"otolaryngology"}},"amenity/doctors/orthopaedics":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"orthopaedics"},"addTags":{"amenity":"doctors","healthcare:speciality":"orthopaedics","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"orthopaedics"}},"amenity/doctors/ophthalmology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"ophthalmology"},"addTags":{"amenity":"doctors","healthcare:speciality":"ophthalmology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"ophthalmology"}},"amenity/doctors/oncology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"oncology"},"addTags":{"amenity":"doctors","healthcare:speciality":"oncology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"oncology"}},"amenity/doctors/neurosurgery":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"neurosurgery"},"addTags":{"amenity":"doctors","healthcare:speciality":"neurosurgery","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"neurosurgery"}},"amenity/doctors/neurology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"neurology"},"addTags":{"amenity":"doctors","healthcare:speciality":"neurology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"neurology"}},"amenity/doctors/nephrology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"nephrology"},"addTags":{"amenity":"doctors","healthcare:speciality":"nephrology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"nephrology"}},"amenity/doctors/internal":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"internal"},"addTags":{"amenity":"doctors","healthcare:speciality":"internal","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"internal"}},"amenity/doctors/haematology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"haematology"},"addTags":{"amenity":"doctors","healthcare:speciality":"haematology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"haematology"}},"amenity/doctors/gynaecology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"gynaecology"},"addTags":{"amenity":"doctors","healthcare:speciality":"gynaecology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"gynaecology"}},"amenity/doctors/general":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"general"},"addTags":{"amenity":"doctors","healthcare:speciality":"general","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"general"}},"amenity/doctors/gastroenterology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"gastroenterology"},"addTags":{"amenity":"doctors","healthcare:speciality":"gastroenterology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"gastroenterology"}},"amenity/doctors/dermatology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"dermatology"},"addTags":{"amenity":"doctors","healthcare:speciality":"dermatology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"dermatology"}},"amenity/doctors/child_psychiatry":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"child_psychiatry"},"addTags":{"amenity":"doctors","healthcare:speciality":"child_psychiatry","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"child_psychiatry"}},"amenity/doctors/cardiology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"cardiology"},"addTags":{"amenity":"doctors","healthcare:speciality":"cardiology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"cardiology"}},"amenity/doctors/allergology":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"amenity":"doctors","healthcare:speciality":"allergology"},"addTags":{"amenity":"doctors","healthcare:speciality":"allergology","healthcare":"doctor"},"reference":{"key":"healthcare:speciality","value":"allergology"}},"amenity/community_centre/youth_centre":{"icon":"maki-town-hall","fields":["community_centre","{amenity/community_centre}"],"moreFields":["{amenity/community_centre}"],"geometry":["point","area"],"tags":{"amenity":"community_centre","community_centre":"youth_centre"},"reference":{"key":"community_centre","value":"youth_centre"}},"amenity/community_centre/village_hall":{"icon":"maki-town-hall","fields":["community_centre","{amenity/community_centre}"],"moreFields":["{amenity/community_centre}"],"geometry":["point","area"],"tags":{"amenity":"community_centre","community_centre":"village_hall"},"reference":{"key":"community_centre","value":"village_hall"}},"amenity/community_centre/parish_hall":{"icon":"maki-town-hall","fields":["community_centre","{amenity/community_centre}"],"moreFields":["{amenity/community_centre}"],"geometry":["point","area"],"tags":{"amenity":"community_centre","community_centre":"parish_hall"},"reference":{"key":"community_centre","value":"parish_hall"}},"amenity/community_centre/lgbtq":{"icon":"maki-town-hall","fields":["community_centre","{amenity/community_centre}"],"moreFields":["{amenity/community_centre}"],"geometry":["point","area"],"tags":{"amenity":"community_centre","lgbtq":"primary"},"addTags":{"amenity":"community_centre","lgbtq":"primary","community_centre:for":"lgbtq"}},"amenity/community_centre/family_centre":{"icon":"maki-town-hall","fields":["community_centre","{amenity/community_centre}"],"moreFields":["{amenity/community_centre}"],"geometry":["point","area"],"tags":{"amenity":"community_centre","community_centre":"family_centre"},"reference":{"key":"community_centre","value":"family_centre"}},"amenity/community_centre/cultural_centre":{"icon":"maki-town-hall","fields":["community_centre","{amenity/community_centre}"],"moreFields":["{amenity/community_centre}"],"geometry":["point","area"],"tags":{"amenity":"community_centre","community_centre":"cultural_centre"},"reference":{"key":"community_centre","value":"cultural_centre"}},"amenity/community_centre/community_hall":{"icon":"maki-town-hall","fields":["community_centre","{amenity/community_centre}"],"moreFields":["{amenity/community_centre}"],"geometry":["point","area"],"tags":{"amenity":"community_centre","community_centre":"community_hall"},"reference":{"key":"community_centre","value":"community_hall"}},"amenity/community_centre/club_home":{"icon":"maki-town-hall","fields":["community_centre","club","{amenity/community_centre}"],"moreFields":["{amenity/community_centre}"],"geometry":["point","area"],"tags":{"amenity":"community_centre","community_centre":"club_home"},"reference":{"key":"community_centre","value":"club_home"}},"amenity/clock/sundial":{"icon":"temaki-clock","fields":["name","support","visibility","inscription"],"geometry":["point","vertex"],"tags":{"amenity":"clock","display":"sundial"},"reference":{"key":"display","value":"sundial"}},"amenity/clinic/fertility":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"amenity":"clinic","healthcare":"clinic","healthcare:speciality":"fertility"},"reference":{"key":"amenity","value":"clinic"}},"amenity/clinic/dialysis":{"icon":"maki-doctor","geometry":["point","area"],"tags":{"healthcare":"dialysis"},"addTags":{"amenity":"clinic","healthcare":"dialysis","healthcare:speciality":"nephrology"},"reference":{"key":"healthcare","value":"dialysis"}},"amenity/clinic/abortion":{"icon":"maki-hospital","geometry":["point","area"],"tags":{"amenity":"clinic","healthcare":"clinic","healthcare:speciality":"abortion"},"reference":{"key":"amenity","value":"clinic"}},"amenity/cafe/teahouse":{"icon":"maki-cafe","geometry":["point","area"],"tags":{"amenity":"cafe","cuisine":"tea"},"reference":{"key":"amenity","value":"cafe"}},"amenity/cafe/coffee_shop":{"icon":"temaki-hot_drink_cup","geometry":["point","area"],"tags":{"amenity":"cafe","cuisine":"coffee_shop"},"reference":{"key":"cuisine","value":"coffee_shop"}},"amenity/cafe/bubble_tea":{"icon":"temaki-bubble_tea","geometry":["point","area"],"tags":{"amenity":"cafe","cuisine":"bubble_tea"},"reference":{"key":"cuisine","value":"bubble_tea"}},"amenity/bicycle_parking/shed":{"icon":"temaki-bicycle_shed","fields":["{amenity/bicycle_parking}","building_area_yes"],"geometry":["point","vertex","area"],"tags":{"amenity":"bicycle_parking","bicycle_parking":"shed"},"reference":{"key":"bicycle_parking"}},"amenity/bicycle_parking/lockers":{"icon":"temaki-bicycle_locker","geometry":["point","vertex","area"],"tags":{"amenity":"bicycle_parking","bicycle_parking":"lockers"},"reference":{"key":"bicycle_parking"}},"amenity/bicycle_parking/building":{"icon":"temaki-bicycle_structure","fields":["{amenity/bicycle_parking}","opening_hours","building_area_yes"],"moreFields":["{amenity/bicycle_parking}"],"geometry":["point","vertex","area"],"tags":{"amenity":"bicycle_parking","bicycle_parking":"building"},"reference":{"key":"bicycle_parking"}},"amenity/bar/lgbtq":{"icon":"maki-bar","geometry":["point","area"],"tags":{"amenity":"bar","lgbtq":"primary"}},"allotments/plot":{"icon":"temaki-garden_bed","geometry":["area"],"fields":["name","ref"],"tags":{"allotments":"plot"},"reference":{"key":"allotments","value":"plot"}},"aeroway/windsock":{"icon":"temaki-windsock","fields":["ref","lit","height"],"moreFields":["manufacturer"],"geometry":["point","vertex"],"tags":{"aeroway":"windsock"}},"aeroway/terminal":{"icon":"maki-airport","fields":["name","operator","building_area_yes","wheelchair","baby_feeding"],"moreFields":["air_conditioning","smoking"],"geometry":["point","area"],"tags":{"aeroway":"terminal"}},"aeroway/taxiway":{"icon":"temaki-plane_taxiing","fields":["ref_taxiway","surface"],"geometry":["line"],"tags":{"aeroway":"taxiway"}},"aeroway/spaceport":{"icon":"fas-space-shuttle","fields":["name","operator","access_simple","website","wikidata"],"moreFields":["{@templates/contact}","{@templates/internet_access}"],"geometry":["area","point"],"tags":{"aeroway":"spaceport"}},"aeroway/runway":{"icon":"fas-plane-departure","fields":["ref_runway","surface","length","width"],"geometry":["line"],"tags":{"aeroway":"runway"}},"aeroway/parking_position":{"icon":"temaki-plane_taxiing","fields":["ref"],"geometry":["vertex","point","line"],"tags":{"aeroway":"parking_position"}},"aeroway/jet_bridge":{"icon":"temaki-pedestrian_walled","fields":["ref_aeroway_gate","width","access_simple","wheelchair"],"moreFields":["manufacturer"],"geometry":["line"],"tags":{"aeroway":"jet_bridge"},"addTags":{"aeroway":"jet_bridge","highway":"corridor"},"matchScore":1.05},"aeroway/holding_position":{"icon":"temaki-plane_taxiing","fields":["ref","holding_position/type","direction_vertex","ele_node"],"geometry":["vertex"],"tags":{"aeroway":"holding_position"}},"aeroway/helipad":{"icon":"maki-heliport","fields":["name","ref","operator","surface","maxweight","lit"],"moreFields":["access_simple","address","charge_fee","fee","opening_hours"],"geometry":["area","point"],"tags":{"aeroway":"helipad"}},"aeroway/hangar":{"icon":"temaki-hangar","fields":["name","building_area_yes"],"geometry":["area"],"tags":{"aeroway":"hangar"},"addTags":{"building":"hangar","aeroway":"hangar"}},"aeroway/gate":{"icon":"fas-plane","fields":["ref_aeroway_gate"],"geometry":["point","vertex"],"tags":{"aeroway":"gate"}},"aeroway/apron":{"icon":"temaki-planes","fields":["ref","surface"],"geometry":["area"],"tags":{"aeroway":"apron"}},"aeroway/aerodrome":{"icon":"temaki-airport","fields":["name","iata","icao","address","operator","operator/type"],"moreFields":["{@templates/contact}","{@templates/internet_access}","gnis/feature_id-US"],"geometry":["area","point"],"tags":{"aeroway":"aerodrome"},"matchScore":0.9},"aerialway/zip_line":{"geometry":["line"],"fields":["name","oneway_yes","aerialway/duration","maxweight","access_simple"],"tags":{"aerialway":"zip_line"}},"aerialway/t-bar":{"icon":"temaki-t_bar_lift","geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"t-bar"}},"aerialway/rope_tow":{"geometry":["line"],"fields":["name","oneway_yes","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"rope_tow"}},"aerialway/pylon":{"icon":"temaki-aerialway_pole","geometry":["point","vertex"],"fields":["ref"],"tags":{"aerialway":"pylon"}},"aerialway/platter":{"icon":"temaki-platter_lift","geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"platter"}},"aerialway/mixed_lift":{"icon":"maki-aerialway","geometry":["line"],"fields":["name","oneway_yes","aerialway/occupancy","aerialway/capacity","aerialway/duration","aerialway/bubble","aerialway/heating"],"tags":{"aerialway":"mixed_lift"}},"aerialway/magic_carpet":{"geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration","aerialway/heating"],"tags":{"aerialway":"magic_carpet"}},"aerialway/j-bar":{"icon":"temaki-j_bar_lift","geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"j-bar"}},"aerialway/goods":{"icon":"temaki-goods_lift","geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"goods"}},"aerialway/gondola":{"icon":"temaki-gondola_lift","geometry":["line"],"fields":["name","oneway","aerialway/occupancy","aerialway/capacity","aerialway/duration","aerialway/bubble","aerialway/heating"],"tags":{"aerialway":"gondola"}},"aerialway/drag_lift":{"icon":"temaki-drag_lift","geometry":["line"],"fields":["name","aerialway/capacity","aerialway/duration"],"tags":{"aerialway":"drag_lift"}},"aerialway/chair_lift":{"icon":"temaki-chairlift","geometry":["line"],"fields":["name","oneway_yes","aerialway/occupancy","aerialway/capacity","aerialway/duration","aerialway/bubble","aerialway/heating"],"tags":{"aerialway":"chair_lift"}},"aerialway/cable_car":{"icon":"fas-tram","geometry":["line"],"fields":["name","aerialway/occupancy","aerialway/capacity","aerialway/duration","aerialway/heating"],"tags":{"aerialway":"cable_car"}},"advertising/totem":{"fields":["{advertising}"],"moreFields":["{advertising}","direction"],"geometry":["point","line"],"tags":{"advertising":"totem"}},"advertising/poster_box":{"icon":"temaki-poster_box","fields":["{advertising}","support"],"moreFields":["{advertising}","direction"],"geometry":["point","line"],"tags":{"advertising":"poster_box"}},"advertising/column":{"icon":"roentgen-advertising_column","fields":["{advertising}"],"moreFields":["{advertising}"],"geometry":["point","area"],"tags":{"advertising":"column"}},"advertising/board":{"icon":"temaki-bulletin_board","fields":["{advertising}","support"],"moreFields":["{advertising}","direction"],"geometry":["point","vertex"],"tags":{"advertising":"board"}},"advertising/billboard":{"icon":"temaki-billboard","fields":["{advertising}","support"],"moreFields":["{advertising}","direction"],"geometry":["point","vertex","line"],"tags":{"advertising":"billboard"}},"addr/interpolation":{"fields":["addr/interpolation"],"geometry":["line"],"tags":{"addr:interpolation":"*"},"searchable":false,"matchScore":0.2},"@templates/poi":{"moreFields":["{@templates/contact}","address","contact/facebook","gnis/feature_id-US","level","not/name","opening_hours","payment_multi","ref/vatin","ref/FR/siret-FR","wheelchair"],"geometry":["point"],"tags":{"@template":"poi"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"},"@templates/internet_access":{"fields":["internet_access","internet_access/fee"],"moreFields":["internet_access","internet_access/fee","internet_access/ssid"],"geometry":["point"],"tags":{"@template":"internet_access"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"},"@templates/contact":{"moreFields":["email","fax","mobile","phone","website"],"geometry":["point"],"tags":{"@template":"contact"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"},"@templates/crossing/traffic_signal_more":{"moreFields":["traffic_signals/arrow","traffic_signals/countdown","traffic_signals/minimap"],"geometry":["point","line"],"tags":{"@template":"crossing/traffic_signal_more"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"},"@templates/crossing/traffic_signal":{"fields":["button_operated","traffic_signals/sound","traffic_signals/vibration"],"geometry":["point","line"],"tags":{"@template":"crossing/traffic_signal"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"},"@templates/crossing/surfacequality":{"fields":["surface","smoothness"],"geometry":["line"],"tags":{"@template":"crossing/surfacequality"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"},"@templates/crossing/markings_yes":{"fields":["crossing/markings_yes","crossing/markings_yes-BG","crossing/markings_yes-DE-AT-CH","crossing/markings_yes-PL"],"geometry":["point","line"],"tags":{"@template":"crossing/markings_yes"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"},"@templates/crossing/markings":{"fields":["crossing/markings","crossing/markings-BG","crossing/markings-DE-AT-CH","crossing/markings-PL"],"geometry":["point","line"],"tags":{"@template":"crossing/markings"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"},"@templates/crossing/geometry_way_more":{"moreFields":["smoothness","lit"],"geometry":["line"],"tags":{"@template":"crossing/geometry_way_more"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"},"@templates/crossing/defaults":{"fields":["crossing/island","crossing_raised"],"geometry":["point","line"],"tags":{"@template":"crossing/defaults"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"},"@templates/crossing/bicycle_more":{"moreFields":["oneway","access","segregated"],"geometry":["line"],"tags":{"@template":"crossing/bicycle_more"},"searchable":false,"locationSet":{"include":["999"],"exclude":["999"]},"name":"{point}"}}
\ No newline at end of file
diff --git a/dist/taginfo.json b/dist/taginfo.json
index 7fd0e173..b9b25cbe 100644
--- a/dist/taginfo.json
+++ b/dist/taginfo.json
@@ -2,7 +2,7 @@
"data_format": 1,
"project": {
"name": "iD Tagging Schema",
- "description": "Presets available in the iD editor, RapiD, StreetComplete, Go Map!!, Every Door, and other applications",
+ "description": "Presets available in the iD editor, Rapid, StreetComplete, Go Map!!, Every Door, and other applications The following mnemonics are used in individual tag descriptions to annotate in which context the respective tag is supported: 🄿: preset, 🄵 field, 🄵🅅: field value, 🄳: deprecated tag, 🄳🄳: discarded tag",
"project_url": "https://github.com/openstreetmap/id-tagging-schema/",
"icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@release/dist/img/logo.png",
"contact_name": "Martin Raifer",
@@ -10,61 +10,326 @@
},
"tags": [
{
- "key": "aerialway",
- "description": "🄿 Aerialway Feature (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "way"
- ]
- },
- {
- "key": "aeroway",
- "description": "🄿 Aeroway Feature (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport-15.svg"
- },
- {
- "key": "amenity",
- "description": "🄿 Amenity (unsearchable), 🄵 Type, 🄵 Riding Stable",
- "object_types": [
- "node",
- "way",
- "area"
- ]
- },
- {
- "key": "attraction",
- "description": "🄿 Attraction (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/star-15.svg"
- },
- {
- "key": "boundary",
- "description": "🄿 Boundary (unsearchable), 🄵 Type",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "building",
- "description": "🄿 Building (unsearchable), 🄿 Building, 🄵 Building",
+ "key": "traffic_sign",
+ "description": "🄿 Traffic Sign, 🄵 Traffic Sign",
"object_types": [
"node"
],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-directions.svg"
},
{
- "key": "embankment",
+ "key": "traffic_calming",
+ "description": "🄿 Traffic Calming, 🄵 Traffic Calming, 🄵 Type, 🄵 Raised",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/diamond.svg"
+ },
+ {
+ "key": "shop",
+ "description": "🄿 Shop, 🄵 Type",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "polling_station",
+ "description": "🄿 Temporary Polling Place, 🄵 Polling Place",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vote-yea.svg"
+ },
+ {
+ "key": "office",
+ "description": "🄿 Office, 🄵 Type",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "marker",
+ "description": "🄿 Marker, 🄵 Type",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/silo.svg"
+ },
+ {
+ "key": "junction",
"value": "yes",
- "description": "🄿 Embankment (unsearchable)",
+ "description": "🄿 Junction",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/junction.svg"
+ },
+ {
+ "key": "historic",
+ "description": "🄿 Historic Site, 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"
+ },
+ {
+ "key": "healthcare",
+ "description": "🄿 Healthcare Facility, 🄵 Type",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "ford",
+ "value": "yes",
+ "description": "🄿 Ford",
+ "object_types": [
+ "node"
+ ]
+ },
+ {
+ "key": "entrance",
+ "description": "🄿 Entrance / Exit, 🄵 Type",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"
+ },
+ {
+ "key": "education",
+ "description": "🄿 Education Facility, 🄵 Type",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"
+ },
+ {
+ "key": "craft",
+ "description": "🄿 Craft, 🄵 Type",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "club",
+ "description": "🄿 Club, 🄵 Type",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"
+ },
+ {
+ "key": "building:part",
+ "description": "🄿 Building Part, 🄵 Building Part",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "description": "🄿 Building, 🄿 Building (unsearchable), 🄿 Historic Building, 🄵 Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"
+ },
+ {
+ "key": "barrier",
+ "description": "🄿 Barrier, 🄵 Barrier, 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"
+ },
+ {
+ "key": "area",
+ "value": "yes",
+ "description": "🄿 Area",
+ "object_types": [
+ "area"
+ ]
+ },
+ {
+ "key": "advertising",
+ "description": "🄿 Advertising Device, 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/billboard.svg"
+ },
+ {
+ "key": "addr:*",
+ "description": "🄿 Address",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "waterway",
+ "description": "🄿 Waterway Feature (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ]
+ },
+ {
+ "key": "tourism",
+ "description": "🄿 Tourism Feature (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/attraction.svg"
+ },
+ {
+ "key": "telecom",
+ "description": "🄿 Telecom Feature (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cable.svg"
+ },
+ {
+ "key": "seamark:type",
+ "description": "🄿 Seamark (unsearchable), 🄵 Seamark",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor.svg"
+ },
+ {
+ "key": "railway",
+ "description": "🄿 Railway Feature (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rail_profile.svg"
+ },
+ {
+ "key": "power",
+ "description": "🄿 Power Feature (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"
+ },
+ {
+ "key": "playground",
+ "description": "🄿 Playground Equipment (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
+ },
+ {
+ "key": "place",
+ "description": "🄿 Place (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "pipeline",
+ "description": "🄿 Pipeline Feature (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"
+ },
+ {
+ "key": "natural",
+ "description": "🄿 Natural Feature (unsearchable), 🄵 Natural",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/natural.svg"
+ },
+ {
+ "key": "man_made",
+ "description": "🄿 Man-Made Feature (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_tank.svg"
+ },
+ {
+ "key": "leisure",
+ "description": "🄿 Leisure Feature (unsearchable), 🄵 Type, 🄵 Horseback Riding Center",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "landuse",
+ "description": "🄿 Land Use Feature (unsearchable), 🄵 Type",
+ "object_types": [
+ "area"
+ ]
+ },
+ {
+ "key": "indoor",
+ "description": "🄿 Indoor Feature (unsearchable), 🄵 Type, 🄵 Indoor",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/room.svg"
+ },
+ {
+ "key": "highway",
+ "description": "🄿 Highway Feature (unsearchable), 🄵 Type of Path, 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ]
+ },
+ {
+ "key": "ford",
+ "description": "🄿 Ford (unsearchable), 🄵 Structure, 🄵 Type",
"object_types": [
"way"
]
@@ -78,13759 +343,95 @@
]
},
{
- "key": "ford",
- "description": "🄿 Ford (unsearchable), 🄵 Type, 🄵 Structure",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "highway",
- "description": "🄿 Highway Feature (unsearchable), 🄵 Type of Path, 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ]
- },
- {
- "key": "indoor",
- "description": "🄿 Indoor Feature (unsearchable), 🄵 Type, 🄵 Indoor",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/room.svg"
- },
- {
- "key": "landuse",
- "description": "🄿 Land Use Feature (unsearchable), 🄵 Type",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "leisure",
- "description": "🄿 Leisure Feature (unsearchable), 🄵 Horseback Riding, 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "man_made",
- "description": "🄿 Man-Made Feature (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"
- },
- {
- "key": "natural",
- "description": "🄿 Natural Feature (unsearchable), 🄿 Pipeline Feature (unsearchable), 🄵 Natural",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/natural-15.svg"
- },
- {
- "key": "place",
- "description": "🄿 Place (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "playground",
- "description": "🄿 Playground Equipment (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "power",
- "description": "🄿 Power Feature (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"
- },
- {
- "key": "railway",
- "description": "🄿 Railway Feature (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rail_profile.svg"
- },
- {
- "key": "seamark:type",
- "description": "🄿 Seamark (unsearchable), 🄵 Seamark",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"
- },
- {
- "key": "telecom",
- "description": "🄿 Telecom Feature (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable.svg"
- },
- {
- "key": "tourism",
- "description": "🄿 Tourism Feature (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/attraction-15.svg"
- },
- {
- "key": "waterway",
- "description": "🄿 Waterway Feature (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ]
- },
- {
- "key": "addr:interpolation",
- "description": "🄿 Address Interpolation (unsearchable), 🄵 Type",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "addr:*",
- "description": "🄿 Address",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "advertising",
- "value": "billboard",
- "description": "🄿 Billboard",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/billboard.svg"
- },
- {
- "key": "advertising",
- "value": "board",
- "description": "🄿 Notice Board",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulletin_board.svg"
- },
- {
- "key": "advertising",
- "value": "column",
- "description": "🄿 Advertising Column",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"
- },
- {
- "key": "advertising",
- "value": "poster_box",
- "description": "🄿 Poster Box",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/poster_box.svg"
- },
- {
- "key": "advertising",
- "value": "totem",
- "description": "🄿 Advertising Totem",
- "object_types": [
- "node"
- ]
- },
- {
- "key": "aerialway",
- "value": "cable_car",
- "description": "🄿 Cable Car",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tram.svg"
- },
- {
- "key": "aerialway",
- "value": "chair_lift",
- "description": "🄿 Chair Lift",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chairlift.svg"
- },
- {
- "key": "aerialway",
- "value": "drag_lift",
- "description": "🄿 Drag Lift",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/drag_lift.svg"
- },
- {
- "key": "aerialway",
- "value": "gondola",
- "description": "🄿 Gondola Lift",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"
- },
- {
- "key": "aerialway",
- "value": "goods",
- "description": "🄿 Goods Aerialway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/goods_lift.svg"
- },
- {
- "key": "aerialway",
- "value": "j-bar",
- "description": "🄿 J-Bar Lift",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/j_bar_lift.svg"
- },
- {
- "key": "aerialway",
- "value": "magic_carpet",
- "description": "🄿 Magic Carpet Lift",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "mixed_lift",
- "description": "🄿 Mixed Lift",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aerialway-15.svg"
- },
- {
- "key": "aerialway",
- "value": "platter",
- "description": "🄿 Platter Lift",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/platter_lift.svg"
- },
- {
- "key": "aerialway",
- "value": "pylon",
- "description": "🄿 Aerialway Pylon",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/aerialway_pole.svg"
- },
- {
- "key": "aerialway",
- "value": "rope_tow",
- "description": "🄿 Rope Tow Lift",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aerialway",
- "value": "t-bar",
- "description": "🄿 T-Bar Lift",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/t_bar_lift.svg"
- },
- {
- "key": "aerialway",
- "value": "zip_line",
- "description": "🄿 Zip Line",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "aeroway",
- "value": "aerodrome",
- "description": "🄿 Airport",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/airport.svg"
- },
- {
- "key": "aeroway",
- "value": "apron",
- "description": "🄿 Airport Apron",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/planes.svg"
- },
- {
- "key": "aeroway",
- "value": "gate",
- "description": "🄿 Airport Gate",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plane.svg"
- },
- {
- "key": "aeroway",
- "value": "hangar",
- "description": "🄿 Hangar",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hangar.svg"
- },
- {
- "key": "aeroway",
- "value": "helipad",
- "description": "🄿 Helipad",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport-15.svg"
- },
- {
- "key": "aeroway",
- "value": "holding_position",
- "description": "🄿 Aircraft Holding Position",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plane_taxiing.svg"
- },
- {
- "key": "aeroway",
- "value": "jet_bridge",
- "description": "🄿 Jetway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_walled.svg"
- },
- {
- "key": "aeroway",
- "value": "parking_position",
- "description": "🄿 Aircraft Parking Position",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plane_taxiing.svg"
- },
- {
- "key": "aeroway",
- "value": "runway",
- "description": "🄿 Runway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plane-departure.svg"
- },
- {
- "key": "aeroway",
- "value": "spaceport",
- "description": "🄿 Spaceport",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-space-shuttle.svg"
- },
- {
- "key": "aeroway",
- "value": "taxiway",
- "description": "🄿 Taxiway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plane_taxiing.svg"
- },
- {
- "key": "aeroway",
- "value": "terminal",
- "description": "🄿 Airport Terminal",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport-15.svg"
- },
- {
- "key": "aeroway",
- "value": "windsock",
- "description": "🄿 Windsock",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/windsock.svg"
- },
- {
- "key": "allotments",
- "value": "plot",
- "description": "🄿 Community Garden Plot",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/garden_bed.svg"
- },
- {
- "key": "amenity",
- "value": "bus_station",
- "description": "🄿 Bus Station / Terminal (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"
- },
- {
- "key": "amenity",
- "value": "coworking_space",
- "description": "🄿 Coworking Space (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial-15.svg"
- },
- {
- "key": "amenity",
- "value": "embassy",
- "description": "🄿 Embassy (unsearchable), 🄳 (deprecated tag) ➜ office=diplomatic",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"
- },
- {
- "key": "amenity",
- "value": "ferry_terminal",
- "description": "🄿 Ferry Terminal (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ferry.svg"
- },
- {
- "key": "amenity",
- "value": "nursing_home",
- "description": "🄿 Nursing Home (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair-15.svg"
- },
- {
- "key": "amenity",
- "value": "recycling",
- "description": "🄿 Recycling (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"
- },
- {
- "key": "amenity",
- "value": "animal_boarding",
- "description": "🄿 Animal Boarding Facility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary-15.svg"
- },
- {
- "key": "amenity",
- "value": "animal_breeding",
- "description": "🄿 Animal Breeding Facility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary-15.svg"
- },
- {
- "key": "amenity",
- "value": "animal_shelter",
- "description": "🄿 Animal Shelter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary-15.svg"
- },
- {
- "key": "amenity",
- "value": "arts_centre",
- "description": "🄿 Arts Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre-15.svg"
- },
- {
- "key": "amenity",
- "value": "atm",
- "description": "🄿 ATM",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/atm2.svg"
- },
- {
- "key": "amenity",
- "value": "bank",
- "description": "🄿 Bank",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank-15.svg"
- },
- {
- "key": "amenity",
- "value": "bar",
- "description": "🄿 Bar",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bar-15.svg"
- },
- {
- "key": "lgbtq",
- "value": "primary",
- "description": "🄿 LGBTQ+ Bar, 🄿 LGBTQ+ Community Center, 🄿 LGBTQ+ Nightclub, 🄿 LGBTQ+ Pub, 🄿 LGBTQ+ Erotic Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bar-15.svg"
- },
- {
- "key": "amenity",
- "value": "bbq",
- "description": "🄿 Barbecue/Grill",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bbq-15.svg"
- },
- {
- "key": "amenity",
- "value": "bench",
- "description": "🄿 Bench",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bench.svg"
- },
- {
- "key": "amenity",
- "value": "bicycle_parking",
- "description": "🄿 Bicycle Parking",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_parked.svg"
- },
- {
- "key": "bicycle_parking",
- "value": "building",
- "description": "🄿 Bicycle Parking Garage, 🄵🅅 Type: In a Building",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_structure.svg"
- },
- {
- "key": "bicycle_parking",
- "value": "lockers",
- "description": "🄿 Bicycle Lockers, 🄵🅅 Type: Individual Lockers",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_locker.svg"
- },
- {
- "key": "bicycle_parking",
- "value": "shed",
- "description": "🄿 Bicycle Shed, 🄵🅅 Type: Closed Shed",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_shed.svg"
- },
- {
- "key": "amenity",
- "value": "bicycle_rental",
- "description": "🄿 Bicycle Rental",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_rental.svg"
- },
- {
- "key": "amenity",
- "value": "bicycle_repair_station",
- "description": "🄿 Bicycle Repair Tool Stand",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_repair.svg"
- },
- {
- "key": "amenity",
- "value": "biergarten",
- "description": "🄿 Biergarten",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-beer.svg"
- },
- {
- "key": "amenity",
- "value": "binoculars",
- "description": "🄿 Mounted Binoculars",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/binoculars.svg"
- },
- {
- "key": "amenity",
- "value": "boat_rental",
- "description": "🄿 Boat Rental",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_rental.svg"
- },
- {
- "key": "amenity",
- "value": "boat_storage",
- "description": "🄿 Boat Storage",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_dry_dock.svg"
- },
- {
- "key": "amenity",
- "value": "bureau_de_change",
- "description": "🄿 Currency Exchange",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"
- },
- {
- "key": "amenity",
- "value": "cafe",
- "description": "🄿 Cafe",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cafe-15.svg"
- },
- {
- "key": "cuisine",
- "value": "bubble_tea",
- "description": "🄿 Bubble Tea Cafe, 🄵🅅 Cuisines: Bubble Tea",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bubble_tea.svg"
- },
- {
- "key": "cuisine",
- "value": "coffee_shop",
- "description": "🄿 Coffeehouse, 🄵🅅 Cuisines: Coffee Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hot_drink_cup.svg"
- },
- {
- "key": "amenity",
- "value": "car_pooling",
- "description": "🄿 Car Pooling Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_pool.svg"
- },
- {
- "key": "amenity",
- "value": "car_rental",
- "description": "🄿 Car Rental",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-rental-15.svg"
- },
- {
- "key": "amenity",
- "value": "car_sharing",
- "description": "🄿 Car Sharing Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sign_and_car.svg"
- },
- {
- "key": "amenity",
- "value": "car_wash",
- "description": "🄿 Car Wash",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_wash.svg"
- },
- {
- "key": "amenity",
- "value": "casino",
- "description": "🄿 Casino",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/casino-15.svg"
- },
- {
- "key": "amenity",
- "value": "charging_station",
- "description": "🄿 Charging Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-charging-station.svg"
- },
- {
- "key": "amenity",
- "value": "childcare",
- "description": "🄿 Nursery/Childcare",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-child-reaching.svg"
- },
- {
- "key": "amenity",
- "value": "cinema",
- "description": "🄿 Cinema",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cinema-15.svg"
- },
- {
- "key": "amenity",
- "value": "clinic",
- "description": "🄿 Clinic",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "abortion",
- "description": "🄿 Abortion Clinic, 🄵🅅 Specialties: Abortion",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "fertility",
- "description": "🄿 Fertility Clinic, 🄵🅅 Specialties: Fertility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "amenity",
- "value": "clock",
- "description": "🄿 Clock",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clock.svg"
- },
- {
- "key": "display",
- "value": "sundial",
- "description": "🄿 Sundial, 🄵🅅 Display: Sundial",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clock.svg"
- },
- {
- "key": "amenity",
- "value": "college",
- "description": "🄿 College Grounds",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/college-15.svg"
- },
- {
- "key": "amenity",
- "value": "community_centre",
- "description": "🄿 Community Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall-15.svg"
- },
- {
- "key": "community_centre",
- "value": "youth_centre",
- "description": "🄿 Youth Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall-15.svg"
- },
- {
- "key": "amenity",
- "value": "compressed_air",
- "description": "🄿 Compressed Air",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tachometer-alt.svg"
- },
- {
- "key": "amenity",
- "value": "conference_centre",
- "description": "🄿 Convention Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-tie.svg"
- },
- {
- "key": "amenity",
- "value": "courthouse",
- "description": "🄿 Courthouse",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-gavel.svg"
- },
- {
- "key": "amenity",
- "value": "crematorium",
- "description": "🄿 Crematorium",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"
- },
- {
- "key": "amenity",
- "value": "dentist",
- "description": "🄿 Dentist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dentist-15.svg"
- },
- {
- "key": "amenity",
- "value": "dive_centre",
- "description": "🄿 Dive Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/scuba_diving.svg"
- },
- {
- "key": "amenity",
- "value": "doctors",
- "description": "🄿 Doctor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "allergology",
- "description": "🄿 Allergologist, 🄵🅅 Specialties: Allergy & Asthma",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "cardiology",
- "description": "🄿 Cardiologist, 🄵🅅 Specialties: Cardiology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "dermatology",
- "description": "🄿 Dermatologist, 🄵🅅 Specialties: Dermatology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "gastroenterology",
- "description": "🄿 Gastroenterologist, 🄵🅅 Specialties: Gastroenterology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "general",
- "description": "🄿 Primary Care Physician, 🄵🅅 Specialties: General Practice",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "gynaecology",
- "description": "🄿 Gynecologist, 🄵🅅 Specialties: Obstetrics & Gynecology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "haematology",
- "description": "🄿 Hematologist, 🄵🅅 Specialties: Hematology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "internal",
- "description": "🄿 Internist, 🄵🅅 Specialties: Internal Medicine",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "nephrology",
- "description": "🄿 Nephrologist, 🄵🅅 Specialties: Nephrology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "neurology",
- "description": "🄿 Neurologist, 🄵🅅 Specialties: Neurology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "neurosurgery",
- "description": "🄿 Neurosurgeon, 🄵🅅 Specialties: Neurosurgery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "oncology",
- "description": "🄿 Oncologist, 🄵🅅 Specialties: Oncology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "ophthalmology",
- "description": "🄿 Ophthalmologist, 🄵🅅 Specialties: Ophthalmology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "orthopaedics",
- "description": "🄿 Orthopedic Surgeon, 🄵🅅 Specialties: Orthopedic Surgery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "otolaryngology",
- "description": "🄿 Otolaryngologist, 🄵🅅 Specialties: Ear, Nose & Throat",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "paediatrics",
- "description": "🄿 Pediatrician, 🄵🅅 Specialties: Pediatrics",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "pathology",
- "description": "🄿 Pathologist, 🄵🅅 Specialties: Pathology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "plastic_surgery",
- "description": "🄿 Plastic Surgeon, 🄵🅅 Specialties: Plastic Surgery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "podiatry",
- "description": "🄿 Podiatrist, 🄵🅅 Specialties: Podiatry",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "proctology",
- "description": "🄿 Colorectal Surgeon, 🄵🅅 Specialties: Colorectal Surgery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "pulmonology",
- "description": "🄿 Pulmonologist, 🄵🅅 Specialties: Pulmonology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "radiology",
- "description": "🄿 Radiologist, 🄵🅅 Specialties: Radiology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "rheumatology",
- "description": "🄿 Rheumatologist, 🄵🅅 Specialties: Rheumatology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "surgery",
- "description": "🄿 General Surgeon, 🄵🅅 Specialties: General Surgery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "trauma",
- "description": "🄿 Trauma Surgeon, 🄵🅅 Specialties: Trauma Surgery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "urology",
- "description": "🄿 Urologist, 🄵🅅 Specialties: Urology",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"
- },
- {
- "key": "amenity",
- "value": "dojo",
- "description": "🄿 Dojo / Martial Arts Academy",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "amenity",
- "value": "dressing_room",
- "description": "🄿 Changing Room",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store-15.svg"
- },
- {
- "key": "amenity",
- "value": "drinking_water",
- "description": "🄿 Drinking Water",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"
- },
- {
- "key": "amenity",
- "value": "driver_training",
- "description": "🄿 Driver Training Grounds",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"
- },
- {
- "key": "amenity",
- "value": "driving_school",
- "description": "🄿 Driving School",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"
- },
- {
- "key": "amenity",
- "value": "events_venue",
- "description": "🄿 Events Venue",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-users.svg"
- },
- {
- "key": "amenity",
- "value": "exhibition_centre",
- "description": "🄿 Exposition Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-tie.svg"
- },
- {
- "key": "amenity",
- "value": "fast_food",
- "description": "🄿 Fast Food",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food-15.svg"
- },
- {
- "key": "cuisine",
- "value": "ice_cream",
- "description": "🄿 Ice Cream Fast Food (unsearchable), 🄵🅅 Cuisines: Ice Cream",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ice-cream.svg"
- },
- {
- "key": "cuisine",
- "value": "burger",
- "description": "🄿 Burger Fast Food, 🄵🅅 Cuisines: Burger",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food-15.svg"
- },
- {
- "key": "fast_food",
- "value": "cafeteria",
- "description": "🄿 Cafeteria",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"
- },
- {
- "key": "cuisine",
- "value": "chicken",
- "description": "🄿 Chicken Fast Food, 🄵🅅 Cuisines: Chicken",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-drumstick-bite.svg"
- },
- {
- "key": "cuisine",
- "value": "donut",
- "description": "🄿 Donut Fast Food, 🄵🅅 Cuisines: Donut",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/donut.svg"
- },
- {
- "key": "cuisine",
- "value": "fish_and_chips",
- "description": "🄿 Fish & Chips Fast Food",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"
- },
- {
- "key": "cuisine",
- "value": "hot_dog",
- "description": "🄿 Hot Dog Fast Food, 🄵🅅 Cuisines: Hot Dog",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hotdog.svg"
- },
- {
- "key": "cuisine",
- "value": "juice",
- "description": "🄿 Juice Fast Food, 🄵🅅 Cuisines: Juice",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/drink_cup.svg"
- },
- {
- "key": "cuisine",
- "value": "kebab",
- "description": "🄿 Kebab Fast Food, 🄵🅅 Cuisines: Kebab",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vertical_rotisserie.svg"
- },
- {
- "key": "cuisine",
- "value": "mexican",
- "description": "🄿 Mexican Fast Food, 🄿 Mexican Restaurant, 🄵🅅 Cuisines: Mexican",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pepper-hot.svg"
- },
- {
- "key": "cuisine",
- "value": "pizza",
- "description": "🄿 Pizza Fast Food, 🄿 Pizza Restaurant, 🄵🅅 Cuisines: Pizza",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-pizza-15.svg"
- },
- {
- "key": "cuisine",
- "value": "sandwich",
- "description": "🄿 Sandwich Fast Food, 🄵🅅 Cuisines: Sandwich",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sandwich.svg"
- },
- {
- "key": "amenity",
- "value": "fire_station",
- "description": "🄿 Fire Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fire-station-15.svg"
- },
- {
- "key": "amenity",
- "value": "food_court",
- "description": "🄿 Food Court",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"
- },
- {
- "key": "amenity",
- "value": "fountain",
- "description": "🄿 Fountain",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fountain.svg"
- },
- {
- "key": "amenity",
- "value": "fuel",
- "description": "🄿 Gas Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel-15.svg"
- },
- {
- "key": "amenity",
- "value": "gambling",
- "description": "🄿 Gambling Hall",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-coins.svg"
- },
- {
- "key": "amenity",
- "value": "give_box",
- "description": "🄿 Free Box",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-box-open.svg"
- },
- {
- "key": "amenity",
- "value": "grave_yard",
- "description": "🄿 Graveyard",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"
- },
- {
- "key": "amenity",
- "value": "grit_bin",
- "description": "🄿 Grit Bin",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-box.svg"
- },
- {
- "key": "amenity",
- "value": "hospital",
- "description": "🄿 Hospital Grounds",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "amenity",
- "value": "hunting_stand",
- "description": "🄿 Hunting Stand",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hunting_blind.svg"
- },
- {
- "key": "amenity",
- "value": "ice_cream",
- "description": "🄿 Ice Cream Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ice-cream.svg"
- },
- {
- "key": "amenity",
- "value": "internet_cafe",
- "description": "🄿 Internet Cafe",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/antenna.svg"
- },
- {
- "key": "amenity",
- "value": "karaoke_box",
- "description": "🄿 Karaoke Box",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/karaoke-15.svg"
- },
- {
- "key": "amenity",
- "value": "kindergarten",
- "description": "🄿 Preschool / Kindergarten Grounds",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"
- },
- {
- "key": "amenity",
- "value": "kneipp_water_cure",
- "description": "🄿 Kneipp Water Cure",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "amenity",
- "value": "language_school",
- "description": "🄿 Language School",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"
- },
- {
- "key": "amenity",
- "value": "lavoir",
- "description": "🄿 Lavoir",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/detergent_bottle.svg"
- },
- {
- "key": "amenity",
- "value": "letter_box",
- "description": "🄿 Letter Box",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/letter_box.svg"
- },
- {
- "key": "amenity",
- "value": "library",
- "description": "🄿 Library",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library-15.svg"
- },
- {
- "key": "amenity",
- "value": "loading_dock",
- "description": "🄿 Loading Dock",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-loading.svg"
- },
- {
- "key": "amenity",
- "value": "lounger",
- "description": "🄿 Lounger",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lounger.svg"
- },
- {
- "key": "amenity",
- "value": "love_hotel",
- "description": "🄿 Love Hotel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heart-15.svg"
- },
- {
- "key": "amenity",
- "value": "marketplace",
- "description": "🄿 Marketplace",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "amenity",
- "value": "monastery",
- "description": "🄿 Monastery Grounds",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"
- },
- {
- "key": "amenity",
- "value": "money_transfer",
- "description": "🄿 Money Transfer Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"
- },
- {
- "key": "amenity",
- "value": "mortuary",
- "description": "🄿 Morgue",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"
- },
- {
- "key": "amenity",
- "value": "motorcycle_parking",
- "description": "🄿 Motorcycle Parking",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"
- },
- {
- "key": "amenity",
- "value": "motorcycle_rental",
- "description": "🄿 Motorcycle Rental",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/motorcycle_rental.svg"
- },
- {
- "key": "amenity",
- "value": "music_school",
- "description": "🄿 Music School",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"
- },
- {
- "key": "amenity",
- "value": "nightclub",
- "description": "🄿 Nightclub",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cocktail.svg"
- },
- {
- "key": "amenity",
- "value": "parcel_locker",
- "description": "🄿 Parcel Locker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_lockers.svg"
- },
- {
- "key": "amenity",
- "value": "parking_entrance",
- "description": "🄿 Parking Garage Entrance / Exit",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"
- },
- {
- "key": "amenity",
- "value": "parking_space",
- "description": "🄿 Parking Space",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/parking_space.svg"
- },
- {
- "key": "parking_space",
- "value": "disabled",
- "description": "🄿 Accessible Parking Space",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/accessible_space.svg"
- },
- {
- "key": "amenity",
- "value": "parking",
- "description": "🄿 Parking Lot",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_parked.svg"
- },
- {
- "key": "parking",
- "value": "multi-storey",
- "description": "🄿 Multilevel Parking Garage, 🄵🅅 Type: `multi-storey`, 🄵🅅 Type: Multilevel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_structure.svg"
- },
- {
- "key": "park_ride",
+ "key": "embankment",
"value": "yes",
- "description": "🄿 Park & Ride Lot",
+ "description": "🄿 Embankment (unsearchable)",
"object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sign_and_car.svg"
- },
- {
- "key": "parking",
- "value": "street_side",
- "description": "🄿 Street-side Parking, 🄵🅅 Type: Street-Side",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_parked.svg"
- },
- {
- "key": "parking",
- "value": "underground",
- "description": "🄿 Underground Parking, 🄵🅅 Type: `underground`, 🄵🅅 Type: Underground",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_structure.svg"
- },
- {
- "key": "amenity",
- "value": "payment_centre",
- "description": "🄿 Payment Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"
- },
- {
- "key": "amenity",
- "value": "payment_terminal",
- "description": "🄿 Payment Terminal",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/far-credit-card.svg"
- },
- {
- "key": "amenity",
- "value": "pharmacy",
- "description": "🄿 Pharmacy Counter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pharmacy-15.svg"
- },
- {
- "key": "amenity",
- "value": "photo_booth",
- "description": "🄿 Photo Booth",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-person-booth.svg"
- },
- {
- "key": "amenity",
- "value": "place_of_worship",
- "description": "🄿 Place of Worship",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"
- },
- {
- "key": "religion",
- "value": "buddhist",
- "description": "🄿 Buddhist Temple, 🄵🅅 Religion: Buddhist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-buddhist-15.svg"
- },
- {
- "key": "religion",
- "value": "christian",
- "description": "🄿 Christian Church, 🄵🅅 Religion: Christian",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"
- },
- {
- "key": "denomination",
- "value": "jehovahs_witness",
- "description": "🄿 Kingdom Hall of Jehovah's Witnesses",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"
- },
- {
- "key": "denomination",
- "value": "la_luz_del_mundo",
- "description": "🄿 La Luz del Mundo Temple",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"
- },
- {
- "key": "denomination",
- "value": "quaker",
- "description": "🄿 Quaker Friends Meeting House",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/quakerism.svg"
- },
- {
- "key": "religion",
- "value": "hindu",
- "description": "🄿 Hindu Temple, 🄵🅅 Religion: Hindu",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hinduism.svg"
- },
- {
- "key": "religion",
- "value": "jewish",
- "description": "🄿 Jewish Synagogue, 🄵🅅 Religion: Jewish",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-jewish-15.svg"
- },
- {
- "key": "religion",
- "value": "muslim",
- "description": "🄿 Muslim Mosque, 🄵🅅 Religion: Muslim",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-muslim-15.svg"
- },
- {
- "key": "religion",
- "value": "shinto",
- "description": "🄿 Shinto Shrine, 🄵🅅 Religion: Shinto",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shinto.svg"
- },
- {
- "key": "religion",
- "value": "sikh",
- "description": "🄿 Sikh Temple, 🄵🅅 Religion: Sikh",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sikhism.svg"
- },
- {
- "key": "religion",
- "value": "taoist",
- "description": "🄿 Taoist Temple, 🄵🅅 Religion: Taoist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/taoism.svg"
- },
- {
- "key": "amenity",
- "value": "planetarium",
- "description": "🄿 Planetarium",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/globe-15.svg"
- },
- {
- "key": "amenity",
- "value": "police",
- "description": "🄿 Police",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/police_officer.svg"
- },
- {
- "key": "amenity",
- "value": "polling_station",
- "description": "🄿 Permanent Polling Place",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vote-yea.svg"
- },
- {
- "key": "amenity",
- "value": "post_box",
- "description": "🄿 Mail Drop Box",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/post_box.svg"
- },
- {
- "key": "amenity",
- "value": "post_depot",
- "description": "🄿 Post Sorting Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mail-bulk.svg"
- },
- {
- "key": "amenity",
- "value": "post_office",
- "description": "🄿 Post Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/post-15.svg"
- },
- {
- "key": "amenity",
- "value": "prep_school",
- "description": "🄿 Test Prep / Tutoring School",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"
- },
- {
- "key": "amenity",
- "value": "prison",
- "description": "🄿 Prison Grounds",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/prison-15.svg"
- },
- {
- "key": "amenity",
- "value": "pub",
- "description": "🄿 Pub",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer-15.svg"
- },
- {
- "key": "theme",
- "value": "irish",
- "description": "🄿 Irish Pub",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer-15.svg"
- },
- {
- "key": "microbrewery",
- "value": "yes",
- "description": "🄿 Brewpub",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer-15.svg"
- },
- {
- "key": "amenity",
- "value": "public_bath",
- "description": "🄿 Public Bath",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "amenity",
- "value": "public_bookcase",
- "description": "🄿 Public Bookcase",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library-15.svg"
- },
- {
- "key": "amenity",
- "value": "ranger_station",
- "description": "🄿 Ranger Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ranger-station-15.svg"
- },
- {
- "key": "recycling_type",
- "value": "centre",
- "description": "🄿 Recycling Center, 🄵🅅 Type: Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"
- },
- {
- "key": "recycling_type",
- "value": "container",
- "description": "🄿 Recycling Container, 🄵🅅 Type: Container",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"
- },
- {
- "key": "recycling:electrical_items",
- "value": "yes",
- "description": "🄿 E-Waste Container",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"
- },
- {
- "key": "recycling:green_waste",
- "value": "yes",
- "description": "🄿 Green Waste Container",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"
- },
- {
- "key": "amenity",
- "value": "refugee_site",
- "description": "🄿 Refugee Camp",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tents.svg"
- },
- {
- "key": "amenity",
- "value": "research_institute",
- "description": "🄿 Research Institute Grounds",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flask.svg"
- },
- {
- "key": "amenity",
- "value": "restaurant",
- "description": "🄿 Restaurant",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"
- },
- {
- "key": "cuisine",
- "value": "american",
- "description": "🄿 American Restaurant, 🄵🅅 Cuisines: American",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"
- },
- {
- "key": "cuisine",
- "value": "asian",
- "description": "🄿 Asian Restaurant, 🄵🅅 Cuisines: Asian",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"
- },
- {
- "key": "cuisine",
- "value": "barbeque",
- "description": "🄿 Barbeque Restaurant",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-bbq-15.svg"
- },
- {
- "key": "cuisine",
- "value": "chinese",
- "description": "🄿 Chinese Restaurant, 🄵🅅 Cuisines: Chinese",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"
- },
- {
- "key": "cuisine",
- "value": "french",
- "description": "🄿 French Restaurant, 🄵🅅 Cuisines: French",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"
- },
- {
- "key": "cuisine",
- "value": "german",
- "description": "🄿 German Restaurant, 🄵🅅 Cuisines: German",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"
- },
- {
- "key": "cuisine",
- "value": "greek",
- "description": "🄿 Greek Restaurant, 🄵🅅 Cuisines: Greek",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"
- },
- {
- "key": "cuisine",
- "value": "indian",
- "description": "🄿 Indian Restaurant, 🄵🅅 Cuisines: Indian",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"
- },
- {
- "key": "cuisine",
- "value": "italian",
- "description": "🄿 Italian Restaurant, 🄵🅅 Cuisines: Italian",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"
- },
- {
- "key": "cuisine",
- "value": "japanese",
- "description": "🄿 Japanese Restaurant, 🄵🅅 Cuisines: Japanese",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"
- },
- {
- "key": "cuisine",
- "value": "noodle",
- "description": "🄿 Noodle Restaurant",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"
- },
- {
- "key": "cuisine",
- "value": "seafood",
- "description": "🄿 Seafood Restaurant, 🄵🅅 Cuisines: Seafood",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-seafood-15.svg"
- },
- {
- "key": "cuisine",
- "value": "steak_house",
- "description": "🄿 Steakhouse, 🄵🅅 Cuisines: Steak House",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slaughterhouse-15.svg"
- },
- {
- "key": "cuisine",
- "value": "sushi",
- "description": "🄿 Sushi Restaurant, 🄵🅅 Cuisines: Sushi",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/temaki.svg"
- },
- {
- "key": "cuisine",
- "value": "thai",
- "description": "🄿 Thai Restaurant, 🄵🅅 Cuisines: Thai",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"
- },
- {
- "key": "cuisine",
- "value": "turkish",
- "description": "🄿 Turkish Restaurant, 🄵🅅 Cuisines: Turkish",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"
- },
- {
- "key": "cuisine",
- "value": "vietnamese",
- "description": "🄿 Vietnamese Restaurant, 🄵🅅 Cuisines: Vietnamese",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"
- },
- {
- "key": "amenity",
- "value": "sanitary_dump_station",
- "description": "🄿 RV Toilet Disposal",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/camper_trailer_dump.svg"
- },
- {
- "key": "amenity",
- "value": "school",
- "description": "🄿 School Grounds",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"
- },
- {
- "key": "amenity",
- "value": "shelter",
- "description": "🄿 Shelter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"
- },
- {
- "key": "shelter_type",
- "value": "gazebo",
- "description": "🄿 Gazebo",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"
- },
- {
- "key": "shelter_type",
- "value": "lean_to",
- "description": "🄿 Lean-To",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sleep_shelter.svg"
- },
- {
- "key": "shelter_type",
- "value": "picnic_shelter",
- "description": "🄿 Picnic Shelter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/picnic_shelter.svg"
- },
- {
- "key": "shelter_type",
- "value": "public_transport",
- "description": "🄿 Transit Shelter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/transit_shelter.svg"
- },
- {
- "key": "amenity",
- "value": "shower",
- "description": "🄿 Shower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shower.svg"
- },
- {
- "key": "amenity",
- "value": "smoking_area",
- "description": "🄿 Smoking Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-smoking.svg"
- },
- {
- "key": "amenity",
- "value": "social_centre",
- "description": "🄿 Social Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"
- },
- {
- "key": "amenity",
- "value": "social_facility",
- "description": "🄿 Social Facility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/social_facility.svg"
- },
- {
- "key": "social_facility",
- "value": "ambulatory_care",
- "description": "🄿 Ambulatory Care, 🄵🅅 Type: Ambulatory Care",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair-15.svg"
- },
- {
- "key": "social_facility",
- "value": "food_bank",
- "description": "🄿 Food Bank, 🄵🅅 Type: Food Bank",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/social_facility.svg"
- },
- {
- "key": "social_facility:for",
- "value": "senior",
- "description": "🄿 Elderly Group Home, 🄿 Nursing Home",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair-15.svg"
- },
- {
- "key": "social_facility:for",
- "value": "homeless",
- "description": "🄿 Homeless Shelter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/social_facility.svg"
- },
- {
- "key": "amenity",
- "value": "studio",
- "description": "🄿 Studio",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"
- },
- {
- "key": "studio",
- "value": "audio",
- "description": "🄿 Recording Studio",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"
- },
- {
- "key": "studio",
- "value": "radio",
- "description": "🄿 Radio Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"
- },
- {
- "key": "studio",
- "value": "television",
- "description": "🄿 Television Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-video.svg"
- },
- {
- "key": "studio",
- "value": "video",
- "description": "🄿 Film Studio",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-video.svg"
- },
- {
- "key": "amenity",
- "value": "taxi",
- "description": "🄿 Taxi Stand",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-taxi.svg"
- },
- {
- "key": "amenity",
- "value": "telephone",
- "description": "🄿 Telephone",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-phone-alt.svg"
- },
- {
- "key": "amenity",
- "value": "theatre",
- "description": "🄿 Theater",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre-15.svg"
- },
- {
- "key": "theatre:type",
- "value": "amphi",
- "description": "🄿 Amphitheatre",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre-15.svg"
- },
- {
- "key": "amenity",
- "value": "ticket_validator",
- "description": "🄿 Ticket Validator",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"
- },
- {
- "key": "amenity",
- "value": "toilets",
- "description": "🄿 Restroom",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/toilet-15.svg"
- },
- {
- "key": "toilets:disposal",
- "value": "flush",
- "description": "🄿 Flush Toilets, 🄵🅅 Disposal: Flush",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-toilet.svg"
- },
- {
- "key": "toilets:disposal",
- "value": "pitlatrine",
- "description": "🄿 Pit Latrine, 🄵🅅 Disposal: Pit Latrine",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/latrine.svg"
- },
- {
- "key": "portable",
- "value": "yes",
- "description": "🄿 Portable Toilet",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/latrine.svg"
- },
- {
- "key": "amenity",
- "value": "townhall",
- "description": "🄿 Town Hall",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"
- },
- {
- "key": "townhall:type",
- "value": "city",
- "description": "🄿 City Hall",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/capitol.svg"
- },
- {
- "key": "amenity",
- "value": "toy_library",
- "description": "🄿 Toy Library",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chess-knight.svg"
- },
- {
- "key": "amenity",
- "value": "trolley_bay",
- "description": "🄿 Cart Corral",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-cart.svg"
- },
- {
- "key": "amenity",
- "value": "university",
- "description": "🄿 University Grounds",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/college-15.svg"
- },
- {
- "key": "amenity",
- "value": "vacuum_cleaner",
- "description": "🄿 Vacuum Cleaning Station",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vacuum_station.svg"
- },
- {
- "key": "amenity",
- "value": "vehicle_inspection",
- "description": "🄿 Vehicle Inspection",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"
- },
- {
- "key": "amenity",
- "value": "vending_machine",
- "description": "🄿 Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"
- },
- {
- "key": "vending",
- "value": "bicycle_tube",
- "description": "🄿 Bicycle Inner Tube Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"
- },
- {
- "key": "vending",
- "value": "bottle_return",
- "description": "🄿 Bottle Return Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"
- },
- {
- "key": "vending",
- "value": "bread",
- "description": "🄿 Bread Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_bread.svg"
- },
- {
- "key": "vending",
- "value": "cigarettes",
- "description": "🄿 Cigarette Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_cigarettes.svg"
- },
- {
- "key": "vending",
- "value": "coffee",
- "description": "🄿 Coffee Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_hot_drink.svg"
- },
- {
- "key": "vending",
- "value": "condoms",
- "description": "🄿 Condom Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_love.svg"
- },
- {
- "key": "vending",
- "value": "drinks",
- "description": "🄿 Drink Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_cold_drink.svg"
- },
- {
- "key": "vending",
- "value": "eggs",
- "description": "🄿 Egg Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_eggs.svg"
- },
- {
- "key": "vending",
- "value": "electronics",
- "description": "🄿 Electronics Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"
- },
- {
- "key": "vending",
- "value": "elongated_coin",
- "description": "🄿 Flat Coin Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_flat_coin.svg"
- },
- {
- "key": "vending",
- "value": "excrement_bags",
- "description": "🄿 Excrement Bag Dispenser",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_pet_waste.svg"
- },
- {
- "key": "vending",
- "value": "feminine_hygiene",
- "description": "🄿 Feminine Hygiene Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_venus.svg"
- },
- {
- "key": "vending",
- "value": "food",
- "description": "🄿 Food Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"
- },
- {
- "key": "vending",
- "value": "fuel",
- "description": "🄿 Gas Pump",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel-15.svg"
- },
- {
- "key": "vending",
- "value": "ice_cream",
- "description": "🄿 Ice Cream Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_ice_cream.svg"
- },
- {
- "key": "vending",
- "value": "ice_cubes",
- "description": "🄿 Ice Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_ice.svg"
- },
- {
- "key": "vending",
- "value": "newspapers",
- "description": "🄿 Newspaper Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_newspaper.svg"
- },
- {
- "key": "vending",
- "value": "parking_tickets",
- "description": "🄿 Parking Ticket Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_tickets.svg"
- },
- {
- "key": "vending",
- "value": "pizza",
- "description": "🄿 Pizza Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"
- },
- {
- "key": "vending",
- "value": "public_transport_tickets",
- "description": "🄿 Transit Ticket Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_tickets.svg"
- },
- {
- "key": "vending",
- "value": "stamps",
- "description": "🄿 Postage Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_stamps.svg"
- },
- {
- "key": "vending",
- "value": "sweets",
- "description": "🄿 Snack Vending Machine",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"
- },
- {
- "key": "amenity",
- "value": "veterinary",
- "description": "🄿 Veterinary",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/veterinary_care.svg"
- },
- {
- "key": "amenity",
- "value": "waste_basket",
- "description": "🄿 Waste Basket",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waste-basket-15.svg"
- },
- {
- "key": "amenity",
- "value": "waste_disposal",
- "description": "🄿 Garbage Dumpster",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumpster.svg"
- },
- {
- "key": "amenity",
- "value": "waste_transfer_station",
- "description": "🄿 Waste Transfer Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-trash-restore.svg"
- },
- {
- "key": "waste",
- "value": "dog_excrement",
- "description": "🄿 Dog Excrement Bin",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waste-basket-15.svg"
- },
- {
- "key": "amenity",
- "value": "water_point",
- "description": "🄿 RV Drinking Water",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"
- },
- {
- "key": "amenity",
- "value": "watering_place",
- "description": "🄿 Animal Watering Place",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"
- },
- {
- "key": "amenity",
- "value": "weighbridge",
- "description": "🄿 Truck Scale",
- "object_types": [
- "node",
"way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-weight.svg"
- },
- {
- "key": "area",
- "value": "yes",
- "description": "🄿 Area",
- "object_types": [
- "area"
]
},
- {
- "key": "area:highway",
- "value": "footway",
- "description": "🄿 Footway Area",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "area:highway",
- "description": "🄿 Road Area, 🄵 Type",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "attraction",
- "value": "amusement_ride",
- "description": "🄿 Amusement Ride",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park-15.svg"
- },
- {
- "key": "attraction",
- "value": "animal",
- "description": "🄿 Animal Enclosure",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/zoo-15.svg"
- },
- {
- "key": "attraction",
- "value": "big_wheel",
- "description": "🄿 Big Wheel",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park-15.svg"
- },
- {
- "key": "attraction",
- "value": "bumper_car",
- "description": "🄿 Bumper Cars",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-car-crash.svg"
- },
- {
- "key": "attraction",
- "value": "bungee_jumping",
- "description": "🄿 Bungee Jumping",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "attraction",
- "value": "carousel",
- "description": "🄿 Carousel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/amusement_park.svg"
- },
- {
- "key": "attraction",
- "value": "dark_ride",
- "description": "🄿 Dark Ride",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/rail-metro-15.svg"
- },
- {
- "key": "attraction",
- "value": "drop_tower",
- "description": "🄿 Drop Tower Ride",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tower.svg"
- },
- {
- "key": "attraction",
- "value": "kiddie_ride",
- "description": "🄿 Kiddie Ride",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/amusement_park.svg"
- },
- {
- "key": "attraction",
- "value": "log_flume",
- "description": "🄿 Log Flume",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ferry-15.svg"
- },
- {
- "key": "attraction",
- "value": "maze",
- "description": "🄿 Maze",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/maze.svg"
- },
- {
- "key": "attraction",
- "value": "pirate_ship",
- "description": "🄿 Pirate Ship Ride",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger-15.svg"
- },
- {
- "key": "attraction",
- "value": "river_rafting",
- "description": "🄿 River Rapids Ride",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ferry-15.svg"
- },
- {
- "key": "attraction",
- "value": "roller_coaster",
- "description": "🄿 Roller Coaster",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/roller_coaster.svg"
- },
- {
- "key": "attraction",
- "value": "summer_toboggan",
- "description": "🄿 Summer Toboggan",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sledding.svg"
- },
- {
- "key": "attraction",
- "value": "swing_carousel",
- "description": "🄿 Swing Carousel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tower.svg"
- },
- {
- "key": "attraction",
- "value": "train",
- "description": "🄿 Tourist Train",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_kids.svg"
- },
- {
- "key": "attraction",
- "value": "water_slide",
- "description": "🄿 Water Slide",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/slide.svg"
- },
- {
- "key": "barrier",
- "description": "🄿 Barrier, 🄵 Barrier, 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"
- },
- {
- "key": "barrier",
- "value": "ditch",
- "description": "🄿 Trench",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trench.svg"
- },
- {
- "key": "barrier",
- "value": "entrance",
- "description": "🄿 Entrance (unsearchable)",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"
- },
- {
- "key": "barrier",
- "value": "handrail",
- "description": "🄿 Handrail (unsearchable)",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railing.svg"
- },
- {
- "key": "barrier",
- "value": "log",
- "description": "🄿 Fallen Tree (unsearchable)",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"
- },
- {
- "key": "man_made",
- "value": "planter",
- "description": "🄿 Planter (Barrier) (unsearchable), 🄿 Planter",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"
- },
- {
- "key": "barrier",
- "value": "yes",
- "description": "🄿 Barrier (Unspecified Type) (unsearchable)",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"
- },
- {
- "key": "barrier",
- "value": "block",
- "description": "🄿 Block",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cube.svg"
- },
- {
- "key": "barrier",
- "value": "bollard",
- "description": "🄿 Bollard Row, 🄿 Bollard",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bollard_row.svg"
- },
- {
- "key": "barrier",
- "value": "border_control",
- "description": "🄿 Border Control",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/passport_checkpoint.svg"
- },
- {
- "key": "barrier",
- "value": "bump_gate",
- "description": "🄿 Bump Gate",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"
- },
- {
- "key": "barrier",
- "value": "bus_trap",
- "description": "🄿 Bus Trap",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"
- },
- {
- "key": "barrier",
- "value": "cable_barrier",
- "description": "🄿 Cable Barrier",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"
- },
- {
- "key": "barrier",
- "value": "cattle_grid",
- "description": "🄿 Cattle Grid",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cattle_grid.svg"
- },
- {
- "key": "barrier",
- "value": "chain",
- "description": "🄿 Chain",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rope_fence.svg"
- },
- {
- "key": "barrier",
- "value": "city_wall",
- "description": "🄿 City Wall",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"
- },
- {
- "key": "barrier",
- "value": "cycle_barrier",
- "description": "🄿 Cycle Barrier",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cycle_barrier.svg"
- },
- {
- "key": "barrier",
- "value": "fence",
- "description": "🄿 Fence",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fence-15.svg"
- },
- {
- "key": "fence_type",
- "value": "railing",
- "description": "🄿 Railing",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railing.svg"
- },
- {
- "key": "barrier",
- "value": "full-height_turnstile",
- "description": "🄿 Full-Height Turnstile",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"
- },
- {
- "key": "barrier",
- "value": "gate",
- "description": "🄿 Gate",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"
- },
- {
- "key": "barrier",
- "value": "guard_rail",
- "description": "🄿 Guard Rail",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/guard_rail.svg"
- },
- {
- "key": "barrier",
- "value": "hampshire_gate",
- "description": "🄿 Wire Gate",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"
- },
- {
- "key": "barrier",
- "value": "hedge",
- "description": "🄿 Hedge",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hedge.svg"
- },
- {
- "key": "barrier",
- "value": "height_restrictor",
- "description": "🄿 Height Restrictor",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/height_restrictor.svg"
- },
- {
- "key": "barrier",
- "value": "jersey_barrier",
- "description": "🄿 Jersey Barrier",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"
- },
- {
- "key": "barrier",
- "value": "kerb",
- "description": "🄿 Curb",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-raised.svg"
- },
- {
- "key": "kerb",
- "value": "flush",
- "description": "🄿 Flush Curb",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-flush.svg"
- },
- {
- "key": "kerb",
- "value": "lowered",
- "description": "🄿 Lowered Curb",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-lowered.svg"
- },
- {
- "key": "kerb",
- "value": "raised",
- "description": "🄿 Raised Curb",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-raised.svg"
- },
- {
- "key": "kerb",
- "value": "rolled",
- "description": "🄿 Rolled Curb",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-rolled.svg"
- },
- {
- "key": "barrier",
- "value": "kissing_gate",
- "description": "🄿 Kissing Gate",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"
- },
- {
- "key": "barrier",
- "value": "lift_gate",
- "description": "🄿 Lift Gate",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lift_gate.svg"
- },
- {
- "key": "barrier",
- "value": "motorcycle_barrier",
- "description": "🄿 Motorcycle Barrier",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"
- },
- {
- "key": "barrier",
- "value": "retaining_wall",
- "description": "🄿 Retaining Wall",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"
- },
- {
- "key": "barrier",
- "value": "rope",
- "description": "🄿 Rope Fence",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rope_fence.svg"
- },
- {
- "key": "barrier",
- "value": "sally_port",
- "description": "🄿 Sally Port",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dungeon.svg"
- },
- {
- "key": "barrier",
- "value": "spikes",
- "description": "🄿 Spike Strip",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spike_strip.svg"
- },
- {
- "key": "barrier",
- "value": "stile",
- "description": "🄿 Stile",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/stile_squeezer.svg"
- },
- {
- "key": "barrier",
- "value": "swing_gate",
- "description": "🄿 Swing Gate",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"
- },
- {
- "key": "barrier",
- "value": "toll_booth",
- "description": "🄿 Toll Booth",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/toll-15.svg"
- },
- {
- "key": "barrier",
- "value": "turnstile",
- "description": "🄿 Turnstile",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/turnstile.svg"
- },
- {
- "key": "barrier",
- "value": "wall",
- "description": "🄿 Wall",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"
- },
- {
- "key": "wall",
- "value": "noise_barrier",
- "description": "🄿 Noise Barrier",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"
- },
- {
- "key": "barrier",
- "value": "wicket_gate",
- "description": "🄿 Wicket Gate",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"
- },
{
"key": "boundary",
- "value": "administrative",
- "description": "🄿 Administrative Boundary",
+ "description": "🄿 Boundary (unsearchable), 🄵 Type",
"object_types": [
"way"
]
},
{
- "key": "bridge:support",
- "description": "🄿 Bridge Support, 🄵 Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"
- },
- {
- "key": "bridge:support",
- "value": "pier",
- "description": "🄿 Bridge Pier",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"
- },
- {
- "key": "building:part",
- "description": "🄿 Building Part, 🄵 Building Part",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "bunker",
- "description": "🄿 Bunker (unsearchable)",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunker.svg"
- },
- {
- "key": "building",
- "value": "entrance",
- "description": "🄿 Entrance/Exit (unsearchable), 🄳 (deprecated tag) ➜ entrance=*",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"
- },
- {
- "key": "building",
- "value": "manufacture",
- "description": "🄿 Industrial Production Building (unsearchable)",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"
- },
- {
- "key": "building",
- "value": "outbuilding",
- "description": "🄿 Outbuilding (unsearchable)",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "train_station",
- "description": "🄿 Train Station Building (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "allotment_house",
- "description": "🄿 Allotment House",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "apartments",
- "description": "🄿 Apartment Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "barn",
- "description": "🄿 Barn",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/barn.svg"
- },
- {
- "key": "building",
- "value": "boathouse",
- "description": "🄿 Boathouse",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"
- },
- {
- "key": "building",
- "value": "bungalow",
- "description": "🄿 Bungalow",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"
- },
- {
- "key": "building",
- "value": "cabin",
- "description": "🄿 Cabin",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"
- },
- {
- "key": "building",
- "value": "carport",
- "description": "🄿 Carport",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/carport.svg"
- },
- {
- "key": "building",
- "value": "cathedral",
- "description": "🄿 Cathedral Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-church.svg"
- },
- {
- "key": "building",
- "value": "chapel",
- "description": "🄿 Chapel Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"
- },
- {
- "key": "building",
- "value": "church",
- "description": "🄿 Church Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-church.svg"
- },
- {
- "key": "building",
- "value": "civic",
- "description": "🄿 Civic Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "college",
- "description": "🄿 College Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"
- },
- {
- "key": "building",
- "value": "commercial",
- "description": "🄿 Commercial Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "building",
- "value": "construction",
- "description": "🄿 Building Under Construction",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "cowshed",
- "description": "🄿 Cowshed",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/barn.svg"
- },
- {
- "key": "building",
- "value": "detached",
- "description": "🄿 Detached House",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"
- },
- {
- "key": "building",
- "value": "dormitory",
- "description": "🄿 Dormitory",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "farm_auxiliary",
- "description": "🄿 Farm Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"
- },
- {
- "key": "building",
- "value": "farm",
- "description": "🄿 Farm House",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"
- },
- {
- "key": "building",
- "value": "fire_station",
- "description": "🄿 Fire Station Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-house-fire.svg"
- },
- {
- "key": "building",
- "value": "garage",
- "description": "🄿 Garage",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"
- },
- {
- "key": "building",
- "value": "garages",
- "description": "🄿 Garages",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"
- },
- {
- "key": "building",
- "value": "ger",
- "description": "🄿 Yurt",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hut.svg"
- },
- {
- "key": "building",
- "value": "grandstand",
- "description": "🄿 Grandstand",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "greenhouse",
- "description": "🄿 Greenhouse",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"
- },
- {
- "key": "building",
- "value": "hangar",
- "description": "🄿 Hangar Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hangar.svg"
- },
- {
- "key": "building",
- "value": "hospital",
- "description": "🄿 Hospital Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hospital-alt.svg"
- },
- {
- "key": "building",
- "value": "hotel",
- "description": "🄿 Hotel Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hotel.svg"
- },
- {
- "key": "building",
- "value": "house",
- "description": "🄿 House",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"
- },
- {
- "key": "building",
- "value": "houseboat",
- "description": "🄿 Houseboat",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/houseboat.svg"
- },
- {
- "key": "building",
- "value": "hut",
- "description": "🄿 Hut",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hut.svg"
- },
- {
- "key": "building",
- "value": "industrial",
- "description": "🄿 Industrial Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"
- },
- {
- "key": "building",
- "value": "kindergarten",
- "description": "🄿 Preschool / Kindergarten Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"
- },
- {
- "key": "building",
- "value": "mosque",
- "description": "🄿 Mosque Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mosque.svg"
- },
- {
- "key": "building",
- "value": "office",
- "description": "🄿 Office Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "building",
- "value": "pavilion",
- "description": "🄿 Pavilion Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "public",
- "description": "🄿 Public Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "residential",
- "description": "🄿 Residential Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community-15.svg"
- },
- {
- "key": "building",
- "value": "retail",
- "description": "🄿 Retail Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial-15.svg"
- },
- {
- "key": "building",
- "value": "roof",
- "description": "🄿 Roof, 🄿 Solar Panel Canopy",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"
- },
- {
- "key": "building",
- "value": "ruins",
- "description": "🄿 Building Ruins",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"
- },
- {
- "key": "building",
- "value": "school",
- "description": "🄿 School Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"
- },
- {
- "key": "building",
- "value": "semidetached_house",
- "description": "🄿 Semi-Detached House",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"
- },
- {
- "key": "building",
- "value": "service",
- "description": "🄿 Service Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "shed",
- "description": "🄿 Shed",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"
- },
- {
- "key": "building",
- "value": "stable",
- "description": "🄿 Stable",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horse_shelter.svg"
- },
- {
- "key": "building",
- "value": "stadium",
- "description": "🄿 Stadium Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/stadium-15.svg"
- },
- {
- "key": "building",
- "value": "static_caravan",
- "description": "🄿 Static Mobile Home",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manufactured_home.svg"
- },
- {
- "key": "building",
- "value": "sty",
- "description": "🄿 Pigsty",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/barn.svg"
- },
- {
- "key": "building",
- "value": "synagogue",
- "description": "🄿 Synagogue Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-synagogue.svg"
- },
- {
- "key": "building",
- "value": "temple",
- "description": "🄿 Temple Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"
- },
- {
- "key": "building",
- "value": "terrace",
- "description": "🄿 Row Houses",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/row_houses.svg"
- },
- {
- "key": "building",
- "value": "transportation",
- "description": "🄿 Transportation Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"
- },
- {
- "key": "building",
- "value": "university",
- "description": "🄿 University Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"
- },
- {
- "key": "building",
- "value": "warehouse",
- "description": "🄿 Warehouse",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/warehouse-15.svg"
- },
- {
- "key": "cemetery",
- "value": "grave",
- "description": "🄿 Grave",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"
- },
- {
- "key": "cemetery",
- "value": "sector",
- "description": "🄿 Cemetery Section",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"
- },
- {
- "key": "club",
- "description": "🄿 Club, 🄵 Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"
- },
- {
- "key": "club",
- "value": "sport",
- "description": "🄿 Sports Club",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "craft",
- "description": "🄿 Craft, 🄵 Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "locksmith",
- "description": "🄿 Locksmith (unsearchable), 🄵🅅 Type: Locksmith",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/marker-stroked-15.svg"
- },
- {
- "key": "craft",
- "value": "tailor",
- "description": "🄿 Tailor (unsearchable), 🄵🅅 Type: Tailor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/needle_and_spool.svg"
- },
- {
- "key": "craft",
- "value": "agricultural_engines",
- "description": "🄿 Agricultural Engines Mechanic, 🄵🅅 Type: Agricultural Engines Mechanic",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tools.svg"
- },
- {
- "key": "craft",
- "value": "basket_maker",
- "description": "🄿 Basket Maker, 🄵🅅 Type: Basket Maker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"
- },
- {
- "key": "craft",
- "value": "beekeeper",
- "description": "🄿 Beekeeper, 🄵🅅 Type: Beekeeper",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"
- },
- {
- "key": "craft",
- "value": "blacksmith",
- "description": "🄿 Blacksmith, 🄵🅅 Type: Blacksmith",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/anvil_and_hammer.svg"
- },
- {
- "key": "craft",
- "value": "boatbuilder",
- "description": "🄿 Boat Builder, 🄵🅅 Type: Boat Builder",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_repair.svg"
- },
- {
- "key": "craft",
- "value": "bookbinder",
- "description": "🄿 Bookbinder, 🄵🅅 Type: Bookbinder",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library-15.svg"
- },
- {
- "key": "craft",
- "value": "brewery",
- "description": "🄿 Craft Brewery, 🄵🅅 Type: Brewery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"
- },
- {
- "key": "craft",
- "value": "carpenter",
- "description": "🄿 Carpenter, 🄵🅅 Type: Carpenter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"
- },
- {
- "key": "craft",
- "value": "carpet_layer",
- "description": "🄿 Carpet Layer, 🄵🅅 Type: Carpet Layer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "caterer",
- "description": "🄿 Caterer, 🄵🅅 Type: Caterer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/catering.svg"
- },
- {
- "key": "craft",
- "value": "chimney_sweeper",
- "description": "🄿 Chimney Sweeper, 🄵🅅 Type: Chimney Sweeper",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chimney.svg"
- },
- {
- "key": "craft",
- "value": "cleaning",
- "description": "🄿 Cleaning Service, 🄵🅅 Type: Cleaning Service",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vacuum.svg"
- },
- {
- "key": "craft",
- "value": "clockmaker",
- "description": "🄿 Clockmaker, 🄵🅅 Type: Clockmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clock.svg"
- },
- {
- "key": "craft",
- "value": "confectionery",
- "description": "🄿 Candy Maker, 🄵🅅 Type: Candy Maker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery-15.svg"
- },
- {
- "key": "craft",
- "value": "distillery",
- "description": "🄿 Distillery, 🄵🅅 Type: Distillery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"
- },
- {
- "key": "craft",
- "value": "dressmaker",
- "description": "🄿 Dressmaker, 🄵🅅 Type: Dressmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/dress.svg"
- },
- {
- "key": "craft",
- "value": "electrician",
- "description": "🄿 Electrician, 🄵🅅 Type: Electrician",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"
- },
- {
- "key": "craft",
- "value": "electronics_repair",
- "description": "🄿 Electronics Repair Shop, 🄵🅅 Type: Electronics Repair",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-screwdriver.svg"
- },
- {
- "key": "craft",
- "value": "floorer",
- "description": "🄿 Floorer, 🄵🅅 Type: Floorer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"
- },
- {
- "key": "craft",
- "value": "gardener",
- "description": "🄿 Gardener, 🄵🅅 Type: Gardener",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"
- },
- {
- "key": "craft",
- "value": "glaziery",
- "description": "🄿 Glaziery, 🄵🅅 Type: Glaziery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/window.svg"
- },
- {
- "key": "craft",
- "value": "handicraft",
- "description": "🄿 Handicraft Workspace, 🄵🅅 Type: Handicraft",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"
- },
- {
- "key": "craft",
- "value": "hvac",
- "description": "🄿 HVAC Workplace, 🄵🅅 Type: HVAC",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "insulation",
- "description": "🄿 Insulator, 🄵🅅 Type: Insulator",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "joiner",
- "description": "🄿 Joiner, 🄵🅅 Type: Joiner",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"
- },
- {
- "key": "craft",
- "value": "key_cutter",
- "description": "🄿 Key Cutter, 🄵🅅 Type: Key Cutter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-key.svg"
- },
- {
- "key": "craft",
- "value": "metal_construction",
- "description": "🄿 Metalworker, 🄵🅅 Type: Metalworker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "painter",
- "description": "🄿 Painter, 🄵🅅 Type: Painter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paint-roller.svg"
- },
- {
- "key": "craft",
- "value": "parquet_layer",
- "description": "🄿 Parquet Layer, 🄵🅅 Type: Parquet Layer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"
- },
- {
- "key": "craft",
- "value": "photographer",
- "description": "🄿 Photographer, 🄵🅅 Type: Photographer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/attraction-15.svg"
- },
- {
- "key": "craft",
- "value": "photographic_laboratory",
- "description": "🄿 Photographic Laboratory, 🄵🅅 Type: Photographic Laboratory",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-film.svg"
- },
- {
- "key": "craft",
- "value": "plasterer",
- "description": "🄿 Plasterer, 🄵🅅 Type: Plasterer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"
- },
- {
- "key": "craft",
- "value": "plumber",
- "description": "🄿 Plumber, 🄵🅅 Type: Plumber",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plumber.svg"
- },
- {
- "key": "craft",
- "value": "pottery",
- "description": "🄿 Pottery Maker, 🄵🅅 Type: Pottery Maker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"
- },
- {
- "key": "craft",
- "value": "rigger",
- "description": "🄿 Rigger, 🄵🅅 Type: Rigger",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "roofer",
- "description": "🄿 Roofer, 🄵🅅 Type: Roofer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"
- },
- {
- "key": "craft",
- "value": "saddler",
- "description": "🄿 Saddler, 🄵🅅 Type: Saddler",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "sailmaker",
- "description": "🄿 Sailmaker, 🄵🅅 Type: Sailmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "sawmill",
- "description": "🄿 Sawmill, 🄵🅅 Type: Sawmill",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging-15.svg"
- },
- {
- "key": "craft",
- "value": "scaffolder",
- "description": "🄿 Scaffolder, 🄵🅅 Type: Scaffolder",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/scaffold.svg"
- },
- {
- "key": "craft",
- "value": "sculptor",
- "description": "🄿 Sculptor, 🄵🅅 Type: Sculptor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"
- },
- {
- "key": "craft",
- "value": "shoemaker",
- "description": "🄿 Shoemaker, 🄵🅅 Type: Shoemaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hammer_shoe.svg"
- },
- {
- "key": "craft",
- "value": "signmaker",
- "description": "🄿 Signmaker, 🄵🅅 Type: Signmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "stonemason",
- "description": "🄿 Stonemason, 🄵🅅 Type: Stonemason",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"
- },
- {
- "key": "craft",
- "value": "tiler",
- "description": "🄿 Tiler, 🄵🅅 Type: Tiler",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"
- },
- {
- "key": "craft",
- "value": "tinsmith",
- "description": "🄿 Tinsmith, 🄵🅅 Type: Tinsmith",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "upholsterer",
- "description": "🄿 Upholsterer, 🄵🅅 Type: Upholsterer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "craft",
- "value": "watchmaker",
- "description": "🄿 Watchmaker, 🄵🅅 Type: Watchmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watch-15.svg"
- },
- {
- "key": "craft",
- "value": "window_construction",
- "description": "🄿 Window Construction, 🄵🅅 Type: Window Construction",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/window.svg"
- },
- {
- "key": "craft",
- "value": "winery",
- "description": "🄿 Winery, 🄵🅅 Type: Winery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/alcohol-shop-15.svg"
- },
- {
- "key": "cycleway",
- "value": "asl",
- "description": "🄿 Advanced Stop Line",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"
- },
- {
- "key": "demolished:building",
- "description": "🄿 Recently Demolished Building (unsearchable)",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-house-damage.svg"
- },
- {
- "key": "disc_golf",
- "value": "basket",
- "description": "🄿 Disc Golf Basket",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/disc_golf_basket.svg"
- },
- {
- "key": "disc_golf",
- "value": "hole",
- "description": "🄿 Disc Golf Hole",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/disc_golf_basket.svg"
- },
- {
- "key": "disc_golf",
- "value": "tee",
- "description": "🄿 Disc Golf Tee",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/disc_golf_basket.svg"
- },
- {
- "key": "disused:amenity",
- "description": "🄿 Disused Amenity (unsearchable), 🄵 Type",
- "object_types": [
- "node",
- "area"
- ]
- },
- {
- "key": "disused:railway",
- "description": "🄿 Disused Railway Feature (unsearchable), 🄵 Type",
+ "key": "attraction",
+ "description": "🄿 Attraction (unsearchable), 🄵 Type",
"object_types": [
"node",
"way",
"area"
],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rail_profile.svg"
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/star.svg"
},
{
- "key": "disused:shop",
- "description": "🄿 Disused Shop (unsearchable), 🄵 Type",
+ "key": "amenity",
+ "description": "🄿 Amenity (unsearchable), 🄵 Type",
"object_types": [
"node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store-alt-slash.svg"
- },
- {
- "key": "emergency",
- "value": "designated",
- "description": "🄿 Emergency Access Designated (unsearchable)",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "destination",
- "description": "🄿 Emergency Access Destination (unsearchable)",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "no",
- "description": "🄿 Emergency Access No (unsearchable)",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "official",
- "description": "🄿 Emergency Access Official (unsearchable)",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "private",
- "description": "🄿 Emergency Access Private (unsearchable)",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "yes",
- "description": "🄿 Emergency Access Yes (unsearchable)",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "emergency",
- "value": "ambulance_station",
- "description": "🄿 Ambulance Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ambulance.svg"
- },
- {
- "key": "emergency",
- "value": "assembly_point",
- "description": "🄿 Emergency Assembly Point",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compress-arrows-alt.svg"
- },
- {
- "key": "emergency",
- "value": "defibrillator",
- "description": "🄿 Defibrillator",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/defibrillator-15.svg"
- },
- {
- "key": "emergency",
- "value": "fire_alarm_box",
- "description": "🄿 Fire Alarm Call Box",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bell.svg"
- },
- {
- "key": "emergency",
- "value": "fire_extinguisher",
- "description": "🄿 Fire Extinguisher",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fire-extinguisher.svg"
- },
- {
- "key": "emergency",
- "value": "fire_hose",
- "description": "🄿 Fire Hose",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"
- },
- {
- "key": "emergency",
- "value": "fire_hydrant",
- "description": "🄿 Fire Hydrant",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fire_hydrant.svg"
- },
- {
- "key": "emergency",
- "value": "first_aid_kit",
- "description": "🄿 First Aid Kit",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-medkit.svg"
- },
- {
- "key": "emergency",
- "value": "landing_site",
- "description": "🄿 Emergency Landing Site",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport-15.svg"
- },
- {
- "key": "emergency",
- "value": "life_ring",
- "description": "🄿 Life Ring",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-life-ring.svg"
- },
- {
- "key": "emergency",
- "value": "lifeboat_station",
- "description": "🄿 Lifeboat Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_tour.svg"
- },
- {
- "key": "emergency",
- "value": "lifeguard",
- "description": "🄿 Lifeguard",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-life-ring.svg"
- },
- {
- "key": "emergency",
- "value": "mountain_rescue",
- "description": "🄿 Mountain Rescue",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mountain_cross.svg"
- },
- {
- "key": "emergency",
- "value": "phone",
- "description": "🄿 Emergency Phone",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/emergency-phone-15.svg"
- },
- {
- "key": "emergency",
- "value": "siren",
- "description": "🄿 Siren",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-volume-up.svg"
- },
- {
- "key": "man_made",
- "value": "reservoir_covered",
- "description": "🄿 Emergency Water Reservoir (Underground), 🄿 Covered Reservoir",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "water",
- "value": "reservoir",
- "description": "🄿 Emergency Water Reservoir, 🄿 Reservoir",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "man_made",
- "value": "storage_tank",
- "description": "🄿 Emergency Water Tank, 🄿 Storage Tank",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"
- },
- {
- "key": "entrance",
- "description": "🄿 Entrance / Exit, 🄵 Type",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"
- },
- {
- "key": "emergency",
- "value": "emergency_ward_entrance",
- "description": "🄿 Emergency Room Entrance",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "entrance",
- "value": "emergency",
- "description": "🄿 Emergency Exit, 🄵🅅 Type: Emergency Exit",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"
- },
- {
- "key": "entrance",
- "value": "main",
- "description": "🄿 Main Entrance, 🄵🅅 Type: Main",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"
- },
- {
- "key": "ford",
- "value": "yes",
- "description": "🄿 Ford",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "golf",
- "value": "bunker",
- "description": "🄿 Sand Trap",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"
- },
- {
- "key": "golf",
- "value": "cartpath",
- "description": "🄿 Golf Cartpath",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_cart.svg"
- },
- {
- "key": "golf",
- "value": "clubhouse",
- "description": "🄿 Golf Clubhouse",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"
- },
- {
- "key": "golf",
- "value": "driving_range",
- "description": "🄿 Driving Range",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"
- },
- {
- "key": "golf",
- "value": "fairway",
- "description": "🄿 Fairway",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"
- },
- {
- "key": "golf",
- "value": "green",
- "description": "🄿 Putting Green",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_green.svg"
- },
- {
- "key": "golf",
- "value": "hole",
- "description": "🄿 Golf Hole",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_green.svg"
- },
- {
- "key": "golf",
- "value": "lateral_water_hazard",
- "description": "🄿 Lateral Water Hazard",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"
- },
- {
- "key": "golf",
- "value": "path",
- "description": "🄿 Golf Walking Path",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"
- },
- {
- "key": "golf",
- "value": "rough",
- "description": "🄿 Rough",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"
- },
- {
- "key": "golf",
- "value": "tee",
- "description": "🄿 Tee Box",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"
- },
- {
- "key": "golf",
- "value": "water_hazard",
- "description": "🄿 Water Hazard",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"
- },
- {
- "key": "healthcare",
- "description": "🄿 Healthcare Facility, 🄵 Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "healthcare",
- "value": "yes",
- "description": "🄿 Healthcare Facility (Unspecified Type) (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "healthcare",
- "value": "alternative",
- "description": "🄿 Alternative Medicine",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "chiropractic",
- "description": "🄿 Chiropractor, 🄵🅅 Specialties: Chiropractic",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "healthcare",
- "value": "audiologist",
- "description": "🄿 Audiologist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "healthcare",
- "value": "birthing_centre",
- "description": "🄿 Birthing Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"
- },
- {
- "key": "healthcare",
- "value": "blood_donation",
- "description": "🄿 Blood Donor Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/blood-bank-15.svg"
- },
- {
- "key": "healthcare",
- "value": "counselling",
- "description": "🄿 Counselling Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comments.svg"
- },
- {
- "key": "healthcare:speciality",
- "value": "orthodontics",
- "description": "🄿 Orthodontist, 🄵🅅 Specialties: Orthodontics",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-teeth.svg"
- },
- {
- "key": "healthcare",
- "value": "hospice",
- "description": "🄿 Hospice",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-procedures.svg"
- },
- {
- "key": "healthcare",
- "value": "laboratory",
- "description": "🄿 Medical Laboratory",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vial.svg"
- },
- {
- "key": "healthcare",
- "value": "midwife",
- "description": "🄿 Midwife",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"
- },
- {
- "key": "healthcare",
- "value": "occupational_therapist",
- "description": "🄿 Occupational Therapist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "healthcare",
- "value": "optometrist",
- "description": "🄿 Optometrist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-eye.svg"
- },
- {
- "key": "healthcare",
- "value": "physiotherapist",
- "description": "🄿 Physiotherapist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/physiotherapist.svg"
- },
- {
- "key": "healthcare",
- "value": "podiatrist",
- "description": "🄿 Podiatrist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "healthcare",
- "value": "psychotherapist",
- "description": "🄿 Psychotherapist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "healthcare",
- "value": "rehabilitation",
- "description": "🄿 Rehabilitation Facility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"
- },
- {
- "key": "healthcare",
- "value": "sample_collection",
- "description": "🄿 Sample Collection Facility",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vial.svg"
- },
- {
- "key": "healthcare",
- "value": "speech_therapist",
- "description": "🄿 Speech Therapist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comment.svg"
- },
- {
- "key": "highway",
- "value": "bus_stop",
- "description": "🄿 Bus Stop (unsearchable)",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"
- },
- {
- "key": "highway",
- "value": "crossing",
- "description": "🄿 Crossing (unsearchable)",
- "object_types": [
- "node"
- ]
- },
- {
- "key": "highway",
- "value": "bridleway",
- "description": "🄿 Bridle Path",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"
- },
- {
- "key": "highway",
- "value": "bus_guideway",
- "description": "🄿 Bus Guideway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus_guided.svg"
- },
- {
- "key": "highway",
- "value": "busway",
- "description": "🄿 Busway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"
- },
- {
- "key": "highway",
- "value": "construction",
- "description": "🄿 Road Under Construction",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/barrier-15.svg"
- },
- {
- "key": "highway",
- "value": "corridor",
- "description": "🄿 Indoor Corridor",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_walled.svg"
- },
- {
- "key": "crossing",
- "value": "marked",
- "description": "🄿 Marked Crosswalk (unsearchable), 🄿 Marked Cycle Crossing (unsearchable), 🄿 Marked Crossing (unsearchable)",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_crosswalk.svg"
- },
- {
- "key": "crossing",
- "value": "zebra",
- "description": "🄿 Marked Crosswalk (unsearchable), 🄿 Marked Crossing (unsearchable)",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_crosswalk.svg"
- },
- {
- "key": "crossing",
- "value": "traffic_signals",
- "description": "🄿 Crossing With Pedestrian Signals, 🄿 Cycle Crossing With Traffic Signals, 🄵🅅 Type: Crossing With Traffic Signals",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_signals.svg"
- },
- {
- "key": "crossing",
- "value": "uncontrolled",
- "description": "🄿 Marked Crosswalk, 🄿 Marked Cycle Crossing, 🄿 Marked Crossing, 🄵🅅 Type: Only Road Markings",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_crosswalk.svg"
- },
- {
- "key": "crossing",
- "value": "unmarked",
- "description": "🄿 Unmarked Crossing, 🄿 Unmarked Cycle Crossing, 🄵🅅 Type: No Road Markings or Traffic Signals",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "highway",
- "value": "cycleway",
- "description": "🄿 Cycle Path",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-biking.svg"
- },
- {
- "key": "cycleway",
- "value": "crossing",
- "description": "🄿 Cycle Crossing (unsearchable)",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cyclist_crosswalk.svg"
- },
- {
- "key": "foot",
- "value": "designated",
- "description": "🄿 Cycle & Foot Path, 🄿 Cycle & Foot Crossing, 🄵🅅 Allowed Access: `designated`",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_and_cyclist.svg"
- },
- {
- "key": "moped",
- "value": "designated",
- "description": "🄿 Moped Link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"
- },
- {
- "key": "highway",
- "value": "elevator",
- "description": "🄿 Inclined Elevator, 🄿 Elevator",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/elevator.svg"
- },
- {
- "key": "highway",
- "value": "emergency_access_point",
- "description": "🄿 Emergency Access Point",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compress-arrows-alt.svg"
- },
- {
- "key": "highway",
- "value": "emergency_bay",
- "description": "🄿 Emergency Stopping Place",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"
- },
- {
- "key": "highway",
- "value": "escape",
- "description": "🄿 Runaway Truck Ramp",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-fast.svg"
- },
- {
- "key": "highway",
- "value": "footway",
- "description": "🄿 Foot Path",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "footway",
- "value": "crossing",
- "description": "🄿 Pedestrian Crossing (unsearchable)",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "informal",
- "value": "yes",
- "description": "🄿 Informal Foot Path (unsearchable), 🄿 Informal Path",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shoe-prints.svg"
- },
- {
- "key": "footway",
- "value": "access_aisle",
- "description": "🄿 Access Aisle",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/striped_zone.svg"
- },
- {
- "key": "conveying",
- "description": "🄿 Moving Walkway, 🄿 Escalator, 🄵 Escalator, 🄵 Movement Direction",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "footway",
- "value": "sidewalk",
- "description": "🄿 Sidewalk",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "footway",
- "value": "traffic_island",
- "description": "🄿 Refuge Island",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "highway",
- "value": "give_way",
- "description": "🄿 Yield Sign",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/yield.svg"
- },
- {
- "key": "highway",
- "value": "living_street",
- "description": "🄿 Living Street",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-living-street.svg"
- },
- {
- "key": "highway",
- "value": "milestone",
- "description": "🄿 Highway Milestone",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"
- },
- {
- "key": "highway",
- "value": "mini_roundabout",
- "description": "🄿 Mini-Roundabout",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"
- },
- {
- "key": "highway",
- "value": "motorway_junction",
- "description": "🄿 Motorway Junction / Exit",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junction.svg"
- },
- {
- "key": "highway",
- "value": "motorway_link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-motorway-link.svg",
- "description": "🄿 Motorway Link"
- },
- {
- "key": "highway",
- "value": "motorway",
- "description": "🄿 Motorway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-motorway.svg"
- },
- {
- "key": "highway",
- "value": "passing_place",
- "description": "🄿 Passing Place",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"
- },
- {
- "key": "highway",
- "value": "path",
- "description": "🄿 Path, 🄵🅅 Type of Path: Cartpath",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"
- },
- {
- "key": "bridge",
- "value": "boardwalk",
- "description": "🄿 Boardwalk",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "highway",
- "value": "pedestrian",
- "description": "🄿 Pedestrian Area, 🄿 Pedestrian Street",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "highway",
- "value": "primary_link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-primary-link.svg",
- "description": "🄿 Primary Link"
- },
- {
- "key": "highway",
- "value": "primary",
- "description": "🄿 Primary Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-primary.svg"
- },
- {
- "key": "highway",
- "value": "raceway",
- "description": "🄿 Motorsport Racetrack",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speedway_oval.svg"
- },
- {
- "key": "sport",
- "value": "karting",
- "description": "🄿 Karting Racetrack, 🄵🅅 Sports: Karting",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speedway_8.svg"
- },
- {
- "key": "sport",
- "value": "motocross",
- "description": "🄿 Motocross Racetrack, 🄵🅅 Sports: Motocross",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"
- },
- {
- "key": "highway",
- "value": "residential",
- "description": "🄿 Residential Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-residential.svg"
- },
- {
- "key": "highway",
- "value": "rest_area",
- "description": "🄿 Rest Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/highway-rest-area-15.svg"
- },
- {
- "key": "highway",
- "value": "road",
- "description": "🄿 Unknown Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"
- },
- {
- "key": "bridge",
- "description": "🄿 Unknown Road Bridge, 🄵 Type, 🄵 Structure",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"
- },
- {
- "key": "highway",
- "value": "secondary_link",
- "description": "🄿 Secondary Link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-secondary-link.svg"
- },
- {
- "key": "highway",
- "value": "secondary",
- "description": "🄿 Secondary Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-secondary.svg"
- },
- {
- "key": "highway",
- "value": "service",
- "description": "🄿 Paved Service Area (unsearchable), 🄿 Service Road, 🄿 Slipway (Drivable), 🄵🅅 Type of Path: Service Road",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
- },
- {
- "key": "service",
- "value": "alley",
- "description": "🄿 Alley, 🄵🅅 Type: Alley",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
- },
- {
- "key": "service",
- "value": "drive-through",
- "description": "🄿 Drive-Through, 🄵🅅 Type: Drive-Through",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
- },
- {
- "key": "service",
- "value": "driveway",
- "description": "🄿 Driveway, 🄵🅅 Type: Driveway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
- },
- {
- "key": "service",
- "value": "emergency_access",
- "description": "🄿 Emergency Access, 🄵🅅 Type: Emergency Access",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
- },
- {
- "key": "service",
- "value": "parking_aisle",
- "description": "🄿 Parking Aisle, 🄵🅅 Type: Parking Aisle",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
- },
- {
- "key": "highway",
- "value": "services",
- "description": "🄿 Service Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"
- },
- {
- "key": "highway",
- "value": "speed_camera",
- "description": "🄿 Speed Camera",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/security_camera.svg"
- },
- {
- "key": "highway",
- "value": "speed_display",
- "description": "🄿 Radar Speed Sign",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"
- },
- {
- "key": "highway",
- "value": "steps",
- "description": "🄿 Steps",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-steps.svg"
- },
- {
- "key": "highway",
- "value": "stop",
- "description": "🄿 Stop Sign",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/stop.svg"
- },
- {
- "key": "highway",
- "value": "street_lamp",
- "description": "🄿 Street Lamp",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/street_lamp_arm.svg"
- },
- {
- "key": "highway",
- "value": "tertiary_link",
- "description": "🄿 Tertiary Link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary-link.svg"
- },
- {
- "key": "highway",
- "value": "tertiary",
- "description": "🄿 Tertiary Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary.svg"
- },
- {
- "key": "highway",
- "value": "toll_gantry",
- "description": "🄿 Open Road Toll",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/toll_gantry.svg"
- },
- {
- "key": "highway",
- "value": "track",
- "description": "🄿 Track / Land-Access Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-monster.svg"
- },
- {
- "key": "highway",
- "value": "traffic_mirror",
- "description": "🄿 Traffic Mirror",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"
- },
- {
- "key": "highway",
- "value": "traffic_signals",
- "description": "🄿 Traffic Signals",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/traffic_signals.svg"
- },
- {
- "key": "highway",
- "value": "trailhead",
- "description": "🄿 Trailhead",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hiking.svg"
- },
- {
- "key": "highway",
- "value": "trunk_link",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-trunk-link.svg",
- "description": "🄿 Trunk Link"
- },
- {
- "key": "highway",
- "value": "trunk",
- "description": "🄿 Trunk Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-trunk.svg"
- },
- {
- "key": "highway",
- "value": "turning_circle",
- "description": "🄿 Turning Circle",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"
- },
- {
- "key": "highway",
- "value": "turning_loop",
- "description": "🄿 Turning Loop (Island)",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-15.svg"
- },
- {
- "key": "highway",
- "value": "unclassified",
- "description": "🄿 Minor/Unclassified Road",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-unclassified.svg"
- },
- {
- "key": "historic",
- "description": "🄿 Historic Site, 🄵 Type",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"
- },
- {
- "key": "historic",
- "value": "archaeological_site",
- "description": "🄿 Archaeological Site",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"
- },
- {
- "key": "historic",
- "value": "boundary_stone",
- "description": "🄿 Boundary Stone",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"
- },
- {
- "key": "historic",
- "value": "building",
- "description": "🄿 Historic Building",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"
- },
- {
- "key": "historic",
- "value": "castle",
- "description": "🄿 Castle",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"
- },
- {
- "key": "castle_type",
- "value": "fortress",
- "description": "🄿 Historic Fortress, 🄵🅅 Type: Fortress",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"
- },
- {
- "key": "castle_type",
- "value": "palace",
- "description": "🄿 Palace, 🄵🅅 Type: Palace",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crown.svg"
- },
- {
- "key": "castle_type",
- "value": "stately",
- "description": "🄿 Château, 🄵🅅 Type: Stately Home",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crown.svg"
- },
- {
- "key": "historic",
- "value": "city_gate",
- "description": "🄿 City Gate",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"
- },
- {
- "key": "historic",
- "value": "fort",
- "description": "🄿 Historic Fort",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"
- },
- {
- "key": "historic",
- "value": "manor",
- "description": "🄿 Manor House",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"
- },
- {
- "key": "historic",
- "value": "memorial",
- "description": "🄿 Memorial",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument-15.svg"
- },
- {
- "key": "memorial",
- "value": "plaque",
- "description": "🄿 Commemorative Plaque",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plaque.svg"
- },
- {
- "key": "historic",
- "value": "monument",
- "description": "🄿 Monument",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument-15.svg"
- },
- {
- "key": "historic",
- "value": "pillory",
- "description": "🄿 Historic Pillory",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument-15.svg"
- },
- {
- "key": "historic",
- "value": "ruins",
- "description": "🄿 Ruins",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"
- },
- {
- "key": "historic",
- "value": "tomb",
- "description": "🄿 Tomb",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"
- },
- {
- "key": "historic",
- "value": "wayside_cross",
- "description": "🄿 Wayside Cross",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"
- },
- {
- "key": "historic",
- "value": "wayside_shrine",
- "description": "🄿 Wayside Shrine",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/landmark-15.svg"
- },
- {
- "key": "historic",
- "value": "wreck",
- "description": "🄿 Shipwreck",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"
- },
- {
- "key": "indoor",
- "value": "corridor",
- "description": "🄿 Indoor Corridor (unsearchable), 🄿 Indoor Corridor",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "indoor",
- "value": "area",
- "description": "🄿 Indoor Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/room.svg"
- },
- {
- "key": "indoor",
- "value": "door",
- "description": "🄿 Indoor Door",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"
- },
- {
- "key": "elevator",
- "value": "yes",
- "description": "🄿 Indoor Elevator Shaft",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/elevator.svg"
- },
- {
- "key": "indoor",
- "value": "room",
- "description": "🄿 Room",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/room.svg"
- },
- {
- "key": "stairs",
- "value": "yes",
- "description": "🄿 Indoor Stairwell",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-steps.svg"
- },
- {
- "key": "indoor",
- "value": "wall",
- "description": "🄿 Indoor Wall",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"
- },
- {
- "key": "internet_access",
- "value": "wlan",
- "description": "🄿 Wi-Fi Hotspot, 🄵🅅 Internet Connection: Wifi",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-wifi.svg"
- },
- {
- "key": "junction",
- "value": "yes",
- "description": "🄿 Junction",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junction.svg"
- },
- {
- "key": "landuse",
- "value": "basin",
- "description": "🄿 Basin (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=basin",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "landuse",
- "value": "churchyard",
- "description": "🄿 Churchyard (unsearchable), 🄳 (deprecated tag) ➜ landuse=religious",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"
- },
- {
- "key": "landuse",
- "value": "farm",
- "description": "🄿 Farmland (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"
- },
- {
- "key": "landuse",
- "value": "pond",
- "description": "🄿 Pond (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=pond",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "landuse",
- "value": "reservoir",
- "description": "🄿 Reservoir (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=reservoir",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "landuse",
- "value": "allotments",
- "description": "🄿 Garden Allotments",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"
- },
- {
- "key": "landuse",
- "value": "aquaculture",
- "description": "🄿 Aquaculture",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aquarium-15.svg"
- },
- {
- "key": "landuse",
- "value": "brownfield",
- "description": "🄿 Brownfield",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"
- },
- {
- "key": "landuse",
- "value": "cemetery",
- "description": "🄿 Cemetery",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"
- },
- {
- "key": "landuse",
- "value": "commercial",
- "description": "🄿 Commercial Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "landuse",
- "value": "construction",
- "description": "🄿 Construction Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"
- },
- {
- "key": "landuse",
- "value": "education",
- "description": "🄿 Educational Campus",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"
- },
- {
- "key": "landuse",
- "value": "farmland",
- "description": "🄿 Farmland",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"
- },
- {
- "key": "landuse",
- "value": "farmyard",
- "description": "🄿 Farmyard",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"
- },
- {
- "key": "landuse",
- "value": "flowerbed",
- "description": "🄿 Flowerbed",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"
- },
- {
- "key": "landuse",
- "value": "forest",
- "description": "🄿 Managed Forest",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-alt1-15.svg"
- },
- {
- "key": "landuse",
- "value": "garages",
- "description": "🄿 Garage Landuse",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"
- },
- {
- "key": "landuse",
- "value": "grass",
- "description": "🄿 Grass",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lawn.svg"
- },
- {
- "key": "landuse",
- "value": "greenfield",
- "description": "🄿 Greenfield",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"
- },
- {
- "key": "landuse",
- "value": "greenhouse_horticulture",
- "description": "🄿 Greenhouse Horticulture",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"
- },
- {
- "key": "landuse",
- "value": "harbour",
- "description": "🄿 Harbor",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"
- },
- {
- "key": "landuse",
- "value": "industrial",
- "description": "🄿 Industrial Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"
- },
- {
- "key": "industrial",
- "value": "brewery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"
- },
- {
- "key": "industrial",
- "value": "scrap_yard",
- "description": "🄿 Scrap Yard",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junk_car.svg"
- },
- {
- "key": "industrial",
- "value": "slaughterhouse",
- "description": "🄿 Slaughterhouse",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slaughterhouse-15.svg"
- },
- {
- "key": "landuse",
- "value": "landfill",
- "description": "🄿 Landfill",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"
- },
- {
- "key": "landuse",
- "value": "meadow",
- "description": "🄿 Meadow",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"
- },
- {
- "key": "landuse",
- "value": "military",
- "description": "🄿 Military Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"
- },
- {
- "key": "military",
- "value": "airfield",
- "description": "🄿 Military Airfield",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fighter_jet.svg"
- },
- {
- "key": "military",
- "value": "barracks",
- "description": "🄿 Barracks",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/army_tent.svg"
- },
- {
- "key": "military",
- "value": "base",
- "description": "🄿 Military Base",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/anchor_medal.svg"
- },
- {
- "key": "military_service",
- "value": "navy",
- "description": "🄿 Naval Base",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/anchor_medal.svg"
- },
- {
- "key": "military",
- "value": "danger_area",
- "description": "🄿 Danger Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger-15.svg"
- },
- {
- "key": "military",
- "value": "obstacle_course",
- "description": "🄿 Military Obstacle Course",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tire_course.svg"
- },
- {
- "key": "military",
- "value": "range",
- "description": "🄿 Military Range",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bullseye.svg"
- },
- {
- "key": "military",
- "value": "training_area",
- "description": "🄿 Military Training Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"
- },
- {
- "key": "landuse",
- "value": "orchard",
- "description": "🄿 Orchard",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-15.svg"
- },
- {
- "key": "landuse",
- "value": "plant_nursery",
- "description": "🄿 Plant Nursery",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-seedling.svg"
- },
- {
- "key": "landuse",
- "value": "quarry",
- "description": "🄿 Quarry",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pick_hammer.svg"
- },
- {
- "key": "landuse",
- "value": "railway",
- "description": "🄿 Railway Corridor",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"
- },
- {
- "key": "landuse",
- "value": "recreation_ground",
- "description": "🄿 Recreation Ground",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "landuse",
- "value": "religious",
- "description": "🄿 Religious Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"
- },
- {
- "key": "landuse",
- "value": "residential",
- "description": "🄿 Residential Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community-15.svg"
- },
- {
- "key": "residential",
- "value": "apartments",
- "description": "🄿 Apartment Complex",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community-15.svg"
- },
- {
- "key": "residential",
- "value": "trailer_park",
- "description": "🄿 Mobile Home Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manufactured_home.svg"
- },
- {
- "key": "landuse",
- "value": "retail",
- "description": "🄿 Retail Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial-15.svg"
- },
- {
- "key": "landuse",
- "value": "salt_pond",
- "description": "🄿 Salt Evaporation Pond",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"
- },
- {
- "key": "landuse",
- "value": "vineyard",
- "description": "🄿 Vineyard",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/grapes.svg"
- },
- {
- "key": "landuse",
- "value": "winter_sports",
- "description": "🄿 Winter Sports Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"
- },
- {
- "key": "leisure",
- "value": "adult_gaming_centre",
- "description": "🄿 Adult Gaming Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/casino.svg"
- },
- {
- "key": "leisure",
- "value": "amusement_arcade",
- "description": "🄿 Amusement Arcade",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gaming-15.svg"
- },
- {
- "key": "leisure",
- "value": "bandstand",
- "description": "🄿 Bandstand",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"
- },
- {
- "key": "leisure",
- "value": "beach_resort",
- "description": "🄿 Beach Resort",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-umbrella-beach.svg"
- },
- {
- "key": "leisure",
- "value": "bird_hide",
- "description": "🄿 Bird Hide",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/binoculars.svg"
- },
- {
- "key": "leisure",
- "value": "bleachers",
- "description": "🄿 Bleachers",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bleachers.svg"
- },
- {
- "key": "leisure",
- "value": "bowling_alley",
- "description": "🄿 Bowling Alley",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bowling.svg"
- },
- {
- "key": "leisure",
- "value": "common",
- "description": "🄿 Common",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "leisure",
- "value": "dance",
- "description": "🄿 Dance Hall",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"
- },
- {
- "key": "dance:teaching",
- "value": "yes",
- "description": "🄿 Dance School",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"
- },
- {
- "key": "leisure",
- "value": "disc_golf_course",
- "description": "🄿 Disc Golf Course",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/disc_golf_basket.svg"
- },
- {
- "key": "leisure",
- "value": "dog_park",
- "description": "🄿 Dog Park",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dog-park-15.svg"
- },
- {
- "key": "leisure",
- "value": "escape_game",
- "description": "🄿 Escape Room",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-puzzle-piece.svg"
- },
- {
- "key": "leisure",
- "value": "firepit",
- "description": "🄿 Fire Pit",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/campfire.svg"
- },
- {
- "key": "leisure",
- "value": "fishing",
- "description": "🄿 Fishing Spot",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"
- },
- {
- "key": "leisure",
- "value": "fitness_centre",
- "description": "🄿 Gym / Fitness Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumbbell.svg"
- },
- {
- "key": "sport",
- "value": "yoga",
- "description": "🄿 Yoga Studio",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "leisure",
- "value": "fitness_station",
- "description": "🄿 Outdoor Fitness Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horizontal_bar.svg"
- },
- {
- "key": "fitness_station",
- "value": "balance_beam",
- "description": "🄿 Exercise Balance Beam",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/balance_beam.svg"
- },
- {
- "key": "fitness_station",
- "value": "box",
- "description": "🄿 Exercise Box",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "fitness_station",
- "value": "horizontal_bar",
- "description": "🄿 Exercise Horizontal Bar",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horizontal_bar.svg"
- },
- {
- "key": "fitness_station",
- "value": "horizontal_ladder",
- "description": "🄿 Exercise Monkey Bars",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "fitness_station",
- "value": "hyperextension",
- "description": "🄿 Hyperextension Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "fitness_station",
- "value": "parallel_bars",
- "description": "🄿 Parallel Bars",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "fitness_station",
- "value": "push-up",
- "description": "🄿 Push-Up Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "fitness_station",
- "value": "rings",
- "description": "🄿 Exercise Rings",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "fitness_station",
- "value": "sign",
- "description": "🄿 Exercise Instruction Sign",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "fitness_station",
- "value": "sit-up",
- "description": "🄿 Sit-Up Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "fitness_station",
- "value": "stairs",
- "description": "🄿 Exercise Stairs",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "leisure",
- "value": "garden",
- "description": "🄿 Garden",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"
- },
- {
- "key": "garden:type",
- "value": "botanical",
- "description": "🄿 Botanical Garden",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"
- },
- {
- "key": "garden:type",
- "value": "community",
- "description": "🄿 Community Garden",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"
- },
- {
- "key": "garden:type",
- "value": "residential",
- "description": "🄿 Residential Garden",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"
- },
- {
- "key": "leisure",
- "value": "golf_course",
- "description": "🄿 Golf Course",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"
- },
- {
- "key": "leisure",
- "value": "hackerspace",
- "description": "🄿 Hackerspace",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-code.svg"
- },
- {
- "key": "leisure",
- "value": "horse_riding",
- "description": "🄿 Horseback Riding Center, 🄵🅅 Horseback Riding: Yes",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"
- },
- {
- "key": "leisure",
- "value": "ice_rink",
- "description": "🄿 Ice Rink",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skating.svg"
- },
- {
- "key": "leisure",
- "value": "indoor_play",
- "description": "🄿 Indoor Play Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/slide.svg"
- },
- {
- "key": "leisure",
- "value": "marina",
- "description": "🄿 Marina",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sailboat.svg"
- },
- {
- "key": "leisure",
- "value": "miniature_golf",
- "description": "🄿 Miniature Golf",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_green.svg"
- },
- {
- "key": "leisure",
- "value": "nature_reserve",
- "description": "🄿 Nature Reserve",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-15.svg"
- },
- {
- "key": "leisure",
- "value": "outdoor_seating",
- "description": "🄿 Outdoor Seating Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"
- },
- {
- "key": "leisure",
- "value": "park",
- "description": "🄿 Park",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tree_and_bench.svg"
- },
- {
- "key": "leisure",
- "value": "picnic_table",
- "description": "🄿 Picnic Table",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"
- },
- {
- "key": "sport",
- "value": "chess",
- "description": "🄿 Chess Table, 🄿 Giant Chess Board",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chess-pawn.svg"
- },
- {
- "key": "leisure",
- "value": "pitch",
- "description": "🄿 Sport Pitch",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "sport",
- "value": "american_football",
- "description": "🄿 American Football Field",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"
- },
- {
- "key": "sport",
- "value": "american_handball",
- "description": "🄿 American Handball Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"
- },
- {
- "key": "sport",
- "value": "archery",
- "description": "🄿 Archery Range",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/archery.svg"
- },
- {
- "key": "sport",
- "value": "australian_football",
- "description": "🄿 Australian Football Field",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"
- },
- {
- "key": "sport",
- "value": "badminton",
- "description": "🄿 Badminton Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis-15.svg"
- },
- {
- "key": "sport",
- "value": "baseball",
- "description": "🄿 Baseball Field",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/baseball-15.svg"
- },
- {
- "key": "sport",
- "value": "basketball",
- "description": "🄿 Basketball Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/basketball-15.svg"
- },
- {
- "key": "sport",
- "value": "beachvolleyball",
- "description": "🄿 Beach Volleyball Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball-15.svg"
- },
- {
- "key": "sport",
- "value": "boules",
- "description": "🄿 Boules/Bocce Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "sport",
- "value": "bowls",
- "description": "🄿 Bowling Green",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "sport",
- "value": "cricket",
- "description": "🄿 Cricket Field",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cricket-15.svg"
- },
- {
- "key": "sport",
- "value": "equestrian",
- "description": "🄿 Horseback Riding Arena, 🄵🅅 Dressage Riding: Yes",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"
- },
- {
- "key": "sport",
- "value": "field_hockey",
- "description": "🄿 Field Hockey Pitch",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/field_hockey.svg"
- },
- {
- "key": "sport",
- "value": "four_square",
- "description": "🄿 Four Square Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-border-all.svg"
- },
- {
- "key": "sport",
- "value": "funnel_ball",
- "description": "🄿 Funnel Ball Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "sport",
- "value": "futsal",
- "description": "🄿 Futsal Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/soccer-15.svg"
- },
- {
- "key": "sport",
- "value": "gaga",
- "description": "🄿 Gaga Pit",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "sport",
- "value": "handball",
- "description": "🄿 Team Handball Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "sport",
- "value": "horseshoes",
- "description": "🄿 Horseshoes Pit",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horseshoes.svg"
- },
- {
- "key": "sport",
- "value": "netball",
- "description": "🄿 Netball Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball-15.svg"
- },
- {
- "key": "sport",
- "value": "padel",
- "description": "🄿 Padel Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis-15.svg"
- },
- {
- "key": "sport",
- "value": "paintball",
- "description": "🄿 Paintball Field",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crosshairs.svg"
- },
- {
- "key": "sport",
- "value": "pickleball",
- "description": "🄿 Pickleball Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis-15.svg"
- },
- {
- "key": "sport",
- "value": "rugby_league",
- "description": "🄿 Rugby League Field",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"
- },
- {
- "key": "sport",
- "value": "rugby_union",
- "description": "🄿 Rugby Union Field",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"
- },
- {
- "key": "sport",
- "value": "shooting",
- "description": "🄿 Shooting Range, 🄿 Shooting Range Facility",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crosshairs.svg"
- },
- {
- "key": "sport",
- "value": "shuffleboard",
- "description": "🄿 Shuffleboard Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shuffleboard.svg"
- },
- {
- "key": "sport",
- "value": "skateboard",
- "description": "🄿 Skate Park",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/skateboard-15.svg"
- },
- {
- "key": "sport",
- "value": "soccer",
- "description": "🄿 Soccer Field",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/soccer-15.svg"
- },
- {
- "key": "sport",
- "value": "softball",
- "description": "🄿 Softball Field",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/baseball-15.svg"
- },
- {
- "key": "sport",
- "value": "table_soccer",
- "description": "🄿 Foosball Table, 🄵🅅 Sports: Foosball",
- "object_types": [
- "area",
- "node"
- ]
- },
- {
- "key": "sport",
- "value": "table_tennis",
- "description": "🄿 Ping Pong Table",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-table-tennis.svg"
- },
- {
- "key": "sport",
- "value": "tennis",
- "description": "🄿 Tennis Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis-15.svg"
- },
- {
- "key": "sport",
- "value": "tetherball",
- "description": "🄿 Tetherball Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "sport",
- "value": "volleyball",
- "description": "🄿 Volleyball Court",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball-15.svg"
- },
- {
- "key": "leisure",
- "value": "playground",
- "description": "🄿 Playground",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "indoor",
- "value": "yes",
- "description": "🄿 Indoor Playground",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "leisure",
- "value": "resort",
- "description": "🄿 Resort",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"
- },
- {
- "key": "leisure",
- "value": "sauna",
- "description": "🄿 Sauna",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-thermometer-three-quarters.svg"
- },
- {
- "key": "leisure",
- "value": "slipway",
- "description": "🄿 Slipway",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slipway-15.svg"
- },
- {
- "key": "leisure",
- "value": "sports_centre",
- "description": "🄿 Sports Center / Complex",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "sport",
- "value": "climbing",
- "description": "🄿 Climbing Gym",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/abseiling.svg"
- },
- {
- "key": "sport",
- "value": "horse_racing",
- "description": "🄿 Horse Race Course, 🄿 Horse Racetrack, 🄵🅅 Sports: Horse Racing",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/racetrack-horse-15.svg"
- },
- {
- "key": "sport",
- "value": "swimming",
- "description": "🄿 Swimming Pool Facility",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"
- },
- {
- "key": "leisure",
- "value": "sports_hall",
- "description": "🄿 Gymnasium",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "leisure",
- "value": "stadium",
- "description": "🄿 Stadium",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"
- },
- {
- "key": "leisure",
- "value": "swimming_area",
- "description": "🄿 Natural Swimming Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"
- },
- {
- "key": "leisure",
- "value": "swimming_pool",
- "description": "🄿 Swimming Pool",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimming-pool.svg"
- },
- {
- "key": "leisure",
- "value": "track",
- "description": "🄿 Racetrack (Non-Motorsport)",
- "object_types": [
- "way",
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/racetrack_oval.svg"
- },
- {
- "key": "sport",
- "value": "cycling",
- "description": "🄿 Cycling Track, 🄵🅅 Sports: Cycling",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/racetrack-cycling-15.svg"
- },
- {
- "key": "sport",
- "value": "running",
- "description": "🄿 Running Track, 🄵🅅 Sports: Running",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"
- },
- {
- "key": "leisure",
- "value": "trampoline_park",
- "description": "🄿 Trampoline Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chevron-circle-up.svg"
- },
- {
- "key": "leisure",
- "value": "water_park",
- "description": "🄿 Water Park",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"
- },
- {
- "key": "man_made",
- "value": "courtyard",
- "description": "🄿 Courtyard (unsearchable)",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"
- },
- {
- "key": "man_made",
- "value": "yes",
- "description": "🄿 Man-Made Feature (Unspecified Type) (unsearchable)",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"
- },
- {
- "key": "man_made",
- "value": "adit",
- "description": "🄿 Adit",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/adit_profile.svg"
- },
- {
- "key": "man_made",
- "value": "antenna",
- "description": "🄿 Antenna",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/antenna.svg"
- },
- {
- "key": "man_made",
- "value": "beacon",
- "description": "🄿 Beacon",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/communications-tower-15.svg"
- },
- {
- "key": "man_made",
- "value": "beehive",
- "description": "🄿 Beehive",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archive.svg"
- },
- {
- "key": "man_made",
- "value": "breakwater",
- "description": "🄿 Breakwater",
- "object_types": [
"way",
"area"
]
},
{
- "key": "man_made",
- "value": "bridge",
- "description": "🄿 Bridge Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bridge-15.svg"
- },
- {
- "key": "man_made",
- "value": "bunker_silo",
- "description": "🄿 Bunker Silo",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunker_silo.svg"
- },
- {
- "key": "man_made",
- "value": "cairn",
- "description": "🄿 Cairn",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cairn.svg"
- },
- {
- "key": "man_made",
- "value": "carpet_hanger",
- "description": "🄿 Carpet Hanger",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"
- },
- {
- "key": "man_made",
- "value": "chimney",
- "description": "🄿 Chimney",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chimney.svg"
- },
- {
- "key": "man_made",
- "value": "clearcut",
- "description": "🄿 Clearcut Forest",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging-15.svg"
- },
- {
- "key": "man_made",
- "value": "compass_rose",
- "description": "🄿 Compass Rose",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/compass.svg"
- },
- {
- "key": "man_made",
- "value": "crane",
- "description": "🄿 Crane",
+ "key": "aeroway",
+ "description": "🄿 Aeroway Feature (unsearchable), 🄵 Type",
"object_types": [
"node",
"way",
"area"
],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crane.svg"
- },
- {
- "key": "crane:type",
- "value": "gantry_crane",
- "description": "🄿 Gantry Crane, 🄵🅅 Crane Type: Gantry Crane",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crane.svg"
- },
- {
- "key": "crane:type",
- "value": "portal_crane",
- "description": "🄿 Portal Crane, 🄵🅅 Crane Type: Portal Crane",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crane.svg"
- },
- {
- "key": "man_made",
- "value": "cross",
- "description": "🄿 Cross",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"
- },
- {
- "key": "man_made",
- "value": "cutline",
- "description": "🄿 Cut line",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging-15.svg"
- },
- {
- "key": "man_made",
- "value": "dovecote",
- "description": "🄿 Dovecote",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dove.svg"
- },
- {
- "key": "man_made",
- "value": "dyke",
- "description": "🄿 Levee",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "man_made",
- "value": "embankment",
- "description": "🄿 Embankment",
- "object_types": [
- "way"
- ]
- },
- {
- "key": "man_made",
- "value": "flagpole",
- "description": "🄿 Flagpole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/embassy-15.svg"
- },
- {
- "key": "man_made",
- "value": "gantry",
- "description": "🄿 Gantry",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/toll_gantry.svg"
- },
- {
- "key": "man_made",
- "value": "gasometer",
- "description": "🄿 Gasometer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"
- },
- {
- "key": "man_made",
- "value": "goods_conveyor",
- "description": "🄿 Goods Conveyor",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/conveyor.svg"
- },
- {
- "key": "man_made",
- "value": "groyne",
- "description": "🄿 Groin",
- "object_types": [
- "way",
- "area"
- ]
- },
- {
- "key": "man_made",
- "value": "lighthouse",
- "description": "🄿 Lighthouse",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lighthouse-15.svg"
- },
- {
- "key": "man_made",
- "value": "manhole",
- "description": "🄿 Manhole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manhole.svg"
- },
- {
- "key": "manhole",
- "value": "drain",
- "description": "🄿 Storm Drain",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manhole.svg"
- },
- {
- "key": "manhole",
- "value": "gas",
- "description": "🄿 Gas Utility Manhole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gas_manhole.svg"
- },
- {
- "key": "manhole",
- "value": "power",
- "description": "🄿 Power Utility Manhole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_manhole.svg"
- },
- {
- "key": "manhole",
- "value": "sewer",
- "description": "🄿 Sewer Utility Manhole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste_manhole.svg"
- },
- {
- "key": "manhole",
- "value": "telecom",
- "description": "🄿 Telecom Utility Manhole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable_manhole.svg"
- },
- {
- "key": "manhole",
- "value": "water",
- "description": "🄿 Water Utility Manhole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste_manhole.svg"
- },
- {
- "key": "man_made",
- "value": "mast",
- "description": "🄿 Mast",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast.svg"
- },
- {
- "key": "tower:type",
- "value": "communication",
- "description": "🄿 Communication Mast, 🄿 Communication Tower",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"
- },
- {
- "key": "communication:mobile_phone",
- "value": "yes",
- "description": "🄿 Mobile Phone Mast",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"
- },
- {
- "key": "communication:radio",
- "value": "yes",
- "description": "🄿 Radio Broadcast Mast",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"
- },
- {
- "key": "communication:television",
- "value": "yes",
- "description": "🄿 Television Broadcast Mast",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"
- },
- {
- "key": "tower:type",
- "value": "lighting",
- "description": "🄿 Lighting Mast",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_lighting.svg"
- },
- {
- "key": "man_made",
- "value": "mineshaft",
- "description": "🄿 Mineshaft",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mineshaft_cage.svg"
- },
- {
- "key": "man_made",
- "value": "monitoring_station",
- "description": "🄿 Monitoring Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/antenna.svg"
- },
- {
- "key": "man_made",
- "value": "obelisk",
- "description": "🄿 Obelisk",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/obelisk.svg"
- },
- {
- "key": "man_made",
- "value": "observatory",
- "description": "🄿 Observatory",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/telescope.svg"
- },
- {
- "key": "man_made",
- "value": "petroleum_well",
- "description": "🄿 Oil Well",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/oil_well.svg"
- },
- {
- "key": "man_made",
- "value": "pier",
- "description": "🄿 Pier",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pier_fixed.svg"
- },
- {
- "key": "floating",
- "value": "yes",
- "description": "🄿 Floating Pier",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pier_floating.svg"
- },
- {
- "key": "man_made",
- "value": "pipeline",
- "description": "🄿 Pipeline",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"
- },
- {
- "key": "location",
- "value": "underground",
- "description": "🄿 Underground Pipeline, 🄿 Underground Power Cable",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"
- },
- {
- "key": "man_made",
- "value": "pumping_station",
- "description": "🄿 Pumping Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/powered_pump.svg"
- },
- {
- "key": "man_made",
- "value": "silo",
- "description": "🄿 Silo",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"
- },
- {
- "key": "content",
- "value": "water",
- "description": "🄿 Water Tank, 🄵🅅 Content: `water`",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"
- },
- {
- "key": "man_made",
- "value": "street_cabinet",
- "description": "🄿 Street Cabinet",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"
- },
- {
- "key": "man_made",
- "value": "surveillance",
- "description": "🄿 Surveillance",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/security_camera.svg"
- },
- {
- "key": "surveillance:type",
- "value": "camera",
- "description": "🄿 Surveillance Camera, 🄵🅅 Surveillance Type: Camera",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/security_camera.svg"
- },
- {
- "key": "man_made",
- "value": "survey_point",
- "description": "🄿 Survey Point",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/benchmark_disk.svg"
- },
- {
- "key": "man_made",
- "value": "tailings_pond",
- "description": "🄿 Tailings Pond",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "man_made",
- "value": "torii",
- "description": "🄿 Torii",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shinto.svg"
- },
- {
- "key": "man_made",
- "value": "tower",
- "description": "🄿 Tower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tower.svg"
- },
- {
- "key": "tower:type",
- "value": "bell_tower",
- "description": "🄿 Bell Tower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bell.svg"
- },
- {
- "key": "tower:type",
- "value": "cooling",
- "description": "🄿 Cooling Tower",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cooling_tower.svg"
- },
- {
- "key": "tower:type",
- "value": "defensive",
- "description": "🄿 Fortified Tower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"
- },
- {
- "key": "tower:type",
- "value": "diving",
- "description": "🄿 Diving Platform",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diving.svg"
- },
- {
- "key": "tower:type",
- "value": "minaret",
- "description": "🄿 Minaret",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/domed_tower.svg"
- },
- {
- "key": "tower:type",
- "value": "observation",
- "description": "🄿 Observation Tower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/observation-tower-15.svg"
- },
- {
- "key": "tower:type",
- "value": "pagoda",
- "description": "🄿 Pagoda",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vihara.svg"
- },
- {
- "key": "man_made",
- "value": "tunnel",
- "description": "🄿 Tunnel Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tunnel.svg"
- },
- {
- "key": "man_made",
- "value": "utility_pole",
- "description": "🄿 Utility Pole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/utility_pole.svg"
- },
- {
- "key": "man_made",
- "value": "video_wall",
- "description": "🄿 Digital Screen",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/billboard.svg"
- },
- {
- "key": "man_made",
- "value": "wastewater_plant",
- "description": "🄿 Wastewater Plant",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste.svg"
- },
- {
- "key": "man_made",
- "value": "water_tap",
- "description": "🄿 Water Tap",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water_tap.svg"
- },
- {
- "key": "man_made",
- "value": "water_tower",
- "description": "🄿 Water Tower",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water_tower.svg"
- },
- {
- "key": "man_made",
- "value": "water_well",
- "description": "🄿 Water Well",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/well_pump_manual.svg"
- },
- {
- "key": "man_made",
- "value": "water_works",
- "description": "🄿 Water Works",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/powered_pump.svg"
- },
- {
- "key": "man_made",
- "value": "watermill",
- "description": "🄿 Watermill",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watermill-15.svg"
- },
- {
- "key": "man_made",
- "value": "windmill",
- "description": "🄿 Windmill",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/windmill-15.svg"
- },
- {
- "key": "man_made",
- "value": "windpump",
- "description": "🄿 Windpump",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/windpump.svg"
- },
- {
- "key": "man_made",
- "value": "works",
- "description": "🄿 Factory",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"
- },
- {
- "key": "product",
- "value": "beer",
- "description": "🄿 Industrial Brewery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"
- },
- {
- "key": "marker",
- "description": "🄿 Marker, 🄵 Type",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"
- },
- {
- "key": "utility",
- "description": "🄿 Utility Marker, 🄵 Utilities, 🄵 Utility",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"
- },
- {
- "key": "utility",
- "value": "power",
- "description": "🄿 Power Marker, 🄵🅅 Utility: Power",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"
- },
- {
- "key": "military",
- "value": "bunker",
- "description": "🄿 Military Bunker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunker.svg"
- },
- {
- "key": "military",
- "value": "checkpoint",
- "description": "🄿 Military Checkpoint",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military_checkpoint.svg"
- },
- {
- "key": "military",
- "value": "nuclear_explosion_site",
- "description": "🄿 Nuclear Explosion Site",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger-15.svg"
- },
- {
- "key": "military",
- "value": "office",
- "description": "🄿 Military Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"
- },
- {
- "key": "military",
- "value": "trench",
- "description": "🄿 Military Trench",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trench.svg"
- },
- {
- "key": "natural",
- "value": "bare_rock",
- "description": "🄿 Bare Rock",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boulder3.svg"
- },
- {
- "key": "natural",
- "value": "bay",
- "description": "🄿 Bay",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"
- },
- {
- "key": "natural",
- "value": "beach",
- "description": "🄿 Beach",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"
- },
- {
- "key": "natural",
- "value": "cape",
- "description": "🄿 Cape",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cape_landform.svg"
- },
- {
- "key": "natural",
- "value": "cave_entrance",
- "description": "🄿 Cave Entrance",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-15.svg"
- },
- {
- "key": "natural",
- "value": "cliff",
- "description": "🄿 Cliff",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cliff_falling_rocks.svg"
- },
- {
- "key": "natural",
- "value": "coastline",
- "description": "🄿 Coastline",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"
- },
- {
- "key": "natural",
- "value": "fell",
- "description": "🄿 Fell",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "geyser",
- "description": "🄿 Geyser",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "natural",
- "value": "glacier",
- "description": "🄿 Glacier",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/snow.svg"
- },
- {
- "key": "natural",
- "value": "grassland",
- "description": "🄿 Grassland",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/grass.svg"
- },
- {
- "key": "natural",
- "value": "heath",
- "description": "🄿 Heath",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shrub_low.svg"
- },
- {
- "key": "natural",
- "value": "hot_spring",
- "description": "🄿 Hot Spring",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hot-spring-15.svg"
- },
- {
- "key": "natural",
- "value": "mud",
- "description": "🄿 Mud",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "peak",
- "description": "🄿 Peak",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/mountain-15.svg"
- },
- {
- "key": "natural",
- "value": "reef",
- "description": "🄿 Reef",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/coral_reef.svg"
- },
- {
- "key": "natural",
- "value": "ridge",
- "description": "🄿 Ridge",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mountain_range.svg"
- },
- {
- "key": "natural",
- "value": "rock",
- "description": "🄿 Attached Rock / Boulder",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boulder2.svg"
- },
- {
- "key": "natural",
- "value": "saddle",
- "description": "🄿 Saddle",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/saddle.svg"
- },
- {
- "key": "natural",
- "value": "sand",
- "description": "🄿 Sand",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "scree",
- "description": "🄿 Scree",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "scrub",
- "description": "🄿 Scrub",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shrub.svg"
- },
- {
- "key": "natural",
- "value": "shingle",
- "description": "🄿 Shingle",
- "object_types": [
- "area"
- ]
- },
- {
- "key": "natural",
- "value": "shrub",
- "description": "🄿 Shrub",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shrub.svg"
- },
- {
- "key": "natural",
- "value": "spring",
- "description": "🄿 Spring",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "natural",
- "value": "stone",
- "description": "🄿 Unattached Stone / Boulder",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boulder1.svg"
- },
- {
- "key": "natural",
- "value": "strait",
- "description": "🄿 Strait",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"
- },
- {
- "key": "natural",
- "value": "tree_row",
- "description": "🄿 Tree Row",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tree_row.svg"
- },
- {
- "key": "natural",
- "value": "tree_stump",
- "description": "🄿 Tree Stump",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tree_stump.svg"
- },
- {
- "key": "natural",
- "value": "tree",
- "description": "🄿 Tree",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-15.svg"
- },
- {
- "key": "natural",
- "value": "valley",
- "description": "🄿 Valley",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/valley.svg"
- },
- {
- "key": "natural",
- "value": "volcano",
- "description": "🄿 Volcano",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volcano-15.svg"
- },
- {
- "key": "natural",
- "value": "water",
- "description": "🄿 Water",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "water",
- "value": "basin",
- "description": "🄿 Basin",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "water",
- "value": "canal",
- "description": "🄿 Canal Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"
- },
- {
- "key": "water",
- "value": "lake",
- "description": "🄿 Lake",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "water",
- "value": "moat",
- "description": "🄿 Moat",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "water",
- "value": "oxbow",
- "description": "🄿 Oxbow Lake",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "water",
- "value": "pond",
- "description": "🄿 Pond",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"
- },
- {
- "key": "water",
- "value": "river",
- "description": "🄿 River Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"
- },
- {
- "key": "water",
- "value": "stream",
- "description": "🄿 Stream Area",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"
- },
- {
- "key": "water",
- "value": "wastewater",
- "description": "🄿 Wastewater Basin",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste.svg"
- },
- {
- "key": "natural",
- "value": "wetland",
- "description": "🄿 Wetland",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"
- },
- {
- "key": "wetland",
- "value": "bog",
- "description": "🄿 Bog, 🄵🅅 Type: Bog",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"
- },
- {
- "key": "wetland",
- "value": "fen",
- "description": "🄿 Fen, 🄵🅅 Type: Fen",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"
- },
- {
- "key": "wetland",
- "value": "mangrove",
- "description": "🄿 Mangrove, 🄵🅅 Type: Mangrove",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"
- },
- {
- "key": "wetland",
- "value": "marsh",
- "description": "🄿 Marsh, 🄵🅅 Type: Marsh",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"
- },
- {
- "key": "wetland",
- "value": "reedbed",
- "description": "🄿 Reed bed, 🄵🅅 Type: Reed Bed",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"
- },
- {
- "key": "wetland",
- "value": "saltmarsh",
- "description": "🄿 Coastal Salt Marsh, 🄵🅅 Type: Coastal Salt Marsh",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"
- },
- {
- "key": "wetland",
- "value": "string_bog",
- "description": "🄿 String Bog, 🄵🅅 Type: String Bog",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"
- },
- {
- "key": "wetland",
- "value": "swamp",
- "description": "🄿 Swamp, 🄵🅅 Type: Swamp",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/swamp.svg"
- },
- {
- "key": "wetland",
- "value": "tidalflat",
- "description": "🄿 Tidal Flat, 🄵🅅 Type: Tidal Flat",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"
- },
- {
- "key": "wetland",
- "value": "wet_meadow",
- "description": "🄿 Wet Meadow, 🄵🅅 Type: Wet Meadow",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"
- },
- {
- "key": "natural",
- "value": "wood",
- "description": "🄿 Natural Wood",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-alt1-15.svg"
- },
- {
- "key": "network:type",
- "value": "node_network",
- "description": "🄿 Recreational Network Node",
- "object_types": [
- "node"
- ]
- },
- {
- "key": "noexit",
- "value": "yes",
- "description": "🄿 No Exit",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/barrier-15.svg"
- },
- {
- "key": "office",
- "description": "🄿 Office, 🄵 Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "administrative",
- "description": "🄿 Administrative Office (unsearchable), 🄳 (deprecated tag) ➜ office=government",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "physician",
- "description": "🄿 Physician (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "travel_agent",
- "description": "🄿 Travel Agency (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "yes",
- "description": "🄿 Office (Unspecified Type) (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "accountant",
- "description": "🄿 Accountant Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/accounting.svg"
- },
- {
- "key": "office",
- "value": "adoption_agency",
- "description": "🄿 Adoption Agency",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "advertising_agency",
- "description": "🄿 Advertising Agency",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "architect",
- "description": "🄿 Architect Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-drafting-compass.svg"
- },
- {
- "key": "office",
- "value": "association",
- "description": "🄿 Nonprofit Organization Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "bail_bond_agent",
- "description": "🄿 Bail Bond Agent",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank-15.svg"
- },
- {
- "key": "office",
- "value": "charity",
- "description": "🄿 Charity Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "company",
- "description": "🄿 Corporate Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "consulting",
- "description": "🄿 Consultancy Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "coworking",
- "description": "🄿 Coworking Space",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "diplomatic",
- "description": "🄿 Diplomatic Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"
- },
- {
- "key": "diplomatic",
- "value": "consulate",
- "description": "🄿 Consulate",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"
- },
- {
- "key": "diplomatic",
- "value": "embassy",
- "description": "🄿 Embassy",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"
- },
- {
- "key": "diplomatic",
- "value": "liaison",
- "description": "🄿 Liaison Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"
- },
- {
- "key": "office",
- "value": "educational_institution",
- "description": "🄿 Educational Institution",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/school-15.svg"
- },
- {
- "key": "office",
- "value": "employment_agency",
- "description": "🄿 Employment Agency",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "energy_supplier",
- "description": "🄿 Energy Supplier Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/briefcase_bolt.svg"
- },
- {
- "key": "office",
- "value": "estate_agent",
- "description": "🄿 Real Estate Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/real_estate_agency.svg"
- },
- {
- "key": "office",
- "value": "financial_advisor",
- "description": "🄿 Financial Advisor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "financial",
- "description": "🄿 Financial Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "forestry",
- "description": "🄿 Forestry Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "foundation",
- "description": "🄿 Foundation Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "government",
- "description": "🄿 Government Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"
- },
- {
- "key": "government",
- "value": "prosecutor",
- "description": "🄿 Public Prosecutor's Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "government",
- "value": "register_office",
- "description": "🄿 Register Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"
- },
- {
- "key": "government",
- "value": "tax",
- "description": "🄿 Tax and Revenue Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"
- },
- {
- "key": "office",
- "value": "graphic_design",
- "description": "🄿 Graphic Design Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "guide",
- "description": "🄿 Tour Guide Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "insurance",
- "description": "🄿 Insurance Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/briefcase_shield.svg"
- },
- {
- "key": "office",
- "value": "it",
- "description": "🄿 Information Technology Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "lawyer",
- "description": "🄿 Law Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-balance-scale.svg"
- },
- {
- "key": "lawyer",
- "value": "notary",
- "description": "🄿 Notary Office (unsearchable), 🄳 (deprecated tag) ➜ office=notary",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "moving_company",
- "description": "🄿 Moving Company Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-people-carry.svg"
- },
- {
- "key": "office",
- "value": "newspaper",
- "description": "🄿 Newspaper Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-newspaper.svg"
- },
- {
- "key": "office",
- "value": "ngo",
- "description": "🄿 NGO Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "notary",
- "description": "🄿 Notary Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-stamp.svg"
- },
- {
- "key": "office",
- "value": "political_party",
- "description": "🄿 Political Party Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall-15.svg"
- },
- {
- "key": "office",
- "value": "private_investigator",
- "description": "🄿 Private Investigator Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-secret.svg"
- },
- {
- "key": "office",
- "value": "property_management",
- "description": "🄿 Property Management / Leasing Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "quango",
- "description": "🄿 Quasi-NGO Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "religion",
- "description": "🄿 Religious Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "research",
- "description": "🄿 Research Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flask.svg"
- },
- {
- "key": "office",
- "value": "security",
- "description": "🄿 Security Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/briefcase_shield.svg"
- },
- {
- "key": "office",
- "value": "surveyor",
- "description": "🄿 Surveyor Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vest.svg"
- },
- {
- "key": "office",
- "value": "tax_advisor",
- "description": "🄿 Tax Advisor Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "telecommunication",
- "description": "🄿 Telecom Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/telephone-15.svg"
- },
- {
- "key": "office",
- "value": "therapist",
- "description": "🄿 Therapist Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "union",
- "description": "🄿 Labor Union Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "office",
- "value": "water_utility",
- "description": "🄿 Water Utility Office",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"
- },
- {
- "key": "pipeline",
- "value": "substation",
- "description": "🄿 Pipeline Substation",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/powered_pump.svg"
- },
- {
- "key": "pipeline",
- "value": "valve",
- "description": "🄿 Pipeline Valve",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wheel.svg"
- },
- {
- "key": "piste:type",
- "value": "downhill",
- "description": "🄿 Downhill Ski Run, 🄵🅅 Type: Downhill",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"
- },
- {
- "key": "man_made",
- "value": "piste:halfpipe",
- "description": "🄿 Snowsports Half-Pipe",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-snowboarding.svg"
- },
- {
- "key": "piste:type",
- "value": "hike",
- "description": "🄿 Snowshoeing / Winter Hiking Trail, 🄵🅅 Type: Hike",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/snow_shoeing.svg"
- },
- {
- "key": "piste:type",
- "value": "ice_skate",
- "description": "🄿 Ice Skating Trail, 🄵🅅 Type: Ice Skate",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skating.svg"
- },
- {
- "key": "piste:type",
- "value": "nordic",
- "description": "🄿 Cross-Country Ski Trail, 🄵🅅 Type: Nordic",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing-nordic.svg"
- },
- {
- "key": "piste:type",
- "description": "🄿 Snowsports Trail / Piste, 🄵 Type",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"
- },
- {
- "key": "piste:type",
- "value": "skitour",
- "description": "🄿 Ski Touring Trail, 🄵🅅 Type: Skitour",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing-nordic.svg"
- },
- {
- "key": "piste:type",
- "value": "sled",
- "description": "🄿 Sled Run, 🄵🅅 Type: Sled",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sledding.svg"
- },
- {
- "key": "piste:type",
- "value": "sleigh",
- "description": "🄿 Sleigh Trail, 🄵🅅 Type: Sleigh",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-sleigh.svg"
- },
- {
- "key": "place",
- "value": "farm",
- "description": "🄿 Farm (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"
- },
- {
- "key": "place",
- "value": "city_block",
- "description": "🄿 City Block",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"
- },
- {
- "key": "place",
- "value": "city",
- "description": "🄿 City",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/city-15.svg"
- },
- {
- "key": "place",
- "value": "hamlet",
- "description": "🄿 Hamlet",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"
- },
- {
- "key": "place",
- "value": "island",
- "description": "🄿 Island",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/island_trees_building.svg"
- },
- {
- "key": "place",
- "value": "islet",
- "description": "🄿 Islet",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/islet_tree.svg"
- },
- {
- "key": "place",
- "value": "isolated_dwelling",
- "description": "🄿 Isolated Dwelling",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"
- },
- {
- "key": "place",
- "value": "locality",
- "description": "🄿 Locality",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"
- },
- {
- "key": "place",
- "value": "neighbourhood",
- "description": "🄿 Neighborhood",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"
- },
- {
- "key": "place",
- "value": "plot",
- "description": "🄿 Plot",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"
- },
- {
- "key": "place",
- "value": "quarter",
- "description": "🄿 Sub-Borough / Quarter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"
- },
- {
- "key": "place",
- "value": "square",
- "description": "🄿 Square",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/marker-stroked-15.svg"
- },
- {
- "key": "place",
- "value": "suburb",
- "description": "🄿 Borough / Suburb",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"
- },
- {
- "key": "place",
- "value": "town",
- "description": "🄿 Town",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-15.svg"
- },
- {
- "key": "place",
- "value": "village",
- "description": "🄿 Village",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/village-15.svg"
- },
- {
- "key": "playground",
- "value": "activitypanel",
- "description": "🄿 Play Activity Panel",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "aerialrotator",
- "description": "🄿 Hanging Spinner",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "balancebeam",
- "description": "🄿 Play Balance Beam",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/balance_beam.svg"
- },
- {
- "key": "playground",
- "value": "basketrotator",
- "description": "🄿 Basket Spinner",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "basketswing",
- "description": "🄿 Basket Swing",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "bridge",
- "description": "🄿 Play Bridge",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "climbingframe",
- "description": "🄿 Play Climbing Frame",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "climbingwall",
- "description": "🄿 Play Climbing Wall",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "cushion",
- "description": "🄿 Bouncy Cushion",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "funnel_ball",
- "description": "🄿 Funnel Ball Funnel",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "hopscotch",
- "description": "🄿 Hopscotch",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "horizontal_bar",
- "description": "🄿 Play Horizontal Bar",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horizontal_bar.svg"
- },
- {
- "key": "playground",
- "value": "map",
- "description": "🄿 Painted Playground Map",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/compass.svg"
- },
- {
- "key": "playground",
- "value": "playhouse",
- "description": "🄿 Play House",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/play_structure.svg"
- },
- {
- "key": "playground",
- "value": "roundabout",
- "description": "🄿 Play Roundabout",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/stadium-15.svg"
- },
- {
- "key": "playground",
- "value": "sandpit",
- "description": "🄿 Play Sandbox",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sandbox.svg"
- },
- {
- "key": "playground",
- "value": "seesaw",
- "description": "🄿 Seesaw",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/seesaw.svg"
- },
- {
- "key": "playground",
- "value": "sledding",
- "description": "🄿 Play Sledding Hill",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sledding.svg"
- },
- {
- "key": "playground",
- "value": "slide",
- "description": "🄿 Slide",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/slide.svg"
- },
- {
- "key": "playground",
- "value": "splash_pad",
- "description": "🄿 Play Splash Pad",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fountain.svg"
- },
- {
- "key": "playground",
- "value": "springy",
- "description": "🄿 Spring Rider",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spring_rider.svg"
- },
- {
- "key": "playground",
- "value": "structure",
- "description": "🄿 Play Structure",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/play_structure.svg"
- },
- {
- "key": "playground",
- "value": "swing",
- "description": "🄿 Swing",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "teenshelter",
- "description": "🄿 Teen Shelter",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"
- },
- {
- "key": "playground",
- "value": "tetherball",
- "description": "🄿 Tetherball Pole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "trampoline",
- "description": "🄿 Trampoline",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "tunnel_tube",
- "description": "🄿 Play Tunnel",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "playground",
- "value": "water",
- "description": "🄿 Play Water Pump/Screw",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water.svg"
- },
- {
- "key": "playground",
- "value": "zipwire",
- "description": "🄿 Play Zip Line",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"
- },
- {
- "key": "police",
- "value": "checkpoint",
- "description": "🄿 Police Checkpoint",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military_checkpoint.svg"
- },
- {
- "key": "polling_station",
- "description": "🄿 Temporary Polling Place, 🄵 Polling Place",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vote-yea.svg"
- },
- {
- "key": "power",
- "value": "cable",
- "description": "🄿 Power Cable (unsearchable)",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable.svg"
- },
- {
- "key": "power",
- "value": "catenary_mast",
- "description": "🄿 Catenary Pole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_pole.svg"
- },
- {
- "key": "power",
- "value": "generator",
- "description": "🄿 Power Generator",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"
- },
- {
- "key": "generator:method",
- "value": "photovoltaic",
- "description": "🄿 Solar Panel, 🄵🅅 Method: Photovoltaic",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"
- },
- {
- "key": "location",
- "value": "roof",
- "description": "🄿 Rooftop Solar Panel",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"
- },
- {
- "key": "generator:source",
- "value": "hydro",
- "description": "🄿 Water Turbine, 🄵🅅 Source: Hydropower",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"
- },
- {
- "key": "generator:method",
- "value": "fission",
- "description": "🄿 Nuclear Reactor, 🄵🅅 Method: Fission",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/radiation.svg"
- },
- {
- "key": "generator:source",
- "value": "wind",
- "description": "🄿 Wind Turbine, 🄵🅅 Source: Wind",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wind_turbine.svg"
- },
- {
- "key": "power",
- "value": "line",
- "description": "🄿 Power Line",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_tower.svg"
- },
- {
- "key": "power",
- "value": "minor_line",
- "description": "🄿 Minor Power Line",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/power-line.svg"
- },
- {
- "key": "power",
- "value": "plant",
- "description": "🄿 Power Station Grounds",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"
- },
- {
- "key": "plant:source",
- "value": "coal",
- "description": "🄿 Coal-Fired Power Plant",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"
- },
- {
- "key": "plant:source",
- "value": "gas",
- "description": "🄿 Gas-Fired Power Plant",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gas.svg"
- },
- {
- "key": "plant:source",
- "value": "hydro",
- "description": "🄿 Hydroelectric Power Station",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"
- },
- {
- "key": "plant:method",
- "value": "photovoltaic",
- "description": "🄿 Solar Farm",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"
- },
- {
- "key": "plant:source",
- "value": "nuclear",
- "description": "🄿 Nuclear Power Plant",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/radiation.svg"
- },
- {
- "key": "plant:source",
- "value": "oil",
- "description": "🄿 Oil-Fired Power Plant",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tint.svg"
- },
- {
- "key": "plant:source",
- "value": "solar",
- "description": "🄿 Solar Power Plant",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"
- },
- {
- "key": "plant:source",
- "value": "waste",
- "description": "🄿 Waste Incineration Power Plant",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumpster-fire.svg"
- },
- {
- "key": "plant:source",
- "value": "wind",
- "description": "🄿 Wind Farm",
- "object_types": [
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wind_turbine.svg"
- },
- {
- "key": "power",
- "value": "pole",
- "description": "🄿 Power Pole",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_pole.svg"
- },
- {
- "key": "power",
- "value": "portal",
- "description": "🄿 Anchor Portal",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"
- },
- {
- "key": "power",
- "value": "substation",
- "description": "🄿 Substation",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"
- },
- {
- "key": "power",
- "value": "switch",
- "description": "🄿 Power Switch",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_switch.svg"
- },
- {
- "key": "power",
- "value": "tower",
- "description": "🄿 High-Voltage Tower",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_tower.svg"
- },
- {
- "key": "power",
- "value": "transformer",
- "description": "🄿 Transformer",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_transformer.svg"
- },
- {
- "key": "public_transport",
- "value": "platform",
- "description": "🄿 Transit Stop / Platform, 🄿 Transit Platform",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sign_and_bench.svg"
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport.svg"
},
{
"key": "aerialway",
- "value": "yes",
- "description": "🄿 Aerialway Stop / Platform (unsearchable), 🄿 Aerialway Platform, 🄿 Aerialway Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"
- },
- {
- "key": "ferry",
- "value": "yes",
- "description": "🄿 Ferry Stop / Platform (unsearchable), 🄿 Ferry Platform, 🄿 Ferry Terminal, 🄿 Ferry Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ferry.svg"
- },
- {
- "key": "light_rail",
- "value": "yes",
- "description": "🄿 Light Rail Stop / Platform (unsearchable), 🄿 Light Rail Platform, 🄿 Light Rail Station, 🄿 Light Rail Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/light_rail.svg"
- },
- {
- "key": "monorail",
- "value": "yes",
- "description": "🄿 Monorail Stop / Platform (unsearchable), 🄿 Monorail Platform, 🄿 Monorail Station, 🄿 Monorail Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/monorail.svg"
- },
- {
- "key": "subway",
- "value": "yes",
- "description": "🄿 Subway Stop / Platform (unsearchable), 🄿 Subway Platform, 🄿 Subway Station, 🄿 Subway Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/subway.svg"
- },
- {
- "key": "train",
- "value": "yes",
- "description": "🄿 Train Stop / Platform (unsearchable), 🄿 Train Platform, 🄿 Train Station, 🄿 Train Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"
- },
- {
- "key": "bus",
- "value": "yes",
- "description": "🄿 Bus Stop, 🄿 Bus Platform, 🄿 Bus Station / Terminal, 🄿 Bus Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"
- },
- {
- "key": "tram",
- "value": "yes",
- "description": "🄿 Tram & Bus Stop, 🄿 Tram Stop / Platform, 🄿 Tram Platform, 🄿 Tram Station, 🄿 Tram Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"
- },
- {
- "key": "trolleybus",
- "value": "yes",
- "description": "🄿 Trolleybus Stop, 🄿 Trolleybus Platform, 🄿 Trolleybus Station / Terminal, 🄿 Trolleybus Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trolleybus.svg"
- },
- {
- "key": "aerialway",
- "value": "station",
- "description": "🄿 Aerialway Station",
+ "description": "🄿 Aerialway Feature (unsearchable), 🄵 Type",
"object_types": [
"node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"
- },
- {
- "key": "railway",
- "value": "halt",
- "description": "🄿 Train Station (Halt / Request), 🄿 Train Station (Halt / Request) (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rail_flag.svg"
- },
- {
- "key": "public_transport",
- "value": "station",
- "description": "🄿 Transit Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/transit.svg"
- },
- {
- "key": "public_transport",
- "value": "stop_area",
- "description": "🄿 Transit Stop Area",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
- },
- {
- "key": "public_transport",
- "value": "stop_position",
- "description": "🄿 Transit Stopping Location",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/transit.svg"
- },
- {
- "key": "railway",
- "value": "platform",
- "description": "🄿 Train Platform (unsearchable), 🄳 (deprecated tag) ➜ railway=platform + public_transport=platform",
- "object_types": [
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/board_train.svg"
- },
- {
- "key": "railway",
- "value": "station",
- "description": "🄿 Train Station (unsearchable), 🄳 (deprecated tag) ➜ railway=station + public_transport=station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"
- },
- {
- "key": "railway",
- "value": "tram_stop",
- "description": "🄿 Tram Stopping Position (unsearchable), 🄳 (deprecated tag) ➜ railway=tram_stop + public_transport=stop_position + tram=yes",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"
- },
- {
- "key": "railway",
- "value": "abandoned",
- "description": "🄿 Abandoned Railway",
- "object_types": [
"way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_askew.svg"
- },
- {
- "key": "railway",
- "value": "buffer_stop",
- "description": "🄿 Buffer Stop",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buffer_stop.svg"
- },
- {
- "key": "railway",
- "value": "construction",
- "description": "🄿 Railway Under Construction",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_partial.svg"
- },
- {
- "key": "railway",
- "value": "crossing",
- "description": "🄿 Railway-Path Crossing",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "railway",
- "value": "derail",
- "description": "🄿 Railway Derailer",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"
- },
- {
- "key": "railway",
- "value": "disused",
- "description": "🄿 Disused Railway",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track.svg"
- },
- {
- "key": "railway",
- "value": "funicular",
- "description": "🄿 Funicular Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_cable_track.svg"
- },
- {
- "key": "railway",
- "value": "level_crossing",
- "description": "🄿 Railway-Road Crossing",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cross-15.svg"
- },
- {
- "key": "railway",
- "value": "light_rail",
- "description": "🄿 Light Rail Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/light_rail.svg"
- },
- {
- "key": "railway",
- "value": "milestone",
- "description": "🄿 Railway Milestone",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"
- },
- {
- "key": "railway",
- "value": "miniature",
- "description": "🄿 Miniature Train Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_mini.svg"
- },
- {
- "key": "railway",
- "value": "monorail",
- "description": "🄿 Monorail Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/monorail.svg"
- },
- {
- "key": "monorail",
- "value": "hanging",
- "description": "🄿 Hanging Monorail Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hanging_rail.svg"
- },
- {
- "key": "railway",
- "value": "narrow_gauge",
- "description": "🄿 Narrow Gauge Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_narrow.svg"
- },
- {
- "key": "railway:preserved",
- "value": "yes",
- "description": "🄿 Heritage Railway Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_steam.svg"
- },
- {
- "key": "railway",
- "value": "rail",
- "description": "🄿 Train Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track.svg"
- },
- {
- "key": "highspeed",
- "value": "yes",
- "description": "🄿 High-Speed Train Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_bullet.svg"
- },
- {
- "key": "railway",
- "value": "railway_crossing",
- "description": "🄿 Railway-Railway Crossing",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/x_oblique.svg"
- },
- {
- "key": "railway",
- "value": "signal",
- "description": "🄿 Railway Signal",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_signals.svg"
- },
- {
- "key": "railway",
- "value": "subway_entrance",
- "description": "🄿 Subway Entrance",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-15.svg"
- },
- {
- "key": "railway",
- "value": "subway",
- "description": "🄿 Subway Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/subway.svg"
- },
- {
- "key": "railway",
- "value": "switch",
- "description": "🄿 Railway Switch",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junction.svg"
- },
- {
- "key": "railway",
- "value": "wash",
- "description": "🄿 Train Wash",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_wash.svg"
- },
- {
- "key": "railway",
- "value": "tram_crossing",
- "description": "🄿 Tram-Path Crossing",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crossing_tram_striped.svg"
- },
- {
- "key": "railway",
- "value": "tram_level_crossing",
- "description": "🄿 Tram-Road Crossing",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crossing_tram_solid.svg"
- },
- {
- "key": "railway",
- "value": "tram",
- "description": "🄿 Tram Track",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"
- },
- {
- "key": "railway",
- "value": "yard",
- "description": "🄿 Rail Yard",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/freight_car.svg"
- },
- {
- "key": "route",
- "value": "ferry",
- "description": "🄿 Ferry Route",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ferry.svg"
- },
- {
- "key": "seamark:type",
- "value": "beacon_isolated_danger",
- "description": "🄿 Danger Beacon",
- "object_types": [
- "node"
]
},
{
- "key": "seamark:type",
- "value": "beacon_lateral",
- "description": "🄿 Channel Beacon",
+ "key": "waterway",
+ "value": "weir",
+ "description": "🄿 Weir",
"object_types": [
- "node"
- ]
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam.svg"
},
{
- "key": "seamark:type",
- "value": "buoy_lateral",
- "description": "🄿 Channel Buoy",
+ "key": "waterway",
+ "value": "waterfall",
+ "description": "🄿 Waterfall",
"object_types": [
"node"
],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buoy.svg"
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waterfall.svg"
},
{
- "key": "seamark:buoy_lateral:colour",
- "value": "green",
- "description": "🄿 Green Buoy, 🄵🅅 Color: Green",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buoy.svg"
- },
- {
- "key": "seamark:buoy_lateral:colour",
- "value": "red",
- "description": "🄿 Red Buoy, 🄵🅅 Color: Red",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buoy.svg"
- },
- {
- "key": "seamark:type",
- "value": "mooring",
- "description": "🄿 Mooring",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horn_cleat.svg"
- },
- {
- "key": "shop",
- "description": "🄿 Shop, 🄵 Type",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "boutique",
- "description": "🄿 Boutique (unsearchable), 🄳 (deprecated tag) ➜ shop=clothes",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "fashion",
- "description": "🄿 Fashion Store (unsearchable), 🄳 (deprecated tag) ➜ shop=clothes",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "vacant",
- "description": "🄿 Vacant Shop (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "yes",
- "description": "🄿 Shop (Unspecified Type) (unsearchable)",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "agrarian",
- "description": "🄿 Farm Supply Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"
- },
- {
- "key": "shop",
- "value": "alcohol",
- "description": "🄿 Liquor Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-wine-bottle.svg"
- },
- {
- "key": "shop",
- "value": "anime",
- "description": "🄿 Anime / Manga Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dragon.svg"
- },
- {
- "key": "shop",
- "value": "antiques",
- "description": "🄿 Antique Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/furniture.svg"
- },
- {
- "key": "shop",
- "value": "appliance",
- "description": "🄿 Appliance Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/laundry.svg"
- },
- {
- "key": "shop",
- "value": "art",
- "description": "🄿 Art Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "baby_goods",
- "description": "🄿 Baby Goods Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby-carriage.svg"
- },
- {
- "key": "shop",
- "value": "bag",
- "description": "🄿 Bag/Luggage Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-suitcase-rolling.svg"
- },
- {
- "key": "shop",
- "value": "bakery",
- "description": "🄿 Bakery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bakery-15.svg"
- },
- {
- "key": "shop",
- "value": "bathroom_furnishing",
- "description": "🄿 Bathroom Furnishing Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bath.svg"
- },
- {
- "key": "shop",
- "value": "beauty",
- "description": "🄿 Beauty Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lipstick.svg"
- },
- {
- "key": "beauty",
- "value": "nails",
- "description": "🄿 Nail Salon, 🄵🅅 Services: Manicure / Pedicure",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/polished_nail.svg"
- },
- {
- "key": "beauty",
- "value": "tanning",
- "description": "🄿 Tanning Salon, 🄵🅅 Services: Tanning",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tanning.svg"
- },
- {
- "key": "shop",
- "value": "bed",
- "description": "🄿 Bedding/Mattress Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"
- },
- {
- "key": "shop",
- "value": "beverages",
- "description": "🄿 Beverage Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bottles.svg"
- },
- {
- "key": "shop",
- "value": "bicycle",
- "description": "🄿 Bicycle Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"
- },
- {
- "key": "shop",
- "value": "boat",
- "description": "🄿 Boat Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat.svg"
- },
- {
- "key": "shop",
- "value": "bookmaker",
- "description": "🄿 Bookmaker",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"
- },
- {
- "key": "shop",
- "value": "books",
- "description": "🄿 Bookstore",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-book.svg"
- },
- {
- "key": "shop",
- "value": "brewing_supplies",
- "description": "🄿 Brewing Supply Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"
- },
- {
- "key": "shop",
- "value": "butcher",
- "description": "🄿 Butcher",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cleaver.svg"
- },
- {
- "key": "shop",
- "value": "camera",
- "description": "🄿 Camera Equipment Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-camera-retro.svg"
- },
- {
- "key": "shop",
- "value": "candles",
- "description": "🄿 Candle Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-burn.svg"
- },
- {
- "key": "shop",
- "value": "cannabis",
- "description": "🄿 Cannabis Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cannabis.svg"
- },
- {
- "key": "shop",
- "value": "car_parts",
- "description": "🄿 Car Parts Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-car-battery.svg"
- },
- {
- "key": "shop",
- "value": "car_repair",
- "description": "🄿 Car Repair Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-repair-15.svg"
- },
- {
- "key": "shop",
- "value": "car",
- "description": "🄿 Car Dealership",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"
- },
- {
- "key": "second_hand",
- "value": "only",
- "description": "🄿 Used Car Dealership, 🄿 Secondhand Clothing Store, 🄵🅅 Sells Used: Only",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"
- },
- {
- "key": "shop",
- "value": "caravan",
- "description": "🄿 RV Dealership",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/camper_trailer.svg"
- },
- {
- "key": "shop",
- "value": "carpet",
- "description": "🄿 Carpet Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"
- },
- {
- "key": "shop",
- "value": "catalogue",
- "description": "🄿 Catalog Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "charity",
- "description": "🄿 Charity Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "cheese",
- "description": "🄿 Cheese Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cheese.svg"
- },
- {
- "key": "shop",
- "value": "chemist",
- "description": "🄿 Drugstore",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-basket.svg"
- },
- {
- "key": "shop",
- "value": "chocolate",
- "description": "🄿 Chocolate Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery-15.svg"
- },
- {
- "key": "shop",
- "value": "clothes",
- "description": "🄿 Clothing Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store-15.svg"
- },
- {
- "key": "clothes",
- "value": "suits",
- "description": "🄿 Suits Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tshirt.svg"
- },
- {
- "key": "clothes",
- "value": "underwear",
- "description": "🄿 Underwear Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bikini.svg"
- },
- {
- "key": "clothes",
- "value": "wedding",
- "description": "🄿 Wedding Clothes Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gown.svg"
- },
- {
- "key": "clothes",
- "value": "workwear",
- "description": "🄿 Workwear Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tshirt.svg"
- },
- {
- "key": "shop",
- "value": "coffee",
- "description": "🄿 Coffee Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/coffee.svg"
- },
- {
- "key": "shop",
- "value": "collector",
- "description": "🄿 Collectibles Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-th.svg"
- },
- {
- "key": "shop",
- "value": "computer",
- "description": "🄿 Computer Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-laptop.svg"
- },
- {
- "key": "shop",
- "value": "confectionery",
- "description": "🄿 Candy Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery-15.svg"
- },
- {
- "key": "shop",
- "value": "convenience",
- "description": "🄿 Convenience Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-basket.svg"
- },
- {
- "key": "shop",
- "value": "copyshop",
- "description": "🄿 Copy Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-print.svg"
- },
- {
- "key": "shop",
- "value": "cosmetics",
- "description": "🄿 Cosmetics Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lipstick.svg"
- },
- {
- "key": "shop",
- "value": "country_store",
- "description": "🄿 Rural Supplies Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hat-cowboy-side.svg"
- },
- {
- "key": "shop",
- "value": "craft",
- "description": "🄿 Arts & Crafts Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cut.svg"
- },
- {
- "key": "shop",
- "value": "curtain",
- "description": "🄿 Curtain Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/curtains.svg"
- },
- {
- "key": "shop",
- "value": "dairy",
- "description": "🄿 Dairy Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cheese.svg"
- },
- {
- "key": "shop",
- "value": "deli",
- "description": "🄿 Delicatessen",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-jar.svg"
- },
- {
- "key": "shop",
- "value": "department_store",
- "description": "🄿 Department Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "doityourself",
- "description": "🄿 DIY Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "shop",
- "value": "doors",
- "description": "🄿 Door Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-open.svg"
- },
- {
- "key": "shop",
- "value": "dry_cleaning",
- "description": "🄿 Dry Cleaner",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clothes_hanger.svg"
- },
- {
- "key": "shop",
- "value": "e-cigarette",
- "description": "🄿 E-Cigarette Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "electrical",
- "description": "🄿 Electrical Equipment Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"
- },
- {
- "key": "shop",
- "value": "electronics",
- "description": "🄿 Electronics Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plug.svg"
- },
- {
- "key": "shop",
- "value": "erotic",
- "description": "🄿 Erotic Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "fabric",
- "description": "🄿 Fabric Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"
- },
- {
- "key": "shop",
- "value": "farm",
- "description": "🄿 Produce Stand",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-apple-alt.svg"
- },
- {
- "key": "shop",
- "value": "fashion_accessories",
- "description": "🄿 Fashion Accessories Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fashion_accessories.svg"
- },
- {
- "key": "shop",
- "value": "fireplace",
- "description": "🄿 Fireplace Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fireplace.svg"
- },
- {
- "key": "shop",
- "value": "fishing",
- "description": "🄿 Fishing Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ice_fishing.svg"
- },
- {
- "key": "shop",
- "value": "flooring",
- "description": "🄿 Flooring Supply Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "shop",
- "value": "florist",
- "description": "🄿 Florist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/florist-15.svg"
- },
- {
- "key": "shop",
- "value": "frame",
- "description": "🄿 Framing Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vector-square.svg"
- },
- {
- "key": "shop",
- "value": "frozen_food",
- "description": "🄿 Frozen Food Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "fuel",
- "description": "🄿 Fuel Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/propane_tank.svg"
- },
- {
- "key": "shop",
- "value": "funeral_directors",
- "description": "🄿 Funeral Home",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"
- },
- {
- "key": "shop",
- "value": "furniture",
- "description": "🄿 Furniture Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-couch.svg"
- },
- {
- "key": "shop",
- "value": "games",
- "description": "🄿 Tabletop Game Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dice.svg"
- },
- {
- "key": "shop",
- "value": "garden_centre",
- "description": "🄿 Garden Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"
- },
- {
- "key": "shop",
- "value": "gas",
- "description": "🄿 Bottled Gas Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/propane_tank.svg"
- },
- {
- "key": "shop",
- "value": "general",
- "description": "🄿 General Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "gift",
- "description": "🄿 Gift Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gift-15.svg"
- },
- {
- "key": "shop",
- "value": "greengrocer",
- "description": "🄿 Greengrocer",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-carrot.svg"
- },
- {
- "key": "shop",
- "value": "hairdresser_supply",
- "description": "🄿 Hairdresser Supply Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hair_care.svg"
- },
- {
- "key": "shop",
- "value": "hairdresser",
- "description": "🄿 Hairdresser",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beauty_salon.svg"
- },
- {
- "key": "shop",
- "value": "hardware",
- "description": "🄿 Hardware Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "shop",
- "value": "health_food",
- "description": "🄿 Health Food Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "hearing_aids",
- "description": "🄿 Hearing Aids Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hearing_aid.svg"
- },
- {
- "key": "shop",
- "value": "herbalist",
- "description": "🄿 Herbalist",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-leaf.svg"
- },
- {
- "key": "shop",
- "value": "hifi",
- "description": "🄿 Hifi Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speaker.svg"
- },
- {
- "key": "shop",
- "value": "hobby",
- "description": "🄿 Hobby Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dragon.svg"
- },
- {
- "key": "shop",
- "value": "household_linen",
- "description": "🄿 Household Linen Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cloth.svg"
- },
- {
- "key": "shop",
- "value": "houseware",
- "description": "🄿 Houseware Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-blender.svg"
- },
- {
- "key": "shop",
- "value": "hunting",
- "description": "🄿 Hunting Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bow_and_arrow.svg"
- },
- {
- "key": "shop",
- "value": "interior_decoration",
- "description": "🄿 Interior Decoration Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "jewelry",
- "description": "🄿 Jewelry Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/jewelry-store-15.svg"
- },
- {
- "key": "shop",
- "value": "kiosk",
- "description": "🄿 Kiosk",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store.svg"
- },
- {
- "key": "shop",
- "value": "kitchen",
- "description": "🄿 Kitchen Design Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kitchen_sink.svg"
- },
- {
- "key": "shop",
- "value": "laundry",
- "description": "🄿 Laundry",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/laundry.svg"
- },
- {
- "key": "self_service",
- "value": "yes",
- "description": "🄿 Self-Service Laundry",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/laundry.svg"
- },
- {
- "key": "shop",
- "value": "leather",
- "description": "🄿 Leather Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/handbag.svg"
- },
- {
- "key": "shop",
- "value": "lighting",
- "description": "🄿 Lighting Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/desk_lamp.svg"
- },
- {
- "key": "shop",
- "value": "locksmith",
- "description": "🄿 Locksmith",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-key.svg"
- },
- {
- "key": "shop",
- "value": "lottery",
- "description": "🄿 Lottery Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ticket-alt.svg"
- },
- {
- "key": "shop",
- "value": "mall",
- "description": "🄿 Mall",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "massage",
- "description": "🄿 Massage Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spa.svg"
- },
- {
- "key": "shop",
- "value": "medical_supply",
- "description": "🄿 Medical Supply Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crutch.svg"
- },
- {
- "key": "shop",
- "value": "military_surplus",
- "description": "🄿 Military Surplus Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"
- },
- {
- "key": "shop",
- "value": "mobile_phone",
- "description": "🄿 Mobile Phone Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mobile-alt.svg"
- },
- {
- "key": "shop",
- "value": "model",
- "description": "🄿 Model Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "money_lender",
- "description": "🄿 Money Lender",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"
- },
- {
- "key": "shop",
- "value": "motorcycle_repair",
- "description": "🄿 Motorcycle Repair Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/motorcycle_repair.svg"
- },
- {
- "key": "shop",
- "value": "motorcycle",
- "description": "🄿 Motorcycle Dealership",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"
- },
- {
- "key": "shop",
- "value": "music",
- "description": "🄿 Music Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compact-disc.svg"
- },
- {
- "key": "shop",
- "value": "musical_instrument",
- "description": "🄿 Musical Instrument Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-guitar.svg"
- },
- {
- "key": "shop",
- "value": "newsagent",
- "description": "🄿 Newsstand",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-newspaper.svg"
- },
- {
- "key": "shop",
- "value": "nutrition_supplements",
- "description": "🄿 Nutrition Supplements Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pills.svg"
- },
- {
- "key": "shop",
- "value": "optician",
- "description": "🄿 Optician",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/optician-15.svg"
- },
- {
- "key": "shop",
- "value": "outdoor",
- "description": "🄿 Outdoors Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/compass.svg"
- },
- {
- "key": "shop",
- "value": "outpost",
- "description": "🄿 Online Retailer Outpost",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "paint",
- "description": "🄿 Paint Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paint-roller.svg"
- },
- {
- "key": "shop",
- "value": "party",
- "description": "🄿 Party Supply Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/balloon.svg"
- },
- {
- "key": "shop",
- "value": "pastry",
- "description": "🄿 Pastry Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bakery-15.svg"
- },
- {
- "key": "shop",
- "value": "pawnbroker",
- "description": "🄿 Pawnshop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"
- },
- {
- "key": "shop",
- "value": "perfumery",
- "description": "🄿 Perfume Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/perfume.svg"
- },
- {
- "key": "shop",
- "value": "pet_grooming",
- "description": "🄿 Pet Grooming Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pet_grooming.svg"
- },
- {
- "key": "shop",
- "value": "pet",
- "description": "🄿 Pet Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cat.svg"
- },
- {
- "key": "shop",
- "value": "photo",
- "description": "🄿 Photography Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-camera-retro.svg"
- },
- {
- "key": "shop",
- "value": "pottery",
- "description": "🄿 Pottery Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"
- },
- {
- "key": "shop",
- "value": "printer_ink",
- "description": "🄿 Printer Ink Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-print.svg"
- },
- {
- "key": "shop",
- "value": "psychic",
- "description": "🄿 Psychic",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/psychic.svg"
- },
- {
- "key": "shop",
- "value": "pyrotechnics",
- "description": "🄿 Fireworks Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rocket_firework.svg"
- },
- {
- "key": "shop",
- "value": "radiotechnics",
- "description": "🄿 Radio/Electronic Component Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microchip.svg"
- },
- {
- "key": "shop",
- "value": "religion",
- "description": "🄿 Religious Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "rental",
- "description": "🄿 Rental Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dolly.svg"
- },
- {
- "key": "shop",
- "value": "repair",
- "description": "🄿 Repair Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tools.svg"
- },
- {
- "key": "shop",
- "value": "scuba_diving",
- "description": "🄿 Scuba Diving Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/scuba_diving.svg"
- },
- {
- "key": "shop",
- "value": "seafood",
- "description": "🄿 Seafood Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fish_cleaning.svg"
- },
- {
- "key": "shop",
- "value": "second_hand",
- "description": "🄿 Thrift Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "sewing",
- "description": "🄿 Sewing Supply Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/needle_and_spool.svg"
- },
- {
- "key": "shop",
- "value": "shoe_repair",
- "description": "🄿 Shoe Repair Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hammer_shoe.svg"
- },
- {
- "key": "shop",
- "value": "shoes",
- "description": "🄿 Shoe Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shoe-15.svg"
- },
- {
- "key": "shop",
- "value": "spices",
- "description": "🄿 Spice Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spice_bottle.svg"
- },
- {
- "key": "shop",
- "value": "sports",
- "description": "🄿 Sporting Goods Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-futbol.svg"
- },
- {
- "key": "shop",
- "value": "stationery",
- "description": "🄿 Stationery Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paperclip.svg"
- },
- {
- "key": "shop",
- "value": "storage_rental",
- "description": "🄿 Storage Rental",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_rental.svg"
- },
- {
- "key": "shop",
- "value": "supermarket",
- "description": "🄿 Supermarket",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/grocery-15.svg"
- },
- {
- "key": "organic",
- "value": "only",
- "description": "🄿 Organic Supermarket, 🄵🅅 Organic Products: Only",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/grocery-15.svg"
- },
- {
- "key": "shop",
- "value": "swimming_pool",
- "description": "🄿 Pool Supply Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"
- },
- {
- "key": "shop",
- "value": "tailor",
- "description": "🄿 Tailor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/needle_and_spool.svg"
- },
- {
- "key": "shop",
- "value": "tattoo",
- "description": "🄿 Tattoo Parlor",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tattoo_machine.svg"
- },
- {
- "key": "shop",
- "value": "tea",
- "description": "🄿 Tea Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/teahouse-15.svg"
- },
- {
- "key": "shop",
- "value": "telecommunication",
- "description": "🄿 Telecom Retail Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/telephone-15.svg"
- },
- {
- "key": "shop",
- "value": "ticket",
- "description": "🄿 Ticket Seller",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ticket-alt.svg"
- },
- {
- "key": "shop",
- "value": "tiles",
- "description": "🄿 Tile Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tiling.svg"
- },
- {
- "key": "shop",
- "value": "tobacco",
- "description": "🄿 Tobacco Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pipe.svg"
- },
- {
- "key": "shop",
- "value": "tool_hire",
- "description": "🄿 Tool Rental",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "shop",
- "value": "toys",
- "description": "🄿 Toy Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-rocket.svg"
- },
- {
- "key": "shop",
- "value": "trade",
- "description": "🄿 Trade Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"
- },
- {
- "key": "shop",
- "value": "travel_agency",
- "description": "🄿 Travel Agency",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-suitcase.svg"
- },
- {
- "key": "shop",
- "value": "trophy",
- "description": "🄿 Trophy Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-trophy.svg"
- },
- {
- "key": "shop",
- "value": "tyres",
- "description": "🄿 Tire Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tire.svg"
- },
- {
- "key": "shop",
- "value": "vacuum_cleaner",
- "description": "🄿 Vacuum Cleaner Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vacuum.svg"
- },
- {
- "key": "shop",
- "value": "variety_store",
- "description": "🄿 Discount Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "video_games",
- "description": "🄿 Video Game Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gaming-15.svg"
- },
- {
- "key": "shop",
- "value": "video",
- "description": "🄿 Video Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/movie_rental.svg"
- },
- {
- "key": "shop",
- "value": "watches",
- "description": "🄿 Watches Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watch-15.svg"
- },
- {
- "key": "shop",
- "value": "water_sports",
- "description": "🄿 Watersport/Swim Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"
- },
- {
- "key": "shop",
- "value": "water",
- "description": "🄿 Drinking Water Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water_bottle.svg"
- },
- {
- "key": "shop",
- "value": "weapons",
- "description": "🄿 Weapon Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/dagger.svg"
- },
- {
- "key": "shop",
- "value": "wholesale",
- "description": "🄿 Wholesale Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/warehouse-15.svg"
- },
- {
- "key": "shop",
- "value": "wigs",
- "description": "🄿 Wig Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"
- },
- {
- "key": "shop",
- "value": "window_blind",
- "description": "🄿 Window Blind Store",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/window.svg"
- },
- {
- "key": "shop",
- "value": "wine",
- "description": "🄿 Wine Shop",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/alcohol-shop-15.svg"
- },
- {
- "key": "telecom",
- "value": "data_center",
- "description": "🄿 Data Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-server.svg"
- },
- {
- "key": "telecom",
- "value": "exchange",
- "description": "🄿 Telecom Exchange",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable.svg"
- },
- {
- "key": "tourism",
- "value": "alpine_hut",
- "description": "🄿 Mountain Lodge",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"
- },
- {
- "key": "tourism",
- "value": "apartment",
- "description": "🄿 Guest Apartment / Condo",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"
- },
- {
- "key": "tourism",
- "value": "aquarium",
- "description": "🄿 Aquarium",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aquarium-15.svg"
- },
- {
- "key": "tourism",
- "value": "artwork",
- "description": "🄿 Artwork",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"
- },
- {
- "key": "artwork_type",
- "value": "bust",
- "description": "🄿 Bust, 🄵🅅 Type: Bust",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-alt.svg"
- },
- {
- "key": "artwork_type",
- "value": "graffiti",
- "description": "🄿 Graffiti, 🄵🅅 Type: Graffiti",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"
- },
- {
- "key": "artwork_type",
- "value": "installation",
- "description": "🄿 Art Installation, 🄵🅅 Type: Art Installation",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sculpture.svg"
- },
- {
- "key": "artwork_type",
- "value": "mural",
- "description": "🄿 Mural, 🄵🅅 Type: Mural",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"
- },
- {
- "key": "artwork_type",
- "value": "sculpture",
- "description": "🄿 Sculpture, 🄵🅅 Type: Sculpture",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sculpture.svg"
- },
- {
- "key": "artwork_type",
- "value": "statue",
- "description": "🄿 Statue, 🄵🅅 Type: Statue",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/statue.svg"
- },
- {
- "key": "tourism",
- "value": "attraction",
- "description": "🄿 Tourist Attraction",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/star-15.svg"
- },
- {
- "key": "tourism",
- "value": "camp_pitch",
- "description": "🄿 Camp Pitch",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"
- },
- {
- "key": "tourism",
- "value": "camp_site",
- "description": "🄿 Campground",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"
- },
- {
- "key": "backcountry",
- "value": "yes",
- "description": "🄿 Backcountry Camping Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"
- },
- {
- "key": "group_only",
- "value": "yes",
- "description": "🄿 Group Camping Area",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"
- },
- {
- "key": "tourism",
- "value": "caravan_site",
- "description": "🄿 RV Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/camper_trailer.svg"
- },
- {
- "key": "tourism",
- "value": "chalet",
- "description": "🄿 Holiday Cottage",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"
- },
- {
- "key": "tourism",
- "value": "gallery",
- "description": "🄿 Art Gallery",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"
- },
- {
- "key": "tourism",
- "value": "guest_house",
- "description": "🄿 Guest House",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"
- },
- {
- "key": "tourism",
- "value": "hostel",
- "description": "🄿 Hostel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunk_beds.svg"
- },
- {
- "key": "tourism",
- "value": "hotel",
- "description": "🄿 Hotel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-concierge-bell.svg"
- },
- {
- "key": "tourism",
- "value": "information",
- "description": "🄿 Information",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information-15.svg"
- },
- {
- "key": "information",
- "value": "board",
- "description": "🄿 Information Board",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/info_board.svg"
- },
- {
- "key": "board_type",
- "value": "welcome_sign",
- "description": "🄿 Welcome Sign, 🄵🅅 Type: Welcome Sign",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/embassy-15.svg"
- },
- {
- "key": "information",
- "value": "guidepost",
- "description": "🄿 Guidepost",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-map-signs.svg"
- },
- {
- "key": "information",
- "value": "map",
- "description": "🄿 Map",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-map.svg"
- },
- {
- "key": "information",
- "value": "office",
- "description": "🄿 Visitor Center",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information-15.svg"
- },
- {
- "key": "information",
- "value": "route_marker",
- "description": "🄿 Trail Marker",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information-15.svg"
- },
- {
- "key": "information",
- "value": "terminal",
- "description": "🄿 Information Terminal",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/app_terminal.svg"
- },
- {
- "key": "tourism",
- "value": "motel",
- "description": "🄿 Motel",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"
- },
- {
- "key": "tourism",
- "value": "museum",
- "description": "🄿 Museum",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/museum.svg"
- },
- {
- "key": "museum",
- "value": "history",
- "description": "🄿 History Museum",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/museum.svg"
- },
- {
- "key": "tourism",
- "value": "picnic_site",
- "description": "🄿 Picnic Site",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"
- },
- {
- "key": "tourism",
- "value": "theme_park",
- "description": "🄿 Theme Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park-15.svg"
- },
- {
- "key": "tourism",
- "value": "trail_riding_station",
- "description": "🄿 Trail Riding Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"
- },
- {
- "key": "tourism",
- "value": "viewpoint",
- "description": "🄿 Viewpoint",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spotting_scope.svg"
- },
- {
- "key": "tourism",
- "value": "wilderness_hut",
- "description": "🄿 Wilderness Hut",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"
- },
- {
- "key": "tourism",
- "value": "zoo",
- "description": "🄿 Zoo",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/zoo.svg"
- },
- {
- "key": "zoo",
- "value": "petting_zoo",
- "description": "🄿 Petting Zoo",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-horse.svg"
- },
- {
- "key": "zoo",
- "value": "safari_park",
- "description": "🄿 Safari Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/zoo.svg"
- },
- {
- "key": "zoo",
- "value": "wildlife_park",
- "description": "🄿 Wildlife Park",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-frog.svg"
- },
- {
- "key": "traffic_calming",
- "description": "🄿 Traffic Calming, 🄵 Raised, 🄵 Type",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"
- },
- {
- "key": "traffic_calming",
- "value": "yes",
- "description": "🄿 Traffic Calming (Unspecified Type) (unsearchable)",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"
- },
- {
- "key": "traffic_calming",
- "value": "bump",
- "description": "🄿 Speed Bump, 🄵🅅 Type: Speed Bump",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_bump.svg"
- },
- {
- "key": "traffic_calming",
- "value": "chicane",
- "description": "🄿 Traffic Chicane, 🄵🅅 Type: Traffic Chicane",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chicane_arrow.svg"
- },
- {
- "key": "traffic_calming",
- "value": "choker",
- "description": "🄿 Traffic Choker, 🄵🅅 Type: Traffic Choker",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"
- },
- {
- "key": "traffic_calming",
- "value": "cushion",
- "description": "🄿 Speed Cushion, 🄵🅅 Type: Speed Cushion",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_hump.svg"
- },
- {
- "key": "traffic_calming",
- "value": "dip",
- "description": "🄿 Dip, 🄵🅅 Type: Dip",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_dip.svg"
- },
- {
- "key": "traffic_calming",
- "value": "hump",
- "description": "🄿 Speed Hump, 🄵🅅 Type: Speed Hump",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_hump.svg"
- },
- {
- "key": "traffic_calming",
- "value": "island",
- "description": "🄿 Traffic Island, 🄵🅅 Type: Traffic Island",
+ "key": "waterway",
+ "value": "water_point",
+ "description": "🄿 Marine Drinking Water",
"object_types": [
"node",
"area"
],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"
- },
- {
- "key": "traffic_calming",
- "value": "mini_bumps",
- "description": "🄿 Mini Speed Bumps, 🄵🅅 Type: Mini Speed Bumps",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_bump.svg"
- },
- {
- "key": "traffic_calming",
- "value": "rumble_strip",
- "description": "🄿 Rumble Strip, 🄵🅅 Type: Rumble Strip",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rumble_strip.svg"
- },
- {
- "key": "traffic_calming",
- "value": "table",
- "description": "🄿 Speed Table, 🄵🅅 Raised: Yes, 🄵🅅 Type: Speed Table",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_table.svg"
- },
- {
- "key": "traffic_sign",
- "description": "🄿 Traffic Sign, 🄵 Traffic Sign",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-directions.svg"
- },
- {
- "key": "traffic_sign",
- "value": "city_limit",
- "description": "🄿 City Limit Sign",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"
- },
- {
- "key": "traffic_sign",
- "value": "maxspeed",
- "description": "🄿 Speed Limit Sign",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"
- },
- {
- "key": "traffic_sign",
- "value": "variable_message",
- "description": "🄿 Variable Message Sign",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/billboard.svg"
- },
- {
- "key": "type",
- "value": "boundary",
- "description": "🄿 Boundary",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/boundary.svg"
- },
- {
- "key": "type",
- "value": "connectivity",
- "description": "🄿 Lane Connectivity",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
- },
- {
- "key": "type",
- "value": "destination_sign",
- "description": "🄿 Destination Sign",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
- },
- {
- "key": "type",
- "value": "enforcement",
- "description": "🄿 Enforcement",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
- },
- {
- "key": "enforcement",
- "value": "maxspeed",
- "description": "🄿 Speed Limit Enforcement",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
- },
- {
- "key": "type",
- "value": "multipolygon",
- "description": "🄿 Multipolygon",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/multipolygon.svg"
- },
- {
- "key": "public_transport",
- "value": "stop_area_group",
- "description": "🄿 Transit Stop Area Group",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
- },
- {
- "key": "type",
- "value": "restriction",
- "description": "🄿 Restriction",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction.svg"
- },
- {
- "key": "restriction",
- "value": "no_left_turn",
- "description": "🄿 No Left Turn",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-left-turn.svg"
- },
- {
- "key": "restriction",
- "value": "no_right_turn",
- "description": "🄿 No Right Turn",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-right-turn.svg"
- },
- {
- "key": "restriction",
- "value": "no_straight_on",
- "description": "🄿 No Straight Ahead",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-straight-on.svg"
- },
- {
- "key": "restriction",
- "value": "no_u_turn",
- "description": "🄿 No U-Turn",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-u-turn.svg"
- },
- {
- "key": "restriction",
- "value": "only_left_turn",
- "description": "🄿 Left Turn Only",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-left-turn.svg"
- },
- {
- "key": "restriction",
- "value": "only_right_turn",
- "description": "🄿 Right Turn Only",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-right-turn.svg"
- },
- {
- "key": "restriction",
- "value": "only_straight_on",
- "description": "🄿 Straight Ahead Only",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-straight-on.svg"
- },
- {
- "key": "restriction",
- "value": "only_u_turn",
- "description": "🄿 U-Turn Only",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-u-turn.svg"
- },
- {
- "key": "type",
- "value": "route_master",
- "description": "🄿 Route Master",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route-master.svg"
- },
- {
- "key": "type",
- "value": "route",
- "description": "🄿 Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route.svg"
- },
- {
- "key": "route",
- "value": "aerialway",
- "description": "🄿 Aerial Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"
- },
- {
- "key": "route",
- "value": "bicycle",
- "description": "🄿 Bicycle Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"
- },
- {
- "key": "route",
- "value": "bus",
- "description": "🄿 Bus Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"
- },
- {
- "key": "route",
- "value": "detour",
- "description": "🄿 Detour Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route-detour.svg"
- },
- {
- "key": "route",
- "value": "foot",
- "description": "🄿 Walking Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"
- },
- {
- "key": "route",
- "value": "hiking",
- "description": "🄿 Hiking Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hiking.svg"
- },
- {
- "key": "route",
- "value": "horse",
- "description": "🄿 Horseback Riding Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"
- },
- {
- "key": "route",
- "value": "light_rail",
- "description": "🄿 Light Rail Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/light_rail.svg"
- },
- {
- "key": "route",
- "value": "monorail",
- "description": "🄿 Monorail Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/monorail.svg"
- },
- {
- "key": "route",
- "value": "mtb",
- "description": "🄿 Mountain Biking Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"
- },
- {
- "key": "route",
- "value": "pipeline",
- "description": "🄿 Pipeline Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"
- },
- {
- "key": "route",
- "value": "piste",
- "description": "🄿 Piste/Ski Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"
- },
- {
- "key": "route",
- "value": "power",
- "description": "🄿 Power Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/power-line.svg"
- },
- {
- "key": "route",
- "value": "railway",
- "description": "🄿 Railway Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track.svg"
- },
- {
- "key": "route",
- "value": "road",
- "description": "🄿 Road Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-unclassified.svg"
- },
- {
- "key": "route",
- "value": "subway",
- "description": "🄿 Subway Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/subway.svg"
- },
- {
- "key": "route",
- "value": "train",
- "description": "🄿 Train Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"
- },
- {
- "key": "route",
- "value": "tram",
- "description": "🄿 Tram Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"
- },
- {
- "key": "route",
- "value": "trolleybus",
- "description": "🄿 Trolleybus Route",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trolleybus.svg"
- },
- {
- "key": "type",
- "value": "site",
- "description": "🄿 Site",
- "object_types": [
- "relation"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water.svg"
},
{
- "key": "type",
- "value": "waterway",
- "description": "🄿 Waterway",
+ "key": "waterway",
+ "value": "tidal_channel",
+ "description": "🄿 Tidal Channel",
"object_types": [
- "relation"
+ "way"
],
"icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"
},
- {
- "key": "waterway",
- "value": "boatyard",
- "description": "🄿 Boatyard",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat.svg"
- },
- {
- "key": "waterway",
- "value": "canal",
- "description": "🄿 Canal",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"
- },
- {
- "key": "lock",
- "value": "yes",
- "description": "🄿 Canal Lock",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"
- },
- {
- "key": "waterway",
- "value": "dam",
- "description": "🄿 Dam",
- "object_types": [
- "node",
- "way",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"
- },
- {
- "key": "waterway",
- "value": "ditch",
- "description": "🄿 Ditch",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-ditch.svg"
- },
- {
- "key": "waterway",
- "value": "dock",
- "description": "🄿 Wet Dock / Dry Dock",
- "object_types": [
- "area",
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"
- },
- {
- "key": "waterway",
- "value": "drain",
- "description": "🄿 Drain",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-ditch.svg"
- },
- {
- "key": "waterway",
- "value": "fish_pass",
- "description": "🄿 Fish Pass",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fish_ladder.svg"
- },
- {
- "key": "waterway",
- "value": "fuel",
- "description": "🄿 Marine Fuel Station",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel-15.svg"
- },
- {
- "key": "waterway",
- "value": "lock_gate",
- "description": "🄿 Lock Gate",
- "object_types": [
- "node",
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"
- },
- {
- "key": "waterway",
- "value": "milestone",
- "description": "🄿 Waterway Milestone",
- "object_types": [
- "node"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"
- },
- {
- "key": "waterway",
- "value": "river",
- "description": "🄿 River",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"
- },
- {
- "key": "waterway",
- "value": "sanitary_dump_station",
- "description": "🄿 Marine Toilet Disposal",
- "object_types": [
- "node",
- "area"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste.svg"
- },
{
"key": "intermittent",
"value": "yes",
@@ -13851,3644 +452,17163 @@
},
{
"key": "waterway",
- "value": "tidal_channel",
- "description": "🄿 Tidal Channel",
- "object_types": [
- "way"
- ],
- "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"
- },
- {
- "key": "waterway",
- "value": "water_point",
- "description": "🄿 Marine Drinking Water",
+ "value": "sanitary_dump_station",
+ "description": "🄿 Marine Toilet Disposal",
"object_types": [
"node",
"area"
],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste.svg"
},
{
"key": "waterway",
- "value": "waterfall",
- "description": "🄿 Waterfall",
+ "value": "river",
+ "description": "🄿 River",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"
+ },
+ {
+ "key": "waterway",
+ "value": "milestone",
+ "description": "🄿 Waterway Milestone",
"object_types": [
"node"
],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waterfall-15.svg"
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/milestone.svg"
},
{
"key": "waterway",
- "value": "weir",
- "description": "🄿 Weir",
+ "value": "lock_gate",
+ "description": "🄿 Lock Gate",
"object_types": [
"node",
"way"
],
- "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam.svg"
},
{
- "key": "access_aisle",
- "description": "🄵 Type"
- },
- {
- "key": "access",
- "description": "🄵 Allowed Access"
- },
- {
- "key": "access",
- "value": "yes",
- "description": "🄵🅅 Allowed Access: Public, 🄵🅅 Allowed Access: `yes`"
- },
- {
- "key": "access",
- "value": "private",
- "description": "🄵🅅 Allowed Access: Private, 🄵🅅 Allowed Access: `private`"
- },
- {
- "key": "access",
- "value": "permissive",
- "description": "🄵🅅 Allowed Access: Permissive, 🄵🅅 Allowed Access: `permissive`"
- },
- {
- "key": "access",
- "value": "customers",
- "description": "🄵🅅 Allowed Access: Customers Only, 🄵🅅 Allowed Access: `customers`"
- },
- {
- "key": "access",
- "value": "permit",
- "description": "🄵🅅 Allowed Access: By Permit Only, 🄵🅅 Allowed Access: `permit`"
- },
- {
- "key": "access",
- "value": "unknown",
- "description": "🄵🅅 Allowed Access: Unknown, 🄵🅅 Allowed Access: `unknown`"
- },
- {
- "key": "access",
- "value": "no",
- "description": "🄵🅅 Allowed Access: None, 🄵🅅 Allowed Access: `no`"
- },
- {
- "key": "access",
- "value": "designated",
- "description": "🄵🅅 Allowed Access: `designated`"
- },
- {
- "key": "access",
- "value": "destination",
- "description": "🄵🅅 Allowed Access: `destination`"
- },
- {
- "key": "access",
- "value": "dismount",
- "description": "🄵🅅 Allowed Access: `dismount`"
- },
- {
- "key": "foot",
- "description": "🄵 Allowed Access"
- },
- {
- "key": "foot",
- "value": "yes",
- "description": "🄵🅅 Allowed Access: `yes`"
- },
- {
- "key": "foot",
- "value": "no",
- "description": "🄵🅅 Allowed Access: `no`"
- },
- {
- "key": "foot",
- "value": "permissive",
- "description": "🄵🅅 Allowed Access: `permissive`"
- },
- {
- "key": "foot",
- "value": "private",
- "description": "🄵🅅 Allowed Access: `private`"
- },
- {
- "key": "foot",
- "value": "destination",
- "description": "🄵🅅 Allowed Access: `destination`"
- },
- {
- "key": "foot",
- "value": "customers",
- "description": "🄵🅅 Allowed Access: `customers`"
- },
- {
- "key": "foot",
- "value": "dismount",
- "description": "🄵🅅 Allowed Access: `dismount`"
- },
- {
- "key": "foot",
- "value": "permit",
- "description": "🄵🅅 Allowed Access: `permit`"
- },
- {
- "key": "foot",
- "value": "unknown",
- "description": "🄵🅅 Allowed Access: `unknown`"
- },
- {
- "key": "motor_vehicle",
- "description": "🄵 Allowed Access"
- },
- {
- "key": "motor_vehicle",
- "value": "yes",
- "description": "🄵🅅 Allowed Access: `yes`"
- },
- {
- "key": "motor_vehicle",
- "value": "no",
- "description": "🄵🅅 Allowed Access: `no`"
- },
- {
- "key": "motor_vehicle",
- "value": "permissive",
- "description": "🄵🅅 Allowed Access: `permissive`"
- },
- {
- "key": "motor_vehicle",
- "value": "private",
- "description": "🄵🅅 Allowed Access: `private`"
- },
- {
- "key": "motor_vehicle",
- "value": "designated",
- "description": "🄵🅅 Allowed Access: `designated`"
- },
- {
- "key": "motor_vehicle",
- "value": "destination",
- "description": "🄵🅅 Allowed Access: `destination`"
- },
- {
- "key": "motor_vehicle",
- "value": "customers",
- "description": "🄵🅅 Allowed Access: `customers`"
- },
- {
- "key": "motor_vehicle",
- "value": "dismount",
- "description": "🄵🅅 Allowed Access: `dismount`"
- },
- {
- "key": "motor_vehicle",
- "value": "permit",
- "description": "🄵🅅 Allowed Access: `permit`"
- },
- {
- "key": "motor_vehicle",
- "value": "unknown",
- "description": "🄵🅅 Allowed Access: `unknown`"
- },
- {
- "key": "bicycle",
- "description": "🄵 Allowed Access, 🄵 Activity"
- },
- {
- "key": "bicycle",
- "value": "yes",
- "description": "🄵🅅 Allowed Access: `yes`"
- },
- {
- "key": "bicycle",
- "value": "no",
- "description": "🄵🅅 Allowed Access: `no`"
- },
- {
- "key": "bicycle",
- "value": "permissive",
- "description": "🄵🅅 Allowed Access: `permissive`"
- },
- {
- "key": "bicycle",
- "value": "private",
- "description": "🄵🅅 Allowed Access: `private`"
- },
- {
- "key": "bicycle",
- "value": "designated",
- "description": "🄵🅅 Allowed Access: `designated`"
- },
- {
- "key": "bicycle",
- "value": "destination",
- "description": "🄵🅅 Allowed Access: `destination`"
- },
- {
- "key": "bicycle",
- "value": "customers",
- "description": "🄵🅅 Allowed Access: `customers`"
- },
- {
- "key": "bicycle",
- "value": "dismount",
- "description": "🄵🅅 Allowed Access: `dismount`"
- },
- {
- "key": "bicycle",
- "value": "permit",
- "description": "🄵🅅 Allowed Access: `permit`"
- },
- {
- "key": "bicycle",
- "value": "unknown",
- "description": "🄵🅅 Allowed Access: `unknown`"
- },
- {
- "key": "horse",
- "description": "🄵 Allowed Access, 🄵 Activity"
- },
- {
- "key": "horse",
- "value": "yes",
- "description": "🄵🅅 Allowed Access: `yes`"
- },
- {
- "key": "horse",
- "value": "no",
- "description": "🄵🅅 Allowed Access: `no`"
- },
- {
- "key": "horse",
- "value": "permissive",
- "description": "🄵🅅 Allowed Access: `permissive`"
- },
- {
- "key": "horse",
- "value": "private",
- "description": "🄵🅅 Allowed Access: `private`"
- },
- {
- "key": "horse",
- "value": "designated",
- "description": "🄵🅅 Allowed Access: `designated`"
- },
- {
- "key": "horse",
- "value": "destination",
- "description": "🄵🅅 Allowed Access: `destination`"
- },
- {
- "key": "horse",
- "value": "customers",
- "description": "🄵🅅 Allowed Access: `customers`"
- },
- {
- "key": "horse",
- "value": "dismount",
- "description": "🄵🅅 Allowed Access: `dismount`"
- },
- {
- "key": "horse",
- "value": "permit",
- "description": "🄵🅅 Allowed Access: `permit`"
- },
- {
- "key": "horse",
- "value": "unknown",
- "description": "🄵🅅 Allowed Access: `unknown`"
- },
- {
- "key": "hiking",
- "description": "🄵 Activity"
- },
- {
- "key": "mtb",
- "description": "🄵 Activity"
- },
- {
- "key": "ski",
- "description": "🄵 Activity"
- },
- {
- "key": "addr:interpolation",
- "value": "all",
- "description": "🄵🅅 Type: All"
- },
- {
- "key": "addr:interpolation",
- "value": "even",
- "description": "🄵🅅 Type: Even"
- },
- {
- "key": "addr:interpolation",
- "value": "odd",
- "description": "🄵🅅 Type: Odd"
- },
- {
- "key": "addr:interpolation",
- "value": "alphabetic",
- "description": "🄵🅅 Type: Alphabetic"
- },
- {
- "key": "addr:block_number",
- "description": "🄵 Address"
- },
- {
- "key": "addr:city",
- "description": "🄵 Address"
- },
- {
- "key": "addr:conscriptionnumber",
- "description": "🄵 Address"
- },
- {
- "key": "addr:county",
- "description": "🄵 Address"
- },
- {
- "key": "addr:country",
- "description": "🄵 Address"
- },
- {
- "key": "addr:district",
- "description": "🄵 Address"
- },
- {
- "key": "addr:floor",
- "description": "🄵 Address"
- },
- {
- "key": "addr:hamlet",
- "description": "🄵 Address"
- },
- {
- "key": "addr:housename",
- "description": "🄵 Address"
- },
- {
- "key": "addr:housenumber",
- "description": "🄵 Address"
- },
- {
- "key": "addr:neighbourhood",
- "description": "🄵 Address"
- },
- {
- "key": "addr:place",
- "description": "🄵 Address"
- },
- {
- "key": "addr:postcode",
- "description": "🄵 Address"
- },
- {
- "key": "addr:province",
- "description": "🄵 Address"
- },
- {
- "key": "addr:quarter",
- "description": "🄵 Address"
- },
- {
- "key": "addr:state",
- "description": "🄵 Address"
- },
- {
- "key": "addr:street",
- "description": "🄵 Address"
- },
- {
- "key": "addr:subdistrict",
- "description": "🄵 Address"
- },
- {
- "key": "addr:suburb",
- "description": "🄵 Address"
- },
- {
- "key": "addr:unit",
- "description": "🄵 Address"
- },
- {
- "key": "admin_level",
- "description": "🄵 Admin Level"
- },
- {
- "key": "aerialway:access",
- "description": "🄵 Access"
- },
- {
- "key": "aerialway:access",
- "value": "entry",
- "description": "🄵🅅 Access: Entry"
- },
- {
- "key": "aerialway:access",
- "value": "exit",
- "description": "🄵🅅 Access: Exit"
- },
- {
- "key": "aerialway:access",
- "value": "both",
- "description": "🄵🅅 Access: Both"
- },
- {
- "key": "aerialway:bubble",
- "description": "🄵 Bubble"
- },
- {
- "key": "aerialway:capacity",
- "description": "🄵 Capacity (per hour)"
- },
- {
- "key": "aerialway:duration",
- "description": "🄵 Duration (minutes)"
- },
- {
- "key": "aerialway:heating",
- "description": "🄵 Heated"
- },
- {
- "key": "aerialway:occupancy",
- "description": "🄵 Occupancy"
- },
- {
- "key": "aerialway:summer:access",
- "description": "🄵 Access (summer)"
- },
- {
- "key": "aerialway:summer:access",
- "value": "entry",
- "description": "🄵🅅 Access (summer): Entry"
- },
- {
- "key": "aerialway:summer:access",
- "value": "exit",
- "description": "🄵🅅 Access (summer): Exit"
- },
- {
- "key": "aerialway:summer:access",
- "value": "both",
- "description": "🄵🅅 Access (summer): Both"
- },
- {
- "key": "agrarian",
- "description": "🄵 Products"
- },
- {
- "key": "air_conditioning",
- "description": "🄵 Air Conditioning"
- },
- {
- "key": "animal_boarding",
- "description": "🄵 For Animals"
- },
- {
- "key": "animal_breeding",
- "description": "🄵 For Animals"
- },
- {
- "key": "animal_shelter",
- "description": "🄵 For Animals"
- },
- {
- "key": "archaeological_site",
- "description": "🄵 Type"
- },
- {
- "key": "architect",
- "description": "🄵 Architect"
- },
- {
- "key": "artist_name",
- "description": "🄵 Artist"
- },
- {
- "key": "artwork_type",
- "description": "🄵 Type"
- },
- {
- "key": "artwork_type",
- "value": "painting",
- "description": "🄵🅅 Type: Painting"
- },
- {
- "key": "artwork_type",
- "value": "mosaic",
- "description": "🄵🅅 Type: Mosaic"
- },
- {
- "key": "artwork_type",
- "value": "relief",
- "description": "🄵🅅 Type: Relief"
- },
- {
- "key": "ascent",
- "description": "🄵 Total Ascent"
- },
- {
- "key": "atm",
- "description": "🄵 ATM"
- },
- {
- "key": "automated",
- "description": "🄵 Automated"
- },
- {
- "key": "baby_feeding",
- "description": "🄵 Baby Nursing Area"
- },
- {
- "key": "baby_feeding",
- "value": "room",
- "description": "🄵🅅 Baby Nursing Area: Dedicated Room"
- },
- {
- "key": "baby_feeding",
- "value": "yes",
- "description": "🄵🅅 Baby Nursing Area: Marked Space"
- },
- {
- "key": "baby_feeding",
- "value": "no",
- "description": "🄵🅅 Baby Nursing Area: None"
- },
- {
- "key": "baby",
- "description": "🄵 Baby Seat"
- },
- {
- "key": "backcountry",
- "description": "🄵 Backcountry"
- },
- {
- "key": "backrest",
- "description": "🄵 Backrest"
- },
- {
- "key": "bar",
- "description": "🄵 Bar"
- },
- {
- "key": "barrier",
- "value": "planter",
- "description": "🄵🅅 Barrier: Yes"
- },
- {
- "key": "basin",
- "description": "🄵 Type"
- },
- {
- "key": "basin",
- "value": "detention",
- "description": "🄵🅅 Type: Detention"
- },
- {
- "key": "basin",
- "value": "evaporation",
- "description": "🄵🅅 Type: Evaporation"
- },
- {
- "key": "basin",
- "value": "infiltration",
- "description": "🄵🅅 Type: Infiltration"
- },
- {
- "key": "basin",
- "value": "retention",
- "description": "🄵🅅 Type: Retention"
- },
- {
- "key": "bath:open_air",
- "description": "🄵 Open Air"
- },
- {
- "key": "bath:sand_bath",
- "description": "🄵 Sand Bath"
- },
- {
- "key": "bath:type",
- "description": "🄵 Specialty"
- },
- {
- "key": "beauty",
- "description": "🄵 Services"
- },
- {
- "key": "beauty",
- "value": "cosmetics",
- "description": "🄵🅅 Services: Cosmetics"
- },
- {
- "key": "beauty",
- "value": "spa",
- "description": "🄵🅅 Services: Day Spa"
- },
- {
- "key": "beauty",
- "value": "skin_care",
- "description": "🄵🅅 Services: Skin Care"
- },
- {
- "key": "beauty",
- "value": "waxing",
- "description": "🄵🅅 Services: Waxing"
- },
- {
- "key": "beauty",
- "value": "hair_removal",
- "description": "🄵🅅 Services: Hair Removal"
- },
- {
- "key": "bench",
- "description": "🄵 Bench"
- },
- {
- "key": "bicycle_parking",
- "description": "🄵 Type"
- },
- {
- "key": "bicycle_parking",
- "value": "stands",
- "description": "🄵🅅 Type: Stand (supports bicycle frame)"
- },
- {
- "key": "bicycle_parking",
- "value": "wall_loops",
- "description": "🄵🅅 Type: Wheelbender (supports wheel only)"
- },
- {
- "key": "bicycle_parking",
- "value": "handlebar_holder",
- "description": "🄵🅅 Type: Handlebar Holder"
- },
- {
- "key": "bike_ride",
- "description": "🄵 Bike and Ride"
- },
- {
- "key": "bin",
- "description": "🄵 Waste Bin"
- },
- {
- "key": "blind",
- "description": "🄵 Blind Person Access"
- },
- {
- "key": "blood:",
- "description": "🄵 Blood Components"
- },
- {
- "key": "blood:whole",
- "description": "🄵🅅 Blood Components: whole blood"
- },
- {
- "key": "blood:plasma",
- "description": "🄵🅅 Blood Components: plasma"
- },
- {
- "key": "blood:platelets",
- "description": "🄵🅅 Blood Components: platelets"
- },
- {
- "key": "blood:stemcells",
- "description": "🄵🅅 Blood Components: stem cell samples"
- },
- {
- "key": "board_type",
- "description": "🄵 Type"
- },
- {
- "key": "board_type",
- "value": "art",
- "description": "🄵🅅 Type: Art"
- },
- {
- "key": "board_type",
- "value": "astronomy",
- "description": "🄵🅅 Type: Astronomy"
- },
- {
- "key": "board_type",
- "value": "geology",
- "description": "🄵🅅 Type: Geology"
- },
- {
- "key": "board_type",
- "value": "history",
- "description": "🄵🅅 Type: History"
- },
- {
- "key": "board_type",
- "value": "nature",
- "description": "🄵🅅 Type: Nature"
- },
- {
- "key": "board_type",
- "value": "notice",
- "description": "🄵🅅 Type: Notice Board"
- },
- {
- "key": "board_type",
- "value": "plants",
- "description": "🄵🅅 Type: Plants"
- },
- {
- "key": "board_type",
- "value": "wildlife",
- "description": "🄵🅅 Type: Wildlife"
- },
- {
- "key": "bollard",
- "description": "🄵 Type"
- },
- {
- "key": "bollard",
- "value": "fixed",
- "description": "🄵🅅 Type: Fixed Bollard"
- },
- {
- "key": "bollard",
- "value": "flexible",
- "description": "🄵🅅 Type: Flexible Bollard"
- },
- {
- "key": "bollard",
- "value": "foldable",
- "description": "🄵🅅 Type: Foldable Bollard"
- },
- {
- "key": "bollard",
- "value": "removable",
- "description": "🄵🅅 Type: Removable Bollard"
- },
- {
- "key": "bollard",
- "value": "rising",
- "description": "🄵🅅 Type: Rising Bollard"
- },
- {
- "key": "booth",
- "description": "🄵 Booth"
- },
- {
- "key": "bottle",
- "description": "🄵 Bottle Filling"
- },
- {
- "key": "boules",
- "description": "🄵 Type"
- },
- {
- "key": "branch",
- "description": "🄵 Branch"
- },
- {
- "key": "brand",
- "description": "🄵 Brand"
- },
- {
- "key": "brewery",
- "description": "🄵 Draft Beers"
- },
- {
- "key": "building:flats",
- "description": "🄵 Units"
- },
- {
- "key": "building:levels",
- "description": "🄵 Levels"
- },
- {
- "key": "building:levels:underground",
- "description": "🄵 Underground Levels"
- },
- {
- "key": "building:material",
- "description": "🄵 Material"
- },
- {
- "key": "building:prefabricated",
- "description": "🄵 Prefabricated"
- },
- {
- "key": "bunker_type",
- "description": "🄵 Type"
- },
- {
- "key": "button_operated",
- "description": "🄵 Call Button"
- },
- {
- "key": "cables",
- "description": "🄵 Cables"
- },
- {
- "key": "cai_scale",
- "description": "🄵 Hiking Route Difficulty (Italian Alpine Club)"
- },
- {
- "key": "cai_scale",
- "value": "T",
- "description": "🄵🅅 Hiking Route Difficulty (Italian Alpine Club): T: Touristic"
- },
- {
- "key": "cai_scale",
- "value": "E",
- "description": "🄵🅅 Hiking Route Difficulty (Italian Alpine Club): E: For hikers"
- },
- {
- "key": "cai_scale",
- "value": "EE",
- "description": "🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EE: For expert hikers"
- },
- {
- "key": "cai_scale",
- "value": "EEA",
- "description": "🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EEA: For expert hikers with equipment"
- },
- {
- "key": "cai_scale",
- "value": "EAI",
- "description": "🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EAI: Hiking in snowy conditions"
- },
- {
- "key": "camera:direction",
- "description": "🄵 Direction (Degrees Clockwise)"
- },
- {
- "key": "camera:mount",
- "description": "🄵 Camera Mount"
- },
- {
- "key": "camera:type",
- "description": "🄵 Camera Type"
- },
- {
- "key": "camera:type",
- "value": "fixed",
- "description": "🄵🅅 Camera Type: Fixed"
- },
- {
- "key": "camera:type",
- "value": "panning",
- "description": "🄵🅅 Camera Type: Panning"
- },
- {
- "key": "camera:type",
- "value": "dome",
- "description": "🄵🅅 Camera Type: Dome"
- },
- {
- "key": "capacity",
- "description": "🄵 Total Spaces, 🄵 Capacity (Cubic Meters), 🄵 Capacity"
- },
- {
- "key": "capacity:caravans",
- "description": "🄵 Capacity (Caravans)"
- },
- {
- "key": "capacity:disabled",
- "description": "🄵 Accessible Spaces"
- },
- {
- "key": "capacity:persons",
- "description": "🄵 Capacity (Persons)"
- },
- {
- "key": "capacity:tents",
- "description": "🄵 Capacity (Tents)"
- },
- {
- "key": "cash_in",
- "description": "🄵 Deposits"
- },
- {
- "key": "castle_type",
- "description": "🄵 Type"
- },
- {
- "key": "castle_type",
- "value": "defensive",
- "description": "🄵🅅 Type: Defensive Castle"
- },
- {
- "key": "castle_type",
- "value": "manor",
- "description": "🄵🅅 Type: Manor House"
- },
- {
- "key": "castle_type",
- "value": "castrum",
- "description": "🄵🅅 Type: Roman Fort"
- },
- {
- "key": "castle_type",
- "value": "shiro",
- "description": "🄵🅅 Type: Shiro"
- },
- {
- "key": "castle_type",
- "value": "kremlin",
- "description": "🄵🅅 Type: Kremlin"
- },
- {
- "key": "castle_type",
- "value": "hillfort",
- "description": "🄵🅅 Type: Hillfort"
- },
- {
- "key": "changing_table",
- "description": "🄵 Diaper Changing Table"
- },
- {
- "key": "charge",
- "description": "🄵 Fee Amount, 🄵 Toll Amount"
- },
- {
- "key": "check_date",
- "description": "🄵 Last Checked Date"
- },
- {
- "key": "circumference",
- "description": "🄵 Circumference (at Breast Height)"
- },
- {
- "key": "clothes",
- "description": "🄵 Clothes"
- },
- {
- "key": "collection_times",
- "description": "🄵 Collection Times"
- },
- {
- "key": "collector",
- "description": "🄵 Items"
- },
- {
- "key": "colour",
- "description": "🄵 Color"
- },
- {
- "key": "comment",
- "description": "🄵 Changeset Comment"
- },
- {
- "key": "communication:",
- "description": "🄵 Communication Types"
- },
- {
- "key": "connectivity",
- "description": "🄵 Connectivity"
- },
- {
- "key": "construction",
- "description": "🄵 Type"
- },
- {
- "key": "consulate",
- "description": "🄵 Type"
- },
- {
- "key": "consulting",
- "description": "🄵 Expertise"
- },
- {
- "key": "contact:webcam",
- "description": "🄵 Webcam URL"
- },
- {
- "key": "content",
- "description": "🄵 Content"
- },
- {
- "key": "content",
- "value": "silage",
- "description": "🄵🅅 Content: `silage`"
- },
- {
- "key": "content",
- "value": "oil",
- "description": "🄵🅅 Content: `oil`"
- },
- {
- "key": "content",
+ "key": "waterway",
"value": "fuel",
- "description": "🄵🅅 Content: `fuel`"
+ "description": "🄿 Marine Fuel Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel.svg"
},
{
- "key": "content",
- "value": "slurry",
- "description": "🄵🅅 Content: `slurry`"
+ "key": "waterway",
+ "value": "fish_pass",
+ "description": "🄿 Fish Pass",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fish_ladder.svg"
},
{
- "key": "content",
- "value": "gas",
- "description": "🄵🅅 Content: `gas`"
+ "key": "waterway",
+ "value": "drain",
+ "description": "🄿 Drain",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-ditch.svg"
},
{
- "key": "content",
- "value": "manure",
- "description": "🄵🅅 Content: `manure`"
+ "key": "waterway",
+ "value": "dock",
+ "description": "🄿 Wet Dock / Dry Dock",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor.svg"
},
{
- "key": "content",
- "value": "sewage",
- "description": "🄵🅅 Content: `sewage`"
+ "key": "waterway",
+ "value": "ditch",
+ "description": "🄿 Ditch",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-ditch.svg"
},
{
- "key": "conveying",
- "value": "forward",
- "description": "🄵🅅 Movement Direction: Forward"
+ "key": "waterway",
+ "value": "dam",
+ "description": "🄿 Dam",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam.svg"
},
{
- "key": "conveying",
- "value": "backward",
- "description": "🄵🅅 Movement Direction: Backward"
+ "key": "waterway",
+ "value": "canal",
+ "description": "🄿 Canal",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"
},
{
- "key": "conveying",
- "value": "reversible",
- "description": "🄵🅅 Movement Direction: Reversible"
+ "key": "waterway",
+ "value": "boatyard",
+ "description": "🄿 Boatyard",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat.svg"
},
{
- "key": "country",
- "description": "🄵 Flag Country, 🄵 Country"
- },
- {
- "key": "couplings",
- "description": "🄵 Couplings"
- },
- {
- "key": "covered",
- "description": "🄵 Covered"
- },
- {
- "key": "covered",
- "value": "yes"
- },
- {
- "key": "covered",
- "value": "no"
- },
- {
- "key": "craft",
- "value": "builder",
- "description": "🄵🅅 Type: Builder"
- },
- {
- "key": "craft",
- "value": "grinding_mill",
- "description": "🄵🅅 Type: Grinding Mill"
- },
- {
- "key": "craft",
- "value": "jeweller",
- "description": "🄵🅅 Type: Jeweller"
- },
- {
- "key": "craft",
- "value": "oil_mill",
- "description": "🄵🅅 Type: Oil Mill"
- },
- {
- "key": "crane:type",
- "description": "🄵 Crane Type"
- },
- {
- "key": "crane:type",
- "value": "floor-mounted_crane",
- "description": "🄵🅅 Crane Type: Floor-mounted Crane"
- },
- {
- "key": "crane:type",
- "value": "travel_lift",
- "description": "🄵🅅 Crane Type: Travel Lift"
- },
- {
- "key": "crane:type",
- "value": "tower_crane",
- "description": "🄵🅅 Crane Type: Tower Crane"
- },
- {
- "key": "crop",
- "description": "🄵 Crops"
- },
- {
- "key": "crop",
- "value": "asparagus",
- "description": "🄵🅅 Crops: Asparagus"
- },
- {
- "key": "crop",
- "value": "barley",
- "description": "🄵🅅 Crops: Barley"
- },
- {
- "key": "crop",
- "value": "beet",
- "description": "🄵🅅 Crops: Beets"
- },
- {
- "key": "crop",
- "value": "cassava",
- "description": "🄵🅅 Crops: Cassava"
- },
- {
- "key": "crop",
- "value": "coffee",
- "description": "🄵🅅 Crops: Coffee"
- },
- {
- "key": "crop",
- "value": "cotton",
- "description": "🄵🅅 Crops: Cotton"
- },
- {
- "key": "crop",
- "value": "cranberries",
- "description": "🄵🅅 Crops: Cranberries"
- },
- {
- "key": "crop",
- "value": "fast_growing_wood",
- "description": "🄵🅅 Crops: Short-Rotation Coppice"
- },
- {
- "key": "crop",
- "value": "flowers",
- "description": "🄵🅅 Crops: Flowers"
- },
- {
- "key": "crop",
- "value": "grape",
- "description": "🄵🅅 Crops: Grapes"
- },
- {
- "key": "crop",
- "value": "grass",
- "description": "🄵🅅 Crops: Grass"
- },
- {
- "key": "crop",
- "value": "hop",
- "description": "🄵🅅 Crops: Hops"
- },
- {
- "key": "crop",
- "value": "lavender",
- "description": "🄵🅅 Crops: Lavender"
- },
- {
- "key": "crop",
- "value": "maize",
- "description": "🄵🅅 Crops: Corn"
- },
- {
- "key": "crop",
- "value": "potato",
- "description": "🄵🅅 Crops: Potatoes"
- },
- {
- "key": "crop",
- "value": "rape",
- "description": "🄵🅅 Crops: Rapeseed"
- },
- {
- "key": "crop",
- "value": "rice",
- "description": "🄵🅅 Crops: Rice"
- },
- {
- "key": "crop",
- "value": "strawberry",
- "description": "🄵🅅 Crops: Strawberries"
- },
- {
- "key": "crop",
- "value": "sugar_beet",
- "description": "🄵🅅 Crops: Sugar Beets"
- },
- {
- "key": "crop",
- "value": "sugarcane",
- "description": "🄵🅅 Crops: Sugarcane"
- },
- {
- "key": "crop",
- "value": "sunflower",
- "description": "🄵🅅 Crops: Sunflowers"
- },
- {
- "key": "crop",
- "value": "soy",
- "description": "🄵🅅 Crops: Soybeans"
- },
- {
- "key": "crop",
- "value": "tea",
- "description": "🄵🅅 Crops: Tea"
- },
- {
- "key": "crop",
- "value": "tobacco",
- "description": "🄵🅅 Crops: Tobacco"
- },
- {
- "key": "crop",
- "value": "vegetable",
- "description": "🄵🅅 Crops: Vegetables"
- },
- {
- "key": "crop",
- "value": "wheat",
- "description": "🄵🅅 Crops: Wheat"
- },
- {
- "key": "crossing",
- "description": "🄵 Type"
- },
- {
- "key": "crossing:barrier",
- "description": "🄵 Barrier Arm"
- },
- {
- "key": "crossing:barrier",
- "value": "full",
- "description": "🄵🅅 Barrier Arm: Full"
- },
- {
- "key": "crossing:barrier",
- "value": "double_half",
- "description": "🄵🅅 Barrier Arm: Double Half"
- },
- {
- "key": "crossing:barrier",
- "value": "half",
- "description": "🄵🅅 Barrier Arm: Half"
- },
- {
- "key": "crossing:barrier",
- "value": "no",
- "description": "🄵🅅 Barrier Arm: No"
- },
- {
- "key": "crossing:barrier",
+ "key": "lock",
"value": "yes",
- "description": "🄵🅅 Barrier Arm: Yes"
- },
- {
- "key": "crossing:bell",
- "description": "🄵 Bell"
- },
- {
- "key": "crossing:island",
- "description": "🄵 Refuge Island"
- },
- {
- "key": "crossing:light",
- "description": "🄵 Lights"
- },
- {
- "key": "crossing:markings",
- "description": "🄵 Crossing Markings"
- },
- {
- "key": "crossing:markings",
- "value": "zebra",
- "description": "🄵🅅 Crossing Markings: Longitudinal Bars"
- },
- {
- "key": "crossing:markings",
- "value": "lines",
- "description": "🄵🅅 Crossing Markings: Transverse Lines"
- },
- {
- "key": "crossing:markings",
- "value": "no",
- "description": "🄵🅅 Crossing Markings: Unmarked"
- },
- {
- "key": "crossing:markings",
- "value": "ladder",
- "description": "🄵🅅 Crossing Markings: Ladder With Longitudinal Bars"
- },
- {
- "key": "crossing:markings",
- "value": "dots",
- "description": "🄵🅅 Crossing Markings: Dotted Transverse Lines"
- },
- {
- "key": "crossing:markings",
- "value": "dashes",
- "description": "🄵🅅 Crossing Markings: Dashed Transverse Lines"
- },
- {
- "key": "crossing:markings",
- "value": "yes",
- "description": "🄵🅅 Crossing Markings: Marked Somehow"
- },
- {
- "key": "crossing:markings",
- "value": "surface",
- "description": "🄵🅅 Crossing Markings: Surface Treatment Only"
- },
- {
- "key": "crossing:markings",
- "value": "ladder:skewed",
- "description": "🄵🅅 Crossing Markings: Ladder With Diagonal Bars"
- },
- {
- "key": "crossing:markings",
- "value": "pictograms",
- "description": "🄵🅅 Crossing Markings: Painted Pictograms"
- },
- {
- "key": "crossing:markings",
- "value": "lines:paired",
- "description": "🄵🅅 Crossing Markings: Double Transverse Lines"
- },
- {
- "key": "crossing:markings",
- "value": "zebra:double",
- "description": "🄵🅅 Crossing Markings: Triple-Four"
- },
- {
- "key": "crossing:markings",
- "value": "zebra:paired",
- "description": "🄵🅅 Crossing Markings: Paired Longitudinal Bars"
- },
- {
- "key": "crossing:markings",
- "value": "zebra:bicolour",
- "description": "🄵🅅 Crossing Markings: Longitudinal Bars With Alternating Colors"
- },
- {
- "key": "crossing:markings",
- "value": "ladder:paired",
- "description": "🄵🅅 Crossing Markings: Ladder With Paired Longitudinal Bars"
- },
- {
- "key": "cuisine",
- "description": "🄵 Cuisines"
- },
- {
- "key": "cuisine",
- "value": "regional",
- "description": "🄵🅅 Cuisines: Regional"
- },
- {
- "key": "cuisine",
- "value": "fish",
- "description": "🄵🅅 Cuisines: Fish"
- },
- {
- "key": "cuisine",
- "value": "spanish",
- "description": "🄵🅅 Cuisines: Spanish"
- },
- {
- "key": "cuisine",
- "value": "portuguese",
- "description": "🄵🅅 Cuisines: Portuguese"
- },
- {
- "key": "cuisine",
- "value": "russian",
- "description": "🄵🅅 Cuisines: Russian"
- },
- {
- "key": "cuisine",
- "value": "polish",
- "description": "🄵🅅 Cuisines: Polish"
- },
- {
- "key": "cuisine",
- "value": "korean",
- "description": "🄵🅅 Cuisines: Korean"
- },
- {
- "key": "cuisine",
- "value": "lebanese",
- "description": "🄵🅅 Cuisines: Lebanese"
- },
- {
- "key": "cuisine",
- "value": "indonesian",
- "description": "🄵🅅 Cuisines: Indonesian"
- },
- {
- "key": "cuisine",
- "value": "malaysian",
- "description": "🄵🅅 Cuisines: Malaysian"
- },
- {
- "key": "cuisine",
- "value": "taiwanese",
- "description": "🄵🅅 Cuisines: Taiwanese"
- },
- {
- "key": "cuisine",
- "value": "cake",
- "description": "🄵🅅 Cuisines: Cake"
- },
- {
- "key": "cuisine",
- "value": "pankcake",
- "description": "🄵🅅 Cuisines: Pancake"
- },
- {
- "key": "cuisine",
- "value": "pasta",
- "description": "🄵🅅 Cuisines: Pasta"
- },
- {
- "key": "cuisine",
- "value": "salad",
- "description": "🄵🅅 Cuisines: Salad"
- },
- {
- "key": "cuisine",
- "value": "chocolate",
- "description": "🄵🅅 Cuisines: Chocolate"
- },
- {
- "key": "cuisine",
- "value": "dessert",
- "description": "🄵🅅 Cuisines: Dessert"
- },
- {
- "key": "currency:",
- "description": "🄵 Currency Types"
- },
- {
- "key": "cutting",
- "description": "🄵 Type, 🄵 Structure"
- },
- {
- "key": "cycle_network",
- "description": "🄵 Network"
- },
- {
- "key": "cycleway",
- "description": "🄵 Bike Lanes"
- },
- {
- "key": "cycleway",
- "value": "no",
- "description": "🄵🅅 Bike Lanes: `no`"
- },
- {
- "key": "cycleway",
- "value": "lane",
- "description": "🄵🅅 Bike Lanes: `lane`"
- },
- {
- "key": "cycleway",
- "value": "shared_lane",
- "description": "🄵🅅 Bike Lanes: `shared_lane`"
- },
- {
- "key": "cycleway",
- "value": "track",
- "description": "🄵🅅 Bike Lanes: `track`"
- },
- {
- "key": "cycleway",
- "value": "share_busway",
- "description": "🄵🅅 Bike Lanes: `share_busway`"
- },
- {
- "key": "cycleway",
- "value": "opposite_lane",
- "description": "🄵🅅 Bike Lanes: `opposite_lane`"
- },
- {
- "key": "cycleway",
- "value": "opposite",
- "description": "🄵🅅 Bike Lanes: `opposite`"
- },
- {
- "key": "cycleway",
- "value": "separate",
- "description": "🄵🅅 Bike Lanes: `separate`"
- },
- {
- "key": "cycleway:left",
- "description": "🄵 Bike Lanes"
- },
- {
- "key": "cycleway:left",
- "value": "no",
- "description": "🄵🅅 Bike Lanes: `no`"
- },
- {
- "key": "cycleway:left",
- "value": "lane",
- "description": "🄵🅅 Bike Lanes: `lane`"
- },
- {
- "key": "cycleway:left",
- "value": "shared_lane",
- "description": "🄵🅅 Bike Lanes: `shared_lane`"
- },
- {
- "key": "cycleway:left",
- "value": "track",
- "description": "🄵🅅 Bike Lanes: `track`"
- },
- {
- "key": "cycleway:left",
- "value": "share_busway",
- "description": "🄵🅅 Bike Lanes: `share_busway`"
- },
- {
- "key": "cycleway:left",
- "value": "opposite_lane",
- "description": "🄵🅅 Bike Lanes: `opposite_lane`"
- },
- {
- "key": "cycleway:left",
- "value": "opposite",
- "description": "🄵🅅 Bike Lanes: `opposite`"
- },
- {
- "key": "cycleway:left",
- "value": "separate",
- "description": "🄵🅅 Bike Lanes: `separate`"
- },
- {
- "key": "cycleway:right",
- "description": "🄵 Bike Lanes"
- },
- {
- "key": "cycleway:right",
- "value": "no",
- "description": "🄵🅅 Bike Lanes: `no`"
- },
- {
- "key": "cycleway:right",
- "value": "lane",
- "description": "🄵🅅 Bike Lanes: `lane`"
- },
- {
- "key": "cycleway:right",
- "value": "shared_lane",
- "description": "🄵🅅 Bike Lanes: `shared_lane`"
- },
- {
- "key": "cycleway:right",
- "value": "track",
- "description": "🄵🅅 Bike Lanes: `track`"
- },
- {
- "key": "cycleway:right",
- "value": "share_busway",
- "description": "🄵🅅 Bike Lanes: `share_busway`"
- },
- {
- "key": "cycleway:right",
- "value": "opposite_lane",
- "description": "🄵🅅 Bike Lanes: `opposite_lane`"
- },
- {
- "key": "cycleway:right",
- "value": "opposite",
- "description": "🄵🅅 Bike Lanes: `opposite`"
- },
- {
- "key": "cycleway:right",
- "value": "separate",
- "description": "🄵🅅 Bike Lanes: `separate`"
- },
- {
- "key": "dance:style",
- "description": "🄵 Dance Styles"
- },
- {
- "key": "date",
- "description": "🄵 Date"
- },
- {
- "key": "defibrillator:location",
- "description": "🄵 Location Description"
- },
- {
- "key": "delivery",
- "description": "🄵 Delivery"
- },
- {
- "key": "denomination",
- "description": "🄵 Denomination"
- },
- {
- "key": "denotation",
- "description": "🄵 Denotation"
- },
- {
- "key": "departures_board",
- "description": "🄵 Departures/Arrivals Board"
- },
- {
- "key": "departures_board",
- "value": "yes",
- "description": "🄵🅅 Departures/Arrivals Board: Yes"
- },
- {
- "key": "departures_board",
- "value": "timetable",
- "description": "🄵🅅 Departures/Arrivals Board: Timetable"
- },
- {
- "key": "departures_board",
- "value": "realtime",
- "description": "🄵🅅 Departures/Arrivals Board: Realtime"
- },
- {
- "key": "departures_board",
- "value": "no",
- "description": "🄵🅅 Departures/Arrivals Board: None"
- },
- {
- "key": "trolley:deposit",
- "description": "🄵 Deposit"
- },
- {
- "key": "depth",
- "description": "🄵 Depth (Meters)"
- },
- {
- "key": "descent",
- "description": "🄵 Total Descent"
- },
- {
- "key": "description",
- "description": "🄵 Description"
- },
- {
- "key": "design",
- "description": "🄵 Design"
- },
- {
- "key": "destination",
- "description": "🄵 Destination, 🄵 Destinations"
- },
- {
- "key": "destination:ref",
- "description": "🄵 Destination Road Numbers"
- },
- {
- "key": "destination:symbol",
- "description": "🄵 Destination Symbols"
- },
- {
- "key": "devices",
- "description": "🄵 Devices"
- },
- {
- "key": "diameter_crown",
- "description": "🄵 Crown Diameter"
- },
- {
- "key": "diameter",
- "description": "🄵 Diameter"
- },
- {
- "key": "diet:",
- "description": "🄵 Diet Types"
- },
- {
- "key": "diet:vegetarian",
- "description": "🄵🅅 Diet Types: Vegetarian"
- },
- {
- "key": "diet:vegan",
- "description": "🄵🅅 Diet Types: Vegan"
- },
- {
- "key": "diet:halal",
- "description": "🄵🅅 Diet Types: Halal"
- },
- {
- "key": "diet:gluten_free",
- "description": "🄵🅅 Diet Types: Gluten-Free"
- },
- {
- "key": "diet:kosher",
- "description": "🄵🅅 Diet Types: Kosher"
- },
- {
- "key": "diet:lactose_free",
- "description": "🄵🅅 Diet Types: Lactose-Free"
- },
- {
- "key": "diet:pescetarian",
- "description": "🄵🅅 Diet Types: Pescetarian"
- },
- {
- "key": "diplomatic",
- "description": "🄵 Type"
- },
- {
- "key": "diplomatic:services:",
- "description": "🄵 Services"
- },
- {
- "key": "direction",
- "description": "🄵 Direction, 🄵 Direction Affected, 🄵 Direction (Degrees Clockwise)"
- },
- {
- "key": "direction",
- "value": "north",
- "description": "🄵🅅 Direction: Northbound"
- },
- {
- "key": "direction",
- "value": "south",
- "description": "🄵🅅 Direction: Southbound"
- },
- {
- "key": "direction",
- "value": "east",
- "description": "🄵🅅 Direction: Eastbound"
- },
- {
- "key": "direction",
- "value": "west",
- "description": "🄵🅅 Direction: Westbound"
- },
- {
- "key": "direction",
- "value": "clockwise",
- "description": "🄵🅅 Direction: Clockwise"
- },
- {
- "key": "direction",
- "value": "anticlockwise",
- "description": "🄵🅅 Direction: Counterclockwise"
- },
- {
- "key": "direction",
- "value": "forward",
- "description": "🄵🅅 Direction Affected: Forward"
- },
- {
- "key": "direction",
- "value": "backward",
- "description": "🄵🅅 Direction Affected: Backward"
- },
- {
- "key": "direction",
- "value": "both",
- "description": "🄵🅅 Direction Affected: Both / All"
- },
- {
- "key": "dispensing",
- "description": "🄵 Dispenses Prescriptions"
- },
- {
- "key": "display",
- "description": "🄵 Display"
- },
- {
- "key": "display",
- "value": "analog",
- "description": "🄵🅅 Display: Analog"
- },
- {
- "key": "display",
- "value": "digital",
- "description": "🄵🅅 Display: Digital"
- },
- {
- "key": "display",
- "value": "unorthodox",
- "description": "🄵🅅 Display: Unorthodox"
- },
- {
- "key": "distance",
- "description": "🄵 Distance"
- },
- {
- "key": "dock",
- "description": "🄵 Type"
- },
- {
- "key": "dog",
- "description": "🄵 Dogs"
- },
- {
- "key": "dog",
- "value": "yes",
- "description": "🄵🅅 Dogs: Allowed"
- },
- {
- "key": "dog",
- "value": "leashed",
- "description": "🄵🅅 Dogs: Leashed Only"
- },
- {
- "key": "dog",
- "value": "no",
- "description": "🄵🅅 Dogs: Not Allowed"
- },
- {
- "key": "door",
- "description": "🄵 Type, 🄵 Door"
- },
- {
- "key": "drink:",
- "description": "🄵 Drinks"
- },
- {
- "key": "drinking_water",
- "description": "🄵 Drinking Water Available, 🄵 Drinkable"
- },
- {
- "key": "drive_through",
- "description": "🄵 Drive-Through"
- },
- {
- "key": "duration",
- "description": "🄵 Duration"
- },
- {
- "key": "ele",
- "description": "🄵 Elevation (Meters)"
- },
- {
- "key": "electrified",
- "description": "🄵 Electrification"
- },
- {
- "key": "electrified",
- "value": "contact_line",
- "description": "🄵🅅 Electrification: Contact Line"
- },
- {
- "key": "electrified",
- "value": "rail",
- "description": "🄵🅅 Electrification: Electrified Rail"
- },
- {
- "key": "electrified",
- "value": "yes",
- "description": "🄵🅅 Electrification: Yes (unspecified)"
- },
- {
- "key": "electrified",
- "value": "no",
- "description": "🄵🅅 Electrification: No"
- },
- {
- "key": "email",
- "description": "🄵 Email"
- },
- {
- "key": "embankment",
- "description": "🄵 Type, 🄵 Structure"
- },
- {
- "key": "embassy",
- "description": "🄵 Type"
- },
- {
- "key": "embassy",
- "value": "yes",
- "description": "🄵🅅 Type: Embassy"
- },
- {
- "key": "embassy",
- "value": "residence",
- "description": "🄵🅅 Type: Official Residence of an Ambassador"
- },
- {
- "key": "embassy",
- "value": "high_commission",
- "description": "🄵🅅 Type: High Commission"
- },
- {
- "key": "embassy",
- "value": "mission",
- "description": "🄵🅅 Type: Diplomatic Mission"
- },
- {
- "key": "embassy",
- "value": "branch_embassy",
- "description": "🄵🅅 Type: Branch of an Embassy"
- },
- {
- "key": "embassy",
- "value": "nunciature",
- "description": "🄵🅅 Type: Diplomatic Mission of the Holy See"
- },
- {
- "key": "embassy",
- "value": "delegation",
- "description": "🄵🅅 Type: Delegation"
- },
- {
- "key": "embassy",
- "value": "interests_section",
- "description": "🄵🅅 Type: Interests Section"
- },
- {
- "key": "emergency_ward_entrance",
- "description": "🄵 Type"
+ "description": "🄿 Canal Lock",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"
+ },
+ {
+ "key": "type",
+ "value": "waterway",
+ "description": "🄿 Waterway",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"
+ },
+ {
+ "key": "type",
+ "value": "site",
+ "description": "🄿 Site, 🄿 Climbing Area",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
+ },
+ {
+ "key": "type",
+ "value": "route_master",
+ "description": "🄿 Route Master",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route-master.svg"
+ },
+ {
+ "key": "type",
+ "value": "route",
+ "description": "🄿 Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route.svg"
+ },
+ {
+ "key": "type",
+ "value": "restriction",
+ "description": "🄿 Restriction",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction.svg"
+ },
+ {
+ "key": "type",
+ "value": "multipolygon",
+ "description": "🄿 Multipolygon",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/multipolygon.svg"
+ },
+ {
+ "key": "type",
+ "value": "enforcement",
+ "description": "🄿 Enforcement",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
+ },
+ {
+ "key": "type",
+ "value": "destination_sign",
+ "description": "🄿 Destination Sign",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
+ },
+ {
+ "key": "type",
+ "value": "connectivity",
+ "description": "🄿 Lane Connectivity",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
+ },
+ {
+ "key": "type",
+ "value": "boundary",
+ "description": "🄿 Boundary",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/boundary.svg"
+ },
+ {
+ "key": "type",
+ "value": "associatedStreet",
+ "description": "🄿 Associated Street (unsearchable)",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
+ },
+ {
+ "key": "climbing",
+ "value": "crag",
+ "description": "🄿 Climbing Crag",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/climbing.svg"
+ },
+ {
+ "key": "route",
+ "value": "trolleybus",
+ "description": "🄿 Trolleybus Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/trolleybus.svg"
+ },
+ {
+ "key": "route",
+ "value": "tram",
+ "description": "🄿 Tram Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tram.svg"
+ },
+ {
+ "key": "route",
+ "value": "train",
+ "description": "🄿 Train Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train.svg"
+ },
+ {
+ "key": "route",
+ "value": "subway",
+ "description": "🄿 Subway Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/subway.svg"
+ },
+ {
+ "key": "route",
+ "value": "road",
+ "description": "🄿 Road Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-unclassified.svg"
+ },
+ {
+ "key": "route",
+ "value": "railway",
+ "description": "🄿 Railway Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track.svg"
+ },
+ {
+ "key": "route",
+ "value": "power",
+ "description": "🄿 Power Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/power-line.svg"
+ },
+ {
+ "key": "route",
+ "value": "piste",
+ "description": "🄿 Piste/Ski Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"
+ },
+ {
+ "key": "route",
+ "value": "pipeline",
+ "description": "🄿 Pipeline Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"
+ },
+ {
+ "key": "route",
+ "value": "mtb",
+ "description": "🄿 Mountain Biking Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle.svg"
+ },
+ {
+ "key": "route",
+ "value": "monorail",
+ "description": "🄿 Monorail Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/monorail.svg"
+ },
+ {
+ "key": "route",
+ "value": "light_rail",
+ "description": "🄿 Light Rail Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/light_rail.svg"
+ },
+ {
+ "key": "route",
+ "value": "horse",
+ "description": "🄿 Horseback Riding Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"
+ },
+ {
+ "key": "route",
+ "value": "hiking",
+ "description": "🄿 Hiking Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hiking.svg"
+ },
+ {
+ "key": "route",
+ "value": "foot",
+ "description": "🄿 Walking Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "route",
+ "value": "ferry",
+ "description": "🄿 Ferry Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ferry.svg"
+ },
+ {
+ "key": "route",
+ "value": "detour",
+ "description": "🄿 Detour Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route-detour.svg"
+ },
+ {
+ "key": "route",
+ "value": "climbing",
+ "description": "🄿 Climbing Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/climbing.svg"
+ },
+ {
+ "key": "route",
+ "value": "bus",
+ "description": "🄿 Bus Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus.svg"
+ },
+ {
+ "key": "route",
+ "value": "bicycle",
+ "description": "🄿 Bicycle Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle.svg"
+ },
+ {
+ "key": "route",
+ "value": "aerialway",
+ "description": "🄿 Aerial Route",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gondola_lift.svg"
+ },
+ {
+ "key": "restriction",
+ "value": "only_u_turn",
+ "description": "🄿 U-Turn Only",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-u-turn.svg"
+ },
+ {
+ "key": "restriction",
+ "value": "only_straight_on",
+ "description": "🄿 Straight Ahead Only",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-straight-on.svg"
+ },
+ {
+ "key": "restriction",
+ "value": "only_right_turn",
+ "description": "🄿 Right Turn Only",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-right-turn.svg"
+ },
+ {
+ "key": "restriction",
+ "value": "only_left_turn",
+ "description": "🄿 Left Turn Only",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-left-turn.svg"
+ },
+ {
+ "key": "restriction",
+ "value": "no_u_turn",
+ "description": "🄿 No U-Turn",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-u-turn.svg"
+ },
+ {
+ "key": "restriction",
+ "value": "no_straight_on",
+ "description": "🄿 No Straight Ahead",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-straight-on.svg"
+ },
+ {
+ "key": "restriction",
+ "value": "no_right_turn",
+ "description": "🄿 No Right Turn",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-right-turn.svg"
+ },
+ {
+ "key": "restriction",
+ "value": "no_left_turn",
+ "description": "🄿 No Left Turn",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-left-turn.svg"
+ },
+ {
+ "key": "public_transport",
+ "value": "stop_area_group",
+ "description": "🄿 Transit Stop Area Group",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
},
{
"key": "enforcement",
- "description": "🄵 Type"
+ "value": "maxspeed",
+ "description": "🄿 Speed Limit Enforcement",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
},
{
- "key": "entrance",
+ "key": "boundary",
+ "value": "administrative",
+ "description": "🄿 Administrative Boundary",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/boundary.svg"
+ },
+ {
+ "key": "traffic_sign",
+ "value": "variable_message",
+ "description": "🄿 Variable Message Sign",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/billboard.svg"
+ },
+ {
+ "key": "traffic_sign",
+ "value": "maxspeed",
+ "description": "🄿 Speed Limit Sign",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-directions.svg"
+ },
+ {
+ "key": "traffic_sign",
+ "value": "city_limit",
+ "description": "🄿 City Limit Sign",
+ "object_types": [
+ "node"
+ ]
+ },
+ {
+ "key": "traffic_calming",
+ "value": "table",
+ "description": "🄿 Speed Table, 🄵🅅 Type: Speed Table, 🄵🅅 Raised: Yes",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_table.svg"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "rumble_strip",
+ "description": "🄿 Rumble Strip, 🄵🅅 Type: Rumble Strip",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rumble_strip.svg"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "mini_bumps",
+ "description": "🄿 Mini Speed Bumps, 🄵🅅 Type: Mini Speed Bumps",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_bump.svg"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "island",
+ "description": "🄿 Traffic Calming Island, 🄵🅅 Type: Traffic Calming Island",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/diamond.svg"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "hump",
+ "description": "🄿 Speed Hump, 🄵🅅 Type: Speed Hump",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_hump.svg"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "dip",
+ "description": "🄿 Dip, 🄵🅅 Type: Dip",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_dip.svg"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "cushion",
+ "description": "🄿 Speed Cushion, 🄵🅅 Type: Speed Cushion",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_hump.svg"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "choker",
+ "description": "🄿 Traffic Choker, 🄵🅅 Type: Traffic Choker",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/diamond.svg"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "chicane",
+ "description": "🄿 Traffic Chicane, 🄵🅅 Type: Traffic Chicane",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/chicane_arrow.svg"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "bump",
+ "description": "🄿 Speed Bump, 🄵🅅 Type: Speed Bump",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_bump.svg"
+ },
+ {
+ "key": "traffic_calming",
"value": "yes",
- "description": "🄵🅅 Type: Unspecified"
- },
- {
- "key": "entrance",
- "value": "secondary",
- "description": "🄵🅅 Type: Secondary"
- },
- {
- "key": "entrance",
- "value": "service",
- "description": "🄵🅅 Type: Service"
- },
- {
- "key": "entrance",
- "value": "exit",
- "description": "🄵🅅 Type: Exit Only"
- },
- {
- "key": "entrance",
- "value": "entrance",
- "description": "🄵🅅 Type: Entrance Only"
- },
- {
- "key": "entrance",
- "value": "staircase",
- "description": "🄵🅅 Type: Staircase"
- },
- {
- "key": "entrance",
- "value": "home",
- "description": "🄵🅅 Type: Private House or Apartment"
- },
- {
- "key": "entrance",
- "value": "garage",
- "description": "🄵🅅 Type: Garage Door"
- },
- {
- "key": "except",
- "description": "🄵 Exceptions"
- },
- {
- "key": "expected_rcn_route_relations",
- "description": "🄵 Adjacent Cycling Nodes"
- },
- {
- "key": "expected_rwn_route_relations",
- "description": "🄵 Adjacent Walking Nodes"
- },
- {
- "key": "expressway",
- "description": "🄵 Expressway"
- },
- {
- "key": "faces",
- "description": "🄵 Faces"
- },
- {
- "key": "fax",
- "description": "🄵 Fax"
- },
- {
- "key": "fee",
- "description": "🄵 Fee"
- },
- {
- "key": "fence_type",
- "description": "🄵 Type"
- },
- {
- "key": "fire_hydrant:diameter",
- "description": "🄵 Diameter (mm, in, or letters)"
- },
- {
- "key": "fire_hydrant:position",
- "description": "🄵 Position"
- },
- {
- "key": "fire_hydrant:position",
- "value": "green",
- "description": "🄵🅅 Position: Green/Grass"
- },
- {
- "key": "fire_hydrant:position",
- "value": "lane",
- "description": "🄵🅅 Position: Road Lane"
- },
- {
- "key": "fire_hydrant:position",
- "value": "sidewalk",
- "description": "🄵🅅 Position: Sidewalk"
- },
- {
- "key": "fire_hydrant:position",
- "value": "parking_lot",
- "description": "🄵🅅 Position: Parking Lot"
- },
- {
- "key": "fire_hydrant:pressure",
- "description": "🄵 Pressure (bar)"
- },
- {
- "key": "fire_hydrant:type",
- "description": "🄵 Shape"
- },
- {
- "key": "fire_hydrant:type",
- "value": "pillar",
- "description": "🄵🅅 Shape: Pillar/Aboveground"
- },
- {
- "key": "fire_hydrant:type",
- "value": "underground",
- "description": "🄵🅅 Shape: Underground"
- },
- {
- "key": "fire_hydrant:type",
- "value": "wall",
- "description": "🄵🅅 Shape: Wall"
- },
- {
- "key": "fire_hydrant:type",
- "value": "pipe",
- "description": "🄵🅅 Shape: Capped Pipe"
- },
- {
- "key": "fireplace",
- "description": "🄵 Fireplace"
- },
- {
- "key": "fishing",
- "description": "🄵 Fishing"
- },
- {
- "key": "fitness_station",
- "description": "🄵 Equipment Type"
- },
- {
- "key": "fixme",
- "description": "🄵 Fix Me"
- },
- {
- "key": "flag:name",
- "description": "🄵 Flag Name"
- },
- {
- "key": "flag:type",
- "description": "🄵 Flag Type"
- },
- {
- "key": "flag:wikidata",
- "description": "🄵 Flag Wikidata"
- },
- {
- "key": "flag:wikipedia",
- "description": "🄵 Flag Wikidata"
- },
- {
- "key": "flashing_lights",
- "description": "🄵 Flashing Lights"
- },
- {
- "key": "flashing_lights",
- "value": "button",
- "description": "🄵🅅 Flashing Lights: `button`"
- },
- {
- "key": "flashing_lights",
- "value": "always",
- "description": "🄵🅅 Flashing Lights: `always`"
- },
- {
- "key": "flashing_lights",
- "value": "sensor",
- "description": "🄵🅅 Flashing Lights: `sensor`"
- },
- {
- "key": "flashing_lights",
- "value": "button;sensor",
- "description": "🄵🅅 Flashing Lights: `button;sensor`"
- },
- {
- "key": "flashing_lights",
- "value": "no",
- "description": "🄵🅅 Flashing Lights: No"
- },
- {
- "key": "flashing_lights",
- "value": "yes",
- "description": "🄵🅅 Flashing Lights: Yes"
- },
- {
- "key": "floating",
- "description": "🄵 Floating"
- },
- {
- "key": "flood_prone",
- "description": "🄵 Flood Prone"
- },
- {
- "key": "fountain",
- "description": "🄵 Type"
- },
- {
- "key": "frequency",
- "description": "🄵 Operating Frequency"
- },
- {
- "key": "from",
- "description": "🄵 From"
- },
- {
- "key": "fuel",
- "description": "🄵 Fuel"
- },
- {
- "key": "fuel:",
- "description": "🄵 Fuel Types"
- },
- {
- "key": "fuel:diesel",
- "description": "🄵🅅 Fuel Types: Diesel"
- },
- {
- "key": "fuel:octane_80",
- "description": "🄵🅅 Fuel Types: Gasoline (80 Octane)"
- },
- {
- "key": "fuel:octane_92",
- "description": "🄵🅅 Fuel Types: Gasoline (92 Octane)"
- },
- {
- "key": "fuel:octane_95",
- "description": "🄵🅅 Fuel Types: Gasoline (95 Octane)"
- },
- {
- "key": "fuel:octane_98",
- "description": "🄵🅅 Fuel Types: Gasoline (98 Octane)"
- },
- {
- "key": "fuel:octane_100",
- "description": "🄵🅅 Fuel Types: Gasoline (100 Octane)"
- },
- {
- "key": "fuel:lpg",
- "description": "🄵🅅 Fuel Types: Liquefied Natural Gas (LPG)"
- },
- {
- "key": "fuel:cng",
- "description": "🄵🅅 Fuel Types: Compressed Natural Gas (CNG)"
- },
- {
- "key": "fuel:GTL_diesel",
- "description": "🄵🅅 Fuel Types: GTL Diesel"
- },
- {
- "key": "fuel:HGV_diesel",
- "description": "🄵🅅 Fuel Types: Truck Diesel"
- },
- {
- "key": "fuel:biodiesel",
- "description": "🄵🅅 Fuel Types: Biodiesel"
- },
- {
- "key": "fuel:octane_85",
- "description": "🄵🅅 Fuel Types: Gasoline (85 Octane)"
- },
- {
- "key": "fuel:octane_87",
- "description": "🄵🅅 Fuel Types: Gasoline (87 Octane)"
- },
- {
- "key": "fuel:octane_88",
- "description": "🄵🅅 Fuel Types: Gasoline (88 Octane)"
- },
- {
- "key": "fuel:octane_89",
- "description": "🄵🅅 Fuel Types: Gasoline (89 Octane)"
- },
- {
- "key": "fuel:octane_90",
- "description": "🄵🅅 Fuel Types: Gasoline (90 Octane)"
- },
- {
- "key": "fuel:octane_91",
- "description": "🄵🅅 Fuel Types: Gasoline (91 Octane)"
- },
- {
- "key": "fuel:octane_93",
- "description": "🄵🅅 Fuel Types: Gasoline (93 Octane)"
- },
- {
- "key": "fuel:octane_97",
- "description": "🄵🅅 Fuel Types: Gasoline (97 Octane)"
- },
- {
- "key": "fuel:e10",
- "description": "🄵🅅 Fuel Types: E10 Gasoline"
- },
- {
- "key": "fuel:e85",
- "description": "🄵🅅 Fuel Types: E85 Gasoline"
- },
- {
- "key": "fuel:propane",
- "description": "🄵🅅 Fuel Types: Propane"
- },
- {
- "key": "fuel:LH2",
- "description": "🄵🅅 Fuel Types: Liquid Hydrogen"
- },
- {
- "key": "fuel:h70",
- "description": "🄵🅅 Fuel Types: Gaseous Hydrogen (700 bar)"
- },
- {
- "key": "fuel:adblue",
- "description": "🄵🅅 Fuel Types: AdBlue / AUS 32"
- },
- {
- "key": "fuel:adblue:canister",
- "description": "🄵🅅 Fuel Types: AdBlue / AUS 32 (sold in canisters)"
- },
- {
- "key": "gambling",
- "description": "🄵 Games"
- },
- {
- "key": "garden:type",
- "description": "🄵 Garden Type"
- },
- {
- "key": "gauge",
- "description": "🄵 Gauge"
- },
- {
- "key": "male",
- "description": "🄵 Gender"
- },
- {
- "key": "female",
- "description": "🄵 Gender"
- },
- {
- "key": "unisex",
- "description": "🄵 Gender"
- },
- {
- "key": "generator:method",
- "description": "🄵 Method"
- },
- {
- "key": "generator:method",
- "value": "fusion",
- "description": "🄵🅅 Method: Fusion"
- },
- {
- "key": "generator:method",
- "value": "wind_turbine",
- "description": "🄵🅅 Method: Wind Turbine"
- },
- {
- "key": "generator:method",
- "value": "water-storage",
- "description": "🄵🅅 Method: Reservoir"
- },
- {
- "key": "generator:method",
- "value": "water-pumped-storage",
- "description": "🄵🅅 Method: Pumped-Storage"
- },
- {
- "key": "generator:method",
- "value": "run-of-the-river",
- "description": "🄵🅅 Method: Run-of-the-River"
- },
- {
- "key": "generator:method",
- "value": "barrage",
- "description": "🄵🅅 Method: Tidal Barrage"
- },
- {
- "key": "generator:method",
- "value": "stream",
- "description": "🄵🅅 Method: Tidal Stream"
- },
- {
- "key": "generator:method",
- "value": "thermal",
- "description": "🄵🅅 Method: Solar Thermal"
- },
- {
- "key": "generator:method",
- "value": "combustion",
- "description": "🄵🅅 Method: Combustion"
- },
- {
- "key": "generator:method",
- "value": "gasification",
- "description": "🄵🅅 Method: Gasification"
- },
- {
- "key": "generator:method",
- "value": "anaerobic_digestion",
- "description": "🄵🅅 Method: Anaerobic Digestion"
- },
- {
- "key": "generator:output:electricity",
- "description": "🄵 Power Output"
- },
- {
- "key": "generator:source",
- "description": "🄵 Source"
- },
- {
- "key": "generator:source",
- "value": "nuclear",
- "description": "🄵🅅 Source: Nuclear Power"
- },
- {
- "key": "generator:source",
- "value": "tidal",
- "description": "🄵🅅 Source: Tidal Power"
- },
- {
- "key": "generator:source",
- "value": "wave",
- "description": "🄵🅅 Source: Wave Power"
- },
- {
- "key": "generator:source",
- "value": "geothermal",
- "description": "🄵🅅 Source: Geothermal Energy"
- },
- {
- "key": "generator:source",
- "value": "solar",
- "description": "🄵🅅 Source: Solar Radiation"
- },
- {
- "key": "generator:source",
- "value": "coal",
- "description": "🄵🅅 Source: Coal"
- },
- {
- "key": "generator:source",
- "value": "gas",
- "description": "🄵🅅 Source: Natural Gas"
- },
- {
- "key": "generator:source",
- "value": "biomass",
- "description": "🄵🅅 Source: Plant Matter"
- },
- {
- "key": "generator:source",
- "value": "biofuel",
- "description": "🄵🅅 Source: Plant Based Fuels"
- },
- {
- "key": "generator:source",
- "value": "biogas",
- "description": "🄵🅅 Source: Biogas"
- },
- {
- "key": "generator:source",
- "value": "oil",
- "description": "🄵🅅 Source: Oil"
- },
- {
- "key": "generator:source",
- "value": "diesel",
- "description": "🄵🅅 Source: Diesel"
- },
- {
- "key": "generator:source",
- "value": "gasoline",
- "description": "🄵🅅 Source: Gasoline"
- },
- {
- "key": "generator:source",
- "value": "waste",
- "description": "🄵🅅 Source: Waste"
- },
- {
- "key": "generator:source",
- "value": "battery",
- "description": "🄵🅅 Source: Battery"
- },
- {
- "key": "generator:type",
- "description": "🄵 Type"
- },
- {
- "key": "genus",
- "description": "🄵 Genus"
- },
- {
- "key": "geyser:height",
- "description": "🄵 Eruption Height"
- },
- {
- "key": "gnis:feature_id",
- "description": "🄵 GNIS Feature ID"
- },
- {
- "key": "government",
- "description": "🄵 Type"
- },
- {
- "key": "grades",
- "description": "🄵 Grade Levels"
- },
- {
- "key": "grape_variety",
- "description": "🄵 Grape Varieties"
- },
- {
- "key": "group_only",
- "description": "🄵 Groups Only"
- },
- {
- "key": "guest_house",
- "description": "🄵 Type"
- },
- {
- "key": "handicap",
- "description": "🄵 Handicap"
- },
- {
- "key": "handrail",
- "description": "🄵 Handrail"
- },
- {
- "key": "hashtags",
- "description": "🄵 Hashtags"
- },
- {
- "key": "healthcare:speciality",
- "description": "🄵 Specialties"
- },
- {
- "key": "healthcare:speciality",
- "value": "acupuncture",
- "description": "🄵🅅 Specialties: Acupuncture"
- },
- {
- "key": "healthcare:speciality",
- "value": "anaesthetics",
- "description": "🄵🅅 Specialties: Anesthesiology"
- },
- {
- "key": "healthcare:speciality",
- "value": "angiology",
- "description": "🄵🅅 Specialties: Angiology"
- },
- {
- "key": "healthcare:speciality",
- "value": "anthroposophical",
- "description": "🄵🅅 Specialties: Anthroposophic Medicine"
- },
- {
- "key": "healthcare:speciality",
- "value": "applied_kinesiology",
- "description": "🄵🅅 Specialties: Applied Kinesiology"
- },
- {
- "key": "healthcare:speciality",
- "value": "aromatherapy",
- "description": "🄵🅅 Specialties: Aromatherapy"
- },
- {
- "key": "healthcare:speciality",
- "value": "ayurveda",
- "description": "🄵🅅 Specialties: Ayurveda"
- },
- {
- "key": "healthcare:speciality",
- "value": "behavior",
- "description": "🄵🅅 Specialties: Behavior Therapy"
- },
- {
- "key": "healthcare:speciality",
- "value": "biochemistry",
- "description": "🄵🅅 Specialties: Biochemistry"
- },
- {
- "key": "healthcare:speciality",
- "value": "biology",
- "description": "🄵🅅 Specialties: Biology"
- },
- {
- "key": "healthcare:speciality",
- "value": "blood_check",
- "description": "🄵🅅 Specialties: Blood Test"
- },
- {
- "key": "healthcare:speciality",
- "value": "body",
- "description": "🄵🅅 Specialties: Body Therapy"
- },
- {
- "key": "healthcare:speciality",
- "value": "cardiothoracic_surgery",
- "description": "🄵🅅 Specialties: Cardiothoracic Surgery"
- },
- {
- "key": "healthcare:speciality",
- "value": "child_psychiatry",
- "description": "🄵🅅 Specialties: Child & Adolescent Psychiatry"
- },
- {
- "key": "healthcare:speciality",
- "value": "clinical_pathology",
- "description": "🄵🅅 Specialties: Clinical Pathology"
- },
- {
- "key": "healthcare:speciality",
- "value": "community",
- "description": "🄵🅅 Specialties: Community & Public Health"
- },
- {
- "key": "healthcare:speciality",
- "value": "depth",
- "description": "🄵🅅 Specialties: Depth Psychology"
- },
- {
- "key": "healthcare:speciality",
- "value": "dermatovenereology",
- "description": "🄵🅅 Specialties: Dermatovenereology"
- },
- {
- "key": "healthcare:speciality",
- "value": "diabetology",
- "description": "🄵🅅 Specialties: Diabetology"
- },
- {
- "key": "healthcare:speciality",
- "value": "diagnostic_radiology",
- "description": "🄵🅅 Specialties: Diagnostic Radiology"
- },
- {
- "key": "healthcare:speciality",
- "value": "emergency",
- "description": "🄵🅅 Specialties: Emergency Medicine"
- },
- {
- "key": "healthcare:speciality",
- "value": "endocrinology",
- "description": "🄵🅅 Specialties: Endocrinology"
- },
- {
- "key": "healthcare:speciality",
- "value": "geriatrics",
- "description": "🄵🅅 Specialties: Geriatric Medicine"
- },
- {
- "key": "healthcare:speciality",
- "value": "hepatology",
- "description": "🄵🅅 Specialties: Hepatology"
- },
- {
- "key": "healthcare:speciality",
- "value": "herbalism",
- "description": "🄵🅅 Specialties: Herbalism"
- },
- {
- "key": "healthcare:speciality",
- "value": "homeopathy",
- "description": "🄵🅅 Specialties: Homeopathy"
- },
- {
- "key": "healthcare:speciality",
- "value": "humanistic",
- "description": "🄵🅅 Specialties: Humanistic Psychology"
- },
- {
- "key": "healthcare:speciality",
- "value": "hydrotherapy",
- "description": "🄵🅅 Specialties: Hydrotherapy"
- },
- {
- "key": "healthcare:speciality",
- "value": "hypnosis",
- "description": "🄵🅅 Specialties: Hypnosis"
- },
- {
- "key": "healthcare:speciality",
- "value": "infectious_diseases",
- "description": "🄵🅅 Specialties: Infectious Disease"
- },
- {
- "key": "healthcare:speciality",
- "value": "intensive",
- "description": "🄵🅅 Specialties: Intensive Care"
- },
- {
- "key": "healthcare:speciality",
- "value": "dental_oral_maxillo_facial_surgery",
- "description": "🄵🅅 Specialties: Dental, Oral & Maxillofacial Surgery"
- },
- {
- "key": "healthcare:speciality",
- "value": "naturopathy",
- "description": "🄵🅅 Specialties: Naturopathy"
- },
- {
- "key": "healthcare:speciality",
- "value": "neonatology",
- "description": "🄵🅅 Specialties: Neonatology"
- },
- {
- "key": "healthcare:speciality",
- "value": "neuropsychiatry",
- "description": "🄵🅅 Specialties: Neuropsychiatry"
- },
- {
- "key": "healthcare:speciality",
- "value": "nuclear",
- "description": "🄵🅅 Specialties: Nuclear Medicine"
- },
- {
- "key": "healthcare:speciality",
- "value": "occupational",
- "description": "🄵🅅 Specialties: Occupational Medicine"
- },
- {
- "key": "healthcare:speciality",
- "value": "osteopathy",
- "description": "🄵🅅 Specialties: Osteopathy"
- },
- {
- "key": "healthcare:speciality",
- "value": "paediatric_surgery",
- "description": "🄵🅅 Specialties: Pediatric Surgery"
- },
- {
- "key": "healthcare:speciality",
- "value": "palliative",
- "description": "🄵🅅 Specialties: Palliative Care"
- },
- {
- "key": "healthcare:speciality",
- "value": "physiatry",
- "description": "🄵🅅 Specialties: Physical Medicine & Rehabilitation"
- },
- {
- "key": "healthcare:speciality",
- "value": "psychiatry",
- "description": "🄵🅅 Specialties: Psychiatry"
- },
- {
- "key": "healthcare:speciality",
- "value": "radiotherapy",
- "description": "🄵🅅 Specialties: Radiotherapy"
- },
- {
- "key": "healthcare:speciality",
- "value": "reflexology",
- "description": "🄵🅅 Specialties: Reflexology"
- },
- {
- "key": "healthcare:speciality",
- "value": "reiki",
- "description": "🄵🅅 Specialties: Reiki"
- },
- {
- "key": "healthcare:speciality",
- "value": "shiatsu",
- "description": "🄵🅅 Specialties: Shiatsu"
- },
- {
- "key": "healthcare:speciality",
- "value": "stomatology",
- "description": "🄵🅅 Specialties: Stomatology"
- },
- {
- "key": "healthcare:speciality",
- "value": "systemic",
- "description": "🄵🅅 Specialties: Systemic Therapy"
- },
- {
- "key": "healthcare:speciality",
- "value": "traditional_chinese_medicine",
- "description": "🄵🅅 Specialties: Traditional Chinese Medicine"
- },
- {
- "key": "healthcare:speciality",
- "value": "transplant",
- "description": "🄵🅅 Specialties: Transplant Surgery"
- },
- {
- "key": "healthcare:speciality",
- "value": "tropical",
- "description": "🄵🅅 Specialties: Tropical Medicine"
- },
- {
- "key": "healthcare:speciality",
- "value": "tuina",
- "description": "🄵🅅 Specialties: Tuī ná"
- },
- {
- "key": "healthcare:speciality",
- "value": "unani",
- "description": "🄵🅅 Specialties: Unani Medicine"
- },
- {
- "key": "healthcare:speciality",
- "value": "vaccination",
- "description": "🄵🅅 Specialties: Vaccination"
- },
- {
- "key": "healthcare:speciality",
- "value": "vascular_surgery",
- "description": "🄵🅅 Specialties: Vascular Surgery"
- },
- {
- "key": "heating",
- "description": "🄵 Heating"
- },
- {
- "key": "height",
- "description": "🄵 Building Height (Meters), 🄵 Height (Meters)"
- },
- {
- "key": "height:hub",
- "description": "🄵 Height of Hub (Meters)"
- },
- {
- "key": "highchair",
- "description": "🄵 High Chair"
- },
- {
- "key": "highspeed",
- "description": "🄵 High-Speed"
- },
- {
- "key": "historic:civilization",
- "description": "🄵 Historic Civilization"
- },
- {
- "key": "wreck:date_sunk",
- "description": "🄵 Date Sunk"
- },
- {
- "key": "wreck:visible_at_high_tide",
- "description": "🄵 Visible At High Tide"
- },
- {
- "key": "wreck:visible_at_low_tide",
- "description": "🄵 Visible At Low Tide"
- },
- {
- "key": "holding_position:type",
- "description": "🄵 Type"
- },
- {
- "key": "holding_position:type",
- "value": "runway",
- "description": "🄵🅅 Type: Runway"
- },
- {
- "key": "holding_position:type",
- "value": "intermediate",
- "description": "🄵🅅 Type: Taxiway-Taxiway Intersection"
- },
- {
- "key": "holding_position:type",
- "value": "ILS",
- "description": "🄵🅅 Type: Instrument Landing System"
- },
- {
- "key": "hoops",
- "description": "🄵 Hoops"
- },
- {
- "key": "sport",
- "description": "🄵 Dressage Riding, 🄵 Sports"
- },
- {
- "key": "horse_scale",
- "description": "🄵 Horseback Riding Difficulty"
- },
- {
- "key": "horse_scale",
- "value": "common",
- "description": "🄵🅅 Horseback Riding Difficulty: Easy: No problems or difficulties. (default)"
- },
- {
- "key": "horse_scale",
- "value": "demanding",
- "description": "🄵🅅 Horseback Riding Difficulty: Use with caution: Uneven way, occasional difficult passages."
- },
- {
- "key": "horse_scale",
- "value": "difficult",
- "description": "🄵🅅 Horseback Riding Difficulty: Difficult: Way narrow and exposed. May contain obstacles to step over and narrow passages."
- },
- {
- "key": "horse_scale",
- "value": "critical",
- "description": "🄵🅅 Horseback Riding Difficulty: Borderline: Passable only for experienced riders and horses. Major obstacles. Bridges should be examined carefully."
- },
- {
- "key": "horse_scale",
- "value": "dangerous",
- "description": "🄵🅅 Horseback Riding Difficulty: Dangerous: Passable only for very experienced riders and horses and only in good weather. Dismount."
- },
- {
- "key": "horse_scale",
- "value": "impossible",
- "description": "🄵🅅 Horseback Riding Difficulty: Impassable: Way or bridge not passable for horses. Too narrow, insuffient support, obstacles like ladders. Danger of life."
- },
- {
- "key": "amenity",
- "value": "stables",
- "description": "🄵🅅 Riding Stable: Yes"
- },
- {
- "key": "hot_water",
- "description": "🄵 Hot Water"
- },
- {
- "key": "iata",
- "description": "🄵 IATA Airport Code"
- },
- {
- "key": "icao",
- "description": "🄵 ICAO Airport Code"
- },
- {
- "key": "image",
- "description": "🄵 Image"
- },
- {
- "key": "incline",
- "description": "🄵 Incline"
- },
- {
- "key": "incline",
- "value": "up"
- },
- {
- "key": "incline",
- "value": "down"
- },
- {
- "key": "industrial",
- "description": "🄵 Type"
- },
- {
- "key": "informal",
- "description": "🄵 Informal"
+ "description": "🄿 Traffic Calming (Unspecified Type) (unsearchable)",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/diamond.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "zoo",
+ "description": "🄿 Zoo",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/zoo.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "wilderness_hut",
+ "description": "🄿 Wilderness Hut",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cabin.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "viewpoint",
+ "description": "🄿 Viewpoint",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/spotting_scope.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "trail_riding_station",
+ "description": "🄿 Trail Riding Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "theme_park",
+ "description": "🄿 Theme Park",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "picnic_site",
+ "description": "🄿 Picnic Site",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "museum",
+ "description": "🄿 Museum",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/museum.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "motel",
+ "description": "🄿 Motel",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "information",
+ "description": "🄿 Information",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "hotel",
+ "description": "🄿 Hotel",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-concierge-bell.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "hostel",
+ "description": "🄿 Hostel",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bunk_beds.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "guest_house",
+ "description": "🄿 Guest House",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "gallery",
+ "description": "🄿 Art Gallery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "chalet",
+ "description": "🄿 Holiday Cottage",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cabin.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "caravan_site",
+ "description": "🄿 RV Park",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/camper_trailer.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "camp_site",
+ "description": "🄿 Campground",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "camp_pitch",
+ "description": "🄿 Camp Pitch",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "attraction",
+ "description": "🄿 Tourist Attraction",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/star.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "artwork",
+ "description": "🄿 Artwork",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "aquarium",
+ "description": "🄿 Aquarium",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aquarium.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "apartment",
+ "description": "🄿 Guest Apartment / Condo",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging.svg"
+ },
+ {
+ "key": "tourism",
+ "value": "alpine_hut",
+ "description": "🄿 Mountain Lodge",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cabin.svg"
+ },
+ {
+ "key": "zoo",
+ "value": "wildlife_park",
+ "description": "🄿 Wildlife Park",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-frog.svg"
+ },
+ {
+ "key": "zoo",
+ "value": "safari_park",
+ "description": "🄿 Safari Park",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/zoo.svg"
+ },
+ {
+ "key": "zoo",
+ "value": "petting_zoo",
+ "description": "🄿 Petting Zoo",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-horse.svg"
+ },
+ {
+ "key": "museum",
+ "value": "history",
+ "description": "🄿 History Museum",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/museum.svg"
},
{
"key": "information",
- "description": "🄵 Type"
- },
- {
- "key": "inscription",
- "description": "🄵 Inscription"
- },
- {
- "key": "intermittent",
- "description": "🄵 Intermittent"
- },
- {
- "key": "internet_access",
- "description": "🄵 Internet Connection"
- },
- {
- "key": "internet_access",
- "value": "yes",
- "description": "🄵🅅 Internet Connection: Yes"
- },
- {
- "key": "internet_access",
- "value": "no",
- "description": "🄵🅅 Internet Connection: No"
- },
- {
- "key": "internet_access",
- "value": "wired",
- "description": "🄵🅅 Internet Connection: Wired"
- },
- {
- "key": "internet_access",
"value": "terminal",
- "description": "🄵🅅 Internet Connection: Terminal"
+ "description": "🄿 Information Terminal",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/app_terminal.svg"
},
{
- "key": "internet_access:fee",
- "description": "🄵 Internet Access"
+ "key": "information",
+ "value": "route_marker",
+ "description": "🄿 Trail Marker",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information.svg"
},
{
- "key": "internet_access:fee",
- "value": "no",
- "description": "🄵🅅 Internet Access: Free"
+ "key": "information",
+ "value": "office",
+ "description": "🄿 Visitor Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information.svg"
},
{
- "key": "internet_access:fee",
+ "key": "information",
+ "value": "map",
+ "description": "🄿 Map",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-map.svg"
+ },
+ {
+ "key": "information",
+ "value": "guidepost",
+ "description": "🄿 Guidepost",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-map-signs.svg"
+ },
+ {
+ "key": "information",
+ "value": "board",
+ "description": "🄿 Information Board",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/info_board.svg"
+ },
+ {
+ "key": "board_type",
+ "value": "welcome_sign",
+ "description": "🄿 Welcome Sign, 🄵🅅 Type: Welcome Sign",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/embassy.svg"
+ },
+ {
+ "key": "group_only",
"value": "yes",
- "description": "🄵🅅 Internet Access: Paid"
+ "description": "🄿 Group Camping Area",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite.svg"
},
{
- "key": "internet_access:fee",
- "value": "customers",
- "description": "🄵🅅 Internet Access: Customers Only"
+ "key": "backcountry",
+ "value": "yes",
+ "description": "🄿 Backcountry Camping Area",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite.svg"
},
{
- "key": "internet_access:ssid",
- "description": "🄵 Wifi Network Name"
+ "key": "artwork_type",
+ "value": "statue",
+ "description": "🄿 Statue, 🄵🅅 Type: Statue",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/statue.svg"
},
{
- "key": "interval",
- "description": "🄵 Interval"
+ "key": "artwork_type",
+ "value": "sculpture",
+ "description": "🄿 Sculpture, 🄵🅅 Type: Sculpture",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sculpture.svg"
},
{
- "key": "junction",
- "description": "🄵 Junction"
+ "key": "artwork_type",
+ "value": "mural",
+ "description": "🄿 Mural, 🄵🅅 Type: Mural",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"
},
{
- "key": "junction",
+ "key": "artwork_type",
+ "value": "installation",
+ "description": "🄿 Art Installation, 🄵🅅 Type: Art Installation",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sculpture.svg"
+ },
+ {
+ "key": "artwork_type",
+ "value": "graffiti",
+ "description": "🄿 Graffiti, 🄵🅅 Type: Graffiti",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"
+ },
+ {
+ "key": "artwork_type",
+ "value": "bust",
+ "description": "🄿 Bust, 🄵🅅 Type: Bust",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-alt.svg"
+ },
+ {
+ "key": "telecom",
+ "value": "exchange",
+ "description": "🄿 Telecom Exchange, 🄵🅅 Type: Exchange",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cable.svg"
+ },
+ {
+ "key": "telecom",
+ "value": "data_center",
+ "description": "🄿 Data Center, 🄵🅅 Type: Data Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-server.svg"
+ },
+ {
+ "key": "shop",
+ "value": "wine",
+ "description": "🄿 Wine Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/alcohol-shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "window_blind",
+ "description": "🄿 Window Blind Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/window.svg"
+ },
+ {
+ "key": "shop",
+ "value": "wigs",
+ "description": "🄿 Wig Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "wholesale",
+ "description": "🄿 Wholesale Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/warehouse.svg"
+ },
+ {
+ "key": "shop",
+ "value": "weapons",
+ "description": "🄿 Weapon Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/dagger.svg"
+ },
+ {
+ "key": "shop",
+ "value": "water_sports",
+ "description": "🄿 Watersport/Swim Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"
+ },
+ {
+ "key": "shop",
+ "value": "water",
+ "description": "🄿 Drinking Water Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/water_bottle.svg"
+ },
+ {
+ "key": "shop",
+ "value": "watches",
+ "description": "🄿 Watches Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watch.svg"
+ },
+ {
+ "key": "shop",
+ "value": "video_games",
+ "description": "🄿 Video Game Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gaming.svg"
+ },
+ {
+ "key": "shop",
+ "value": "video",
+ "description": "🄿 Video Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/movie_rental.svg"
+ },
+ {
+ "key": "shop",
+ "value": "variety_store",
+ "description": "🄿 Discount Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "vacuum_cleaner",
+ "description": "🄿 Vacuum Cleaner Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vacuum.svg"
+ },
+ {
+ "key": "shop",
+ "value": "tyres",
+ "description": "🄿 Tire Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tire.svg"
+ },
+ {
+ "key": "shop",
+ "value": "trophy",
+ "description": "🄿 Trophy Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-trophy.svg"
+ },
+ {
+ "key": "shop",
+ "value": "travel_agency",
+ "description": "🄿 Travel Agency",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-suitcase.svg"
+ },
+ {
+ "key": "shop",
+ "value": "trade",
+ "description": "🄿 Trade Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "shop",
+ "value": "toys",
+ "description": "🄿 Toy Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-rocket.svg"
+ },
+ {
+ "key": "shop",
+ "value": "tool_hire",
+ "description": "🄿 Tool Rental",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "shop",
+ "value": "tobacco",
+ "description": "🄿 Tobacco Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pipe.svg"
+ },
+ {
+ "key": "shop",
+ "value": "tiles",
+ "description": "🄿 Tile Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tiling.svg"
+ },
+ {
+ "key": "shop",
+ "value": "ticket",
+ "description": "🄿 Ticket Seller",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ticket-alt.svg"
+ },
+ {
+ "key": "shop",
+ "value": "telecommunication",
+ "description": "🄿 Telecom Retail Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/telephone.svg"
+ },
+ {
+ "key": "shop",
+ "value": "tea",
+ "description": "🄿 Tea Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/teahouse.svg"
+ },
+ {
+ "key": "shop",
+ "value": "tattoo",
+ "description": "🄿 Tattoo Parlor",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tattoo_machine.svg"
+ },
+ {
+ "key": "shop",
+ "value": "tailor",
+ "description": "🄿 Tailor",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/needle_and_spool.svg"
+ },
+ {
+ "key": "shop",
+ "value": "swimming_pool",
+ "description": "🄿 Pool Supply Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"
+ },
+ {
+ "key": "shop",
+ "value": "supermarket",
+ "description": "🄿 Supermarket",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/grocery.svg"
+ },
+ {
+ "key": "shop",
+ "value": "storage_rental",
+ "description": "🄿 Storage Rental",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_rental.svg"
+ },
+ {
+ "key": "shop",
+ "value": "stationery",
+ "description": "🄿 Stationery Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paperclip.svg"
+ },
+ {
+ "key": "shop",
+ "value": "sports",
+ "description": "🄿 Sporting Goods Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-futbol.svg"
+ },
+ {
+ "key": "shop",
+ "value": "spices",
+ "description": "🄿 Spice Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/spice_bottle.svg"
+ },
+ {
+ "key": "shop",
+ "value": "shoes",
+ "description": "🄿 Shoe Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shoe.svg"
+ },
+ {
+ "key": "shop",
+ "value": "shoe_repair",
+ "description": "🄿 Shoe Repair Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hammer_shoe.svg"
+ },
+ {
+ "key": "shop",
+ "value": "sewing",
+ "description": "🄿 Sewing Supply Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/needle_and_spool.svg"
+ },
+ {
+ "key": "shop",
+ "value": "second_hand",
+ "description": "🄿 Thrift Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "seafood",
+ "description": "🄿 Seafood Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fish_cleaning.svg"
+ },
+ {
+ "key": "shop",
+ "value": "scuba_diving",
+ "description": "🄿 Scuba Diving Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/scuba_diving.svg"
+ },
+ {
+ "key": "shop",
+ "value": "rice",
+ "description": "🄿 Rice Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bowl-rice.svg"
+ },
+ {
+ "key": "shop",
+ "value": "repair",
+ "description": "🄿 Repair Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tools.svg"
+ },
+ {
+ "key": "shop",
+ "value": "rental",
+ "description": "🄿 Rental Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dolly.svg"
+ },
+ {
+ "key": "shop",
+ "value": "religion",
+ "description": "🄿 Religious Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "radiotechnics",
+ "description": "🄿 Radio/Electronic Component Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microchip.svg"
+ },
+ {
+ "key": "shop",
+ "value": "pyrotechnics",
+ "description": "🄿 Fireworks Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rocket_firework.svg"
+ },
+ {
+ "key": "shop",
+ "value": "psychic",
+ "description": "🄿 Psychic",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/psychic.svg"
+ },
+ {
+ "key": "shop",
+ "value": "printer_ink",
+ "description": "🄿 Printer Ink Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-print.svg"
+ },
+ {
+ "key": "shop",
+ "value": "pottery",
+ "description": "🄿 Pottery Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vase.svg"
+ },
+ {
+ "key": "shop",
+ "value": "photo",
+ "description": "🄿 Photography Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-camera-retro.svg"
+ },
+ {
+ "key": "shop",
+ "value": "pet_grooming",
+ "description": "🄿 Pet Groomer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pet_grooming.svg"
+ },
+ {
+ "key": "shop",
+ "value": "pet",
+ "description": "🄿 Pet Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cat.svg"
+ },
+ {
+ "key": "shop",
+ "value": "perfumery",
+ "description": "🄿 Perfume Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/perfume.svg"
+ },
+ {
+ "key": "shop",
+ "value": "pawnbroker",
+ "description": "🄿 Pawnshop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"
+ },
+ {
+ "key": "shop",
+ "value": "pastry",
+ "description": "🄿 Pastry Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bakery.svg"
+ },
+ {
+ "key": "shop",
+ "value": "pasta",
+ "description": "🄿 Pasta Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plate-wheat.svg"
+ },
+ {
+ "key": "shop",
+ "value": "party",
+ "description": "🄿 Party Supply Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/balloon.svg"
+ },
+ {
+ "key": "shop",
+ "value": "paint",
+ "description": "🄿 Paint Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paint-roller.svg"
+ },
+ {
+ "key": "shop",
+ "value": "outpost",
+ "description": "🄿 Online Retailer Outpost",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "outdoor",
+ "description": "🄿 Outdoors Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/compass.svg"
+ },
+ {
+ "key": "shop",
+ "value": "optician",
+ "description": "🄿 Optician",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/optician.svg"
+ },
+ {
+ "key": "shop",
+ "value": "nuts",
+ "description": "🄿 Nuts Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "nutrition_supplements",
+ "description": "🄿 Nutrition Supplements Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pills.svg"
+ },
+ {
+ "key": "shop",
+ "value": "newsagent",
+ "description": "🄿 Newsstand",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-newspaper.svg"
+ },
+ {
+ "key": "shop",
+ "value": "musical_instrument",
+ "description": "🄿 Musical Instrument Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-guitar.svg"
+ },
+ {
+ "key": "shop",
+ "value": "music",
+ "description": "🄿 Music Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compact-disc.svg"
+ },
+ {
+ "key": "shop",
+ "value": "motorcycle_repair",
+ "description": "🄿 Motorcycle Repair Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/motorcycle_repair.svg"
+ },
+ {
+ "key": "shop",
+ "value": "motorcycle",
+ "description": "🄿 Motorcycle Dealership",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"
+ },
+ {
+ "key": "shop",
+ "value": "money_lender",
+ "description": "🄿 Money Lender",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"
+ },
+ {
+ "key": "shop",
+ "value": "model",
+ "description": "🄿 Model Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "mobile_phone_accessories",
+ "description": "🄿 Mobile Phone Accessory Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mobile-screen.svg"
+ },
+ {
+ "key": "shop",
+ "value": "mobile_phone",
+ "description": "🄿 Mobile Phone Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mobile-alt.svg"
+ },
+ {
+ "key": "shop",
+ "value": "military_surplus",
+ "description": "🄿 Military Surplus Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military.svg"
+ },
+ {
+ "key": "shop",
+ "value": "medical_supply",
+ "description": "🄿 Medical Supply Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crutch.svg"
+ },
+ {
+ "key": "shop",
+ "value": "massage",
+ "description": "🄿 Massage Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/spa.svg"
+ },
+ {
+ "key": "shop",
+ "value": "mall",
+ "description": "🄿 Mall",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shopping_mall.svg"
+ },
+ {
+ "key": "shop",
+ "value": "lottery",
+ "description": "🄿 Lottery Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ticket-alt.svg"
+ },
+ {
+ "key": "shop",
+ "value": "locksmith",
+ "description": "🄿 Locksmith",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-key.svg"
+ },
+ {
+ "key": "shop",
+ "value": "lighting",
+ "description": "🄿 Lighting Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/desk_lamp.svg"
+ },
+ {
+ "key": "shop",
+ "value": "leather",
+ "description": "🄿 Leather Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/handbag.svg"
+ },
+ {
+ "key": "shop",
+ "value": "laundry",
+ "description": "🄿 Laundry",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/laundry.svg"
+ },
+ {
+ "key": "shop",
+ "value": "kitchen",
+ "description": "🄿 Kitchen Design Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kitchen_sink.svg"
+ },
+ {
+ "key": "shop",
+ "value": "kiosk",
+ "description": "🄿 Kiosk",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store.svg"
+ },
+ {
+ "key": "shop",
+ "value": "jewelry",
+ "description": "🄿 Jewelry Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/jewelry-store.svg"
+ },
+ {
+ "key": "shop",
+ "value": "interior_decoration",
+ "description": "🄿 Interior Decoration Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "hunting",
+ "description": "🄿 Hunting Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bow_and_arrow.svg"
+ },
+ {
+ "key": "shop",
+ "value": "houseware",
+ "description": "🄿 Houseware Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-blender.svg"
+ },
+ {
+ "key": "shop",
+ "value": "household_linen",
+ "description": "🄿 Household Linen Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cloth.svg"
+ },
+ {
+ "key": "shop",
+ "value": "honey",
+ "description": "🄿 Honey Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "hifi",
+ "description": "🄿 Hifi Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speaker.svg"
+ },
+ {
+ "key": "shop",
+ "value": "herbalist",
+ "description": "🄿 Herbalist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-leaf.svg"
+ },
+ {
+ "key": "shop",
+ "value": "hearing_aids",
+ "description": "🄿 Hearing Aids Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hearing_aid.svg"
+ },
+ {
+ "key": "shop",
+ "value": "health_food",
+ "description": "🄿 Health Food Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "hardware",
+ "description": "🄿 Hardware Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "shop",
+ "value": "hairdresser_supply",
+ "description": "🄿 Hairdresser Supply Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hair_care.svg"
+ },
+ {
+ "key": "shop",
+ "value": "hairdresser",
+ "description": "🄿 Hairdresser",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/beauty_salon.svg"
+ },
+ {
+ "key": "shop",
+ "value": "groundskeeping",
+ "description": "🄿 Lawn & Garden Equipment Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"
+ },
+ {
+ "key": "shop",
+ "value": "greengrocer",
+ "description": "🄿 Greengrocer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-carrot.svg"
+ },
+ {
+ "key": "shop",
+ "value": "gold_buyer",
+ "description": "🄿 Gold buyer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hand-holding.svg"
+ },
+ {
+ "key": "shop",
+ "value": "gift",
+ "description": "🄿 Gift Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gift.svg"
+ },
+ {
+ "key": "shop",
+ "value": "general",
+ "description": "🄿 General Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "gas",
+ "description": "🄿 Bottled Gas Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/propane_tank.svg"
+ },
+ {
+ "key": "shop",
+ "value": "garden_centre",
+ "description": "🄿 Garden Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre.svg"
+ },
+ {
+ "key": "shop",
+ "value": "games",
+ "description": "🄿 Tabletop Game Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dice.svg"
+ },
+ {
+ "key": "shop",
+ "value": "furniture",
+ "description": "🄿 Furniture Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-couch.svg"
+ },
+ {
+ "key": "shop",
+ "value": "funeral_directors",
+ "description": "🄿 Funeral Home",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"
+ },
+ {
+ "key": "shop",
+ "value": "fuel",
+ "description": "🄿 Fuel Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/propane_tank.svg"
+ },
+ {
+ "key": "shop",
+ "value": "frozen_food",
+ "description": "🄿 Frozen Food Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/far-snowflake.svg"
+ },
+ {
+ "key": "shop",
+ "value": "frame",
+ "description": "🄿 Framing Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/portrait_framed.svg"
+ },
+ {
+ "key": "shop",
+ "value": "florist",
+ "description": "🄿 Florist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/florist.svg"
+ },
+ {
+ "key": "shop",
+ "value": "flooring",
+ "description": "🄿 Flooring Supply Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "shop",
+ "value": "fishing",
+ "description": "🄿 Fishing Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ice_fishing.svg"
+ },
+ {
+ "key": "shop",
+ "value": "fireplace",
+ "description": "🄿 Fireplace Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fireplace.svg"
+ },
+ {
+ "key": "shop",
+ "value": "fashion_accessories",
+ "description": "🄿 Fashion Accessories Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fashion_accessories.svg"
+ },
+ {
+ "key": "shop",
+ "value": "farm",
+ "description": "🄿 Produce Stand",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-apple-alt.svg"
+ },
+ {
+ "key": "shop",
+ "value": "fabric",
+ "description": "🄿 Fabric Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"
+ },
+ {
+ "key": "shop",
+ "value": "erotic",
+ "description": "🄿 Erotic Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "electronics",
+ "description": "🄿 Electronics Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plug.svg"
+ },
+ {
+ "key": "shop",
+ "value": "electrical",
+ "description": "🄿 Electrical Equipment Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"
+ },
+ {
+ "key": "shop",
+ "value": "e-cigarette",
+ "description": "🄿 E-Cigarette Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-smoking.svg"
+ },
+ {
+ "key": "shop",
+ "value": "dry_cleaning",
+ "description": "🄿 Dry Cleaner",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/clothes_hanger.svg"
+ },
+ {
+ "key": "shop",
+ "value": "doors",
+ "description": "🄿 Door Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-open.svg"
+ },
+ {
+ "key": "shop",
+ "value": "doityourself",
+ "description": "🄿 DIY Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "shop",
+ "value": "department_store",
+ "description": "🄿 Department Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "deli",
+ "description": "🄿 Delicatessen",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-jar.svg"
+ },
+ {
+ "key": "shop",
+ "value": "dairy",
+ "description": "🄿 Dairy Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cheese.svg"
+ },
+ {
+ "key": "shop",
+ "value": "curtain",
+ "description": "🄿 Curtain Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/curtains.svg"
+ },
+ {
+ "key": "shop",
+ "value": "craft",
+ "description": "🄿 Arts & Crafts Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-palette.svg"
+ },
+ {
+ "key": "shop",
+ "value": "country_store",
+ "description": "🄿 Rural Supplies Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hat-cowboy-side.svg"
+ },
+ {
+ "key": "shop",
+ "value": "cosmetics",
+ "description": "🄿 Cosmetics Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/lipstick.svg"
+ },
+ {
+ "key": "shop",
+ "value": "copyshop",
+ "description": "🄿 Copy Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-print.svg"
+ },
+ {
+ "key": "shop",
+ "value": "convenience",
+ "description": "🄿 Convenience Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-basket.svg"
+ },
+ {
+ "key": "shop",
+ "value": "confectionery",
+ "description": "🄿 Candy Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery.svg"
+ },
+ {
+ "key": "shop",
+ "value": "computer",
+ "description": "🄿 Computer Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-laptop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "collector",
+ "description": "🄿 Collectibles Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-th.svg"
+ },
+ {
+ "key": "shop",
+ "value": "coffee",
+ "description": "🄿 Coffee Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/coffee.svg"
+ },
+ {
+ "key": "shop",
+ "value": "clothes",
+ "description": "🄿 Clothing Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store.svg"
+ },
+ {
+ "key": "shop",
+ "value": "chocolate",
+ "description": "🄿 Chocolate Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery.svg"
+ },
+ {
+ "key": "shop",
+ "value": "chemist",
+ "description": "🄿 Drugstore",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-basket.svg"
+ },
+ {
+ "key": "shop",
+ "value": "cheese",
+ "description": "🄿 Cheese Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cheese.svg"
+ },
+ {
+ "key": "shop",
+ "value": "charity",
+ "description": "🄿 Charity Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "catalogue",
+ "description": "🄿 Catalog Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "carpet",
+ "description": "🄿 Carpet Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"
+ },
+ {
+ "key": "shop",
+ "value": "caravan",
+ "description": "🄿 RV Dealership",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/camper_trailer.svg"
+ },
+ {
+ "key": "shop",
+ "value": "car_repair",
+ "description": "🄿 Car Repair Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-repair.svg"
+ },
+ {
+ "key": "shop",
+ "value": "car_parts",
+ "description": "🄿 Car Parts Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-car-battery.svg"
+ },
+ {
+ "key": "shop",
+ "value": "car",
+ "description": "🄿 Car Dealership",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_dealer.svg"
+ },
+ {
+ "key": "shop",
+ "value": "cannabis",
+ "description": "🄿 Cannabis Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cannabis.svg"
+ },
+ {
+ "key": "shop",
+ "value": "candles",
+ "description": "🄿 Candle Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-burn.svg"
+ },
+ {
+ "key": "shop",
+ "value": "camera",
+ "description": "🄿 Camera Equipment Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-camera-retro.svg"
+ },
+ {
+ "key": "shop",
+ "value": "butcher",
+ "description": "🄿 Butcher",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cleaver.svg"
+ },
+ {
+ "key": "shop",
+ "value": "brewing_supplies",
+ "description": "🄿 Brewing Supply Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_fermenter.svg"
+ },
+ {
+ "key": "shop",
+ "value": "books",
+ "description": "🄿 Bookstore",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-book.svg"
+ },
+ {
+ "key": "shop",
+ "value": "bookmaker",
+ "description": "🄿 Bookmaker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"
+ },
+ {
+ "key": "shop",
+ "value": "boat",
+ "description": "🄿 Boat Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat.svg"
+ },
+ {
+ "key": "shop",
+ "value": "bicycle",
+ "description": "🄿 Bicycle Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle.svg"
+ },
+ {
+ "key": "shop",
+ "value": "beverages",
+ "description": "🄿 Beverage Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bottles.svg"
+ },
+ {
+ "key": "shop",
+ "value": "bed",
+ "description": "🄿 Bedding/Mattress Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging.svg"
+ },
+ {
+ "key": "shop",
+ "value": "beauty",
+ "description": "🄿 Beauty Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/lipstick.svg"
+ },
+ {
+ "key": "shop",
+ "value": "bbq",
+ "description": "🄿 Barbecue Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bbq.svg"
+ },
+ {
+ "key": "shop",
+ "value": "bathroom_furnishing",
+ "description": "🄿 Bathroom Furnishing Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bath.svg"
+ },
+ {
+ "key": "shop",
+ "value": "bakery",
+ "description": "🄿 Bakery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bakery.svg"
+ },
+ {
+ "key": "shop",
+ "value": "bag",
+ "description": "🄿 Bag/Luggage Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-suitcase-rolling.svg"
+ },
+ {
+ "key": "shop",
+ "value": "baby_goods",
+ "description": "🄿 Baby Goods Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby-carriage.svg"
+ },
+ {
+ "key": "shop",
+ "value": "art",
+ "description": "🄿 Art Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"
+ },
+ {
+ "key": "shop",
+ "value": "appliance",
+ "description": "🄿 Appliance Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/laundry.svg"
+ },
+ {
+ "key": "shop",
+ "value": "antiques",
+ "description": "🄿 Antique Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/furniture.svg"
+ },
+ {
+ "key": "shop",
+ "value": "anime",
+ "description": "🄿 Anime / Manga Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dragon.svg"
+ },
+ {
+ "key": "shop",
+ "value": "alcohol",
+ "description": "🄿 Liquor Store",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-wine-bottle.svg"
+ },
+ {
+ "key": "shop",
+ "value": "agrarian",
+ "description": "🄿 Farm Supply Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"
+ },
+ {
+ "key": "shop",
+ "value": "yes",
+ "description": "🄿 Shop (Unspecified Type) (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "vacant",
+ "description": "🄿 Vacant Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store-alt-slash.svg"
+ },
+ {
+ "key": "shop",
+ "value": "hobby",
+ "description": "🄿 Hobby Shop (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dragon.svg"
+ },
+ {
+ "key": "shop",
+ "value": "fashion",
+ "description": "🄿 Fashion Store (unsearchable), 🄳 (deprecated tag) ➜ shop=clothes",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "shop",
+ "value": "boutique",
+ "description": "🄿 Boutique (unsearchable), 🄳 (deprecated tag) ➜ shop=clothes",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "organic",
+ "value": "only",
+ "description": "🄿 Organic Supermarket, 🄵🅅 Organic Products: Only",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/grocery.svg"
+ },
+ {
+ "key": "self_service",
+ "value": "yes",
+ "description": "🄿 Self-Service Laundry",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/laundry.svg"
+ },
+ {
+ "key": "hairdresser",
+ "value": "barber",
+ "description": "🄿 Barber",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/beauty_salon.svg"
+ },
+ {
+ "key": "lgbtq",
+ "value": "primary",
+ "description": "🄿 LGBTQ+ Erotic Store, 🄿 LGBTQ+ Pub, 🄿 LGBTQ+ Nightclub, 🄿 LGBTQ+ Community Center, 🄿 LGBTQ+ Bar",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"
+ },
+ {
+ "key": "clothes",
+ "value": "workwear",
+ "description": "🄿 Workwear Store, 🄵🅅 Clothes: Workwear",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tshirt.svg"
+ },
+ {
+ "key": "clothes",
+ "value": "wedding",
+ "description": "🄿 Wedding Clothes Store, 🄵🅅 Clothes: Wedding Clothing",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gown.svg"
+ },
+ {
+ "key": "clothes",
+ "value": "underwear",
+ "description": "🄿 Underwear Store, 🄵🅅 Clothes: Underwear",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bikini.svg"
+ },
+ {
+ "key": "clothes",
+ "value": "suits",
+ "description": "🄿 Suits Store, 🄵🅅 Clothes: Suits",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tshirt.svg"
+ },
+ {
+ "key": "second_hand",
+ "value": "only",
+ "description": "🄿 Secondhand Clothing Store, 🄿 Used Car Dealership, 🄵🅅 Sells Used: Only",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tshirt.svg"
+ },
+ {
+ "key": "beauty",
+ "value": "tanning",
+ "description": "🄿 Tanning Salon, 🄵🅅 Services: Tanning",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tanning.svg"
+ },
+ {
+ "key": "beauty",
+ "value": "nails",
+ "description": "🄿 Nail Salon, 🄵🅅 Services: Manicure / Pedicure",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/polished_nail.svg"
+ },
+ {
+ "key": "seamark:type",
+ "value": "mooring",
+ "description": "🄿 Mooring",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horn_cleat.svg"
+ },
+ {
+ "key": "seamark:type",
+ "value": "buoy_lateral",
+ "description": "🄿 Channel Buoy",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/buoy.svg"
+ },
+ {
+ "key": "seamark:type",
+ "value": "beacon_lateral",
+ "description": "🄿 Channel Beacon",
+ "object_types": [
+ "node"
+ ]
+ },
+ {
+ "key": "seamark:type",
+ "value": "beacon_isolated_danger",
+ "description": "🄿 Danger Beacon",
+ "object_types": [
+ "node"
+ ]
+ },
+ {
+ "key": "seamark:buoy_lateral:colour",
+ "value": "red",
+ "description": "🄿 Red Buoy, 🄵🅅 Color: Red",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/buoy.svg"
+ },
+ {
+ "key": "seamark:buoy_lateral:colour",
+ "value": "green",
+ "description": "🄿 Green Buoy, 🄵🅅 Color: Green",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/buoy.svg"
+ },
+ {
+ "key": "roller_coaster",
+ "value": "track",
+ "description": "🄿 Roller Coaster Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/roller_coaster.svg"
+ },
+ {
+ "key": "roller_coaster",
+ "value": "support",
+ "description": "🄿 Roller Coaster Support",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "roller_coaster",
+ "value": "station",
+ "description": "🄿 Roller Coaster Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/roller_coaster.svg"
+ },
+ {
+ "key": "railway",
+ "value": "yard",
+ "description": "🄿 Rail Yard",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/freight_car.svg"
+ },
+ {
+ "key": "railway",
+ "value": "turntable",
+ "description": "🄿 Railway Turntable",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked.svg"
+ },
+ {
+ "key": "railway",
+ "value": "tram_level_crossing",
+ "description": "🄿 Tram-Road Crossing",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/crossing_tram_solid.svg"
+ },
+ {
+ "key": "railway",
+ "value": "tram_crossing",
+ "description": "🄿 Tram-Path Crossing",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/crossing_tram_striped.svg"
+ },
+ {
+ "key": "railway",
+ "value": "tram",
+ "description": "🄿 Tram Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tram.svg"
+ },
+ {
+ "key": "railway",
+ "value": "wash",
+ "description": "🄿 Train Wash",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train_wash.svg"
+ },
+ {
+ "key": "railway",
+ "value": "switch",
+ "description": "🄿 Railway Switch",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/junction.svg"
+ },
+ {
+ "key": "railway",
+ "value": "subway_entrance",
+ "description": "🄿 Subway Entrance",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance.svg"
+ },
+ {
+ "key": "railway",
+ "value": "subway",
+ "description": "🄿 Subway Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/subway.svg"
+ },
+ {
+ "key": "railway",
+ "value": "signal",
+ "description": "🄿 Railway Signal",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_signals.svg"
+ },
+ {
+ "key": "railway",
+ "value": "railway_crossing",
+ "description": "🄿 Railway-Railway Crossing",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/x_oblique.svg"
+ },
+ {
+ "key": "railway",
+ "value": "rail",
+ "description": "🄿 Train Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track.svg"
+ },
+ {
+ "key": "railway:preserved",
+ "value": "yes",
+ "description": "🄿 Heritage Railway Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train_steam.svg"
+ },
+ {
+ "key": "railway",
+ "value": "narrow_gauge",
+ "description": "🄿 Narrow Gauge Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track_narrow.svg"
+ },
+ {
+ "key": "railway",
+ "value": "monorail",
+ "description": "🄿 Monorail Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/monorail.svg"
+ },
+ {
+ "key": "railway",
+ "value": "miniature",
+ "description": "🄿 Miniature Train Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track_mini.svg"
+ },
+ {
+ "key": "railway",
+ "value": "milestone",
+ "description": "🄿 Railway Milestone",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/milestone.svg"
+ },
+ {
+ "key": "railway",
+ "value": "light_rail",
+ "description": "🄿 Light Rail Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/light_rail.svg"
+ },
+ {
+ "key": "railway",
+ "value": "level_crossing",
+ "description": "🄿 Railway-Road Crossing",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cross.svg"
+ },
+ {
+ "key": "railway",
+ "value": "funicular",
+ "description": "🄿 Funicular Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_cable_track.svg"
+ },
+ {
+ "key": "railway",
+ "value": "disused",
+ "description": "🄿 Disused Railway",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track.svg"
+ },
+ {
+ "key": "railway",
+ "value": "derail",
+ "description": "🄿 Railway Derailer",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"
+ },
+ {
+ "key": "railway",
+ "value": "crossing",
+ "description": "🄿 Railway-Path Crossing",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "railway",
+ "value": "construction",
+ "description": "🄿 Railway Under Construction",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track_partial.svg"
+ },
+ {
+ "key": "railway",
+ "value": "buffer_stop",
+ "description": "🄿 Buffer Stop",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/buffer_stop.svg"
+ },
+ {
+ "key": "railway",
+ "value": "abandoned",
+ "description": "🄿 Abandoned Railway",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track_askew.svg"
+ },
+ {
+ "key": "railway",
+ "value": "tram_stop",
+ "description": "🄿 Tram Stopping Position (unsearchable), 🄳 (deprecated tag) ➜ railway=tram_stop + public_transport=stop_position + tram=yes",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tram.svg"
+ },
+ {
+ "key": "railway",
+ "value": "station",
+ "description": "🄿 Train Station (unsearchable), 🄳 (deprecated tag) ➜ railway=station + public_transport=station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/board_train.svg"
+ },
+ {
+ "key": "railway",
+ "value": "platform",
+ "description": "🄿 Train Platform (unsearchable), 🄳 (deprecated tag) ➜ railway=platform + public_transport=platform",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/board_train.svg"
+ },
+ {
+ "key": "railway",
+ "value": "halt",
+ "description": "🄿 Train Station (Halt / Request) (unsearchable), 🄿 Train Station (Halt / Request)",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rail_flag.svg"
+ },
+ {
+ "key": "highspeed",
+ "value": "yes",
+ "description": "🄿 High-Speed Train Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train_bullet.svg"
+ },
+ {
+ "key": "monorail",
+ "value": "hanging",
+ "description": "🄿 Hanging Monorail Track",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hanging_rail.svg"
+ },
+ {
+ "key": "trolleybus",
+ "value": "yes",
+ "description": "🄿 Trolleybus Stopping Location, 🄿 Trolleybus Station / Terminal, 🄿 Trolleybus Stop, 🄿 Trolleybus Platform",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/trolleybus.svg"
+ },
+ {
+ "key": "tram",
+ "value": "yes",
+ "description": "🄿 Tram Stopping Location, 🄿 Tram Station, 🄿 Tram Stop / Platform, 🄿 Tram Platform, 🄿 Tram & Bus Stop",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tram.svg"
+ },
+ {
+ "key": "train",
+ "value": "yes",
+ "description": "🄿 Train Stopping Location, 🄿 Train Station, 🄿 Train Platform, 🄿 Train Stop / Platform (unsearchable)",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train.svg"
+ },
+ {
+ "key": "subway",
+ "value": "yes",
+ "description": "🄿 Subway Stopping Location, 🄿 Subway Station, 🄿 Subway Platform, 🄿 Subway Stop / Platform (unsearchable)",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/subway.svg"
+ },
+ {
+ "key": "monorail",
+ "value": "yes",
+ "description": "🄿 Monorail Stopping Location, 🄿 Monorail Station, 🄿 Monorail Platform, 🄿 Monorail Stop / Platform (unsearchable)",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/monorail.svg"
+ },
+ {
+ "key": "light_rail",
+ "value": "yes",
+ "description": "🄿 Light Rail Stopping Location, 🄿 Light Rail Station, 🄿 Light Rail Platform, 🄿 Light Rail Stop / Platform (unsearchable)",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/light_rail.svg"
+ },
+ {
+ "key": "ferry",
+ "value": "yes",
+ "description": "🄿 Ferry Stopping Location, 🄿 Ferry Terminal, 🄿 Ferry Platform, 🄿 Ferry Stop / Platform (unsearchable)",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ferry.svg"
+ },
+ {
+ "key": "bus",
+ "value": "yes",
+ "description": "🄿 Bus Stopping Location, 🄿 Bus Station / Terminal, 🄿 Bus Stop, 🄿 Bus Platform",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "yes",
+ "description": "🄿 Aerialway Stopping Location, 🄿 Aerialway Platform, 🄿 Aerialway Stop / Platform (unsearchable)",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gondola_lift.svg"
+ },
+ {
+ "key": "public_transport",
+ "value": "stop_position",
+ "description": "🄿 Transit Stopping Location",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/transit.svg"
+ },
+ {
+ "key": "public_transport",
+ "value": "stop_area",
+ "description": "🄿 Transit Stop Area",
+ "object_types": [
+ "relation"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "station",
+ "description": "🄿 Aerialway Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gondola_lift.svg"
+ },
+ {
+ "key": "public_transport",
+ "value": "station",
+ "description": "🄿 Transit Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/transit.svg"
+ },
+ {
+ "key": "public_transport",
+ "value": "platform",
+ "description": "🄿 Transit Stop / Platform, 🄿 Transit Platform",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sign_and_bench.svg"
+ },
+ {
+ "key": "power",
+ "value": "transformer",
+ "description": "🄿 Transformer",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_transformer.svg"
+ },
+ {
+ "key": "power",
+ "value": "tower",
+ "description": "🄿 High-Voltage Tower",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_tower.svg"
+ },
+ {
+ "key": "power",
+ "value": "switchgear",
+ "description": "🄿 Switchgear",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_switch.svg"
+ },
+ {
+ "key": "power",
+ "value": "switch",
+ "description": "🄿 Power Switch",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_switch.svg"
+ },
+ {
+ "key": "power",
+ "value": "substation",
+ "description": "🄿 Substation",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"
+ },
+ {
+ "key": "power",
+ "value": "portal",
+ "description": "🄿 Anchor Portal",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"
+ },
+ {
+ "key": "power",
+ "value": "pole",
+ "description": "🄿 Power Pole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_pole.svg"
+ },
+ {
+ "key": "power",
+ "value": "plant",
+ "description": "🄿 Power Station Grounds",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"
+ },
+ {
+ "key": "power",
+ "value": "minor_line",
+ "description": "🄿 Minor Power Line",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/power-line.svg"
+ },
+ {
+ "key": "power",
+ "value": "line",
+ "description": "🄿 Power Line",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_tower.svg"
+ },
+ {
+ "key": "power",
+ "value": "generator",
+ "description": "🄿 Power Generator",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"
+ },
+ {
+ "key": "power",
+ "value": "catenary_mast",
+ "description": "🄿 Catenary Pole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_pole.svg"
+ },
+ {
+ "key": "power",
+ "value": "cable",
+ "description": "🄿 Power Cable (unsearchable)",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cable.svg"
+ },
+ {
+ "key": "plant:source",
+ "value": "wind",
+ "description": "🄿 Wind Farm",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wind_turbine.svg"
+ },
+ {
+ "key": "plant:source",
+ "value": "waste",
+ "description": "🄿 Waste Incineration Power Plant",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumpster-fire.svg"
+ },
+ {
+ "key": "plant:source",
+ "value": "solar",
+ "description": "🄿 Solar Power Plant",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"
+ },
+ {
+ "key": "plant:source",
+ "value": "oil",
+ "description": "🄿 Oil-Fired Power Plant",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tint.svg"
+ },
+ {
+ "key": "plant:source",
+ "value": "nuclear",
+ "description": "🄿 Nuclear Power Plant",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/radiation.svg"
+ },
+ {
+ "key": "plant:source",
+ "value": "hydro",
+ "description": "🄿 Hydroelectric Power Station",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam.svg"
+ },
+ {
+ "key": "plant:source",
+ "value": "gas",
+ "description": "🄿 Gas-Fired Power Plant",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gas.svg"
+ },
+ {
+ "key": "plant:source",
+ "value": "coal",
+ "description": "🄿 Coal-Fired Power Plant",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"
+ },
+ {
+ "key": "plant:method",
+ "value": "photovoltaic",
+ "description": "🄿 Solar Farm, 🄵🅅 Generation Method: Photovoltaic",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"
+ },
+ {
+ "key": "generator:source",
+ "value": "wind",
+ "description": "🄿 Wind Turbine, 🄵🅅 Source: Wind",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wind_turbine.svg"
+ },
+ {
+ "key": "generator:method",
+ "value": "fission",
+ "description": "🄿 Nuclear Reactor, 🄵🅅 Method: Fission",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/radiation.svg"
+ },
+ {
+ "key": "generator:source",
+ "value": "hydro",
+ "description": "🄿 Water Turbine, 🄵🅅 Source: Hydropower",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"
+ },
+ {
+ "key": "generator:method",
+ "value": "photovoltaic",
+ "description": "🄿 Solar Panel, 🄵🅅 Method: Photovoltaic",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"
+ },
+ {
+ "key": "location",
+ "value": "roof",
+ "description": "🄿 Rooftop Solar Panel, 🄵🅅 Location: Rooftop",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"
+ },
+ {
+ "key": "building",
+ "value": "roof",
+ "description": "🄿 Solar Panel Canopy, 🄿 Roof, 🄵🅅 Building: Roof",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"
+ },
+ {
+ "key": "location",
+ "value": "underground",
+ "description": "🄿 Underground Power Cable, 🄿 Underground Pipeline",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cable.svg"
+ },
+ {
+ "key": "police",
+ "value": "checkpoint",
+ "description": "🄿 Police Checkpoint",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military_checkpoint.svg"
+ },
+ {
+ "key": "playground",
+ "value": "zipwire",
+ "description": "🄿 Play Zip Line, 🄵🅅 Type: Zipline / Zipwire",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
+ },
+ {
+ "key": "playground",
+ "value": "water",
+ "description": "🄿 Play Water Pump/Screw, 🄵🅅 Type: Water Device (unspecified)",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/water.svg"
+ },
+ {
+ "key": "playground",
+ "value": "tunnel_tube",
+ "description": "🄿 Play Tunnel, 🄵🅅 Type: Tunnel Tube",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
+ },
+ {
+ "key": "playground",
+ "value": "trampoline",
+ "description": "🄿 Trampoline, 🄵🅅 Type: Trampoline",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
+ },
+ {
+ "key": "playground",
+ "value": "tetherball",
+ "description": "🄿 Tetherball Pole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
+ },
+ {
+ "key": "playground",
+ "value": "teenshelter",
+ "description": "🄿 Teen Shelter, 🄵🅅 Type: Teen Shelter",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter.svg"
+ },
+ {
+ "key": "playground",
+ "value": "swing",
+ "description": "🄿 Swing, 🄵🅅 Type: Swing",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
+ },
+ {
+ "key": "playground",
+ "value": "structure",
+ "description": "🄿 Play Structure, 🄵🅅 Type: Playground Structure",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/play_structure.svg"
+ },
+ {
+ "key": "playground",
+ "value": "springy",
+ "description": "🄿 Spring Rider, 🄵🅅 Type: Spring Rider",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/spring_rider.svg"
+ },
+ {
+ "key": "playground",
+ "value": "splash_pad",
+ "description": "🄿 Play Splash Pad, 🄵🅅 Type: Splash Pad",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fountain.svg"
+ },
+ {
+ "key": "playground",
+ "value": "slide",
+ "description": "🄿 Slide, 🄵🅅 Type: Slide",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ]
+ },
+ {
+ "key": "playground",
+ "value": "sledding",
+ "description": "🄿 Play Sledding Hill, 🄵🅅 Type: Sledding Hill",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sledding.svg"
+ },
+ {
+ "key": "playground",
+ "value": "seesaw",
+ "description": "🄿 Seesaw, 🄵🅅 Type: Seesaw",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/seesaw.svg"
+ },
+ {
+ "key": "playground",
+ "value": "sandpit",
+ "description": "🄿 Play Sandbox, 🄵🅅 Type: Sandbox / Sandpit",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sandbox.svg"
+ },
+ {
+ "key": "playground",
"value": "roundabout",
- "description": "🄵🅅 Junction: Roundabout"
+ "description": "🄿 Play Roundabout, 🄵🅅 Type: Merry-Go-Round / Roundabout",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/stadium.svg"
},
{
- "key": "junction",
- "value": "circular",
- "description": "🄵🅅 Junction: Traffic Circle"
+ "key": "playground",
+ "value": "playhouse",
+ "description": "🄿 Play House, 🄵🅅 Type: Playhouse",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/play_structure.svg"
},
{
- "key": "junction",
- "value": "jughandle",
- "description": "🄵🅅 Junction: Jughandle"
+ "key": "playground",
+ "value": "map",
+ "description": "🄿 Painted Playground Map, 🄵🅅 Type: Map",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/compass.svg"
},
{
- "key": "junction:ref",
- "description": "🄵 Junction Number"
+ "key": "playground",
+ "value": "horizontal_bar",
+ "description": "🄿 Play Horizontal Bar, 🄵🅅 Type: Horizontal Bar",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horizontal_bar.svg"
},
{
- "key": "kerb",
- "description": "🄵 Curb"
+ "key": "playground",
+ "value": "hopscotch",
+ "description": "🄿 Hopscotch, 🄵🅅 Type: Hopscotch",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ]
},
{
- "key": "kerb:height",
- "description": "🄵 Height"
+ "key": "playground",
+ "value": "funnel_ball",
+ "description": "🄿 Funnel Ball Funnel, 🄵🅅 Type: Funnel Ball",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
},
{
- "key": "kitchen",
- "description": "🄵 Kitchen"
+ "key": "playground",
+ "value": "cushion",
+ "description": "🄿 Bouncy Cushion, 🄵🅅 Type: Bouncy Cushion",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
},
{
- "key": "kneipp_water_cure:",
- "description": "🄵 Basin Types"
+ "key": "playground",
+ "value": "climbingwall",
+ "description": "🄿 Play Climbing Wall, 🄵🅅 Type: Climbing Wall",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
},
{
- "key": "label",
- "description": "🄵 Label"
+ "key": "playground",
+ "value": "climbingframe",
+ "description": "🄿 Play Climbing Frame, 🄵🅅 Type: Climbing Frame",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
},
{
- "key": "lamp_mount",
- "description": "🄵 Mount"
+ "key": "playground",
+ "value": "bridge",
+ "description": "🄿 Play Bridge, 🄵🅅 Type: Bridge",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
},
{
- "key": "lamp_type",
- "description": "🄵 Type"
+ "key": "playground",
+ "value": "basketswing",
+ "description": "🄿 Basket Swing, 🄵🅅 Type: Basket Swing",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
},
{
- "key": "lane_markings",
- "description": "🄵 Lane Markings"
+ "key": "playground",
+ "value": "basketrotator",
+ "description": "🄿 Basket Spinner, 🄵🅅 Type: Basket Rotator",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
},
{
- "key": "lanes",
- "description": "🄵 Lanes"
+ "key": "playground",
+ "value": "balancebeam",
+ "description": "🄿 Play Balance Beam, 🄵🅅 Type: Balance Beam",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/balance_beam.svg"
},
{
- "key": "language:",
- "description": "🄵 Languages"
+ "key": "playground",
+ "value": "aerialrotator",
+ "description": "🄿 Hanging Spinner, 🄵🅅 Type: Aerial Rotator",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
},
{
- "key": "layer",
- "description": "🄵 Layer"
+ "key": "playground",
+ "value": "activitypanel",
+ "description": "🄿 Play Activity Panel, 🄵🅅 Type: Activity Panel",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
},
{
- "key": "leaf_cycle",
- "description": "🄵 Leaf Cycle"
+ "key": "place",
+ "value": "village",
+ "description": "🄿 Village",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/village.svg"
},
{
- "key": "leaf_cycle",
- "value": "evergreen",
- "description": "🄵🅅 Leaf Cycle: Evergreen"
+ "key": "place",
+ "value": "town",
+ "description": "🄿 Town",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town.svg"
},
{
- "key": "leaf_cycle",
- "value": "deciduous",
- "description": "🄵🅅 Leaf Cycle: Deciduous"
+ "key": "place",
+ "value": "suburb",
+ "description": "🄿 Borough / Suburb",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"
},
{
- "key": "leaf_cycle",
- "value": "semi_evergreen",
- "description": "🄵🅅 Leaf Cycle: Semi-Evergreen"
+ "key": "place",
+ "value": "square",
+ "description": "🄿 Square",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/marker-stroked.svg"
},
{
- "key": "leaf_cycle",
- "value": "semi_deciduous",
- "description": "🄵🅅 Leaf Cycle: Semi-Deciduous"
+ "key": "place",
+ "value": "quarter",
+ "description": "🄿 Sub-Borough / Quarter",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"
},
{
- "key": "leaf_cycle",
- "value": "mixed",
- "description": "🄵🅅 Leaf Cycle: Mixed"
+ "key": "place",
+ "value": "plot",
+ "description": "🄿 Plot",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"
},
{
- "key": "leaf_type",
- "description": "🄵 Leaf Type"
+ "key": "place",
+ "value": "neighbourhood",
+ "description": "🄿 Neighborhood",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"
},
{
- "key": "leaf_type",
- "value": "broadleaved",
- "description": "🄵🅅 Leaf Type: `broadleaved`, 🄵🅅 Leaf Type: Broadleaved"
+ "key": "place",
+ "value": "locality",
+ "description": "🄿 Locality",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"
+ },
+ {
+ "key": "place",
+ "value": "isolated_dwelling",
+ "description": "🄿 Isolated Dwelling",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"
+ },
+ {
+ "key": "place",
+ "value": "islet",
+ "description": "🄿 Islet",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/islet_tree.svg"
+ },
+ {
+ "key": "place",
+ "value": "island",
+ "description": "🄿 Island",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/island_trees_building.svg"
+ },
+ {
+ "key": "place",
+ "value": "hamlet",
+ "description": "🄿 Hamlet",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"
+ },
+ {
+ "key": "place",
+ "value": "city_block",
+ "description": "🄿 City Block",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"
+ },
+ {
+ "key": "place",
+ "value": "city",
+ "description": "🄿 City",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/city.svg"
+ },
+ {
+ "key": "place",
+ "value": "farm",
+ "description": "🄿 Farm (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"
+ },
+ {
+ "key": "piste:takeoff",
+ "value": "yes",
+ "description": "🄿 Ski Jumping Take-Off",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ski_jumping.svg"
+ },
+ {
+ "key": "piste:type",
+ "value": "sleigh",
+ "description": "🄿 Sleigh Trail, 🄵🅅 Type: Sleigh",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-sleigh.svg"
+ },
+ {
+ "key": "piste:type",
+ "value": "sled",
+ "description": "🄿 Sled Run, 🄵🅅 Type: Sled",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sledding.svg"
+ },
+ {
+ "key": "piste:type",
+ "value": "skitour",
+ "description": "🄿 Ski Touring Trail, 🄵🅅 Type: Skitour",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing-nordic.svg"
+ },
+ {
+ "key": "piste:type",
+ "value": "ski_jump",
+ "description": "🄿 Ski Jumping Piste, 🄵🅅 Type: Ski Jump",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ski_jumping.svg"
+ },
+ {
+ "key": "piste:type",
+ "value": "nordic",
+ "description": "🄿 Cross-Country Ski Trail, 🄵🅅 Type: Nordic",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing-nordic.svg"
+ },
+ {
+ "key": "piste:type",
+ "value": "ice_skate",
+ "description": "🄿 Ice Skating Trail, 🄵🅅 Type: Ice Skate",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skating.svg"
+ },
+ {
+ "key": "piste:type",
+ "value": "hike",
+ "description": "🄿 Snowshoeing / Winter Hiking Trail, 🄵🅅 Type: Hike",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/snow_shoeing.svg"
+ },
+ {
+ "key": "piste:type",
+ "value": "downhill",
+ "description": "🄿 Downhill Ski Run, 🄵🅅 Type: Downhill",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"
+ },
+ {
+ "key": "piste:type",
+ "description": "🄿 Snowsports Trail / Piste (Unspecified Type) (unsearchable), 🄵 Type",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "piste:halfpipe",
+ "description": "🄿 Snowsports Half-Pipe",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-snowboarding.svg"
+ },
+ {
+ "key": "pipeline",
+ "value": "valve",
+ "description": "🄿 Pipeline Valve",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wheel.svg"
+ },
+ {
+ "key": "pipeline",
+ "value": "substation",
+ "description": "🄿 Pipeline Substation",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/powered_pump.svg"
+ },
+ {
+ "key": "office",
+ "value": "water_utility",
+ "description": "🄿 Water Utility Office, 🄵🅅 Type: Water Utility Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "union",
+ "description": "🄿 Labor Union Office, 🄵🅅 Type: Labor Union Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "translator",
+ "description": "🄿 Translation Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-language.svg"
+ },
+ {
+ "key": "office",
+ "value": "therapist",
+ "description": "🄿 Therapist Office, 🄵🅅 Type: Therapist Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "telecommunication",
+ "description": "🄿 Telecom Office, 🄵🅅 Type: Telecom Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/telephone.svg"
+ },
+ {
+ "key": "office",
+ "value": "tax_advisor",
+ "description": "🄿 Tax Advisor Office, 🄵🅅 Type: Tax Advisor Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "surveyor",
+ "description": "🄿 Surveyor Office, 🄵🅅 Type: Surveyor Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vest.svg"
+ },
+ {
+ "key": "office",
+ "value": "security",
+ "description": "🄿 Security Office, 🄵🅅 Type: Security Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/briefcase_shield.svg"
+ },
+ {
+ "key": "office",
+ "value": "research",
+ "description": "🄿 Research Office, 🄵🅅 Type: Research Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flask.svg"
+ },
+ {
+ "key": "office",
+ "value": "religion",
+ "description": "🄿 Religious Office, 🄵🅅 Type: Religious Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "quango",
+ "description": "🄿 Quasi-NGO Office, 🄵🅅 Type: Quasi-NGO Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "property_management",
+ "description": "🄿 Property Management / Leasing Office, 🄵🅅 Type: Property Management Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "private_investigator",
+ "description": "🄿 Private Investigator Office, 🄵🅅 Type: Private Investigator Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-secret.svg"
+ },
+ {
+ "key": "office",
+ "value": "political_party",
+ "description": "🄿 Political Party Office, 🄵🅅 Type: Political Party Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"
+ },
+ {
+ "key": "office",
+ "value": "notary",
+ "description": "🄿 Notary Office, 🄵🅅 Type: Notary Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-stamp.svg"
+ },
+ {
+ "key": "office",
+ "value": "ngo",
+ "description": "🄿 NGO Office, 🄵🅅 Type: NGO Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "newspaper",
+ "description": "🄿 Newspaper Office, 🄵🅅 Type: Newspaper Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-newspaper.svg"
+ },
+ {
+ "key": "office",
+ "value": "moving_company",
+ "description": "🄿 Moving Company Office, 🄵🅅 Type: Moving Company Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-people-carry.svg"
+ },
+ {
+ "key": "office",
+ "value": "lawyer",
+ "description": "🄿 Law Office, 🄵🅅 Type: Law Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-balance-scale.svg"
+ },
+ {
+ "key": "office",
+ "value": "it",
+ "description": "🄿 Information Technology Office, 🄵🅅 Type: Information Technology Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "insurance",
+ "description": "🄿 Insurance Office, 🄵🅅 Type: Insurance Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/briefcase_shield.svg"
+ },
+ {
+ "key": "office",
+ "value": "guide",
+ "description": "🄿 Tour Guide Office, 🄵🅅 Type: Tour Guide Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "graphic_design",
+ "description": "🄿 Graphic Design Office, 🄵🅅 Type: Graphic Design Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "government",
+ "description": "🄿 Government Office, 🄵🅅 Type: Government Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/town_hall.svg"
+ },
+ {
+ "key": "office",
+ "value": "foundation",
+ "description": "🄿 Foundation Office, 🄵🅅 Type: Foundation Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "forestry",
+ "description": "🄿 Forestry Office, 🄵🅅 Type: Forestry Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "financial_advisor",
+ "description": "🄿 Financial Advisor, 🄵🅅 Type: Financial Advisor",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "financial",
+ "description": "🄿 Financial Office, 🄵🅅 Type: Financial Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "estate_agent",
+ "description": "🄿 Real Estate Office, 🄵🅅 Type: Real Estate Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/real_estate_agency.svg"
+ },
+ {
+ "key": "office",
+ "value": "engineer",
+ "description": "🄿 Engineering Office, 🄵🅅 Type: Engineering Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pen-ruler.svg"
+ },
+ {
+ "key": "office",
+ "value": "energy_supplier",
+ "description": "🄿 Energy Supplier Office, 🄵🅅 Type: Energy Supplier Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/briefcase_bolt.svg"
+ },
+ {
+ "key": "office",
+ "value": "employment_agency",
+ "description": "🄿 Employment Agency, 🄵🅅 Type: Employment Agency",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "educational_institution",
+ "description": "🄿 Educational Institution, 🄵🅅 Type: Educational Institution",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/school.svg"
+ },
+ {
+ "key": "office",
+ "value": "diplomatic",
+ "description": "🄿 Diplomatic Office, 🄵🅅 Type: Diplomatic Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/embassy.svg"
+ },
+ {
+ "key": "office",
+ "value": "coworking",
+ "description": "🄿 Coworking Space, 🄵🅅 Type: Coworking Space",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "consulting",
+ "description": "🄿 Consultancy Office, 🄵🅅 Type: Consultancy Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "company",
+ "description": "🄿 Corporate Office, 🄵🅅 Type: Corporate Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "charity",
+ "description": "🄿 Charity Office, 🄵🅅 Type: Charity Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "bail_bond_agent",
+ "description": "🄿 Bail Bond Agent",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank.svg"
+ },
+ {
+ "key": "office",
+ "value": "association",
+ "description": "🄿 Nonprofit Organization Office, 🄵🅅 Type: Nonprofit Organization Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "architect",
+ "description": "🄿 Architect Office, 🄵🅅 Type: Architect Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-drafting-compass.svg"
+ },
+ {
+ "key": "office",
+ "value": "advertising_agency",
+ "description": "🄿 Advertising Agency, 🄵🅅 Type: Advertising Agency",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "adoption_agency",
+ "description": "🄿 Adoption Agency, 🄵🅅 Type: Adoption Agency",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "accountant",
+ "description": "🄿 Accountant Office, 🄵🅅 Type: Accountant Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/accounting.svg"
+ },
+ {
+ "key": "office",
+ "value": "yes",
+ "description": "🄿 Office (Unspecified Type) (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "travel_agent",
+ "description": "🄿 Travel Agency (unsearchable), 🄵🅅 Type: Travel Agency",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "physician",
+ "description": "🄿 Physician (unsearchable), 🄵🅅 Type: Physician",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "office",
+ "value": "administrative",
+ "description": "🄿 Administrative Office (unsearchable), 🄳 (deprecated tag) ➜ office=government",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "lawyer",
+ "value": "notary",
+ "description": "🄿 Notary Office (unsearchable), 🄳 (deprecated tag) ➜ office=notary",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "government",
+ "value": "tax",
+ "description": "🄿 Tax and Revenue Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/town_hall.svg"
+ },
+ {
+ "key": "government",
+ "value": "register_office",
+ "description": "🄿 Register Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/town_hall.svg"
+ },
+ {
+ "key": "government",
+ "value": "prosecutor",
+ "description": "🄿 Public Prosecutor's Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "diplomatic",
+ "value": "liaison",
+ "description": "🄿 Liaison Office, 🄵🅅 Type: Liaison Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/embassy.svg"
+ },
+ {
+ "key": "diplomatic",
+ "value": "embassy",
+ "description": "🄿 Embassy, 🄵🅅 Type: Embassy",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/embassy.svg"
+ },
+ {
+ "key": "diplomatic",
+ "value": "consulate",
+ "description": "🄿 Consulate, 🄵🅅 Type: Consulate",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/embassy.svg"
+ },
+ {
+ "key": "noexit",
+ "value": "yes",
+ "description": "🄿 No Exit",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/barrier.svg"
+ },
+ {
+ "key": "network:type",
+ "value": "node_network",
+ "description": "🄿 Recreational Network Node",
+ "object_types": [
+ "node"
+ ]
+ },
+ {
+ "key": "natural",
+ "value": "wood",
+ "description": "🄿 Natural Wood, 🄿 Natural Wood (unsearchable)",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-alt1.svg"
+ },
+ {
+ "key": "natural",
+ "value": "wetland",
+ "description": "🄿 Wetland",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"
+ },
+ {
+ "key": "natural",
+ "value": "water",
+ "description": "🄿 Water",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "natural",
+ "value": "volcano",
+ "description": "🄿 Volcano",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volcano.svg"
+ },
+ {
+ "key": "natural",
+ "value": "valley",
+ "description": "🄿 Valley",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/valley.svg"
+ },
+ {
+ "key": "natural",
+ "value": "tree_stump",
+ "description": "🄿 Tree Stump",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tree_stump.svg"
+ },
+ {
+ "key": "natural",
+ "value": "tree_row",
+ "description": "🄿 Tree Row",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tree_row.svg"
+ },
+ {
+ "key": "natural",
+ "value": "tree",
+ "description": "🄿 Tree",
+ "object_types": [
+ "node"
+ ]
+ },
+ {
+ "key": "natural",
+ "value": "strait",
+ "description": "🄿 Strait",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"
+ },
+ {
+ "key": "natural",
+ "value": "stone",
+ "description": "🄿 Unattached Stone / Boulder",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boulder1.svg"
+ },
+ {
+ "key": "natural",
+ "value": "spring",
+ "description": "🄿 Spring",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "natural",
+ "value": "sinkhole",
+ "description": "🄿 Sinkhole",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/trench.svg"
+ },
+ {
+ "key": "natural",
+ "value": "shrub",
+ "description": "🄿 Shrub",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shrub.svg"
+ },
+ {
+ "key": "natural",
+ "value": "shingle",
+ "description": "🄿 Shingle",
+ "object_types": [
+ "area"
+ ]
+ },
+ {
+ "key": "natural",
+ "value": "scrub",
+ "description": "🄿 Scrub",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shrub.svg"
+ },
+ {
+ "key": "natural",
+ "value": "scree",
+ "description": "🄿 Scree",
+ "object_types": [
+ "area"
+ ]
+ },
+ {
+ "key": "natural",
+ "value": "sand",
+ "description": "🄿 Sand",
+ "object_types": [
+ "area"
+ ]
+ },
+ {
+ "key": "natural",
+ "value": "saddle",
+ "description": "🄿 Saddle",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/saddle.svg"
+ },
+ {
+ "key": "natural",
+ "value": "rock",
+ "description": "🄿 Attached Rock / Boulder",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boulder2.svg"
+ },
+ {
+ "key": "natural",
+ "value": "ridge",
+ "description": "🄿 Ridge",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mountain_range.svg"
+ },
+ {
+ "key": "natural",
+ "value": "reef",
+ "description": "🄿 Reef",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/coral_reef.svg"
+ },
+ {
+ "key": "natural",
+ "value": "peninsula",
+ "description": "🄿 Peninsula",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cape_landform.svg"
+ },
+ {
+ "key": "natural",
+ "value": "peak",
+ "description": "🄿 Peak",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/mountain.svg"
+ },
+ {
+ "key": "natural",
+ "value": "mud",
+ "description": "🄿 Mud",
+ "object_types": [
+ "area"
+ ]
+ },
+ {
+ "key": "natural",
+ "value": "hot_spring",
+ "description": "🄿 Hot Spring",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hot-spring.svg"
+ },
+ {
+ "key": "natural",
+ "value": "heath",
+ "description": "🄿 Heath",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shrub_low.svg"
+ },
+ {
+ "key": "natural",
+ "value": "grassland",
+ "description": "🄿 Grassland",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/grass.svg"
+ },
+ {
+ "key": "natural",
+ "value": "glacier",
+ "description": "🄿 Glacier",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/snow.svg"
+ },
+ {
+ "key": "natural",
+ "value": "geyser",
+ "description": "🄿 Geyser",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "natural",
+ "value": "fell",
+ "description": "🄿 Fell",
+ "object_types": [
+ "area"
+ ]
+ },
+ {
+ "key": "natural",
+ "value": "coastline",
+ "description": "🄿 Coastline",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/beach.svg"
+ },
+ {
+ "key": "natural",
+ "value": "cliff",
+ "description": "🄿 Cliff",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cliff_falling_rocks.svg"
+ },
+ {
+ "key": "natural",
+ "value": "cave_entrance",
+ "description": "🄿 Cave Entrance",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle.svg"
+ },
+ {
+ "key": "natural",
+ "value": "cape",
+ "description": "🄿 Cape",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cape_landform.svg"
+ },
+ {
+ "key": "natural",
+ "value": "beach",
+ "description": "🄿 Beach",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/beach.svg"
+ },
+ {
+ "key": "natural",
+ "value": "bay",
+ "description": "🄿 Bay",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/beach.svg"
+ },
+ {
+ "key": "natural",
+ "value": "bare_rock",
+ "description": "🄿 Bare Rock",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boulder3.svg"
+ },
+ {
+ "key": "natural",
+ "value": "arch",
+ "description": "🄿 Natural Arch",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/natural_arch.svg"
+ },
+ {
+ "key": "wetland",
+ "value": "wet_meadow",
+ "description": "🄿 Wet Meadow, 🄵🅅 Type: Wet Meadow",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"
+ },
+ {
+ "key": "wetland",
+ "value": "tidalflat",
+ "description": "🄿 Tidal Flat, 🄵🅅 Type: Tidal Flat",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"
+ },
+ {
+ "key": "wetland",
+ "value": "swamp",
+ "description": "🄿 Swamp, 🄵🅅 Type: Swamp",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/swamp.svg"
+ },
+ {
+ "key": "wetland",
+ "value": "string_bog",
+ "description": "🄿 String Bog, 🄵🅅 Type: String Bog",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"
+ },
+ {
+ "key": "wetland",
+ "value": "saltmarsh",
+ "description": "🄿 Coastal Salt Marsh, 🄵🅅 Type: Coastal Salt Marsh",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"
+ },
+ {
+ "key": "wetland",
+ "value": "reedbed",
+ "description": "🄿 Reed bed, 🄵🅅 Type: Reed Bed",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"
+ },
+ {
+ "key": "wetland",
+ "value": "marsh",
+ "description": "🄿 Marsh, 🄵🅅 Type: Marsh",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"
+ },
+ {
+ "key": "wetland",
+ "value": "mangrove",
+ "description": "🄿 Mangrove, 🄵🅅 Type: Mangrove",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"
+ },
+ {
+ "key": "wetland",
+ "value": "fen",
+ "description": "🄿 Fen, 🄵🅅 Type: Fen",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"
+ },
+ {
+ "key": "wetland",
+ "value": "bog",
+ "description": "🄿 Bog, 🄵🅅 Type: Bog",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"
+ },
+ {
+ "key": "water",
+ "value": "wastewater",
+ "description": "🄿 Wastewater Basin",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste.svg"
+ },
+ {
+ "key": "water",
+ "value": "stream",
+ "description": "🄿 Stream Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"
+ },
+ {
+ "key": "water",
+ "value": "river",
+ "description": "🄿 River Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"
+ },
+ {
+ "key": "water",
+ "value": "reservoir",
+ "description": "🄿 Reservoir, 🄿 Emergency Water Reservoir",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "water",
+ "value": "pond",
+ "description": "🄿 Pond",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "water",
+ "value": "oxbow",
+ "description": "🄿 Oxbow Lake",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "water",
+ "value": "moat",
+ "description": "🄿 Moat",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "water",
+ "value": "lake",
+ "description": "🄿 Lake",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "water",
+ "value": "canal",
+ "description": "🄿 Canal Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"
+ },
+ {
+ "key": "water",
+ "value": "basin",
+ "description": "🄿 Basin",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
},
{
"key": "leaf_type",
"value": "needleleaved",
- "description": "🄵🅅 Leaf Type: `needleleaved`, 🄵🅅 Leaf Type: Needleleaved"
+ "description": "🄿 Needleleaved Tree (unsearchable), 🄵🅅 Leaf Type: Needleleaved",
+ "object_types": [
+ "node"
+ ]
},
{
"key": "leaf_type",
- "value": "leafless",
- "description": "🄵🅅 Leaf Type: `leafless`, 🄵🅅 Leaf Type: Leafless"
+ "value": "broadleaved",
+ "description": "🄿 Broadleaved Tree (unsearchable), 🄵🅅 Leaf Type: Broadleaved",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park.svg"
},
{
- "key": "leaf_type",
- "value": "mixed",
- "description": "🄵🅅 Leaf Type: Mixed"
+ "key": "leaf_cycle",
+ "value": "evergreen",
+ "description": "🄿 Needleleaved Tree (evergreen), 🄿 Broadleaved Tree (evergreen), 🄵🅅 Leaf Cycle: Evergreen",
+ "object_types": [
+ "node"
+ ]
},
{
- "key": "length",
- "description": "🄵 Length (Meters)"
+ "key": "leaf_cycle",
+ "value": "deciduous",
+ "description": "🄿 Needleleaved Tree (deciduous), 🄿 Broadleaved Tree (deciduous), 🄵🅅 Leaf Cycle: Deciduous",
+ "object_types": [
+ "node"
+ ]
},
{
- "key": "level",
- "description": "🄵 Levels, 🄵 Level"
+ "key": "military",
+ "value": "trench",
+ "description": "🄿 Military Trench",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/trench.svg"
},
{
- "key": "liaison",
- "description": "🄵 Type"
+ "key": "military",
+ "value": "office",
+ "description": "🄿 Military Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military.svg"
},
{
- "key": "license_classes",
- "description": "🄵 Classes of Driver’s License"
+ "key": "military",
+ "value": "nuclear_explosion_site",
+ "description": "🄿 Nuclear Explosion Site",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger.svg"
},
{
- "key": "lifeguard",
- "description": "🄵 Lifeguard"
+ "key": "military",
+ "value": "checkpoint",
+ "description": "🄿 Military Checkpoint",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military_checkpoint.svg"
},
{
- "key": "line_attachment",
- "description": "🄵 Line Attachment"
+ "key": "military",
+ "value": "bunker",
+ "description": "🄿 Military Bunker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bunker.svg"
},
{
- "key": "line_management",
- "description": "🄵 Line Management"
+ "key": "utility",
+ "description": "🄿 Utility Marker, 🄵 Utilities, 🄵 Utility",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/silo.svg"
},
{
- "key": "lit",
- "description": "🄵 Lit"
+ "key": "utility",
+ "value": "power",
+ "description": "🄿 Power Marker, 🄵🅅 Utility: Power",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/silo.svg"
},
{
- "key": "location",
- "description": "🄵 Location"
+ "key": "man_made",
+ "value": "works",
+ "description": "🄿 Factory",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"
},
{
- "key": "location",
- "value": "outdoor"
+ "key": "man_made",
+ "value": "windpump",
+ "description": "🄿 Windpump",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/windpump.svg"
},
{
- "key": "location",
- "value": "indoor"
+ "key": "man_made",
+ "value": "windmill",
+ "description": "🄿 Windmill",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/windmill.svg"
},
{
- "key": "lock",
- "description": "🄵 Lock"
+ "key": "man_made",
+ "value": "watermill",
+ "description": "🄿 Watermill",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watermill.svg"
},
{
- "key": "lockable",
- "description": "🄵 Lockable"
+ "key": "man_made",
+ "value": "water_works",
+ "description": "🄿 Water Works",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/powered_pump.svg"
},
{
- "key": "locked",
- "description": "🄵 Locked"
+ "key": "man_made",
+ "value": "water_well",
+ "description": "🄿 Water Well",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/well_pump_manual.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "water_tower",
+ "description": "🄿 Water Tower",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/water_tower.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "water_tap",
+ "description": "🄿 Water Tap",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/water_tap.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "wastewater_plant",
+ "description": "🄿 Wastewater Plant",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "video_wall",
+ "description": "🄿 Digital Screen",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/billboard.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "utility_pole",
+ "description": "🄿 Utility Pole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/utility_pole.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "tunnel",
+ "description": "🄿 Tunnel Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tunnel.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "tower",
+ "description": "🄿 Tower",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tower.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "telescope",
+ "description": "🄿 Telescope",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-satellite-dish.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "tailings_pond",
+ "description": "🄿 Tailings Pond",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "survey_point",
+ "description": "🄿 Survey Point",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/benchmark_disk.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "surveillance",
+ "description": "🄿 Surveillance",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/security_camera.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "street_cabinet",
+ "description": "🄿 Street Cabinet",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "storage_tank",
+ "description": "🄿 Storage Tank, 🄿 Emergency Water Tank",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_tank.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "ski_jump",
+ "description": "🄿 Ski Jumping Tower",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ski_jumping.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "silo",
+ "description": "🄿 Silo",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/silo.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "satellite_dish",
+ "description": "🄿 Satellite Dish",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-satellite-dish.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "reservoir_covered",
+ "description": "🄿 Covered Reservoir, 🄿 Emergency Water Reservoir (Underground)",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "quay",
+ "description": "🄿 Quay",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/quay.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "pumping_station",
+ "description": "🄿 Pumping Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/powered_pump.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "planter",
+ "description": "🄿 Planter, 🄿 Planter (Barrier) (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "pipeline",
+ "description": "🄿 Pipeline",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "pier",
+ "description": "🄿 Pier",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pier_fixed.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "petroleum_well",
+ "description": "🄿 Oil Well",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/oil_well.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "observatory",
+ "description": "🄿 Observatory",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/telescope.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "obelisk",
+ "description": "🄿 Obelisk",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/obelisk.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "monitoring_station",
+ "description": "🄿 Monitoring Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/antenna.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "mineshaft",
+ "description": "🄿 Mineshaft",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mineshaft_cage.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "milk_churn_stand",
+ "description": "🄿 Milk Churn Stand",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/milk_jug.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "mast",
+ "description": "🄿 Mast",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mast.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "manhole",
+ "description": "🄿 Manhole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/manhole.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "lighthouse",
+ "description": "🄿 Lighthouse",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lighthouse.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "insect_hotel",
+ "description": "🄿 Insect Hotel",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bugs.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "groyne",
+ "description": "🄿 Groin",
+ "object_types": [
+ "way",
+ "area"
+ ]
+ },
+ {
+ "key": "man_made",
+ "value": "goods_conveyor",
+ "description": "🄿 Goods Conveyor",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/conveyor.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "gasometer",
+ "description": "🄿 Gasometer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_tank.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "gantry",
+ "description": "🄿 Gantry",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/toll_gantry.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "fuel_pump",
+ "description": "🄿 Gas Pump",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "footwear_decontamination",
+ "description": "🄿 Footwear Decontamination Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/footwear_decontamination.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "flare",
+ "description": "🄿 Gas Flare",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/chimney.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "flagpole",
+ "description": "🄿 Flagpole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/embassy.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "embankment",
+ "description": "🄿 Embankment",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "man_made",
+ "value": "dyke",
+ "description": "🄿 Levee",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "man_made",
+ "value": "dovecote",
+ "description": "🄿 Dovecote",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dove.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "cutline",
+ "description": "🄿 Cut line",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "cross",
+ "description": "🄿 Cross",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "crane",
+ "description": "🄿 Crane",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ]
+ },
+ {
+ "key": "man_made",
+ "value": "compass_rose",
+ "description": "🄿 Compass Rose",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/compass.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "clearcut",
+ "description": "🄿 Clearcut Forest",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "clarifier",
+ "description": "🄿 Wastewater Clarifier",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "chimney",
+ "description": "🄿 Chimney",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/chimney.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "charge_point",
+ "description": "🄿 EV Charging Point",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plug-circle-bolt.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "ceremonial_gate",
+ "description": "🄿 Ceremonial Gate",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "carpet_hanger",
+ "description": "🄿 Carpet Hanger",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "cairn",
+ "description": "🄿 Cairn",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cairn.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "bunker_silo",
+ "description": "🄿 Bunker Silo",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bunker_silo.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "bridge",
+ "description": "🄿 Bridge Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bridge.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "breakwater",
+ "description": "🄿 Breakwater",
+ "object_types": [
+ "way",
+ "area"
+ ]
+ },
+ {
+ "key": "man_made",
+ "value": "beehive",
+ "description": "🄿 Beehive",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archive.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "beacon",
+ "description": "🄿 Beacon",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/communications-tower.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "antenna",
+ "description": "🄿 Antenna",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/antenna.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "adit",
+ "description": "🄿 Adit",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/adit_profile.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "yes",
+ "description": "🄿 Man-Made Feature (Unspecified Type) (unsearchable)",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_tank.svg"
+ },
+ {
+ "key": "man_made",
+ "value": "courtyard",
+ "description": "🄿 Courtyard (unsearchable)",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked.svg"
+ },
+ {
+ "key": "product",
+ "value": "beer",
+ "description": "🄿 Industrial Brewery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_fermenter.svg"
+ },
+ {
+ "key": "tower:type",
+ "value": "pagoda",
+ "description": "🄿 Pagoda",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vihara.svg"
+ },
+ {
+ "key": "tower:type",
+ "value": "observation",
+ "description": "🄿 Observation Tower",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/observation-tower.svg"
+ },
+ {
+ "key": "tower:type",
+ "value": "minaret",
+ "description": "🄿 Minaret",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/domed_tower.svg"
+ },
+ {
+ "key": "tower:type",
+ "value": "diving",
+ "description": "🄿 Diving Platform",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "tower:type",
+ "value": "defensive",
+ "description": "🄿 Fortified Tower",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle.svg"
+ },
+ {
+ "key": "tower:type",
+ "value": "cooling",
+ "description": "🄿 Cooling Tower",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cooling_tower.svg"
+ },
+ {
+ "key": "tower:type",
+ "value": "communication",
+ "description": "🄿 Communication Tower, 🄿 Communication Mast",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tower_communication.svg"
+ },
+ {
+ "key": "tower:type",
+ "value": "bell_tower",
+ "description": "🄿 Bell Tower",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bell.svg"
+ },
+ {
+ "key": "telescope:type",
+ "value": "radio",
+ "description": "🄿 Radio Telescope, 🄵🅅 Type: Radio Telescope",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "telescope:type",
+ "value": "optical",
+ "description": "🄿 Optical Telescope, 🄵🅅 Type: Optical Telescope",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/telescope.svg"
+ },
+ {
+ "key": "surveillance:type",
+ "value": "camera",
+ "description": "🄿 Surveillance Camera, 🄵🅅 Surveillance Type: Camera",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/security_camera.svg"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "waste",
+ "description": "🄿 Private Waste Collection Cabinet",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "transport_management",
+ "description": "🄿 Transport Management Cabinet",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "traffic_monitoring",
+ "description": "🄿 Traffic Monitoring Cabinet",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "traffic_control",
+ "description": "🄿 Traffic Control System Cabinet",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "postal_service",
+ "description": "🄿 Postal Relay Box",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"
+ },
+ {
+ "key": "content",
+ "value": "water",
+ "description": "🄿 Water Tank, 🄵🅅 Content: `water`",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_tank.svg"
+ },
+ {
+ "key": "floating",
+ "value": "yes",
+ "description": "🄿 Floating Pier",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pier_floating.svg"
+ },
+ {
+ "key": "tower:type",
+ "value": "lighting",
+ "description": "🄿 Lighting Mast",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mast_lighting.svg"
+ },
+ {
+ "key": "communication:television",
+ "value": "yes",
+ "description": "🄿 Television Broadcast Mast",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mast_communication.svg"
+ },
+ {
+ "key": "communication:radio",
+ "value": "yes",
+ "description": "🄿 Radio Broadcast Mast",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mast_communication.svg"
+ },
+ {
+ "key": "communication:mobile_phone",
+ "value": "yes",
+ "description": "🄿 Mobile Phone Mast",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mast_communication.svg"
},
{
"key": "manhole",
- "description": "🄵 Type"
+ "value": "water",
+ "description": "🄿 Water Utility Manhole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste_manhole.svg"
},
{
- "key": "manufacturer",
- "description": "🄵 Manufacturer"
+ "key": "manhole",
+ "value": "telecom",
+ "description": "🄿 Telecom Utility Manhole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cable_manhole.svg"
},
{
- "key": "map_size",
- "description": "🄵 Coverage"
+ "key": "manhole",
+ "value": "sewer",
+ "description": "🄿 Sewer Utility Manhole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste_manhole.svg"
},
{
- "key": "map_type",
- "description": "🄵 Type"
+ "key": "manhole",
+ "value": "power",
+ "description": "🄿 Power Utility Manhole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_manhole.svg"
},
{
- "key": "mapillary",
- "description": "🄵 Mapillary Image ID"
+ "key": "manhole",
+ "value": "gas",
+ "description": "🄿 Gas Utility Manhole",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gas_manhole.svg"
},
{
- "key": "material",
- "description": "🄵 Material"
+ "key": "manhole",
+ "value": "drain",
+ "description": "🄿 Storm Drain",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/manhole.svg"
},
{
- "key": "mattress",
- "description": "🄵 Mattresses Available"
+ "key": "crane:type",
+ "value": "portal_crane",
+ "description": "🄿 Portal Crane, 🄵🅅 Crane Type: Portal Crane",
+ "object_types": [
+ "node",
+ "area"
+ ]
},
{
- "key": "max_age",
- "description": "🄵 Maximum Age"
+ "key": "crane:type",
+ "value": "gantry_crane",
+ "description": "🄿 Gantry Crane, 🄵🅅 Crane Type: Gantry Crane",
+ "object_types": [
+ "node",
+ "area"
+ ]
},
{
- "key": "maxheight",
- "description": "🄵 Max Height"
+ "key": "ceremonial_gate",
+ "value": "torii",
+ "description": "🄿 Torii, 🄵🅅 Type: Torii",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shinto.svg"
},
{
- "key": "maxspeed",
- "description": "🄵 Speed Limit"
+ "key": "ceremonial_gate",
+ "value": "paifang",
+ "description": "🄿 Paifang, 🄵🅅 Type: Paifang",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/paifang.svg"
},
{
- "key": "maxspeed:advisory",
- "description": "🄵 Advisory Speed Limit"
+ "key": "leisure",
+ "value": "water_park",
+ "description": "🄿 Water Park",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"
},
{
- "key": "maxspeed:hgv",
- "description": "🄵 Truck Speed Limit"
+ "key": "leisure",
+ "value": "trampoline_park",
+ "description": "🄿 Trampoline Park",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chevron-circle-up.svg"
},
{
- "key": "maxstay",
- "description": "🄵 Max Stay"
+ "key": "leisure",
+ "value": "track",
+ "description": "🄿 Racetrack (Non-Motorsport)",
+ "object_types": [
+ "way",
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/racetrack_oval.svg"
},
{
- "key": "maxstay",
- "value": "15 minutes",
- "description": "🄵🅅 Max Stay: `15 minutes`"
+ "key": "leisure",
+ "value": "swimming_pool",
+ "description": "🄿 Swimming Pool",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimming-pool.svg"
},
{
- "key": "maxstay",
- "value": "30 minutes",
- "description": "🄵🅅 Max Stay: `30 minutes`"
+ "key": "leisure",
+ "value": "swimming_area",
+ "description": "🄿 Natural Swimming Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"
},
{
- "key": "maxstay",
- "value": "45 minutes",
- "description": "🄵🅅 Max Stay: `45 minutes`"
+ "key": "leisure",
+ "value": "stadium",
+ "description": "🄿 Stadium",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
},
{
- "key": "maxstay",
- "value": "1 hour",
- "description": "🄵🅅 Max Stay: `1 hour`"
+ "key": "leisure",
+ "value": "sports_hall",
+ "description": "🄿 Gymnasium",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
},
{
- "key": "maxstay",
- "value": "1.5 hours",
- "description": "🄵🅅 Max Stay: `1.5 hours`"
+ "key": "leisure",
+ "value": "sports_centre",
+ "description": "🄿 Sports Center / Complex",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
},
{
- "key": "maxstay",
- "value": "2 hours",
- "description": "🄵🅅 Max Stay: `2 hours`"
+ "key": "highway",
+ "value": "service",
+ "description": "🄿 Slipway (Drivable), 🄿 Paved Service Area (unsearchable), 🄿 Service Road, 🄵🅅 Type of Path: Service Road",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slipway.svg"
},
{
- "key": "maxstay",
- "value": "2.5 hours",
- "description": "🄵🅅 Max Stay: `2.5 hours`"
+ "key": "leisure",
+ "value": "slipway",
+ "description": "🄿 Slipway",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slipway.svg"
},
{
- "key": "maxstay",
- "value": "3 hours",
- "description": "🄵🅅 Max Stay: `3 hours`"
+ "key": "leisure",
+ "value": "sauna",
+ "description": "🄿 Sauna",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-thermometer-three-quarters.svg"
},
{
- "key": "maxstay",
- "value": "4 hours",
- "description": "🄵🅅 Max Stay: `4 hours`"
+ "key": "leisure",
+ "value": "resort",
+ "description": "🄿 Resort",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging.svg"
},
{
- "key": "maxstay",
- "value": "1 day",
- "description": "🄵🅅 Max Stay: `1 day`"
+ "key": "leisure",
+ "value": "playground",
+ "description": "🄿 Playground",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
},
{
- "key": "maxstay",
- "value": "2 days",
- "description": "🄵🅅 Max Stay: `2 days`"
+ "key": "leisure",
+ "value": "pitch",
+ "description": "🄿 Sport Pitch",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
},
{
- "key": "maxweight",
- "description": "🄵 Max Weight"
+ "key": "leisure",
+ "value": "picnic_table",
+ "description": "🄿 Picnic Table",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site.svg"
},
{
- "key": "maxwidth",
- "description": "🄵 Max Width"
+ "key": "leisure",
+ "value": "park",
+ "description": "🄿 Park",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tree_and_bench.svg"
},
{
- "key": "memorial",
- "description": "🄵 Type"
+ "key": "leisure",
+ "value": "outdoor_seating",
+ "description": "🄿 Outdoor Seating Area",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site.svg"
},
{
- "key": "microbrewery",
- "description": "🄵 Microbrewery"
+ "key": "leisure",
+ "value": "nature_reserve",
+ "description": "🄿 Nature Reserve",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "miniature_golf",
+ "description": "🄿 Miniature Golf",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/golf_green.svg"
+ },
+ {
+ "key": "seamark:harbour:category",
+ "value": "marina_no_facilities",
+ "description": "🄿 Yacht Berths, 🄵🅅 Domestic Facilities: No",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sailboat.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "marina",
+ "description": "🄿 Marina",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sailboat.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "indoor_play",
+ "description": "🄿 Indoor Play Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/slide.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "ice_rink",
+ "description": "🄿 Ice Rink",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skating.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "hot_tub",
+ "description": "🄿 Hot Tub",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hot-tub-person.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "horse_riding",
+ "description": "🄿 Horseback Riding Center, 🄵🅅 Horseback Riding Center: Yes",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "hackerspace",
+ "description": "🄿 Hackerspace",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-code.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "golf_course",
+ "description": "🄿 Golf Course",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "garden",
+ "description": "🄿 Garden",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "fitness_station",
+ "description": "🄿 Outdoor Fitness Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horizontal_bar.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "fitness_centre",
+ "description": "🄿 Gym / Fitness Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumbbell.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "fishing",
+ "description": "🄿 Fishing Spot",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "firepit",
+ "description": "🄿 Fire Pit",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/campfire.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "escape_game",
+ "description": "🄿 Escape Room",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-puzzle-piece.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "dog_park",
+ "description": "🄿 Dog Park",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dog-park.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "disc_golf_course",
+ "description": "🄿 Disc Golf Course",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/disc_golf_basket.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "dance",
+ "description": "🄿 Dance Hall",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "common",
+ "description": "🄿 Common",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "bowling_alley",
+ "description": "🄿 Bowling Alley",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bowling.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "bleachers",
+ "description": "🄿 Bleachers",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bleachers.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "bird_hide",
+ "description": "🄿 Bird Hide",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/binoculars.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "beach_resort",
+ "description": "🄿 Beach Resort",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-umbrella-beach.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "bathing_place",
+ "description": "🄿 Bathing Place",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "bandstand",
+ "description": "🄿 Bandstand",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "amusement_arcade",
+ "description": "🄿 Amusement Arcade",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gaming.svg"
+ },
+ {
+ "key": "leisure",
+ "value": "adult_gaming_centre",
+ "description": "🄿 Adult Gaming Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/casino.svg"
+ },
+ {
+ "key": "sport",
+ "value": "running",
+ "description": "🄿 Running Track, 🄵🅅 Sports: Running",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"
+ },
+ {
+ "key": "sport",
+ "value": "horse_racing",
+ "description": "🄿 Horse Racetrack, 🄿 Horse Race Course, 🄵🅅 Sports: Horse Racing",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/racetrack-horse.svg"
+ },
+ {
+ "key": "sport",
+ "value": "cycling",
+ "description": "🄿 Cycling Track, 🄵🅅 Sports: Cycling",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/racetrack-cycling.svg"
+ },
+ {
+ "key": "sport",
+ "value": "athletics",
+ "description": "🄿 Track & Field Runway (unsearchable), 🄿 Track & Field Pitch (unsearchable), 🄵🅅 Sports: Track & Field",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "triple_jump",
+ "description": "🄿 Triple Jump Runway, 🄿 Triple Jump Pit, 🄵🅅 Event: Triple Jump",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "steeplechase",
+ "description": "🄿 Steeplechase Runway, 🄵🅅 Event: Steeplechase",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "sprint",
+ "description": "🄿 Sprint Runway, 🄵🅅 Event: Sprinting",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "pole_vault",
+ "description": "🄿 Pole Vault Runway, 🄿 Pole Vault Pit, 🄵🅅 Event: Pole Vault",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "long_jump",
+ "description": "🄿 Long Jump Runway, 🄿 Long Jump Pit, 🄵🅅 Event: Long Jump",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "javelin_throw",
+ "description": "🄿 Javelin Runway, 🄿 Javelin Sector, 🄵🅅 Event: Javelin",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "running",
+ "description": "🄿 Running Track (unsearchable), 🄵🅅 Event: Running",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"
+ },
+ {
+ "key": "sport",
+ "value": "swimming",
+ "description": "🄿 Swimming Pool Facility, 🄵🅅 Sports: Swimming",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"
+ },
+ {
+ "key": "sport",
+ "value": "shooting",
+ "description": "🄿 Shooting Range Facility, 🄿 Shooting Range, 🄵🅅 Sports: Shooting",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crosshairs.svg"
+ },
+ {
+ "key": "sport",
+ "value": "karting",
+ "description": "🄿 Go Kart Facility, 🄿 Karting Racetrack, 🄵🅅 Sports: Kart Racing",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flag-checkered.svg"
+ },
+ {
+ "key": "sport",
+ "value": "climbing_adventure",
+ "description": "🄿 Adventure Park",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/abseiling.svg"
+ },
+ {
+ "key": "sport",
+ "value": "climbing",
+ "description": "🄿 Climbing Gym, 🄵🅅 Sports: Climbing",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/abseiling.svg"
+ },
+ {
+ "key": "indoor",
+ "value": "yes",
+ "description": "🄿 Indoor Playground",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"
+ },
+ {
+ "key": "sport",
+ "value": "volleyball",
+ "description": "🄿 Volleyball Court, 🄵🅅 Sports: Volleyball",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball.svg"
+ },
+ {
+ "key": "sport",
+ "value": "tetherball",
+ "description": "🄿 Tetherball Court",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "sport",
+ "value": "tennis",
+ "description": "🄿 Tennis Court, 🄵🅅 Sports: Tennis",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis.svg"
+ },
+ {
+ "key": "sport",
+ "value": "table_tennis",
+ "description": "🄿 Ping Pong Table, 🄵🅅 Sports: Table Tennis",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-table-tennis.svg"
+ },
+ {
+ "key": "sport",
+ "value": "table_soccer",
+ "description": "🄿 Foosball Table, 🄵🅅 Sports: `table_soccer`",
+ "object_types": [
+ "area",
+ "node"
+ ]
+ },
+ {
+ "key": "sport",
+ "value": "softball",
+ "description": "🄿 Softball Field, 🄵🅅 Sports: Softball",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/baseball.svg"
+ },
+ {
+ "key": "sport",
+ "value": "soccer",
+ "description": "🄿 Soccer Field, 🄵🅅 Sports: Soccer",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/soccer.svg"
+ },
+ {
+ "key": "sport",
+ "value": "skateboard",
+ "description": "🄿 Skate Park, 🄵🅅 Sports: Skateboard",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/skateboard.svg"
+ },
+ {
+ "key": "sport",
+ "value": "shuffleboard",
+ "description": "🄿 Shuffleboard Court",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shuffleboard.svg"
+ },
+ {
+ "key": "sport",
+ "value": "rugby_union",
+ "description": "🄿 Rugby Union Field, 🄵🅅 Sports: Rugby Union",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football.svg"
+ },
+ {
+ "key": "sport",
+ "value": "rugby_league",
+ "description": "🄿 Rugby League Field",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football.svg"
+ },
+ {
+ "key": "sport",
+ "value": "pickleball",
+ "description": "🄿 Pickleball Court",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis.svg"
+ },
+ {
+ "key": "sport",
+ "value": "paintball",
+ "description": "🄿 Paintball Field",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crosshairs.svg"
+ },
+ {
+ "key": "sport",
+ "value": "padel",
+ "description": "🄿 Padel Court, 🄵🅅 Sports: Padel",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis.svg"
+ },
+ {
+ "key": "sport",
+ "value": "netball",
+ "description": "🄿 Netball Court, 🄵🅅 Sports: Netball",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball.svg"
+ },
+ {
+ "key": "sport",
+ "value": "horseshoes",
+ "description": "🄿 Horseshoes Pit",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horseshoes.svg"
+ },
+ {
+ "key": "sport",
+ "value": "handball",
+ "description": "🄿 Team Handball Court, 🄵🅅 Sports: Team Handball",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "sport",
+ "value": "gaga",
+ "description": "🄿 Gaga Pit",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "sport",
+ "value": "futsal",
+ "description": "🄿 Futsal Court, 🄵🅅 Sports: Futsal",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/soccer.svg"
+ },
+ {
+ "key": "sport",
+ "value": "funnel_ball",
+ "description": "🄿 Funnel Ball Court",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "sport",
+ "value": "four_square",
+ "description": "🄿 Four Square Court",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-border-all.svg"
+ },
+ {
+ "key": "sport",
+ "value": "field_hockey",
+ "description": "🄿 Field Hockey Pitch",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/field_hockey.svg"
+ },
+ {
+ "key": "sport",
+ "value": "equestrian",
+ "description": "🄿 Horseback Riding / Rodeo Arena, 🄵🅅 Sports: Equestrian Sports",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"
+ },
+ {
+ "key": "sport",
+ "value": "cricket",
+ "description": "🄿 Cricket Field, 🄵🅅 Sports: Cricket",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cricket.svg"
+ },
+ {
+ "key": "sport",
+ "value": "chess",
+ "description": "🄿 Giant Chess Board, 🄿 Chess Table, 🄵🅅 Sports: Chess",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chess-bishop.svg"
+ },
+ {
+ "key": "sport",
+ "value": "bowls",
+ "description": "🄿 Bowling Green, 🄵🅅 Sports: Bowls",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "sport",
+ "value": "boules",
+ "description": "🄿 Boules/Bocce Court, 🄵🅅 Sports: Boules",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "sport",
+ "value": "beachvolleyball",
+ "description": "🄿 Beach Volleyball Court, 🄵🅅 Sports: Beach Volleyball",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball.svg"
+ },
+ {
+ "key": "sport",
+ "value": "basketball",
+ "description": "🄿 Basketball Court, 🄵🅅 Sports: Basketball",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/basketball.svg"
+ },
+ {
+ "key": "sport",
+ "value": "baseball",
+ "description": "🄿 Baseball Field, 🄵🅅 Sports: Baseball",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/baseball.svg"
+ },
+ {
+ "key": "sport",
+ "value": "badminton",
+ "description": "🄿 Badminton Court, 🄵🅅 Sports: Badminton",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis.svg"
+ },
+ {
+ "key": "sport",
+ "value": "australian_football",
+ "description": "🄿 Australian Football Field",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football.svg"
+ },
+ {
+ "key": "sport",
+ "value": "archery",
+ "description": "🄿 Archery Range",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/archery.svg"
+ },
+ {
+ "key": "sport",
+ "value": "american_handball",
+ "description": "🄿 American Handball Court",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"
+ },
+ {
+ "key": "sport",
+ "value": "american_football",
+ "description": "🄿 American Football Field, 🄵🅅 Sports: American Football",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "shot_put",
+ "description": "🄿 Shot Put Ring / Pit, 🄵🅅 Event: Shot Put",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "high_jump",
+ "description": "🄿 High Jump Pit, 🄵🅅 Event: High Jump",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "hammer_throw",
+ "description": "🄿 Hammer Throw Ring / Sector, 🄵🅅 Event: Hammer Throw",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "athletics",
+ "value": "discus_throw",
+ "description": "🄿 Discus Ring / Sector, 🄵🅅 Event: Discus",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "garden:type",
+ "value": "residential",
+ "description": "🄿 Residential Garden",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"
+ },
+ {
+ "key": "garden:style",
+ "value": "kitchen",
+ "description": "🄿 Kitchen Garden",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-carrot.svg"
+ },
+ {
+ "key": "garden:type",
+ "value": "community",
+ "description": "🄿 Community Garden",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"
+ },
+ {
+ "key": "garden:type",
+ "value": "botanical",
+ "description": "🄿 Botanical Garden",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"
+ },
+ {
+ "key": "fitness_station",
+ "value": "stairs",
+ "description": "🄿 Exercise Stairs",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "fitness_station",
+ "value": "sit-up",
+ "description": "🄿 Sit-Up Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "fitness_station",
+ "value": "sign",
+ "description": "🄿 Exercise Instruction Sign",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "fitness_station",
+ "value": "rings",
+ "description": "🄿 Exercise Rings",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "fitness_station",
+ "value": "push-up",
+ "description": "🄿 Push-Up Station",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "fitness_station",
+ "value": "parallel_bars",
+ "description": "🄿 Parallel Bars",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horizontal_bar.svg"
+ },
+ {
+ "key": "fitness_station",
+ "value": "hyperextension",
+ "description": "🄿 Hyperextension Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "fitness_station",
+ "value": "horizontal_ladder",
+ "description": "🄿 Exercise Monkey Bars",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "fitness_station",
+ "value": "horizontal_bar",
+ "description": "🄿 Exercise Horizontal Bar",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horizontal_bar.svg"
+ },
+ {
+ "key": "fitness_station",
+ "value": "box",
+ "description": "🄿 Exercise Box",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "fitness_station",
+ "value": "balance_beam",
+ "description": "🄿 Exercise Balance Beam",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/balance_beam.svg"
+ },
+ {
+ "key": "sport",
+ "value": "yoga",
+ "description": "🄿 Yoga Studio, 🄵🅅 Sports: Yoga",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "winter_sports",
+ "description": "🄿 Winter Sports Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "vineyard",
+ "description": "🄿 Vineyard",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/grapes.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "salt_pond",
+ "description": "🄿 Salt Evaporation Pond",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "retail",
+ "description": "🄿 Retail Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "residential",
+ "description": "🄿 Residential Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "religious",
+ "description": "🄿 Religious Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "recreation_ground",
+ "description": "🄿 Recreation Ground",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "railway",
+ "description": "🄿 Railway Corridor",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "quarry",
+ "description": "🄿 Quarry",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pick_hammer.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "plant_nursery",
+ "description": "🄿 Plant Nursery",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-seedling.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "orchard",
+ "description": "🄿 Orchard",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "military",
+ "description": "🄿 Military Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "meadow",
+ "description": "🄿 Meadow",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "landfill",
+ "description": "🄿 Landfill",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bulldozer.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "industrial",
+ "description": "🄿 Industrial Area, 🄿 Industrial Area (unsearchable)",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "harbour",
+ "description": "🄿 Harbor",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "greenhouse_horticulture",
+ "description": "🄿 Greenhouse Horticulture",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "greenfield",
+ "description": "🄿 Greenfield",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bulldozer.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "grass",
+ "description": "🄿 Grass",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/lawn.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "garages",
+ "description": "🄿 Garage Landuse",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "forest",
+ "description": "🄿 Managed Forest",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-alt1.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "flowerbed",
+ "description": "🄿 Flowerbed",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "farmyard",
+ "description": "🄿 Farmyard",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "farmland",
+ "description": "🄿 Farmland",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "education",
+ "description": "🄿 Educational Campus",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "construction",
+ "description": "🄿 Construction Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bulldozer.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "commercial",
+ "description": "🄿 Commercial Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "cemetery",
+ "description": "🄿 Cemetery",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "brownfield",
+ "description": "🄿 Brownfield",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bulldozer.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "aquaculture",
+ "description": "🄿 Aquaculture",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aquarium.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "allotments",
+ "description": "🄿 Garden Allotments",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "reservoir",
+ "description": "🄿 Reservoir (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=reservoir",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "pond",
+ "description": "🄿 Pond (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=pond",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "farm",
+ "description": "🄿 Farmland (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "churchyard",
+ "description": "🄿 Churchyard (unsearchable), 🄳 (deprecated tag) ➜ landuse=religious",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian.svg"
+ },
+ {
+ "key": "landuse",
+ "value": "basin",
+ "description": "🄿 Basin (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=basin",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "residential",
+ "value": "trailer_park",
+ "description": "🄿 Mobile Home Park",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/manufactured_home.svg"
+ },
+ {
+ "key": "residential",
+ "value": "apartments",
+ "description": "🄿 Apartment Complex",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community.svg"
+ },
+ {
+ "key": "military",
+ "value": "training_area",
+ "description": "🄿 Military Training Area",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military.svg"
+ },
+ {
+ "key": "military",
+ "value": "range",
+ "description": "🄿 Military Range",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bullseye.svg"
+ },
+ {
+ "key": "military",
+ "value": "obstacle_course",
+ "description": "🄿 Military Obstacle Course",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tire_course.svg"
+ },
+ {
+ "key": "military",
+ "value": "danger_area",
+ "description": "🄿 Military Danger Area, 🄿 Military Danger Area (unsearchable)",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger.svg"
+ },
+ {
+ "key": "military",
+ "value": "base",
+ "description": "🄿 Military Base",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/anchor_medal.svg"
+ },
+ {
+ "key": "military",
+ "value": "barracks",
+ "description": "🄿 Barracks",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/army_tent.svg"
+ },
+ {
+ "key": "military",
+ "value": "airfield",
+ "description": "🄿 Military Airfield",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fighter_jet.svg"
},
{
"key": "military_service",
- "description": "🄵 Military Service"
+ "value": "navy",
+ "description": "🄿 Naval Base, 🄵🅅 Military Service: Navy",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/anchor_medal.svg"
},
{
- "key": "mimics",
- "description": "🄵 Mimics"
+ "key": "orchard",
+ "value": "meadow_orchard",
+ "description": "🄿 Orchard Planted in a Meadow",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park.svg"
},
{
- "key": "min_age",
- "description": "🄵 Minimum Age"
+ "key": "meadow",
+ "value": "meadow_orchard",
+ "description": "🄿 Meadow With Fruit Trees",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park.svg"
},
{
- "key": "min_height",
- "description": "🄵 Height of Bottom (Meters)"
+ "key": "industrial",
+ "value": "slaughterhouse",
+ "description": "🄿 Slaughterhouse",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slaughterhouse.svg"
},
{
- "key": "minspeed",
- "description": "🄵 Minimum Speed Limit"
+ "key": "industrial",
+ "value": "scrap_yard",
+ "description": "🄿 Scrap Yard",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/junk_car.svg"
},
{
- "key": "model",
- "description": "🄵 Model"
+ "key": "industrial",
+ "value": "depot",
+ "description": "🄿 Depot",
+ "object_types": [
+ "node",
+ "area"
+ ]
},
{
- "key": "monitoring:",
- "description": "🄵 Monitoring"
+ "key": "industrial",
+ "value": "brewery",
+ "description": "🄿 Industrial Brewery (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_fermenter.svg"
},
{
- "key": "mtb:scale",
- "description": "🄵 Mountain Biking Difficulty"
+ "key": "produce",
+ "value": "fish",
+ "description": "🄿 Fish Farm / Hatchery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"
},
{
- "key": "mtb:scale",
- "value": "0",
- "description": "🄵🅅 Mountain Biking Difficulty: 0: Solid gravel/packed earth, no obstacles, wide curves"
+ "key": "internet_access",
+ "value": "wlan",
+ "description": "🄿 Wi-Fi Hotspot, 🄵🅅 Internet Connection: Wifi",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-wifi.svg"
},
{
- "key": "mtb:scale",
- "value": "1",
- "description": "🄵🅅 Mountain Biking Difficulty: 1: Some loose surface, small obstacles, wide curves"
+ "key": "indoor",
+ "value": "wall",
+ "description": "🄿 Indoor Wall",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"
},
{
- "key": "mtb:scale",
- "value": "2",
- "description": "🄵🅅 Mountain Biking Difficulty: 2: Much loose surface, large obstacles, easy hairpins"
- },
- {
- "key": "mtb:scale",
- "value": "3",
- "description": "🄵🅅 Mountain Biking Difficulty: 3: Slippery surface, large obstacles, tight hairpins"
- },
- {
- "key": "mtb:scale",
- "value": "4",
- "description": "🄵🅅 Mountain Biking Difficulty: 4: Loose surface or boulders, dangerous hairpins"
- },
- {
- "key": "mtb:scale",
- "value": "5",
- "description": "🄵🅅 Mountain Biking Difficulty: 5: Maximum difficulty, boulder fields, landslides"
- },
- {
- "key": "mtb:scale",
- "value": "6",
- "description": "🄵🅅 Mountain Biking Difficulty: 6: Not rideable except by the very best mountain bikers"
- },
- {
- "key": "mtb:scale:imba",
- "description": "🄵 IMBA Trail Difficulty"
- },
- {
- "key": "mtb:scale:imba",
- "value": "0",
- "description": "🄵🅅 IMBA Trail Difficulty: ⚪ Easiest (white circle)"
- },
- {
- "key": "mtb:scale:imba",
- "value": "1",
- "description": "🄵🅅 IMBA Trail Difficulty: 🟢 Easy (green circle)"
- },
- {
- "key": "mtb:scale:imba",
- "value": "2",
- "description": "🄵🅅 IMBA Trail Difficulty: 🟦 Medium (blue square)"
- },
- {
- "key": "mtb:scale:imba",
- "value": "3",
- "description": "🄵🅅 IMBA Trail Difficulty: ◆ Difficult (black diamond)"
- },
- {
- "key": "mtb:scale:imba",
- "value": "4",
- "description": "🄵🅅 IMBA Trail Difficulty: ◆◆ Extremely Difficult (double black diamond)"
- },
- {
- "key": "mtb:scale:uphill",
- "description": "🄵 Mountain Biking Uphill Difficulty"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "0",
- "description": "🄵🅅 Mountain Biking Uphill Difficulty: 0: Avg. incline <10%, gravel/packed earth, no obstacles"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "1",
- "description": "🄵🅅 Mountain Biking Uphill Difficulty: 1: Avg. incline <15%, gravel/packed earth, few small objects"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "2",
- "description": "🄵🅅 Mountain Biking Uphill Difficulty: 2: Avg. incline <20%, stable surface, fistsize rocks/roots"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "3",
- "description": "🄵🅅 Mountain Biking Uphill Difficulty: 3: Avg. incline <25%, variable surface, fistsize rocks/branches"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "4",
- "description": "🄵🅅 Mountain Biking Uphill Difficulty: 4: Avg. incline <30%, poor condition, big rocks/branches"
- },
- {
- "key": "mtb:scale:uphill",
- "value": "5",
- "description": "🄵🅅 Mountain Biking Uphill Difficulty: 5: Very steep, bike generally needs to be pushed or carried"
- },
- {
- "key": "museum",
- "description": "🄵 Type"
- },
- {
- "key": "name",
- "description": "🄵 Name"
- },
- {
- "key": "network",
- "description": "🄵 Network Class, 🄵 Network"
- },
- {
- "key": "network",
- "value": "lcn",
- "description": "🄵🅅 Network Class: Local"
- },
- {
- "key": "network",
- "value": "rcn",
- "description": "🄵🅅 Network Class: Regional"
- },
- {
- "key": "network",
- "value": "ncn",
- "description": "🄵🅅 Network Class: National"
- },
- {
- "key": "network",
- "value": "icn",
- "description": "🄵🅅 Network Class: International"
- },
- {
- "key": "network",
- "value": "lwn",
- "description": "🄵🅅 Network Class: Local"
- },
- {
- "key": "network",
- "value": "rwn",
- "description": "🄵🅅 Network Class: Regional"
- },
- {
- "key": "network",
- "value": "nwn",
- "description": "🄵🅅 Network Class: National"
- },
- {
- "key": "network",
- "value": "iwn",
- "description": "🄵🅅 Network Class: International"
- },
- {
- "key": "network",
- "value": "lhn",
- "description": "🄵🅅 Network Class: Local"
- },
- {
- "key": "network",
- "value": "rhn",
- "description": "🄵🅅 Network Class: Regional"
- },
- {
- "key": "network",
- "value": "nhn",
- "description": "🄵🅅 Network Class: National"
- },
- {
- "key": "network",
- "value": "ihn",
- "description": "🄵🅅 Network Class: International"
- },
- {
- "key": "network:type",
- "description": "🄵 Network Type"
- },
- {
- "key": "not:name",
- "description": "🄵 Incorrect Names"
- },
- {
- "key": "note",
- "description": "🄵 Note"
- },
- {
- "key": "oneway",
- "description": "🄵 One Way"
- },
- {
- "key": "oneway",
+ "key": "stairs",
"value": "yes",
- "description": "🄵🅅 One Way: Yes"
+ "description": "🄿 Indoor Stairwell",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-steps.svg"
},
{
- "key": "oneway",
- "value": "no",
- "description": "🄵🅅 One Way: No"
+ "key": "indoor",
+ "value": "room",
+ "description": "🄿 Room",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/room.svg"
},
{
- "key": "oneway",
- "value": "reversible",
- "description": "🄵🅅 One Way: Reversible"
- },
- {
- "key": "oneway",
- "value": "alternating",
- "description": "🄵🅅 One Way: Alternating"
- },
- {
- "key": "oneway:bicycle",
- "description": "🄵 One Way (Bicycles)"
- },
- {
- "key": "openfire",
- "description": "🄵 Open Fires Allowed"
- },
- {
- "key": "opening_date",
- "description": "🄵 Expected Opening Date"
- },
- {
- "key": "opening_hours",
- "description": "🄵 Hours"
- },
- {
- "key": "opening_hours:covid19",
- "description": "🄵 COVID-19 Pandemic Hours"
- },
- {
- "key": "operator",
- "description": "🄵 Operator"
- },
- {
- "key": "operator:type",
- "description": "🄵 Operator Type"
- },
- {
- "key": "organic",
- "description": "🄵 Organic Products"
- },
- {
- "key": "organic",
- "value": "no",
- "description": "🄵🅅 Organic Products: None"
- },
- {
- "key": "organic",
+ "key": "elevator",
"value": "yes",
- "description": "🄵🅅 Organic Products: Some"
+ "description": "🄿 Indoor Elevator Shaft",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/elevator.svg"
},
{
- "key": "outdoor_seating",
- "description": "🄵 Outdoor Seating"
+ "key": "indoor",
+ "value": "door",
+ "description": "🄿 Indoor Door",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"
},
{
- "key": "par",
- "description": "🄵 Par"
+ "key": "indoor",
+ "value": "corridor",
+ "description": "🄿 Indoor Corridor, 🄿 Indoor Corridor (unsearchable)",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
},
{
- "key": "parcel_mail_in",
- "description": "🄵 Parcel Dropoff"
+ "key": "indoor",
+ "value": "area",
+ "description": "🄿 Indoor Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/room.svg"
},
{
- "key": "parcel_pickup",
- "description": "🄵 Parcel Pickup"
+ "key": "historic",
+ "value": "wreck",
+ "description": "🄿 Shipwreck, 🄵🅅 Type: Shipwreck",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"
},
{
- "key": "parcel_pickup",
+ "key": "historic",
+ "value": "wayside_shrine",
+ "description": "🄿 Wayside Shrine, 🄵🅅 Type: Wayside Shrine",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/landmark.svg"
+ },
+ {
+ "key": "historic",
+ "value": "wayside_cross",
+ "description": "🄿 Wayside Cross, 🄵🅅 Type: Wayside Cross",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian.svg"
+ },
+ {
+ "key": "historic",
+ "value": "tomb",
+ "description": "🄿 Tomb, 🄵🅅 Type: Tomb",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"
+ },
+ {
+ "key": "historic",
+ "value": "ruins",
+ "description": "🄿 Ruins, 🄵🅅 Type: Ruins",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"
+ },
+ {
+ "key": "historic",
+ "value": "pillory",
+ "description": "🄿 Historic Pillory, 🄵🅅 Type: Historic Pillory",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument.svg"
+ },
+ {
+ "key": "historic",
+ "value": "monument",
+ "description": "🄿 Monument, 🄵🅅 Type: Monument",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument.svg"
+ },
+ {
+ "key": "historic",
+ "value": "memorial",
+ "description": "🄿 Memorial, 🄵🅅 Type: Memorial",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument.svg"
+ },
+ {
+ "key": "historic",
+ "value": "manor",
+ "description": "🄿 Manor House, 🄵🅅 Type: Manor House",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle.svg"
+ },
+ {
+ "key": "historic",
+ "value": "fort",
+ "description": "🄿 Historic Fort, 🄵🅅 Type: Historic Fort",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle.svg"
+ },
+ {
+ "key": "historic",
+ "value": "city_gate",
+ "description": "🄿 City Gate, 🄵🅅 Type: City Gate",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle.svg"
+ },
+ {
+ "key": "historic",
+ "value": "castle",
+ "description": "🄿 Castle, 🄵🅅 Type: Castle",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "historic",
+ "value": "cannon",
+ "description": "🄿 Cannon",
+ "object_types": [
+ "node"
+ ]
+ },
+ {
+ "key": "historic",
+ "value": "boundary_stone",
+ "description": "🄿 Boundary Stone, 🄵🅅 Type: Boundary Stone",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/milestone.svg"
+ },
+ {
+ "key": "historic",
+ "value": "archaeological_site",
+ "description": "🄿 Archaeological Site, 🄵🅅 Type: Archaeological Site",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"
+ },
+ {
+ "key": "historic",
+ "value": "aircraft",
+ "description": "🄿 Historic Aircraft",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "memorial",
+ "value": "stolperstein",
+ "description": "🄿 Memorial Plaque Stolperstein, 🄵🅅 Type: Stolperstein",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plaque.svg"
+ },
+ {
+ "key": "memorial",
+ "value": "plaque",
+ "description": "🄿 Commemorative Plaque, 🄵🅅 Type: Commemorative Plaque",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plaque.svg"
+ },
+ {
+ "key": "memorial",
+ "value": "blue_plaque",
+ "description": "🄿 Blue Plaque, 🄵🅅 Type: Blue Plaque",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plaque.svg"
+ },
+ {
+ "key": "castle_type",
+ "value": "stately",
+ "description": "🄿 Château, 🄵🅅 Type: Stately Home",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crown.svg"
+ },
+ {
+ "key": "castle_type",
+ "value": "palace",
+ "description": "🄿 Palace, 🄵🅅 Type: Palace",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crown.svg"
+ },
+ {
+ "key": "castle_type",
+ "value": "fortress",
+ "description": "🄿 Historic Fortress, 🄵🅅 Type: Fortress",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle.svg"
+ },
+ {
+ "key": "highway",
+ "value": "unclassified",
+ "description": "🄿 Minor/Unclassified Road",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-unclassified.svg"
+ },
+ {
+ "key": "highway",
+ "value": "turning_loop",
+ "description": "🄿 Turning Loop (Island)",
+ "object_types": [
+ "node"
+ ]
+ },
+ {
+ "key": "highway",
+ "value": "turning_circle",
+ "description": "🄿 Turning Circle",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle.svg"
+ },
+ {
+ "key": "highway",
+ "value": "trunk_link",
+ "description": "🄿 Trunk Link",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-trunk-link.svg"
+ },
+ {
+ "key": "highway",
+ "value": "trunk",
+ "description": "🄿 Trunk Road",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-trunk.svg"
+ },
+ {
+ "key": "highway",
+ "value": "trailhead",
+ "description": "🄿 Trailhead",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hiking.svg"
+ },
+ {
+ "key": "highway",
+ "value": "traffic_signals",
+ "description": "🄿 Traffic Signals",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/traffic_signals.svg"
+ },
+ {
+ "key": "highway",
+ "value": "traffic_mirror",
+ "description": "🄿 Traffic Mirror",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked.svg"
+ },
+ {
+ "key": "highway",
+ "value": "track",
+ "description": "🄿 Track / Land-Access Road",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-monster.svg"
+ },
+ {
+ "key": "highway",
+ "value": "toll_gantry",
+ "description": "🄿 Open Road Toll",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/toll_gantry.svg"
+ },
+ {
+ "key": "highway",
+ "value": "tertiary_link",
+ "description": "🄿 Tertiary Link",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary-link.svg"
+ },
+ {
+ "key": "highway",
+ "value": "tertiary",
+ "description": "🄿 Tertiary Road",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary.svg"
+ },
+ {
+ "key": "highway",
+ "value": "street_lamp",
+ "description": "🄿 Street Lamp",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/street_lamp_arm.svg"
+ },
+ {
+ "key": "highway",
+ "value": "stop",
+ "description": "🄿 Stop Sign",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/stop.svg"
+ },
+ {
+ "key": "highway",
+ "value": "steps",
+ "description": "🄿 Steps",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-steps.svg"
+ },
+ {
+ "key": "highway",
+ "value": "speed_display",
+ "description": "🄿 Radar Speed Sign",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked.svg"
+ },
+ {
+ "key": "highway",
+ "value": "speed_camera",
+ "description": "🄿 Speed Camera",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/security_camera.svg"
+ },
+ {
+ "key": "highway",
+ "value": "services",
+ "description": "🄿 Service Area",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car.svg"
+ },
+ {
+ "key": "highway",
+ "value": "secondary_link",
+ "description": "🄿 Secondary Link",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-secondary-link.svg"
+ },
+ {
+ "key": "highway",
+ "value": "secondary",
+ "description": "🄿 Secondary Road",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-secondary.svg"
+ },
+ {
+ "key": "highway",
+ "value": "road",
+ "description": "🄿 Unknown Road",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"
+ },
+ {
+ "key": "highway",
+ "value": "rest_area",
+ "description": "🄿 Rest Area",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/highway-rest-area.svg"
+ },
+ {
+ "key": "highway",
+ "value": "residential",
+ "description": "🄿 Residential Road",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-residential.svg"
+ },
+ {
+ "key": "highway",
+ "value": "raceway",
+ "description": "🄿 Motorsport Racetrack",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speedway_oval.svg"
+ },
+ {
+ "key": "highway",
+ "value": "primary_link",
+ "description": "🄿 Primary Link",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-primary-link.svg"
+ },
+ {
+ "key": "highway",
+ "value": "primary",
+ "description": "🄿 Primary Road",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-primary.svg"
+ },
+ {
+ "key": "highway",
+ "value": "pedestrian",
+ "description": "🄿 Pedestrian Street, 🄿 Pedestrian Area",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "highway",
+ "value": "path",
+ "description": "🄿 Path, 🄵🅅 Type of Path: Cartpath",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"
+ },
+ {
+ "key": "highway",
+ "value": "passing_place",
+ "description": "🄿 Passing Place",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked.svg"
+ },
+ {
+ "key": "highway",
+ "value": "motorway_link",
+ "description": "🄿 Motorway Link",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-motorway-link.svg"
+ },
+ {
+ "key": "highway",
+ "value": "motorway_junction",
+ "description": "🄿 Motorway Junction / Exit",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/junction.svg"
+ },
+ {
+ "key": "highway",
+ "value": "motorway",
+ "description": "🄿 Motorway",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-motorway.svg"
+ },
+ {
+ "key": "highway",
+ "value": "mini_roundabout",
+ "description": "🄿 Mini-Roundabout",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked.svg"
+ },
+ {
+ "key": "highway",
+ "value": "milestone",
+ "description": "🄿 Highway Milestone",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/milestone.svg"
+ },
+ {
+ "key": "highway",
+ "value": "living_street",
+ "description": "🄿 Living Street",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-living-street.svg"
+ },
+ {
+ "key": "highway",
+ "value": "ladder",
+ "description": "🄿 Ladder",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/crossing_markings-ladder.svg"
+ },
+ {
+ "key": "highway",
+ "value": "give_way",
+ "description": "🄿 Yield Sign",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/yield.svg"
+ },
+ {
+ "key": "highway",
+ "value": "footway",
+ "description": "🄿 Foot Path",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "highway",
+ "value": "escape",
+ "description": "🄿 Runaway Truck Ramp",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-fast.svg"
+ },
+ {
+ "key": "highway",
+ "value": "emergency_bay",
+ "description": "🄿 Emergency Stopping Place",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car.svg"
+ },
+ {
+ "key": "highway",
+ "value": "emergency_access_point",
+ "description": "🄿 Emergency Access Point",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compress-arrows-alt.svg"
+ },
+ {
+ "key": "highway",
+ "value": "elevator",
+ "description": "🄿 Inclined Elevator, 🄿 Elevator",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/elevator.svg"
+ },
+ {
+ "key": "highway",
+ "value": "cyclist_waiting_aid",
+ "description": "🄿 Cyclist Waiting Aid",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/guard_rail.svg"
+ },
+ {
+ "key": "highway",
+ "value": "cycleway",
+ "description": "🄿 Cycle Path",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-biking.svg"
+ },
+ {
+ "key": "highway",
+ "value": "crossing",
+ "description": "🄿 Crossing",
+ "object_types": [
+ "node"
+ ]
+ },
+ {
+ "key": "highway",
+ "value": "corridor",
+ "description": "🄿 Indoor Corridor",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_walled.svg"
+ },
+ {
+ "key": "highway",
+ "value": "construction",
+ "description": "🄿 Road Under Construction",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/barrier.svg"
+ },
+ {
+ "key": "highway",
+ "value": "busway",
+ "description": "🄿 Busway",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus.svg"
+ },
+ {
+ "key": "highway",
+ "value": "bus_guideway",
+ "description": "🄿 Bus Guideway",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus_guided.svg"
+ },
+ {
+ "key": "highway",
+ "value": "bridleway",
+ "description": "🄿 Bridle Path",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"
+ },
+ {
+ "key": "highway",
+ "value": "traffic_sign",
+ "description": "🄿 Traffic Sign (unsearchable)",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-directions.svg"
+ },
+ {
+ "key": "highway",
+ "value": "bus_stop",
+ "description": "🄿 Bus Stop (unsearchable)",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus.svg"
+ },
+ {
+ "key": "conveying",
+ "description": "🄿 Escalator, 🄿 Moving Walkway, 🄵 Escalator, 🄵 Movement Direction",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance.svg"
+ },
+ {
+ "key": "service",
+ "value": "parking_aisle",
+ "description": "🄿 Parking Aisle, 🄵🅅 Type: Parking Aisle",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
+ },
+ {
+ "key": "service",
+ "value": "emergency_access",
+ "description": "🄿 Emergency Access, 🄵🅅 Type: Emergency Access",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
+ },
+ {
+ "key": "service",
+ "value": "driveway",
+ "description": "🄿 Driveway, 🄵🅅 Type: Driveway",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
+ },
+ {
+ "key": "service",
+ "value": "drive-through",
+ "description": "🄿 Drive-Through, 🄵🅅 Type: Drive-Through",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
+ },
+ {
+ "key": "service",
+ "value": "alley",
+ "description": "🄿 Alley, 🄵🅅 Type: Alley",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"
+ },
+ {
+ "key": "bridge",
+ "description": "🄿 Unknown Road Bridge, 🄵 Structure, 🄵 Type",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"
+ },
+ {
+ "key": "sport",
+ "value": "motocross",
+ "description": "🄿 Motocross Racetrack, 🄵🅅 Sports: Motocross",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"
+ },
+ {
+ "key": "bicycle",
+ "value": "designated",
+ "description": "🄿 Cycle & Foot Refuge Island, 🄿 Cycle & Foot Path, 🄿 Cycle & Foot Crossing, 🄵🅅 Allowed Access: `designated`",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_and_cyclist.svg"
+ },
+ {
+ "key": "informal",
"value": "yes",
- "description": "🄵🅅 Parcel Pickup: Yes"
+ "description": "🄿 Informal Path, 🄿 Informal Foot Path (unsearchable)",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shoe-prints.svg"
},
{
- "key": "parcel_pickup",
+ "key": "bridge",
+ "value": "boardwalk",
+ "description": "🄿 Boardwalk, 🄵🅅 Type: Boardwalk",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "path",
+ "value": "crossing",
+ "description": "🄿 Cycle & Foot Crossing (unsearchable)",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cyclist_crosswalk.svg"
+ },
+ {
+ "key": "crossing",
+ "value": "unmarked",
+ "description": "🄿 Unmarked Cycle & Foot Crossing (unsearchable), 🄿 Unmarked Crossing, 🄿 Unmarked Cycle Crossing, 🄵🅅 Type: No Road Markings or Traffic Signals",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "crossing",
+ "value": "uncontrolled",
+ "description": "🄿 Marked Cycle & Foot Crossing (unsearchable), 🄿 Marked Crossing, 🄿 Marked Cycle Crossing, 🄵🅅 Type: Only Road Markings",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "crossing",
+ "value": "traffic_signals",
+ "description": "🄿 Cycle & Foot Crossing With Pedestrian Signals (unsearchable), 🄿 Crossing With Pedestrian Signals, 🄿 Cycle Crossing With Traffic Signals, 🄵🅅 Type: Crossing With Traffic Signals",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_signals.svg"
+ },
+ {
+ "key": "crossing",
+ "value": "marked",
+ "description": "🄿 Marked Cycle & Foot Crossing (unsearchable), 🄿 Marked Crossing (unsearchable), 🄿 Marked Cycle Crossing (unsearchable)",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_crosswalk.svg"
+ },
+ {
+ "key": "crossing",
+ "value": "informal",
+ "description": "🄿 Informal Crossing (unsearchable)",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "footway",
+ "value": "traffic_island",
+ "description": "🄿 Refuge Island",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "footway",
+ "value": "sidewalk",
+ "description": "🄿 Sidewalk",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"
+ },
+ {
+ "key": "footway",
+ "value": "crossing",
+ "description": "🄿 Pedestrian Crossing",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "footway",
+ "value": "access_aisle",
+ "description": "🄿 Access Aisle",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/striped_zone.svg"
+ },
+ {
+ "key": "crossing",
+ "value": "zebra",
+ "description": "🄿 Marked Crossing (unsearchable)",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_crosswalk.svg"
+ },
+ {
+ "key": "cycleway",
+ "value": "traffic_island",
+ "description": "🄿 Cycle Refuge Island",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-biking.svg"
+ },
+ {
+ "key": "moped",
+ "value": "designated",
+ "description": "🄿 Moped Link",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"
+ },
+ {
+ "key": "foot",
+ "value": "designated",
+ "description": "🄿 Cycle & Foot Path, 🄿 Cycle & Foot Crossing, 🄵🅅 Allowed Access: `designated`",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_and_cyclist.svg"
+ },
+ {
+ "key": "cycleway",
+ "value": "crossing",
+ "description": "🄿 Cycle Crossing (unsearchable)",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cyclist_crosswalk.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "speech_therapist",
+ "description": "🄿 Speech Therapist, 🄵🅅 Type: `speech_therapist`, 🄵🅅 Type: Speech Therapist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comment.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "sample_collection",
+ "description": "🄿 Sample Collection Facility, 🄵🅅 Type: Sample Collection Facility",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vial.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "rehabilitation",
+ "description": "🄿 Rehabilitation Facility, 🄵🅅 Type: Rehabilitation Facility",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "psychotherapist",
+ "description": "🄿 Psychotherapist, 🄵🅅 Type: `psychotherapist`, 🄵🅅 Type: Psychotherapist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "podiatrist",
+ "description": "🄿 Podiatrist, 🄵🅅 Type: Podiatrist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "physiotherapist",
+ "description": "🄿 Physiotherapist, 🄵🅅 Type: `physiotherapist`, 🄵🅅 Type: Physiotherapist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/physiotherapist.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "optometrist",
+ "description": "🄿 Optometrist, 🄵🅅 Type: Optometrist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-eye.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "occupational_therapist",
+ "description": "🄿 Occupational Therapist, 🄵🅅 Type: `occupational_therapist`, 🄵🅅 Type: Occupational Therapist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "midwife",
+ "description": "🄿 Midwife, 🄵🅅 Type: Midwife",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "laboratory",
+ "description": "🄿 Medical Laboratory, 🄵🅅 Type: Medical Laboratory",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vial.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "hospice",
+ "description": "🄿 Hospice, 🄵🅅 Type: Hospice",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-procedures.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "counselling",
+ "description": "🄿 Counselling Center, 🄵🅅 Type: Counselling Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comments.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "blood_donation",
+ "description": "🄿 Blood Donor Center, 🄵🅅 Type: Blood Donation Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/blood-bank.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "birthing_centre",
+ "description": "🄿 Birthing Center, 🄵🅅 Type: Birthing Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "audiologist",
+ "description": "🄿 Audiologist, 🄵🅅 Type: Audiologist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "alternative",
+ "description": "🄿 Alternative Medicine, 🄵🅅 Type: Alternative Medicine",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "yes",
+ "description": "🄿 Healthcare Facility (Unspecified Type) (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "orthodontics",
+ "description": "🄿 Orthodontist, 🄵🅅 Specialties: Orthodontics",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-teeth.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "traditional_chinese_medicine",
+ "description": "🄿 Traditional Chinese Medicine Practitioner, 🄵🅅 Specialties: Traditional Chinese Medicine",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "osteopathy",
+ "description": "🄿 Osteopath, 🄵🅅 Specialties: Osteopathy",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "naturopathy",
+ "description": "🄿 Naturopath, 🄵🅅 Specialties: Naturopathy",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "homeopathy",
+ "description": "🄿 Homeopath, 🄵🅅 Specialties: Homeopathy",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "chiropractic",
+ "description": "🄿 Chiropractor, 🄵🅅 Specialties: Chiropractic",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "ayurveda",
+ "description": "🄿 Ayurveda Practitioner, 🄵🅅 Specialties: Ayurveda",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hinduism.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "acupuncture",
+ "description": "🄿 Acupuncture Practitioner, 🄵🅅 Specialties: Acupuncture",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"
+ },
+ {
+ "key": "golf",
+ "value": "water_hazard",
+ "description": "🄿 Water Hazard",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"
+ },
+ {
+ "key": "golf",
+ "value": "tee",
+ "description": "🄿 Tee Box",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "golf",
+ "value": "rough",
+ "description": "🄿 Rough",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"
+ },
+ {
+ "key": "golf",
+ "value": "path",
+ "description": "🄿 Golf Walking Path",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"
+ },
+ {
+ "key": "golf",
+ "value": "lateral_water_hazard",
+ "description": "🄿 Lateral Water Hazard",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"
+ },
+ {
+ "key": "golf",
+ "value": "hole",
+ "description": "🄿 Golf Hole",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/golf_green.svg"
+ },
+ {
+ "key": "golf",
+ "value": "green",
+ "description": "🄿 Putting Green",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/golf_green.svg"
+ },
+ {
+ "key": "golf",
+ "value": "fairway",
+ "description": "🄿 Fairway",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"
+ },
+ {
+ "key": "golf",
+ "value": "driving_range",
+ "description": "🄿 Driving Range",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"
+ },
+ {
+ "key": "golf",
+ "value": "clubhouse",
+ "description": "🄿 Golf Clubhouse",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"
+ },
+ {
+ "key": "golf",
+ "value": "cartpath",
+ "description": "🄿 Golf Cartpath",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/golf_cart.svg"
+ },
+ {
+ "key": "golf",
+ "value": "bunker",
+ "description": "🄿 Sand Trap",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"
+ },
+ {
+ "key": "entrance",
+ "value": "staircase",
+ "description": "🄿 Staircase Entrance, 🄵🅅 Type: Staircase",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"
+ },
+ {
+ "key": "entrance",
+ "value": "shop",
+ "description": "🄿 Shop Entrance, 🄵🅅 Type: Shop Entrance",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"
+ },
+ {
+ "key": "entrance",
+ "value": "main",
+ "description": "🄿 Main Entrance, 🄵🅅 Type: Main",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "emergency_ward_entrance",
+ "description": "🄿 Emergency Room Entrance",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "entrance",
+ "value": "emergency",
+ "description": "🄿 Emergency Exit, 🄵🅅 Type: Emergency Exit",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "siren",
+ "description": "🄿 Siren",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-volume-up.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "phone",
+ "description": "🄿 Emergency Phone",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/emergency-phone.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "mountain_rescue",
+ "description": "🄿 Mountain Rescue",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mountain_cross.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "lifeguard",
+ "description": "🄿 Lifeguard",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-life-ring.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "water_rescue",
+ "description": "🄿 Lifeboat Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat_tour.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "life_ring",
+ "description": "🄿 Life Ring",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-life-ring.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "landing_site",
+ "description": "🄿 Emergency Landing Site",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "first_aid_kit",
+ "description": "🄿 First Aid Kit",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-medkit.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "fire_service_inlet",
+ "description": "🄿 Fire Department Connection",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "fire_hydrant",
+ "description": "🄿 Fire Hydrant",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fire_hydrant.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "fire_hose",
+ "description": "🄿 Fire Hose",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "fire_extinguisher",
+ "description": "🄿 Fire Extinguisher",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fire-extinguisher.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "fire_alarm_box",
+ "description": "🄿 Fire Alarm Call Box",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bell.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "disaster_response",
+ "description": "🄿 Disaster Response Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-helmet-safety.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "defibrillator",
+ "description": "🄿 Defibrillator",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/defibrillator.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "assembly_point",
+ "description": "🄿 Emergency Assembly Point",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compress-arrows-alt.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "ambulance_station",
+ "description": "🄿 Ambulance Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ambulance.svg"
+ },
+ {
+ "key": "emergency",
+ "value": "yes",
+ "description": "🄿 Emergency Feature (unsearchable)",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "emergency",
+ "value": "private",
+ "description": "🄿 Emergency Feature (unsearchable)",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "emergency",
+ "value": "official",
+ "description": "🄿 Emergency Feature (unsearchable)",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "emergency",
"value": "no",
- "description": "🄵🅅 Parcel Pickup: No"
+ "description": "🄿 Emergency Feature (unsearchable)",
+ "object_types": [
+ "way"
+ ]
},
{
- "key": "park_ride",
- "description": "🄵 Park and Ride"
+ "key": "emergency",
+ "value": "destination",
+ "description": "🄿 Emergency Feature (unsearchable)",
+ "object_types": [
+ "way"
+ ]
},
{
- "key": "parking",
- "description": "🄵 Type"
+ "key": "emergency",
+ "value": "designated",
+ "description": "🄿 Emergency Feature (unsearchable)",
+ "object_types": [
+ "way"
+ ]
},
{
- "key": "parking",
- "value": "surface",
- "description": "🄵🅅 Type: `surface`, 🄵🅅 Type: Surface"
+ "key": "fire_hydrant:type",
+ "value": "underground",
+ "description": "🄿 Underground Fire Hydrant, 🄵🅅 Shape: Underground",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fire_hydrant_underground.svg"
+ },
+ {
+ "key": "fire_hydrant:type",
+ "value": "pillar",
+ "description": "🄿 Pillar Fire Hydrant, 🄵🅅 Shape: Pillar/Aboveground",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fire_hydrant.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "university",
+ "description": "🄿 University Grounds",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/college.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "school",
+ "description": "🄿 School Grounds",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "prep_school",
+ "description": "🄿 Test Prep / Tutoring School",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "music_school",
+ "description": "🄿 Music School",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "language_school",
+ "description": "🄿 Language School",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "kindergarten",
+ "description": "🄿 Preschool / Kindergarten Grounds",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "driving_school",
+ "description": "🄿 Driving School",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_pool.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "dancing_school",
+ "description": "🄿 Dance School",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "college",
+ "description": "🄿 College Grounds",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/college.svg"
+ },
+ {
+ "key": "education",
+ "value": "yes",
+ "description": "🄿 Education Facility (Unspecified Type) (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"
+ },
+ {
+ "key": "disused:shop",
+ "description": "🄿 Disused Shop (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store-alt-slash.svg"
+ },
+ {
+ "key": "disused:railway",
+ "description": "🄿 Disused Railway Feature (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rail_profile.svg"
+ },
+ {
+ "key": "disused:amenity",
+ "description": "🄿 Disused Amenity (unsearchable), 🄵 Type",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "disc_golf",
+ "value": "tee",
+ "description": "🄿 Disc Golf Tee",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/disc_golf_basket.svg"
+ },
+ {
+ "key": "disc_golf",
+ "value": "hole",
+ "description": "🄿 Disc Golf Hole",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/disc_golf_basket.svg"
+ },
+ {
+ "key": "disc_golf",
+ "value": "basket",
+ "description": "🄿 Disc Golf Basket",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/disc_golf_basket.svg"
+ },
+ {
+ "key": "demolished:building",
+ "description": "🄿 Recently Demolished Building (unsearchable)",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-house-damage.svg"
+ },
+ {
+ "key": "cycleway",
+ "value": "asl",
+ "description": "🄿 Advanced Stop Line",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle.svg"
+ },
+ {
+ "key": "craft",
+ "value": "winery",
+ "description": "🄿 Winery, 🄵🅅 Type: Winery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/alcohol-shop.svg"
+ },
+ {
+ "key": "craft",
+ "value": "window_construction",
+ "description": "🄿 Window Construction, 🄵🅅 Type: Window Construction",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/window.svg"
+ },
+ {
+ "key": "craft",
+ "value": "watchmaker",
+ "description": "🄿 Watchmaker, 🄵🅅 Type: Watchmaker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watch.svg"
+ },
+ {
+ "key": "craft",
+ "value": "upholsterer",
+ "description": "🄿 Upholsterer, 🄵🅅 Type: Upholsterer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-couch.svg"
+ },
+ {
+ "key": "craft",
+ "value": "tinsmith",
+ "description": "🄿 Tinsmith, 🄵🅅 Type: Tinsmith",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "craft",
+ "value": "tiler",
+ "description": "🄿 Tiler, 🄵🅅 Type: Tiler",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/brick_trowel.svg"
+ },
+ {
+ "key": "craft",
+ "value": "stonemason",
+ "description": "🄿 Stonemason, 🄵🅅 Type: Stonemason",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/brick_trowel.svg"
+ },
+ {
+ "key": "craft",
+ "value": "signmaker",
+ "description": "🄿 Signmaker, 🄵🅅 Type: Signmaker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-sign-hanging.svg"
+ },
+ {
+ "key": "craft",
+ "value": "shoemaker",
+ "description": "🄿 Shoemaker, 🄵🅅 Type: Shoemaker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hammer_shoe.svg"
+ },
+ {
+ "key": "craft",
+ "value": "sculptor",
+ "description": "🄿 Sculptor, 🄵🅅 Type: Sculptor",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"
+ },
+ {
+ "key": "craft",
+ "value": "scaffolder",
+ "description": "🄿 Scaffolder, 🄵🅅 Type: Scaffolder",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/scaffold.svg"
+ },
+ {
+ "key": "craft",
+ "value": "sawmill",
+ "description": "🄿 Sawmill, 🄵🅅 Type: Sawmill",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging.svg"
+ },
+ {
+ "key": "craft",
+ "value": "sailmaker",
+ "description": "🄿 Sailmaker, 🄵🅅 Type: Sailmaker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "craft",
+ "value": "saddler",
+ "description": "🄿 Saddler, 🄵🅅 Type: Saddler",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "craft",
+ "value": "roofer",
+ "description": "🄿 Roofer, 🄵🅅 Type: Roofer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"
+ },
+ {
+ "key": "craft",
+ "value": "rigger",
+ "description": "🄿 Rigger, 🄵🅅 Type: Rigger",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "craft",
+ "value": "pottery",
+ "description": "🄿 Pottery Maker, 🄵🅅 Type: Pottery Maker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vase.svg"
+ },
+ {
+ "key": "craft",
+ "value": "plumber",
+ "description": "🄿 Plumber, 🄵🅅 Type: Plumber",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plumber.svg"
+ },
+ {
+ "key": "craft",
+ "value": "plasterer",
+ "description": "🄿 Plasterer, 🄵🅅 Type: Plasterer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/brick_trowel.svg"
+ },
+ {
+ "key": "craft",
+ "value": "photographic_laboratory",
+ "description": "🄿 Photographic Laboratory, 🄵🅅 Type: Photographic Laboratory",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-film.svg"
+ },
+ {
+ "key": "craft",
+ "value": "photographer",
+ "description": "🄿 Photographer, 🄵🅅 Type: Photographer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/attraction.svg"
+ },
+ {
+ "key": "craft",
+ "value": "parquet_layer",
+ "description": "🄿 Parquet Layer, 🄵🅅 Type: Parquet Layer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/brick_trowel.svg"
+ },
+ {
+ "key": "craft",
+ "value": "painter",
+ "description": "🄿 Painter, 🄵🅅 Type: Painter",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paint-roller.svg"
+ },
+ {
+ "key": "craft",
+ "value": "metal_construction",
+ "description": "🄿 Metalworker, 🄵🅅 Type: Metalworker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "craft",
+ "value": "key_cutter",
+ "description": "🄿 Key Cutter, 🄵🅅 Type: Key Cutter",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-key.svg"
+ },
+ {
+ "key": "craft",
+ "value": "joiner",
+ "description": "🄿 Joiner, 🄵🅅 Type: Joiner",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"
+ },
+ {
+ "key": "craft",
+ "value": "insulation",
+ "description": "🄿 Insulator, 🄵🅅 Type: Insulator",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "craft",
+ "value": "hvac",
+ "description": "🄿 HVAC Workplace, 🄵🅅 Type: HVAC",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "craft",
+ "value": "handicraft",
+ "description": "🄿 Handicraft Workspace, 🄵🅅 Type: Handicraft",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vase.svg"
+ },
+ {
+ "key": "craft",
+ "value": "glaziery",
+ "description": "🄿 Glaziery, 🄵🅅 Type: Glaziery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/window.svg"
+ },
+ {
+ "key": "craft",
+ "value": "gardener",
+ "description": "🄿 Gardener, 🄵🅅 Type: Gardener",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre.svg"
+ },
+ {
+ "key": "craft",
+ "value": "floorer",
+ "description": "🄿 Floorer, 🄵🅅 Type: Floorer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/brick_trowel.svg"
+ },
+ {
+ "key": "craft",
+ "value": "electronics_repair",
+ "description": "🄿 Electronics Repair Shop, 🄵🅅 Type: Electronics Repair",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-screwdriver.svg"
+ },
+ {
+ "key": "craft",
+ "value": "electrician",
+ "description": "🄿 Electrician, 🄵🅅 Type: Electrician",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"
+ },
+ {
+ "key": "craft",
+ "value": "dressmaker",
+ "description": "🄿 Dressmaker, 🄵🅅 Type: Dressmaker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/dress.svg"
+ },
+ {
+ "key": "craft",
+ "value": "distillery",
+ "description": "🄿 Distillery, 🄵🅅 Type: Distillery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_fermenter.svg"
+ },
+ {
+ "key": "craft",
+ "value": "confectionery",
+ "description": "🄿 Candy Maker, 🄵🅅 Type: Candy Maker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery.svg"
+ },
+ {
+ "key": "craft",
+ "value": "clockmaker",
+ "description": "🄿 Clockmaker, 🄵🅅 Type: Clockmaker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/clock.svg"
+ },
+ {
+ "key": "craft",
+ "value": "cleaning",
+ "description": "🄿 Cleaning Service, 🄵🅅 Type: Cleaning Service",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vacuum.svg"
+ },
+ {
+ "key": "craft",
+ "value": "chimney_sweeper",
+ "description": "🄿 Chimney Sweeper, 🄵🅅 Type: Chimney Sweeper",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/chimney.svg"
+ },
+ {
+ "key": "craft",
+ "value": "caterer",
+ "description": "🄿 Caterer, 🄵🅅 Type: Caterer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/catering.svg"
+ },
+ {
+ "key": "craft",
+ "value": "carpet_layer",
+ "description": "🄿 Carpet Layer, 🄵🅅 Type: Carpet Layer",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"
+ },
+ {
+ "key": "craft",
+ "value": "carpenter",
+ "description": "🄿 Carpenter, 🄵🅅 Type: Carpenter",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"
+ },
+ {
+ "key": "craft",
+ "value": "brewery",
+ "description": "🄿 Craft Brewery, 🄵🅅 Type: Brewery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_fermenter.svg"
+ },
+ {
+ "key": "craft",
+ "value": "bookbinder",
+ "description": "🄿 Bookbinder, 🄵🅅 Type: Bookbinder",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library.svg"
+ },
+ {
+ "key": "craft",
+ "value": "boatbuilder",
+ "description": "🄿 Boat Builder, 🄵🅅 Type: Boat Builder",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat_repair.svg"
+ },
+ {
+ "key": "craft",
+ "value": "blacksmith",
+ "description": "🄿 Blacksmith, 🄵🅅 Type: Blacksmith",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/anvil_and_hammer.svg"
+ },
+ {
+ "key": "craft",
+ "value": "beekeeper",
+ "description": "🄿 Beekeeper, 🄵🅅 Type: Beekeeper",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"
+ },
+ {
+ "key": "craft",
+ "value": "basket_maker",
+ "description": "🄿 Basket Maker, 🄵🅅 Type: Basket Maker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vase.svg"
+ },
+ {
+ "key": "craft",
+ "value": "agricultural_engines",
+ "description": "🄿 Agricultural Engines Mechanic, 🄵🅅 Type: Agricultural Engines Mechanic",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tools.svg"
+ },
+ {
+ "key": "craft",
+ "value": "tailor",
+ "description": "🄿 Tailor (unsearchable), 🄵🅅 Type: Tailor",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/needle_and_spool.svg"
+ },
+ {
+ "key": "craft",
+ "value": "locksmith",
+ "description": "🄿 Locksmith (unsearchable), 🄵🅅 Type: Locksmith",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/marker-stroked.svg"
+ },
+ {
+ "key": "club",
+ "value": "sport",
+ "description": "🄿 Sports Club",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "club",
+ "value": "scout",
+ "description": "🄿 Scout Group",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"
+ },
+ {
+ "key": "climbing",
+ "value": "route_bottom",
+ "description": "🄿 Climbing Route Start",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/abseiling.svg"
+ },
+ {
+ "key": "climbing",
+ "value": "route",
+ "description": "🄿 Climbing Route",
+ "object_types": [
+ "way",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/climbing.svg"
+ },
+ {
+ "key": "cemetery",
+ "value": "sector",
+ "description": "🄿 Cemetery Section",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"
+ },
+ {
+ "key": "cemetery",
+ "value": "grave",
+ "description": "🄿 Grave",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"
+ },
+ {
+ "key": "building",
+ "value": "warehouse",
+ "description": "🄿 Warehouse, 🄵🅅 Building: Warehouse",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/warehouse.svg"
+ },
+ {
+ "key": "building",
+ "value": "university",
+ "description": "🄿 University Building, 🄵🅅 Building: University Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"
+ },
+ {
+ "key": "building",
+ "value": "transportation",
+ "description": "🄿 Transportation Building, 🄵🅅 Building: Transportation Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "terrace",
+ "description": "🄿 Row of Townhouses, 🄵🅅 Building: Row Houses",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/row_houses.svg"
+ },
+ {
+ "key": "building",
+ "value": "temple",
+ "description": "🄿 Temple Building, 🄵🅅 Building: Temple Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"
+ },
+ {
+ "key": "building",
+ "value": "synagogue",
+ "description": "🄿 Synagogue Building, 🄵🅅 Building: Synagogue Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-synagogue.svg"
+ },
+ {
+ "key": "building",
+ "value": "sty",
+ "description": "🄿 Pigsty, 🄵🅅 Building: Pigsty",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/barn.svg"
+ },
+ {
+ "key": "building",
+ "value": "static_caravan",
+ "description": "🄿 Mobile Home, 🄵🅅 Building: Mobile Home",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/manufactured_home.svg"
+ },
+ {
+ "key": "building",
+ "value": "stadium",
+ "description": "🄿 Stadium Building, 🄵🅅 Building: Stadium Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/stadium.svg"
+ },
+ {
+ "key": "building",
+ "value": "stable",
+ "description": "🄿 Stable, 🄵🅅 Building: Stable",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horse_shelter.svg"
+ },
+ {
+ "key": "building",
+ "value": "shed",
+ "description": "🄿 Shed, 🄵🅅 Building: Shed",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"
+ },
+ {
+ "key": "building",
+ "value": "service",
+ "description": "🄿 Service Building, 🄵🅅 Building: Service Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "semidetached_house",
+ "description": "🄿 Semi-Detached House, 🄵🅅 Building: Semi-Detached House",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"
+ },
+ {
+ "key": "building",
+ "value": "school",
+ "description": "🄿 School Building, 🄵🅅 Building: School Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"
+ },
+ {
+ "key": "building",
+ "value": "ruins",
+ "description": "🄿 Building Ruins, 🄵🅅 Building: Building Ruins",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"
+ },
+ {
+ "key": "building",
+ "value": "riding_hall",
+ "description": "🄿 Indoor Horseback Riding Arena, 🄵🅅 Building: Horseback Riding Arena",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"
+ },
+ {
+ "key": "building",
+ "value": "retail",
+ "description": "🄿 Retail Building, 🄵🅅 Building: Retail Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial.svg"
+ },
+ {
+ "key": "building",
+ "value": "residential",
+ "description": "🄿 Residential Building, 🄵🅅 Building: Residential Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community.svg"
+ },
+ {
+ "key": "building",
+ "value": "public",
+ "description": "🄿 Public Building, 🄵🅅 Building: Public Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "pavilion",
+ "description": "🄿 Pavilion Building, 🄵🅅 Building: Pavilion Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "office",
+ "description": "🄿 Office Building, 🄵🅅 Building: Office Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "building",
+ "value": "mosque",
+ "description": "🄿 Mosque Building, 🄵🅅 Building: Mosque Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mosque.svg"
+ },
+ {
+ "key": "building",
+ "value": "kindergarten",
+ "description": "🄿 Preschool / Kindergarten Building, 🄵🅅 Building: Preschool / Kindergarten Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"
+ },
+ {
+ "key": "building",
+ "value": "industrial",
+ "description": "🄿 Industrial Building, 🄵🅅 Building: Industrial Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"
+ },
+ {
+ "key": "building",
+ "value": "hut",
+ "description": "🄿 Hut, 🄵🅅 Building: Hut",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hut.svg"
+ },
+ {
+ "key": "building",
+ "value": "houseboat",
+ "description": "🄿 Houseboat, 🄵🅅 Building: Houseboat",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/houseboat.svg"
+ },
+ {
+ "key": "building",
+ "value": "house",
+ "description": "🄿 House, 🄵🅅 Building: House",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"
+ },
+ {
+ "key": "building",
+ "value": "hotel",
+ "description": "🄿 Hotel Building, 🄵🅅 Building: Hotel Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hotel.svg"
+ },
+ {
+ "key": "building",
+ "value": "hospital",
+ "description": "🄿 Hospital Building, 🄵🅅 Building: Hospital Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hospital-alt.svg"
+ },
+ {
+ "key": "building",
+ "value": "hangar",
+ "description": "🄿 Hangar Building, 🄵🅅 Building: Hangar Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hangar.svg"
+ },
+ {
+ "key": "building",
+ "value": "greenhouse",
+ "description": "🄿 Greenhouse, 🄵🅅 Building: Greenhouse",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre.svg"
+ },
+ {
+ "key": "building",
+ "value": "grandstand",
+ "description": "🄿 Grandstand, 🄵🅅 Building: Grandstand",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "ger",
+ "description": "🄿 Yurt, 🄵🅅 Building: Yurt",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hut.svg"
+ },
+ {
+ "key": "building",
+ "value": "garages",
+ "description": "🄿 Garages, 🄵🅅 Building: Garages",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"
+ },
+ {
+ "key": "building",
+ "value": "garage",
+ "description": "🄿 Garage, 🄵🅅 Building: Garage",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"
+ },
+ {
+ "key": "building",
+ "value": "fire_station",
+ "description": "🄿 Fire Station Building, 🄵🅅 Building: Fire Station Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-house-fire.svg"
+ },
+ {
+ "key": "building",
+ "value": "farm_auxiliary",
+ "description": "🄿 Farm Building, 🄵🅅 Building: Farm Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"
+ },
+ {
+ "key": "building",
+ "value": "farm",
+ "description": "🄿 Farm House, 🄵🅅 Building: Farm House",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"
+ },
+ {
+ "key": "building",
+ "value": "dormitory",
+ "description": "🄿 Dormitory, 🄵🅅 Building: Dormitory",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "detached",
+ "description": "🄿 Detached House, 🄵🅅 Building: Detached House",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"
+ },
+ {
+ "key": "building",
+ "value": "cowshed",
+ "description": "🄿 Cowshed, 🄵🅅 Building: Cowshed",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/barn.svg"
+ },
+ {
+ "key": "building",
+ "value": "construction",
+ "description": "🄿 Building Under Construction, 🄵🅅 Building: Building Under Construction",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "commercial",
+ "description": "🄿 Commercial Building, 🄵🅅 Building: Commercial Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"
+ },
+ {
+ "key": "building",
+ "value": "college",
+ "description": "🄿 College Building, 🄵🅅 Building: College Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"
+ },
+ {
+ "key": "building",
+ "value": "civic",
+ "description": "🄿 Civic Building, 🄵🅅 Building: Civic Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "church",
+ "description": "🄿 Church Building, 🄵🅅 Building: Church Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-church.svg"
+ },
+ {
+ "key": "building",
+ "value": "chapel",
+ "description": "🄿 Chapel Building, 🄵🅅 Building: Chapel Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"
+ },
+ {
+ "key": "building",
+ "value": "cathedral",
+ "description": "🄿 Cathedral Building, 🄵🅅 Building: Cathedral Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-church.svg"
+ },
+ {
+ "key": "building",
+ "value": "carport",
+ "description": "🄿 Carport, 🄵🅅 Building: Carport",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/carport.svg"
+ },
+ {
+ "key": "building",
+ "value": "cabin",
+ "description": "🄿 Cabin, 🄵🅅 Building: Cabin",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cabin.svg"
+ },
+ {
+ "key": "building",
+ "value": "bungalow",
+ "description": "🄿 Bungalow, 🄵🅅 Building: Bungalow",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"
+ },
+ {
+ "key": "building",
+ "value": "boathouse",
+ "description": "🄿 Boathouse, 🄵🅅 Building: Boathouse",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor.svg"
+ },
+ {
+ "key": "building",
+ "value": "barn",
+ "description": "🄿 Barn, 🄵🅅 Building: Barn",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/barn.svg"
+ },
+ {
+ "key": "building",
+ "value": "bakehouse",
+ "description": "🄿 Bakehouse",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bread.svg"
+ },
+ {
+ "key": "building",
+ "value": "apartments",
+ "description": "🄿 Apartment Building, 🄵🅅 Building: Apartment Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "allotment_house",
+ "description": "🄿 Allotment House, 🄵🅅 Building: Allotment House",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "train_station",
+ "description": "🄿 Train Station Building (unsearchable), 🄵🅅 Building: Train Station Building",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "outbuilding",
+ "description": "🄿 Outbuilding (unsearchable), 🄵🅅 Building: Outbuilding",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"
+ },
+ {
+ "key": "building",
+ "value": "manufacture",
+ "description": "🄿 Industrial Production Building (unsearchable), 🄵🅅 Building: Industrial Production Building",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"
+ },
+ {
+ "key": "building",
+ "value": "entrance",
+ "description": "🄿 Entrance/Exit (unsearchable), 🄳 (deprecated tag) ➜ entrance=*",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"
+ },
+ {
+ "key": "building",
+ "value": "bunker",
+ "description": "🄿 Bunker (unsearchable), 🄵🅅 Building: Bunker",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bunker.svg"
+ },
+ {
+ "key": "house",
+ "value": "terraced",
+ "description": "🄿 Townhouse, 🄵🅅 House Type: `terraced`",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/row_houses.svg"
+ },
+ {
+ "key": "house",
+ "value": "terrace",
+ "description": "🄿 Row of Townhouses (unsearchable), 🄵🅅 House Type: `terrace`",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/row_houses.svg"
+ },
+ {
+ "key": "house",
+ "value": "semi-detached",
+ "description": "🄿 Semi-Detached House (unsearchable), 🄵🅅 House Type: `semi-detached`",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"
+ },
+ {
+ "key": "house",
+ "value": "detached",
+ "description": "🄿 Detached House (unsearchable), 🄵🅅 House Type: `detached`",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"
+ },
+ {
+ "key": "bridge:support",
+ "description": "🄿 Bridge Support, 🄵 Type",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"
+ },
+ {
+ "key": "bridge:support",
+ "value": "pier",
+ "description": "🄿 Bridge Pier",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"
+ },
+ {
+ "key": "boundary",
+ "value": "hazard",
+ "description": "🄿 Hazardous Area",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-triangle-exclamation.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "wicket_gate",
+ "description": "🄿 Wicket Gate",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gate.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "wall",
+ "description": "🄿 Wall, 🄵🅅 Type: Wall",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "turnstile",
+ "description": "🄿 Turnstile, 🄵🅅 Type: Turnstile",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/turnstile.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "toll_booth",
+ "description": "🄿 Toll Booth, 🄵🅅 Type: Toll Booth",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/toll.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "swing_gate",
+ "description": "🄿 Swing Gate, 🄵🅅 Type: Swing Gate",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gate.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "stile",
+ "description": "🄿 Stile, 🄵🅅 Type: Stile",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/stile_squeezer.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "spikes",
+ "description": "🄿 Spike Strip",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/spike_strip.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "sally_port",
+ "description": "🄿 Sally Port",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dungeon.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "rope",
+ "description": "🄿 Rope Fence",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rope_fence.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "retaining_wall",
+ "description": "🄿 Retaining Wall, 🄵🅅 Type: Retaining Wall",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "motorcycle_barrier",
+ "description": "🄿 Motorcycle Barrier",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "log",
+ "description": "🄿 Fallen Tree Obstruction",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "lift_gate",
+ "description": "🄿 Boom Barrier, 🄵🅅 Type: Boom Gate",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/lift_gate.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "kissing_gate",
+ "description": "🄿 Kissing Gate, 🄵🅅 Type: Kissing Gate",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gate.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "kerb",
+ "description": "🄿 Curb, 🄵🅅 Type: Curb",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kerb-unspecified.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "jersey_barrier",
+ "description": "🄿 Jersey Barrier, 🄵🅅 Type: Jersey Barrier",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "height_restrictor",
+ "description": "🄿 Height Restrictor, 🄵🅅 Type: Height Restrictor",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/height_restrictor.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "hedge",
+ "description": "🄿 Hedge, 🄵🅅 Type: Hedge",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hedge.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "hampshire_gate",
+ "description": "🄿 Wire Gate",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gate.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "guard_rail",
+ "description": "🄿 Guard Rail, 🄵🅅 Type: Guard Rail",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/guard_rail.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "gate",
+ "description": "🄿 Gate, 🄵🅅 Type: Gate",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gate.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "full-height_turnstile",
+ "description": "🄿 Full-Height Turnstile",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "fence",
+ "description": "🄿 Fence, 🄵🅅 Type: Fence",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fence.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "ditch",
+ "description": "🄿 Trench, 🄵🅅 Type: Ditch",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/trench.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "cycle_barrier",
+ "description": "🄿 Cycle Barrier, 🄵🅅 Type: Cycle Barrier",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cycle_barrier.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "city_wall",
+ "description": "🄿 City Wall, 🄵🅅 Type: City Wall",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "chain",
+ "description": "🄿 Chain, 🄵🅅 Type: Chain",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rope_fence.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "cattle_grid",
+ "description": "🄿 Cattle Grid, 🄵🅅 Type: Cattle Grid",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cattle_grid.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "cable_barrier",
+ "description": "🄿 Cable Barrier",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "bus_trap",
+ "description": "🄿 Bus Trap",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "bump_gate",
+ "description": "🄿 Bump Gate",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "border_control",
+ "description": "🄿 Border Control",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/passport_checkpoint.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "bollard",
+ "description": "🄿 Bollard Row, 🄿 Bollard, 🄵🅅 Type: Bollard",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bollard_row.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "block",
+ "description": "🄿 Block, 🄵🅅 Type: Large Block",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cube.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "yes",
+ "description": "🄿 Barrier (Unspecified Type) (unsearchable)",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "handrail",
+ "description": "🄿 Handrail (unsearchable)",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railing.svg"
+ },
+ {
+ "key": "barrier",
+ "value": "entrance",
+ "description": "🄿 Entrance (unsearchable), 🄵🅅 Type: Entrance",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"
+ },
+ {
+ "key": "wall",
+ "value": "noise_barrier",
+ "description": "🄿 Noise Barrier",
+ "object_types": [
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"
+ },
+ {
+ "key": "kerb",
+ "value": "rolled",
+ "description": "🄿 Rolled Curb, 🄵🅅 Curb: `rolled`, 🄵🅅 Type: `rolled`",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kerb-rolled.svg"
+ },
+ {
+ "key": "kerb",
+ "value": "raised",
+ "description": "🄿 Raised Curb, 🄵🅅 Curb: `raised`, 🄵🅅 Type: `raised`",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kerb-raised.svg"
+ },
+ {
+ "key": "kerb",
+ "value": "lowered",
+ "description": "🄿 Lowered Curb, 🄵🅅 Curb: `lowered`, 🄵🅅 Type: `lowered`",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kerb-lowered.svg"
+ },
+ {
+ "key": "kerb",
+ "value": "flush",
+ "description": "🄿 Flush Curb, 🄵🅅 Curb: `flush`, 🄵🅅 Type: `flush`",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kerb-flush.svg"
+ },
+ {
+ "key": "fence_type",
+ "value": "railing",
+ "description": "🄿 Railing",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railing.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "water_slide",
+ "description": "🄿 Water Slide, 🄵🅅 Type: Water Slide",
+ "object_types": [
+ "node",
+ "way"
+ ]
+ },
+ {
+ "key": "attraction",
+ "value": "train",
+ "description": "🄿 Tourist Train, 🄵🅅 Type: Tourist Train",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train_kids.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "swing_carousel",
+ "description": "🄿 Swing Carousel, 🄵🅅 Type: Swing Carousel",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tower.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "summer_toboggan",
+ "description": "🄿 Summer Toboggan, 🄵🅅 Type: Summer Toboggan",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sledding.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "roller_coaster",
+ "description": "🄿 Roller Coaster, 🄵🅅 Type: Roller Coaster",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/roller_coaster.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "river_rafting",
+ "description": "🄿 River Rapids Ride, 🄵🅅 Type: River Rapids Ride",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ferry.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "pirate_ship",
+ "description": "🄿 Pirate Ship Ride, 🄵🅅 Type: Pirate Ship Ride",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "maze",
+ "description": "🄿 Maze, 🄵🅅 Type: Maze",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/maze.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "log_flume",
+ "description": "🄿 Log Flume, 🄵🅅 Type: Log Flume",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ferry.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "kiddie_ride",
+ "description": "🄿 Kiddie Ride, 🄵🅅 Type: Kiddie Ride",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/amusement_park.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "drop_tower",
+ "description": "🄿 Drop Tower Ride, 🄵🅅 Type: Drop Tower Ride",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tower.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "dark_ride",
+ "description": "🄿 Dark Ride, 🄵🅅 Type: Dark Ride",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/rail-metro.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "carousel",
+ "description": "🄿 Carousel, 🄵🅅 Type: Carousel",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/amusement_park.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "bungee_jumping",
+ "description": "🄿 Bungee Jumping, 🄵🅅 Type: Bungee Jumping",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "bumper_car",
+ "description": "🄿 Bumper Cars, 🄵🅅 Type: Bumper Cars",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-car-crash.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "big_wheel",
+ "description": "🄿 Ferris Wheel, 🄵🅅 Type: Ferris Wheel",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "animal",
+ "description": "🄿 Animal Enclosure, 🄵🅅 Type: Animal Enclosure",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/zoo.svg"
+ },
+ {
+ "key": "attraction",
+ "value": "amusement_ride",
+ "description": "🄿 Amusement Ride, 🄵🅅 Type: Amusement Ride",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park.svg"
+ },
+ {
+ "key": "area:highway",
+ "description": "🄿 Road Area, 🄵 Type",
+ "object_types": [
+ "area"
+ ]
+ },
+ {
+ "key": "area:highway",
+ "value": "footway",
+ "description": "🄿 Footway Area",
+ "object_types": [
+ "area"
+ ]
+ },
+ {
+ "key": "area:highway",
+ "value": "traffic_island",
+ "description": "🄿 Traffic Island Area",
+ "object_types": [
+ "area"
+ ]
+ },
+ {
+ "key": "amenity",
+ "value": "weighbridge",
+ "description": "🄿 Truck Scale",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-weight.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "watering_place",
+ "description": "🄿 Animal Watering Place",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "water_point",
+ "description": "🄿 RV Drinking Water",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "waste_transfer_station",
+ "description": "🄿 Waste Transfer Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-trash-restore.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "waste_disposal",
+ "description": "🄿 Garbage Dumpster",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumpster.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "waste_basket",
+ "description": "🄿 Trash Can",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waste-basket.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "veterinary_pharmacy",
+ "description": "🄿 Veterinary Pharmacy",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/veterinary_care.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "veterinary",
+ "description": "🄿 Veterinary",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/veterinary_care.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "vending_machine",
+ "description": "🄿 Vending Machine",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "vehicle_inspection",
+ "description": "🄿 Vehicle Inspection",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "vacuum_cleaner",
+ "description": "🄿 Vacuum Cleaning Station",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vacuum_station.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "trolley_bay",
+ "description": "🄿 Cart Corral",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-cart.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "toy_library",
+ "description": "🄿 Toy Library",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chess-knight.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "townhall",
+ "description": "🄿 Town Hall",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/town_hall.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "toilets",
+ "description": "🄿 Restroom",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/toilet.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "ticket_validator",
+ "description": "🄿 Ticket Validator",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_tickets.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "theatre",
+ "description": "🄿 Theater",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "telephone",
+ "description": "🄿 Telephone",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-phone-alt.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "taxi",
+ "description": "🄿 Taxi Stand",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-taxi.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "swingerclub",
+ "description": "🄿 Swinger Club",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heart.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "studio",
+ "description": "🄿 Studio",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "stripclub",
+ "description": "🄿 Strip club",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "amenity",
+ "value": "social_facility",
+ "description": "🄿 Social Facility",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/social_facility.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "social_centre",
+ "description": "🄿 Social Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "smoking_area",
+ "description": "🄿 Smoking Area",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-smoking.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "shower",
+ "description": "🄿 Shower",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shower.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "shelter",
+ "description": "🄿 Shelter",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "sanitary_dump_station",
+ "description": "🄿 RV Toilet Disposal",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/camper_trailer_dump.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "restaurant",
+ "description": "🄿 Restaurant",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "research_institute",
+ "description": "🄿 Research Institute Grounds",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flask.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "refugee_site",
+ "description": "🄿 Refugee Camp",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tents.svg"
+ },
+ {
+ "key": "recycling_type",
+ "value": "container",
+ "description": "🄿 Recycling Bin, 🄵🅅 Type: Container",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"
+ },
+ {
+ "key": "recycling_type",
+ "value": "centre",
+ "description": "🄿 Recycling Center, 🄵🅅 Type: Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "ranger_station",
+ "description": "🄿 Ranger Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ranger-station.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "public_bookcase",
+ "description": "🄿 Public Bookcase",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "public_bath",
+ "description": "🄿 Public Bath",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-water-ladder.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "pub",
+ "description": "🄿 Pub",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "prison",
+ "description": "🄿 Prison Grounds",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/prison.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "post_office",
+ "description": "🄿 Post Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/post.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "post_depot",
+ "description": "🄿 Post Sorting Office",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mail-bulk.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "post_box",
+ "description": "🄿 Mail Drop Box",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/post_box.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "polling_station",
+ "description": "🄿 Permanent Polling Place",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vote-yea.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "police",
+ "description": "🄿 Police",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/police_officer.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "planetarium",
+ "description": "🄿 Planetarium",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/globe.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "place_of_worship",
+ "description": "🄿 Place of Worship",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "photo_booth",
+ "description": "🄿 Photo Booth",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-person-booth.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "pharmacy",
+ "description": "🄿 Pharmacy Counter",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pharmacy.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "payment_terminal",
+ "description": "🄿 Payment Terminal",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/far-credit-card.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "payment_centre",
+ "description": "🄿 Payment Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "parking_space",
+ "description": "🄿 Parking Space",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/parking_space.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "parking_entrance",
+ "description": "🄿 Parking Garage Entrance / Exit",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "parking",
+ "description": "🄿 Parking Lot",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_parked.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "parcel_locker",
+ "description": "🄿 Parcel Locker",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_lockers.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "nightclub",
+ "description": "🄿 Nightclub",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cocktail.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "motorcycle_rental",
+ "description": "🄿 Motorcycle Rental",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/motorcycle_rental.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "motorcycle_parking",
+ "description": "🄿 Motorcycle Parking",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "mortuary",
+ "description": "🄿 Morgue",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "money_transfer",
+ "description": "🄿 Money Transfer Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "monastery",
+ "description": "🄿 Monastery Grounds",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "marketplace",
+ "description": "🄿 Marketplace",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "luggage_locker",
+ "description": "🄿 Luggage Locker",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/suitcase_key.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "love_hotel",
+ "description": "🄿 Love Hotel",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heart.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "lounger",
+ "description": "🄿 Lounger",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/lounger.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "loading_dock",
+ "description": "🄿 Loading Dock",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-loading.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "library_dropoff",
+ "description": "🄿 Book Return Drop Box",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "library",
+ "description": "🄿 Library",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "letter_box",
+ "description": "🄿 Letter Box",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/letter_box.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "lavoir",
+ "description": "🄿 Lavoir",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/detergent_bottle.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "kneipp_water_cure",
+ "description": "🄿 Kneipp Facility",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "karaoke_box",
+ "description": "🄿 Karaoke Box",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/karaoke.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "internet_cafe",
+ "description": "🄿 Internet Cafe",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/antenna.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "ice_cream",
+ "description": "🄿 Ice Cream Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ice-cream.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "hunting_stand",
+ "description": "🄿 Hunting Stand",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hunting_blind.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "hospital",
+ "description": "🄿 Hospital Grounds",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "hookah_lounge",
+ "description": "🄿 Hookah Lounge",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-smoking.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "grit_bin",
+ "description": "🄿 Grit Bin",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-box.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "grave_yard",
+ "description": "🄿 Graveyard",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "give_box",
+ "description": "🄿 Free Box",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-box-open.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "gambling",
+ "description": "🄿 Gambling Hall",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-coins.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "funeral_hall",
+ "description": "🄿 Funeral Service Hall",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "fuel",
+ "description": "🄿 Gas Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "fountain",
+ "description": "🄿 Fountain",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fountain.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "food_court",
+ "description": "🄿 Food Court",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "amenity",
+ "value": "fire_station",
+ "description": "🄿 Fire Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fire-station.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "fast_food",
+ "description": "🄿 Fast Food",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "exhibition_centre",
+ "description": "🄿 Exposition Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-tie.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "events_venue",
+ "description": "🄿 Events Venue",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-users.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "driver_training",
+ "description": "🄿 Driver Training Grounds",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "drinking_water",
+ "description": "🄿 Drinking Water",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "dressing_room",
+ "description": "🄿 Changing Room",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "dojo",
+ "description": "🄿 Dojo / Martial Arts Academy",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "dog_toilet",
+ "description": "🄿 Dog Toilet",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dog-park.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "doctors",
+ "description": "🄿 Doctor",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "dive_centre",
+ "description": "🄿 Dive Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/scuba_diving.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "device_charging_station",
+ "description": "🄿 Device Charging Station",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/electronic.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "dentist",
+ "description": "🄿 Dentist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dentist.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "crematorium",
+ "description": "🄿 Crematorium",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "courthouse",
+ "description": "🄿 Courthouse",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-gavel.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "conference_centre",
+ "description": "🄿 Convention Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-tie.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "compressed_air",
+ "description": "🄿 Compressed Air",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tachometer-alt.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "community_centre",
+ "description": "🄿 Community Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "clock",
+ "description": "🄿 Clock",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/clock.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "clinic",
+ "description": "🄿 Clinic",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "cinema",
+ "description": "🄿 Cinema",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cinema.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "childcare",
+ "description": "🄿 Nursery/Childcare",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-child-reaching.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "charging_station",
+ "description": "🄿 Charging Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-charging-station.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "casino",
+ "description": "🄿 Casino",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/casino.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "car_wash",
+ "description": "🄿 Car Wash",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_wash.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "car_sharing",
+ "description": "🄿 Car Sharing Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sign_and_car.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "car_rental",
+ "description": "🄿 Car Rental",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-rental.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "car_pooling",
+ "description": "🄿 Car Pooling Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_pool.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "cafe",
+ "description": "🄿 Cafe",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cafe.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "bureau_de_change",
+ "description": "🄿 Currency Exchange",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "boat_storage",
+ "description": "🄿 Boat Storage",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat_dry_dock.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "boat_rental",
+ "description": "🄿 Boat Rental",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat_rental.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "binoculars",
+ "description": "🄿 Mounted Binoculars",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/binoculars.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "biergarten",
+ "description": "🄿 Biergarten",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-beer.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "bicycle_wash",
+ "description": "🄿 Bicycle Wash",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_wash.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "bicycle_repair_station",
+ "description": "🄿 Bicycle Repair Tool Stand",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_repair.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "bicycle_rental",
+ "description": "🄿 Bicycle Rental",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_rental.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "bicycle_parking",
+ "description": "🄿 Bicycle Parking",
+ "object_types": [
+ "node",
+ "way",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_parked.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "bench",
+ "description": "🄿 Bench",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bench.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "bbq",
+ "description": "🄿 Barbecue/Grill",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bbq.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "bar",
+ "description": "🄿 Bar",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bar.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "bank",
+ "description": "🄿 Bank",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "baking_oven",
+ "description": "🄿 Baking Oven",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bread.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "atm",
+ "description": "🄿 ATM",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/atm2.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "arts_centre",
+ "description": "🄿 Arts Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "animal_shelter",
+ "description": "🄿 Animal Shelter",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "animal_breeding",
+ "description": "🄿 Animal Breeding Facility",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "animal_boarding",
+ "description": "🄿 Animal Boarding Facility",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "recycling",
+ "description": "🄿 Recycling (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "nursing_home",
+ "description": "🄿 Nursing Home (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "ferry_terminal",
+ "description": "🄿 Ferry Terminal (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ferry.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "embassy",
+ "description": "🄿 Embassy (unsearchable), 🄳 (deprecated tag) ➜ office=diplomatic",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/embassy.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "coworking_space",
+ "description": "🄿 Coworking Space (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial.svg"
+ },
+ {
+ "key": "amenity",
+ "value": "bus_station",
+ "description": "🄿 Bus Station / Terminal (unsearchable)",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus.svg"
+ },
+ {
+ "key": "waste",
+ "value": "dog_excrement",
+ "description": "🄿 Dog Excrement Bin, 🄵🅅 Waste: Dog Excrement",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waste-basket.svg"
+ },
+ {
+ "key": "vending",
+ "value": "sweets",
+ "description": "🄿 Candy Vending Machine, 🄵🅅 Types of Goods: Sweets",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"
+ },
+ {
+ "key": "vending",
+ "value": "stamps",
+ "description": "🄿 Postage Vending Machine, 🄵🅅 Types of Goods: Postage Stamps",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_stamps.svg"
+ },
+ {
+ "key": "vending",
+ "value": "public_transport_tickets",
+ "description": "🄿 Transit Ticket Vending Machine, 🄵🅅 Types of Goods: Public Transport Tickets",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_tickets.svg"
+ },
+ {
+ "key": "vending",
+ "value": "pizza",
+ "description": "🄿 Pizza Vending Machine, 🄵🅅 Types of Goods: Pizza",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"
+ },
+ {
+ "key": "vending",
+ "value": "parking_tickets",
+ "description": "🄿 Parking Ticket Vending Machine, 🄵🅅 Types of Goods: Parking Tickets",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_tickets.svg"
+ },
+ {
+ "key": "vending",
+ "value": "newspapers",
+ "description": "🄿 Newspaper Vending Machine, 🄵🅅 Types of Goods: Newspapers",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_newspaper.svg"
+ },
+ {
+ "key": "vending",
+ "value": "ice_cubes",
+ "description": "🄿 Ice Vending Machine, 🄵🅅 Types of Goods: Ice Cubes",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_ice.svg"
+ },
+ {
+ "key": "vending",
+ "value": "ice_cream",
+ "description": "🄿 Ice Cream Vending Machine, 🄵🅅 Types of Goods: Ice Cream",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_ice_cream.svg"
+ },
+ {
+ "key": "vending",
+ "value": "fuel",
+ "description": "🄿 Gas Vending Machine, 🄵🅅 Types of Goods: Fuel",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel.svg"
+ },
+ {
+ "key": "vending",
+ "value": "food",
+ "description": "🄿 Food Vending Machine, 🄵🅅 Types of Goods: Food",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"
+ },
+ {
+ "key": "vending",
+ "value": "feminine_hygiene",
+ "description": "🄿 Feminine Hygiene Vending Machine, 🄵🅅 Types of Goods: Feminine Hygiene Products",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_venus.svg"
+ },
+ {
+ "key": "vending",
+ "value": "excrement_bags",
+ "description": "🄿 Excrement Bag Dispenser, 🄵🅅 Types of Goods: Excrement Bags",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_pet_waste.svg"
+ },
+ {
+ "key": "vending",
+ "value": "elongated_coin",
+ "description": "🄿 Flat Coin Vending Machine, 🄵🅅 Types of Goods: Souvenir Coins",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_flat_coin.svg"
+ },
+ {
+ "key": "vending",
+ "value": "electronics",
+ "description": "🄿 Electronics Vending Machine, 🄵🅅 Types of Goods: Electronics",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"
+ },
+ {
+ "key": "vending",
+ "value": "eggs",
+ "description": "🄿 Egg Vending Machine, 🄵🅅 Types of Goods: Eggs",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_eggs.svg"
+ },
+ {
+ "key": "vending",
+ "value": "drinks",
+ "description": "🄿 Drink Vending Machine, 🄵🅅 Types of Goods: Drinks",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_cold_drink.svg"
+ },
+ {
+ "key": "vending",
+ "value": "condoms",
+ "description": "🄿 Condom Vending Machine, 🄵🅅 Types of Goods: Condoms",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_love.svg"
+ },
+ {
+ "key": "vending",
+ "value": "coffee",
+ "description": "🄿 Coffee Vending Machine, 🄵🅅 Types of Goods: Coffee",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_hot_drink.svg"
+ },
+ {
+ "key": "vending",
+ "value": "cigarettes",
+ "description": "🄿 Cigarette Vending Machine, 🄵🅅 Types of Goods: Cigarettes",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_cigarettes.svg"
+ },
+ {
+ "key": "vending",
+ "value": "bread",
+ "description": "🄿 Bread Vending Machine, 🄵🅅 Types of Goods: Bread",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_bread.svg"
+ },
+ {
+ "key": "vending",
+ "value": "bottle_return",
+ "description": "🄿 Bottle Return Machine",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"
+ },
+ {
+ "key": "vending",
+ "value": "bicycle_tube",
+ "description": "🄿 Bicycle Inner Tube Vending Machine, 🄵🅅 Types of Goods: Bicycle Tubes",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"
+ },
+ {
+ "key": "food",
+ "value": "snacks",
+ "description": "🄿 Snack Vending Machine",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"
+ },
+ {
+ "key": "townhall:type",
+ "value": "city",
+ "description": "🄿 City Hall",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/capitol.svg"
+ },
+ {
+ "key": "townhall:type",
+ "value": "barangay",
+ "description": "🄿 Barangay Hall",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-building-flag.svg"
+ },
+ {
+ "key": "portable",
+ "value": "yes",
+ "description": "🄿 Portable Toilet",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/latrine.svg"
+ },
+ {
+ "key": "toilets:disposal",
+ "value": "pitlatrine",
+ "description": "🄿 Pit Latrine, 🄵🅅 Disposal: Pit Latrine",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/latrine.svg"
+ },
+ {
+ "key": "toilets:disposal",
+ "value": "flush",
+ "description": "🄿 Flush Toilets, 🄵🅅 Disposal: Flush",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-toilet.svg"
+ },
+ {
+ "key": "theatre:type",
+ "value": "amphi",
+ "description": "🄿 Amphitheater",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre.svg"
+ },
+ {
+ "key": "taxi_vehicle",
+ "value": "motorcycle",
+ "description": "🄿 Motorcycle Taxi Stand, 🄵🅅 Vehicle Type: `motorcycle`",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_and_cyclist.svg"
+ },
+ {
+ "key": "taxi_vehicle",
+ "value": "cycle_rickshaw",
+ "description": "🄿 Cycle Rickshaw Stand, 🄵🅅 Vehicle Type: `cycle_rickshaw`",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "taxi_vehicle",
+ "value": "auto_rickshaw",
+ "description": "🄿 Auto Rickshaw Stand, 🄵🅅 Vehicle Type: `auto_rickshaw`",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-person-arrow-up-from-line.svg"
+ },
+ {
+ "key": "studio",
+ "value": "video",
+ "description": "🄿 Film Studio",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-video.svg"
+ },
+ {
+ "key": "studio",
+ "value": "television",
+ "description": "🄿 Television Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-video.svg"
+ },
+ {
+ "key": "studio",
+ "value": "radio",
+ "description": "🄿 Radio Station",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"
+ },
+ {
+ "key": "studio",
+ "value": "audio",
+ "description": "🄿 Recording Studio",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "senior",
+ "description": "🄿 Nursing Home, 🄿 Elderly Group Home, 🄿 Senior Assisted Living Facility, 🄵🅅 People Served: Elderly",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair.svg"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "homeless",
+ "description": "🄿 Homeless Shelter, 🄵🅅 People Served: Homeless",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/social_facility.svg"
+ },
+ {
+ "key": "social_facility",
+ "value": "food_bank",
+ "description": "🄿 Food Bank, 🄵🅅 Type: Food Bank",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/social_facility.svg"
+ },
+ {
+ "key": "social_facility",
+ "value": "ambulatory_care",
+ "description": "🄿 Ambulatory Care, 🄵🅅 Type: Ambulatory Care",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair.svg"
+ },
+ {
+ "key": "shelter_type",
+ "value": "public_transport",
+ "description": "🄿 Transit Shelter",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/transit_shelter.svg"
+ },
+ {
+ "key": "shelter_type",
+ "value": "picnic_shelter",
+ "description": "🄿 Picnic Shelter",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/picnic_shelter.svg"
+ },
+ {
+ "key": "shelter_type",
+ "value": "lean_to",
+ "description": "🄿 Lean-To",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sleep_shelter.svg"
+ },
+ {
+ "key": "shelter_type",
+ "value": "gazebo",
+ "description": "🄿 Gazebo",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "vietnamese",
+ "description": "🄿 Vietnamese Restaurant, 🄵🅅 Cuisines: Vietnamese",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "ukrainian",
+ "description": "🄿 Ukrainian Restaurant, 🄵🅅 Cuisines: Ukrainian",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "turkish",
+ "description": "🄿 Turkish Restaurant, 🄵🅅 Cuisines: Turkish",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "thai",
+ "description": "🄿 Thai Restaurant, 🄵🅅 Cuisines: Thai",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spoon.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "sushi",
+ "description": "🄿 Sushi Restaurant, 🄵🅅 Cuisines: Sushi",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/temaki.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "steak_house",
+ "description": "🄿 Steakhouse, 🄵🅅 Cuisines: Steak House",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slaughterhouse.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "spanish",
+ "description": "🄿 Spanish Restaurant, 🄵🅅 Cuisines: Spanish",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "seafood",
+ "description": "🄿 Seafood Restaurant, 🄵🅅 Cuisines: Seafood",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-seafood.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "ramen",
+ "description": "🄿 Ramen Restaurant, 🄵🅅 Cuisines: Ramen",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "pizza",
+ "description": "🄿 Pizza Restaurant, 🄿 Pizza Fast Food, 🄵🅅 Cuisines: Pizza",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-pizza.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "noodle",
+ "description": "🄿 Noodle Restaurant, 🄵🅅 Cuisines: Noodle",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "mexican",
+ "description": "🄿 Mexican Restaurant, 🄿 Mexican Fast Food, 🄵🅅 Cuisines: Mexican",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pepper-hot.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "korean",
+ "description": "🄿 Korean Restaurant, 🄵🅅 Cuisines: Korean",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "japanese",
+ "description": "🄿 Japanese Restaurant, 🄵🅅 Cuisines: Japanese",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "italian",
+ "description": "🄿 Italian Restaurant, 🄵🅅 Cuisines: Italian",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "indian",
+ "description": "🄿 Indian Restaurant, 🄵🅅 Cuisines: Indian",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "greek",
+ "description": "🄿 Greek Restaurant, 🄵🅅 Cuisines: Greek",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "german",
+ "description": "🄿 German Restaurant, 🄵🅅 Cuisines: German",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "georgian",
+ "description": "🄿 Georgian Restaurant, 🄵🅅 Cuisines: Georgian",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "french",
+ "description": "🄿 French Restaurant, 🄵🅅 Cuisines: French",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "chinese",
+ "description": "🄿 Chinese Restaurant, 🄿 Chinese Fast Food, 🄵🅅 Cuisines: Chinese",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "barbecue",
+ "description": "🄿 Barbecue Restaurant, 🄵🅅 Cuisines: Barbecue",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-bbq.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "asian",
+ "description": "🄿 Asian Restaurant, 🄵🅅 Cuisines: Asian",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "american",
+ "description": "🄿 American Restaurant, 🄵🅅 Cuisines: American",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "recycling:green_waste",
+ "value": "yes",
+ "description": "🄿 Green Waste Container",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"
+ },
+ {
+ "key": "recycling:electrical_items",
+ "value": "yes",
+ "description": "🄿 E-Waste Container",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"
+ },
+ {
+ "key": "microbrewery",
+ "value": "yes",
+ "description": "🄿 Brewpub",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer.svg"
+ },
+ {
+ "key": "theme",
+ "value": "irish",
+ "description": "🄿 Irish Pub",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer.svg"
+ },
+ {
+ "key": "religion",
+ "value": "taoist",
+ "description": "🄿 Taoist Temple, 🄵🅅 Religion: Taoist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/taoism.svg"
+ },
+ {
+ "key": "religion",
+ "value": "sikh",
+ "description": "🄿 Sikh Temple, 🄵🅅 Religion: Sikh",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sikhism.svg"
+ },
+ {
+ "key": "religion",
+ "value": "shinto",
+ "description": "🄿 Shinto Shrine, 🄵🅅 Religion: Shinto",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shinto.svg"
+ },
+ {
+ "key": "religion",
+ "value": "muslim",
+ "description": "🄿 Muslim Mosque, 🄵🅅 Religion: Muslim",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-muslim.svg"
+ },
+ {
+ "key": "religion",
+ "value": "jewish",
+ "description": "🄿 Jewish Synagogue, 🄵🅅 Religion: Jewish",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-jewish.svg"
+ },
+ {
+ "key": "religion",
+ "value": "hindu",
+ "description": "🄿 Hindu Temple, 🄵🅅 Religion: Hindu",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hinduism.svg"
+ },
+ {
+ "key": "religion",
+ "value": "christian",
+ "description": "🄿 Christian Church, 🄵🅅 Religion: Christian",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian.svg"
+ },
+ {
+ "key": "religion",
+ "value": "buddhist",
+ "description": "🄿 Buddhist Temple, 🄵🅅 Religion: Buddhist",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-buddhist.svg"
+ },
+ {
+ "key": "denomination",
+ "value": "quaker",
+ "description": "🄿 Quaker Friends Meeting House",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/quakerism.svg"
+ },
+ {
+ "key": "denomination",
+ "value": "la_luz_del_mundo",
+ "description": "🄿 La Luz del Mundo Temple",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"
+ },
+ {
+ "key": "denomination",
+ "value": "jehovahs_witness",
+ "description": "🄿 Kingdom Hall of Jehovah's Witnesses",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"
},
{
"key": "parking_space",
+ "value": "disabled",
+ "description": "🄿 Accessible Parking Space",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/accessible_space.svg"
+ },
+ {
+ "key": "parking",
+ "value": "underground",
+ "description": "🄿 Underground Parking, 🄵🅅 Type: `underground`",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_structure.svg"
+ },
+ {
+ "key": "parking",
+ "value": "street_side",
+ "description": "🄿 Street-side Parking, 🄵🅅 Type: `street_side`",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_parked.svg"
+ },
+ {
+ "key": "park_ride",
+ "value": "yes",
+ "description": "🄿 Park & Ride Lot",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sign_and_car.svg"
+ },
+ {
+ "key": "parking",
+ "value": "multi-storey",
+ "description": "🄿 Multilevel Parking Garage, 🄵🅅 Type: `multi-storey`",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_structure.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "frozen_yogurt",
+ "description": "🄿 Frozen Yogurt Shop, 🄵🅅 Cuisines: Frozen Yogurt",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ice-cream.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "wings",
+ "description": "🄿 Chicken Wings Fast Food, 🄵🅅 Cuisines: Chicken Wings",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "sandwich",
+ "description": "🄿 Sandwich Fast Food, 🄵🅅 Cuisines: Sandwich",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sandwich.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "kebab",
+ "description": "🄿 Kebab Fast Food, 🄵🅅 Cuisines: Kebab",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vertical_rotisserie.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "juice",
+ "description": "🄿 Juice Fast Food, 🄵🅅 Cuisines: Juice",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/drink_cup.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "hot_dog",
+ "description": "🄿 Hot Dog Fast Food, 🄵🅅 Cuisines: Hot Dog",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hotdog.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "fish_and_chips",
+ "description": "🄿 Fish & Chips Fast Food, 🄵🅅 Cuisines: Fish and Chips",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "donut",
+ "description": "🄿 Donut Fast Food, 🄵🅅 Cuisines: Donut",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/donut.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "chicken",
+ "description": "🄿 Chicken Fast Food, 🄵🅅 Cuisines: Chicken",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-drumstick-bite.svg"
+ },
+ {
+ "key": "fast_food",
+ "value": "cafeteria",
+ "description": "🄿 Cafeteria",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "burger",
+ "description": "🄿 Burger Fast Food, 🄵🅅 Cuisines: Burger",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "bagel",
+ "description": "🄿 Bagel Fast Food, 🄵🅅 Cuisines: Bagel",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "ice_cream",
+ "description": "🄿 Ice Cream Fast Food (unsearchable), 🄵🅅 Cuisines: Ice Cream",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ice-cream.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "urology",
+ "description": "🄿 Urologist, 🄵🅅 Specialties: Urology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "trauma",
+ "description": "🄿 Trauma Surgeon, 🄵🅅 Specialties: Trauma Surgery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "surgery",
+ "description": "🄿 General Surgeon, 🄵🅅 Specialties: General Surgery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "rheumatology",
+ "description": "🄿 Rheumatologist, 🄵🅅 Specialties: Rheumatology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "radiology",
+ "description": "🄿 Radiologist, 🄵🅅 Specialties: Radiology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "pulmonology",
+ "description": "🄿 Pulmonologist, 🄵🅅 Specialties: Pulmonology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "psychiatry",
+ "description": "🄿 Psychiatrist, 🄵🅅 Specialties: Psychiatry",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "proctology",
+ "description": "🄿 Colorectal Surgeon, 🄵🅅 Specialties: Colorectal Surgery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "podiatry",
+ "description": "🄿 Podiatrist, 🄵🅅 Specialties: Podiatry",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "plastic_surgery",
+ "description": "🄿 Plastic Surgeon, 🄵🅅 Specialties: Plastic Surgery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "pathology",
+ "description": "🄿 Pathologist, 🄵🅅 Specialties: Pathology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "paediatrics",
+ "description": "🄿 Pediatrician, 🄵🅅 Specialties: Pediatrics",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "otolaryngology",
+ "description": "🄿 Otolaryngologist, 🄵🅅 Specialties: Ear, Nose & Throat",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "orthopaedics",
+ "description": "🄿 Orthopedic Surgeon, 🄵🅅 Specialties: Orthopedic Surgery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "ophthalmology",
+ "description": "🄿 Ophthalmologist, 🄵🅅 Specialties: Ophthalmology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "oncology",
+ "description": "🄿 Oncologist, 🄵🅅 Specialties: Oncology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "neurosurgery",
+ "description": "🄿 Neurosurgeon, 🄵🅅 Specialties: Neurosurgery",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "neurology",
+ "description": "🄿 Neurologist, 🄵🅅 Specialties: Neurology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "nephrology",
+ "description": "🄿 Nephrologist, 🄵🅅 Specialties: Nephrology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "internal",
+ "description": "🄿 Internist, 🄵🅅 Specialties: Internal Medicine",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "haematology",
+ "description": "🄿 Hematologist, 🄵🅅 Specialties: Hematology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "gynaecology",
+ "description": "🄿 Obstetrician/Gynecologist, 🄵🅅 Specialties: Obstetrics & Gynecology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "general",
+ "description": "🄿 Primary Care Physician, 🄵🅅 Specialties: General Practice",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "gastroenterology",
+ "description": "🄿 Gastroenterologist, 🄵🅅 Specialties: Gastroenterology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "dermatology",
+ "description": "🄿 Dermatologist, 🄵🅅 Specialties: Dermatology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "child_psychiatry",
+ "description": "🄿 Child and Adolescent Psychiatrist, 🄵🅅 Specialties: Child & Adolescent Psychiatry",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "cardiology",
+ "description": "🄿 Cardiologist, 🄵🅅 Specialties: Cardiology",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "allergology",
+ "description": "🄿 Allergologist, 🄵🅅 Specialties: Allergy & Asthma",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "community_centre",
+ "value": "youth_centre",
+ "description": "🄿 Youth Center, 🄵🅅 Type: Youth Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"
+ },
+ {
+ "key": "community_centre",
+ "value": "village_hall",
+ "description": "🄿 Village Hall, 🄵🅅 Type: Village Hall",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"
+ },
+ {
+ "key": "community_centre",
+ "value": "parish_hall",
+ "description": "🄿 Parish Hall, 🄵🅅 Type: Parish Hall",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"
+ },
+ {
+ "key": "community_centre",
+ "value": "family_centre",
+ "description": "🄿 Family Centre, 🄵🅅 Type: Family Centre",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"
+ },
+ {
+ "key": "community_centre",
+ "value": "cultural_centre",
+ "description": "🄿 Cultural Centre, 🄵🅅 Type: Cultural Centre",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"
+ },
+ {
+ "key": "community_centre",
+ "value": "community_hall",
+ "description": "🄿 Community Hall, 🄵🅅 Type: Community Hall",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"
+ },
+ {
+ "key": "community_centre",
+ "value": "club_home",
+ "description": "🄿 Club Home, 🄵🅅 Type: Club Home",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"
+ },
+ {
+ "key": "display",
+ "value": "sundial",
+ "description": "🄿 Sundial, 🄵🅅 Display: Sundial",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/clock.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "fertility",
+ "description": "🄿 Fertility Clinic, 🄵🅅 Specialties: Fertility",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "healthcare",
+ "value": "dialysis",
+ "description": "🄿 Dialysis Center, 🄵🅅 Type: Dialysis Center",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "abortion",
+ "description": "🄿 Abortion Clinic, 🄵🅅 Specialties: Abortion",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "tea",
+ "description": "🄿 Teahouse, 🄵🅅 Cuisines: Tea",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cafe.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "coffee_shop",
+ "description": "🄿 Coffeehouse, 🄵🅅 Cuisines: Coffee Shop",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hot_drink_cup.svg"
+ },
+ {
+ "key": "cuisine",
+ "value": "bubble_tea",
+ "description": "🄿 Bubble Tea Cafe, 🄵🅅 Cuisines: Bubble Tea",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bubble_tea.svg"
+ },
+ {
+ "key": "bicycle_parking",
+ "value": "shed",
+ "description": "🄿 Bicycle Shed, 🄵🅅 Type: Closed Shed",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_shed.svg"
+ },
+ {
+ "key": "bicycle_parking",
+ "value": "lockers",
+ "description": "🄿 Bicycle Lockers, 🄵🅅 Type: Individual Lockers",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_locker.svg"
+ },
+ {
+ "key": "bicycle_parking",
+ "value": "building",
+ "description": "🄿 Bicycle Parking Garage, 🄵🅅 Type: In a Building",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_structure.svg"
+ },
+ {
+ "key": "allotments",
+ "value": "plot",
+ "description": "🄿 Community Garden Plot",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/garden_bed.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "windsock",
+ "description": "🄿 Windsock",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/windsock.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "terminal",
+ "description": "🄿 Airport Terminal",
+ "object_types": [
+ "node",
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "taxiway",
+ "description": "🄿 Taxiway",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plane_taxiing.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "spaceport",
+ "description": "🄿 Spaceport",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-space-shuttle.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "runway",
+ "description": "🄿 Runway",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plane-departure.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "parking_position",
+ "description": "🄿 Aircraft Parking Position",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plane_taxiing.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "jet_bridge",
+ "description": "🄿 Jetway",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_walled.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "holding_position",
+ "description": "🄿 Aircraft Holding Position",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plane_taxiing.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "helipad",
+ "description": "🄿 Helipad",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "hangar",
+ "description": "🄿 Hangar",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hangar.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "gate",
+ "description": "🄿 Airport Gate",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plane.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "apron",
+ "description": "🄿 Airport Apron",
+ "object_types": [
+ "area"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/planes.svg"
+ },
+ {
+ "key": "aeroway",
+ "value": "aerodrome",
+ "description": "🄿 Airport",
+ "object_types": [
+ "area",
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/airport.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "zip_line",
+ "description": "🄿 Zip Line",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "aerialway",
+ "value": "t-bar",
+ "description": "🄿 T-Bar Lift",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/t_bar_lift.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "rope_tow",
+ "description": "🄿 Rope Tow Lift",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "aerialway",
+ "value": "pylon",
+ "description": "🄿 Aerialway Pylon",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/aerialway_pole.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "platter",
+ "description": "🄿 Platter Lift",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/platter_lift.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "mixed_lift",
+ "description": "🄿 Mixed Lift",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aerialway.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "magic_carpet",
+ "description": "🄿 Magic Carpet Lift",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "aerialway",
+ "value": "j-bar",
+ "description": "🄿 J-Bar Lift",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/j_bar_lift.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "goods",
+ "description": "🄿 Goods Aerialway",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/goods_lift.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "gondola",
+ "description": "🄿 Gondola Lift",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gondola_lift.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "drag_lift",
+ "description": "🄿 Drag Lift",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/drag_lift.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "chair_lift",
+ "description": "🄿 Chair Lift",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/chairlift.svg"
+ },
+ {
+ "key": "aerialway",
+ "value": "cable_car",
+ "description": "🄿 Cable Car",
+ "object_types": [
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tram.svg"
+ },
+ {
+ "key": "advertising",
+ "value": "totem",
+ "description": "🄿 Advertising Totem",
+ "object_types": [
+ "node",
+ "way"
+ ]
+ },
+ {
+ "key": "advertising",
+ "value": "poster_box",
+ "description": "🄿 Poster Box",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/poster_box.svg"
+ },
+ {
+ "key": "advertising",
+ "value": "column",
+ "description": "🄿 Advertising Column",
+ "object_types": [
+ "node",
+ "area"
+ ]
+ },
+ {
+ "key": "advertising",
+ "value": "board",
+ "description": "🄿 Notice Board",
+ "object_types": [
+ "node"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bulletin_board.svg"
+ },
+ {
+ "key": "advertising",
+ "value": "billboard",
+ "description": "🄿 Billboard",
+ "object_types": [
+ "node",
+ "way"
+ ],
+ "icon_url": "https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/billboard.svg"
+ },
+ {
+ "key": "addr:interpolation",
+ "description": "🄿 Address Interpolation (unsearchable), 🄵 Type",
+ "object_types": [
+ "way"
+ ]
+ },
+ {
+ "key": "wood_provided",
+ "description": "🄵 Firewood Provided"
+ },
+ {
+ "key": "windings",
+ "description": "🄵 Windings"
+ },
+ {
+ "key": "wikipedia",
+ "description": "🄵 Wikipedia, 🄵 Wikidata"
+ },
+ {
+ "key": "wikimedia_commons",
+ "description": "🄵 Wikimedia Commons Page"
+ },
+ {
+ "key": "wikidata",
+ "description": "🄵 Wikidata"
+ },
+ {
+ "key": "width",
+ "description": "🄵 Width (Meters)"
+ },
+ {
+ "key": "wholesale",
+ "description": "🄵 Wholesale"
+ },
+ {
+ "key": "wheelchair",
+ "description": "🄵 Wheelchair Access"
+ },
+ {
+ "key": "wetland",
"description": "🄵 Type"
},
{
- "key": "parking",
- "value": "lane",
- "description": "🄵🅅 Type: Roadside Lane"
+ "key": "website",
+ "description": "🄵 Website"
},
{
- "key": "parking",
- "value": "carports",
- "description": "🄵🅅 Type: Carports"
+ "key": "contact:website",
+ "description": "🄵 Website"
},
{
- "key": "parking",
- "value": "garage_boxes",
- "description": "🄵🅅 Type: Garage Boxes"
+ "key": "water_source",
+ "description": "🄵 Water Source"
},
{
- "key": "parking",
- "value": "rooftop",
- "description": "🄵🅅 Type: Rooftop"
+ "key": "water_source",
+ "value": "main",
+ "description": "🄵🅅 Water Source: Water Distribution Pipe"
},
{
- "key": "parking",
- "value": "sheds",
- "description": "🄵🅅 Type: Sheds"
+ "key": "water_source",
+ "value": "water_tank",
+ "description": "🄵🅅 Water Source: Water Tank"
},
{
- "key": "parking",
- "value": "layby",
- "description": "🄵🅅 Type: Turnout / Lay-By"
+ "key": "water_source",
+ "value": "pond",
+ "description": "🄵🅅 Water Source: Pond"
},
{
- "key": "parking:orientation",
- "description": "🄵 Orientation"
+ "key": "water_source",
+ "value": "river",
+ "description": "🄵🅅 Water Source: River"
},
{
- "key": "parking:orientation",
- "value": "parallel",
- "description": "🄵🅅 Orientation: Parallel to the Street"
+ "key": "water_source",
+ "value": "stream",
+ "description": "🄵🅅 Water Source: Stream"
},
{
- "key": "parking:orientation",
- "value": "diagonal",
- "description": "🄵🅅 Orientation: Diagonal in Relation to the Street"
+ "key": "water_source",
+ "value": "groundwater",
+ "description": "🄵🅅 Water Source: Groundwater"
},
{
- "key": "parking:orientation",
- "value": "perpendicular",
- "description": "🄵🅅 Orientation: Meets the Street at a Straight Angle"
+ "key": "water_point",
+ "description": "🄵 Water Point"
+ },
+ {
+ "key": "water",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "waste",
+ "description": "🄵 Waste"
+ },
+ {
+ "key": "waste",
+ "value": "cigarettes",
+ "description": "🄵🅅 Waste: Cigarettes"
+ },
+ {
+ "key": "waste",
+ "value": "organic",
+ "description": "🄵🅅 Waste: Organic Waste"
+ },
+ {
+ "key": "waste",
+ "value": "trash",
+ "description": "🄵🅅 Waste: Trash"
+ },
+ {
+ "key": "wall",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "voltage",
+ "description": "🄵 Voltage"
+ },
+ {
+ "key": "visibility",
+ "description": "🄵 Visibility"
+ },
+ {
+ "key": "visibility",
+ "value": "house",
+ "description": "🄵🅅 Visibility: Up to 5m (16ft)"
+ },
+ {
+ "key": "visibility",
+ "value": "street",
+ "description": "🄵🅅 Visibility: 5 to 20m (16 to 65ft)"
+ },
+ {
+ "key": "visibility",
+ "value": "area",
+ "description": "🄵🅅 Visibility: Over 20m (65ft)"
+ },
+ {
+ "key": "video",
+ "description": "🄵 Video Calls"
+ },
+ {
+ "key": "via",
+ "description": "🄵 Via"
+ },
+ {
+ "key": "vhf",
+ "description": "🄵 VHF Channel"
+ },
+ {
+ "key": "vending",
+ "description": "🄵 Types of Goods"
+ },
+ {
+ "key": "vending",
+ "value": "e-cigarettes",
+ "description": "🄵🅅 Types of Goods: E-Cigarettes"
+ },
+ {
+ "key": "vending",
+ "value": "milk",
+ "description": "🄵🅅 Types of Goods: Milk"
+ },
+ {
+ "key": "vending",
+ "value": "water",
+ "description": "🄵🅅 Types of Goods: Drinking Water"
+ },
+ {
+ "key": "bus",
+ "description": "🄵 Vehicles"
+ },
+ {
+ "key": "trolleybus",
+ "description": "🄵 Vehicles"
+ },
+ {
+ "key": "tram",
+ "description": "🄵 Vehicles"
+ },
+ {
+ "key": "train",
+ "description": "🄵 Vehicles"
+ },
+ {
+ "key": "subway",
+ "description": "🄵 Vehicles"
+ },
+ {
+ "key": "light_rail",
+ "description": "🄵 Vehicles"
+ },
+ {
+ "key": "monorail",
+ "description": "🄵 Vehicles"
+ },
+ {
+ "key": "ferry",
+ "description": "🄵 Vehicles"
+ },
+ {
+ "key": "valve",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "utility",
+ "value": "gas",
+ "description": "🄵🅅 Utility: Gas"
+ },
+ {
+ "key": "utility",
+ "value": "oil",
+ "description": "🄵🅅 Utility: Oil"
+ },
+ {
+ "key": "utility",
+ "value": "sewerage",
+ "description": "🄵🅅 Utility: Waste Water"
+ },
+ {
+ "key": "utility",
+ "value": "street_lighting",
+ "description": "🄵🅅 Utility: Street Lighting"
+ },
+ {
+ "key": "utility",
+ "value": "telecom",
+ "description": "🄵🅅 Utility: Telecom"
+ },
+ {
+ "key": "utility",
+ "value": "water",
+ "description": "🄵🅅 Utility: Water"
+ },
+ {
+ "key": "usage",
+ "description": "🄵 Usage Type"
+ },
+ {
+ "key": "usage",
+ "value": "transportation",
+ "description": "🄵🅅 Usage Type: Transportation"
+ },
+ {
+ "key": "usage",
+ "value": "transmission",
+ "description": "🄵🅅 Usage Type: Transmission"
+ },
+ {
+ "key": "usage",
+ "value": "irrigation",
+ "description": "🄵🅅 Usage Type: Irrigation"
+ },
+ {
+ "key": "usage",
+ "value": "headrace",
+ "description": "🄵🅅 Usage Type: Headrace"
+ },
+ {
+ "key": "usage",
+ "value": "tailrace",
+ "description": "🄵🅅 Usage Type: Tailrace"
+ },
+ {
+ "key": "usage",
+ "value": "spillway",
+ "description": "🄵🅅 Usage Type: Spillway"
+ },
+ {
+ "key": "usage",
+ "value": "main",
+ "description": "🄵🅅 Usage Type: Main"
+ },
+ {
+ "key": "usage",
+ "value": "branch",
+ "description": "🄵🅅 Usage Type: Branch"
+ },
+ {
+ "key": "usage",
+ "value": "industrial",
+ "description": "🄵🅅 Usage Type: Industrial"
+ },
+ {
+ "key": "usage",
+ "value": "military",
+ "description": "🄵🅅 Usage Type: Military"
+ },
+ {
+ "key": "usage",
+ "value": "test",
+ "description": "🄵🅅 Usage Type: Test"
+ },
+ {
+ "key": "usage",
+ "value": "tourism",
+ "description": "🄵🅅 Usage Type: Tourism"
+ },
+ {
+ "key": "two_sided",
+ "description": "🄵 Two-Sided"
+ },
+ {
+ "key": "two_sided",
+ "value": "yes",
+ "description": "🄵🅅 Two-Sided: Yes"
+ },
+ {
+ "key": "turning_circle",
+ "description": "🄵 Shape"
+ },
+ {
+ "key": "tunnel",
+ "description": "🄵 Type, 🄵 Structure"
+ },
+ {
+ "key": "tunnel",
+ "value": "avalanche_protector",
+ "description": "🄵🅅 Type: Avalanche Protector"
+ },
+ {
+ "key": "tunnel",
+ "value": "building_passage",
+ "description": "🄵🅅 Type: Building Passage"
+ },
+ {
+ "key": "tunnel",
+ "value": "culvert",
+ "description": "🄵🅅 Type: Culvert"
+ },
+ {
+ "key": "tunnel",
+ "value": "flooded",
+ "description": "🄵🅅 Type: Flooded Tunnel"
+ },
+ {
+ "key": "trolley_wire",
+ "description": "🄵 Overhead Trolley Wires"
+ },
+ {
+ "key": "trench",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "trees",
+ "description": "🄵 Trees"
+ },
+ {
+ "key": "transformer",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "transformer",
+ "value": "main",
+ "description": "🄵🅅 Type: Main: Forwards power"
+ },
+ {
+ "key": "transformer",
+ "value": "distribution",
+ "description": "🄵🅅 Type: Distribution: Feeds final consumers, installed outside substations"
+ },
+ {
+ "key": "transformer",
+ "value": "generator",
+ "description": "🄵🅅 Type: Generator: Steps-up voltage in power plants"
+ },
+ {
+ "key": "transformer",
+ "value": "converter",
+ "description": "🄵🅅 Type: Converter: Feeds power converters"
+ },
+ {
+ "key": "transformer",
+ "value": "phase_angle_regulator",
+ "description": "🄵🅅 Type: Phase Angle Regulator"
+ },
+ {
+ "key": "transformer",
+ "value": "auxiliary",
+ "description": "🄵🅅 Type: Auxiliary: Feeds internal systems in substations"
+ },
+ {
+ "key": "transformer",
+ "value": "yes",
+ "description": "🄵🅅 Type: Unknown Role"
+ },
+ {
+ "key": "trail_visibility",
+ "description": "🄵 Trail Visibility"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "excellent",
+ "description": "🄵🅅 Trail Visibility: Excellent: unambiguous path or markers everywhere"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "good",
+ "description": "🄵🅅 Trail Visibility: Good: markers visible, sometimes require searching"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "intermediate",
+ "description": "🄵🅅 Trail Visibility: Intermediate: few markers, path mostly visible"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "bad",
+ "description": "🄵🅅 Trail Visibility: Bad: no markers, path sometimes invisible/pathless"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "horrible",
+ "description": "🄵🅅 Trail Visibility: Horrible: often pathless, some orientation skills required"
+ },
+ {
+ "key": "trail_visibility",
+ "value": "no",
+ "description": "🄵🅅 Trail Visibility: No: pathless, excellent orientation skills required"
+ },
+ {
+ "key": "traffic_signals",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "choked_table",
+ "description": "🄵🅅 Type: Choked Speed Table"
+ },
+ {
+ "key": "traffic_calming",
+ "value": "double_dip",
+ "description": "🄵🅅 Type: Double Dip"
+ },
+ {
+ "key": "trade",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "tracktype",
+ "description": "🄵 Track Type"
+ },
+ {
+ "key": "tracktype",
+ "value": "grade1",
+ "description": "🄵🅅 Track Type: Solid: paved"
+ },
+ {
+ "key": "tracktype",
+ "value": "grade2",
+ "description": "🄵🅅 Track Type: Mostly Solid: gravel/rock with some soft material mixed in"
+ },
+ {
+ "key": "tracktype",
+ "value": "grade3",
+ "description": "🄵🅅 Track Type: Even mixture of hard and soft materials"
+ },
+ {
+ "key": "tracktype",
+ "value": "grade4",
+ "description": "🄵🅅 Track Type: Mostly Soft: soil/sand/grass with some hard material mixed in"
+ },
+ {
+ "key": "tracktype",
+ "value": "grade5",
+ "description": "🄵🅅 Track Type: Soft: soil/sand/grass"
+ },
+ {
+ "key": "tomb",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "tomb",
+ "value": "columbarium",
+ "description": "🄵🅅 Type: Columbarium"
+ },
+ {
+ "key": "tomb",
+ "value": "crypt",
+ "description": "🄵🅅 Type: Crypt"
+ },
+ {
+ "key": "tomb",
+ "value": "dolmen",
+ "description": "🄵🅅 Type: Dolmen"
+ },
+ {
+ "key": "tomb",
+ "value": "hypogeum",
+ "description": "🄵🅅 Type: Hypogeum"
+ },
+ {
+ "key": "tomb",
+ "value": "mausoleum",
+ "description": "🄵🅅 Type: Mausoleum"
+ },
+ {
+ "key": "tomb",
+ "value": "pyramid",
+ "description": "🄵🅅 Type: Pyramid"
+ },
+ {
+ "key": "tomb",
+ "value": "rock-cut",
+ "description": "🄵🅅 Type: Rock-cut Tomb"
+ },
+ {
+ "key": "tomb",
+ "value": "sarcophagus",
+ "description": "🄵🅅 Type: Sarcophagus"
+ },
+ {
+ "key": "tomb",
+ "value": "table",
+ "description": "🄵🅅 Type: Table"
+ },
+ {
+ "key": "tomb",
+ "value": "tumulus",
+ "description": "🄵🅅 Type: Tumulus"
+ },
+ {
+ "key": "tomb",
+ "value": "vault",
+ "description": "🄵🅅 Type: Vault"
+ },
+ {
+ "key": "tomb",
+ "value": "war_grave",
+ "description": "🄵🅅 Type: Single War Grave"
+ },
+ {
+ "key": "toll",
+ "description": "🄵 Toll"
+ },
+ {
+ "key": "toilets",
+ "description": "🄵 Toilets"
+ },
+ {
+ "key": "to",
+ "description": "🄵 To"
+ },
+ {
+ "key": "tidal",
+ "description": "🄵 Tidal"
+ },
+ {
+ "key": "tents",
+ "description": "🄵 Tents"
+ },
+ {
+ "key": "telecom",
+ "value": "connection_point",
+ "description": "🄵🅅 Type: Connection Point"
+ },
+ {
+ "key": "telecom",
+ "value": "distribution_point",
+ "description": "🄵🅅 Type: Distribution Point"
+ },
+ {
+ "key": "telecom",
+ "value": "service_device",
+ "description": "🄵🅅 Type: Service Device"
+ },
+ {
+ "key": "tee",
+ "description": "🄵 Tee Color/Type"
+ },
+ {
+ "key": "taxon",
+ "description": "🄵 Taxon"
+ },
+ {
+ "key": "taxi_vehicle",
+ "description": "🄵 Vehicle Type"
+ },
+ {
+ "key": "taxi_vehicle",
+ "value": "motorcar",
+ "description": "🄵🅅 Vehicle Type: `motorcar`"
+ },
+ {
+ "key": "target",
+ "description": "🄵 Target"
+ },
+ {
+ "key": "takeaway",
+ "description": "🄵 Takeaway"
+ },
+ {
+ "key": "takeaway",
+ "value": "yes",
+ "description": "🄵🅅 Takeaway: Yes"
+ },
+ {
+ "key": "takeaway",
+ "value": "no",
+ "description": "🄵🅅 Takeaway: No"
+ },
+ {
+ "key": "takeaway",
+ "value": "only",
+ "description": "🄵🅅 Takeaway: Takeaway Only"
+ },
+ {
+ "key": "tactile_paving",
+ "description": "🄵 Tactile Paving"
+ },
+ {
+ "key": "switch",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "switch",
+ "value": "mechanical",
+ "description": "🄵🅅 Type: Mechanical"
+ },
+ {
+ "key": "switch",
+ "value": "circuit_breaker",
+ "description": "🄵🅅 Type: Circuit Breaker"
+ },
+ {
+ "key": "switch",
+ "value": "disconnector",
+ "description": "🄵🅅 Type: Disconnector"
+ },
+ {
+ "key": "switch",
+ "value": "earthing",
+ "description": "🄵🅅 Type: Earthing"
+ },
+ {
+ "key": "swimming_pool",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "swimming_pool",
+ "value": "swimming",
+ "description": "🄵🅅 Type: Lap Pool"
+ },
+ {
+ "key": "swimming_pool",
+ "value": "plunge",
+ "description": "🄵🅅 Type: Diving"
+ },
+ {
+ "key": "swimming_pool",
+ "value": "wading",
+ "description": "🄵🅅 Type: Wading / Leisure"
+ },
+ {
+ "key": "swimming_pool",
+ "value": "spa",
+ "description": "🄵🅅 Type: Spa"
+ },
+ {
+ "key": "swimming_pool",
+ "value": "wave_pool",
+ "description": "🄵🅅 Type: Wave Pool"
+ },
+ {
+ "key": "swimming_pool",
+ "value": "lazy_river",
+ "description": "🄵🅅 Type: Lazy River"
+ },
+ {
+ "key": "swimming_pool",
+ "value": "personal",
+ "description": "🄵🅅 Type: Personal / Backyard"
+ },
+ {
+ "key": "swimming_pool",
+ "value": "kids",
+ "description": "🄵🅅 Type: Kids Pool"
+ },
+ {
+ "key": "surveillance",
+ "description": "🄵 Surveillance Kind"
+ },
+ {
+ "key": "surface",
+ "description": "🄵 Surface"
+ },
+ {
+ "key": "surface",
+ "value": "artificial_turf",
+ "description": "🄵🅅 Surface: Artificial Turf"
+ },
+ {
+ "key": "surface",
+ "value": "asphalt",
+ "description": "🄵🅅 Surface: Asphalt"
+ },
+ {
+ "key": "surface",
+ "value": "clay",
+ "description": "🄵🅅 Surface: Clay"
+ },
+ {
+ "key": "surface",
+ "value": "compacted",
+ "description": "🄵🅅 Surface: Compacted"
+ },
+ {
+ "key": "surface",
+ "value": "concrete",
+ "description": "🄵🅅 Surface: Concrete"
+ },
+ {
+ "key": "surface",
+ "value": "concrete:lanes",
+ "description": "🄵🅅 Surface: Concrete Lanes"
+ },
+ {
+ "key": "surface",
+ "value": "concrete:plates",
+ "description": "🄵🅅 Surface: Concrete Plates"
+ },
+ {
+ "key": "surface",
+ "value": "dirt",
+ "description": "🄵🅅 Surface: Dirt"
+ },
+ {
+ "key": "surface",
+ "value": "fine_gravel",
+ "description": "🄵🅅 Surface: Fine Gravel"
+ },
+ {
+ "key": "surface",
+ "value": "grass",
+ "description": "🄵🅅 Surface: Grass"
+ },
+ {
+ "key": "surface",
+ "value": "grass_paver",
+ "description": "🄵🅅 Surface: Grass Paver"
+ },
+ {
+ "key": "surface",
+ "value": "gravel",
+ "description": "🄵🅅 Surface: Gravel"
+ },
+ {
+ "key": "surface",
+ "value": "ground",
+ "description": "🄵🅅 Surface: Ground"
+ },
+ {
+ "key": "surface",
+ "value": "metal",
+ "description": "🄵🅅 Surface: Metal"
+ },
+ {
+ "key": "surface",
+ "value": "mud",
+ "description": "🄵🅅 Surface: Persistently Muddy"
+ },
+ {
+ "key": "surface",
+ "value": "paved",
+ "description": "🄵🅅 Surface: Paved"
+ },
+ {
+ "key": "surface",
+ "value": "paving_stones",
+ "description": "🄵🅅 Surface: Paving Stones"
+ },
+ {
+ "key": "surface",
+ "value": "pebblestone",
+ "description": "🄵🅅 Surface: Pebblestone"
+ },
+ {
+ "key": "surface",
+ "value": "salt",
+ "description": "🄵🅅 Surface: Salt"
+ },
+ {
+ "key": "surface",
+ "value": "sand",
+ "description": "🄵🅅 Surface: Sand"
+ },
+ {
+ "key": "surface",
+ "value": "sett",
+ "description": "🄵🅅 Surface: Sett"
+ },
+ {
+ "key": "surface",
+ "value": "tartan",
+ "description": "🄵🅅 Surface: Tartan"
+ },
+ {
+ "key": "surface",
+ "value": "unhewn_cobblestone",
+ "description": "🄵🅅 Surface: Cobblestone (uncut, rounded stones)"
+ },
+ {
+ "key": "surface",
+ "value": "unpaved",
+ "description": "🄵🅅 Surface: Unpaved"
+ },
+ {
+ "key": "surface",
+ "value": "wood",
+ "description": "🄵🅅 Surface: Wood"
+ },
+ {
+ "key": "surface",
+ "value": "woodchips",
+ "description": "🄵🅅 Surface: Woodchips"
+ },
+ {
+ "key": "support",
+ "description": "🄵 Support"
+ },
+ {
+ "key": "supervised",
+ "description": "🄵 Supervised"
+ },
+ {
+ "key": "substation",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "substation",
+ "value": "transmission",
+ "description": "🄵🅅 Type: Transmission, 🄵🅅 Type: High-Voltage Transmission"
+ },
+ {
+ "key": "substation",
+ "value": "distribution",
+ "description": "🄵🅅 Type: Regional Distribution"
+ },
+ {
+ "key": "substation",
+ "value": "minor_distribution",
+ "description": "🄵🅅 Type: Local Distribution"
+ },
+ {
+ "key": "substation",
+ "value": "industrial",
+ "description": "🄵🅅 Type: Industrial"
+ },
+ {
+ "key": "substation",
+ "value": "compression",
+ "description": "🄵🅅 Type: Compression"
+ },
+ {
+ "key": "substation",
+ "value": "measurement",
+ "description": "🄵🅅 Type: Measurement"
+ },
+ {
+ "key": "substation",
+ "value": "valve",
+ "description": "🄵🅅 Type: Valve"
+ },
+ {
+ "key": "substation",
+ "value": "valve_group",
+ "description": "🄵🅅 Type: Valve Group"
+ },
+ {
+ "key": "substation",
+ "value": "inspection_gauge",
+ "description": "🄵🅅 Type: Inspection Gauge"
+ },
+ {
+ "key": "substation",
+ "value": "field_gathering",
+ "description": "🄵🅅 Type: Field Gathering"
+ },
+ {
+ "key": "substation",
+ "value": "generation",
+ "description": "🄵🅅 Type: Generation"
+ },
+ {
+ "key": "substation",
+ "value": "transition",
+ "description": "🄵🅅 Type: Overground/Underground Transition"
+ },
+ {
+ "key": "substation",
+ "value": "traction",
+ "description": "🄵🅅 Type: Traction System Supply"
+ },
+ {
+ "key": "substation",
+ "value": "converter",
+ "description": "🄵🅅 Type: High-Voltage AC/DC Converter"
+ },
+ {
+ "key": "substation",
+ "value": "compensation",
+ "description": "🄵🅅 Type: Reactive Power Compensation"
+ },
+ {
+ "key": "substance",
+ "description": "🄵 Substance"
+ },
+ {
+ "key": "substance",
+ "value": "fuel",
+ "description": "🄵🅅 Substance: Fuel"
+ },
+ {
+ "key": "substance",
+ "value": "gas",
+ "description": "🄵🅅 Substance: Natural Gas"
+ },
+ {
+ "key": "substance",
+ "value": "hot_water",
+ "description": "🄵🅅 Substance: Hot Water"
+ },
+ {
+ "key": "substance",
+ "value": "oil",
+ "description": "🄵🅅 Substance: Crude Oil"
+ },
+ {
+ "key": "substance",
+ "value": "rainwater",
+ "description": "🄵🅅 Substance: Rainwater"
+ },
+ {
+ "key": "substance",
+ "value": "sewage",
+ "description": "🄵🅅 Substance: Sewage"
+ },
+ {
+ "key": "substance",
+ "value": "water",
+ "description": "🄵🅅 Substance: Drinking Water"
+ },
+ {
+ "key": "subject",
+ "description": "🄵 Subject"
+ },
+ {
+ "key": "studio",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "structure",
+ "description": "🄵 Structure"
+ },
+ {
+ "key": "structure",
+ "value": "lattice",
+ "description": "🄵🅅 Structure: Lattice"
+ },
+ {
+ "key": "structure",
+ "value": "solid",
+ "description": "🄵🅅 Structure: Solid"
+ },
+ {
+ "key": "structure",
+ "value": "tubular",
+ "description": "🄵🅅 Structure: Tubular"
+ },
+ {
+ "key": "embankment",
+ "description": "🄵 Structure, 🄵 Type"
+ },
+ {
+ "key": "cutting",
+ "description": "🄵 Structure, 🄵 Type"
+ },
+ {
+ "key": "stroller",
+ "description": "🄵 Stroller Access"
+ },
+ {
+ "key": "street_cabinet",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "stop",
+ "description": "🄵 Stop Type"
+ },
+ {
+ "key": "stop",
+ "value": "all",
+ "description": "🄵🅅 Stop Type: All Ways"
+ },
+ {
+ "key": "stop",
+ "value": "minor",
+ "description": "🄵🅅 Stop Type: Minor Road"
+ },
+ {
+ "key": "stile",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "step_count",
+ "description": "🄵 Number of Steps"
+ },
+ {
+ "key": "static_caravans",
+ "description": "🄵 Mobile Homes"
+ },
+ {
+ "key": "start_date",
+ "description": "🄵 Start Date"
+ },
+ {
+ "key": "stars",
+ "description": "🄵 Stars"
+ },
+ {
+ "key": "sport",
+ "description": "🄵 Sports"
+ },
+ {
+ "key": "sport",
+ "value": "10pin",
+ "description": "🄵🅅 Sports: Ten-Pin Bowling"
+ },
+ {
+ "key": "sport",
+ "value": "9pin",
+ "description": "🄵🅅 Sports: Nine-Pin Bowling"
+ },
+ {
+ "key": "sport",
+ "value": "billiards",
+ "description": "🄵🅅 Sports: Cue Sports"
+ },
+ {
+ "key": "sport",
+ "value": "bmx",
+ "description": "🄵🅅 Sports: BMX"
+ },
+ {
+ "key": "sport",
+ "value": "canoe",
+ "description": "🄵🅅 Sports: Canoeing"
+ },
+ {
+ "key": "sport",
+ "value": "curling",
+ "description": "🄵🅅 Sports: Curling"
+ },
+ {
+ "key": "sport",
+ "value": "darts",
+ "description": "🄵🅅 Sports: Darts"
+ },
+ {
+ "key": "sport",
+ "value": "disc_golf",
+ "description": "🄵🅅 Sports: Disc Golf"
+ },
+ {
+ "key": "sport",
+ "value": "dog_racing",
+ "description": "🄵🅅 Sports: Dog Racing"
+ },
+ {
+ "key": "sport",
+ "value": "fitness",
+ "description": "🄵🅅 Sports: Fitness Training"
+ },
+ {
+ "key": "sport",
+ "value": "free_flying",
+ "description": "🄵🅅 Sports: Paragliding / Hang Gliding"
+ },
+ {
+ "key": "sport",
+ "value": "gaelic_games",
+ "description": "🄵🅅 Sports: Gaelic Games"
+ },
+ {
+ "key": "sport",
+ "value": "golf",
+ "description": "🄵🅅 Sports: Golf"
+ },
+ {
+ "key": "sport",
+ "value": "gymnastics",
+ "description": "🄵🅅 Sports: Gymnastics"
+ },
+ {
+ "key": "sport",
+ "value": "ice_hockey",
+ "description": "🄵🅅 Sports: Ice Hockey"
+ },
+ {
+ "key": "sport",
+ "value": "ice_skating",
+ "description": "🄵🅅 Sports: Ice Skating"
+ },
+ {
+ "key": "sport",
+ "value": "ice_stock",
+ "description": "🄵🅅 Sports: Ice Stock"
+ },
+ {
+ "key": "sport",
+ "value": "motor",
+ "description": "🄵🅅 Sports: Motorsports"
+ },
+ {
+ "key": "sport",
+ "value": "multi",
+ "description": "🄵🅅 Sports: Unspecified Other Sports"
+ },
+ {
+ "key": "sport",
+ "value": "orienteering",
+ "description": "🄵🅅 Sports: Orienteering"
+ },
+ {
+ "key": "sport",
+ "value": "pelota",
+ "description": "🄵🅅 Sports: Pelota"
+ },
+ {
+ "key": "sport",
+ "value": "scuba_diving",
+ "description": "🄵🅅 Sports: Scuba Diving"
+ },
+ {
+ "key": "sport",
+ "value": "skiing",
+ "description": "🄵🅅 Sports: Skiing"
+ },
+ {
+ "key": "sport",
+ "value": "ski_jumping",
+ "description": "🄵🅅 Sports: Ski Jumping"
+ },
+ {
+ "key": "sport",
+ "value": "speedway",
+ "description": "🄵🅅 Sports: Motorcycle Speedway"
+ },
+ {
+ "key": "species",
+ "description": "🄵 Species"
+ },
+ {
+ "key": "spacing",
+ "description": "🄵 Distance Between Barriers (Meters)"
+ },
+ {
+ "key": "source",
+ "description": "🄵 Sources"
+ },
+ {
+ "key": "source",
+ "value": "survey",
+ "description": "🄵🅅 Sources: Survey"
+ },
+ {
+ "key": "source",
+ "value": "local knowledge",
+ "description": "🄵🅅 Sources: Local Knowledge"
+ },
+ {
+ "key": "source",
+ "value": "aerial imagery",
+ "description": "🄵🅅 Sources: Aerial Imagery"
+ },
+ {
+ "key": "source",
+ "value": "gps",
+ "description": "🄵🅅 Sources: GPS"
+ },
+ {
+ "key": "source",
+ "value": "streetlevel imagery",
+ "description": "🄵🅅 Sources: Street-Level Photos"
+ },
+ {
+ "key": "source",
+ "value": "osm notes",
+ "description": "🄵🅅 Sources: OpenStreetMap Notes"
+ },
+ {
+ "key": "social_facility:for",
+ "description": "🄵 People Served"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "abused",
+ "description": "🄵🅅 People Served: Abuse victims"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "child",
+ "description": "🄵🅅 People Served: Children"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "dementia",
+ "description": "🄵🅅 People Served: People suffering from dementia"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "disabled",
+ "description": "🄵🅅 People Served: People with disabilities"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "diseased",
+ "description": "🄵🅅 People Served: People suffering from a disease"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "displaced",
+ "description": "🄵🅅 People Served: People displaced by disasters or conflicts"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "drug_addicted",
+ "description": "🄵🅅 People Served: Drug addicted"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "juvenile",
+ "description": "🄵🅅 People Served: Juveniles"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "mental_health",
+ "description": "🄵🅅 People Served: People with mental health problems"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "migrant",
+ "description": "🄵🅅 People Served: Migrants"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "orphan",
+ "description": "🄵🅅 People Served: Orphans"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "refugee",
+ "description": "🄵🅅 People Served: Refugees"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "terminally_ill",
+ "description": "🄵🅅 People Served: People with a terminal illness"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "underprivileged",
+ "description": "🄵🅅 People Served: Underprivileged people"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "unemployed",
+ "description": "🄵🅅 People Served: People without a job"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "veteran",
+ "description": "🄵🅅 People Served: Veterans"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "victim",
+ "description": "🄵🅅 People Served: Victims of crime"
+ },
+ {
+ "key": "social_facility:for",
+ "value": "woman",
+ "description": "🄵🅅 People Served: Women"
+ },
+ {
+ "key": "social_facility",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "social_facility",
+ "value": "assisted_living",
+ "description": "🄵🅅 Type: Assisted Living"
+ },
+ {
+ "key": "social_facility",
+ "value": "day_care",
+ "description": "🄵🅅 Type: Day Care"
+ },
+ {
+ "key": "social_facility",
+ "value": "group_home",
+ "description": "🄵🅅 Type: Group Home"
+ },
+ {
+ "key": "social_facility",
+ "value": "nursing_home",
+ "description": "🄵🅅 Type: Nursing Home"
+ },
+ {
+ "key": "social_facility",
+ "value": "outreach",
+ "description": "🄵🅅 Type: Outreach"
+ },
+ {
+ "key": "social_facility",
+ "value": "shelter",
+ "description": "🄵🅅 Type: Shelter"
+ },
+ {
+ "key": "social_facility",
+ "value": "workshop",
+ "description": "🄵🅅 Type: Workshop"
+ },
+ {
+ "key": "sms",
+ "description": "🄵 SMS"
+ },
+ {
+ "key": "smoothness",
+ "description": "🄵 Smoothness"
+ },
+ {
+ "key": "smoothness",
+ "value": "excellent",
+ "description": "🄵🅅 Smoothness: Thin Rollers: rollerblade, skateboard"
+ },
+ {
+ "key": "smoothness",
+ "value": "good",
+ "description": "🄵🅅 Smoothness: Thin Wheels: racing bike"
+ },
+ {
+ "key": "smoothness",
+ "value": "intermediate",
+ "description": "🄵🅅 Smoothness: Wheels: city bike, wheelchair, scooter"
+ },
+ {
+ "key": "smoothness",
+ "value": "bad",
+ "description": "🄵🅅 Smoothness: Robust Wheels: trekking bike, car, rickshaw"
+ },
+ {
+ "key": "smoothness",
+ "value": "very_bad",
+ "description": "🄵🅅 Smoothness: High Clearance: light duty off-road vehicle"
+ },
+ {
+ "key": "smoothness",
+ "value": "horrible",
+ "description": "🄵🅅 Smoothness: Off-Road: heavy duty off-road vehicle"
+ },
+ {
+ "key": "smoothness",
+ "value": "very_horrible",
+ "description": "🄵🅅 Smoothness: Specialized off-road: tractor, ATV"
+ },
+ {
+ "key": "smoothness",
+ "value": "impassable",
+ "description": "🄵🅅 Smoothness: Impassable / No wheeled vehicle"
+ },
+ {
+ "key": "smoking",
+ "description": "🄵 Smoking"
+ },
+ {
+ "key": "smoking",
+ "value": "no",
+ "description": "🄵🅅 Smoking: No smoking anywhere"
+ },
+ {
+ "key": "smoking",
+ "value": "separated",
+ "description": "🄵🅅 Smoking: In smoking areas, not physically isolated"
+ },
+ {
+ "key": "smoking",
+ "value": "isolated",
+ "description": "🄵🅅 Smoking: In smoking areas, physically isolated"
+ },
+ {
+ "key": "smoking",
+ "value": "outside",
+ "description": "🄵🅅 Smoking: Allowed outside"
+ },
+ {
+ "key": "smoking",
+ "value": "yes",
+ "description": "🄵🅅 Smoking: Allowed everywhere"
+ },
+ {
+ "key": "smoking",
+ "value": "dedicated",
+ "description": "🄵🅅 Smoking: Dedicated to smokers (e.g. smokers' club)"
+ },
+ {
+ "key": "site",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "side",
+ "description": "🄵 Side"
+ },
+ {
+ "key": "side",
+ "value": "left",
+ "description": "🄵🅅 Side: Left of Cyclist"
+ },
+ {
+ "key": "side",
+ "value": "right",
+ "description": "🄵🅅 Side: Right of Cyclist"
+ },
+ {
+ "key": "shower",
+ "description": "🄵 Showers"
+ },
+ {
+ "key": "short_name",
+ "description": "🄵 Short Name"
+ },
+ {
+ "key": "shoes",
+ "description": "🄵 Shoes"
+ },
+ {
+ "key": "shelter_type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "shelter",
+ "description": "🄵 Shelter"
+ },
+ {
+ "key": "service_times",
+ "description": "🄵 Service Times"
+ },
+ {
+ "key": "service",
+ "description": "🄵 Service Type, 🄵 Type"
+ },
+ {
+ "key": "service",
+ "value": "spur",
+ "description": "🄵🅅 Service Type: Spur"
+ },
+ {
+ "key": "service",
+ "value": "yard",
+ "description": "🄵🅅 Service Type: Yard"
+ },
+ {
+ "key": "service",
+ "value": "siding",
+ "description": "🄵🅅 Service Type: Siding"
+ },
+ {
+ "key": "service",
+ "value": "crossover",
+ "description": "🄵🅅 Service Type: Crossover"
+ },
+ {
+ "key": "self_service",
+ "description": "🄵 Self-Service"
+ },
+ {
+ "key": "self_checkout",
+ "description": "🄵 Self Checkout"
+ },
+ {
+ "key": "segregated",
+ "description": "🄵 Bicycle-Pedestrian Separation"
+ },
+ {
+ "key": "second_hand",
+ "description": "🄵 Sells Used"
+ },
+ {
+ "key": "second_hand",
+ "value": "yes",
+ "description": "🄵🅅 Sells Used: Yes"
+ },
+ {
+ "key": "second_hand",
+ "value": "no",
+ "description": "🄵🅅 Sells Used: No"
+ },
+ {
+ "key": "seats",
+ "description": "🄵 Seats"
+ },
+ {
+ "key": "seasonal",
+ "description": "🄵 Seasonal"
+ },
+ {
+ "key": "scuba_diving:",
+ "description": "🄵 Services"
+ },
+ {
+ "key": "scuba_diving:air_filling",
+ "description": "🄵🅅 Services: `air_filling`"
+ },
+ {
+ "key": "scuba_diving:courses",
+ "description": "🄵🅅 Services: `courses`"
+ },
+ {
+ "key": "scuba_diving:filling",
+ "description": "🄵🅅 Services: `filling`"
+ },
+ {
+ "key": "scuba_diving:hobby",
+ "description": "🄵🅅 Services: `hobby`"
+ },
+ {
+ "key": "scuba_diving:nitrox_filling",
+ "description": "🄵🅅 Services: `nitrox_filling`"
+ },
+ {
+ "key": "scuba_diving:oxygen_filling",
+ "description": "🄵🅅 Services: `oxygen_filling`"
+ },
+ {
+ "key": "scuba_diving:rental",
+ "description": "🄵🅅 Services: `rental`"
+ },
+ {
+ "key": "scuba_diving:repair",
+ "description": "🄵🅅 Services: `repair`"
+ },
+ {
+ "key": "scuba_diving:trimix_filling",
+ "description": "🄵🅅 Services: `trimix_filling`"
+ },
+ {
+ "key": "screen",
+ "description": "🄵 Screens"
+ },
+ {
+ "key": "sanitary_dump_station",
+ "description": "🄵 Toilet Disposal"
+ },
+ {
+ "key": "sample_collection",
+ "description": "🄵 Samples"
+ },
+ {
+ "key": "salt",
+ "description": "🄵 Salt"
+ },
+ {
+ "key": "sac_scale",
+ "description": "🄵 Hiking Difficulty"
+ },
+ {
+ "key": "sac_scale",
+ "value": "strolling",
+ "description": "🄵🅅 Hiking Difficulty: Strolling"
+ },
+ {
+ "key": "sac_scale",
+ "value": "hiking",
+ "description": "🄵🅅 Hiking Difficulty: T1: Hiking"
+ },
+ {
+ "key": "sac_scale",
+ "value": "mountain_hiking",
+ "description": "🄵🅅 Hiking Difficulty: T2: Mountain Hiking"
+ },
+ {
+ "key": "sac_scale",
+ "value": "demanding_mountain_hiking",
+ "description": "🄵🅅 Hiking Difficulty: T3: Demanding Mountain Hiking"
+ },
+ {
+ "key": "sac_scale",
+ "value": "alpine_hiking",
+ "description": "🄵🅅 Hiking Difficulty: T4: Alpine Hiking"
+ },
+ {
+ "key": "sac_scale",
+ "value": "demanding_alpine_hiking",
+ "description": "🄵🅅 Hiking Difficulty: T5: Demanding Alpine Hiking"
+ },
+ {
+ "key": "sac_scale",
+ "value": "difficult_alpine_hiking",
+ "description": "🄵🅅 Hiking Difficulty: T6: Difficult Alpine Hiking"
+ },
+ {
+ "key": "rwn_ref",
+ "description": "🄵 Walking Code"
+ },
+ {
+ "key": "ruins",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "royal_cypher",
+ "description": "🄵 Royal Cypher"
+ },
+ {
+ "key": "royal_cypher",
+ "value": "VR",
+ "description": "🄵🅅 Royal Cypher: VR (Victoria)"
+ },
+ {
+ "key": "royal_cypher",
+ "value": "EVIIR",
+ "description": "🄵🅅 Royal Cypher: EVIIR (Edward VII)"
+ },
+ {
+ "key": "royal_cypher",
+ "value": "EVIIIR",
+ "description": "🄵🅅 Royal Cypher: EVIIIR (Edward VIII)"
+ },
+ {
+ "key": "royal_cypher",
+ "value": "GR",
+ "description": "🄵🅅 Royal Cypher: GR (George V)"
+ },
+ {
+ "key": "royal_cypher",
+ "value": "GVIR",
+ "description": "🄵🅅 Royal Cypher: GVIR (George VI)"
+ },
+ {
+ "key": "royal_cypher",
+ "value": "EIIR",
+ "description": "🄵🅅 Royal Cypher: EIIR (Elizabeth II)"
+ },
+ {
+ "key": "royal_cypher",
+ "value": "CIIIR",
+ "description": "🄵🅅 Royal Cypher: CIIIR (Charles III)"
+ },
+ {
+ "key": "royal_cypher",
+ "value": "scottish_crown",
+ "description": "🄵🅅 Royal Cypher: Scottish Crown"
+ },
+ {
+ "key": "royal_cypher",
+ "value": "no",
+ "description": "🄵🅅 Royal Cypher: No"
+ },
+ {
+ "key": "route_master",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "route",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "roundtrip",
+ "description": "🄵 Forms Loop"
+ },
+ {
+ "key": "rooms",
+ "description": "🄵 Rooms"
+ },
+ {
+ "key": "room",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "restriction",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "resource",
+ "description": "🄵 Resources"
+ },
+ {
+ "key": "resource",
+ "value": "aggregate",
+ "description": "🄵🅅 Resources: Aggregate"
+ },
+ {
+ "key": "resource",
+ "value": "clay",
+ "description": "🄵🅅 Resources: Clay"
+ },
+ {
+ "key": "resource",
+ "value": "coal",
+ "description": "🄵🅅 Resources: Coal"
+ },
+ {
+ "key": "resource",
+ "value": "gold",
+ "description": "🄵🅅 Resources: Gold"
+ },
+ {
+ "key": "resource",
+ "value": "gravel",
+ "description": "🄵🅅 Resources: Gravel"
+ },
+ {
+ "key": "resource",
+ "value": "iron_ore",
+ "description": "🄵🅅 Resources: Iron Ore"
+ },
+ {
+ "key": "resource",
+ "value": "limestone",
+ "description": "🄵🅅 Resources: Limestone"
+ },
+ {
+ "key": "resource",
+ "value": "peat",
+ "description": "🄵🅅 Resources: Peat"
+ },
+ {
+ "key": "resource",
+ "value": "sand",
+ "description": "🄵🅅 Resources: Sand"
+ },
+ {
+ "key": "resort",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "residential",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "reservation",
+ "description": "🄵 Reservations"
+ },
+ {
+ "key": "reservation",
+ "value": "yes",
+ "description": "🄵🅅 Reservations: Accepted"
+ },
+ {
+ "key": "reservation",
+ "value": "no",
+ "description": "🄵🅅 Reservations: Not Accepted"
+ },
+ {
+ "key": "reservation",
+ "value": "required",
+ "description": "🄵🅅 Reservations: Required"
+ },
+ {
+ "key": "reservation",
+ "value": "recommended",
+ "description": "🄵🅅 Reservations: Recommended"
+ },
+ {
+ "key": "religion",
+ "description": "🄵 Religion"
+ },
+ {
+ "key": "religion",
+ "value": "bahai",
+ "description": "🄵🅅 Religion: Bahá’í"
+ },
+ {
+ "key": "religion",
+ "value": "benzhu",
+ "description": "🄵🅅 Religion: Benzhu"
+ },
+ {
+ "key": "religion",
+ "value": "caodaism",
+ "description": "🄵🅅 Religion: Caodaist"
+ },
+ {
+ "key": "religion",
+ "value": "chinese_folk",
+ "description": "🄵🅅 Religion: Chinese Folk Religion"
+ },
+ {
+ "key": "religion",
+ "value": "confucian",
+ "description": "🄵🅅 Religion: Confucian"
+ },
+ {
+ "key": "religion",
+ "value": "jain",
+ "description": "🄵🅅 Religion: Jain"
+ },
+ {
+ "key": "religion",
+ "value": "multifaith",
+ "description": "🄵🅅 Religion: Multifaith"
+ },
+ {
+ "key": "religion",
+ "value": "none",
+ "description": "🄵🅅 Religion: Nonreligious"
+ },
+ {
+ "key": "religion",
+ "value": "pagan",
+ "description": "🄵🅅 Religion: Pagan"
+ },
+ {
+ "key": "religion",
+ "value": "spiritualist",
+ "description": "🄵🅅 Religion: Spiritualist"
+ },
+ {
+ "key": "religion",
+ "value": "tenrikyo",
+ "description": "🄵🅅 Religion: Tenrikyo"
+ },
+ {
+ "key": "religion",
+ "value": "unitarian_universalist",
+ "description": "🄵🅅 Religion: Unitarian Universalist"
+ },
+ {
+ "key": "religion",
+ "value": "vietnamese_folk",
+ "description": "🄵🅅 Religion: Vietnamese Folk Religion"
+ },
+ {
+ "key": "religion",
+ "value": "voodoo",
+ "description": "🄵🅅 Religion: Voodoo"
+ },
+ {
+ "key": "type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "reg_name",
+ "description": "🄵 Regional Name"
+ },
+ {
+ "key": "ref",
+ "description": "🄵 Taxiway Name, 🄵 Stop Number, 🄵 Section Number, 🄵 Runway Number, 🄵 Route Number, 🄵 Room Number, 🄵 Road Number, 🄵 Line Number, 🄵 Platform Number, 🄵 Junction Number, 🄵 Hole Number, 🄵 Bridge Number, 🄵 Gate Number, 🄵 Reference Code"
+ },
+ {
+ "key": "recycling_type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "recycling:",
+ "description": "🄵 Accepts"
+ },
+ {
+ "key": "recycling:glass_bottles",
+ "description": "🄵🅅 Accepts: Glass Bottles and Jars"
+ },
+ {
+ "key": "recycling:glass",
+ "description": "🄵🅅 Accepts: Any Glass (tempered glass, windows, mirrors, etc.)"
+ },
+ {
+ "key": "recycling:paper",
+ "description": "🄵🅅 Accepts: Paper"
+ },
+ {
+ "key": "recycling:plastic",
+ "description": "🄵🅅 Accepts: Plastic"
+ },
+ {
+ "key": "recycling:clothes",
+ "description": "🄵🅅 Accepts: Clothes"
+ },
+ {
+ "key": "recycling:cans",
+ "description": "🄵🅅 Accepts: Cans"
+ },
+ {
+ "key": "recycling:batteries",
+ "description": "🄵🅅 Accepts: Batteries"
+ },
+ {
+ "key": "recycling:shoes",
+ "description": "🄵🅅 Accepts: Shoes"
+ },
+ {
+ "key": "recycling:green_waste",
+ "description": "🄵🅅 Accepts: Green Waste"
+ },
+ {
+ "key": "recycling:plastic_packaging",
+ "description": "🄵🅅 Accepts: Plastic Packaging"
+ },
+ {
+ "key": "recycling:plastic_bottles",
+ "description": "🄵🅅 Accepts: Plastic Bottles"
+ },
+ {
+ "key": "recycling:cardboard",
+ "description": "🄵🅅 Accepts: Cardboard"
+ },
+ {
+ "key": "recycling:scrap_metal",
+ "description": "🄵🅅 Accepts: Scrap Metal"
+ },
+ {
+ "key": "recycling:cooking_oil",
+ "description": "🄵🅅 Accepts: Cooking Oil"
+ },
+ {
+ "key": "recycling:engine_oil",
+ "description": "🄵🅅 Accepts: Engine Oil"
+ },
+ {
+ "key": "real_fire",
+ "description": "🄵 Real Fire"
+ },
+ {
+ "key": "rcn_ref",
+ "description": "🄵 Cycling Code"
+ },
+ {
+ "key": "rating",
+ "description": "🄵 Power Rating"
+ },
+ {
+ "key": "ramp",
+ "description": "🄵 Embedded Ramp"
+ },
+ {
+ "key": "ramp",
+ "value": "yes",
+ "description": "🄵🅅 Embedded Ramp: Yes"
+ },
+ {
+ "key": "ramp",
+ "value": "no",
+ "description": "🄵🅅 Embedded Ramp: No"
+ },
+ {
+ "key": "ramp",
+ "value": "separate",
+ "description": "🄵🅅 Embedded Ramp: Separately Mapped"
+ },
+ {
+ "key": "pump",
+ "description": "🄵 Pump"
+ },
+ {
+ "key": "pump",
+ "value": "yes",
+ "description": "🄵🅅 Pump: Yes"
+ },
+ {
+ "key": "pump",
+ "value": "manual",
+ "description": "🄵🅅 Pump: Manual Hand Pump"
+ },
+ {
+ "key": "pump",
+ "value": "powered",
+ "description": "🄵🅅 Pump: Machine-Powered Pump"
+ },
+ {
+ "key": "pump",
+ "value": "no",
+ "description": "🄵🅅 Pump: None"
+ },
+ {
+ "key": "product",
+ "description": "🄵 Products"
+ },
+ {
+ "key": "produce",
+ "description": "🄵 Produce"
+ },
+ {
+ "key": "preschool",
+ "description": "🄵 Preschool"
+ },
+ {
+ "key": "power_supply",
+ "description": "🄵 Power Supply"
+ },
+ {
+ "key": "post:block_number",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:city",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:conscriptionnumber",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:county",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:country",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:district",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:floor",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:hamlet",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:housename",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:housenumber",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:neighbourhood",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:place",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:postcode",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:province",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:quarter",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:state",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:street",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:subdistrict",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:suburb",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "post:unit",
+ "description": "🄵 Delivery Address"
+ },
+ {
+ "key": "portable",
+ "description": "🄵 Portable"
+ },
+ {
+ "key": "population",
+ "description": "🄵 Population"
+ },
+ {
+ "key": "plots",
+ "description": "🄵 Plots"
+ },
+ {
+ "key": "playground",
+ "value": "archimedes_screw",
+ "description": "🄵🅅 Type: Archimedes Screw"
+ },
+ {
+ "key": "playground",
+ "value": "balance",
+ "description": "🄵🅅 Type: Balancing Device (unspecified)"
+ },
+ {
+ "key": "playground",
+ "value": "ball_pool",
+ "description": "🄵🅅 Type: Ball Pool"
+ },
+ {
+ "key": "playground",
+ "value": "bannister_bars",
+ "description": "🄵🅅 Type: Banister Bars"
+ },
+ {
+ "key": "playground",
+ "value": "belt_bridge",
+ "description": "🄵🅅 Type: Belt Bridge"
+ },
+ {
+ "key": "playground",
+ "value": "blackboard",
+ "description": "🄵🅅 Type: Blackboard"
+ },
+ {
+ "key": "playground",
+ "value": "chute",
+ "description": "🄵🅅 Type: Chute"
+ },
+ {
+ "key": "playground",
+ "value": "climbing",
+ "description": "🄵🅅 Type: Climbing Device (unspecified)"
+ },
+ {
+ "key": "playground",
+ "value": "climbing_pole",
+ "description": "🄵🅅 Type: Climbing Pole"
+ },
+ {
+ "key": "playground",
+ "value": "climbing_slope",
+ "description": "🄵🅅 Type: Climbing Slope"
+ },
+ {
+ "key": "playground",
+ "value": "dome",
+ "description": "🄵🅅 Type: Dome"
+ },
+ {
+ "key": "playground",
+ "value": "excavator",
+ "description": "🄵🅅 Type: Excavator"
+ },
+ {
+ "key": "playground",
+ "value": "exercise",
+ "description": "🄵🅅 Type: Exercise Device"
+ },
+ {
+ "key": "playground",
+ "value": "hammock",
+ "description": "🄵🅅 Type: Hammock"
+ },
+ {
+ "key": "playground",
+ "value": "hamster_wheel",
+ "description": "🄵🅅 Type: Hamster Wheel"
+ },
+ {
+ "key": "playground",
+ "value": "ladder",
+ "description": "🄵🅅 Type: Ladder"
+ },
+ {
+ "key": "playground",
+ "value": "maze",
+ "description": "🄵🅅 Type: Maze"
+ },
+ {
+ "key": "playground",
+ "value": "marble_run",
+ "description": "🄵🅅 Type: Marble Run"
+ },
+ {
+ "key": "playground",
+ "value": "monkey_bars",
+ "description": "🄵🅅 Type: Monkey Bars"
+ },
+ {
+ "key": "playground",
+ "value": "mound",
+ "description": "🄵🅅 Type: Artificial Mound"
+ },
+ {
+ "key": "playground",
+ "value": "musical_instrument",
+ "description": "🄵🅅 Type: Musical Instrument"
+ },
+ {
+ "key": "playground",
+ "value": "parallel_bars",
+ "description": "🄵🅅 Type: Parallel Bars"
+ },
+ {
+ "key": "playground",
+ "value": "platform",
+ "description": "🄵🅅 Type: Platform"
+ },
+ {
+ "key": "playground",
+ "value": "pump",
+ "description": "🄵🅅 Type: Pump"
+ },
+ {
+ "key": "playground",
+ "value": "ride_on",
+ "description": "🄵🅅 Type: Fixed Riding Device"
+ },
+ {
+ "key": "playground",
+ "value": "rope_swing",
+ "description": "🄵🅅 Type: Rope Swing"
+ },
+ {
+ "key": "playground",
+ "value": "rope_traverse",
+ "description": "🄵🅅 Type: Rope Traverse"
+ },
+ {
+ "key": "playground",
+ "value": "rotator",
+ "description": "🄵🅅 Type: Rotating Device (unspecified)"
+ },
+ {
+ "key": "playground",
+ "value": "sand",
+ "description": "🄵🅅 Type: Sand Play Device (unspecified)"
+ },
+ {
+ "key": "playground",
+ "value": "sand_pulley",
+ "description": "🄵🅅 Type: Sand Pulley"
+ },
+ {
+ "key": "playground",
+ "value": "sand_seesaw",
+ "description": "🄵🅅 Type: Sand Seesaw"
+ },
+ {
+ "key": "playground",
+ "value": "sand_wheel",
+ "description": "🄵🅅 Type: Sand Wheel"
+ },
+ {
+ "key": "playground",
+ "value": "seat",
+ "description": "🄵🅅 Type: Seat"
+ },
+ {
+ "key": "playground",
+ "value": "sieve",
+ "description": "🄵🅅 Type: Sieve"
+ },
+ {
+ "key": "playground",
+ "value": "speaking_tube",
+ "description": "🄵🅅 Type: Speaking Tube"
+ },
+ {
+ "key": "playground",
+ "value": "spinner",
+ "description": "🄵🅅 Type: Spinner"
+ },
+ {
+ "key": "playground",
+ "value": "spinner_bowl",
+ "description": "🄵🅅 Type: Spinner Bowl"
+ },
+ {
+ "key": "playground",
+ "value": "spinning_circle",
+ "description": "🄵🅅 Type: Spinning Circle"
+ },
+ {
+ "key": "playground",
+ "value": "spinning_disc",
+ "description": "🄵🅅 Type: Spinning Disc"
+ },
+ {
+ "key": "playground",
+ "value": "spring_board",
+ "description": "🄵🅅 Type: Spring Board"
+ },
+ {
+ "key": "playground",
+ "value": "stepping_post",
+ "description": "🄵🅅 Type: Stepping Post"
+ },
+ {
+ "key": "playground",
+ "value": "stepping_stone",
+ "description": "🄵🅅 Type: Stepping Stone"
+ },
+ {
+ "key": "playground",
+ "value": "steps",
+ "description": "🄵🅅 Type: Steps"
+ },
+ {
+ "key": "playground",
+ "value": "baby_swing",
+ "description": "🄵🅅 Type: Baby Swing"
+ },
+ {
+ "key": "playground",
+ "value": "tire_swing",
+ "description": "🄵🅅 Type: Tire Swing"
+ },
+ {
+ "key": "playground",
+ "value": "table",
+ "description": "🄵🅅 Type: Table"
+ },
+ {
+ "key": "playground",
+ "value": "track",
+ "description": "🄵🅅 Type: Playground Track"
+ },
+ {
+ "key": "playground",
+ "value": "water_barrier",
+ "description": "🄵🅅 Type: Water Barrier"
+ },
+ {
+ "key": "playground",
+ "value": "water_basin",
+ "description": "🄵🅅 Type: Water Basin"
+ },
+ {
+ "key": "playground",
+ "value": "water_cannon",
+ "description": "🄵🅅 Type: Water Cannon"
+ },
+ {
+ "key": "playground",
+ "value": "water_channel",
+ "description": "🄵🅅 Type: Water Channel"
+ },
+ {
+ "key": "playground",
+ "value": "water_seesaw",
+ "description": "🄵🅅 Type: Water Seesaw"
+ },
+ {
+ "key": "playground",
+ "value": "water_sprayer",
+ "description": "🄵🅅 Type: Water Sprayer"
+ },
+ {
+ "key": "playground",
+ "value": "water_stream",
+ "description": "🄵🅅 Type: Water Stream"
+ },
+ {
+ "key": "playground",
+ "value": "water_wheel",
+ "description": "🄵🅅 Type: Water Wheel"
+ },
+ {
+ "key": "playground",
+ "value": "wobble_bridge",
+ "description": "🄵🅅 Type: Wobble Bridge"
+ },
+ {
+ "key": "playground",
+ "value": "youth_bench",
+ "description": "🄵🅅 Type: Youth Bench"
+ },
+ {
+ "key": "plant",
+ "description": "🄵 Plant"
+ },
+ {
+ "key": "picnic_table",
+ "description": "🄵 Picnic Table"
+ },
+ {
+ "key": "phone",
+ "description": "🄵 Telephone"
+ },
+ {
+ "key": "contact:phone",
+ "description": "🄵 Telephone"
+ },
+ {
+ "key": "phases",
+ "description": "🄵 Phases"
},
{
"key": "payment:",
@@ -17655,1601 +17775,3871 @@
"description": "🄵🅅 Payment Types: WeChat Pay"
},
{
- "key": "phases",
- "description": "🄵 Phases"
- },
- {
- "key": "phone",
- "description": "🄵 Telephone"
- },
- {
- "key": "pipeline",
+ "key": "parking_space",
"description": "🄵 Type"
},
{
- "key": "piste:difficulty",
- "description": "🄵 Difficulty"
- },
- {
- "key": "piste:difficulty",
- "value": "novice",
- "description": "🄵🅅 Difficulty: Novice"
- },
- {
- "key": "piste:difficulty",
- "value": "easy",
- "description": "🄵🅅 Difficulty: Easy"
- },
- {
- "key": "piste:difficulty",
- "value": "intermediate",
- "description": "🄵🅅 Difficulty: Intermediate"
- },
- {
- "key": "piste:difficulty",
- "value": "advanced",
- "description": "🄵🅅 Difficulty: Advanced"
- },
- {
- "key": "piste:difficulty",
- "value": "expert",
- "description": "🄵🅅 Difficulty: Expert"
- },
- {
- "key": "piste:difficulty",
- "value": "freeride",
- "description": "🄵🅅 Difficulty: Freeride"
- },
- {
- "key": "piste:difficulty",
- "value": "extreme",
- "description": "🄵🅅 Difficulty: Extreme"
- },
- {
- "key": "piste:grooming",
- "description": "🄵 Grooming"
- },
- {
- "key": "piste:grooming",
- "value": "classic",
- "description": "🄵🅅 Grooming: Classic"
- },
- {
- "key": "piste:grooming",
- "value": "mogul",
- "description": "🄵🅅 Grooming: Mogul"
- },
- {
- "key": "piste:grooming",
- "value": "backcountry",
- "description": "🄵🅅 Grooming: Backcountry"
- },
- {
- "key": "piste:grooming",
- "value": "classic+skating",
- "description": "🄵🅅 Grooming: Classic and Skating"
- },
- {
- "key": "piste:grooming",
- "value": "scooter",
- "description": "🄵🅅 Grooming: Scooter/Snowmobile"
- },
- {
- "key": "piste:grooming",
- "value": "skating",
- "description": "🄵🅅 Grooming: Skating"
- },
- {
- "key": "piste:type",
- "value": "snow_park",
- "description": "🄵🅅 Type: Snow Park"
- },
- {
- "key": "piste:type",
- "value": "playground",
- "description": "🄵🅅 Type: Playground"
- },
- {
- "key": "piste:type",
- "value": "connection",
- "description": "🄵🅅 Type: Connection"
- },
- {
- "key": "plant",
- "description": "🄵 Plant"
- },
- {
- "key": "plant:method",
- "description": "🄵 Generation Method"
- },
- {
- "key": "plant:method",
- "value": "water-storage"
- },
- {
- "key": "plant:method",
- "value": "water-pumped-storage"
- },
- {
- "key": "plant:method",
- "value": "run-of-the-river"
- },
- {
- "key": "plant:method",
- "value": "thermal"
- },
- {
- "key": "plant:method",
- "value": "combustion"
- },
- {
- "key": "plant:method",
- "value": "gasification"
- },
- {
- "key": "plant:output",
- "description": "🄵 Form of Power Output"
- },
- {
- "key": "plant:outputelectricity",
- "description": "🄵🅅 Form of Power Output: Electricity"
- },
- {
- "key": "plant:outputhot_water",
- "description": "🄵🅅 Form of Power Output: Hot Water"
- },
- {
- "key": "plant:outputhot_air",
- "description": "🄵🅅 Form of Power Output: Hot Air"
- },
- {
- "key": "plant:outputcold_water",
- "description": "🄵🅅 Form of Power Output: Cold Water"
- },
- {
- "key": "plant:outputcold_air",
- "description": "🄵🅅 Form of Power Output: Cold Air"
- },
- {
- "key": "plant:outputcompressed_air",
- "description": "🄵🅅 Form of Power Output: Compressed Air"
- },
- {
- "key": "plant:outputsteam",
- "description": "🄵🅅 Form of Power Output: Steam"
- },
- {
- "key": "plant:outputvacuum",
- "description": "🄵🅅 Form of Power Output: Vacuum"
- },
- {
- "key": "plant:output:electricity",
- "description": "🄵 Electric Power Output"
- },
- {
- "key": "plant:source",
- "description": "🄵 Energy Source"
- },
- {
- "key": "playground:theme",
- "description": "🄵 Theme"
- },
- {
- "key": "plots",
- "description": "🄵 Plots"
- },
- {
- "key": "population",
- "description": "🄵 Population"
- },
- {
- "key": "population:date",
- "description": "🄵 Population Date"
- },
- {
- "key": "portable",
- "description": "🄵 Portable"
- },
- {
- "key": "post:block_number",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:city",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:conscriptionnumber",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:county",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:country",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:district",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:floor",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:hamlet",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:housename",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:housenumber",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:neighbourhood",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:place",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:postcode",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:province",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:quarter",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:state",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:street",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:subdistrict",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:suburb",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "post:unit",
- "description": "🄵 Delivery Address"
- },
- {
- "key": "power_supply",
- "description": "🄵 Power Supply"
- },
- {
- "key": "preschool",
- "description": "🄵 Preschool"
- },
- {
- "key": "produce",
- "description": "🄵 Produce"
- },
- {
- "key": "product",
- "description": "🄵 Products"
- },
- {
- "key": "public_bookcase:type",
+ "key": "parking",
"description": "🄵 Type"
},
{
- "key": "pump",
- "description": "🄵 Pump"
+ "key": "parking",
+ "value": "surface",
+ "description": "🄵🅅 Type: `surface`"
},
{
- "key": "pump",
+ "key": "parking",
+ "value": "lane",
+ "description": "🄵🅅 Type: `lane`"
+ },
+ {
+ "key": "parking",
+ "value": "rooftop",
+ "description": "🄵🅅 Type: `rooftop`"
+ },
+ {
+ "key": "parking",
+ "value": "carports",
+ "description": "🄵🅅 Type: `carports`"
+ },
+ {
+ "key": "parking",
+ "value": "garage_boxes",
+ "description": "🄵🅅 Type: `garage_boxes`"
+ },
+ {
+ "key": "parking",
+ "value": "sheds",
+ "description": "🄵🅅 Type: `sheds`"
+ },
+ {
+ "key": "parking",
+ "value": "layby",
+ "description": "🄵🅅 Type: `layby`"
+ },
+ {
+ "key": "parking",
+ "value": "on_kerb",
+ "description": "🄵🅅 Type: `on_kerb`"
+ },
+ {
+ "key": "parking",
+ "value": "half_on_kerb",
+ "description": "🄵🅅 Type: `half_on_kerb`"
+ },
+ {
+ "key": "parking",
+ "value": "shoulder",
+ "description": "🄵🅅 Type: `shoulder`"
+ },
+ {
+ "key": "park_ride",
+ "description": "🄵 Park and Ride"
+ },
+ {
+ "key": "parcel_pickup",
+ "description": "🄵 Parcel Pickup"
+ },
+ {
+ "key": "parcel_pickup",
"value": "yes",
- "description": "🄵🅅 Pump: Yes"
+ "description": "🄵🅅 Parcel Pickup: Yes"
},
{
- "key": "pump",
- "value": "manual",
- "description": "🄵🅅 Pump: Manual Hand Pump"
- },
- {
- "key": "pump",
- "value": "powered",
- "description": "🄵🅅 Pump: Machine-Powered Pump"
- },
- {
- "key": "pump",
+ "key": "parcel_pickup",
"value": "no",
- "description": "🄵🅅 Pump: None"
+ "description": "🄵🅅 Parcel Pickup: No"
},
{
- "key": "railway:position",
- "description": "🄵 Milestone Position"
+ "key": "parcel_mail_in",
+ "description": "🄵 Parcel Dropoff"
},
{
- "key": "railway:signal:direction",
- "description": "🄵 Direction Affected"
+ "key": "par",
+ "description": "🄵 Par"
},
{
- "key": "railway:signal:direction",
+ "key": "panoramax",
+ "description": "🄵 Panoramax Image ID"
+ },
+ {
+ "key": "overlap",
+ "description": "🄵 Overlap Width (Meters)"
+ },
+ {
+ "key": "outdoor_seating",
+ "description": "🄵 Outdoor Seating"
+ },
+ {
+ "key": "organic",
+ "description": "🄵 Organic Products"
+ },
+ {
+ "key": "organic",
+ "value": "no",
+ "description": "🄵🅅 Organic Products: None"
+ },
+ {
+ "key": "organic",
+ "value": "yes",
+ "description": "🄵🅅 Organic Products: Some"
+ },
+ {
+ "key": "operator",
+ "description": "🄵 Operator"
+ },
+ {
+ "key": "opening_hours",
+ "description": "🄵 Hours"
+ },
+ {
+ "key": "opening_date",
+ "description": "🄵 Expected Opening Date"
+ },
+ {
+ "key": "opening",
+ "description": "🄵 Opening Width (Meters)"
+ },
+ {
+ "key": "openfire",
+ "description": "🄵 Open Fires Allowed"
+ },
+ {
+ "key": "oneway",
+ "description": "🄵 One Way"
+ },
+ {
+ "key": "oneway",
+ "value": "yes",
+ "description": "🄵🅅 One Way: Yes"
+ },
+ {
+ "key": "oneway",
+ "value": "no",
+ "description": "🄵🅅 One Way: No"
+ },
+ {
+ "key": "oneway",
+ "value": "reversible",
+ "description": "🄵🅅 One Way: Reversible"
+ },
+ {
+ "key": "oneway",
+ "value": "alternating",
+ "description": "🄵🅅 One Way: Alternating"
+ },
+ {
+ "key": "official_name",
+ "description": "🄵 Official Name"
+ },
+ {
+ "key": "office",
+ "value": "construction_company",
+ "description": "🄵🅅 Type: Construction Company Office"
+ },
+ {
+ "key": "office",
+ "value": "courier",
+ "description": "🄵🅅 Type: Courier Office"
+ },
+ {
+ "key": "office",
+ "value": "logistics",
+ "description": "🄵🅅 Type: Forwarding Agency"
+ },
+ {
+ "key": "nudism",
+ "description": "🄵 Nudism"
+ },
+ {
+ "key": "nudism",
+ "value": "customary",
+ "description": "🄵🅅 Nudism: Customary"
+ },
+ {
+ "key": "nudism",
+ "value": "designated",
+ "description": "🄵🅅 Nudism: Designated"
+ },
+ {
+ "key": "nudism",
+ "value": "no",
+ "description": "🄵🅅 Nudism: Prohibited"
+ },
+ {
+ "key": "nudism",
+ "value": "obligatory",
+ "description": "🄵🅅 Nudism: Obligatory"
+ },
+ {
+ "key": "nudism",
+ "value": "permissive",
+ "description": "🄵🅅 Nudism: Permissive"
+ },
+ {
+ "key": "nudism",
+ "value": "yes",
+ "description": "🄵🅅 Nudism: Allowed"
+ },
+ {
+ "key": "note",
+ "description": "🄵 Note"
+ },
+ {
+ "key": "network",
+ "description": "🄵 Network, 🄵 Network Class"
+ },
+ {
+ "key": "network",
+ "value": "lhn",
+ "description": "🄵🅅 Network Class: Local"
+ },
+ {
+ "key": "network",
+ "value": "rhn",
+ "description": "🄵🅅 Network Class: Regional"
+ },
+ {
+ "key": "network",
+ "value": "nhn",
+ "description": "🄵🅅 Network Class: National"
+ },
+ {
+ "key": "network",
+ "value": "ihn",
+ "description": "🄵🅅 Network Class: International"
+ },
+ {
+ "key": "network",
+ "value": "lwn",
+ "description": "🄵🅅 Network Class: Local"
+ },
+ {
+ "key": "network",
+ "value": "rwn",
+ "description": "🄵🅅 Network Class: Regional"
+ },
+ {
+ "key": "network",
+ "value": "nwn",
+ "description": "🄵🅅 Network Class: National"
+ },
+ {
+ "key": "network",
+ "value": "iwn",
+ "description": "🄵🅅 Network Class: International"
+ },
+ {
+ "key": "network",
+ "value": "lcn",
+ "description": "🄵🅅 Network Class: Local"
+ },
+ {
+ "key": "network",
+ "value": "rcn",
+ "description": "🄵🅅 Network Class: Regional"
+ },
+ {
+ "key": "network",
+ "value": "ncn",
+ "description": "🄵🅅 Network Class: National"
+ },
+ {
+ "key": "network",
+ "value": "icn",
+ "description": "🄵🅅 Network Class: International"
+ },
+ {
+ "key": "nat_name",
+ "description": "🄵 National Name"
+ },
+ {
+ "key": "name",
+ "description": "🄵 Name"
+ },
+ {
+ "key": "museum",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "mooring",
+ "description": "🄵 Mooring"
+ },
+ {
+ "key": "mooring",
+ "value": "yes",
+ "description": "🄵🅅 Mooring: Yes"
+ },
+ {
+ "key": "mooring",
+ "value": "no",
+ "description": "🄵🅅 Mooring: No"
+ },
+ {
+ "key": "mooring",
+ "value": "private",
+ "description": "🄵🅅 Mooring: Private"
+ },
+ {
+ "key": "mooring",
+ "value": "commercial",
+ "description": "🄵🅅 Mooring: Commercial"
+ },
+ {
+ "key": "mooring",
+ "value": "guest",
+ "description": "🄵🅅 Mooring: Guests"
+ },
+ {
+ "key": "monitoring:",
+ "description": "🄵 Monitoring"
+ },
+ {
+ "key": "model",
+ "description": "🄵 Model"
+ },
+ {
+ "key": "mobile",
+ "description": "🄵 Mobile Phone"
+ },
+ {
+ "key": "contact:mobile",
+ "description": "🄵 Mobile Phone"
+ },
+ {
+ "key": "minspeed",
+ "description": "🄵 Minimum Speed Limit"
+ },
+ {
+ "key": "min_height",
+ "description": "🄵 Height of Bottom (Meters)"
+ },
+ {
+ "key": "min_age",
+ "description": "🄵 Minimum Age"
+ },
+ {
+ "key": "mimics",
+ "description": "🄵 Mimics"
+ },
+ {
+ "key": "military_service",
+ "description": "🄵 Military Service"
+ },
+ {
+ "key": "military_service",
+ "value": "air_force",
+ "description": "🄵🅅 Military Service: Air Force"
+ },
+ {
+ "key": "military_service",
+ "value": "army",
+ "description": "🄵🅅 Military Service: Army"
+ },
+ {
+ "key": "military_service",
+ "value": "coast_guard",
+ "description": "🄵🅅 Military Service: Coast Guard"
+ },
+ {
+ "key": "military_service",
+ "value": "marines",
+ "description": "🄵🅅 Military Service: Marines"
+ },
+ {
+ "key": "microbrewery",
+ "description": "🄵 Microbrewery"
+ },
+ {
+ "key": "message",
+ "description": "🄵 Message"
+ },
+ {
+ "key": "memorial",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "memorial",
+ "value": "bust",
+ "description": "🄵🅅 Type: Bust"
+ },
+ {
+ "key": "memorial",
+ "value": "cross",
+ "description": "🄵🅅 Type: Memorial Cross"
+ },
+ {
+ "key": "memorial",
+ "value": "ghost_bike",
+ "description": "🄵🅅 Type: Ghost Bike"
+ },
+ {
+ "key": "memorial",
+ "value": "obelisk",
+ "description": "🄵🅅 Type: Obelisk"
+ },
+ {
+ "key": "memorial",
+ "value": "sculpture",
+ "description": "🄵🅅 Type: Sculpture"
+ },
+ {
+ "key": "memorial",
+ "value": "statue",
+ "description": "🄵🅅 Type: Statue"
+ },
+ {
+ "key": "memorial",
+ "value": "stele",
+ "description": "🄵🅅 Type: Stele"
+ },
+ {
+ "key": "memorial",
+ "value": "stone",
+ "description": "🄵🅅 Type: Stone"
+ },
+ {
+ "key": "memorial",
+ "value": "war_memorial",
+ "description": "🄵🅅 Type: War Memorial"
+ },
+ {
+ "key": "maxwidth",
+ "description": "🄵 Width Limit"
+ },
+ {
+ "key": "maxweight",
+ "description": "🄵 Weight Limit"
+ },
+ {
+ "key": "maxstay",
+ "description": "🄵 Time Limit"
+ },
+ {
+ "key": "maxstay",
+ "value": "15 minutes",
+ "description": "🄵🅅 Time Limit: `15 minutes`"
+ },
+ {
+ "key": "maxstay",
+ "value": "30 minutes",
+ "description": "🄵🅅 Time Limit: `30 minutes`"
+ },
+ {
+ "key": "maxstay",
+ "value": "45 minutes",
+ "description": "🄵🅅 Time Limit: `45 minutes`"
+ },
+ {
+ "key": "maxstay",
+ "value": "1 hour",
+ "description": "🄵🅅 Time Limit: `1 hour`"
+ },
+ {
+ "key": "maxstay",
+ "value": "1.5 hours",
+ "description": "🄵🅅 Time Limit: `1.5 hours`"
+ },
+ {
+ "key": "maxstay",
+ "value": "2 hours",
+ "description": "🄵🅅 Time Limit: `2 hours`"
+ },
+ {
+ "key": "maxstay",
+ "value": "2.5 hours",
+ "description": "🄵🅅 Time Limit: `2.5 hours`"
+ },
+ {
+ "key": "maxstay",
+ "value": "3 hours",
+ "description": "🄵🅅 Time Limit: `3 hours`"
+ },
+ {
+ "key": "maxstay",
+ "value": "4 hours",
+ "description": "🄵🅅 Time Limit: `4 hours`"
+ },
+ {
+ "key": "maxstay",
+ "value": "1 day",
+ "description": "🄵🅅 Time Limit: `1 day`"
+ },
+ {
+ "key": "maxstay",
+ "value": "2 days",
+ "description": "🄵🅅 Time Limit: `2 days`"
+ },
+ {
+ "key": "maxspeed",
+ "description": "🄵 Speed Limit"
+ },
+ {
+ "key": "maxlength",
+ "description": "🄵 Length Limit"
+ },
+ {
+ "key": "maxheight",
+ "description": "🄵 Height Limit"
+ },
+ {
+ "key": "maxaxleload",
+ "description": "🄵 Axle Weight Limit"
+ },
+ {
+ "key": "max_age",
+ "description": "🄵 Maximum Age"
+ },
+ {
+ "key": "mattress",
+ "description": "🄵 Mattresses Available"
+ },
+ {
+ "key": "material",
+ "description": "🄵 Material"
+ },
+ {
+ "key": "material",
+ "value": "adobe",
+ "description": "🄵🅅 Material: Adobe"
+ },
+ {
+ "key": "material",
+ "value": "aluminium",
+ "description": "🄵🅅 Material: Aluminum"
+ },
+ {
+ "key": "material",
+ "value": "brass",
+ "description": "🄵🅅 Material: Brass"
+ },
+ {
+ "key": "material",
+ "value": "brick",
+ "description": "🄵🅅 Material: Brick"
+ },
+ {
+ "key": "material",
+ "value": "bronze",
+ "description": "🄵🅅 Material: Bronze"
+ },
+ {
+ "key": "material",
+ "value": "concrete",
+ "description": "🄵🅅 Material: Concrete"
+ },
+ {
+ "key": "material",
+ "value": "dry_stone",
+ "description": "🄵🅅 Material: Dry Stone"
+ },
+ {
+ "key": "material",
+ "value": "glass",
+ "description": "🄵🅅 Material: Glass"
+ },
+ {
+ "key": "material",
+ "value": "granite",
+ "description": "🄵🅅 Material: Granite"
+ },
+ {
+ "key": "material",
+ "value": "iron",
+ "description": "🄵🅅 Material: Iron"
+ },
+ {
+ "key": "material",
+ "value": "limestone",
+ "description": "🄵🅅 Material: Limestone"
+ },
+ {
+ "key": "material",
+ "value": "marble",
+ "description": "🄵🅅 Material: Marble"
+ },
+ {
+ "key": "material",
+ "value": "metal",
+ "description": "🄵🅅 Material: Metal"
+ },
+ {
+ "key": "material",
+ "value": "plastic",
+ "description": "🄵🅅 Material: Plastic"
+ },
+ {
+ "key": "material",
+ "value": "reinforced_concrete",
+ "description": "🄵🅅 Material: Reinforced Concrete"
+ },
+ {
+ "key": "material",
+ "value": "rock",
+ "description": "🄵🅅 Material: Rock"
+ },
+ {
+ "key": "material",
+ "value": "sand",
+ "description": "🄵🅅 Material: Sand"
+ },
+ {
+ "key": "material",
+ "value": "sandstone",
+ "description": "🄵🅅 Material: Sandstone"
+ },
+ {
+ "key": "material",
+ "value": "soil",
+ "description": "🄵🅅 Material: Soil, Earth"
+ },
+ {
+ "key": "material",
+ "value": "steel",
+ "description": "🄵🅅 Material: Steel"
+ },
+ {
+ "key": "material",
+ "value": "stone",
+ "description": "🄵🅅 Material: Stone"
+ },
+ {
+ "key": "material",
+ "value": "wood",
+ "description": "🄵🅅 Material: Wood"
+ },
+ {
+ "key": "marker",
+ "value": "aerial",
+ "description": "🄵🅅 Type: `aerial`"
+ },
+ {
+ "key": "marker",
+ "value": "ground",
+ "description": "🄵🅅 Type: `ground`"
+ },
+ {
+ "key": "marker",
+ "value": "pedestal",
+ "description": "🄵🅅 Type: `pedestal`"
+ },
+ {
+ "key": "marker",
+ "value": "plate",
+ "description": "🄵🅅 Type: `plate`"
+ },
+ {
+ "key": "marker",
+ "value": "post",
+ "description": "🄵🅅 Type: `post`"
+ },
+ {
+ "key": "marker",
+ "value": "stone",
+ "description": "🄵🅅 Type: `stone`"
+ },
+ {
+ "key": "mapillary",
+ "description": "🄵 Mapillary Image ID"
+ },
+ {
+ "key": "map_type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "map_type",
+ "value": "topo",
+ "description": "🄵🅅 Type: Topographical Map"
+ },
+ {
+ "key": "map_type",
+ "value": "street",
+ "description": "🄵🅅 Type: Road Map"
+ },
+ {
+ "key": "map_type",
+ "value": "scheme",
+ "description": "🄵🅅 Type: Schematic Map"
+ },
+ {
+ "key": "map_type",
+ "value": "toposcope",
+ "description": "🄵🅅 Type: Toposcope"
+ },
+ {
+ "key": "map_size",
+ "description": "🄵 Coverage"
+ },
+ {
+ "key": "manufacturer",
+ "description": "🄵 Manufacturer"
+ },
+ {
+ "key": "manhole",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "locked",
+ "description": "🄵 Locked"
+ },
+ {
+ "key": "lockable",
+ "description": "🄵 Lockable"
+ },
+ {
+ "key": "lock",
+ "description": "🄵 Lock"
+ },
+ {
+ "key": "location",
+ "description": "🄵 Location"
+ },
+ {
+ "key": "location",
+ "value": "outdoor",
+ "description": "🄵🅅 Location: Outdoor"
+ },
+ {
+ "key": "location",
+ "value": "indoor",
+ "description": "🄵🅅 Location: Indoor"
+ },
+ {
+ "key": "loc_name",
+ "description": "🄵 Local Name"
+ },
+ {
+ "key": "lit",
+ "description": "🄵 Lit"
+ },
+ {
+ "key": "line_management",
+ "description": "🄵 Line Management"
+ },
+ {
+ "key": "line_attachment",
+ "description": "🄵 Line Attachment"
+ },
+ {
+ "key": "lifeguard",
+ "description": "🄵 Lifeguard, 🄵 Type"
+ },
+ {
+ "key": "license_classes",
+ "description": "🄵 Classes of Driver’s License"
+ },
+ {
+ "key": "liaison",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "level",
+ "description": "🄵 Levels, 🄵 Level"
+ },
+ {
+ "key": "length",
+ "description": "🄵 Length (Meters)"
+ },
+ {
+ "key": "leaf_type",
+ "description": "🄵 Leaf Type"
+ },
+ {
+ "key": "leaf_type",
+ "value": "leafless",
+ "description": "🄵🅅 Leaf Type: Leafless"
+ },
+ {
+ "key": "leaf_type",
+ "value": "mixed",
+ "description": "🄵🅅 Leaf Type: Mixed"
+ },
+ {
+ "key": "leaf_cycle",
+ "description": "🄵 Leaf Cycle"
+ },
+ {
+ "key": "leaf_cycle",
+ "value": "semi_evergreen",
+ "description": "🄵🅅 Leaf Cycle: Semi-Evergreen"
+ },
+ {
+ "key": "leaf_cycle",
+ "value": "semi_deciduous",
+ "description": "🄵🅅 Leaf Cycle: Semi-Deciduous"
+ },
+ {
+ "key": "leaf_cycle",
+ "value": "mixed",
+ "description": "🄵🅅 Leaf Cycle: Mixed"
+ },
+ {
+ "key": "layer",
+ "description": "🄵 Layer"
+ },
+ {
+ "key": "language:",
+ "description": "🄵 Languages"
+ },
+ {
+ "key": "lanes",
+ "description": "🄵 Lanes"
+ },
+ {
+ "key": "lane_markings",
+ "description": "🄵 Lane Markings"
+ },
+ {
+ "key": "lamp_type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "lamp_mount",
+ "description": "🄵 Mount"
+ },
+ {
+ "key": "label",
+ "description": "🄵 Label"
+ },
+ {
+ "key": "kneipp_water_cure:",
+ "description": "🄵 Basin Types"
+ },
+ {
+ "key": "kneipp_water_cure:foot",
+ "description": "🄵🅅 Basin Types: Foot Basin"
+ },
+ {
+ "key": "kneipp_water_cure:arm",
+ "description": "🄵🅅 Basin Types: Arm Basin"
+ },
+ {
+ "key": "kneipp_water_cure:face",
+ "description": "🄵🅅 Basin Types: Face Basin"
+ },
+ {
+ "key": "kitchen",
+ "description": "🄵 Kitchen"
+ },
+ {
+ "key": "kerb",
+ "description": "🄵 Curb, 🄵 Type"
+ },
+ {
+ "key": "kerb",
+ "value": "no",
+ "description": "🄵🅅 Curb: `no`"
+ },
+ {
+ "key": "kerb",
+ "value": "yes",
+ "description": "🄵🅅 Curb: `yes`"
+ },
+ {
+ "key": "junction",
+ "description": "🄵 Junction"
+ },
+ {
+ "key": "junction",
+ "value": "roundabout",
+ "description": "🄵🅅 Junction: Roundabout"
+ },
+ {
+ "key": "junction",
+ "value": "circular",
+ "description": "🄵🅅 Junction: Traffic Circle"
+ },
+ {
+ "key": "junction",
+ "value": "jughandle",
+ "description": "🄵🅅 Junction: Jughandle"
+ },
+ {
+ "key": "irrigation",
+ "description": "🄵 Center-Pivot Irrigation"
+ },
+ {
+ "key": "irrigation",
+ "value": "pivot",
+ "description": "🄵🅅 Center-Pivot Irrigation: Yes"
+ },
+ {
+ "key": "interval",
+ "description": "🄵 Interval"
+ },
+ {
+ "key": "internet_access",
+ "description": "🄵 Internet Connection"
+ },
+ {
+ "key": "internet_access",
+ "value": "yes",
+ "description": "🄵🅅 Internet Connection: Yes"
+ },
+ {
+ "key": "internet_access",
+ "value": "no",
+ "description": "🄵🅅 Internet Connection: No"
+ },
+ {
+ "key": "internet_access",
+ "value": "wired",
+ "description": "🄵🅅 Internet Connection: Wired"
+ },
+ {
+ "key": "internet_access",
+ "value": "terminal",
+ "description": "🄵🅅 Internet Connection: Terminal"
+ },
+ {
+ "key": "intermittent",
+ "description": "🄵 Intermittent"
+ },
+ {
+ "key": "inscription",
+ "description": "🄵 Inscription"
+ },
+ {
+ "key": "information",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "informal",
+ "description": "🄵 Informal"
+ },
+ {
+ "key": "industrial",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "incline",
+ "description": "🄵 Incline"
+ },
+ {
+ "key": "incline",
+ "value": "up",
+ "description": "🄵🅅 Incline: Up"
+ },
+ {
+ "key": "incline",
+ "value": "down",
+ "description": "🄵🅅 Incline: Down"
+ },
+ {
+ "key": "image",
+ "description": "🄵 Image"
+ },
+ {
+ "key": "icao",
+ "description": "🄵 ICAO Airport Code"
+ },
+ {
+ "key": "iata",
+ "description": "🄵 IATA Airport Code"
+ },
+ {
+ "key": "house",
+ "description": "🄵 House Type"
+ },
+ {
+ "key": "house",
+ "value": "bungalow",
+ "description": "🄵🅅 House Type: `bungalow`"
+ },
+ {
+ "key": "house",
+ "value": "link-detached",
+ "description": "🄵🅅 House Type: `link-detached`"
+ },
+ {
+ "key": "house",
+ "value": "maisonette",
+ "description": "🄵🅅 House Type: `maisonette`"
+ },
+ {
+ "key": "hot_water",
+ "description": "🄵 Hot Water"
+ },
+ {
+ "key": "horse_scale",
+ "description": "🄵 Horseback Riding Difficulty"
+ },
+ {
+ "key": "horse_scale",
+ "value": "common",
+ "description": "🄵🅅 Horseback Riding Difficulty: Easy: No problems or difficulties. (default)"
+ },
+ {
+ "key": "horse_scale",
+ "value": "demanding",
+ "description": "🄵🅅 Horseback Riding Difficulty: Use with caution: Uneven way, occasional difficult passages."
+ },
+ {
+ "key": "horse_scale",
+ "value": "difficult",
+ "description": "🄵🅅 Horseback Riding Difficulty: Difficult: Way narrow and exposed. May contain obstacles to step over and narrow passages."
+ },
+ {
+ "key": "horse_scale",
+ "value": "critical",
+ "description": "🄵🅅 Horseback Riding Difficulty: Borderline: Passable only for experienced riders and horses. Major obstacles. Bridges should be examined carefully."
+ },
+ {
+ "key": "horse_scale",
+ "value": "dangerous",
+ "description": "🄵🅅 Horseback Riding Difficulty: Dangerous: Passable only for very experienced riders and horses and only in good weather. Dismount."
+ },
+ {
+ "key": "horse_scale",
+ "value": "impossible",
+ "description": "🄵🅅 Horseback Riding Difficulty: Impassable: Way or bridge not passable for horses. Too narrow, insufficient support, obstacles like ladders. Danger of life."
+ },
+ {
+ "key": "hoops",
+ "description": "🄵 Hoops"
+ },
+ {
+ "key": "historic",
+ "value": "bomb_crater",
+ "description": "🄵🅅 Type: Bomb Crater"
+ },
+ {
+ "key": "historic",
+ "value": "building",
+ "description": "🄵🅅 Type: Historic Building"
+ },
+ {
+ "key": "historic",
+ "value": "charcoal_pile",
+ "description": "🄵🅅 Type: Charcoal Pile"
+ },
+ {
+ "key": "historic",
+ "value": "church",
+ "description": "🄵🅅 Type: Church"
+ },
+ {
+ "key": "historic",
+ "value": "citywalls",
+ "description": "🄵🅅 Type: Citywall"
+ },
+ {
+ "key": "historic",
+ "value": "milestone",
+ "description": "🄵🅅 Type: Milestone"
+ },
+ {
+ "key": "historic",
+ "value": "millstone",
+ "description": "🄵🅅 Type: Millstone"
+ },
+ {
+ "key": "historic",
+ "value": "mine",
+ "description": "🄵🅅 Type: Mine"
+ },
+ {
+ "key": "historic",
+ "value": "mine_shaft",
+ "description": "🄵🅅 Type: Mine Shaft"
+ },
+ {
+ "key": "historic",
+ "value": "railway",
+ "description": "🄵🅅 Type: Railway"
+ },
+ {
+ "key": "historic",
+ "value": "shieling",
+ "description": "🄵🅅 Type: Shieling"
+ },
+ {
+ "key": "highspeed",
+ "description": "🄵 High-Speed"
+ },
+ {
+ "key": "highchair",
+ "description": "🄵 High Chair"
+ },
+ {
+ "key": "height",
+ "description": "🄵 Building Height (Meters), 🄵 Height (Meters)"
+ },
+ {
+ "key": "heating",
+ "description": "🄵 Heating"
+ },
+ {
+ "key": "healthcare",
+ "value": "blood_bank",
+ "description": "🄵🅅 Type: Blood Bank"
+ },
+ {
+ "key": "healthcare",
+ "value": "clinic",
+ "description": "🄵🅅 Type: Clinic"
+ },
+ {
+ "key": "healthcare",
+ "value": "community_health_worker",
+ "description": "🄵🅅 Type: Community Health Worker"
+ },
+ {
+ "key": "healthcare",
+ "value": "dentist",
+ "description": "🄵🅅 Type: Dentist"
+ },
+ {
+ "key": "healthcare",
+ "value": "doctor",
+ "description": "🄵🅅 Type: Doctor"
+ },
+ {
+ "key": "healthcare",
+ "value": "hospital",
+ "description": "🄵🅅 Type: Hospital"
+ },
+ {
+ "key": "healthcare",
+ "value": "nurse",
+ "description": "🄵🅅 Type: Nurse"
+ },
+ {
+ "key": "healthcare",
+ "value": "pharmacy",
+ "description": "🄵🅅 Type: Pharmacy"
+ },
+ {
+ "key": "healthcare",
+ "value": "vaccination_centre",
+ "description": "🄵🅅 Type: Vaccination Center"
+ },
+ {
+ "key": "hazard",
+ "description": "🄵 Hazard"
+ },
+ {
+ "key": "hazard",
+ "value": "archery_range",
+ "description": "🄵🅅 Hazard: Arrows"
+ },
+ {
+ "key": "hazard",
+ "value": "avalanche",
+ "description": "🄵🅅 Hazard: Avalanche"
+ },
+ {
+ "key": "hazard",
+ "value": "biohazard",
+ "description": "🄵🅅 Hazard: Biohazard"
+ },
+ {
+ "key": "hazard",
+ "value": "contamination",
+ "description": "🄵🅅 Hazard: Chemical Contamination"
+ },
+ {
+ "key": "hazard",
+ "value": "electricity",
+ "description": "🄵🅅 Hazard: Electric Shock"
+ },
+ {
+ "key": "hazard",
+ "value": "shooting_range",
+ "description": "🄵🅅 Hazard: Gunfire"
+ },
+ {
+ "key": "hazard",
+ "value": "hole",
+ "description": "🄵🅅 Hazard: Hole"
+ },
+ {
+ "key": "hazard",
+ "value": "minefield",
+ "description": "🄵🅅 Hazard: Land Mines"
+ },
+ {
+ "key": "hazard",
+ "value": "nuclear",
+ "description": "🄵🅅 Hazard: Nuclear / Radioactive"
+ },
+ {
+ "key": "hazard",
+ "value": "quicksand",
+ "description": "🄵🅅 Hazard: Quicksand"
+ },
+ {
+ "key": "hashtags",
+ "description": "🄵 Hashtags"
+ },
+ {
+ "key": "handrest",
+ "description": "🄵 Handrest"
+ },
+ {
+ "key": "handrail",
+ "description": "🄵 Handrail"
+ },
+ {
+ "key": "handicap",
+ "description": "🄵 Handicap"
+ },
+ {
+ "key": "guest_house",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "group_only",
+ "description": "🄵 Groups Only"
+ },
+ {
+ "key": "grape_variety",
+ "description": "🄵 Grape Varieties"
+ },
+ {
+ "key": "grades",
+ "description": "🄵 Grade Levels"
+ },
+ {
+ "key": "government",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "genus",
+ "description": "🄵 Genus"
+ },
+ {
+ "key": "female",
+ "description": "🄵 Gender"
+ },
+ {
+ "key": "male",
+ "description": "🄵 Gender"
+ },
+ {
+ "key": "unisex",
+ "description": "🄵 Gender"
+ },
+ {
+ "key": "gauge",
+ "description": "🄵 Gauge"
+ },
+ {
+ "key": "gambling",
+ "description": "🄵 Games"
+ },
+ {
+ "key": "fuel",
+ "description": "🄵 Fuel"
+ },
+ {
+ "key": "from",
+ "description": "🄵 From"
+ },
+ {
+ "key": "frequency",
+ "description": "🄵 Operating Frequency"
+ },
+ {
+ "key": "fountain",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "fortification_type",
+ "description": "🄵 Fortification Type"
+ },
+ {
+ "key": "footrest",
+ "description": "🄵 Footrest"
+ },
+ {
+ "key": "flood_prone",
+ "description": "🄵 Flood Prone"
+ },
+ {
+ "key": "floating",
+ "description": "🄵 Floating"
+ },
+ {
+ "key": "flashing_lights",
+ "description": "🄵 Flashing Lights"
+ },
+ {
+ "key": "flashing_lights",
+ "value": "button",
+ "description": "🄵🅅 Flashing Lights: `button`"
+ },
+ {
+ "key": "flashing_lights",
+ "value": "always",
+ "description": "🄵🅅 Flashing Lights: `always`"
+ },
+ {
+ "key": "flashing_lights",
+ "value": "sensor",
+ "description": "🄵🅅 Flashing Lights: `sensor`"
+ },
+ {
+ "key": "flashing_lights",
+ "value": "button;sensor",
+ "description": "🄵🅅 Flashing Lights: `button;sensor`"
+ },
+ {
+ "key": "flashing_lights",
+ "value": "no",
+ "description": "🄵🅅 Flashing Lights: No"
+ },
+ {
+ "key": "flashing_lights",
+ "value": "yes",
+ "description": "🄵🅅 Flashing Lights: Yes"
+ },
+ {
+ "key": "fixme",
+ "description": "🄵 Fix Me"
+ },
+ {
+ "key": "fitness_station",
+ "description": "🄵 Equipment Type"
+ },
+ {
+ "key": "fishing",
+ "description": "🄵 Fishing"
+ },
+ {
+ "key": "fireplace",
+ "description": "🄵 Fireplace"
+ },
+ {
+ "key": "fire_sprinkler",
+ "description": "🄵 Fire Sprinkler Inlet"
+ },
+ {
+ "key": "fire_sprinkler",
+ "value": "dry",
+ "description": "🄵🅅 Fire Sprinkler Inlet: Dedicated Network (Normally Dry)"
+ },
+ {
+ "key": "fire_sprinkler",
+ "value": "wet",
+ "description": "🄵🅅 Fire Sprinkler Inlet: Connected to Mains (Permanently Filled)"
+ },
+ {
+ "key": "fire_sprinkler",
+ "value": "pre-action",
+ "description": "🄵🅅 Fire Sprinkler Inlet: Connected to Mains (Pre-Action System)"
+ },
+ {
+ "key": "fire_sprinkler",
+ "value": "yes",
+ "description": "🄵🅅 Fire Sprinkler Inlet: Unknown Type"
+ },
+ {
+ "key": "fire_sprinkler",
+ "value": "no",
+ "description": "🄵🅅 Fire Sprinkler Inlet: No"
+ },
+ {
+ "key": "fire_service_inlet",
+ "description": "🄵 Shape"
+ },
+ {
+ "key": "fire_service_inlet",
+ "value": "pillar",
+ "description": "🄵🅅 Shape: Pillar/Aboveground"
+ },
+ {
+ "key": "fire_service_inlet",
+ "value": "underground",
+ "description": "🄵🅅 Shape: Underground"
+ },
+ {
+ "key": "fire_service_inlet",
+ "value": "wall",
+ "description": "🄵🅅 Shape: Wall"
+ },
+ {
+ "key": "fire_service_inlet",
+ "value": "pipe",
+ "description": "🄵🅅 Shape: Capped Pipe"
+ },
+ {
+ "key": "fire_mains",
+ "description": "🄵 Network-Type"
+ },
+ {
+ "key": "fire_mains",
+ "value": "dry",
+ "description": "🄵🅅 Network-Type: Dedicated Network (Normally Dry)"
+ },
+ {
+ "key": "fire_mains",
+ "value": "wet",
+ "description": "🄵🅅 Network-Type: Connected to Mains (Permanently Filled)"
+ },
+ {
+ "key": "fire_mains",
+ "value": "yes",
+ "description": "🄵🅅 Network-Type: Unknown Type"
+ },
+ {
+ "key": "fire_mains",
+ "value": "no",
+ "description": "🄵🅅 Network-Type: No"
+ },
+ {
+ "key": "fence_type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "fee",
+ "description": "🄵 Fee"
+ },
+ {
+ "key": "fax",
+ "description": "🄵 Fax"
+ },
+ {
+ "key": "contact:fax",
+ "description": "🄵 Fax"
+ },
+ {
+ "key": "faces",
+ "description": "🄵 Faces"
+ },
+ {
+ "key": "expressway",
+ "description": "🄵 Expressway"
+ },
+ {
+ "key": "expected_rwn_route_relations",
+ "description": "🄵 Adjacent Walking Nodes"
+ },
+ {
+ "key": "expected_rcn_route_relations",
+ "description": "🄵 Adjacent Cycling Nodes"
+ },
+ {
+ "key": "except",
+ "description": "🄵 Exceptions"
+ },
+ {
+ "key": "entrance",
+ "value": "yes",
+ "description": "🄵🅅 Type: Unspecified"
+ },
+ {
+ "key": "entrance",
+ "value": "secondary",
+ "description": "🄵🅅 Type: Secondary"
+ },
+ {
+ "key": "entrance",
+ "value": "service",
+ "description": "🄵🅅 Type: Service"
+ },
+ {
+ "key": "entrance",
+ "value": "exit",
+ "description": "🄵🅅 Type: Exit Only"
+ },
+ {
+ "key": "entrance",
+ "value": "entrance",
+ "description": "🄵🅅 Type: Entrance Only"
+ },
+ {
+ "key": "entrance",
+ "value": "home",
+ "description": "🄵🅅 Type: Private House or Apartment"
+ },
+ {
+ "key": "entrance",
+ "value": "garage",
+ "description": "🄵🅅 Type: Garage Door"
+ },
+ {
+ "key": "enforcement",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "emergency_ward_entrance",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "embassy",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "embassy",
+ "value": "yes",
+ "description": "🄵🅅 Type: Embassy"
+ },
+ {
+ "key": "embassy",
+ "value": "residence",
+ "description": "🄵🅅 Type: Official Residence of an Ambassador"
+ },
+ {
+ "key": "embassy",
+ "value": "high_commission",
+ "description": "🄵🅅 Type: High Commission"
+ },
+ {
+ "key": "embassy",
+ "value": "mission",
+ "description": "🄵🅅 Type: Diplomatic Mission"
+ },
+ {
+ "key": "embassy",
+ "value": "branch_embassy",
+ "description": "🄵🅅 Type: Branch of an Embassy"
+ },
+ {
+ "key": "embassy",
+ "value": "nunciature",
+ "description": "🄵🅅 Type: Diplomatic Mission of the Holy See"
+ },
+ {
+ "key": "embassy",
+ "value": "delegation",
+ "description": "🄵🅅 Type: Delegation"
+ },
+ {
+ "key": "embassy",
+ "value": "interests_section",
+ "description": "🄵🅅 Type: Interests Section"
+ },
+ {
+ "key": "email",
+ "description": "🄵 Email"
+ },
+ {
+ "key": "contact:email",
+ "description": "🄵 Email"
+ },
+ {
+ "key": "electrified",
+ "description": "🄵 Electrification"
+ },
+ {
+ "key": "electrified",
+ "value": "contact_line",
+ "description": "🄵🅅 Electrification: Contact Line"
+ },
+ {
+ "key": "electrified",
+ "value": "rail",
+ "description": "🄵🅅 Electrification: Electrified Rail"
+ },
+ {
+ "key": "electrified",
+ "value": "yes",
+ "description": "🄵🅅 Electrification: Yes (unspecified)"
+ },
+ {
+ "key": "electrified",
+ "value": "no",
+ "description": "🄵🅅 Electrification: No"
+ },
+ {
+ "key": "ele",
+ "description": "🄵 Elevation (Meters)"
+ },
+ {
+ "key": "education",
+ "value": "college",
+ "description": "🄵🅅 Type: College"
+ },
+ {
+ "key": "education",
+ "value": "dancing_school",
+ "description": "🄵🅅 Type: Dancing School"
+ },
+ {
+ "key": "education",
+ "value": "driving_school",
+ "description": "🄵🅅 Type: Driving School"
+ },
+ {
+ "key": "education",
+ "value": "kindergarten",
+ "description": "🄵🅅 Type: Kindergarten"
+ },
+ {
+ "key": "education",
+ "value": "language_school",
+ "description": "🄵🅅 Type: Language School"
+ },
+ {
+ "key": "education",
+ "value": "music_school",
+ "description": "🄵🅅 Type: Music School"
+ },
+ {
+ "key": "education",
+ "value": "prep_school",
+ "description": "🄵🅅 Type: Test Prep / Tutoring School"
+ },
+ {
+ "key": "education",
+ "value": "school",
+ "description": "🄵🅅 Type: School"
+ },
+ {
+ "key": "education",
+ "value": "university",
+ "description": "🄵🅅 Type: University"
+ },
+ {
+ "key": "duration",
+ "description": "🄵 Duration"
+ },
+ {
+ "key": "drive_through",
+ "description": "🄵 Drive-Through"
+ },
+ {
+ "key": "drinking_water",
+ "description": "🄵 Drinking Water Available, 🄵 Drinkable"
+ },
+ {
+ "key": "drink:",
+ "description": "🄵 Drinks"
+ },
+ {
+ "key": "door",
+ "description": "🄵 Type, 🄵 Door"
+ },
+ {
+ "key": "dog",
+ "description": "🄵 Dogs, 🄵 Suitable For Dogs"
+ },
+ {
+ "key": "dog",
+ "value": "leashed",
+ "description": "🄵🅅 Dogs: Leashed Only"
+ },
+ {
+ "key": "dog",
+ "value": "unleashed",
+ "description": "🄵🅅 Dogs: Leashes Not Required"
+ },
+ {
+ "key": "dog",
+ "value": "yes",
+ "description": "🄵🅅 Dogs: Allowed"
+ },
+ {
+ "key": "dog",
+ "value": "no",
+ "description": "🄵🅅 Dogs: Not Allowed"
+ },
+ {
+ "key": "dock",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "dock",
+ "value": "drydock",
+ "description": "🄵🅅 Type: Dry Dock"
+ },
+ {
+ "key": "dock",
+ "value": "floating",
+ "description": "🄵🅅 Type: Floating Dry Dock"
+ },
+ {
+ "key": "dock",
+ "value": "tidal",
+ "description": "🄵🅅 Type: Impounded Tidal Dock"
+ },
+ {
+ "key": "distance",
+ "description": "🄵 Distance"
+ },
+ {
+ "key": "display",
+ "description": "🄵 Display"
+ },
+ {
+ "key": "display",
+ "value": "analog",
+ "description": "🄵🅅 Display: Analog"
+ },
+ {
+ "key": "display",
+ "value": "digital",
+ "description": "🄵🅅 Display: Digital"
+ },
+ {
+ "key": "display",
+ "value": "unorthodox",
+ "description": "🄵🅅 Display: Unorthodox"
+ },
+ {
+ "key": "dispensing",
+ "description": "🄵 Dispenses Prescriptions"
+ },
+ {
+ "key": "direction",
+ "description": "🄵 Direction Affected, 🄵 Direction (Degrees Clockwise), 🄵 Direction"
+ },
+ {
+ "key": "direction",
"value": "forward",
"description": "🄵🅅 Direction Affected: Forward"
},
{
- "key": "railway:signal:direction",
+ "key": "direction",
"value": "backward",
"description": "🄵🅅 Direction Affected: Backward"
},
{
- "key": "railway:signal:direction",
+ "key": "direction",
"value": "both",
"description": "🄵🅅 Direction Affected: Both / All"
},
{
- "key": "ramp",
- "description": "🄵 Embedded Ramp"
+ "key": "direction",
+ "value": "clockwise",
+ "description": "🄵🅅 Direction: Clockwise"
},
{
- "key": "rating",
- "description": "🄵 Power Rating"
+ "key": "direction",
+ "value": "anticlockwise",
+ "description": "🄵🅅 Direction: Counterclockwise"
},
{
- "key": "rcn_ref",
- "description": "🄵 Cycling Code"
+ "key": "direction",
+ "value": "north",
+ "description": "🄵🅅 Direction: Northbound"
},
{
- "key": "real_fire",
- "description": "🄵 Real Fire"
+ "key": "direction",
+ "value": "south",
+ "description": "🄵🅅 Direction: Southbound"
},
{
- "key": "recycling:",
- "description": "🄵 Accepts"
+ "key": "direction",
+ "value": "east",
+ "description": "🄵🅅 Direction: Eastbound"
},
{
- "key": "recycling:glass_bottles",
- "description": "🄵🅅 Accepts: Glass Bottles and Jars"
+ "key": "direction",
+ "value": "west",
+ "description": "🄵🅅 Direction: Westbound"
},
{
- "key": "recycling:glass",
- "description": "🄵🅅 Accepts: Any Glass (tempered glass, windows, mirrors, etc.)"
- },
- {
- "key": "recycling:paper",
- "description": "🄵🅅 Accepts: Paper"
- },
- {
- "key": "recycling:plastic",
- "description": "🄵🅅 Accepts: Plastic"
- },
- {
- "key": "recycling:clothes",
- "description": "🄵🅅 Accepts: Clothes"
- },
- {
- "key": "recycling:cans",
- "description": "🄵🅅 Accepts: Cans"
- },
- {
- "key": "recycling:batteries",
- "description": "🄵🅅 Accepts: Batteries"
- },
- {
- "key": "recycling:shoes",
- "description": "🄵🅅 Accepts: Shoes"
- },
- {
- "key": "recycling:green_waste",
- "description": "🄵🅅 Accepts: Green Waste"
- },
- {
- "key": "recycling:plastic_packaging",
- "description": "🄵🅅 Accepts: Plastic Packaging"
- },
- {
- "key": "recycling:plastic_bottles",
- "description": "🄵🅅 Accepts: Plastic Bottles"
- },
- {
- "key": "recycling:cardboard",
- "description": "🄵🅅 Accepts: Cardboard"
- },
- {
- "key": "recycling:scrap_metal",
- "description": "🄵🅅 Accepts: Scrap Metal"
- },
- {
- "key": "recycling:cooking_oil",
- "description": "🄵🅅 Accepts: Cooking Oil"
- },
- {
- "key": "recycling:engine_oil",
- "description": "🄵🅅 Accepts: Engine Oil"
- },
- {
- "key": "recycling_type",
+ "key": "diplomatic",
"description": "🄵 Type"
},
{
- "key": "ref",
- "description": "🄵 Gate Number, 🄵 Hole Number, 🄵 Junction Number, 🄵 Platform Number, 🄵 Road Number, 🄵 Room Number, 🄵 Route Number, 🄵 Runway Number, 🄵 Section Number, 🄵 Stop Number, 🄵 Taxiway Name, 🄵 Reference Code"
+ "key": "diet:",
+ "description": "🄵 Diet Types"
},
{
- "key": "ref:FR:SIRET",
- "description": "🄵 SIRET Number"
+ "key": "diet:vegetarian",
+ "description": "🄵🅅 Diet Types: Vegetarian"
},
{
- "key": "ref:isil",
- "description": "🄵 ISIL Code"
+ "key": "diet:vegan",
+ "description": "🄵🅅 Diet Types: Vegan"
},
{
- "key": "ref:vatin",
- "description": "🄵 VAT ID Number"
+ "key": "diet:halal",
+ "description": "🄵🅅 Diet Types: Halal"
},
{
- "key": "type",
+ "key": "diet:gluten_free",
+ "description": "🄵🅅 Diet Types: Gluten-Free"
+ },
+ {
+ "key": "diet:kosher",
+ "description": "🄵🅅 Diet Types: Kosher"
+ },
+ {
+ "key": "diet:lactose_free",
+ "description": "🄵🅅 Diet Types: Lactose-Free"
+ },
+ {
+ "key": "diet:pescetarian",
+ "description": "🄵🅅 Diet Types: Pescetarian"
+ },
+ {
+ "key": "diameter_crown",
+ "description": "🄵 Crown Diameter"
+ },
+ {
+ "key": "diameter",
+ "description": "🄵 Diameter"
+ },
+ {
+ "key": "devices",
+ "description": "🄵 Devices"
+ },
+ {
+ "key": "destination",
+ "description": "🄵 Destination, 🄵 Destinations"
+ },
+ {
+ "key": "design",
+ "description": "🄵 Design"
+ },
+ {
+ "key": "description",
+ "description": "🄵 Description"
+ },
+ {
+ "key": "descent",
+ "description": "🄵 Total Descent"
+ },
+ {
+ "key": "depth",
+ "description": "🄵 Depth (Meters)"
+ },
+ {
+ "key": "depot",
"description": "🄵 Type"
},
{
- "key": "religion",
- "description": "🄵 Religion"
+ "key": "departures_board",
+ "description": "🄵 Departures/Arrivals Board"
},
{
- "key": "religion",
- "value": "bahai",
- "description": "🄵🅅 Religion: Bahá’í"
- },
- {
- "key": "religion",
- "value": "benzhu",
- "description": "🄵🅅 Religion: Benzhu"
- },
- {
- "key": "religion",
- "value": "caodaism",
- "description": "🄵🅅 Religion: Caodaist"
- },
- {
- "key": "religion",
- "value": "chinese_folk",
- "description": "🄵🅅 Religion: Chinese Folk Religion"
- },
- {
- "key": "religion",
- "value": "confucian",
- "description": "🄵🅅 Religion: Confucian"
- },
- {
- "key": "religion",
- "value": "jain",
- "description": "🄵🅅 Religion: Jain"
- },
- {
- "key": "religion",
- "value": "multifaith",
- "description": "🄵🅅 Religion: Multifaith"
- },
- {
- "key": "religion",
- "value": "none",
- "description": "🄵🅅 Religion: Nonreligious"
- },
- {
- "key": "religion",
- "value": "pagan",
- "description": "🄵🅅 Religion: Pagan"
- },
- {
- "key": "religion",
- "value": "spiritualist",
- "description": "🄵🅅 Religion: Spiritualist"
- },
- {
- "key": "religion",
- "value": "tenrikyo",
- "description": "🄵🅅 Religion: Tenrikyo"
- },
- {
- "key": "religion",
- "value": "unitarian_universalist",
- "description": "🄵🅅 Religion: Unitarian Universalist"
- },
- {
- "key": "religion",
- "value": "vietnamese_folk",
- "description": "🄵🅅 Religion: Vietnamese Folk Religion"
- },
- {
- "key": "religion",
- "value": "voodoo",
- "description": "🄵🅅 Religion: Voodoo"
- },
- {
- "key": "reservation",
- "description": "🄵 Reservations"
- },
- {
- "key": "reservation",
+ "key": "departures_board",
"value": "yes",
- "description": "🄵🅅 Reservations: Accepted"
+ "description": "🄵🅅 Departures/Arrivals Board: Yes"
},
{
- "key": "reservation",
+ "key": "departures_board",
+ "value": "timetable",
+ "description": "🄵🅅 Departures/Arrivals Board: Timetable"
+ },
+ {
+ "key": "departures_board",
+ "value": "realtime",
+ "description": "🄵🅅 Departures/Arrivals Board: Realtime"
+ },
+ {
+ "key": "departures_board",
"value": "no",
- "description": "🄵🅅 Reservations: Not Accepted"
+ "description": "🄵🅅 Departures/Arrivals Board: None"
},
{
- "key": "reservation",
- "value": "required",
- "description": "🄵🅅 Reservations: Required"
+ "key": "denotation",
+ "description": "🄵 Denotation"
},
{
- "key": "reservation",
- "value": "recommended",
- "description": "🄵🅅 Reservations: Recommended"
+ "key": "denomination",
+ "description": "🄵 Denomination"
},
{
- "key": "residential",
- "description": "🄵 Type"
+ "key": "delivery",
+ "description": "🄵 Delivery"
},
{
- "key": "resort",
- "description": "🄵 Type"
+ "key": "deflection",
+ "description": "🄵 Angle"
},
{
- "key": "resource",
- "description": "🄵 Resources"
+ "key": "date",
+ "description": "🄵 Date"
},
{
- "key": "restriction",
- "description": "🄵 Type"
+ "key": "cycleway:left",
+ "description": "🄵 Bike Lanes"
},
{
- "key": "roof:colour",
- "description": "🄵 Roof Color"
- },
- {
- "key": "room",
- "description": "🄵 Type"
- },
- {
- "key": "rooms",
- "description": "🄵 Rooms"
- },
- {
- "key": "rotor:diameter",
- "description": "🄵 Rotor Diameter (Meters)"
- },
- {
- "key": "roundtrip",
- "description": "🄵 Forms Loop"
- },
- {
- "key": "route_master",
- "description": "🄵 Type"
- },
- {
- "key": "route",
- "description": "🄵 Type"
- },
- {
- "key": "ruins",
- "description": "🄵 Type"
- },
- {
- "key": "rwn_ref",
- "description": "🄵 Walking Code"
- },
- {
- "key": "sac_scale",
- "description": "🄵 Hiking Difficulty"
- },
- {
- "key": "sac_scale",
- "value": "hiking",
- "description": "🄵🅅 Hiking Difficulty: T1: Hiking"
- },
- {
- "key": "sac_scale",
- "value": "mountain_hiking",
- "description": "🄵🅅 Hiking Difficulty: T2: Mountain Hiking"
- },
- {
- "key": "sac_scale",
- "value": "demanding_mountain_hiking",
- "description": "🄵🅅 Hiking Difficulty: T3: Demanding Mountain Hiking"
- },
- {
- "key": "sac_scale",
- "value": "alpine_hiking",
- "description": "🄵🅅 Hiking Difficulty: T4: Alpine Hiking"
- },
- {
- "key": "sac_scale",
- "value": "demanding_alpine_hiking",
- "description": "🄵🅅 Hiking Difficulty: T5: Demanding Alpine Hiking"
- },
- {
- "key": "sac_scale",
- "value": "difficult_alpine_hiking",
- "description": "🄵🅅 Hiking Difficulty: T6: Difficult Alpine Hiking"
- },
- {
- "key": "salt",
- "description": "🄵 Salt"
- },
- {
- "key": "sample_collection",
- "description": "🄵 Samples"
- },
- {
- "key": "sanitary_dump_station",
- "description": "🄵 Toilet Disposal"
- },
- {
- "key": "screen",
- "description": "🄵 Screens"
- },
- {
- "key": "scuba_diving:",
- "description": "🄵 Services"
- },
- {
- "key": "scuba_diving:repair",
- "description": "🄵🅅 Services: `repair`"
- },
- {
- "key": "scuba_diving:courses",
- "description": "🄵🅅 Services: `courses`"
- },
- {
- "key": "scuba_diving:rental",
- "description": "🄵🅅 Services: `rental`"
- },
- {
- "key": "scuba_diving:filling",
- "description": "🄵🅅 Services: `filling`"
- },
- {
- "key": "scuba_diving:air_filling",
- "description": "🄵🅅 Services: `air_filling`"
- },
- {
- "key": "scuba_diving:nitrox_filling",
- "description": "🄵🅅 Services: `nitrox_filling`"
- },
- {
- "key": "scuba_diving:trimix_filling",
- "description": "🄵🅅 Services: `trimix_filling`"
- },
- {
- "key": "scuba_diving:oxygen_filling",
- "description": "🄵🅅 Services: `oxygen_filling`"
- },
- {
- "key": "seamark:beacon_isolated_danger:shape",
- "description": "🄵 Shape"
- },
- {
- "key": "seamark:beacon_lateral:category",
- "description": "🄵 Category"
- },
- {
- "key": "seamark:beacon_lateral:category",
- "value": "port",
- "description": "🄵🅅 Category: Port"
- },
- {
- "key": "seamark:beacon_lateral:category",
- "value": "starboard",
- "description": "🄵🅅 Category: Starboard"
- },
- {
- "key": "seamark:beacon_lateral:category",
- "value": "waterway_left",
- "description": "🄵🅅 Category: Waterway Left"
- },
- {
- "key": "seamark:beacon_lateral:category",
- "value": "waterway_right",
- "description": "🄵🅅 Category: Waterway Right"
- },
- {
- "key": "seamark:beacon_lateral:category",
- "value": "danger_left",
- "description": "🄵🅅 Category: Danger Left"
- },
- {
- "key": "seamark:beacon_lateral:category",
- "value": "danger_right",
- "description": "🄵🅅 Category: Danger Right"
- },
- {
- "key": "seamark:beacon_lateral:colour",
- "description": "🄵 Color"
- },
- {
- "key": "seamark:beacon_lateral:colour",
- "value": "red",
- "description": "🄵🅅 Color: Red"
- },
- {
- "key": "seamark:beacon_lateral:colour",
- "value": "green",
- "description": "🄵🅅 Color: Green"
- },
- {
- "key": "seamark:beacon_lateral:colour",
- "value": "grey",
- "description": "🄵🅅 Color: Grey"
- },
- {
- "key": "seamark:beacon_lateral:shape",
- "description": "🄵 Shape"
- },
- {
- "key": "seamark:beacon_lateral:system",
- "description": "🄵 System"
- },
- {
- "key": "seamark:beacon_lateral:system",
- "value": "iala-a",
- "description": "🄵🅅 System: IALA A"
- },
- {
- "key": "seamark:beacon_lateral:system",
- "value": "iala-b",
- "description": "🄵🅅 System: IALA B"
- },
- {
- "key": "seamark:beacon_lateral:system",
- "value": "cevni",
- "description": "🄵🅅 System: CEVNI"
- },
- {
- "key": "seamark:beacon_lateral:system",
- "value": "other",
- "description": "🄵🅅 System: Other"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "description": "🄵 Category"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "value": "port",
- "description": "🄵🅅 Category: Port"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "value": "starboard",
- "description": "🄵🅅 Category: Starboard"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "value": "channel_left",
- "description": "🄵🅅 Category: Channel Left"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "value": "channel_right",
- "description": "🄵🅅 Category: Channel Right"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "value": "waterway_left",
- "description": "🄵🅅 Category: Waterway Left"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "value": "waterway_right",
- "description": "🄵🅅 Category: Waterway Right"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "value": "danger_left",
- "description": "🄵🅅 Category: Danger Left"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "value": "danger_right",
- "description": "🄵🅅 Category: Danger Right"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "value": "preferred_channel_port",
- "description": "🄵🅅 Category: Preferred Channel Port"
- },
- {
- "key": "seamark:buoy_lateral:category",
- "value": "preferred_channel_starboard",
- "description": "🄵🅅 Category: Preferred Channel Starboard"
- },
- {
- "key": "seamark:buoy_lateral:colour",
- "description": "🄵 Color"
- },
- {
- "key": "seamark:buoy_lateral:colour",
- "value": "red;white;red;white",
- "description": "🄵🅅 Color: Red-White-Red-White"
- },
- {
- "key": "seamark:buoy_lateral:colour",
- "value": "green;white;green;white",
- "description": "🄵🅅 Color: Green-White-Green-White"
- },
- {
- "key": "seamark:buoy_lateral:colour",
- "value": "red;green;red",
- "description": "🄵🅅 Color: Red-Green-Red"
- },
- {
- "key": "seamark:buoy_lateral:colour",
- "value": "green;red;green",
- "description": "🄵🅅 Color: Green-Red-Green"
- },
- {
- "key": "seamark:buoy_lateral:colour",
- "value": "white",
- "description": "🄵🅅 Color: White"
- },
- {
- "key": "seamark:buoy_lateral:colour",
- "value": "yellow",
- "description": "🄵🅅 Color: Yellow"
- },
- {
- "key": "seamark:buoy_lateral:shape",
- "description": "🄵 Shape"
- },
- {
- "key": "seamark:buoy_lateral:system",
- "description": "🄵 System"
- },
- {
- "key": "seamark:buoy_lateral:system",
- "value": "iala-a",
- "description": "🄵🅅 System: IALA A"
- },
- {
- "key": "seamark:buoy_lateral:system",
- "value": "iala-b",
- "description": "🄵🅅 System: IALA B"
- },
- {
- "key": "seamark:buoy_lateral:system",
- "value": "cevni",
- "description": "🄵🅅 System: CEVNI"
- },
- {
- "key": "seamark:buoy_lateral:system",
- "value": "other",
- "description": "🄵🅅 System: Other"
- },
- {
- "key": "seamark:mooring:category",
- "description": "🄵 Category"
- },
- {
- "key": "seamark:rescue_station:category",
- "description": "🄵 Life Saving Equipment"
- },
- {
- "key": "seamark:rescue_station:category",
- "value": "lifeboat",
- "description": "🄵🅅 Life Saving Equipment: Lifeboat (on Land)"
- },
- {
- "key": "seamark:rescue_station:category",
- "value": "lifeboat_on_mooring",
- "description": "🄵🅅 Life Saving Equipment: Lifeboat (at a Mooring)"
- },
- {
- "key": "seamark:rescue_station:category",
- "value": "seaplane",
- "description": "🄵🅅 Life Saving Equipment: Seaplane"
- },
- {
- "key": "seamark:rescue_station:category",
- "value": "aircraft",
- "description": "🄵🅅 Life Saving Equipment: Aircraft"
- },
- {
- "key": "seamark:rescue_station:category",
- "value": "hovercraft",
- "description": "🄵🅅 Life Saving Equipment: Hovercraft"
- },
- {
- "key": "seamark:rescue_station:category",
- "value": "radio",
- "description": "🄵🅅 Life Saving Equipment: Radio Station"
- },
- {
- "key": "seamark:rescue_station:category",
- "value": "first_aid",
- "description": "🄵🅅 Life Saving Equipment: First aid"
- },
- {
- "key": "seamark:rescue_station:category",
- "value": "refuge_shipwrecked",
- "description": "🄵🅅 Life Saving Equipment: Shipwreck Refuge"
- },
- {
- "key": "seamark:rescue_station:category",
- "value": "refuge_intertidal",
- "description": "🄵🅅 Life Saving Equipment: Intertidal Refuge"
- },
- {
- "key": "seamark:rescue_station:category",
- "value": "tug",
- "description": "🄵🅅 Life Saving Equipment: Salvage tug"
- },
- {
- "key": "seamark:wreck:category",
- "description": "🄵 Category"
- },
- {
- "key": "seasonal",
- "description": "🄵 Seasonal"
- },
- {
- "key": "seats",
- "description": "🄵 Seats"
- },
- {
- "key": "second_hand",
- "description": "🄵 Sells Used"
- },
- {
- "key": "second_hand",
- "value": "yes",
- "description": "🄵🅅 Sells Used: Yes"
- },
- {
- "key": "second_hand",
+ "key": "cycleway:left",
"value": "no",
- "description": "🄵🅅 Sells Used: No"
+ "description": "🄵🅅 Bike Lanes: `no`"
},
{
- "key": "segregated",
- "description": "🄵 Bicycle-Pedestrian Separation"
+ "key": "cycleway:left",
+ "value": "lane",
+ "description": "🄵🅅 Bike Lanes: `lane`"
},
{
- "key": "self_service",
- "description": "🄵 Self-Service"
+ "key": "cycleway:left",
+ "value": "shared_lane",
+ "description": "🄵🅅 Bike Lanes: `shared_lane`"
},
{
- "key": "service",
- "description": "🄵 Service Type, 🄵 Type"
+ "key": "cycleway:left",
+ "value": "track",
+ "description": "🄵🅅 Bike Lanes: `track`"
},
{
- "key": "service",
- "value": "spur",
- "description": "🄵🅅 Service Type: Spur"
+ "key": "cycleway:left",
+ "value": "share_busway",
+ "description": "🄵🅅 Bike Lanes: `share_busway`"
},
{
- "key": "service",
- "value": "yard",
- "description": "🄵🅅 Service Type: Yard"
+ "key": "cycleway:left",
+ "value": "separate",
+ "description": "🄵🅅 Bike Lanes: `separate`"
},
{
- "key": "service",
- "value": "siding",
- "description": "🄵🅅 Service Type: Siding"
+ "key": "cycleway:left",
+ "value": "opposite_lane",
+ "description": "🄵🅅 Bike Lanes: `opposite_lane`"
},
{
- "key": "service",
- "value": "crossover",
- "description": "🄵🅅 Service Type: Crossover"
+ "key": "cycleway:left",
+ "value": "opposite",
+ "description": "🄵🅅 Bike Lanes: `opposite`, 🄳 (deprecated tag) ➜ oneway:bicycle=no + cycleway:left=no"
},
{
- "key": "service_times",
- "description": "🄵 Service Times"
+ "key": "cycleway:right",
+ "description": "🄵 Bike Lanes"
},
{
- "key": "service:bicycle:",
- "description": "🄵 Bicycle Services"
- },
- {
- "key": "service:vehicle:",
- "description": "🄵 Services"
- },
- {
- "key": "shelter_type",
- "description": "🄵 Type"
- },
- {
- "key": "shelter",
- "description": "🄵 Shelter"
- },
- {
- "key": "shoes",
- "description": "🄵 Shoes"
- },
- {
- "key": "shower",
- "description": "🄵 Showers"
- },
- {
- "key": "siren:purpose",
- "description": "🄵 Purpose"
- },
- {
- "key": "siren:type",
- "description": "🄵 Type"
- },
- {
- "key": "siren:type",
- "value": "pneumatic",
- "description": "🄵🅅 Type: Pneumatic"
- },
- {
- "key": "siren:type",
- "value": "electronic",
- "description": "🄵🅅 Type: Electronic"
- },
- {
- "key": "siren:type",
- "value": "other",
- "description": "🄵🅅 Type: Other"
- },
- {
- "key": "site",
- "description": "🄵 Type"
- },
- {
- "key": "smoking",
- "description": "🄵 Smoking"
- },
- {
- "key": "smoking",
+ "key": "cycleway:right",
"value": "no",
- "description": "🄵🅅 Smoking: No smoking anywhere"
+ "description": "🄵🅅 Bike Lanes: `no`"
},
{
- "key": "smoking",
- "value": "separated",
- "description": "🄵🅅 Smoking: In smoking areas, not physically isolated"
+ "key": "cycleway:right",
+ "value": "lane",
+ "description": "🄵🅅 Bike Lanes: `lane`"
},
{
- "key": "smoking",
- "value": "isolated",
- "description": "🄵🅅 Smoking: In smoking areas, physically isolated"
+ "key": "cycleway:right",
+ "value": "shared_lane",
+ "description": "🄵🅅 Bike Lanes: `shared_lane`"
},
{
- "key": "smoking",
- "value": "outside",
- "description": "🄵🅅 Smoking: Allowed outside"
+ "key": "cycleway:right",
+ "value": "track",
+ "description": "🄵🅅 Bike Lanes: `track`"
},
{
- "key": "smoking",
- "value": "yes",
- "description": "🄵🅅 Smoking: Allowed everywhere"
+ "key": "cycleway:right",
+ "value": "share_busway",
+ "description": "🄵🅅 Bike Lanes: `share_busway`"
},
{
- "key": "smoking",
- "value": "dedicated",
- "description": "🄵🅅 Smoking: Dedicated to smokers (e.g. smokers' club)"
+ "key": "cycleway:right",
+ "value": "separate",
+ "description": "🄵🅅 Bike Lanes: `separate`"
},
{
- "key": "smoothness",
- "description": "🄵 Smoothness"
+ "key": "cycleway:right",
+ "value": "opposite_lane",
+ "description": "🄵🅅 Bike Lanes: `opposite_lane`"
},
{
- "key": "smoothness",
- "value": "excellent",
- "description": "🄵🅅 Smoothness: Thin Rollers: rollerblade, skateboard"
+ "key": "cycleway:right",
+ "value": "opposite",
+ "description": "🄵🅅 Bike Lanes: `opposite`"
},
{
- "key": "smoothness",
- "value": "good",
- "description": "🄵🅅 Smoothness: Thin Wheels: racing bike"
+ "key": "cyclestreet",
+ "description": "🄵 Cycle Street"
},
{
- "key": "smoothness",
- "value": "intermediate",
- "description": "🄵🅅 Smoothness: Wheels: city bike, wheelchair, scooter"
+ "key": "cycle_network",
+ "description": "🄵 Network"
},
{
- "key": "smoothness",
- "value": "bad",
- "description": "🄵🅅 Smoothness: Robust Wheels: trekking bike, car, rickshaw"
- },
- {
- "key": "smoothness",
- "value": "very_bad",
- "description": "🄵🅅 Smoothness: High Clearance: light duty off-road vehicle"
- },
- {
- "key": "smoothness",
- "value": "horrible",
- "description": "🄵🅅 Smoothness: Off-Road: heavy duty off-road vehicle"
- },
- {
- "key": "smoothness",
- "value": "very_horrible",
- "description": "🄵🅅 Smoothness: Specialized off-road: tractor, ATV"
- },
- {
- "key": "smoothness",
- "value": "impassable",
- "description": "🄵🅅 Smoothness: Impassable / No wheeled vehicle"
- },
- {
- "key": "sms",
- "description": "🄵 SMS"
- },
- {
- "key": "social_facility:for",
- "description": "🄵 People Served"
- },
- {
- "key": "social_facility",
+ "key": "cycle_barrier",
"description": "🄵 Type"
},
{
- "key": "social_facility",
- "value": "assisted_living",
- "description": "🄵🅅 Type: Assisted Living"
+ "key": "cycle_barrier",
+ "value": "single",
+ "description": "🄵🅅 Type: Single"
},
{
- "key": "social_facility",
- "value": "day_care",
- "description": "🄵🅅 Type: Day Care"
+ "key": "cycle_barrier",
+ "value": "double",
+ "description": "🄵🅅 Type: Double"
},
{
- "key": "social_facility",
- "value": "group_home",
- "description": "🄵🅅 Type: Group Home"
+ "key": "cycle_barrier",
+ "value": "triple",
+ "description": "🄵🅅 Type: Triple"
},
{
- "key": "social_facility",
- "value": "nursing_home",
- "description": "🄵🅅 Type: Nursing Home"
+ "key": "cycle_barrier",
+ "value": "diagonal",
+ "description": "🄵🅅 Type: Diagonal"
},
{
- "key": "social_facility",
- "value": "outreach",
- "description": "🄵🅅 Type: Outreach"
+ "key": "cycle_barrier",
+ "value": "tilted",
+ "description": "🄵🅅 Type: Tilted"
},
{
- "key": "social_facility",
- "value": "shelter",
- "description": "🄵🅅 Type: Shelter"
+ "key": "currency:",
+ "description": "🄵 Currency Types"
},
{
- "key": "social_facility",
- "value": "workshop",
- "description": "🄵🅅 Type: Workshop"
+ "key": "cuisine",
+ "description": "🄵 Cuisines"
},
{
- "key": "source",
- "description": "🄵 Sources"
+ "key": "cuisine",
+ "value": "regional",
+ "description": "🄵🅅 Cuisines: Regional"
},
{
- "key": "source",
- "value": "survey",
- "description": "🄵🅅 Sources: Survey"
+ "key": "cuisine",
+ "value": "breakfast",
+ "description": "🄵🅅 Cuisines: Breakfast"
},
{
- "key": "source",
- "value": "local knowledge",
- "description": "🄵🅅 Sources: Local Knowledge"
+ "key": "cuisine",
+ "value": "fish",
+ "description": "🄵🅅 Cuisines: Fish"
},
{
- "key": "source",
- "value": "aerial imagery",
- "description": "🄵🅅 Sources: Aerial Imagery"
+ "key": "cuisine",
+ "value": "cake",
+ "description": "🄵🅅 Cuisines: Cake"
},
{
- "key": "source",
- "value": "gps",
- "description": "🄵🅅 Sources: GPS"
+ "key": "cuisine",
+ "value": "pasta",
+ "description": "🄵🅅 Cuisines: Pasta"
},
{
- "key": "source",
- "value": "streetlevel imagery",
- "description": "🄵🅅 Sources: Street-Level Photos"
+ "key": "cuisine",
+ "value": "tex-mex",
+ "description": "🄵🅅 Cuisines: Tex-Mex"
},
{
- "key": "source",
- "value": "osm notes",
- "description": "🄵🅅 Sources: OpenStreetMap Notes"
+ "key": "cuisine",
+ "value": "mediterranean",
+ "description": "🄵🅅 Cuisines: Mediterranean"
},
{
- "key": "source:population",
- "description": "🄵 Population Source"
+ "key": "cuisine",
+ "value": "friture",
+ "description": "🄵🅅 Cuisines: Friterie"
},
{
- "key": "species",
- "description": "🄵 Species"
+ "key": "cuisine",
+ "value": "grill",
+ "description": "🄵🅅 Cuisines: Bar and Grill"
},
{
- "key": "species:wikidata",
- "description": "🄵 Species Wikidata"
+ "key": "cuisine",
+ "value": "salad",
+ "description": "🄵🅅 Cuisines: Salad"
},
{
- "key": "species:wikipedia",
- "description": "🄵 Species Wikidata"
+ "key": "cuisine",
+ "value": "crepe",
+ "description": "🄵🅅 Cuisines: Crepe"
},
{
- "key": "sport",
- "value": "ice_skating",
- "description": "🄵🅅 Sports: Ice Skating"
+ "key": "cuisine",
+ "value": "pancake",
+ "description": "🄵🅅 Cuisines: Pancake"
},
{
- "key": "sport",
- "value": "ice_hockey",
- "description": "🄵🅅 Sports: Ice Hockey"
+ "key": "cuisine",
+ "value": "dessert",
+ "description": "🄵🅅 Cuisines: Dessert"
},
{
- "key": "sport",
- "value": "curling",
- "description": "🄵🅅 Sports: Curling"
+ "key": "cuisine",
+ "value": "diner",
+ "description": "🄵🅅 Cuisines: Diner"
},
{
- "key": "sport",
- "value": "ice_stock",
- "description": "🄵🅅 Sports: Ice Stock"
+ "key": "cuisine",
+ "value": "tapas",
+ "description": "🄵🅅 Cuisines: Tapas"
},
{
- "key": "sport",
- "value": "multi",
- "description": "🄵🅅 Sports: Multiple"
+ "key": "cuisine",
+ "value": "portuguese",
+ "description": "🄵🅅 Cuisines: Portuguese"
},
{
- "key": "sport",
- "value": "billiards",
- "description": "🄵🅅 Sports: Billiards"
+ "key": "cuisine",
+ "value": "beef_bowl",
+ "description": "🄵🅅 Cuisines: Gyūdon"
},
{
- "key": "sport",
- "value": "darts",
- "description": "🄵🅅 Sports: Darts"
+ "key": "cuisine",
+ "value": "russian",
+ "description": "🄵🅅 Cuisines: Russian"
},
{
- "key": "sport",
- "value": "motor",
- "description": "🄵🅅 Sports: Motorsport"
+ "key": "cuisine",
+ "value": "indonesian",
+ "description": "🄵🅅 Cuisines: Indonesian"
},
{
- "key": "sport",
- "value": "speedway",
- "description": "🄵🅅 Sports: Motorcycle Speedway"
+ "key": "cuisine",
+ "value": "lebanese",
+ "description": "🄵🅅 Cuisines: Lebanese"
},
{
- "key": "sport",
- "value": "bmx",
- "description": "🄵🅅 Sports: BMX"
+ "key": "cuisine",
+ "value": "arab",
+ "description": "🄵🅅 Cuisines: Arab"
},
{
- "key": "sport",
- "value": "dog_racing",
- "description": "🄵🅅 Sports: Dog Racing"
+ "key": "cuisine",
+ "value": "curry",
+ "description": "🄵🅅 Cuisines: Curry"
},
{
- "key": "stars",
- "description": "🄵 Stars"
+ "key": "cuisine",
+ "value": "malaysian",
+ "description": "🄵🅅 Cuisines: Malaysian"
},
{
- "key": "start_date",
- "description": "🄵 Start Date"
+ "key": "cuisine",
+ "value": "polish",
+ "description": "🄵🅅 Cuisines: Polish"
},
{
- "key": "step_count",
- "description": "🄵 Number of Steps"
+ "key": "cuisine",
+ "value": "african",
+ "description": "🄵🅅 Cuisines: African"
},
{
- "key": "stile",
+ "key": "cuisine",
+ "value": "western",
+ "description": "🄵🅅 Cuisines: Western"
+ },
+ {
+ "key": "cuisine",
+ "value": "sausage",
+ "description": "🄵🅅 Cuisines: Sausage"
+ },
+ {
+ "key": "cuisine",
+ "value": "filipino",
+ "description": "🄵🅅 Cuisines: Filipino"
+ },
+ {
+ "key": "cuisine",
+ "value": "caribbean",
+ "description": "🄵🅅 Cuisines: Caribbean"
+ },
+ {
+ "key": "cuisine",
+ "value": "soba",
+ "description": "🄵🅅 Cuisines: Soba"
+ },
+ {
+ "key": "cuisine",
+ "value": "peruvian",
+ "description": "🄵🅅 Cuisines: Peruvian"
+ },
+ {
+ "key": "cuisine",
+ "value": "brazilian",
+ "description": "🄵🅅 Cuisines: Brazilian"
+ },
+ {
+ "key": "cuisine",
+ "value": "oriental",
+ "description": "🄵🅅 Cuisines: Oriental"
+ },
+ {
+ "key": "cuisine",
+ "value": "fine_dining",
+ "description": "🄵🅅 Cuisines: Fine Dining"
+ },
+ {
+ "key": "cuisine",
+ "value": "argentinian",
+ "description": "🄵🅅 Cuisines: Argentinian"
+ },
+ {
+ "key": "cuisine",
+ "value": "balkan",
+ "description": "🄵🅅 Cuisines: Balkan"
+ },
+ {
+ "key": "cuisine",
+ "value": "bavarian",
+ "description": "🄵🅅 Cuisines: Bavarian"
+ },
+ {
+ "key": "cuisine",
+ "value": "shawarma",
+ "description": "🄵🅅 Cuisines: Shawarma"
+ },
+ {
+ "key": "cuisine",
+ "value": "persian",
+ "description": "🄵🅅 Cuisines: Persian"
+ },
+ {
+ "key": "cuisine",
+ "value": "middle_eastern",
+ "description": "🄵🅅 Cuisines: Middle Eastern"
+ },
+ {
+ "key": "cuisine",
+ "value": "pastry",
+ "description": "🄵🅅 Cuisines: Pastry"
+ },
+ {
+ "key": "cuisine",
+ "value": "soup",
+ "description": "🄵🅅 Cuisines: Soup"
+ },
+ {
+ "key": "cuisine",
+ "value": "fries",
+ "description": "🄵🅅 Cuisines: Fries"
+ },
+ {
+ "key": "cuisine",
+ "value": "taiwanese",
+ "description": "🄵🅅 Cuisines: Taiwanese"
+ },
+ {
+ "key": "cuisine",
+ "value": "bistro",
+ "description": "🄵🅅 Cuisines: Bistro"
+ },
+ {
+ "key": "cuisine",
+ "value": "european",
+ "description": "🄵🅅 Cuisines: European"
+ },
+ {
+ "key": "cuisine",
+ "value": "moroccan",
+ "description": "🄵🅅 Cuisines: Moroccan"
+ },
+ {
+ "key": "cuisine",
+ "value": "hawaiian",
+ "description": "🄵🅅 Cuisines: Hawaiian"
+ },
+ {
+ "key": "cuisine",
+ "value": "brunch",
+ "description": "🄵🅅 Cuisines: Brunch"
+ },
+ {
+ "key": "cuisine",
+ "value": "udon",
+ "description": "🄵🅅 Cuisines: Udon"
+ },
+ {
+ "key": "crossing",
"description": "🄵 Type"
},
{
- "key": "stop",
- "description": "🄵 Stop Type"
+ "key": "crop",
+ "description": "🄵 Crops"
},
{
- "key": "stop",
- "value": "all",
- "description": "🄵🅅 Stop Type: All Ways"
+ "key": "crop",
+ "value": "asparagus",
+ "description": "🄵🅅 Crops: Asparagus"
},
{
- "key": "stop",
- "value": "minor",
- "description": "🄵🅅 Stop Type: Minor Road"
+ "key": "crop",
+ "value": "barley",
+ "description": "🄵🅅 Crops: Barley"
},
{
- "key": "street_cabinet",
- "description": "🄵 Type"
+ "key": "crop",
+ "value": "beet",
+ "description": "🄵🅅 Crops: Beets"
},
{
- "key": "stroller",
- "description": "🄵 Stroller Access"
+ "key": "crop",
+ "value": "cassava",
+ "description": "🄵🅅 Crops: Cassava"
},
{
- "key": "structure",
- "description": "🄵 Structure"
+ "key": "crop",
+ "value": "coffee",
+ "description": "🄵🅅 Crops: Coffee"
},
{
- "key": "structure",
- "value": "lattice",
- "description": "🄵🅅 Structure: Lattice"
+ "key": "crop",
+ "value": "cotton",
+ "description": "🄵🅅 Crops: Cotton"
},
{
- "key": "structure",
- "value": "solid",
- "description": "🄵🅅 Structure: Solid"
+ "key": "crop",
+ "value": "cranberries",
+ "description": "🄵🅅 Crops: Cranberries"
},
{
- "key": "structure",
- "value": "tubular",
- "description": "🄵🅅 Structure: Tubular"
+ "key": "crop",
+ "value": "fast_growing_wood",
+ "description": "🄵🅅 Crops: Short-Rotation Coppice"
},
{
- "key": "tunnel",
- "description": "🄵 Structure, 🄵 Type"
+ "key": "crop",
+ "value": "flowers",
+ "description": "🄵🅅 Crops: Flowers"
},
{
- "key": "studio",
- "description": "🄵 Type"
+ "key": "crop",
+ "value": "grape",
+ "description": "🄵🅅 Crops: Grapes"
},
{
- "key": "subject",
- "description": "🄵 Subject"
- },
- {
- "key": "subject:wikidata",
- "description": "🄵 Subject Wikidata"
- },
- {
- "key": "subject:wikipedia",
- "description": "🄵 Subject Wikidata"
- },
- {
- "key": "substance",
- "description": "🄵 Substance"
- },
- {
- "key": "substation",
- "description": "🄵 Type"
- },
- {
- "key": "substation",
- "value": "transmission",
- "description": "🄵🅅 Type: Transmission, 🄵🅅 Type: High-Voltage Transmission"
- },
- {
- "key": "substation",
- "value": "distribution",
- "description": "🄵🅅 Type: Regional Distribution"
- },
- {
- "key": "substation",
- "value": "minor_distribution",
- "description": "🄵🅅 Type: Local Distribution"
- },
- {
- "key": "substation",
- "value": "industrial",
- "description": "🄵🅅 Type: Industrial"
- },
- {
- "key": "substation",
- "value": "compression",
- "description": "🄵🅅 Type: Compression"
- },
- {
- "key": "substation",
- "value": "measurement",
- "description": "🄵🅅 Type: Measurement"
- },
- {
- "key": "substation",
- "value": "valve",
- "description": "🄵🅅 Type: Valve"
- },
- {
- "key": "substation",
- "value": "valve_group",
- "description": "🄵🅅 Type: Valve Group"
- },
- {
- "key": "substation",
- "value": "inspection_gauge",
- "description": "🄵🅅 Type: Inspection Gauge"
- },
- {
- "key": "substation",
- "value": "field_gathering",
- "description": "🄵🅅 Type: Field Gathering"
- },
- {
- "key": "substation",
- "value": "generation",
- "description": "🄵🅅 Type: Generation"
- },
- {
- "key": "substation",
- "value": "transition",
- "description": "🄵🅅 Type: Overground/Underground Transition"
- },
- {
- "key": "substation",
- "value": "traction",
- "description": "🄵🅅 Type: Traction System Supply"
- },
- {
- "key": "substation",
- "value": "converter",
- "description": "🄵🅅 Type: High-Voltage AC/DC Converter"
- },
- {
- "key": "substation",
- "value": "compensation",
- "description": "🄵🅅 Type: Reactive Power Compensation"
- },
- {
- "key": "supervised",
- "description": "🄵 Supervised"
- },
- {
- "key": "support",
- "description": "🄵 Support"
- },
- {
- "key": "surface",
- "description": "🄵 Surface"
- },
- {
- "key": "surface",
- "value": "asphalt",
- "description": "🄵🅅 Surface: Asphalt"
- },
- {
- "key": "surface",
- "value": "unpaved",
- "description": "🄵🅅 Surface: Unpaved"
- },
- {
- "key": "surface",
- "value": "paved",
- "description": "🄵🅅 Surface: Paved"
- },
- {
- "key": "surface",
- "value": "ground",
- "description": "🄵🅅 Surface: Ground"
- },
- {
- "key": "surface",
- "value": "gravel",
- "description": "🄵🅅 Surface: Gravel"
- },
- {
- "key": "surface",
- "value": "compacted",
- "description": "🄵🅅 Surface: Compacted"
- },
- {
- "key": "surface",
- "value": "concrete",
- "description": "🄵🅅 Surface: Concrete"
- },
- {
- "key": "surface",
- "value": "paving_stones",
- "description": "🄵🅅 Surface: Paving Stones"
- },
- {
- "key": "surface",
- "value": "sett",
- "description": "🄵🅅 Surface: Sett"
- },
- {
- "key": "surface",
- "value": "dirt",
- "description": "🄵🅅 Surface: Dirt"
- },
- {
- "key": "surface",
+ "key": "crop",
"value": "grass",
- "description": "🄵🅅 Surface: Grass"
+ "description": "🄵🅅 Crops: Grass"
},
{
- "key": "surface",
- "value": "sand",
- "description": "🄵🅅 Surface: Sand"
+ "key": "crop",
+ "value": "hop",
+ "description": "🄵🅅 Crops: Hops"
},
{
- "key": "surface",
- "value": "wood",
- "description": "🄵🅅 Surface: Wood"
+ "key": "crop",
+ "value": "lavender",
+ "description": "🄵🅅 Crops: Lavender"
},
{
- "key": "surface",
- "value": "metal",
- "description": "🄵🅅 Surface: Metal"
+ "key": "crop",
+ "value": "maize",
+ "description": "🄵🅅 Crops: Corn"
},
{
- "key": "surface",
- "value": "artificial_turf",
- "description": "🄵🅅 Surface: Artificial Turf"
+ "key": "crop",
+ "value": "potato",
+ "description": "🄵🅅 Crops: Potatoes"
},
{
- "key": "surface",
- "value": "unhewn_cobblestone",
- "description": "🄵🅅 Surface: Cobblestone (uncut, rounded stones)"
+ "key": "crop",
+ "value": "rape",
+ "description": "🄵🅅 Crops: Rapeseed"
},
{
- "key": "surface",
- "value": "mud",
- "description": "🄵🅅 Surface: Persistently Muddy"
+ "key": "crop",
+ "value": "rice",
+ "description": "🄵🅅 Crops: Rice"
},
{
- "key": "surface",
- "value": "woodchips",
- "description": "🄵🅅 Surface: Woodchips"
+ "key": "crop",
+ "value": "strawberry",
+ "description": "🄵🅅 Crops: Strawberries"
},
{
- "key": "surface",
- "value": "salt",
- "description": "🄵🅅 Surface: Salt"
+ "key": "crop",
+ "value": "sugar_beet",
+ "description": "🄵🅅 Crops: Sugar Beets"
},
{
- "key": "surveillance",
- "description": "🄵 Surveillance Kind"
+ "key": "crop",
+ "value": "sugarcane",
+ "description": "🄵🅅 Crops: Sugarcane"
},
{
- "key": "surveillance:type",
- "description": "🄵 Surveillance Type"
+ "key": "crop",
+ "value": "sunflower",
+ "description": "🄵🅅 Crops: Sunflowers"
},
{
- "key": "surveillance:type",
- "value": "guard",
- "description": "🄵🅅 Surveillance Type: Guard"
+ "key": "crop",
+ "value": "soy",
+ "description": "🄵🅅 Crops: Soybeans"
},
{
- "key": "surveillance:type",
- "value": "ALPR",
- "description": "🄵🅅 Surveillance Type: Automatic License Plate Reader"
+ "key": "crop",
+ "value": "tea",
+ "description": "🄵🅅 Crops: Tea"
},
{
- "key": "surveillance:zone",
- "description": "🄵 Surveillance Zone"
+ "key": "crop",
+ "value": "tobacco",
+ "description": "🄵🅅 Crops: Tobacco"
},
{
- "key": "survey_point:datum_aligned",
- "description": "🄵 Aligned to the Local Geodetic Datum"
+ "key": "crop",
+ "value": "vegetable",
+ "description": "🄵🅅 Crops: Vegetables"
},
{
- "key": "survey_point:purpose",
- "description": "🄵 Purpose"
+ "key": "crop",
+ "value": "wheat",
+ "description": "🄵🅅 Crops: Wheat"
},
{
- "key": "survey_point:purpose",
- "value": "horizontal",
- "description": "🄵🅅 Purpose: Horizontal Alignment"
+ "key": "craft",
+ "value": "builder",
+ "description": "🄵🅅 Type: Builder"
},
{
- "key": "survey_point:purpose",
- "value": "vertical",
- "description": "🄵🅅 Purpose: Vertical Alignment"
+ "key": "craft",
+ "value": "grinding_mill",
+ "description": "🄵🅅 Type: Grinding Mill"
},
{
- "key": "survey_point:purpose",
+ "key": "craft",
+ "value": "jeweller",
+ "description": "🄵🅅 Type: Jeweller"
+ },
+ {
+ "key": "craft",
+ "value": "oil_mill",
+ "description": "🄵🅅 Type: Oil Mill"
+ },
+ {
+ "key": "covered",
+ "description": "🄵 Covered"
+ },
+ {
+ "key": "covered",
+ "value": "yes",
+ "description": "🄵🅅 Covered: Yes"
+ },
+ {
+ "key": "covered",
+ "value": "no",
+ "description": "🄵🅅 Covered: No"
+ },
+ {
+ "key": "couplings",
+ "description": "🄵 Couplings"
+ },
+ {
+ "key": "country",
+ "description": "🄵 Flag Country, 🄵 Country"
+ },
+ {
+ "key": "count",
+ "description": "🄵 Number of Features"
+ },
+ {
+ "key": "conveying",
+ "value": "forward",
+ "description": "🄵🅅 Movement Direction: Forward"
+ },
+ {
+ "key": "conveying",
+ "value": "backward",
+ "description": "🄵🅅 Movement Direction: Backward"
+ },
+ {
+ "key": "conveying",
+ "value": "reversible",
+ "description": "🄵🅅 Movement Direction: Reversible"
+ },
+ {
+ "key": "content",
+ "description": "🄵 Content"
+ },
+ {
+ "key": "content",
+ "value": "silage",
+ "description": "🄵🅅 Content: `silage`"
+ },
+ {
+ "key": "content",
+ "value": "oil",
+ "description": "🄵🅅 Content: `oil`"
+ },
+ {
+ "key": "content",
+ "value": "fuel",
+ "description": "🄵🅅 Content: `fuel`"
+ },
+ {
+ "key": "content",
+ "value": "slurry",
+ "description": "🄵🅅 Content: `slurry`"
+ },
+ {
+ "key": "content",
+ "value": "gas",
+ "description": "🄵🅅 Content: `gas`"
+ },
+ {
+ "key": "content",
+ "value": "manure",
+ "description": "🄵🅅 Content: `manure`"
+ },
+ {
+ "key": "content",
+ "value": "sewage",
+ "description": "🄵🅅 Content: `sewage`"
+ },
+ {
+ "key": "consulting",
+ "description": "🄵 Expertise"
+ },
+ {
+ "key": "consulate",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "consulate",
+ "value": "consulate_general",
+ "description": "🄵🅅 Type: Consulate General"
+ },
+ {
+ "key": "consulate",
+ "value": "honorary_consul",
+ "description": "🄵🅅 Type: Honorary Consul"
+ },
+ {
+ "key": "consulate",
+ "value": "yes",
+ "description": "🄵🅅 Type: Consulate"
+ },
+ {
+ "key": "consulate",
+ "value": "consular_office",
+ "description": "🄵🅅 Type: Consular Services Office"
+ },
+ {
+ "key": "consulate",
+ "value": "consular_agency",
+ "description": "🄵🅅 Type: Consular Services Agency"
+ },
+ {
+ "key": "consulate",
+ "value": "residence",
+ "description": "🄵🅅 Type: Official Residence of a Consul"
+ },
+ {
+ "key": "construction",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "connectivity",
+ "description": "🄵 Connectivity"
+ },
+ {
+ "key": "community_centre",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "communication:",
+ "description": "🄵 Communication Types"
+ },
+ {
+ "key": "comment",
+ "description": "🄵 Changeset Comment"
+ },
+ {
+ "key": "colour",
+ "description": "🄵 Color"
+ },
+ {
+ "key": "collector",
+ "description": "🄵 Items"
+ },
+ {
+ "key": "collector",
+ "value": "coins",
+ "description": "🄵🅅 Items: Coins"
+ },
+ {
+ "key": "collector",
+ "value": "stamps",
+ "description": "🄵🅅 Items: Stamps"
+ },
+ {
+ "key": "collector",
+ "value": "comics",
+ "description": "🄵🅅 Items: Comics"
+ },
+ {
+ "key": "collection_times",
+ "description": "🄵 Collection Times"
+ },
+ {
+ "key": "clothes",
+ "description": "🄵 Clothes"
+ },
+ {
+ "key": "clothes",
+ "value": "babies",
+ "description": "🄵🅅 Clothes: Baby Clothing"
+ },
+ {
+ "key": "clothes",
+ "value": "children",
+ "description": "🄵🅅 Clothes: Children's Clothing"
+ },
+ {
+ "key": "clothes",
+ "value": "denim",
+ "description": "🄵🅅 Clothes: Jeans Clothing"
+ },
+ {
+ "key": "clothes",
+ "value": "fur",
+ "description": "🄵🅅 Clothes: Fur Clothing"
+ },
+ {
+ "key": "clothes",
+ "value": "hats",
+ "description": "🄵🅅 Clothes: Hats"
+ },
+ {
+ "key": "clothes",
+ "value": "maternity",
+ "description": "🄵🅅 Clothes: Maternity Clothing"
+ },
+ {
+ "key": "clothes",
+ "value": "men",
+ "description": "🄵🅅 Clothes: Men's Clothing"
+ },
+ {
+ "key": "clothes",
+ "value": "motorcycle",
+ "description": "🄵🅅 Clothes: Motorcycle Clothing"
+ },
+ {
+ "key": "clothes",
+ "value": "oversize",
+ "description": "🄵🅅 Clothes: Plus Size Clothing"
+ },
+ {
+ "key": "clothes",
+ "value": "socks",
+ "description": "🄵🅅 Clothes: Socks"
+ },
+ {
+ "key": "clothes",
+ "value": "sports",
+ "description": "🄵🅅 Clothes: Sportswear"
+ },
+ {
+ "key": "clothes",
+ "value": "swimwear",
+ "description": "🄵🅅 Clothes: Swimwear"
+ },
+ {
+ "key": "clothes",
+ "value": "traditional",
+ "description": "🄵🅅 Clothes: Traditional Garments / Folk Costumes"
+ },
+ {
+ "key": "clothes",
+ "value": "women",
+ "description": "🄵🅅 Clothes: Women's Clothing"
+ },
+ {
+ "key": "circumference",
+ "description": "🄵 Circumference (at Breast Height)"
+ },
+ {
+ "key": "check_date",
+ "description": "🄵 Last Checked Date"
+ },
+ {
+ "key": "charge",
+ "description": "🄵 Toll Amount, 🄵 Fee Amount"
+ },
+ {
+ "key": "changing_table",
+ "description": "🄵 Diaper Changing Table"
+ },
+ {
+ "key": "ceremonial_gate",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "ceremonial_gate",
+ "value": "hongsalmun",
+ "description": "🄵🅅 Type: Hongsalmun"
+ },
+ {
+ "key": "ceremonial_gate",
+ "value": "iljumun",
+ "description": "🄵🅅 Type: Iljumun"
+ },
+ {
+ "key": "castle_type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "castle_type",
+ "value": "defensive",
+ "description": "🄵🅅 Type: Defensive Castle"
+ },
+ {
+ "key": "castle_type",
+ "value": "manor",
+ "description": "🄵🅅 Type: Manor House"
+ },
+ {
+ "key": "castle_type",
+ "value": "castrum",
+ "description": "🄵🅅 Type: Roman Fort"
+ },
+ {
+ "key": "castle_type",
+ "value": "shiro",
+ "description": "🄵🅅 Type: Shiro"
+ },
+ {
+ "key": "castle_type",
+ "value": "kremlin",
+ "description": "🄵🅅 Type: Kremlin"
+ },
+ {
+ "key": "castle_type",
+ "value": "hillfort",
+ "description": "🄵🅅 Type: Hillfort"
+ },
+ {
+ "key": "cash_in",
+ "description": "🄵 Deposits"
+ },
+ {
+ "key": "caravans",
+ "description": "🄵 Campervan / Camping Trailer"
+ },
+ {
+ "key": "capacity",
+ "description": "🄵 Capacity (Cubic Meters), 🄵 Total Spaces, 🄵 Capacity"
+ },
+ {
+ "key": "camp_site",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "camp_site",
+ "value": "basic",
+ "description": "🄵🅅 Type: `basic`"
+ },
+ {
+ "key": "camp_site",
+ "value": "standard",
+ "description": "🄵🅅 Type: `standard`"
+ },
+ {
+ "key": "camp_site",
+ "value": "serviced",
+ "description": "🄵🅅 Type: `serviced`"
+ },
+ {
+ "key": "camp_site",
+ "value": "deluxe",
+ "description": "🄵🅅 Type: `deluxe`"
+ },
+ {
+ "key": "cai_scale",
+ "description": "🄵 Hiking Route Difficulty (Italian Alpine Club)"
+ },
+ {
+ "key": "cai_scale",
+ "value": "T",
+ "description": "🄵🅅 Hiking Route Difficulty (Italian Alpine Club): T: Touristic"
+ },
+ {
+ "key": "cai_scale",
+ "value": "E",
+ "description": "🄵🅅 Hiking Route Difficulty (Italian Alpine Club): E: For hikers"
+ },
+ {
+ "key": "cai_scale",
+ "value": "EE",
+ "description": "🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EE: For expert hikers"
+ },
+ {
+ "key": "cai_scale",
+ "value": "EEA",
+ "description": "🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EEA: For expert hikers with equipment"
+ },
+ {
+ "key": "cai_scale",
+ "value": "EAI",
+ "description": "🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EAI: Hiking in snowy conditions"
+ },
+ {
+ "key": "cables",
+ "description": "🄵 Cables"
+ },
+ {
+ "key": "cabins",
+ "description": "🄵 Cabins"
+ },
+ {
+ "key": "button_operated",
+ "description": "🄵 Call Button"
+ },
+ {
+ "key": "bunker_type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "building",
+ "value": "container",
+ "description": "🄵🅅 Building: Container"
+ },
+ {
+ "key": "bridge",
+ "value": "aqueduct",
+ "description": "🄵🅅 Type: Aqueduct"
+ },
+ {
+ "key": "bridge",
+ "value": "cantilever",
+ "description": "🄵🅅 Type: Cantilever Bridge"
+ },
+ {
+ "key": "bridge",
+ "value": "covered",
+ "description": "🄵🅅 Type: Covered Bridge"
+ },
+ {
+ "key": "bridge",
+ "value": "low_water_crossing",
+ "description": "🄵🅅 Type: Low Water Crossing"
+ },
+ {
+ "key": "bridge",
+ "value": "movable",
+ "description": "🄵🅅 Type: Movable Bridge"
+ },
+ {
+ "key": "bridge",
+ "value": "trestle",
+ "description": "🄵🅅 Type: Trestle Bridge"
+ },
+ {
+ "key": "bridge",
+ "value": "viaduct",
+ "description": "🄵🅅 Type: Viaduct"
+ },
+ {
+ "key": "brewery",
+ "description": "🄵 Sold Beer brands"
+ },
+ {
+ "key": "brand",
+ "description": "🄵 Brand"
+ },
+ {
+ "key": "branch",
+ "description": "🄵 Branch"
+ },
+ {
+ "key": "boules",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "bottle",
+ "description": "🄵 Bottle Filling"
+ },
+ {
+ "key": "booth",
+ "description": "🄵 Booth"
+ },
+ {
+ "key": "books",
+ "description": "🄵 Type of Books"
+ },
+ {
+ "key": "bollard",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "bollard",
+ "value": "fixed",
+ "description": "🄵🅅 Type: Fixed Bollard"
+ },
+ {
+ "key": "bollard",
+ "value": "flexible",
+ "description": "🄵🅅 Type: Flexible Bollard"
+ },
+ {
+ "key": "bollard",
+ "value": "foldable",
+ "description": "🄵🅅 Type: Foldable Bollard"
+ },
+ {
+ "key": "bollard",
+ "value": "removable",
+ "description": "🄵🅅 Type: Removable Bollard"
+ },
+ {
+ "key": "bollard",
+ "value": "rising",
+ "description": "🄵🅅 Type: Rising Bollard"
+ },
+ {
+ "key": "board_type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "board_type",
+ "value": "art",
+ "description": "🄵🅅 Type: Art"
+ },
+ {
+ "key": "board_type",
+ "value": "astronomy",
+ "description": "🄵🅅 Type: Astronomy"
+ },
+ {
+ "key": "board_type",
+ "value": "geology",
+ "description": "🄵🅅 Type: Geology"
+ },
+ {
+ "key": "board_type",
+ "value": "history",
+ "description": "🄵🅅 Type: History"
+ },
+ {
+ "key": "board_type",
+ "value": "nature",
+ "description": "🄵🅅 Type: Nature"
+ },
+ {
+ "key": "board_type",
+ "value": "notice",
+ "description": "🄵🅅 Type: Notice Board"
+ },
+ {
+ "key": "board_type",
+ "value": "plants",
+ "description": "🄵🅅 Type: Plants"
+ },
+ {
+ "key": "board_type",
+ "value": "wildlife",
+ "description": "🄵🅅 Type: Wildlife"
+ },
+ {
+ "key": "blood:",
+ "description": "🄵 Blood Components"
+ },
+ {
+ "key": "blood:whole",
+ "description": "🄵🅅 Blood Components: whole blood"
+ },
+ {
+ "key": "blood:plasma",
+ "description": "🄵🅅 Blood Components: plasma"
+ },
+ {
+ "key": "blood:platelets",
+ "description": "🄵🅅 Blood Components: platelets"
+ },
+ {
+ "key": "blood:stemcells",
+ "description": "🄵🅅 Blood Components: stem cell samples"
+ },
+ {
+ "key": "blind",
+ "description": "🄵 Blind Person Access"
+ },
+ {
+ "key": "bin",
+ "description": "🄵 Waste Bin"
+ },
+ {
+ "key": "bike_ride",
+ "description": "🄵 Bike and Ride"
+ },
+ {
+ "key": "bicycle_road",
+ "description": "🄵 Cycle Street"
+ },
+ {
+ "key": "bicycle_road",
+ "value": "yes",
+ "description": "🄵🅅 Cycle Street: Yes"
+ },
+ {
+ "key": "bicycle_parking",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "bicycle_parking",
+ "value": "stands",
+ "description": "🄵🅅 Type: Stand (supports bicycle frame)"
+ },
+ {
+ "key": "bicycle_parking",
+ "value": "wall_loops",
+ "description": "🄵🅅 Type: Wheelbender (supports wheel only)"
+ },
+ {
+ "key": "bicycle_parking",
+ "value": "handlebar_holder",
+ "description": "🄵🅅 Type: Handlebar Holder"
+ },
+ {
+ "key": "bench",
+ "description": "🄵 Bench"
+ },
+ {
+ "key": "beauty",
+ "description": "🄵 Services"
+ },
+ {
+ "key": "beauty",
+ "value": "cosmetics",
+ "description": "🄵🅅 Services: Cosmetics"
+ },
+ {
+ "key": "beauty",
+ "value": "spa",
+ "description": "🄵🅅 Services: Day Spa"
+ },
+ {
+ "key": "beauty",
+ "value": "skin_care",
+ "description": "🄵🅅 Services: Skin Care"
+ },
+ {
+ "key": "beauty",
+ "value": "waxing",
+ "description": "🄵🅅 Services: Waxing"
+ },
+ {
+ "key": "beauty",
+ "value": "hair_removal",
+ "description": "🄵🅅 Services: Hair Removal"
+ },
+ {
+ "key": "basin",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "basin",
+ "value": "detention",
+ "description": "🄵🅅 Type: Detention"
+ },
+ {
+ "key": "basin",
+ "value": "evaporation",
+ "description": "🄵🅅 Type: Evaporation"
+ },
+ {
+ "key": "basin",
+ "value": "infiltration",
+ "description": "🄵🅅 Type: Infiltration"
+ },
+ {
+ "key": "basin",
+ "value": "retention",
+ "description": "🄵🅅 Type: Retention"
+ },
+ {
+ "key": "barrier",
+ "value": "planter",
+ "description": "🄵🅅 Barrier: Yes"
+ },
+ {
+ "key": "bar",
+ "description": "🄵 Bar"
+ },
+ {
+ "key": "backrest",
+ "description": "🄵 Backrest"
+ },
+ {
+ "key": "backcountry",
+ "description": "🄵 Backcountry"
+ },
+ {
+ "key": "baby",
+ "description": "🄵 Baby Seat"
+ },
+ {
+ "key": "baby_feeding",
+ "description": "🄵 Baby Nursing Area"
+ },
+ {
+ "key": "baby_feeding",
+ "value": "room",
+ "description": "🄵🅅 Baby Nursing Area: Dedicated Room"
+ },
+ {
+ "key": "baby_feeding",
+ "value": "yes",
+ "description": "🄵🅅 Baby Nursing Area: Marked Space"
+ },
+ {
+ "key": "baby_feeding",
+ "value": "no",
+ "description": "🄵🅅 Baby Nursing Area: None"
+ },
+ {
+ "key": "automated",
+ "description": "🄵 Automated"
+ },
+ {
+ "key": "attraction",
+ "value": "alpine_coaster",
+ "description": "🄵🅅 Type: Alpine Coaster"
+ },
+ {
+ "key": "atm",
+ "description": "🄵 ATM"
+ },
+ {
+ "key": "athletics",
+ "description": "🄵 Event"
+ },
+ {
+ "key": "ascent",
+ "description": "🄵 Total Ascent"
+ },
+ {
+ "key": "artwork_type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "artwork_type",
+ "value": "painting",
+ "description": "🄵🅅 Type: Painting"
+ },
+ {
+ "key": "artwork_type",
+ "value": "mosaic",
+ "description": "🄵🅅 Type: Mosaic"
+ },
+ {
+ "key": "artwork_type",
+ "value": "relief",
+ "description": "🄵🅅 Type: Relief"
+ },
+ {
+ "key": "artwork_type",
+ "value": "stone",
+ "description": "🄵🅅 Type: Artistically Worked Stone"
+ },
+ {
+ "key": "artwork_type",
+ "value": "tilework",
+ "description": "🄵🅅 Type: Tile Work"
+ },
+ {
+ "key": "artist_name",
+ "description": "🄵 Artist"
+ },
+ {
+ "key": "armrest",
+ "description": "🄵 Armrests"
+ },
+ {
+ "key": "armrest",
+ "value": "yes",
+ "description": "🄵🅅 Armrests: One or more armrests"
+ },
+ {
+ "key": "armrest",
+ "value": "no",
+ "description": "🄵🅅 Armrests: No armrests"
+ },
+ {
+ "key": "architect",
+ "description": "🄵 Architect"
+ },
+ {
+ "key": "archaeological_site",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "baths",
+ "description": "🄵🅅 Type: Baths"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "city",
+ "description": "🄵🅅 Type: Historic City"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "crannog",
+ "description": "🄵🅅 Type: Crannog"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "enclosure",
+ "description": "🄵🅅 Type: Enclosure"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "fortification",
+ "description": "🄵🅅 Type: Fortification"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "hut_circle",
+ "description": "🄵🅅 Type: Hut Circle"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "megalith",
+ "description": "🄵🅅 Type: Megalith"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "necropolis",
+ "description": "🄵🅅 Type: Necropolis"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "petroglyph",
+ "description": "🄵🅅 Type: Rock Carving"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "roman_circus",
+ "description": "🄵🅅 Type: Roman Circus"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "roman_villa",
+ "description": "🄵🅅 Type: Roman Villa"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "settlement",
+ "description": "🄵🅅 Type: Historic Settlement"
+ },
+ {
+ "key": "archaeological_site",
+ "value": "tumulus",
+ "description": "🄵🅅 Type: Tumulus"
+ },
+ {
+ "key": "animal_shelter",
+ "description": "🄵 For Animals"
+ },
+ {
+ "key": "animal_breeding",
+ "description": "🄵 For Animals"
+ },
+ {
+ "key": "animal_boarding",
+ "description": "🄵 For Animals"
+ },
+ {
+ "key": "alt_name",
+ "description": "🄵 Alternative Name"
+ },
+ {
+ "key": "air_conditioning",
+ "description": "🄵 Air Conditioning"
+ },
+ {
+ "key": "agrarian",
+ "description": "🄵 Products"
+ },
+ {
+ "key": "admin_level",
+ "description": "🄵 Admin Level"
+ },
+ {
+ "key": "addr:block_number",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:city",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:conscriptionnumber",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:country",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:county",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:district",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:floor",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:hamlet",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:housename",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:housenumber",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:neighbourhood",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:place",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:postcode",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:province",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:quarter",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:state",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:street",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:subdistrict",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:suburb",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:town",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "addr:unit",
+ "description": "🄵 Address"
+ },
+ {
+ "key": "hiking",
+ "description": "🄵 Activity"
+ },
+ {
+ "key": "bicycle",
+ "description": "🄵 Activity, 🄵 Allowed Access"
+ },
+ {
+ "key": "mtb",
+ "description": "🄵 Activity"
+ },
+ {
+ "key": "horse",
+ "description": "🄵 Activity, 🄵 Allowed Access"
+ },
+ {
+ "key": "ski",
+ "description": "🄵 Activity"
+ },
+ {
+ "key": "access",
+ "description": "🄵 Allowed Access"
+ },
+ {
+ "key": "access",
+ "value": "yes",
+ "description": "🄵🅅 Allowed Access: Public, 🄵🅅 Allowed Access: `yes`"
+ },
+ {
+ "key": "access",
+ "value": "private",
+ "description": "🄵🅅 Allowed Access: Private, 🄵🅅 Allowed Access: `private`"
+ },
+ {
+ "key": "access",
+ "value": "permissive",
+ "description": "🄵🅅 Allowed Access: Permissive, 🄵🅅 Allowed Access: `permissive`"
+ },
+ {
+ "key": "access",
+ "value": "customers",
+ "description": "🄵🅅 Allowed Access: Customers Only, 🄵🅅 Allowed Access: `customers`"
+ },
+ {
+ "key": "access",
+ "value": "permit",
+ "description": "🄵🅅 Allowed Access: By Permit Only, 🄵🅅 Allowed Access: `permit`"
+ },
+ {
+ "key": "access",
+ "value": "unknown",
+ "description": "🄵🅅 Allowed Access: Unknown, 🄵🅅 Allowed Access: `unknown`"
+ },
+ {
+ "key": "access",
+ "value": "no",
+ "description": "🄵🅅 Allowed Access: None, 🄵🅅 Allowed Access: `no`"
+ },
+ {
+ "key": "access_aisle",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "access",
+ "value": "designated",
+ "description": "🄵🅅 Allowed Access: `designated`"
+ },
+ {
+ "key": "access",
+ "value": "destination",
+ "description": "🄵🅅 Allowed Access: `destination`"
+ },
+ {
+ "key": "access",
+ "value": "dismount",
+ "description": "🄵🅅 Allowed Access: `dismount`"
+ },
+ {
+ "key": "foot",
+ "description": "🄵 Allowed Access"
+ },
+ {
+ "key": "foot",
+ "value": "yes",
+ "description": "🄵🅅 Allowed Access: `yes`"
+ },
+ {
+ "key": "foot",
+ "value": "no",
+ "description": "🄵🅅 Allowed Access: `no`"
+ },
+ {
+ "key": "foot",
+ "value": "permissive",
+ "description": "🄵🅅 Allowed Access: `permissive`"
+ },
+ {
+ "key": "foot",
+ "value": "private",
+ "description": "🄵🅅 Allowed Access: `private`"
+ },
+ {
+ "key": "foot",
+ "value": "destination",
+ "description": "🄵🅅 Allowed Access: `destination`"
+ },
+ {
+ "key": "foot",
+ "value": "customers",
+ "description": "🄵🅅 Allowed Access: `customers`"
+ },
+ {
+ "key": "foot",
+ "value": "dismount",
+ "description": "🄵🅅 Allowed Access: `dismount`"
+ },
+ {
+ "key": "foot",
+ "value": "permit",
+ "description": "🄵🅅 Allowed Access: `permit`"
+ },
+ {
+ "key": "foot",
+ "value": "unknown",
+ "description": "🄵🅅 Allowed Access: `unknown`"
+ },
+ {
+ "key": "motor_vehicle",
+ "description": "🄵 Allowed Access"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "yes",
+ "description": "🄵🅅 Allowed Access: `yes`"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "no",
+ "description": "🄵🅅 Allowed Access: `no`"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "permissive",
+ "description": "🄵🅅 Allowed Access: `permissive`"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "private",
+ "description": "🄵🅅 Allowed Access: `private`"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "designated",
+ "description": "🄵🅅 Allowed Access: `designated`"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "destination",
+ "description": "🄵🅅 Allowed Access: `destination`"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "customers",
+ "description": "🄵🅅 Allowed Access: `customers`"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "dismount",
+ "description": "🄵🅅 Allowed Access: `dismount`"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "permit",
+ "description": "🄵🅅 Allowed Access: `permit`"
+ },
+ {
+ "key": "motor_vehicle",
+ "value": "unknown",
+ "description": "🄵🅅 Allowed Access: `unknown`"
+ },
+ {
+ "key": "bicycle",
+ "value": "yes",
+ "description": "🄵🅅 Allowed Access: `yes`"
+ },
+ {
+ "key": "bicycle",
+ "value": "no",
+ "description": "🄵🅅 Allowed Access: `no`"
+ },
+ {
+ "key": "bicycle",
+ "value": "permissive",
+ "description": "🄵🅅 Allowed Access: `permissive`"
+ },
+ {
+ "key": "bicycle",
+ "value": "private",
+ "description": "🄵🅅 Allowed Access: `private`"
+ },
+ {
+ "key": "bicycle",
+ "value": "destination",
+ "description": "🄵🅅 Allowed Access: `destination`"
+ },
+ {
+ "key": "bicycle",
+ "value": "customers",
+ "description": "🄵🅅 Allowed Access: `customers`"
+ },
+ {
+ "key": "bicycle",
+ "value": "dismount",
+ "description": "🄵🅅 Allowed Access: `dismount`"
+ },
+ {
+ "key": "bicycle",
+ "value": "permit",
+ "description": "🄵🅅 Allowed Access: `permit`"
+ },
+ {
+ "key": "bicycle",
+ "value": "unknown",
+ "description": "🄵🅅 Allowed Access: `unknown`"
+ },
+ {
+ "key": "horse",
+ "value": "yes",
+ "description": "🄵🅅 Allowed Access: `yes`"
+ },
+ {
+ "key": "horse",
+ "value": "no",
+ "description": "🄵🅅 Allowed Access: `no`"
+ },
+ {
+ "key": "horse",
+ "value": "permissive",
+ "description": "🄵🅅 Allowed Access: `permissive`"
+ },
+ {
+ "key": "horse",
+ "value": "private",
+ "description": "🄵🅅 Allowed Access: `private`"
+ },
+ {
+ "key": "horse",
+ "value": "designated",
+ "description": "🄵🅅 Allowed Access: `designated`"
+ },
+ {
+ "key": "horse",
+ "value": "destination",
+ "description": "🄵🅅 Allowed Access: `destination`"
+ },
+ {
+ "key": "horse",
+ "value": "customers",
+ "description": "🄵🅅 Allowed Access: `customers`"
+ },
+ {
+ "key": "horse",
+ "value": "dismount",
+ "description": "🄵🅅 Allowed Access: `dismount`"
+ },
+ {
+ "key": "horse",
+ "value": "permit",
+ "description": "🄵🅅 Allowed Access: `permit`"
+ },
+ {
+ "key": "horse",
+ "value": "unknown",
+ "description": "🄵🅅 Allowed Access: `unknown`"
+ },
+ {
+ "key": "windings:configuration",
+ "description": "🄵 Windings Configuration"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "star",
+ "description": "🄵🅅 Windings Configuration: Star / Wye"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "delta",
+ "description": "🄵🅅 Windings Configuration: Delta"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "open-delta",
+ "description": "🄵🅅 Windings Configuration: Open Delta"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "zigzag",
+ "description": "🄵🅅 Windings Configuration: Zig Zag"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "open",
+ "description": "🄵🅅 Windings Configuration: Open"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "scott",
+ "description": "🄵🅅 Windings Configuration: Scott"
+ },
+ {
+ "key": "windings:configuration",
+ "value": "leblanc",
+ "description": "🄵🅅 Windings Configuration: Leblanc"
+ },
+ {
+ "key": "windings:auto",
+ "description": "🄵 Autotransformer"
+ },
+ {
+ "key": "windings:auto",
+ "value": "yes",
+ "description": "🄵🅅 Autotransformer: Yes"
+ },
+ {
+ "key": "windings:auto",
+ "value": "no",
+ "description": "🄵🅅 Autotransformer: No"
+ },
+ {
+ "key": "website:menu",
+ "description": "🄵 Menu Link"
+ },
+ {
+ "key": "water_tank:volume",
+ "description": "🄵 Volume (Liters)"
+ },
+ {
+ "key": "voltage:tertiary",
+ "description": "🄵 Tertiary Voltage"
+ },
+ {
+ "key": "voltage:secondary",
+ "description": "🄵 Secondary Voltage"
+ },
+ {
+ "key": "voltage:primary",
+ "description": "🄵 Primary Voltage"
+ },
+ {
+ "key": "volcano:type",
+ "description": "🄵 Volcano Type"
+ },
+ {
+ "key": "volcano:type",
+ "value": "stratovolcano",
+ "description": "🄵🅅 Volcano Type: Stratovolcano"
+ },
+ {
+ "key": "volcano:type",
+ "value": "shield",
+ "description": "🄵🅅 Volcano Type: Shield"
+ },
+ {
+ "key": "volcano:type",
+ "value": "scoria",
+ "description": "🄵🅅 Volcano Type: Scoria"
+ },
+ {
+ "key": "volcano:status",
+ "description": "🄵 Volcano Status"
+ },
+ {
+ "key": "volcano:status",
+ "value": "active",
+ "description": "🄵🅅 Volcano Status: Active"
+ },
+ {
+ "key": "volcano:status",
+ "value": "dormant",
+ "description": "🄵🅅 Volcano Status: Dormant"
+ },
+ {
+ "key": "volcano:status",
+ "value": "extinct",
+ "description": "🄵🅅 Volcano Status: Extinct"
+ },
+ {
+ "key": "traffic_signals:vibration",
+ "description": "🄵 Vibration"
+ },
+ {
+ "key": "traffic_signals:sound",
+ "description": "🄵 Sound Signals"
+ },
+ {
+ "key": "traffic_signals:sound",
+ "value": "yes",
+ "description": "🄵🅅 Sound Signals: Yes"
+ },
+ {
+ "key": "traffic_signals:sound",
+ "value": "no",
+ "description": "🄵🅅 Sound Signals: No"
+ },
+ {
+ "key": "traffic_signals:sound",
+ "value": "locate",
+ "description": "🄵🅅 Sound Signals: `locate`"
+ },
+ {
+ "key": "traffic_signals:sound",
+ "value": "walk",
+ "description": "🄵🅅 Sound Signals: `walk`"
+ },
+ {
+ "key": "traffic_signals:minimap",
+ "description": "🄵 Tactile Map"
+ },
+ {
+ "key": "traffic_signals:direction",
+ "description": "🄵 Direction Affected"
+ },
+ {
+ "key": "traffic_signals:direction",
+ "value": "forward",
+ "description": "🄵🅅 Direction Affected: Forward"
+ },
+ {
+ "key": "traffic_signals:direction",
+ "value": "backward",
+ "description": "🄵🅅 Direction Affected: Backward"
+ },
+ {
+ "key": "traffic_signals:direction",
"value": "both",
- "description": "🄵🅅 Purpose: Both"
+ "description": "🄵🅅 Direction Affected: Both / All"
+ },
+ {
+ "key": "traffic_signals:countdown",
+ "description": "🄵 Countdown Timer"
+ },
+ {
+ "key": "traffic_signals:arrow",
+ "description": "🄵 Tactile Arrow"
+ },
+ {
+ "key": "traffic_sign:direction",
+ "description": "🄵 Direction Affected"
+ },
+ {
+ "key": "traffic_sign:direction",
+ "value": "forward",
+ "description": "🄵🅅 Direction Affected: Forward"
+ },
+ {
+ "key": "traffic_sign:direction",
+ "value": "backward",
+ "description": "🄵🅅 Direction Affected: Backward"
+ },
+ {
+ "key": "traffic_sign:direction",
+ "value": "both",
+ "description": "🄵🅅 Direction Affected: Both / All"
+ },
+ {
+ "key": "townhall:type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "tower:type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "tower:platforms",
+ "description": "🄵 Platforms"
+ },
+ {
+ "key": "tower:construction",
+ "description": "🄵 Construction"
+ },
+ {
+ "key": "toilets:wheelchair",
+ "description": "🄵 Wheelchair Accessible Toilet"
+ },
+ {
+ "key": "toilets:position",
+ "description": "🄵 Positions"
+ },
+ {
+ "key": "toilets:menstrual_products",
+ "description": "🄵 Free Menstrual Products Available"
+ },
+ {
+ "key": "toilets:handwashing",
+ "description": "🄵 Handwashing"
+ },
+ {
+ "key": "toilets:disposal",
+ "description": "🄵 Disposal"
+ },
+ {
+ "key": "toilets:disposal",
+ "value": "chemical",
+ "description": "🄵🅅 Disposal: Chemical"
+ },
+ {
+ "key": "toilets:disposal",
+ "value": "bucket",
+ "description": "🄵🅅 Disposal: Bucket"
+ },
+ {
+ "key": "telescope:type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "telecom:medium",
+ "description": "🄵 Medium"
},
{
"key": "survey_point:structure",
@@ -19315,738 +21705,2953 @@
"value": "magnet",
"description": "🄵🅅 Structure: Magnet"
},
+ {
+ "key": "survey_point:purpose",
+ "description": "🄵 Purpose"
+ },
+ {
+ "key": "survey_point:purpose",
+ "value": "horizontal",
+ "description": "🄵🅅 Purpose: Horizontal Alignment"
+ },
+ {
+ "key": "survey_point:purpose",
+ "value": "vertical",
+ "description": "🄵🅅 Purpose: Vertical Alignment"
+ },
+ {
+ "key": "survey_point:purpose",
+ "value": "both",
+ "description": "🄵🅅 Purpose: Both"
+ },
+ {
+ "key": "survey_point:datum_aligned",
+ "description": "🄵 Aligned to the Local Geodetic Datum"
+ },
{
"key": "survey:date",
"description": "🄵 Last Survey Date"
},
{
- "key": "swimming_pool",
+ "key": "surveillance:zone",
+ "description": "🄵 Surveillance Zone"
+ },
+ {
+ "key": "surveillance:type",
+ "description": "🄵 Surveillance Type"
+ },
+ {
+ "key": "surveillance:type",
+ "value": "guard",
+ "description": "🄵🅅 Surveillance Type: Guard"
+ },
+ {
+ "key": "surveillance:type",
+ "value": "ALPR",
+ "description": "🄵🅅 Surveillance Type: Automatic License Plate Reader"
+ },
+ {
+ "key": "summit:cross",
+ "description": "🄵 Summit Cross"
+ },
+ {
+ "key": "subject:wikidata",
+ "description": "🄵 Subject Wikidata"
+ },
+ {
+ "key": "subject:wikipedia",
+ "description": "🄵 Subject Wikidata"
+ },
+ {
+ "key": "species:wikidata",
+ "description": "🄵 Species Wikidata"
+ },
+ {
+ "key": "species:wikipedia",
+ "description": "🄵 Species Wikidata"
+ },
+ {
+ "key": "source:population",
+ "description": "🄵 Population Source"
+ },
+ {
+ "key": "siren:type",
"description": "🄵 Type"
},
{
- "key": "switch",
- "description": "🄵 Type"
+ "key": "siren:type",
+ "value": "pneumatic",
+ "description": "🄵🅅 Type: Pneumatic"
},
{
- "key": "switch",
- "value": "mechanical",
- "description": "🄵🅅 Type: Mechanical"
+ "key": "siren:type",
+ "value": "electronic",
+ "description": "🄵🅅 Type: Electronic"
},
{
- "key": "switch",
- "value": "circuit_breaker",
- "description": "🄵🅅 Type: Circuit Breaker"
+ "key": "siren:type",
+ "value": "other",
+ "description": "🄵🅅 Type: Other"
},
{
- "key": "switch",
- "value": "disconnector",
- "description": "🄵🅅 Type: Disconnector"
+ "key": "siren:purpose",
+ "description": "🄵 Purpose"
},
{
- "key": "switch",
- "value": "earthing",
- "description": "🄵🅅 Type: Earthing"
+ "key": "service:vehicle:",
+ "description": "🄵 Services"
},
{
- "key": "tactile_paving",
- "description": "🄵 Tactile Paving"
+ "key": "service:bicycle:",
+ "description": "🄵 Bicycle Services"
},
{
- "key": "takeaway",
- "description": "🄵 Takeaway"
+ "key": "seamark:wreck:category",
+ "description": "🄵 Category"
},
{
- "key": "takeaway",
- "value": "yes",
- "description": "🄵🅅 Takeaway: Yes"
+ "key": "seamark:rescue_station:category",
+ "description": "🄵 Life Saving Equipment"
},
{
- "key": "takeaway",
- "value": "no",
- "description": "🄵🅅 Takeaway: No"
+ "key": "seamark:rescue_station:category",
+ "value": "lifeboat",
+ "description": "🄵🅅 Life Saving Equipment: Lifeboat (on Land)"
},
{
- "key": "takeaway",
- "value": "only",
- "description": "🄵🅅 Takeaway: Takeaway Only"
+ "key": "seamark:rescue_station:category",
+ "value": "lifeboat_on_mooring",
+ "description": "🄵🅅 Life Saving Equipment: Lifeboat (at a Mooring)"
},
{
- "key": "target",
- "description": "🄵 Target"
+ "key": "seamark:rescue_station:category",
+ "value": "seaplane",
+ "description": "🄵🅅 Life Saving Equipment: Seaplane"
},
{
- "key": "taxon",
- "description": "🄵 Taxon"
+ "key": "seamark:rescue_station:category",
+ "value": "aircraft",
+ "description": "🄵🅅 Life Saving Equipment: Aircraft"
},
{
- "key": "tee",
- "description": "🄵 Tee Color/Type"
+ "key": "seamark:rescue_station:category",
+ "value": "hovercraft",
+ "description": "🄵🅅 Life Saving Equipment: Hovercraft"
},
{
- "key": "telecom:medium",
- "description": "🄵 Medium"
+ "key": "seamark:rescue_station:category",
+ "value": "radio",
+ "description": "🄵🅅 Life Saving Equipment: Radio Station"
},
{
- "key": "tidal",
- "description": "🄵 Tidal"
+ "key": "seamark:rescue_station:category",
+ "value": "first_aid",
+ "description": "🄵🅅 Life Saving Equipment: First aid"
},
{
- "key": "to",
- "description": "🄵 To"
+ "key": "seamark:rescue_station:category",
+ "value": "refuge_shipwrecked",
+ "description": "🄵🅅 Life Saving Equipment: Shipwreck Refuge"
},
{
- "key": "toilets",
- "description": "🄵 Toilets"
+ "key": "seamark:rescue_station:category",
+ "value": "refuge_intertidal",
+ "description": "🄵🅅 Life Saving Equipment: Intertidal Refuge"
},
{
- "key": "toilets:disposal",
- "description": "🄵 Disposal"
+ "key": "seamark:rescue_station:category",
+ "value": "tug",
+ "description": "🄵🅅 Life Saving Equipment: Salvage tug"
},
{
- "key": "toilets:disposal",
- "value": "chemical",
- "description": "🄵🅅 Disposal: Chemical"
+ "key": "seamark:mooring:category",
+ "description": "🄵 Category"
},
{
- "key": "toilets:disposal",
- "value": "bucket",
- "description": "🄵🅅 Disposal: Bucket"
+ "key": "seamark:harbour:category",
+ "description": "🄵 Domestic Facilities"
},
{
- "key": "toilets:handwashing",
- "description": "🄵 Handwashing"
+ "key": "seamark:harbour:category",
+ "value": "marina",
+ "description": "🄵🅅 Domestic Facilities: Yes"
},
{
- "key": "toilets:position",
- "description": "🄵 Positions"
+ "key": "seamark:buoy_lateral:system",
+ "description": "🄵 System"
},
{
- "key": "toilets:wheelchair",
- "description": "🄵 Wheelchair Accessible Toilet"
+ "key": "seamark:buoy_lateral:system",
+ "value": "iala-a",
+ "description": "🄵🅅 System: IALA A"
},
{
- "key": "toll",
- "description": "🄵 Toll"
+ "key": "seamark:buoy_lateral:system",
+ "value": "iala-b",
+ "description": "🄵🅅 System: IALA B"
},
{
- "key": "tomb",
- "description": "🄵 Type"
+ "key": "seamark:buoy_lateral:system",
+ "value": "cevni",
+ "description": "🄵🅅 System: CEVNI"
},
{
- "key": "tower:construction",
- "description": "🄵 Construction"
+ "key": "seamark:buoy_lateral:system",
+ "value": "other",
+ "description": "🄵🅅 System: Other"
},
{
- "key": "tower:platforms",
- "description": "🄵 Platforms"
- },
- {
- "key": "tower:type",
- "description": "🄵 Type"
- },
- {
- "key": "townhall:type",
- "description": "🄵 Type"
- },
- {
- "key": "tracktype",
- "description": "🄵 Track Type"
- },
- {
- "key": "tracktype",
- "value": "grade1",
- "description": "🄵🅅 Track Type: Solid: paved"
- },
- {
- "key": "tracktype",
- "value": "grade2",
- "description": "🄵🅅 Track Type: Mostly Solid: gravel/rock with some soft material mixed in"
- },
- {
- "key": "tracktype",
- "value": "grade3",
- "description": "🄵🅅 Track Type: Even mixture of hard and soft materials"
- },
- {
- "key": "tracktype",
- "value": "grade4",
- "description": "🄵🅅 Track Type: Mostly Soft: soil/sand/grass with some hard material mixed in"
- },
- {
- "key": "tracktype",
- "value": "grade5",
- "description": "🄵🅅 Track Type: Soft: soil/sand/grass"
- },
- {
- "key": "trade",
- "description": "🄵 Type"
- },
- {
- "key": "traffic_calming",
- "value": "choked_table",
- "description": "🄵🅅 Type: Choked Speed Table"
- },
- {
- "key": "traffic_calming",
- "value": "double_dip",
- "description": "🄵🅅 Type: Double Dip"
- },
- {
- "key": "traffic_sign:direction",
- "description": "🄵 Direction Affected"
- },
- {
- "key": "traffic_sign:direction",
- "value": "forward",
- "description": "🄵🅅 Direction Affected: Forward"
- },
- {
- "key": "traffic_sign:direction",
- "value": "backward",
- "description": "🄵🅅 Direction Affected: Backward"
- },
- {
- "key": "traffic_sign:direction",
- "value": "both",
- "description": "🄵🅅 Direction Affected: Both / All"
- },
- {
- "key": "traffic_signals",
- "description": "🄵 Type"
- },
- {
- "key": "traffic_signals:arrow",
- "description": "🄵 Tactile Arrow"
- },
- {
- "key": "traffic_signals:countdown",
- "description": "🄵 Countdown Timer"
- },
- {
- "key": "traffic_signals:direction",
- "description": "🄵 Direction Affected"
- },
- {
- "key": "traffic_signals:direction",
- "value": "forward",
- "description": "🄵🅅 Direction Affected: Forward"
- },
- {
- "key": "traffic_signals:direction",
- "value": "backward",
- "description": "🄵🅅 Direction Affected: Backward"
- },
- {
- "key": "traffic_signals:direction",
- "value": "both",
- "description": "🄵🅅 Direction Affected: Both / All"
- },
- {
- "key": "traffic_signals:minimap",
- "description": "🄵 Tactile Map"
- },
- {
- "key": "traffic_signals:sound",
- "description": "🄵 Sound Signals"
- },
- {
- "key": "traffic_signals:sound",
- "value": "yes",
- "description": "🄵🅅 Sound Signals: Yes"
- },
- {
- "key": "traffic_signals:sound",
- "value": "no",
- "description": "🄵🅅 Sound Signals: No"
- },
- {
- "key": "traffic_signals:sound",
- "value": "locate",
- "description": "🄵🅅 Sound Signals: `locate`"
- },
- {
- "key": "traffic_signals:sound",
- "value": "walk",
- "description": "🄵🅅 Sound Signals: `walk`"
- },
- {
- "key": "traffic_signals:vibration",
- "description": "🄵 Vibration"
- },
- {
- "key": "trail_visibility",
- "description": "🄵 Trail Visibility"
- },
- {
- "key": "trail_visibility",
- "value": "excellent",
- "description": "🄵🅅 Trail Visibility: Excellent: unambiguous path or markers everywhere"
- },
- {
- "key": "trail_visibility",
- "value": "good",
- "description": "🄵🅅 Trail Visibility: Good: markers visible, sometimes require searching"
- },
- {
- "key": "trail_visibility",
- "value": "intermediate",
- "description": "🄵🅅 Trail Visibility: Intermediate: few markers, path mostly visible"
- },
- {
- "key": "trail_visibility",
- "value": "bad",
- "description": "🄵🅅 Trail Visibility: Bad: no markers, path sometimes invisible/pathless"
- },
- {
- "key": "trail_visibility",
- "value": "horrible",
- "description": "🄵🅅 Trail Visibility: Horrible: often pathless, some orientation skills required"
- },
- {
- "key": "trail_visibility",
- "value": "no",
- "description": "🄵🅅 Trail Visibility: No: pathless, excellent orientation skills required"
- },
- {
- "key": "transformer",
- "description": "🄵 Type"
- },
- {
- "key": "transformer",
- "value": "main",
- "description": "🄵🅅 Type: Main: Forwards power"
- },
- {
- "key": "transformer",
- "value": "distribution",
- "description": "🄵🅅 Type: Distribution: Feeds final consumers, installed outside substations"
- },
- {
- "key": "transformer",
- "value": "generator",
- "description": "🄵🅅 Type: Generator: Steps-up voltage in power plants"
- },
- {
- "key": "transformer",
- "value": "converter",
- "description": "🄵🅅 Type: Converter: Feeds power converters"
- },
- {
- "key": "transformer",
- "value": "phase_angle_regulator",
- "description": "🄵🅅 Type: Phase Angle Regulator"
- },
- {
- "key": "transformer",
- "value": "auxiliary",
- "description": "🄵🅅 Type: Auxiliary: Feeds internal systems in substations"
- },
- {
- "key": "transformer",
- "value": "yes",
- "description": "🄵🅅 Type: Unknown Role"
- },
- {
- "key": "trees",
- "description": "🄵 Trees"
- },
- {
- "key": "trench",
- "description": "🄵 Type"
- },
- {
- "key": "trolley_wire",
- "description": "🄵 Overhead Trolley Wires"
- },
- {
- "key": "tunnel",
- "value": "avalanche_protector",
- "description": "🄵🅅 Type: Avalanche Protector"
- },
- {
- "key": "tunnel",
- "value": "building_passage",
- "description": "🄵🅅 Type: Building Passage"
- },
- {
- "key": "tunnel",
- "value": "culvert",
- "description": "🄵🅅 Type: Culvert"
- },
- {
- "key": "tunnel",
- "value": "flooded",
- "description": "🄵🅅 Type: Flooded Tunnel"
- },
- {
- "key": "turning_circle",
+ "key": "seamark:buoy_lateral:shape",
"description": "🄵 Shape"
},
{
- "key": "two_sided",
- "description": "🄵 Two-Sided"
+ "key": "seamark:buoy_lateral:colour",
+ "description": "🄵 Color"
},
{
- "key": "two_sided",
- "value": "yes",
- "description": "🄵🅅 Two-Sided: Yes"
+ "key": "seamark:buoy_lateral:colour",
+ "value": "red;white;red;white",
+ "description": "🄵🅅 Color: Red-White-Red-White"
},
{
- "key": "usage",
- "description": "🄵 Usage Type"
+ "key": "seamark:buoy_lateral:colour",
+ "value": "green;white;green;white",
+ "description": "🄵🅅 Color: Green-White-Green-White"
},
{
- "key": "usage",
- "value": "main",
- "description": "🄵🅅 Usage Type: Main"
+ "key": "seamark:buoy_lateral:colour",
+ "value": "red;green;red",
+ "description": "🄵🅅 Color: Red-Green-Red"
},
{
- "key": "usage",
- "value": "branch",
- "description": "🄵🅅 Usage Type: Branch"
+ "key": "seamark:buoy_lateral:colour",
+ "value": "green;red;green",
+ "description": "🄵🅅 Color: Green-Red-Green"
},
{
- "key": "usage",
- "value": "industrial",
- "description": "🄵🅅 Usage Type: Industrial"
+ "key": "seamark:buoy_lateral:colour",
+ "value": "white",
+ "description": "🄵🅅 Color: White"
},
{
- "key": "usage",
- "value": "military",
- "description": "🄵🅅 Usage Type: Military"
+ "key": "seamark:buoy_lateral:colour",
+ "value": "yellow",
+ "description": "🄵🅅 Color: Yellow"
},
{
- "key": "usage",
- "value": "test",
- "description": "🄵🅅 Usage Type: Test"
+ "key": "seamark:buoy_lateral:category",
+ "description": "🄵 Category"
},
{
- "key": "usage",
- "value": "tourism",
- "description": "🄵🅅 Usage Type: Tourism"
+ "key": "seamark:buoy_lateral:category",
+ "value": "port",
+ "description": "🄵🅅 Category: Port"
},
{
- "key": "usage",
- "value": "transportation",
- "description": "🄵🅅 Usage Type: Transportation"
+ "key": "seamark:buoy_lateral:category",
+ "value": "starboard",
+ "description": "🄵🅅 Category: Starboard"
},
{
- "key": "usage",
- "value": "transmission",
- "description": "🄵🅅 Usage Type: Transmission"
+ "key": "seamark:buoy_lateral:category",
+ "value": "channel_left",
+ "description": "🄵🅅 Category: Channel Left"
},
{
- "key": "usage",
- "value": "irrigation",
- "description": "🄵🅅 Usage Type: Irrigation"
+ "key": "seamark:buoy_lateral:category",
+ "value": "channel_right",
+ "description": "🄵🅅 Category: Channel Right"
},
{
- "key": "usage",
- "value": "headrace",
- "description": "🄵🅅 Usage Type: Headrace"
+ "key": "seamark:buoy_lateral:category",
+ "value": "waterway_left",
+ "description": "🄵🅅 Category: Waterway Left"
},
{
- "key": "usage",
- "value": "tailrace",
- "description": "🄵🅅 Usage Type: Tailrace"
+ "key": "seamark:buoy_lateral:category",
+ "value": "waterway_right",
+ "description": "🄵🅅 Category: Waterway Right"
},
{
- "key": "usage",
- "value": "spillway",
- "description": "🄵🅅 Usage Type: Spillway"
+ "key": "seamark:buoy_lateral:category",
+ "value": "danger_left",
+ "description": "🄵🅅 Category: Danger Left"
},
{
- "key": "utility",
- "value": "gas",
- "description": "🄵🅅 Utility: Gas"
+ "key": "seamark:buoy_lateral:category",
+ "value": "danger_right",
+ "description": "🄵🅅 Category: Danger Right"
},
{
- "key": "utility",
- "value": "oil",
- "description": "🄵🅅 Utility: Oil"
+ "key": "seamark:buoy_lateral:category",
+ "value": "preferred_channel_port",
+ "description": "🄵🅅 Category: Preferred Channel Port"
},
{
- "key": "utility",
- "value": "sewerage",
- "description": "🄵🅅 Utility: Waste Water"
+ "key": "seamark:buoy_lateral:category",
+ "value": "preferred_channel_starboard",
+ "description": "🄵🅅 Category: Preferred Channel Starboard"
},
{
- "key": "utility",
- "value": "street_lighting",
- "description": "🄵🅅 Utility: Street Lighting"
+ "key": "seamark:beacon_lateral:system",
+ "description": "🄵 System"
},
{
- "key": "utility",
- "value": "telecom",
- "description": "🄵🅅 Utility: Telecom"
+ "key": "seamark:beacon_lateral:system",
+ "value": "iala-a",
+ "description": "🄵🅅 System: IALA A"
},
{
- "key": "utility",
- "value": "water",
- "description": "🄵🅅 Utility: Water"
+ "key": "seamark:beacon_lateral:system",
+ "value": "iala-b",
+ "description": "🄵🅅 System: IALA B"
},
{
- "key": "valve",
+ "key": "seamark:beacon_lateral:system",
+ "value": "cevni",
+ "description": "🄵🅅 System: CEVNI"
+ },
+ {
+ "key": "seamark:beacon_lateral:system",
+ "value": "other",
+ "description": "🄵🅅 System: Other"
+ },
+ {
+ "key": "seamark:beacon_lateral:shape",
+ "description": "🄵 Shape"
+ },
+ {
+ "key": "seamark:beacon_lateral:colour",
+ "description": "🄵 Color"
+ },
+ {
+ "key": "seamark:beacon_lateral:colour",
+ "value": "red",
+ "description": "🄵🅅 Color: Red"
+ },
+ {
+ "key": "seamark:beacon_lateral:colour",
+ "value": "green",
+ "description": "🄵🅅 Color: Green"
+ },
+ {
+ "key": "seamark:beacon_lateral:colour",
+ "value": "grey",
+ "description": "🄵🅅 Color: Grey"
+ },
+ {
+ "key": "seamark:beacon_lateral:category",
+ "description": "🄵 Category"
+ },
+ {
+ "key": "seamark:beacon_lateral:category",
+ "value": "port",
+ "description": "🄵🅅 Category: Port"
+ },
+ {
+ "key": "seamark:beacon_lateral:category",
+ "value": "starboard",
+ "description": "🄵🅅 Category: Starboard"
+ },
+ {
+ "key": "seamark:beacon_lateral:category",
+ "value": "waterway_left",
+ "description": "🄵🅅 Category: Waterway Left"
+ },
+ {
+ "key": "seamark:beacon_lateral:category",
+ "value": "waterway_right",
+ "description": "🄵🅅 Category: Waterway Right"
+ },
+ {
+ "key": "seamark:beacon_lateral:category",
+ "value": "danger_left",
+ "description": "🄵🅅 Category: Danger Left"
+ },
+ {
+ "key": "seamark:beacon_lateral:category",
+ "value": "danger_right",
+ "description": "🄵🅅 Category: Danger Right"
+ },
+ {
+ "key": "seamark:beacon_isolated_danger:shape",
+ "description": "🄵 Shape"
+ },
+ {
+ "key": "rotor:diameter",
+ "description": "🄵 Rotor Diameter (Meters)"
+ },
+ {
+ "key": "roof:shape",
+ "description": "🄵 Roof Shape"
+ },
+ {
+ "key": "roof:shape",
+ "value": "flat",
+ "description": "🄵🅅 Roof Shape: Flat"
+ },
+ {
+ "key": "roof:shape",
+ "value": "gabled",
+ "description": "🄵🅅 Roof Shape: Gabled"
+ },
+ {
+ "key": "roof:shape",
+ "value": "gabled_height_moved",
+ "description": "🄵🅅 Roof Shape: Gabled (Height Moved)"
+ },
+ {
+ "key": "roof:shape",
+ "value": "skillion",
+ "description": "🄵🅅 Roof Shape: Skillion"
+ },
+ {
+ "key": "roof:shape",
+ "value": "hipped",
+ "description": "🄵🅅 Roof Shape: Hipped"
+ },
+ {
+ "key": "roof:shape",
+ "value": "half-hipped",
+ "description": "🄵🅅 Roof Shape: Half-Hipped"
+ },
+ {
+ "key": "roof:shape",
+ "value": "side_hipped",
+ "description": "🄵🅅 Roof Shape: Side-Hipped"
+ },
+ {
+ "key": "roof:shape",
+ "value": "side_half-hipped",
+ "description": "🄵🅅 Roof Shape: Side Half-Hipped"
+ },
+ {
+ "key": "roof:shape",
+ "value": "mansard",
+ "description": "🄵🅅 Roof Shape: Mansard"
+ },
+ {
+ "key": "roof:shape",
+ "value": "gambrel",
+ "description": "🄵🅅 Roof Shape: Gambrel"
+ },
+ {
+ "key": "roof:shape",
+ "value": "hipped-and-gabled",
+ "description": "🄵🅅 Roof Shape: Hipped & Gabled"
+ },
+ {
+ "key": "roof:shape",
+ "value": "pyramidal",
+ "description": "🄵🅅 Roof Shape: Pyramidal"
+ },
+ {
+ "key": "roof:shape",
+ "value": "crosspitched",
+ "description": "🄵🅅 Roof Shape: Cross-Pitched"
+ },
+ {
+ "key": "roof:shape",
+ "value": "sawtooth",
+ "description": "🄵🅅 Roof Shape: Sawtooth"
+ },
+ {
+ "key": "roof:shape",
+ "value": "butterfly",
+ "description": "🄵🅅 Roof Shape: Butterfly"
+ },
+ {
+ "key": "roof:shape",
+ "value": "cone",
+ "description": "🄵🅅 Roof Shape: Cone"
+ },
+ {
+ "key": "roof:shape",
+ "value": "dome",
+ "description": "🄵🅅 Roof Shape: Dome"
+ },
+ {
+ "key": "roof:shape",
+ "value": "onion",
+ "description": "🄵🅅 Roof Shape: Onion"
+ },
+ {
+ "key": "roof:shape",
+ "value": "round",
+ "description": "🄵🅅 Roof Shape: Round"
+ },
+ {
+ "key": "roof:height",
+ "description": "🄵 Roof Height (Meters)"
+ },
+ {
+ "key": "roof:colour",
+ "description": "🄵 Roof Color"
+ },
+ {
+ "key": "roller_coaster:track",
"description": "🄵 Type"
},
{
- "key": "bus",
- "description": "🄵 Vehicles"
+ "key": "roller_coaster:track",
+ "value": "lift_hill",
+ "description": "🄵🅅 Type: `lift_hill`"
},
{
- "key": "trolleybus",
- "description": "🄵 Vehicles"
+ "key": "roller_coaster:track",
+ "value": "launch_straight",
+ "description": "🄵🅅 Type: `launch_straight`"
},
{
- "key": "tram",
- "description": "🄵 Vehicles"
+ "key": "roller_coaster:track",
+ "value": "brake_run",
+ "description": "🄵🅅 Type: `brake_run`"
},
{
- "key": "train",
- "description": "🄵 Vehicles"
+ "key": "roller_coaster:track",
+ "value": "station",
+ "description": "🄵🅅 Type: `station`"
},
{
- "key": "subway",
- "description": "🄵 Vehicles"
+ "key": "roller_coaster:track",
+ "value": "moving",
+ "description": "🄵🅅 Type: `moving`"
},
{
- "key": "light_rail",
- "description": "🄵 Vehicles"
+ "key": "roller_coaster:track",
+ "value": "waiting",
+ "description": "🄵🅅 Type: `waiting`"
},
{
- "key": "monorail",
- "description": "🄵 Vehicles"
+ "key": "roller_coaster:track",
+ "value": "maintenance",
+ "description": "🄵🅅 Type: `maintenance`"
},
{
- "key": "ferry",
- "description": "🄵 Vehicles"
+ "key": "ref:vatin",
+ "description": "🄵 VAT ID Number"
},
{
- "key": "vending",
- "description": "🄵 Types of Goods"
+ "key": "ref:isil",
+ "description": "🄵 ISIL Code"
},
{
- "key": "vhf",
- "description": "🄵 VHF Channel"
+ "key": "ref:edubase",
+ "description": "🄵 Department for Education Reference"
},
{
- "key": "via",
- "description": "🄵 Via"
+ "key": "ref:linz:place_id",
+ "description": "🄵 NZGB Place ID"
},
{
- "key": "video",
- "description": "🄵 Video Calls"
+ "key": "ref:FR:SIRET",
+ "description": "🄵 SIRET Number"
},
{
- "key": "visibility",
- "description": "🄵 Visibility"
+ "key": "railway:track_ref",
+ "description": "🄵 Track Number"
},
{
- "key": "visibility",
- "value": "house",
- "description": "🄵🅅 Visibility: Up to 5m (16ft)"
+ "key": "railway:switch",
+ "description": "🄵 Switch Type"
},
{
- "key": "visibility",
- "value": "street",
- "description": "🄵🅅 Visibility: 5 to 20m (16 to 65ft)"
+ "key": "railway:switch",
+ "value": "default",
+ "description": "🄵🅅 Switch Type: Normal Switch"
},
{
- "key": "visibility",
- "value": "area",
- "description": "🄵🅅 Visibility: Over 20m (65ft)"
+ "key": "railway:switch",
+ "value": "double_slip",
+ "description": "🄵🅅 Switch Type: Double-slip Switch"
},
{
- "key": "volcano:status",
- "description": "🄵 Volcano Status"
+ "key": "railway:switch",
+ "value": "single_slip",
+ "description": "🄵🅅 Switch Type: Single-slip Switch"
},
{
- "key": "volcano:status",
- "value": "active",
- "description": "🄵🅅 Volcano Status: Active"
+ "key": "railway:switch",
+ "value": "wye",
+ "description": "🄵🅅 Switch Type: Wye Switch"
},
{
- "key": "volcano:status",
- "value": "dormant",
- "description": "🄵🅅 Volcano Status: Dormant"
+ "key": "railway:switch",
+ "value": "three_way",
+ "description": "🄵🅅 Switch Type: Three-way Switch"
},
{
- "key": "volcano:status",
- "value": "extinct",
- "description": "🄵🅅 Volcano Status: Extinct"
+ "key": "railway:switch",
+ "value": "abt",
+ "description": "🄵🅅 Switch Type: Abt Switch"
},
{
- "key": "volcano:type",
- "description": "🄵 Volcano Type"
+ "key": "railway:position",
+ "description": "🄵 Milestone Position"
},
{
- "key": "volcano:type",
- "value": "stratovolcano",
- "description": "🄵🅅 Volcano Type: Stratovolcano"
+ "key": "railway:signal:direction",
+ "description": "🄵 Direction Affected"
},
{
- "key": "volcano:type",
- "value": "shield",
- "description": "🄵🅅 Volcano Type: Shield"
+ "key": "railway:signal:direction",
+ "value": "forward",
+ "description": "🄵🅅 Direction Affected: Forward"
},
{
- "key": "volcano:type",
- "value": "scoria",
- "description": "🄵🅅 Volcano Type: Scoria"
+ "key": "railway:signal:direction",
+ "value": "backward",
+ "description": "🄵🅅 Direction Affected: Backward"
},
{
- "key": "voltage",
- "description": "🄵 Voltage"
+ "key": "railway:signal:direction",
+ "value": "both",
+ "description": "🄵🅅 Direction Affected: Both / All"
},
{
- "key": "voltage:primary",
- "description": "🄵 Primary Voltage"
- },
- {
- "key": "voltage:secondary",
- "description": "🄵 Secondary Voltage"
- },
- {
- "key": "voltage:tertiary",
- "description": "🄵 Tertiary Voltage"
- },
- {
- "key": "wall",
+ "key": "public_bookcase:type",
"description": "🄵 Type"
},
{
- "key": "waste",
- "description": "🄵 Waste"
- },
- {
- "key": "water_point",
- "description": "🄵 Water Point"
- },
- {
- "key": "water_source",
- "description": "🄵 Water Source"
- },
- {
- "key": "water_source",
- "value": "main",
- "description": "🄵🅅 Water Source: Water Distribution Pipe"
- },
- {
- "key": "water_source",
- "value": "water_tank",
- "description": "🄵🅅 Water Source: Water Tank"
- },
- {
- "key": "water_source",
- "value": "pond",
- "description": "🄵🅅 Water Source: Pond"
- },
- {
- "key": "water_source",
- "value": "river",
- "description": "🄵🅅 Water Source: River"
- },
- {
- "key": "water_source",
- "value": "stream",
- "description": "🄵🅅 Water Source: Stream"
- },
- {
- "key": "water_tank:volume",
- "description": "🄵 Volume (Liters)"
- },
- {
- "key": "water",
+ "key": "post_box:type",
"description": "🄵 Type"
},
{
- "key": "website",
- "description": "🄵 Website"
+ "key": "post_box:type",
+ "value": "pillar",
+ "description": "🄵🅅 Type: Freestanding Box"
},
{
- "key": "wetland",
- "description": "🄵 Type"
+ "key": "post_box:type",
+ "value": "lamp",
+ "description": "🄵🅅 Type: Attached to a Pole"
},
{
- "key": "wheelchair",
- "description": "🄵 Wheelchair Access"
+ "key": "post_box:type",
+ "value": "wall",
+ "description": "🄵🅅 Type: Mounted in a Wall"
},
{
- "key": "wholesale",
- "description": "🄵 Wholesale"
+ "key": "population:date",
+ "description": "🄵 Population Date"
},
{
- "key": "width",
- "description": "🄵 Width (Meters)"
+ "key": "playground:theme",
+ "description": "🄵 Theme"
},
{
- "key": "wikidata",
- "description": "🄵 Wikidata, 🄵 Wikipedia"
+ "key": "plant:source",
+ "description": "🄵 Energy Source"
},
{
- "key": "wikipedia",
- "description": "🄵 Wikidata, 🄵 Wikipedia"
+ "key": "plant:output",
+ "description": "🄵 Form of Power Output"
},
{
- "key": "wikimedia_commons",
- "description": "🄵 Wikimedia Commons Page"
+ "key": "plant:outputelectricity",
+ "description": "🄵🅅 Form of Power Output: Electricity"
},
{
- "key": "windings",
- "description": "🄵 Windings"
+ "key": "plant:outputhot_water",
+ "description": "🄵🅅 Form of Power Output: Hot Water"
},
{
- "key": "windings:auto",
- "description": "🄵 Autotransformer"
+ "key": "plant:outputhot_air",
+ "description": "🄵🅅 Form of Power Output: Hot Air"
},
{
- "key": "windings:auto",
- "value": "yes",
- "description": "🄵🅅 Autotransformer: Yes"
+ "key": "plant:outputcold_water",
+ "description": "🄵🅅 Form of Power Output: Cold Water"
},
{
- "key": "windings:auto",
+ "key": "plant:outputcold_air",
+ "description": "🄵🅅 Form of Power Output: Cold Air"
+ },
+ {
+ "key": "plant:outputcompressed_air",
+ "description": "🄵🅅 Form of Power Output: Compressed Air"
+ },
+ {
+ "key": "plant:outputsteam",
+ "description": "🄵🅅 Form of Power Output: Steam"
+ },
+ {
+ "key": "plant:outputvacuum",
+ "description": "🄵🅅 Form of Power Output: Vacuum"
+ },
+ {
+ "key": "plant:method",
+ "description": "🄵 Generation Method"
+ },
+ {
+ "key": "plant:output:electricity",
+ "description": "🄵 Electric Power Output"
+ },
+ {
+ "key": "plant:method",
+ "value": "combustion",
+ "description": "🄵🅅 Generation Method: Combustion"
+ },
+ {
+ "key": "plant:method",
+ "value": "gasification",
+ "description": "🄵🅅 Generation Method: Gasification"
+ },
+ {
+ "key": "plant:method",
+ "value": "thermal",
+ "description": "🄵🅅 Generation Method: Solar Thermal"
+ },
+ {
+ "key": "plant:method",
+ "value": "water-storage",
+ "description": "🄵🅅 Generation Method: Reservoir"
+ },
+ {
+ "key": "plant:method",
+ "value": "water-pumped-storage",
+ "description": "🄵🅅 Generation Method: Pumped-Storage"
+ },
+ {
+ "key": "plant:method",
+ "value": "run-of-the-river",
+ "description": "🄵🅅 Generation Method: Run-of-the-River"
+ },
+ {
+ "key": "piste:type",
+ "value": "snow_park",
+ "description": "🄵🅅 Type: Snow Park"
+ },
+ {
+ "key": "piste:type",
+ "value": "playground",
+ "description": "🄵🅅 Type: Playground"
+ },
+ {
+ "key": "piste:type",
+ "value": "connection",
+ "description": "🄵🅅 Type: Connection"
+ },
+ {
+ "key": "piste:grooming",
+ "description": "🄵 Grooming"
+ },
+ {
+ "key": "piste:grooming",
+ "value": "classic",
+ "description": "🄵🅅 Grooming: Classic, 🄵🅅 Grooming: Classic - Winter Hiking"
+ },
+ {
+ "key": "piste:grooming",
+ "value": "backcountry",
+ "description": "🄵🅅 Grooming: Backcountry, no grooming, 🄵🅅 Grooming: Backcountry - Snowshoeing, 🄵🅅 Grooming: Backcountry - no grooming, 🄵🅅 Grooming: Backcountry"
+ },
+ {
+ "key": "piste:grooming",
+ "value": "classic+skating",
+ "description": "🄵🅅 Grooming: Classic and Skating"
+ },
+ {
+ "key": "piste:grooming",
+ "value": "scooter",
+ "description": "🄵🅅 Grooming: Scooter/Snowmobile"
+ },
+ {
+ "key": "piste:grooming",
+ "value": "skating",
+ "description": "🄵🅅 Grooming: Skating"
+ },
+ {
+ "key": "piste:grooming",
+ "value": "mogul",
+ "description": "🄵🅅 Grooming: Mogul"
+ },
+ {
+ "key": "piste:difficulty",
+ "description": "🄵 Difficulty"
+ },
+ {
+ "key": "piste:difficulty",
+ "value": "novice",
+ "description": "🄵🅅 Difficulty: Novice - L: <30° incline, 🄵🅅 Difficulty: Novice - Flat, no effort needed, 🄵🅅 Difficulty: Novice (instructional), 🄵🅅 Difficulty: Novice"
+ },
+ {
+ "key": "piste:difficulty",
+ "value": "easy",
+ "description": "🄵🅅 Difficulty: Easy - WS: 30-35° incline, 🄵🅅 Difficulty: Easy - Soft hills, short steep section, 🄵🅅 Difficulty: Easy (green circle), 🄵🅅 Difficulty: Easy"
+ },
+ {
+ "key": "piste:difficulty",
+ "value": "intermediate",
+ "description": "🄵🅅 Difficulty: Intermediate - ZS: 35-40° incline, 🄵🅅 Difficulty: Intermediate - Steep section, 🄵🅅 Difficulty: Intermediate (blue square), 🄵🅅 Difficulty: Intermediate"
+ },
+ {
+ "key": "piste:difficulty",
+ "value": "advanced",
+ "description": "🄵🅅 Difficulty: Advanced - S: 40-45° incline, 🄵🅅 Difficulty: Advanced - Narrow, steep or icy section, sharp turn, 🄵🅅 Difficulty: Advanced (black diamond), 🄵🅅 Difficulty: Advanced"
+ },
+ {
+ "key": "piste:difficulty",
+ "value": "expert",
+ "description": "🄵🅅 Difficulty: Expert - SS: 45–50° incline, 🄵🅅 Difficulty: Expert - Dangerous terrain around, 🄵🅅 Difficulty: Expert (double black diamond), 🄵🅅 Difficulty: Expert"
+ },
+ {
+ "key": "piste:difficulty",
+ "value": "freeride",
+ "description": "🄵🅅 Difficulty: Freeride - AS: 50–55° incline, 🄵🅅 Difficulty: Freeride (off-piste), 🄵🅅 Difficulty: Freeride"
+ },
+ {
+ "key": "piste:difficulty",
+ "value": "extreme",
+ "description": "🄵🅅 Difficulty: Extreme - EX: >55° incline, 🄵🅅 Difficulty: Extreme (climbing equipment required), 🄵🅅 Difficulty: Extreme"
+ },
+ {
+ "key": "parking:left",
+ "description": "🄵 Parking"
+ },
+ {
+ "key": "parking:left",
+ "value": "lane",
+ "description": "🄵🅅 Parking: Roadside Lane"
+ },
+ {
+ "key": "parking:left",
+ "value": "street_side",
+ "description": "🄵🅅 Parking: Street-Side"
+ },
+ {
+ "key": "parking:left",
+ "value": "on_kerb",
+ "description": "🄵🅅 Parking: On Kerb"
+ },
+ {
+ "key": "parking:left",
+ "value": "half_on_kerb",
+ "description": "🄵🅅 Parking: Half On Kerb"
+ },
+ {
+ "key": "parking:left",
+ "value": "shoulder",
+ "description": "🄵🅅 Parking: Shoulder"
+ },
+ {
+ "key": "parking:left",
"value": "no",
- "description": "🄵🅅 Autotransformer: No"
+ "description": "🄵🅅 Parking: No"
},
{
- "key": "windings:configuration",
- "description": "🄵 Windings Configuration"
+ "key": "parking:left",
+ "value": "separate",
+ "description": "🄵🅅 Parking: Parking mapped separately"
},
{
- "key": "windings:configuration",
- "value": "star",
- "description": "🄵🅅 Windings Configuration: Star / Wye"
+ "key": "parking:left",
+ "value": "yes",
+ "description": "🄵🅅 Parking: Yes (unspecified)"
},
{
- "key": "windings:configuration",
- "value": "delta",
- "description": "🄵🅅 Windings Configuration: Delta"
+ "key": "parking:right",
+ "description": "🄵 Parking"
},
{
- "key": "windings:configuration",
- "value": "open-delta",
- "description": "🄵🅅 Windings Configuration: Open Delta"
+ "key": "parking:right",
+ "value": "lane",
+ "description": "🄵🅅 Parking: Roadside Lane"
},
{
- "key": "windings:configuration",
- "value": "zigzag",
- "description": "🄵🅅 Windings Configuration: Zig Zag"
+ "key": "parking:right",
+ "value": "street_side",
+ "description": "🄵🅅 Parking: Street-Side"
},
{
- "key": "windings:configuration",
- "value": "open",
- "description": "🄵🅅 Windings Configuration: Open"
+ "key": "parking:right",
+ "value": "on_kerb",
+ "description": "🄵🅅 Parking: On Kerb"
},
{
- "key": "windings:configuration",
- "value": "scott",
- "description": "🄵🅅 Windings Configuration: Scott"
+ "key": "parking:right",
+ "value": "half_on_kerb",
+ "description": "🄵🅅 Parking: Half On Kerb"
},
{
- "key": "windings:configuration",
- "value": "leblanc",
- "description": "🄵🅅 Windings Configuration: Leblanc"
+ "key": "parking:right",
+ "value": "shoulder",
+ "description": "🄵🅅 Parking: Shoulder"
+ },
+ {
+ "key": "parking:right",
+ "value": "no",
+ "description": "🄵🅅 Parking: No"
+ },
+ {
+ "key": "parking:right",
+ "value": "separate",
+ "description": "🄵🅅 Parking: Parking mapped separately"
+ },
+ {
+ "key": "parking:right",
+ "value": "yes",
+ "description": "🄵🅅 Parking: Yes (unspecified)"
+ },
+ {
+ "key": "parking:left:orientation",
+ "description": "🄵 Parking Orientation"
+ },
+ {
+ "key": "parking:left:orientation",
+ "value": "parallel",
+ "description": "🄵🅅 Parking Orientation: Parallel to the Street"
+ },
+ {
+ "key": "parking:left:orientation",
+ "value": "diagonal",
+ "description": "🄵🅅 Parking Orientation: Diagonal in Relation to the Street (~45°)"
+ },
+ {
+ "key": "parking:left:orientation",
+ "value": "perpendicular",
+ "description": "🄵🅅 Parking Orientation: Meets the Street at a Straight Angle (~90°)"
+ },
+ {
+ "key": "parking:right:orientation",
+ "description": "🄵 Parking Orientation"
+ },
+ {
+ "key": "parking:right:orientation",
+ "value": "parallel",
+ "description": "🄵🅅 Parking Orientation: Parallel to the Street"
+ },
+ {
+ "key": "parking:right:orientation",
+ "value": "diagonal",
+ "description": "🄵🅅 Parking Orientation: Diagonal in Relation to the Street (~45°)"
+ },
+ {
+ "key": "parking:right:orientation",
+ "value": "perpendicular",
+ "description": "🄵🅅 Parking Orientation: Meets the Street at a Straight Angle (~90°)"
+ },
+ {
+ "key": "orientation",
+ "description": "🄵 Orientation"
+ },
+ {
+ "key": "orientation",
+ "value": "parallel",
+ "description": "🄵🅅 Orientation: Parallel to the Street"
+ },
+ {
+ "key": "orientation",
+ "value": "diagonal",
+ "description": "🄵🅅 Orientation: Diagonal in Relation to the Street (~45°)"
+ },
+ {
+ "key": "orientation",
+ "value": "perpendicular",
+ "description": "🄵🅅 Orientation: Meets the Street at a Straight Angle (~90°)"
+ },
+ {
+ "key": "operator:type",
+ "description": "🄵 Operator Type"
+ },
+ {
+ "key": "opening_hours:drive_through",
+ "description": "🄵 Drive Through Hours"
+ },
+ {
+ "key": "oneway:bicycle",
+ "description": "🄵 One Way (Bicycles)"
+ },
+ {
+ "key": "not:name",
+ "description": "🄵 Incorrect Names"
+ },
+ {
+ "key": "network:type",
+ "description": "🄵 Network Type"
+ },
+ {
+ "key": "mtb:scale",
+ "description": "🄵 Mountain Biking Difficulty"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "0",
+ "description": "🄵🅅 Mountain Biking Difficulty: 0: Solid gravel/packed earth, no obstacles, wide curves"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "1",
+ "description": "🄵🅅 Mountain Biking Difficulty: 1: Some loose surface, small obstacles, wide curves"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "2",
+ "description": "🄵🅅 Mountain Biking Difficulty: 2: Much loose surface, large obstacles, easy hairpins"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "3",
+ "description": "🄵🅅 Mountain Biking Difficulty: 3: Slippery surface, large obstacles, tight hairpins"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "4",
+ "description": "🄵🅅 Mountain Biking Difficulty: 4: Loose surface or boulders, dangerous hairpins"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "5",
+ "description": "🄵🅅 Mountain Biking Difficulty: 5: Maximum difficulty, boulder fields, landslides"
+ },
+ {
+ "key": "mtb:scale",
+ "value": "6",
+ "description": "🄵🅅 Mountain Biking Difficulty: 6: Not rideable except by the very best mountain bikers"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "description": "🄵 Mountain Biking Uphill Difficulty"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "0",
+ "description": "🄵🅅 Mountain Biking Uphill Difficulty: 0: Avg. incline <10%, gravel/packed earth, no obstacles"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "1",
+ "description": "🄵🅅 Mountain Biking Uphill Difficulty: 1: Avg. incline <15%, gravel/packed earth, few small objects"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "2",
+ "description": "🄵🅅 Mountain Biking Uphill Difficulty: 2: Avg. incline <20%, stable surface, fistsize rocks/roots"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "3",
+ "description": "🄵🅅 Mountain Biking Uphill Difficulty: 3: Avg. incline <25%, variable surface, fistsize rocks/branches"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "4",
+ "description": "🄵🅅 Mountain Biking Uphill Difficulty: 4: Avg. incline <30%, poor condition, big rocks/branches"
+ },
+ {
+ "key": "mtb:scale:uphill",
+ "value": "5",
+ "description": "🄵🅅 Mountain Biking Uphill Difficulty: 5: Very steep, bike generally needs to be pushed or carried"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "description": "🄵 IMBA Trail Difficulty"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "value": "0",
+ "description": "🄵🅅 IMBA Trail Difficulty: ⚪ Easiest (white circle)"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "value": "1",
+ "description": "🄵🅅 IMBA Trail Difficulty: 🟢 Easy (green circle)"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "value": "2",
+ "description": "🄵🅅 IMBA Trail Difficulty: 🟦 Medium (blue square)"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "value": "3",
+ "description": "🄵🅅 IMBA Trail Difficulty: ◆ Difficult (black diamond)"
+ },
+ {
+ "key": "mtb:scale:imba",
+ "value": "4",
+ "description": "🄵🅅 IMBA Trail Difficulty: ◆◆ Extremely Difficult (double black diamond)"
+ },
+ {
+ "key": "model:wikidata",
+ "description": "🄵 Model Wikidata"
+ },
+ {
+ "key": "model:wikipedia",
+ "description": "🄵 Model Wikidata"
+ },
+ {
+ "key": "memorial:addr:city",
+ "description": "🄵 Nearest Building Address"
+ },
+ {
+ "key": "memorial:addr:housename",
+ "description": "🄵 Nearest Building Address"
+ },
+ {
+ "key": "memorial:addr:housenumber",
+ "description": "🄵 Nearest Building Address"
+ },
+ {
+ "key": "memorial:addr:place",
+ "description": "🄵 Nearest Building Address"
+ },
+ {
+ "key": "memorial:addr:postcode",
+ "description": "🄵 Nearest Building Address"
+ },
+ {
+ "key": "memorial:addr:street",
+ "description": "🄵 Nearest Building Address"
+ },
+ {
+ "key": "memorial:addr",
+ "description": "🄵 Nearest Building Address"
+ },
+ {
+ "key": "maxwidth:physical",
+ "description": "🄵 Width Limit"
+ },
+ {
+ "key": "maxspeed:hgv",
+ "description": "🄵 Truck Speed Limit"
+ },
+ {
+ "key": "maxspeed:advisory",
+ "description": "🄵 Advisory Speed Limit"
+ },
+ {
+ "key": "manufacturer:wikidata",
+ "description": "🄵 Manufacturer Wikidata"
+ },
+ {
+ "key": "manufacturer:wikipedia",
+ "description": "🄵 Manufacturer Wikidata"
+ },
+ {
+ "key": "lift_gate:type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "lift_gate:type",
+ "value": "single",
+ "description": "🄵🅅 Type: Single Bar"
+ },
+ {
+ "key": "lift_gate:type",
+ "value": "double",
+ "description": "🄵🅅 Type: Opposing Bars"
+ },
+ {
+ "key": "kerb:height",
+ "description": "🄵 Height"
+ },
+ {
+ "key": "junction:ref",
+ "description": "🄵 Junction Number"
+ },
+ {
+ "key": "internet_access:ssid",
+ "description": "🄵 Wifi Network Name"
+ },
+ {
+ "key": "internet_access:fee",
+ "description": "🄵 Internet Access Fee"
+ },
+ {
+ "key": "internet_access:fee",
+ "value": "no",
+ "description": "🄵🅅 Internet Access Fee: Free"
+ },
+ {
+ "key": "internet_access:fee",
+ "value": "yes",
+ "description": "🄵🅅 Internet Access Fee: Paid"
+ },
+ {
+ "key": "internet_access:fee",
+ "value": "customers",
+ "description": "🄵🅅 Internet Access Fee: Customers Only"
+ },
+ {
+ "key": "holding_position:type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "holding_position:type",
+ "value": "runway",
+ "description": "🄵🅅 Type: Runway"
+ },
+ {
+ "key": "holding_position:type",
+ "value": "intermediate",
+ "description": "🄵🅅 Type: Taxiway-Taxiway Intersection"
+ },
+ {
+ "key": "holding_position:type",
+ "value": "ILS",
+ "description": "🄵🅅 Type: Instrument Landing System"
+ },
+ {
+ "key": "historic:civilization",
+ "description": "🄵 Historic Civilization"
+ },
+ {
+ "key": "wreck:visible_at_low_tide",
+ "description": "🄵 Visible At Low Tide"
+ },
+ {
+ "key": "wreck:visible_at_high_tide",
+ "description": "🄵 Visible At High Tide"
+ },
+ {
+ "key": "wreck:date_sunk",
+ "description": "🄵 Date Sunk"
+ },
+ {
+ "key": "height:hub",
+ "description": "🄵 Height of Hub (Meters)"
+ },
+ {
+ "key": "healthcare:speciality",
+ "description": "🄵 Specialties"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "anaesthetics",
+ "description": "🄵🅅 Specialties: Anesthesiology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "angiology",
+ "description": "🄵🅅 Specialties: Angiology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "anthroposophical",
+ "description": "🄵🅅 Specialties: Anthroposophic Medicine"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "applied_kinesiology",
+ "description": "🄵🅅 Specialties: Applied Kinesiology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "aromatherapy",
+ "description": "🄵🅅 Specialties: Aromatherapy"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "behavior",
+ "description": "🄵🅅 Specialties: Behavior Therapy"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "biochemistry",
+ "description": "🄵🅅 Specialties: Biochemistry"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "biology",
+ "description": "🄵🅅 Specialties: Biology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "blood_check",
+ "description": "🄵🅅 Specialties: Blood Test"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "body",
+ "description": "🄵🅅 Specialties: Body Therapy"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "cardiothoracic_surgery",
+ "description": "🄵🅅 Specialties: Cardiothoracic Surgery"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "clinical_pathology",
+ "description": "🄵🅅 Specialties: Clinical Pathology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "community",
+ "description": "🄵🅅 Specialties: Community & Public Health"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "depth",
+ "description": "🄵🅅 Specialties: Depth Psychology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "dermatovenereology",
+ "description": "🄵🅅 Specialties: Dermatovenereology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "diabetology",
+ "description": "🄵🅅 Specialties: Diabetology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "diagnostic_radiology",
+ "description": "🄵🅅 Specialties: Diagnostic Radiology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "emergency",
+ "description": "🄵🅅 Specialties: Emergency Medicine"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "endocrinology",
+ "description": "🄵🅅 Specialties: Endocrinology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "geriatrics",
+ "description": "🄵🅅 Specialties: Geriatric Medicine"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "hepatology",
+ "description": "🄵🅅 Specialties: Hepatology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "herbalism",
+ "description": "🄵🅅 Specialties: Herbalism"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "humanistic",
+ "description": "🄵🅅 Specialties: Humanistic Psychology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "hydrotherapy",
+ "description": "🄵🅅 Specialties: Hydrotherapy"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "hypnosis",
+ "description": "🄵🅅 Specialties: Hypnosis"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "infectious_diseases",
+ "description": "🄵🅅 Specialties: Infectious Disease"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "intensive",
+ "description": "🄵🅅 Specialties: Intensive Care"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "dental_oral_maxillo_facial_surgery",
+ "description": "🄵🅅 Specialties: Dental, Oral & Maxillofacial Surgery"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "neonatology",
+ "description": "🄵🅅 Specialties: Neonatology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "neuropsychiatry",
+ "description": "🄵🅅 Specialties: Neuropsychiatry"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "nuclear",
+ "description": "🄵🅅 Specialties: Nuclear Medicine"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "occupational",
+ "description": "🄵🅅 Specialties: Occupational Medicine"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "paediatric_surgery",
+ "description": "🄵🅅 Specialties: Pediatric Surgery"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "palliative",
+ "description": "🄵🅅 Specialties: Palliative Care"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "physiatry",
+ "description": "🄵🅅 Specialties: Physical Medicine & Rehabilitation"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "radiotherapy",
+ "description": "🄵🅅 Specialties: Radiotherapy"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "reflexology",
+ "description": "🄵🅅 Specialties: Reflexology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "reiki",
+ "description": "🄵🅅 Specialties: Reiki"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "shiatsu",
+ "description": "🄵🅅 Specialties: Shiatsu"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "stomatology",
+ "description": "🄵🅅 Specialties: Stomatology"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "systemic",
+ "description": "🄵🅅 Specialties: Systemic Therapy"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "transplant",
+ "description": "🄵🅅 Specialties: Transplant Surgery"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "tropical",
+ "description": "🄵🅅 Specialties: Tropical Medicine"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "tuina",
+ "description": "🄵🅅 Specialties: Tuī ná"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "unani",
+ "description": "🄵🅅 Specialties: Unani Medicine"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "vaccination",
+ "description": "🄵🅅 Specialties: Vaccination"
+ },
+ {
+ "key": "healthcare:speciality",
+ "value": "vascular_surgery",
+ "description": "🄵🅅 Specialties: Vascular Surgery"
+ },
+ {
+ "key": "gnis:feature_id",
+ "description": "🄵 GNIS Feature ID"
+ },
+ {
+ "key": "geyser:height",
+ "description": "🄵 Eruption Height"
+ },
+ {
+ "key": "generator:type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "generator:source",
+ "description": "🄵 Source"
+ },
+ {
+ "key": "generator:source",
+ "value": "nuclear",
+ "description": "🄵🅅 Source: Nuclear Power"
+ },
+ {
+ "key": "generator:source",
+ "value": "tidal",
+ "description": "🄵🅅 Source: Tidal Power"
+ },
+ {
+ "key": "generator:source",
+ "value": "wave",
+ "description": "🄵🅅 Source: Wave Power"
+ },
+ {
+ "key": "generator:source",
+ "value": "geothermal",
+ "description": "🄵🅅 Source: Geothermal Energy"
+ },
+ {
+ "key": "generator:source",
+ "value": "solar",
+ "description": "🄵🅅 Source: Solar Radiation"
+ },
+ {
+ "key": "generator:source",
+ "value": "coal",
+ "description": "🄵🅅 Source: Coal"
+ },
+ {
+ "key": "generator:source",
+ "value": "gas",
+ "description": "🄵🅅 Source: Natural Gas"
+ },
+ {
+ "key": "generator:source",
+ "value": "biomass",
+ "description": "🄵🅅 Source: Plant Matter"
+ },
+ {
+ "key": "generator:source",
+ "value": "biofuel",
+ "description": "🄵🅅 Source: Plant Based Fuels"
+ },
+ {
+ "key": "generator:source",
+ "value": "biogas",
+ "description": "🄵🅅 Source: Biogas"
+ },
+ {
+ "key": "generator:source",
+ "value": "oil",
+ "description": "🄵🅅 Source: Oil"
+ },
+ {
+ "key": "generator:source",
+ "value": "diesel",
+ "description": "🄵🅅 Source: Diesel"
+ },
+ {
+ "key": "generator:source",
+ "value": "gasoline",
+ "description": "🄵🅅 Source: Gasoline"
+ },
+ {
+ "key": "generator:source",
+ "value": "waste",
+ "description": "🄵🅅 Source: Waste"
+ },
+ {
+ "key": "generator:source",
+ "value": "battery",
+ "description": "🄵🅅 Source: Battery"
+ },
+ {
+ "key": "generator:method",
+ "description": "🄵 Method"
+ },
+ {
+ "key": "generator:method",
+ "value": "fusion",
+ "description": "🄵🅅 Method: Fusion"
+ },
+ {
+ "key": "generator:method",
+ "value": "wind_turbine",
+ "description": "🄵🅅 Method: Wind Turbine"
+ },
+ {
+ "key": "generator:method",
+ "value": "water-storage",
+ "description": "🄵🅅 Method: Reservoir"
+ },
+ {
+ "key": "generator:method",
+ "value": "water-pumped-storage",
+ "description": "🄵🅅 Method: Pumped-Storage"
+ },
+ {
+ "key": "generator:method",
+ "value": "run-of-the-river",
+ "description": "🄵🅅 Method: Run-of-the-River"
+ },
+ {
+ "key": "generator:method",
+ "value": "barrage",
+ "description": "🄵🅅 Method: Tidal Barrage"
+ },
+ {
+ "key": "generator:method",
+ "value": "stream",
+ "description": "🄵🅅 Method: Tidal Stream"
+ },
+ {
+ "key": "generator:method",
+ "value": "thermal",
+ "description": "🄵🅅 Method: Solar Thermal"
+ },
+ {
+ "key": "generator:method",
+ "value": "combustion",
+ "description": "🄵🅅 Method: Combustion"
+ },
+ {
+ "key": "generator:method",
+ "value": "gasification",
+ "description": "🄵🅅 Method: Gasification"
+ },
+ {
+ "key": "generator:method",
+ "value": "anaerobic_digestion",
+ "description": "🄵🅅 Method: Anaerobic Digestion"
+ },
+ {
+ "key": "generator:output:electricity",
+ "description": "🄵 Power Output"
+ },
+ {
+ "key": "garden:type",
+ "description": "🄵 Garden Type"
+ },
+ {
+ "key": "fuel:",
+ "description": "🄵 Fuel Types"
+ },
+ {
+ "key": "fuel:diesel",
+ "description": "🄵🅅 Fuel Types: Diesel"
+ },
+ {
+ "key": "fuel:GTL_diesel",
+ "description": "🄵🅅 Fuel Types: GTL Diesel"
+ },
+ {
+ "key": "fuel:HGV_diesel",
+ "description": "🄵🅅 Fuel Types: Truck Diesel"
+ },
+ {
+ "key": "fuel:biodiesel",
+ "description": "🄵🅅 Fuel Types: Biodiesel"
+ },
+ {
+ "key": "fuel:octane_80",
+ "description": "🄵🅅 Fuel Types: Gasoline (80 Octane)"
+ },
+ {
+ "key": "fuel:octane_85",
+ "description": "🄵🅅 Fuel Types: Gasoline (85 Octane)"
+ },
+ {
+ "key": "fuel:octane_87",
+ "description": "🄵🅅 Fuel Types: Gasoline (87 Octane)"
+ },
+ {
+ "key": "fuel:octane_88",
+ "description": "🄵🅅 Fuel Types: Gasoline (88 Octane)"
+ },
+ {
+ "key": "fuel:octane_89",
+ "description": "🄵🅅 Fuel Types: Gasoline (89 Octane)"
+ },
+ {
+ "key": "fuel:octane_90",
+ "description": "🄵🅅 Fuel Types: Gasoline (90 Octane)"
+ },
+ {
+ "key": "fuel:octane_91",
+ "description": "🄵🅅 Fuel Types: Gasoline (91 Octane)"
+ },
+ {
+ "key": "fuel:octane_92",
+ "description": "🄵🅅 Fuel Types: Gasoline (92 Octane)"
+ },
+ {
+ "key": "fuel:octane_93",
+ "description": "🄵🅅 Fuel Types: Gasoline (93 Octane)"
+ },
+ {
+ "key": "fuel:octane_95",
+ "description": "🄵🅅 Fuel Types: Gasoline (95 Octane)"
+ },
+ {
+ "key": "fuel:octane_97",
+ "description": "🄵🅅 Fuel Types: Gasoline (97 Octane)"
+ },
+ {
+ "key": "fuel:octane_98",
+ "description": "🄵🅅 Fuel Types: Gasoline (98 Octane)"
+ },
+ {
+ "key": "fuel:octane_100",
+ "description": "🄵🅅 Fuel Types: Gasoline (100 Octane)"
+ },
+ {
+ "key": "fuel:e5",
+ "description": "🄵🅅 Fuel Types: E5 Gasoline"
+ },
+ {
+ "key": "fuel:e10",
+ "description": "🄵🅅 Fuel Types: E10 Gasoline"
+ },
+ {
+ "key": "fuel:e85",
+ "description": "🄵🅅 Fuel Types: E85 Gasoline"
+ },
+ {
+ "key": "fuel:lpg",
+ "description": "🄵🅅 Fuel Types: Liquefied Petroleum Gas (LPG)"
+ },
+ {
+ "key": "fuel:lng",
+ "description": "🄵🅅 Fuel Types: Liquefied Natural Gas (LNG)"
+ },
+ {
+ "key": "fuel:cng",
+ "description": "🄵🅅 Fuel Types: Compressed Natural Gas (CNG)"
+ },
+ {
+ "key": "fuel:propane",
+ "description": "🄵🅅 Fuel Types: Propane"
+ },
+ {
+ "key": "fuel:LH2",
+ "description": "🄵🅅 Fuel Types: Liquid Hydrogen"
+ },
+ {
+ "key": "fuel:h70",
+ "description": "🄵🅅 Fuel Types: Gaseous Hydrogen (700 bar)"
+ },
+ {
+ "key": "fuel:adblue",
+ "description": "🄵🅅 Fuel Types: AdBlue / AUS 32"
+ },
+ {
+ "key": "fuel:adblue:canister",
+ "description": "🄵🅅 Fuel Types: AdBlue / AUS 32 (sold in canisters)"
+ },
+ {
+ "key": "flag:wikidata",
+ "description": "🄵 Flag Wikidata"
+ },
+ {
+ "key": "flag:wikipedia",
+ "description": "🄵 Flag Wikidata"
+ },
+ {
+ "key": "flag:type",
+ "description": "🄵 Flag Type"
+ },
+ {
+ "key": "flag:name",
+ "description": "🄵 Flag Name"
+ },
+ {
+ "key": "fire_hydrant:type",
+ "description": "🄵 Shape"
+ },
+ {
+ "key": "fire_hydrant:type",
+ "value": "wall",
+ "description": "🄵🅅 Shape: Wall"
+ },
+ {
+ "key": "fire_hydrant:type",
+ "value": "pipe",
+ "description": "🄵🅅 Shape: Capped Pipe"
+ },
+ {
+ "key": "fire_hydrant:pressure",
+ "description": "🄵 Pressure (bar)"
+ },
+ {
+ "key": "fire_hydrant:position",
+ "description": "🄵 Position"
+ },
+ {
+ "key": "fire_hydrant:position",
+ "value": "green",
+ "description": "🄵🅅 Position: Green/Grass"
+ },
+ {
+ "key": "fire_hydrant:position",
+ "value": "lane",
+ "description": "🄵🅅 Position: Road Lane"
+ },
+ {
+ "key": "fire_hydrant:position",
+ "value": "sidewalk",
+ "description": "🄵🅅 Position: Sidewalk"
+ },
+ {
+ "key": "fire_hydrant:position",
+ "value": "parking_lot",
+ "description": "🄵🅅 Position: Parking Lot"
+ },
+ {
+ "key": "fire_hydrant:diameter",
+ "description": "🄵 Diameter (mm, in, or letters)"
+ },
+ {
+ "key": "fhrs:id",
+ "description": "🄵 FHRS ID"
+ },
+ {
+ "key": "door:width",
+ "description": "🄵 Door Width (Meters)"
+ },
+ {
+ "key": "door:height",
+ "description": "🄵 Door Height (Meters)"
+ },
+ {
+ "key": "dock:width",
+ "description": "🄵 Dock Width (Meters)"
+ },
+ {
+ "key": "dock:height",
+ "description": "🄵 Dock Height (Meters)"
+ },
+ {
+ "key": "diplomatic:services:",
+ "description": "🄵 Services"
+ },
+ {
+ "key": "destination:symbol",
+ "description": "🄵 Destination Symbols"
+ },
+ {
+ "key": "destination:ref",
+ "description": "🄵 Destination Road Numbers"
+ },
+ {
+ "key": "trolley:deposit",
+ "description": "🄵 Deposit"
+ },
+ {
+ "key": "defibrillator:location",
+ "description": "🄵 Location Description"
+ },
+ {
+ "key": "dance:teaching",
+ "description": "🄵 Offers Dance Lessons"
+ },
+ {
+ "key": "dance:style",
+ "description": "🄵 Dance Styles"
+ },
+ {
+ "key": "cycle_barrier:installation",
+ "description": "🄵 Installation"
+ },
+ {
+ "key": "cycle_barrier:installation",
+ "value": "fixed",
+ "description": "🄵🅅 Installation: Fixed"
+ },
+ {
+ "key": "cycle_barrier:installation",
+ "value": "openable",
+ "description": "🄵🅅 Installation: Openable"
+ },
+ {
+ "key": "cycle_barrier:installation",
+ "value": "removable",
+ "description": "🄵🅅 Installation: Removable"
+ },
+ {
+ "key": "crossing:markings",
+ "description": "🄵 Crossing Markings"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "zebra",
+ "description": "🄵🅅 Crossing Markings: Longitudinal Bars"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "dots",
+ "description": "🄵🅅 Crossing Markings: Dotted Transverse Lines"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "surface",
+ "description": "🄵🅅 Crossing Markings: Surface Treatment Only"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "yes",
+ "description": "🄵🅅 Crossing Markings: Marked Somehow"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "no",
+ "description": "🄵🅅 Crossing Markings: Unmarked"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "dashes",
+ "description": "🄵🅅 Crossing Markings: Dashed Transverse Lines"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "lines",
+ "description": "🄵🅅 Crossing Markings: Transverse Lines"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "ladder",
+ "description": "🄵🅅 Crossing Markings: Ladder With Longitudinal Bars"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "ladder:skewed",
+ "description": "🄵🅅 Crossing Markings: Ladder With Diagonal Bars"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "pictograms",
+ "description": "🄵🅅 Crossing Markings: Painted Pictograms"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "lines:paired",
+ "description": "🄵🅅 Crossing Markings: Double Transverse Lines"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "zebra:double",
+ "description": "🄵🅅 Crossing Markings: Triple-Four"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "zebra:paired",
+ "description": "🄵🅅 Crossing Markings: Paired Longitudinal Bars"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "zebra:bicolour",
+ "description": "🄵🅅 Crossing Markings: Longitudinal Bars With Alternating Colors"
+ },
+ {
+ "key": "crossing:markings",
+ "value": "ladder:paired",
+ "description": "🄵🅅 Crossing Markings: Ladder With Paired Longitudinal Bars"
+ },
+ {
+ "key": "crossing:light",
+ "description": "🄵 Lights"
+ },
+ {
+ "key": "crossing:island",
+ "description": "🄵 Refuge Island"
+ },
+ {
+ "key": "crossing:bell",
+ "description": "🄵 Bell"
+ },
+ {
+ "key": "crossing:barrier",
+ "description": "🄵 Barrier Arm"
+ },
+ {
+ "key": "crossing:barrier",
+ "value": "full",
+ "description": "🄵🅅 Barrier Arm: Full"
+ },
+ {
+ "key": "crossing:barrier",
+ "value": "double_half",
+ "description": "🄵🅅 Barrier Arm: Double Half"
+ },
+ {
+ "key": "crossing:barrier",
+ "value": "half",
+ "description": "🄵🅅 Barrier Arm: Half"
+ },
+ {
+ "key": "crossing:barrier",
+ "value": "no",
+ "description": "🄵🅅 Barrier Arm: No"
+ },
+ {
+ "key": "crossing:barrier",
+ "value": "yes",
+ "description": "🄵🅅 Barrier Arm: Yes"
+ },
+ {
+ "key": "crane:type",
+ "description": "🄵 Crane Type"
+ },
+ {
+ "key": "crane:type",
+ "value": "floor-mounted_crane",
+ "description": "🄵🅅 Crane Type: Floor-mounted Crane"
+ },
+ {
+ "key": "crane:type",
+ "value": "travel_lift",
+ "description": "🄵🅅 Crane Type: Travel Lift"
+ },
+ {
+ "key": "crane:type",
+ "value": "tower_crane",
+ "description": "🄵🅅 Crane Type: Tower Crane"
+ },
+ {
+ "key": "contact:webcam",
+ "description": "🄵 Webcam URL"
+ },
+ {
+ "key": "contact:facebook",
+ "description": "🄵 Facebook Username or URL"
+ },
+ {
+ "key": "climbing:trad",
+ "description": "🄵 Traditional climbing"
+ },
+ {
+ "key": "climbing:sport",
+ "description": "🄵 Sport climbing (bolted climbing)"
+ },
+ {
+ "key": "climbing:length",
+ "description": "🄵 Length (Meters)"
+ },
+ {
+ "key": "climbing:bolts",
+ "description": "🄵 Number of Bolts"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "description": "🄵 Grade (YDS)"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5",
+ "description": "🄵🅅 Grade (YDS): `5`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.1",
+ "description": "🄵🅅 Grade (YDS): `5.1`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.2",
+ "description": "🄵🅅 Grade (YDS): `5.2`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.3",
+ "description": "🄵🅅 Grade (YDS): `5.3`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.4",
+ "description": "🄵🅅 Grade (YDS): `5.4`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.5",
+ "description": "🄵🅅 Grade (YDS): `5.5`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.6",
+ "description": "🄵🅅 Grade (YDS): `5.6`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.7",
+ "description": "🄵🅅 Grade (YDS): `5.7`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.8",
+ "description": "🄵🅅 Grade (YDS): `5.8`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.9",
+ "description": "🄵🅅 Grade (YDS): `5.9`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.10a",
+ "description": "🄵🅅 Grade (YDS): `5.10a`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.10b",
+ "description": "🄵🅅 Grade (YDS): `5.10b`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.10c",
+ "description": "🄵🅅 Grade (YDS): `5.10c`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.10d",
+ "description": "🄵🅅 Grade (YDS): `5.10d`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.11a",
+ "description": "🄵🅅 Grade (YDS): `5.11a`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.11b",
+ "description": "🄵🅅 Grade (YDS): `5.11b`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.11c",
+ "description": "🄵🅅 Grade (YDS): `5.11c`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.11d",
+ "description": "🄵🅅 Grade (YDS): `5.11d`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.12a",
+ "description": "🄵🅅 Grade (YDS): `5.12a`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.12b",
+ "description": "🄵🅅 Grade (YDS): `5.12b`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.12c",
+ "description": "🄵🅅 Grade (YDS): `5.12c`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.12d",
+ "description": "🄵🅅 Grade (YDS): `5.12d`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.13a",
+ "description": "🄵🅅 Grade (YDS): `5.13a`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.13b",
+ "description": "🄵🅅 Grade (YDS): `5.13b`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.13c",
+ "description": "🄵🅅 Grade (YDS): `5.13c`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.13d",
+ "description": "🄵🅅 Grade (YDS): `5.13d`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.14a",
+ "description": "🄵🅅 Grade (YDS): `5.14a`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.14b",
+ "description": "🄵🅅 Grade (YDS): `5.14b`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.14c",
+ "description": "🄵🅅 Grade (YDS): `5.14c`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.14d",
+ "description": "🄵🅅 Grade (YDS): `5.14d`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.15a",
+ "description": "🄵🅅 Grade (YDS): `5.15a`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.15b",
+ "description": "🄵🅅 Grade (YDS): `5.15b`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.15c",
+ "description": "🄵🅅 Grade (YDS): `5.15c`"
+ },
+ {
+ "key": "climbing:grade:yds_class",
+ "value": "5.15d",
+ "description": "🄵🅅 Grade (YDS): `5.15d`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "description": "🄵 Grade (UIAA)"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "1-",
+ "description": "🄵🅅 Grade (UIAA): `1-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "1",
+ "description": "🄵🅅 Grade (UIAA): `1`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "1+",
+ "description": "🄵🅅 Grade (UIAA): `1+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "2-",
+ "description": "🄵🅅 Grade (UIAA): `2-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "2",
+ "description": "🄵🅅 Grade (UIAA): `2`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "2+",
+ "description": "🄵🅅 Grade (UIAA): `2+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "3-",
+ "description": "🄵🅅 Grade (UIAA): `3-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "3",
+ "description": "🄵🅅 Grade (UIAA): `3`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "3+",
+ "description": "🄵🅅 Grade (UIAA): `3+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "4-",
+ "description": "🄵🅅 Grade (UIAA): `4-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "4",
+ "description": "🄵🅅 Grade (UIAA): `4`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "4+",
+ "description": "🄵🅅 Grade (UIAA): `4+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "5-",
+ "description": "🄵🅅 Grade (UIAA): `5-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "5",
+ "description": "🄵🅅 Grade (UIAA): `5`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "5+",
+ "description": "🄵🅅 Grade (UIAA): `5+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "6-",
+ "description": "🄵🅅 Grade (UIAA): `6-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "6",
+ "description": "🄵🅅 Grade (UIAA): `6`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "6+",
+ "description": "🄵🅅 Grade (UIAA): `6+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "7-",
+ "description": "🄵🅅 Grade (UIAA): `7-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "7",
+ "description": "🄵🅅 Grade (UIAA): `7`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "7+",
+ "description": "🄵🅅 Grade (UIAA): `7+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "8-",
+ "description": "🄵🅅 Grade (UIAA): `8-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "8",
+ "description": "🄵🅅 Grade (UIAA): `8`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "8+",
+ "description": "🄵🅅 Grade (UIAA): `8+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "9-",
+ "description": "🄵🅅 Grade (UIAA): `9-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "9",
+ "description": "🄵🅅 Grade (UIAA): `9`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "9+",
+ "description": "🄵🅅 Grade (UIAA): `9+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "10-",
+ "description": "🄵🅅 Grade (UIAA): `10-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "10",
+ "description": "🄵🅅 Grade (UIAA): `10`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "10+",
+ "description": "🄵🅅 Grade (UIAA): `10+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "11-",
+ "description": "🄵🅅 Grade (UIAA): `11-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "11",
+ "description": "🄵🅅 Grade (UIAA): `11`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "11+",
+ "description": "🄵🅅 Grade (UIAA): `11+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "12-",
+ "description": "🄵🅅 Grade (UIAA): `12-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "12",
+ "description": "🄵🅅 Grade (UIAA): `12`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "12+",
+ "description": "🄵🅅 Grade (UIAA): `12+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "13-",
+ "description": "🄵🅅 Grade (UIAA): `13-`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "13",
+ "description": "🄵🅅 Grade (UIAA): `13`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "13+",
+ "description": "🄵🅅 Grade (UIAA): `13+`"
+ },
+ {
+ "key": "climbing:grade:uiaa",
+ "value": "14-",
+ "description": "🄵🅅 Grade (UIAA): `14-`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "description": "🄵 Grade (Saxon)"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "I",
+ "description": "🄵🅅 Grade (Saxon): `I`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "II",
+ "description": "🄵🅅 Grade (Saxon): `II`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "III",
+ "description": "🄵🅅 Grade (Saxon): `III`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "IV",
+ "description": "🄵🅅 Grade (Saxon): `IV`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "V",
+ "description": "🄵🅅 Grade (Saxon): `V`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "VI",
+ "description": "🄵🅅 Grade (Saxon): `VI`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "VIIa",
+ "description": "🄵🅅 Grade (Saxon): `VIIa`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "VIIb",
+ "description": "🄵🅅 Grade (Saxon): `VIIb`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "VII",
+ "description": "🄵🅅 Grade (Saxon): `VII`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "VIIc",
+ "description": "🄵🅅 Grade (Saxon): `VIIc`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "VIIIa",
+ "description": "🄵🅅 Grade (Saxon): `VIIIa`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "VIIIb",
+ "description": "🄵🅅 Grade (Saxon): `VIIIb`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "VIIIc",
+ "description": "🄵🅅 Grade (Saxon): `VIIIc`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "IXa",
+ "description": "🄵🅅 Grade (Saxon): `IXa`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "IXb",
+ "description": "🄵🅅 Grade (Saxon): `IXb`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "IXc",
+ "description": "🄵🅅 Grade (Saxon): `IXc`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "Xa",
+ "description": "🄵🅅 Grade (Saxon): `Xa`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "Xb",
+ "description": "🄵🅅 Grade (Saxon): `Xb`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "Xc",
+ "description": "🄵🅅 Grade (Saxon): `Xc`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "XIa",
+ "description": "🄵🅅 Grade (Saxon): `XIa`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "XIb",
+ "description": "🄵🅅 Grade (Saxon): `XIb`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "XIc",
+ "description": "🄵🅅 Grade (Saxon): `XIc`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "XIIa",
+ "description": "🄵🅅 Grade (Saxon): `XIIa`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "XIIb",
+ "description": "🄵🅅 Grade (Saxon): `XIIb`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "XIIc",
+ "description": "🄵🅅 Grade (Saxon): `XIIc`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "XIIIa",
+ "description": "🄵🅅 Grade (Saxon): `XIIIa`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "XIIIb",
+ "description": "🄵🅅 Grade (Saxon): `XIIIb`"
+ },
+ {
+ "key": "climbing:grade:saxon",
+ "value": "XIIIc",
+ "description": "🄵🅅 Grade (Saxon): `XIIIc`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "description": "🄵 Grade (French)"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "1",
+ "description": "🄵🅅 Grade (French): `1`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "2",
+ "description": "🄵🅅 Grade (French): `2`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "3-",
+ "description": "🄵🅅 Grade (French): `3-`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "3",
+ "description": "🄵🅅 Grade (French): `3`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "3+",
+ "description": "🄵🅅 Grade (French): `3+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "4a",
+ "description": "🄵🅅 Grade (French): `4a`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "4b",
+ "description": "🄵🅅 Grade (French): `4b`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "4c",
+ "description": "🄵🅅 Grade (French): `4c`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "5a",
+ "description": "🄵🅅 Grade (French): `5a`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "5b",
+ "description": "🄵🅅 Grade (French): `5b`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "5c",
+ "description": "🄵🅅 Grade (French): `5c`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "5c+",
+ "description": "🄵🅅 Grade (French): `5c+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "6a",
+ "description": "🄵🅅 Grade (French): `6a`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "6a+",
+ "description": "🄵🅅 Grade (French): `6a+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "6b",
+ "description": "🄵🅅 Grade (French): `6b`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "6b+",
+ "description": "🄵🅅 Grade (French): `6b+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "6c",
+ "description": "🄵🅅 Grade (French): `6c`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "6c+",
+ "description": "🄵🅅 Grade (French): `6c+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "7a",
+ "description": "🄵🅅 Grade (French): `7a`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "7a+",
+ "description": "🄵🅅 Grade (French): `7a+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "7b",
+ "description": "🄵🅅 Grade (French): `7b`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "7b+",
+ "description": "🄵🅅 Grade (French): `7b+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "7c",
+ "description": "🄵🅅 Grade (French): `7c`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "7c+",
+ "description": "🄵🅅 Grade (French): `7c+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "8a",
+ "description": "🄵🅅 Grade (French): `8a`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "8a+",
+ "description": "🄵🅅 Grade (French): `8a+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "8b",
+ "description": "🄵🅅 Grade (French): `8b`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "8b+",
+ "description": "🄵🅅 Grade (French): `8b+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "8c",
+ "description": "🄵🅅 Grade (French): `8c`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "8c+",
+ "description": "🄵🅅 Grade (French): `8c+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "9a",
+ "description": "🄵🅅 Grade (French): `9a`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "9a+",
+ "description": "🄵🅅 Grade (French): `9a+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "9b",
+ "description": "🄵🅅 Grade (French): `9b`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "9b+",
+ "description": "🄵🅅 Grade (French): `9b+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "9c",
+ "description": "🄵🅅 Grade (French): `9c`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "9c+",
+ "description": "🄵🅅 Grade (French): `9c+`"
+ },
+ {
+ "key": "climbing:grade:french",
+ "value": "10a",
+ "description": "🄵🅅 Grade (French): `10a`"
+ },
+ {
+ "key": "capacity:tents",
+ "description": "🄵 Capacity (Tents)"
+ },
+ {
+ "key": "capacity:persons",
+ "description": "🄵 Capacity (Persons)"
+ },
+ {
+ "key": "capacity:disabled",
+ "description": "🄵 Accessible Spaces"
+ },
+ {
+ "key": "capacity:caravans",
+ "description": "🄵 Capacity (Campervan / Camping Trailer)"
+ },
+ {
+ "key": "camera:type",
+ "description": "🄵 Camera Type"
+ },
+ {
+ "key": "camera:type",
+ "value": "fixed",
+ "description": "🄵🅅 Camera Type: Fixed"
+ },
+ {
+ "key": "camera:type",
+ "value": "panning",
+ "description": "🄵🅅 Camera Type: Panning"
+ },
+ {
+ "key": "camera:type",
+ "value": "dome",
+ "description": "🄵🅅 Camera Type: Dome"
+ },
+ {
+ "key": "camera:mount",
+ "description": "🄵 Camera Mount"
+ },
+ {
+ "key": "camera:direction",
+ "description": "🄵 Direction (Degrees Clockwise)"
+ },
+ {
+ "key": "building:prefabricated",
+ "description": "🄵 Prefabricated"
+ },
+ {
+ "key": "building:material",
+ "description": "🄵 Material"
+ },
+ {
+ "key": "building:levels",
+ "description": "🄵 Levels"
+ },
+ {
+ "key": "building:flats",
+ "description": "🄵 Units"
+ },
+ {
+ "key": "building:colour",
+ "description": "🄵 Façade Color"
+ },
+ {
+ "key": "building:levels:underground",
+ "description": "🄵 Underground Levels"
+ },
+ {
+ "key": "bridge:ref",
+ "description": "🄵 Bridge Number"
+ },
+ {
+ "key": "bath:type",
+ "description": "🄵 Specialty"
+ },
+ {
+ "key": "bath:type",
+ "value": "hammam",
+ "description": "🄵🅅 Specialty: Hammam"
+ },
+ {
+ "key": "bath:type",
+ "value": "hot_spring",
+ "description": "🄵🅅 Specialty: Hot Spring"
+ },
+ {
+ "key": "bath:type",
+ "value": "lake",
+ "description": "🄵🅅 Specialty: Lake"
+ },
+ {
+ "key": "bath:type",
+ "value": "onsen",
+ "description": "🄵🅅 Specialty: Onsen"
+ },
+ {
+ "key": "bath:type",
+ "value": "thermal",
+ "description": "🄵🅅 Specialty: Thermal Bath"
+ },
+ {
+ "key": "bath:sand_bath",
+ "description": "🄵 Sand Bath"
+ },
+ {
+ "key": "bath:open_air",
+ "description": "🄵 Open Air"
+ },
+ {
+ "key": "aircraft:type",
+ "description": "🄵 Type"
+ },
+ {
+ "key": "aircraft:type",
+ "value": "military",
+ "description": "🄵🅅 Type: Military"
+ },
+ {
+ "key": "aircraft:type",
+ "value": "helicopter",
+ "description": "🄵🅅 Type: Helicopter"
+ },
+ {
+ "key": "aircraft:type",
+ "value": "airliner",
+ "description": "🄵🅅 Type: Airliner"
+ },
+ {
+ "key": "aircraft:type",
+ "value": "jet",
+ "description": "🄵🅅 Type: Jet"
+ },
+ {
+ "key": "aircraft:type",
+ "value": "fixed_wing",
+ "description": "🄵🅅 Type: Fixed Wing"
+ },
+ {
+ "key": "aircraft:type",
+ "value": "cargo",
+ "description": "🄵🅅 Type: Cargo"
+ },
+ {
+ "key": "aircraft:type",
+ "value": "glider",
+ "description": "🄵🅅 Type: Glider"
+ },
+ {
+ "key": "aerialway:occupancy",
+ "description": "🄵 Occupancy"
+ },
+ {
+ "key": "aerialway:heating",
+ "description": "🄵 Heated"
+ },
+ {
+ "key": "aerialway:duration",
+ "description": "🄵 Duration (minutes)"
+ },
+ {
+ "key": "aerialway:capacity",
+ "description": "🄵 Capacity (per hour)"
+ },
+ {
+ "key": "aerialway:bubble",
+ "description": "🄵 Bubble"
+ },
+ {
+ "key": "aerialway:access",
+ "description": "🄵 Access"
+ },
+ {
+ "key": "aerialway:access",
+ "value": "entry",
+ "description": "🄵🅅 Access: Entry"
+ },
+ {
+ "key": "aerialway:access",
+ "value": "exit",
+ "description": "🄵🅅 Access: Exit"
+ },
+ {
+ "key": "aerialway:access",
+ "value": "both",
+ "description": "🄵🅅 Access: Both"
+ },
+ {
+ "key": "aerialway:summer:access",
+ "description": "🄵 Access (summer)"
+ },
+ {
+ "key": "aerialway:summer:access",
+ "value": "entry",
+ "description": "🄵🅅 Access (summer): Entry"
+ },
+ {
+ "key": "aerialway:summer:access",
+ "value": "exit",
+ "description": "🄵🅅 Access (summer): Exit"
+ },
+ {
+ "key": "aerialway:summer:access",
+ "value": "both",
+ "description": "🄵🅅 Access (summer): Both"
+ },
+ {
+ "key": "addr:interpolation",
+ "value": "all",
+ "description": "🄵🅅 Type: All"
+ },
+ {
+ "key": "addr:interpolation",
+ "value": "even",
+ "description": "🄵🅅 Type: Even"
+ },
+ {
+ "key": "addr:interpolation",
+ "value": "odd",
+ "description": "🄵🅅 Type: Odd"
+ },
+ {
+ "key": "addr:interpolation",
+ "value": "alphabetic",
+ "description": "🄵🅅 Type: Alphabetic"
},
{
"key": "aerialway",
@@ -20123,11 +24728,6 @@
"value": "community_center",
"description": "🄳 (deprecated tag) ➜ amenity=community_centre"
},
- {
- "key": "amenity",
- "value": "dancing_school",
- "description": "🄳 (deprecated tag) ➜ leisure=dance + dance:teaching=yes"
- },
{
"key": "amenity",
"value": "dog_bin",
@@ -20183,6 +24783,16 @@
"value": "kiosk",
"description": "🄳 (deprecated tag) ➜ shop=kiosk"
},
+ {
+ "key": "amenity",
+ "value": "lifeboat_station",
+ "description": "🄳 (deprecated tag) ➜ emergency=water_rescue"
+ },
+ {
+ "key": "amenity",
+ "value": "lockers",
+ "description": "🄳 (deprecated tag) ➜ amenity=locker"
+ },
{
"key": "amenity",
"value": "notice_board",
@@ -20350,11 +24960,6 @@
"value": "comercial",
"description": "🄳 (deprecated tag) ➜ building=commercial"
},
- {
- "key": "building",
- "value": "constraction",
- "description": "🄳 (deprecated tag) ➜ building=construction"
- },
{
"key": "building",
"value": "convenience",
@@ -20450,11 +25055,6 @@
"value": "Sí",
"description": "🄳 (deprecated tag) ➜ building=yes"
},
- {
- "key": "building",
- "value": "under constraction",
- "description": "🄳 (deprecated tag) ➜ building=construction"
- },
{
"key": "building",
"value": "under construction",
@@ -20551,6 +25151,16 @@
"value": "traffic_lights",
"description": "🄳 (deprecated tag) ➜ crossing=traffic_signals"
},
+ {
+ "key": "cuisine",
+ "value": "barbeque",
+ "description": "🄳 (deprecated tag) ➜ cuisine=barbecue"
+ },
+ {
+ "key": "cuisine",
+ "value": "bbq",
+ "description": "🄳 (deprecated tag) ➜ cuisine=barbecue"
+ },
{
"key": "cuisine",
"value": "gluten-free",
@@ -20659,6 +25269,11 @@
"key": "disabled_spaces",
"description": "🄳 (deprecated tag) ➜ capacity:disabled=*"
},
+ {
+ "key": "door",
+ "value": "loadingdock",
+ "description": "🄳 (deprecated tag) ➜ amenity=loading_dock"
+ },
{
"key": "drinkable",
"description": "🄳 (deprecated tag) ➜ drinking_water=*"
@@ -20683,6 +25298,56 @@
"value": "embassy",
"description": "🄳 (deprecated tag) ➜ embassy=yes"
},
+ {
+ "key": "emergency",
+ "value": "dry_riser_inlet",
+ "description": "🄳 (deprecated tag) ➜ emergency=fire_service_inlet + fire_mains=dry"
+ },
+ {
+ "key": "emergency",
+ "value": "sprinkler_connection",
+ "description": "🄳 (deprecated tag) ➜ emergency=fire_service_inlet + fire_sprinkler=yes"
+ },
+ {
+ "key": "emergency",
+ "value": "lifeguard_base",
+ "description": "🄳 (deprecated tag) ➜ emergency=lifeguard + lifeguard=base"
+ },
+ {
+ "key": "emergency",
+ "value": "lifeguard_platform",
+ "description": "🄳 (deprecated tag) ➜ emergency=lifeguard + lifeguard=tower"
+ },
+ {
+ "key": "emergency",
+ "value": "lifeguard_tower",
+ "description": "🄳 (deprecated tag) ➜ emergency=lifeguard + lifeguard=tower"
+ },
+ {
+ "key": "emergency",
+ "value": "water_rescue_station",
+ "description": "🄳 (deprecated tag) ➜ emergency=water_rescue"
+ },
+ {
+ "key": "emergency",
+ "value": "lifeboat_station",
+ "description": "🄳 (deprecated tag) ➜ emergency=water_rescue"
+ },
+ {
+ "key": "emergency",
+ "value": "ses_station",
+ "description": "🄳 (deprecated tag) ➜ emergency=disaster_response"
+ },
+ {
+ "key": "emergency",
+ "value": "marine_rescue",
+ "description": "🄳 (deprecated tag) ➜ emergency=water_rescue"
+ },
+ {
+ "key": "emergency_service",
+ "value": "air",
+ "description": "🄳 (deprecated tag) ➜ emergency=air_rescue_service"
+ },
{
"key": "entrance",
"value": "emergency_exit",
@@ -20766,6 +25431,11 @@
"value": "both",
"description": "🄳 (deprecated tag) ➜ sidewalk=both"
},
+ {
+ "key": "sidewalk",
+ "value": "none",
+ "description": "🄳 (deprecated tag) ➜ sidewalk=no"
+ },
{
"key": "footway",
"value": "left",
@@ -20851,11 +25521,6 @@
"value": "abandoned",
"description": "🄳 (deprecated tag) ➜ abandoned:highway=*"
},
- {
- "key": "highway",
- "value": "ford",
- "description": "🄳 (deprecated tag) ➜ ford=*"
- },
{
"key": "highway",
"value": "platform",
@@ -20871,6 +25536,11 @@
"value": "unsurfaced",
"description": "🄳 (deprecated tag) ➜ highway=road + surface=unpaved"
},
+ {
+ "key": "industrial",
+ "value": "gas",
+ "description": "🄳 (deprecated tag) ➜ utility=gas"
+ },
{
"key": "information",
"value": "citymap",
@@ -21069,6 +25739,11 @@
"value": "golf_pin",
"description": "🄳 (deprecated tag) ➜ golf=pin"
},
+ {
+ "key": "leisure",
+ "value": "maze",
+ "description": "🄳 (deprecated tag) ➜ attraction=maze"
+ },
{
"key": "leisure",
"value": "recreation_ground",
@@ -21341,6 +26016,135 @@
"value": "street",
"description": "🄳 (deprecated tag) ➜ parking=lane"
},
+ {
+ "key": "parking:lane:both",
+ "value": "no",
+ "description": "🄳 (deprecated tag) ➜ parking:both=no"
+ },
+ {
+ "key": "parking:lane:both",
+ "value": "no_parking",
+ "description": "🄳 (deprecated tag) ➜ parking:both=no + parking:both:restriction=no_parking"
+ },
+ {
+ "key": "parking:lane:both",
+ "value": "no_stopping",
+ "description": "🄳 (deprecated tag) ➜ parking:both=no + parking:both:restriction=no_stopping"
+ },
+ {
+ "key": "parking:lane:both",
+ "value": "fire_lane",
+ "description": "🄳 (deprecated tag) ➜ parking:both=no + parking:both:restriction=no_stopping + parking:both:restriction:reason=fire_lane"
+ },
+ {
+ "key": "parking:lane:both",
+ "value": "separate",
+ "description": "🄳 (deprecated tag) ➜ parking:both=separate"
+ },
+ {
+ "key": "parking:lane:both",
+ "value": "diagonal",
+ "description": "🄳 (deprecated tag) ➜ parking:both=yes + parking:both:orientation=diagonal"
+ },
+ {
+ "key": "parking:lane:both",
+ "value": "parallel",
+ "description": "🄳 (deprecated tag) ➜ parking:both=yes + parking:both:orientation=parallel"
+ },
+ {
+ "key": "parking:lane:both",
+ "value": "perpendicular",
+ "description": "🄳 (deprecated tag) ➜ parking:both=yes + parking:both:orientation=perpendicular"
+ },
+ {
+ "key": "parking:lane:both:parallel",
+ "value": "on_street",
+ "description": "🄳 (deprecated tag) ➜ parking:both=lane"
+ },
+ {
+ "key": "parking:lane:left",
+ "value": "no",
+ "description": "🄳 (deprecated tag) ➜ parking:left=no"
+ },
+ {
+ "key": "parking:lane:left",
+ "value": "no_parking",
+ "description": "🄳 (deprecated tag) ➜ parking:left=no + parking:left:restriction=no_parking"
+ },
+ {
+ "key": "parking:lane:left",
+ "value": "no_stopping",
+ "description": "🄳 (deprecated tag) ➜ parking:left=no + parking:left:restriction=no_stopping"
+ },
+ {
+ "key": "parking:lane:left",
+ "value": "separate",
+ "description": "🄳 (deprecated tag) ➜ parking:left=separate"
+ },
+ {
+ "key": "parking:lane:left",
+ "value": "diagonal",
+ "description": "🄳 (deprecated tag) ➜ parking:left=yes + parking:left:orientation=diagonal"
+ },
+ {
+ "key": "parking:lane:left",
+ "value": "parallel",
+ "description": "🄳 (deprecated tag) ➜ parking:left=yes + parking:left:orientation=parallel"
+ },
+ {
+ "key": "parking:lane:left",
+ "value": "perpendicular",
+ "description": "🄳 (deprecated tag) ➜ parking:left=yes + parking:left:orientation=perpendicular"
+ },
+ {
+ "key": "parking:lane:right",
+ "value": "no",
+ "description": "🄳 (deprecated tag) ➜ parking:right=no"
+ },
+ {
+ "key": "parking:lane:right",
+ "value": "no_parking",
+ "description": "🄳 (deprecated tag) ➜ parking:right=no + parking:right:restriction=no_parking"
+ },
+ {
+ "key": "parking:lane:right",
+ "value": "no_stopping",
+ "description": "🄳 (deprecated tag) ➜ parking:right=no + parking:right:restriction=no_stopping"
+ },
+ {
+ "key": "parking:lane:right",
+ "value": "separate",
+ "description": "🄳 (deprecated tag) ➜ parking:right=separate"
+ },
+ {
+ "key": "parking:lane:right",
+ "value": "diagonal",
+ "description": "🄳 (deprecated tag) ➜ parking:right=yes + parking:right:orientation=diagonal"
+ },
+ {
+ "key": "parking:lane:right",
+ "value": "parallel",
+ "description": "🄳 (deprecated tag) ➜ parking:right=yes + parking:right:orientation=parallel"
+ },
+ {
+ "key": "parking:lane:right",
+ "value": "perpendicular",
+ "description": "🄳 (deprecated tag) ➜ parking:right=yes + parking:right:orientation=perpendicular"
+ },
+ {
+ "key": "parking:lane:right:parallel",
+ "value": "on_street",
+ "description": "🄳 (deprecated tag) ➜ parking:right=lane"
+ },
+ {
+ "key": "parking:orientation",
+ "description": "🄳 (deprecated tag) ➜ orientation=*"
+ },
+ {
+ "key": "orientation",
+ "value": "orthogonal",
+ "description": "🄳 (deprecated tag) ➜ orientation=perpendicular"
+ },
{
"key": "parking:orientation",
"value": "orthogonal",
@@ -21350,6 +26154,11 @@
"key": "place_name",
"description": "🄳 (deprecated tag) ➜ name=*"
},
+ {
+ "key": "playground:theme",
+ "value": "playground",
+ "description": "🄳 (deprecated tag)"
+ },
{
"key": "pole",
"value": "transition",
@@ -21581,18 +26390,13 @@
{
"key": "shop",
"value": "organic",
- "description": "🄳 (deprecated tag) ➜ shop=supermarket + organic=only"
+ "description": "🄳 (deprecated tag) ➜ shop=yes + organic=only"
},
{
"key": "shop",
"value": "perfume",
"description": "🄳 (deprecated tag) ➜ shop=perfumery"
},
- {
- "key": "shop",
- "value": "photo_studio",
- "description": "🄳 (deprecated tag) ➜ craft=photographer"
- },
{
"key": "shop",
"value": "real_estate",
@@ -21713,6 +26517,45 @@
"value": "train",
"description": "🄳 (deprecated tag) ➜ station=train + train=yes"
},
+ {
+ "key": "street_cabinet",
+ "value": "broadband",
+ "description": "🄳 (deprecated tag) ➜ utility=telecom"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "cable_tv",
+ "description": "🄳 (deprecated tag) ➜ utility=television"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "communications",
+ "description": "🄳 (deprecated tag) ➜ utility=telecom"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "gas",
+ "description": "🄳 (deprecated tag) ➜ utility=gas"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "power",
+ "description": "🄳 (deprecated tag) ➜ utility=power"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "street_lighting",
+ "description": "🄳 (deprecated tag) ➜ utility=street_lighting"
+ },
+ {
+ "key": "street_cabinet",
+ "value": "telecom",
+ "description": "🄳 (deprecated tag) ➜ utility=telecom"
+ },
+ {
+ "key": "survey_date",
+ "description": "🄳 (deprecated tag) ➜ survey:date=*"
+ },
{
"key": "sustenance",
"value": "bar",
@@ -21781,6 +26624,16 @@
"value": "bed_and_breakfast",
"description": "🄳 (deprecated tag) ➜ tourism=guest_house + guest_house=bed_and_breakfast"
},
+ {
+ "key": "tourism",
+ "value": "picnic_table",
+ "description": "🄳 (deprecated tag) ➜ leisure=picnic_table"
+ },
+ {
+ "key": "tourism",
+ "value": "resort",
+ "description": "🄳 (deprecated tag) ➜ leisure=resort"
+ },
{
"key": "tower:type",
"value": "power",
@@ -21969,6 +26822,299 @@
"key": "wood",
"value": "mixed",
"description": "🄳 (deprecated tag) ➜ leaf_cycle=mixed + leaf_type=mixed"
+ },
+ {
+ "key": "cycleway",
+ "value": "none",
+ "description": "🄳 (deprecated tag) ➜ cycleway=no"
+ },
+ {
+ "key": "cycleway:left",
+ "value": "none",
+ "description": "🄳 (deprecated tag) ➜ cycleway:left=no"
+ },
+ {
+ "key": "cycleway:right",
+ "value": "none",
+ "description": "🄳 (deprecated tag) ➜ cycleway:right=no"
+ },
+ {
+ "key": "cycleway:both",
+ "value": "none",
+ "description": "🄳 (deprecated tag) ➜ cycleway:both=no"
+ },
+ {
+ "key": "communication",
+ "value": "pole",
+ "description": "🄳 (deprecated tag) ➜ man_made=utility_pole + utility=telecom"
+ },
+ {
+ "key": "telephone",
+ "value": "pole",
+ "description": "🄳 (deprecated tag) ➜ man_made=utility_pole + utility=telecom"
+ },
+ {
+ "key": "telecom",
+ "value": "pole",
+ "description": "🄳 (deprecated tag) ➜ man_made=utility_pole + utility=telecom"
+ },
+ {
+ "key": "pstn",
+ "value": "pole",
+ "description": "🄳 (deprecated tag) ➜ man_made=utility_pole + utility=telecom"
+ },
+ {
+ "key": "memorial:type",
+ "value": "stolperstein",
+ "description": "🄳 (deprecated tag) ➜ memorial=stolperstein"
+ },
+ {
+ "key": "memorial:text",
+ "description": "🄳 (deprecated tag) ➜ inscription=*"
+ },
+ {
+ "key": "industrial",
+ "value": "brickworks",
+ "description": "🄳 (deprecated tag) ➜ industrial=brickyard"
+ },
+ {
+ "key": "cycleway",
+ "value": "opposite",
+ "description": "🄳 (deprecated tag) ➜ oneway:bicycle=no + cycleway:both=no"
+ },
+ {
+ "key": "man_made",
+ "value": "torii",
+ "description": "🄳 (deprecated tag) ➜ man_made=ceremonial_gate + ceremonial_gate=torii"
+ },
+ {
+ "key": "man_made",
+ "value": "paifang",
+ "description": "🄳 (deprecated tag) ➜ man_made=ceremonial_gate + ceremonial_gate=paifang"
+ },
+ {
+ "key": "created_by",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "odbl",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "odbl:note",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "tiger:upload_uuid",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "tiger:tlid",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "tiger:source",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "tiger:separated",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "geobase:datasetName",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "geobase:uuid",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "osmarender:nameDirection",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "osmarender:renderName",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "osmarender:renderRef",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "osmarender:rendernames",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "sub_sea:type",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:ADS",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:ARE",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:AdminArea",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:COP_label",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:DFD",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:INT",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:INT_label",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:LOC",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:LPN",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:OPC",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:PubFacAdmin",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:RAC",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:RAC_label",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:RIC",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:RIN",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:WSC",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:coordinate",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:curve_id",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:curve_type",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:filename",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:lake_id",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:lat",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:long",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "KSJ2:river_id",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "SK53_bulk:load",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "yh:LINE_NAME",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "yh:LINE_NUM",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "yh:STRUCTURE",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "yh:TOTYUMONO",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "yh:TYPE",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "yh:WIDTH",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "yh:WIDTH_RANK",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "LINZ2OSM:dataset",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "LINZ2OSM:layer",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "LINZ2OSM:source_version",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "LINZ:dataset",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "LINZ:layer",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "LINZ:source_version",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "linz2osm:objectid",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "fid",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "import_uuid",
+ "description": "🄳🄳 (discarded tag)"
+ },
+ {
+ "key": "gnis:import_uuid",
+ "description": "🄳🄳 (discarded tag)"
}
]
}
\ No newline at end of file
diff --git a/dist/taginfo.min.json b/dist/taginfo.min.json
index 3a49238d..d9d8f3ea 100644
--- a/dist/taginfo.min.json
+++ b/dist/taginfo.min.json
@@ -1 +1 @@
-{"data_format":1,"project":{"name":"iD Tagging Schema","description":"Presets available in the iD editor, RapiD, StreetComplete, Go Map!!, Every Door, and other applications","project_url":"https://github.com/openstreetmap/id-tagging-schema/","icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@release/dist/img/logo.png","contact_name":"Martin Raifer","contact_email":"martin@raifer.tech"},"tags":[{"key":"aerialway","description":"🄿 Aerialway Feature (unsearchable), 🄵 Type","object_types":["node","way"]},{"key":"aeroway","description":"🄿 Aeroway Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport-15.svg"},{"key":"amenity","description":"🄿 Amenity (unsearchable), 🄵 Type, 🄵 Riding Stable","object_types":["node","way","area"]},{"key":"attraction","description":"🄿 Attraction (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/star-15.svg"},{"key":"boundary","description":"🄿 Boundary (unsearchable), 🄵 Type","object_types":["way"]},{"key":"building","description":"🄿 Building (unsearchable), 🄿 Building, 🄵 Building","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"},{"key":"embankment","value":"yes","description":"🄿 Embankment (unsearchable)","object_types":["way"]},{"key":"emergency","description":"🄿 Emergency Feature (unsearchable), 🄵 Type, 🄵 Emergency","object_types":["node","area"]},{"key":"ford","description":"🄿 Ford (unsearchable), 🄵 Type, 🄵 Structure","object_types":["way"]},{"key":"highway","description":"🄿 Highway Feature (unsearchable), 🄵 Type of Path, 🄵 Type","object_types":["node","way","area"]},{"key":"indoor","description":"🄿 Indoor Feature (unsearchable), 🄵 Type, 🄵 Indoor","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/room.svg"},{"key":"landuse","description":"🄿 Land Use Feature (unsearchable), 🄵 Type","object_types":["area"]},{"key":"leisure","description":"🄿 Leisure Feature (unsearchable), 🄵 Horseback Riding, 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"man_made","description":"🄿 Man-Made Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"},{"key":"natural","description":"🄿 Natural Feature (unsearchable), 🄿 Pipeline Feature (unsearchable), 🄵 Natural","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/natural-15.svg"},{"key":"place","description":"🄿 Place (unsearchable), 🄵 Type","object_types":["node","area"]},{"key":"playground","description":"🄿 Playground Equipment (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"power","description":"🄿 Power Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"},{"key":"railway","description":"🄿 Railway Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rail_profile.svg"},{"key":"seamark:type","description":"🄿 Seamark (unsearchable), 🄵 Seamark","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"},{"key":"telecom","description":"🄿 Telecom Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable.svg"},{"key":"tourism","description":"🄿 Tourism Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/attraction-15.svg"},{"key":"waterway","description":"🄿 Waterway Feature (unsearchable), 🄵 Type","object_types":["node","way","area"]},{"key":"addr:interpolation","description":"🄿 Address Interpolation (unsearchable), 🄵 Type","object_types":["way"]},{"key":"addr:*","description":"🄿 Address","object_types":["node","area"]},{"key":"advertising","value":"billboard","description":"🄿 Billboard","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/billboard.svg"},{"key":"advertising","value":"board","description":"🄿 Notice Board","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulletin_board.svg"},{"key":"advertising","value":"column","description":"🄿 Advertising Column","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"},{"key":"advertising","value":"poster_box","description":"🄿 Poster Box","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/poster_box.svg"},{"key":"advertising","value":"totem","description":"🄿 Advertising Totem","object_types":["node"]},{"key":"aerialway","value":"cable_car","description":"🄿 Cable Car","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tram.svg"},{"key":"aerialway","value":"chair_lift","description":"🄿 Chair Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chairlift.svg"},{"key":"aerialway","value":"drag_lift","description":"🄿 Drag Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/drag_lift.svg"},{"key":"aerialway","value":"gondola","description":"🄿 Gondola Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"},{"key":"aerialway","value":"goods","description":"🄿 Goods Aerialway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/goods_lift.svg"},{"key":"aerialway","value":"j-bar","description":"🄿 J-Bar Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/j_bar_lift.svg"},{"key":"aerialway","value":"magic_carpet","description":"🄿 Magic Carpet Lift","object_types":["way"]},{"key":"aerialway","value":"mixed_lift","description":"🄿 Mixed Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aerialway-15.svg"},{"key":"aerialway","value":"platter","description":"🄿 Platter Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/platter_lift.svg"},{"key":"aerialway","value":"pylon","description":"🄿 Aerialway Pylon","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/aerialway_pole.svg"},{"key":"aerialway","value":"rope_tow","description":"🄿 Rope Tow Lift","object_types":["way"]},{"key":"aerialway","value":"t-bar","description":"🄿 T-Bar Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/t_bar_lift.svg"},{"key":"aerialway","value":"zip_line","description":"🄿 Zip Line","object_types":["way"]},{"key":"aeroway","value":"aerodrome","description":"🄿 Airport","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/airport.svg"},{"key":"aeroway","value":"apron","description":"🄿 Airport Apron","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/planes.svg"},{"key":"aeroway","value":"gate","description":"🄿 Airport Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plane.svg"},{"key":"aeroway","value":"hangar","description":"🄿 Hangar","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hangar.svg"},{"key":"aeroway","value":"helipad","description":"🄿 Helipad","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport-15.svg"},{"key":"aeroway","value":"holding_position","description":"🄿 Aircraft Holding Position","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plane_taxiing.svg"},{"key":"aeroway","value":"jet_bridge","description":"🄿 Jetway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_walled.svg"},{"key":"aeroway","value":"parking_position","description":"🄿 Aircraft Parking Position","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plane_taxiing.svg"},{"key":"aeroway","value":"runway","description":"🄿 Runway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plane-departure.svg"},{"key":"aeroway","value":"spaceport","description":"🄿 Spaceport","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-space-shuttle.svg"},{"key":"aeroway","value":"taxiway","description":"🄿 Taxiway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plane_taxiing.svg"},{"key":"aeroway","value":"terminal","description":"🄿 Airport Terminal","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport-15.svg"},{"key":"aeroway","value":"windsock","description":"🄿 Windsock","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/windsock.svg"},{"key":"allotments","value":"plot","description":"🄿 Community Garden Plot","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/garden_bed.svg"},{"key":"amenity","value":"bus_station","description":"🄿 Bus Station / Terminal (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"},{"key":"amenity","value":"coworking_space","description":"🄿 Coworking Space (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial-15.svg"},{"key":"amenity","value":"embassy","description":"🄿 Embassy (unsearchable), 🄳 (deprecated tag) ➜ office=diplomatic","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"},{"key":"amenity","value":"ferry_terminal","description":"🄿 Ferry Terminal (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ferry.svg"},{"key":"amenity","value":"nursing_home","description":"🄿 Nursing Home (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair-15.svg"},{"key":"amenity","value":"recycling","description":"🄿 Recycling (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"},{"key":"amenity","value":"animal_boarding","description":"🄿 Animal Boarding Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary-15.svg"},{"key":"amenity","value":"animal_breeding","description":"🄿 Animal Breeding Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary-15.svg"},{"key":"amenity","value":"animal_shelter","description":"🄿 Animal Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary-15.svg"},{"key":"amenity","value":"arts_centre","description":"🄿 Arts Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre-15.svg"},{"key":"amenity","value":"atm","description":"🄿 ATM","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/atm2.svg"},{"key":"amenity","value":"bank","description":"🄿 Bank","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank-15.svg"},{"key":"amenity","value":"bar","description":"🄿 Bar","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bar-15.svg"},{"key":"lgbtq","value":"primary","description":"🄿 LGBTQ+ Bar, 🄿 LGBTQ+ Community Center, 🄿 LGBTQ+ Nightclub, 🄿 LGBTQ+ Pub, 🄿 LGBTQ+ Erotic Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bar-15.svg"},{"key":"amenity","value":"bbq","description":"🄿 Barbecue/Grill","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bbq-15.svg"},{"key":"amenity","value":"bench","description":"🄿 Bench","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bench.svg"},{"key":"amenity","value":"bicycle_parking","description":"🄿 Bicycle Parking","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_parked.svg"},{"key":"bicycle_parking","value":"building","description":"🄿 Bicycle Parking Garage, 🄵🅅 Type: In a Building","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_structure.svg"},{"key":"bicycle_parking","value":"lockers","description":"🄿 Bicycle Lockers, 🄵🅅 Type: Individual Lockers","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_locker.svg"},{"key":"bicycle_parking","value":"shed","description":"🄿 Bicycle Shed, 🄵🅅 Type: Closed Shed","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_shed.svg"},{"key":"amenity","value":"bicycle_rental","description":"🄿 Bicycle Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_rental.svg"},{"key":"amenity","value":"bicycle_repair_station","description":"🄿 Bicycle Repair Tool Stand","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bicycle_repair.svg"},{"key":"amenity","value":"biergarten","description":"🄿 Biergarten","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-beer.svg"},{"key":"amenity","value":"binoculars","description":"🄿 Mounted Binoculars","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/binoculars.svg"},{"key":"amenity","value":"boat_rental","description":"🄿 Boat Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_rental.svg"},{"key":"amenity","value":"boat_storage","description":"🄿 Boat Storage","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_dry_dock.svg"},{"key":"amenity","value":"bureau_de_change","description":"🄿 Currency Exchange","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"},{"key":"amenity","value":"cafe","description":"🄿 Cafe","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cafe-15.svg"},{"key":"cuisine","value":"bubble_tea","description":"🄿 Bubble Tea Cafe, 🄵🅅 Cuisines: Bubble Tea","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bubble_tea.svg"},{"key":"cuisine","value":"coffee_shop","description":"🄿 Coffeehouse, 🄵🅅 Cuisines: Coffee Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hot_drink_cup.svg"},{"key":"amenity","value":"car_pooling","description":"🄿 Car Pooling Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_pool.svg"},{"key":"amenity","value":"car_rental","description":"🄿 Car Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-rental-15.svg"},{"key":"amenity","value":"car_sharing","description":"🄿 Car Sharing Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sign_and_car.svg"},{"key":"amenity","value":"car_wash","description":"🄿 Car Wash","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_wash.svg"},{"key":"amenity","value":"casino","description":"🄿 Casino","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/casino-15.svg"},{"key":"amenity","value":"charging_station","description":"🄿 Charging Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-charging-station.svg"},{"key":"amenity","value":"childcare","description":"🄿 Nursery/Childcare","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-child-reaching.svg"},{"key":"amenity","value":"cinema","description":"🄿 Cinema","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cinema-15.svg"},{"key":"amenity","value":"clinic","description":"🄿 Clinic","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"abortion","description":"🄿 Abortion Clinic, 🄵🅅 Specialties: Abortion","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"healthcare:speciality","value":"fertility","description":"🄿 Fertility Clinic, 🄵🅅 Specialties: Fertility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"amenity","value":"clock","description":"🄿 Clock","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clock.svg"},{"key":"display","value":"sundial","description":"🄿 Sundial, 🄵🅅 Display: Sundial","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clock.svg"},{"key":"amenity","value":"college","description":"🄿 College Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/college-15.svg"},{"key":"amenity","value":"community_centre","description":"🄿 Community Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall-15.svg"},{"key":"community_centre","value":"youth_centre","description":"🄿 Youth Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall-15.svg"},{"key":"amenity","value":"compressed_air","description":"🄿 Compressed Air","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tachometer-alt.svg"},{"key":"amenity","value":"conference_centre","description":"🄿 Convention Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-tie.svg"},{"key":"amenity","value":"courthouse","description":"🄿 Courthouse","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-gavel.svg"},{"key":"amenity","value":"crematorium","description":"🄿 Crematorium","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"},{"key":"amenity","value":"dentist","description":"🄿 Dentist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dentist-15.svg"},{"key":"amenity","value":"dive_centre","description":"🄿 Dive Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/scuba_diving.svg"},{"key":"amenity","value":"doctors","description":"🄿 Doctor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"allergology","description":"🄿 Allergologist, 🄵🅅 Specialties: Allergy & Asthma","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"cardiology","description":"🄿 Cardiologist, 🄵🅅 Specialties: Cardiology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"dermatology","description":"🄿 Dermatologist, 🄵🅅 Specialties: Dermatology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"gastroenterology","description":"🄿 Gastroenterologist, 🄵🅅 Specialties: Gastroenterology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"general","description":"🄿 Primary Care Physician, 🄵🅅 Specialties: General Practice","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"gynaecology","description":"🄿 Gynecologist, 🄵🅅 Specialties: Obstetrics & Gynecology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"haematology","description":"🄿 Hematologist, 🄵🅅 Specialties: Hematology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"internal","description":"🄿 Internist, 🄵🅅 Specialties: Internal Medicine","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"nephrology","description":"🄿 Nephrologist, 🄵🅅 Specialties: Nephrology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"neurology","description":"🄿 Neurologist, 🄵🅅 Specialties: Neurology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"neurosurgery","description":"🄿 Neurosurgeon, 🄵🅅 Specialties: Neurosurgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"oncology","description":"🄿 Oncologist, 🄵🅅 Specialties: Oncology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"ophthalmology","description":"🄿 Ophthalmologist, 🄵🅅 Specialties: Ophthalmology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"orthopaedics","description":"🄿 Orthopedic Surgeon, 🄵🅅 Specialties: Orthopedic Surgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"otolaryngology","description":"🄿 Otolaryngologist, 🄵🅅 Specialties: Ear, Nose & Throat","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"paediatrics","description":"🄿 Pediatrician, 🄵🅅 Specialties: Pediatrics","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"pathology","description":"🄿 Pathologist, 🄵🅅 Specialties: Pathology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"plastic_surgery","description":"🄿 Plastic Surgeon, 🄵🅅 Specialties: Plastic Surgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"podiatry","description":"🄿 Podiatrist, 🄵🅅 Specialties: Podiatry","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"proctology","description":"🄿 Colorectal Surgeon, 🄵🅅 Specialties: Colorectal Surgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"pulmonology","description":"🄿 Pulmonologist, 🄵🅅 Specialties: Pulmonology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"radiology","description":"🄿 Radiologist, 🄵🅅 Specialties: Radiology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"rheumatology","description":"🄿 Rheumatologist, 🄵🅅 Specialties: Rheumatology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"surgery","description":"🄿 General Surgeon, 🄵🅅 Specialties: General Surgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"trauma","description":"🄿 Trauma Surgeon, 🄵🅅 Specialties: Trauma Surgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"healthcare:speciality","value":"urology","description":"🄿 Urologist, 🄵🅅 Specialties: Urology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor-15.svg"},{"key":"amenity","value":"dojo","description":"🄿 Dojo / Martial Arts Academy","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"amenity","value":"dressing_room","description":"🄿 Changing Room","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store-15.svg"},{"key":"amenity","value":"drinking_water","description":"🄿 Drinking Water","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"},{"key":"amenity","value":"driver_training","description":"🄿 Driver Training Grounds","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"},{"key":"amenity","value":"driving_school","description":"🄿 Driving School","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"},{"key":"amenity","value":"events_venue","description":"🄿 Events Venue","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-users.svg"},{"key":"amenity","value":"exhibition_centre","description":"🄿 Exposition Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-tie.svg"},{"key":"amenity","value":"fast_food","description":"🄿 Fast Food","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food-15.svg"},{"key":"cuisine","value":"ice_cream","description":"🄿 Ice Cream Fast Food (unsearchable), 🄵🅅 Cuisines: Ice Cream","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ice-cream.svg"},{"key":"cuisine","value":"burger","description":"🄿 Burger Fast Food, 🄵🅅 Cuisines: Burger","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food-15.svg"},{"key":"fast_food","value":"cafeteria","description":"🄿 Cafeteria","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"},{"key":"cuisine","value":"chicken","description":"🄿 Chicken Fast Food, 🄵🅅 Cuisines: Chicken","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-drumstick-bite.svg"},{"key":"cuisine","value":"donut","description":"🄿 Donut Fast Food, 🄵🅅 Cuisines: Donut","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/donut.svg"},{"key":"cuisine","value":"fish_and_chips","description":"🄿 Fish & Chips Fast Food","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"},{"key":"cuisine","value":"hot_dog","description":"🄿 Hot Dog Fast Food, 🄵🅅 Cuisines: Hot Dog","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hotdog.svg"},{"key":"cuisine","value":"juice","description":"🄿 Juice Fast Food, 🄵🅅 Cuisines: Juice","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/drink_cup.svg"},{"key":"cuisine","value":"kebab","description":"🄿 Kebab Fast Food, 🄵🅅 Cuisines: Kebab","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vertical_rotisserie.svg"},{"key":"cuisine","value":"mexican","description":"🄿 Mexican Fast Food, 🄿 Mexican Restaurant, 🄵🅅 Cuisines: Mexican","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pepper-hot.svg"},{"key":"cuisine","value":"pizza","description":"🄿 Pizza Fast Food, 🄿 Pizza Restaurant, 🄵🅅 Cuisines: Pizza","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-pizza-15.svg"},{"key":"cuisine","value":"sandwich","description":"🄿 Sandwich Fast Food, 🄵🅅 Cuisines: Sandwich","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sandwich.svg"},{"key":"amenity","value":"fire_station","description":"🄿 Fire Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fire-station-15.svg"},{"key":"amenity","value":"food_court","description":"🄿 Food Court","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"},{"key":"amenity","value":"fountain","description":"🄿 Fountain","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fountain.svg"},{"key":"amenity","value":"fuel","description":"🄿 Gas Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel-15.svg"},{"key":"amenity","value":"gambling","description":"🄿 Gambling Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-coins.svg"},{"key":"amenity","value":"give_box","description":"🄿 Free Box","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-box-open.svg"},{"key":"amenity","value":"grave_yard","description":"🄿 Graveyard","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"},{"key":"amenity","value":"grit_bin","description":"🄿 Grit Bin","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-box.svg"},{"key":"amenity","value":"hospital","description":"🄿 Hospital Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"amenity","value":"hunting_stand","description":"🄿 Hunting Stand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hunting_blind.svg"},{"key":"amenity","value":"ice_cream","description":"🄿 Ice Cream Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ice-cream.svg"},{"key":"amenity","value":"internet_cafe","description":"🄿 Internet Cafe","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/antenna.svg"},{"key":"amenity","value":"karaoke_box","description":"🄿 Karaoke Box","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/karaoke-15.svg"},{"key":"amenity","value":"kindergarten","description":"🄿 Preschool / Kindergarten Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"},{"key":"amenity","value":"kneipp_water_cure","description":"🄿 Kneipp Water Cure","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"amenity","value":"language_school","description":"🄿 Language School","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"},{"key":"amenity","value":"lavoir","description":"🄿 Lavoir","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/detergent_bottle.svg"},{"key":"amenity","value":"letter_box","description":"🄿 Letter Box","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/letter_box.svg"},{"key":"amenity","value":"library","description":"🄿 Library","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library-15.svg"},{"key":"amenity","value":"loading_dock","description":"🄿 Loading Dock","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-loading.svg"},{"key":"amenity","value":"lounger","description":"🄿 Lounger","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lounger.svg"},{"key":"amenity","value":"love_hotel","description":"🄿 Love Hotel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heart-15.svg"},{"key":"amenity","value":"marketplace","description":"🄿 Marketplace","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"amenity","value":"monastery","description":"🄿 Monastery Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"},{"key":"amenity","value":"money_transfer","description":"🄿 Money Transfer Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"},{"key":"amenity","value":"mortuary","description":"🄿 Morgue","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"},{"key":"amenity","value":"motorcycle_parking","description":"🄿 Motorcycle Parking","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"},{"key":"amenity","value":"motorcycle_rental","description":"🄿 Motorcycle Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/motorcycle_rental.svg"},{"key":"amenity","value":"music_school","description":"🄿 Music School","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"},{"key":"amenity","value":"nightclub","description":"🄿 Nightclub","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cocktail.svg"},{"key":"amenity","value":"parcel_locker","description":"🄿 Parcel Locker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_lockers.svg"},{"key":"amenity","value":"parking_entrance","description":"🄿 Parking Garage Entrance / Exit","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"},{"key":"amenity","value":"parking_space","description":"🄿 Parking Space","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/parking_space.svg"},{"key":"parking_space","value":"disabled","description":"🄿 Accessible Parking Space","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/accessible_space.svg"},{"key":"amenity","value":"parking","description":"🄿 Parking Lot","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_parked.svg"},{"key":"parking","value":"multi-storey","description":"🄿 Multilevel Parking Garage, 🄵🅅 Type: `multi-storey`, 🄵🅅 Type: Multilevel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_structure.svg"},{"key":"park_ride","value":"yes","description":"🄿 Park & Ride Lot","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sign_and_car.svg"},{"key":"parking","value":"street_side","description":"🄿 Street-side Parking, 🄵🅅 Type: Street-Side","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_parked.svg"},{"key":"parking","value":"underground","description":"🄿 Underground Parking, 🄵🅅 Type: `underground`, 🄵🅅 Type: Underground","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/car_structure.svg"},{"key":"amenity","value":"payment_centre","description":"🄿 Payment Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"},{"key":"amenity","value":"payment_terminal","description":"🄿 Payment Terminal","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/far-credit-card.svg"},{"key":"amenity","value":"pharmacy","description":"🄿 Pharmacy Counter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pharmacy-15.svg"},{"key":"amenity","value":"photo_booth","description":"🄿 Photo Booth","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-person-booth.svg"},{"key":"amenity","value":"place_of_worship","description":"🄿 Place of Worship","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"},{"key":"religion","value":"buddhist","description":"🄿 Buddhist Temple, 🄵🅅 Religion: Buddhist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-buddhist-15.svg"},{"key":"religion","value":"christian","description":"🄿 Christian Church, 🄵🅅 Religion: Christian","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"},{"key":"denomination","value":"jehovahs_witness","description":"🄿 Kingdom Hall of Jehovah's Witnesses","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"},{"key":"denomination","value":"la_luz_del_mundo","description":"🄿 La Luz del Mundo Temple","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"},{"key":"denomination","value":"quaker","description":"🄿 Quaker Friends Meeting House","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/quakerism.svg"},{"key":"religion","value":"hindu","description":"🄿 Hindu Temple, 🄵🅅 Religion: Hindu","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hinduism.svg"},{"key":"religion","value":"jewish","description":"🄿 Jewish Synagogue, 🄵🅅 Religion: Jewish","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-jewish-15.svg"},{"key":"religion","value":"muslim","description":"🄿 Muslim Mosque, 🄵🅅 Religion: Muslim","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-muslim-15.svg"},{"key":"religion","value":"shinto","description":"🄿 Shinto Shrine, 🄵🅅 Religion: Shinto","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shinto.svg"},{"key":"religion","value":"sikh","description":"🄿 Sikh Temple, 🄵🅅 Religion: Sikh","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sikhism.svg"},{"key":"religion","value":"taoist","description":"🄿 Taoist Temple, 🄵🅅 Religion: Taoist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/taoism.svg"},{"key":"amenity","value":"planetarium","description":"🄿 Planetarium","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/globe-15.svg"},{"key":"amenity","value":"police","description":"🄿 Police","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/police_officer.svg"},{"key":"amenity","value":"polling_station","description":"🄿 Permanent Polling Place","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vote-yea.svg"},{"key":"amenity","value":"post_box","description":"🄿 Mail Drop Box","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/post_box.svg"},{"key":"amenity","value":"post_depot","description":"🄿 Post Sorting Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mail-bulk.svg"},{"key":"amenity","value":"post_office","description":"🄿 Post Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/post-15.svg"},{"key":"amenity","value":"prep_school","description":"🄿 Test Prep / Tutoring School","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"},{"key":"amenity","value":"prison","description":"🄿 Prison Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/prison-15.svg"},{"key":"amenity","value":"pub","description":"🄿 Pub","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer-15.svg"},{"key":"theme","value":"irish","description":"🄿 Irish Pub","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer-15.svg"},{"key":"microbrewery","value":"yes","description":"🄿 Brewpub","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer-15.svg"},{"key":"amenity","value":"public_bath","description":"🄿 Public Bath","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"amenity","value":"public_bookcase","description":"🄿 Public Bookcase","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library-15.svg"},{"key":"amenity","value":"ranger_station","description":"🄿 Ranger Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ranger-station-15.svg"},{"key":"recycling_type","value":"centre","description":"🄿 Recycling Center, 🄵🅅 Type: Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"},{"key":"recycling_type","value":"container","description":"🄿 Recycling Container, 🄵🅅 Type: Container","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"},{"key":"recycling:electrical_items","value":"yes","description":"🄿 E-Waste Container","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"},{"key":"recycling:green_waste","value":"yes","description":"🄿 Green Waste Container","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling-15.svg"},{"key":"amenity","value":"refugee_site","description":"🄿 Refugee Camp","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tents.svg"},{"key":"amenity","value":"research_institute","description":"🄿 Research Institute Grounds","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flask.svg"},{"key":"amenity","value":"restaurant","description":"🄿 Restaurant","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"},{"key":"cuisine","value":"american","description":"🄿 American Restaurant, 🄵🅅 Cuisines: American","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"},{"key":"cuisine","value":"asian","description":"🄿 Asian Restaurant, 🄵🅅 Cuisines: Asian","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"},{"key":"cuisine","value":"barbeque","description":"🄿 Barbeque Restaurant","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-bbq-15.svg"},{"key":"cuisine","value":"chinese","description":"🄿 Chinese Restaurant, 🄵🅅 Cuisines: Chinese","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"},{"key":"cuisine","value":"french","description":"🄿 French Restaurant, 🄵🅅 Cuisines: French","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"},{"key":"cuisine","value":"german","description":"🄿 German Restaurant, 🄵🅅 Cuisines: German","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"},{"key":"cuisine","value":"greek","description":"🄿 Greek Restaurant, 🄵🅅 Cuisines: Greek","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"},{"key":"cuisine","value":"indian","description":"🄿 Indian Restaurant, 🄵🅅 Cuisines: Indian","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"},{"key":"cuisine","value":"italian","description":"🄿 Italian Restaurant, 🄵🅅 Cuisines: Italian","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"},{"key":"cuisine","value":"japanese","description":"🄿 Japanese Restaurant, 🄵🅅 Cuisines: Japanese","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"},{"key":"cuisine","value":"noodle","description":"🄿 Noodle Restaurant","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"},{"key":"cuisine","value":"seafood","description":"🄿 Seafood Restaurant, 🄵🅅 Cuisines: Seafood","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-seafood-15.svg"},{"key":"cuisine","value":"steak_house","description":"🄿 Steakhouse, 🄵🅅 Cuisines: Steak House","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slaughterhouse-15.svg"},{"key":"cuisine","value":"sushi","description":"🄿 Sushi Restaurant, 🄵🅅 Cuisines: Sushi","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/temaki.svg"},{"key":"cuisine","value":"thai","description":"🄿 Thai Restaurant, 🄵🅅 Cuisines: Thai","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"},{"key":"cuisine","value":"turkish","description":"🄿 Turkish Restaurant, 🄵🅅 Cuisines: Turkish","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-15.svg"},{"key":"cuisine","value":"vietnamese","description":"🄿 Vietnamese Restaurant, 🄵🅅 Cuisines: Vietnamese","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle-15.svg"},{"key":"amenity","value":"sanitary_dump_station","description":"🄿 RV Toilet Disposal","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/camper_trailer_dump.svg"},{"key":"amenity","value":"school","description":"🄿 School Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"},{"key":"amenity","value":"shelter","description":"🄿 Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"},{"key":"shelter_type","value":"gazebo","description":"🄿 Gazebo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"},{"key":"shelter_type","value":"lean_to","description":"🄿 Lean-To","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sleep_shelter.svg"},{"key":"shelter_type","value":"picnic_shelter","description":"🄿 Picnic Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/picnic_shelter.svg"},{"key":"shelter_type","value":"public_transport","description":"🄿 Transit Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/transit_shelter.svg"},{"key":"amenity","value":"shower","description":"🄿 Shower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shower.svg"},{"key":"amenity","value":"smoking_area","description":"🄿 Smoking Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-smoking.svg"},{"key":"amenity","value":"social_centre","description":"🄿 Social Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"},{"key":"amenity","value":"social_facility","description":"🄿 Social Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/social_facility.svg"},{"key":"social_facility","value":"ambulatory_care","description":"🄿 Ambulatory Care, 🄵🅅 Type: Ambulatory Care","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair-15.svg"},{"key":"social_facility","value":"food_bank","description":"🄿 Food Bank, 🄵🅅 Type: Food Bank","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/social_facility.svg"},{"key":"social_facility:for","value":"senior","description":"🄿 Elderly Group Home, 🄿 Nursing Home","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair-15.svg"},{"key":"social_facility:for","value":"homeless","description":"🄿 Homeless Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/social_facility.svg"},{"key":"amenity","value":"studio","description":"🄿 Studio","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"},{"key":"studio","value":"audio","description":"🄿 Recording Studio","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"},{"key":"studio","value":"radio","description":"🄿 Radio Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"},{"key":"studio","value":"television","description":"🄿 Television Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-video.svg"},{"key":"studio","value":"video","description":"🄿 Film Studio","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-video.svg"},{"key":"amenity","value":"taxi","description":"🄿 Taxi Stand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-taxi.svg"},{"key":"amenity","value":"telephone","description":"🄿 Telephone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-phone-alt.svg"},{"key":"amenity","value":"theatre","description":"🄿 Theater","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre-15.svg"},{"key":"theatre:type","value":"amphi","description":"🄿 Amphitheatre","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre-15.svg"},{"key":"amenity","value":"ticket_validator","description":"🄿 Ticket Validator","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"},{"key":"amenity","value":"toilets","description":"🄿 Restroom","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/toilet-15.svg"},{"key":"toilets:disposal","value":"flush","description":"🄿 Flush Toilets, 🄵🅅 Disposal: Flush","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-toilet.svg"},{"key":"toilets:disposal","value":"pitlatrine","description":"🄿 Pit Latrine, 🄵🅅 Disposal: Pit Latrine","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/latrine.svg"},{"key":"portable","value":"yes","description":"🄿 Portable Toilet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/latrine.svg"},{"key":"amenity","value":"townhall","description":"🄿 Town Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"},{"key":"townhall:type","value":"city","description":"🄿 City Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/capitol.svg"},{"key":"amenity","value":"toy_library","description":"🄿 Toy Library","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chess-knight.svg"},{"key":"amenity","value":"trolley_bay","description":"🄿 Cart Corral","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-cart.svg"},{"key":"amenity","value":"university","description":"🄿 University Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/college-15.svg"},{"key":"amenity","value":"vacuum_cleaner","description":"🄿 Vacuum Cleaning Station","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vacuum_station.svg"},{"key":"amenity","value":"vehicle_inspection","description":"🄿 Vehicle Inspection","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"},{"key":"amenity","value":"vending_machine","description":"🄿 Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"bicycle_tube","description":"🄿 Bicycle Inner Tube Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"bottle_return","description":"🄿 Bottle Return Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"bread","description":"🄿 Bread Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_bread.svg"},{"key":"vending","value":"cigarettes","description":"🄿 Cigarette Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_cigarettes.svg"},{"key":"vending","value":"coffee","description":"🄿 Coffee Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_hot_drink.svg"},{"key":"vending","value":"condoms","description":"🄿 Condom Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_love.svg"},{"key":"vending","value":"drinks","description":"🄿 Drink Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_cold_drink.svg"},{"key":"vending","value":"eggs","description":"🄿 Egg Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_eggs.svg"},{"key":"vending","value":"electronics","description":"🄿 Electronics Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"elongated_coin","description":"🄿 Flat Coin Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_flat_coin.svg"},{"key":"vending","value":"excrement_bags","description":"🄿 Excrement Bag Dispenser","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_pet_waste.svg"},{"key":"vending","value":"feminine_hygiene","description":"🄿 Feminine Hygiene Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_venus.svg"},{"key":"vending","value":"food","description":"🄿 Food Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"fuel","description":"🄿 Gas Pump","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel-15.svg"},{"key":"vending","value":"ice_cream","description":"🄿 Ice Cream Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_ice_cream.svg"},{"key":"vending","value":"ice_cubes","description":"🄿 Ice Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_ice.svg"},{"key":"vending","value":"newspapers","description":"🄿 Newspaper Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_newspaper.svg"},{"key":"vending","value":"parking_tickets","description":"🄿 Parking Ticket Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_tickets.svg"},{"key":"vending","value":"pizza","description":"🄿 Pizza Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"public_transport_tickets","description":"🄿 Transit Ticket Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_tickets.svg"},{"key":"vending","value":"stamps","description":"🄿 Postage Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_stamps.svg"},{"key":"vending","value":"sweets","description":"🄿 Snack Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vending_machine.svg"},{"key":"amenity","value":"veterinary","description":"🄿 Veterinary","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/veterinary_care.svg"},{"key":"amenity","value":"waste_basket","description":"🄿 Waste Basket","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waste-basket-15.svg"},{"key":"amenity","value":"waste_disposal","description":"🄿 Garbage Dumpster","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumpster.svg"},{"key":"amenity","value":"waste_transfer_station","description":"🄿 Waste Transfer Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-trash-restore.svg"},{"key":"waste","value":"dog_excrement","description":"🄿 Dog Excrement Bin","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waste-basket-15.svg"},{"key":"amenity","value":"water_point","description":"🄿 RV Drinking Water","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"},{"key":"amenity","value":"watering_place","description":"🄿 Animal Watering Place","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"},{"key":"amenity","value":"weighbridge","description":"🄿 Truck Scale","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-weight.svg"},{"key":"area","value":"yes","description":"🄿 Area","object_types":["area"]},{"key":"area:highway","value":"footway","description":"🄿 Footway Area","object_types":["area"]},{"key":"area:highway","description":"🄿 Road Area, 🄵 Type","object_types":["area"]},{"key":"attraction","value":"amusement_ride","description":"🄿 Amusement Ride","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park-15.svg"},{"key":"attraction","value":"animal","description":"🄿 Animal Enclosure","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/zoo-15.svg"},{"key":"attraction","value":"big_wheel","description":"🄿 Big Wheel","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park-15.svg"},{"key":"attraction","value":"bumper_car","description":"🄿 Bumper Cars","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-car-crash.svg"},{"key":"attraction","value":"bungee_jumping","description":"🄿 Bungee Jumping","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"attraction","value":"carousel","description":"🄿 Carousel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/amusement_park.svg"},{"key":"attraction","value":"dark_ride","description":"🄿 Dark Ride","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/rail-metro-15.svg"},{"key":"attraction","value":"drop_tower","description":"🄿 Drop Tower Ride","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tower.svg"},{"key":"attraction","value":"kiddie_ride","description":"🄿 Kiddie Ride","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/amusement_park.svg"},{"key":"attraction","value":"log_flume","description":"🄿 Log Flume","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ferry-15.svg"},{"key":"attraction","value":"maze","description":"🄿 Maze","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/maze.svg"},{"key":"attraction","value":"pirate_ship","description":"🄿 Pirate Ship Ride","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger-15.svg"},{"key":"attraction","value":"river_rafting","description":"🄿 River Rapids Ride","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ferry-15.svg"},{"key":"attraction","value":"roller_coaster","description":"🄿 Roller Coaster","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/roller_coaster.svg"},{"key":"attraction","value":"summer_toboggan","description":"🄿 Summer Toboggan","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sledding.svg"},{"key":"attraction","value":"swing_carousel","description":"🄿 Swing Carousel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tower.svg"},{"key":"attraction","value":"train","description":"🄿 Tourist Train","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_kids.svg"},{"key":"attraction","value":"water_slide","description":"🄿 Water Slide","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/slide.svg"},{"key":"barrier","description":"🄿 Barrier, 🄵 Barrier, 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"},{"key":"barrier","value":"ditch","description":"🄿 Trench","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trench.svg"},{"key":"barrier","value":"entrance","description":"🄿 Entrance (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"},{"key":"barrier","value":"handrail","description":"🄿 Handrail (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railing.svg"},{"key":"barrier","value":"log","description":"🄿 Fallen Tree (unsearchable)","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"},{"key":"man_made","value":"planter","description":"🄿 Planter (Barrier) (unsearchable), 🄿 Planter","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"},{"key":"barrier","value":"yes","description":"🄿 Barrier (Unspecified Type) (unsearchable)","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"},{"key":"barrier","value":"block","description":"🄿 Block","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cube.svg"},{"key":"barrier","value":"bollard","description":"🄿 Bollard Row, 🄿 Bollard","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bollard_row.svg"},{"key":"barrier","value":"border_control","description":"🄿 Border Control","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/passport_checkpoint.svg"},{"key":"barrier","value":"bump_gate","description":"🄿 Bump Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"},{"key":"barrier","value":"bus_trap","description":"🄿 Bus Trap","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"},{"key":"barrier","value":"cable_barrier","description":"🄿 Cable Barrier","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"},{"key":"barrier","value":"cattle_grid","description":"🄿 Cattle Grid","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cattle_grid.svg"},{"key":"barrier","value":"chain","description":"🄿 Chain","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rope_fence.svg"},{"key":"barrier","value":"city_wall","description":"🄿 City Wall","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"},{"key":"barrier","value":"cycle_barrier","description":"🄿 Cycle Barrier","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cycle_barrier.svg"},{"key":"barrier","value":"fence","description":"🄿 Fence","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fence-15.svg"},{"key":"fence_type","value":"railing","description":"🄿 Railing","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railing.svg"},{"key":"barrier","value":"full-height_turnstile","description":"🄿 Full-Height Turnstile","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"},{"key":"barrier","value":"gate","description":"🄿 Gate","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"},{"key":"barrier","value":"guard_rail","description":"🄿 Guard Rail","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/guard_rail.svg"},{"key":"barrier","value":"hampshire_gate","description":"🄿 Wire Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"},{"key":"barrier","value":"hedge","description":"🄿 Hedge","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hedge.svg"},{"key":"barrier","value":"height_restrictor","description":"🄿 Height Restrictor","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/height_restrictor.svg"},{"key":"barrier","value":"jersey_barrier","description":"🄿 Jersey Barrier","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"},{"key":"barrier","value":"kerb","description":"🄿 Curb","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-raised.svg"},{"key":"kerb","value":"flush","description":"🄿 Flush Curb","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-flush.svg"},{"key":"kerb","value":"lowered","description":"🄿 Lowered Curb","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-lowered.svg"},{"key":"kerb","value":"raised","description":"🄿 Raised Curb","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-raised.svg"},{"key":"kerb","value":"rolled","description":"🄿 Rolled Curb","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kerb-rolled.svg"},{"key":"barrier","value":"kissing_gate","description":"🄿 Kissing Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"},{"key":"barrier","value":"lift_gate","description":"🄿 Lift Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lift_gate.svg"},{"key":"barrier","value":"motorcycle_barrier","description":"🄿 Motorcycle Barrier","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"},{"key":"barrier","value":"retaining_wall","description":"🄿 Retaining Wall","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"},{"key":"barrier","value":"rope","description":"🄿 Rope Fence","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rope_fence.svg"},{"key":"barrier","value":"sally_port","description":"🄿 Sally Port","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dungeon.svg"},{"key":"barrier","value":"spikes","description":"🄿 Spike Strip","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spike_strip.svg"},{"key":"barrier","value":"stile","description":"🄿 Stile","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/stile_squeezer.svg"},{"key":"barrier","value":"swing_gate","description":"🄿 Swing Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"},{"key":"barrier","value":"toll_booth","description":"🄿 Toll Booth","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/toll-15.svg"},{"key":"barrier","value":"turnstile","description":"🄿 Turnstile","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/turnstile.svg"},{"key":"barrier","value":"wall","description":"🄿 Wall","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"},{"key":"wall","value":"noise_barrier","description":"🄿 Noise Barrier","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"},{"key":"barrier","value":"wicket_gate","description":"🄿 Wicket Gate","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gate.svg"},{"key":"boundary","value":"administrative","description":"🄿 Administrative Boundary","object_types":["way"]},{"key":"bridge:support","description":"🄿 Bridge Support, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"},{"key":"bridge:support","value":"pier","description":"🄿 Bridge Pier","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"},{"key":"building:part","description":"🄿 Building Part, 🄵 Building Part","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"bunker","description":"🄿 Bunker (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunker.svg"},{"key":"building","value":"entrance","description":"🄿 Entrance/Exit (unsearchable), 🄳 (deprecated tag) ➜ entrance=*","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"},{"key":"building","value":"manufacture","description":"🄿 Industrial Production Building (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"},{"key":"building","value":"outbuilding","description":"🄿 Outbuilding (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"train_station","description":"🄿 Train Station Building (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"allotment_house","description":"🄿 Allotment House","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"apartments","description":"🄿 Apartment Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"barn","description":"🄿 Barn","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/barn.svg"},{"key":"building","value":"boathouse","description":"🄿 Boathouse","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"},{"key":"building","value":"bungalow","description":"🄿 Bungalow","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"},{"key":"building","value":"cabin","description":"🄿 Cabin","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"},{"key":"building","value":"carport","description":"🄿 Carport","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/carport.svg"},{"key":"building","value":"cathedral","description":"🄿 Cathedral Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-church.svg"},{"key":"building","value":"chapel","description":"🄿 Chapel Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"},{"key":"building","value":"church","description":"🄿 Church Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-church.svg"},{"key":"building","value":"civic","description":"🄿 Civic Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"college","description":"🄿 College Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"},{"key":"building","value":"commercial","description":"🄿 Commercial Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"building","value":"construction","description":"🄿 Building Under Construction","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"cowshed","description":"🄿 Cowshed","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/barn.svg"},{"key":"building","value":"detached","description":"🄿 Detached House","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"},{"key":"building","value":"dormitory","description":"🄿 Dormitory","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"farm_auxiliary","description":"🄿 Farm Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"},{"key":"building","value":"farm","description":"🄿 Farm House","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"},{"key":"building","value":"fire_station","description":"🄿 Fire Station Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-house-fire.svg"},{"key":"building","value":"garage","description":"🄿 Garage","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"},{"key":"building","value":"garages","description":"🄿 Garages","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"},{"key":"building","value":"ger","description":"🄿 Yurt","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hut.svg"},{"key":"building","value":"grandstand","description":"🄿 Grandstand","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"greenhouse","description":"🄿 Greenhouse","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"},{"key":"building","value":"hangar","description":"🄿 Hangar Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hangar.svg"},{"key":"building","value":"hospital","description":"🄿 Hospital Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hospital-alt.svg"},{"key":"building","value":"hotel","description":"🄿 Hotel Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hotel.svg"},{"key":"building","value":"house","description":"🄿 House","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"},{"key":"building","value":"houseboat","description":"🄿 Houseboat","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/houseboat.svg"},{"key":"building","value":"hut","description":"🄿 Hut","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hut.svg"},{"key":"building","value":"industrial","description":"🄿 Industrial Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"},{"key":"building","value":"kindergarten","description":"🄿 Preschool / Kindergarten Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"},{"key":"building","value":"mosque","description":"🄿 Mosque Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mosque.svg"},{"key":"building","value":"office","description":"🄿 Office Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"building","value":"pavilion","description":"🄿 Pavilion Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"public","description":"🄿 Public Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"residential","description":"🄿 Residential Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community-15.svg"},{"key":"building","value":"retail","description":"🄿 Retail Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial-15.svg"},{"key":"building","value":"roof","description":"🄿 Roof, 🄿 Solar Panel Canopy","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"},{"key":"building","value":"ruins","description":"🄿 Building Ruins","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"},{"key":"building","value":"school","description":"🄿 School Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"},{"key":"building","value":"semidetached_house","description":"🄿 Semi-Detached House","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"},{"key":"building","value":"service","description":"🄿 Service Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"shed","description":"🄿 Shed","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"},{"key":"building","value":"stable","description":"🄿 Stable","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horse_shelter.svg"},{"key":"building","value":"stadium","description":"🄿 Stadium Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/stadium-15.svg"},{"key":"building","value":"static_caravan","description":"🄿 Static Mobile Home","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manufactured_home.svg"},{"key":"building","value":"sty","description":"🄿 Pigsty","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/barn.svg"},{"key":"building","value":"synagogue","description":"🄿 Synagogue Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-synagogue.svg"},{"key":"building","value":"temple","description":"🄿 Temple Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"},{"key":"building","value":"terrace","description":"🄿 Row Houses","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/row_houses.svg"},{"key":"building","value":"transportation","description":"🄿 Transportation Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building-15.svg"},{"key":"building","value":"university","description":"🄿 University Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"},{"key":"building","value":"warehouse","description":"🄿 Warehouse","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/warehouse-15.svg"},{"key":"cemetery","value":"grave","description":"🄿 Grave","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"},{"key":"cemetery","value":"sector","description":"🄿 Cemetery Section","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"},{"key":"club","description":"🄿 Club, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"},{"key":"club","value":"sport","description":"🄿 Sports Club","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"craft","description":"🄿 Craft, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"locksmith","description":"🄿 Locksmith (unsearchable), 🄵🅅 Type: Locksmith","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/marker-stroked-15.svg"},{"key":"craft","value":"tailor","description":"🄿 Tailor (unsearchable), 🄵🅅 Type: Tailor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/needle_and_spool.svg"},{"key":"craft","value":"agricultural_engines","description":"🄿 Agricultural Engines Mechanic, 🄵🅅 Type: Agricultural Engines Mechanic","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tools.svg"},{"key":"craft","value":"basket_maker","description":"🄿 Basket Maker, 🄵🅅 Type: Basket Maker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"},{"key":"craft","value":"beekeeper","description":"🄿 Beekeeper, 🄵🅅 Type: Beekeeper","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"},{"key":"craft","value":"blacksmith","description":"🄿 Blacksmith, 🄵🅅 Type: Blacksmith","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/anvil_and_hammer.svg"},{"key":"craft","value":"boatbuilder","description":"🄿 Boat Builder, 🄵🅅 Type: Boat Builder","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_repair.svg"},{"key":"craft","value":"bookbinder","description":"🄿 Bookbinder, 🄵🅅 Type: Bookbinder","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library-15.svg"},{"key":"craft","value":"brewery","description":"🄿 Craft Brewery, 🄵🅅 Type: Brewery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"},{"key":"craft","value":"carpenter","description":"🄿 Carpenter, 🄵🅅 Type: Carpenter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"},{"key":"craft","value":"carpet_layer","description":"🄿 Carpet Layer, 🄵🅅 Type: Carpet Layer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"caterer","description":"🄿 Caterer, 🄵🅅 Type: Caterer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/catering.svg"},{"key":"craft","value":"chimney_sweeper","description":"🄿 Chimney Sweeper, 🄵🅅 Type: Chimney Sweeper","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chimney.svg"},{"key":"craft","value":"cleaning","description":"🄿 Cleaning Service, 🄵🅅 Type: Cleaning Service","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vacuum.svg"},{"key":"craft","value":"clockmaker","description":"🄿 Clockmaker, 🄵🅅 Type: Clockmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clock.svg"},{"key":"craft","value":"confectionery","description":"🄿 Candy Maker, 🄵🅅 Type: Candy Maker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery-15.svg"},{"key":"craft","value":"distillery","description":"🄿 Distillery, 🄵🅅 Type: Distillery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"},{"key":"craft","value":"dressmaker","description":"🄿 Dressmaker, 🄵🅅 Type: Dressmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/dress.svg"},{"key":"craft","value":"electrician","description":"🄿 Electrician, 🄵🅅 Type: Electrician","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"},{"key":"craft","value":"electronics_repair","description":"🄿 Electronics Repair Shop, 🄵🅅 Type: Electronics Repair","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-screwdriver.svg"},{"key":"craft","value":"floorer","description":"🄿 Floorer, 🄵🅅 Type: Floorer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"},{"key":"craft","value":"gardener","description":"🄿 Gardener, 🄵🅅 Type: Gardener","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"},{"key":"craft","value":"glaziery","description":"🄿 Glaziery, 🄵🅅 Type: Glaziery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/window.svg"},{"key":"craft","value":"handicraft","description":"🄿 Handicraft Workspace, 🄵🅅 Type: Handicraft","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"},{"key":"craft","value":"hvac","description":"🄿 HVAC Workplace, 🄵🅅 Type: HVAC","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"insulation","description":"🄿 Insulator, 🄵🅅 Type: Insulator","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"joiner","description":"🄿 Joiner, 🄵🅅 Type: Joiner","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"},{"key":"craft","value":"key_cutter","description":"🄿 Key Cutter, 🄵🅅 Type: Key Cutter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-key.svg"},{"key":"craft","value":"metal_construction","description":"🄿 Metalworker, 🄵🅅 Type: Metalworker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"painter","description":"🄿 Painter, 🄵🅅 Type: Painter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paint-roller.svg"},{"key":"craft","value":"parquet_layer","description":"🄿 Parquet Layer, 🄵🅅 Type: Parquet Layer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"},{"key":"craft","value":"photographer","description":"🄿 Photographer, 🄵🅅 Type: Photographer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/attraction-15.svg"},{"key":"craft","value":"photographic_laboratory","description":"🄿 Photographic Laboratory, 🄵🅅 Type: Photographic Laboratory","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-film.svg"},{"key":"craft","value":"plasterer","description":"🄿 Plasterer, 🄵🅅 Type: Plasterer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"},{"key":"craft","value":"plumber","description":"🄿 Plumber, 🄵🅅 Type: Plumber","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plumber.svg"},{"key":"craft","value":"pottery","description":"🄿 Pottery Maker, 🄵🅅 Type: Pottery Maker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"},{"key":"craft","value":"rigger","description":"🄿 Rigger, 🄵🅅 Type: Rigger","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"roofer","description":"🄿 Roofer, 🄵🅅 Type: Roofer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"},{"key":"craft","value":"saddler","description":"🄿 Saddler, 🄵🅅 Type: Saddler","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"sailmaker","description":"🄿 Sailmaker, 🄵🅅 Type: Sailmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"sawmill","description":"🄿 Sawmill, 🄵🅅 Type: Sawmill","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging-15.svg"},{"key":"craft","value":"scaffolder","description":"🄿 Scaffolder, 🄵🅅 Type: Scaffolder","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/scaffold.svg"},{"key":"craft","value":"sculptor","description":"🄿 Sculptor, 🄵🅅 Type: Sculptor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"},{"key":"craft","value":"shoemaker","description":"🄿 Shoemaker, 🄵🅅 Type: Shoemaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hammer_shoe.svg"},{"key":"craft","value":"signmaker","description":"🄿 Signmaker, 🄵🅅 Type: Signmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"stonemason","description":"🄿 Stonemason, 🄵🅅 Type: Stonemason","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"},{"key":"craft","value":"tiler","description":"🄿 Tiler, 🄵🅅 Type: Tiler","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/brick_trowel.svg"},{"key":"craft","value":"tinsmith","description":"🄿 Tinsmith, 🄵🅅 Type: Tinsmith","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"upholsterer","description":"🄿 Upholsterer, 🄵🅅 Type: Upholsterer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"craft","value":"watchmaker","description":"🄿 Watchmaker, 🄵🅅 Type: Watchmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watch-15.svg"},{"key":"craft","value":"window_construction","description":"🄿 Window Construction, 🄵🅅 Type: Window Construction","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/window.svg"},{"key":"craft","value":"winery","description":"🄿 Winery, 🄵🅅 Type: Winery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/alcohol-shop-15.svg"},{"key":"cycleway","value":"asl","description":"🄿 Advanced Stop Line","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"},{"key":"demolished:building","description":"🄿 Recently Demolished Building (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-house-damage.svg"},{"key":"disc_golf","value":"basket","description":"🄿 Disc Golf Basket","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/disc_golf_basket.svg"},{"key":"disc_golf","value":"hole","description":"🄿 Disc Golf Hole","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/disc_golf_basket.svg"},{"key":"disc_golf","value":"tee","description":"🄿 Disc Golf Tee","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/disc_golf_basket.svg"},{"key":"disused:amenity","description":"🄿 Disused Amenity (unsearchable), 🄵 Type","object_types":["node","area"]},{"key":"disused:railway","description":"🄿 Disused Railway Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rail_profile.svg"},{"key":"disused:shop","description":"🄿 Disused Shop (unsearchable), 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store-alt-slash.svg"},{"key":"emergency","value":"designated","description":"🄿 Emergency Access Designated (unsearchable)","object_types":["way"]},{"key":"emergency","value":"destination","description":"🄿 Emergency Access Destination (unsearchable)","object_types":["way"]},{"key":"emergency","value":"no","description":"🄿 Emergency Access No (unsearchable)","object_types":["way"]},{"key":"emergency","value":"official","description":"🄿 Emergency Access Official (unsearchable)","object_types":["way"]},{"key":"emergency","value":"private","description":"🄿 Emergency Access Private (unsearchable)","object_types":["way"]},{"key":"emergency","value":"yes","description":"🄿 Emergency Access Yes (unsearchable)","object_types":["way"]},{"key":"emergency","value":"ambulance_station","description":"🄿 Ambulance Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ambulance.svg"},{"key":"emergency","value":"assembly_point","description":"🄿 Emergency Assembly Point","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compress-arrows-alt.svg"},{"key":"emergency","value":"defibrillator","description":"🄿 Defibrillator","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/defibrillator-15.svg"},{"key":"emergency","value":"fire_alarm_box","description":"🄿 Fire Alarm Call Box","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bell.svg"},{"key":"emergency","value":"fire_extinguisher","description":"🄿 Fire Extinguisher","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fire-extinguisher.svg"},{"key":"emergency","value":"fire_hose","description":"🄿 Fire Hose","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"},{"key":"emergency","value":"fire_hydrant","description":"🄿 Fire Hydrant","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fire_hydrant.svg"},{"key":"emergency","value":"first_aid_kit","description":"🄿 First Aid Kit","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-medkit.svg"},{"key":"emergency","value":"landing_site","description":"🄿 Emergency Landing Site","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport-15.svg"},{"key":"emergency","value":"life_ring","description":"🄿 Life Ring","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-life-ring.svg"},{"key":"emergency","value":"lifeboat_station","description":"🄿 Lifeboat Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat_tour.svg"},{"key":"emergency","value":"lifeguard","description":"🄿 Lifeguard","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-life-ring.svg"},{"key":"emergency","value":"mountain_rescue","description":"🄿 Mountain Rescue","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mountain_cross.svg"},{"key":"emergency","value":"phone","description":"🄿 Emergency Phone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/emergency-phone-15.svg"},{"key":"emergency","value":"siren","description":"🄿 Siren","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-volume-up.svg"},{"key":"man_made","value":"reservoir_covered","description":"🄿 Emergency Water Reservoir (Underground), 🄿 Covered Reservoir","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"water","value":"reservoir","description":"🄿 Emergency Water Reservoir, 🄿 Reservoir","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"man_made","value":"storage_tank","description":"🄿 Emergency Water Tank, 🄿 Storage Tank","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"},{"key":"entrance","description":"🄿 Entrance / Exit, 🄵 Type","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"},{"key":"emergency","value":"emergency_ward_entrance","description":"🄿 Emergency Room Entrance","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"entrance","value":"emergency","description":"🄿 Emergency Exit, 🄵🅅 Type: Emergency Exit","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"},{"key":"entrance","value":"main","description":"🄿 Main Entrance, 🄵🅅 Type: Main","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"},{"key":"ford","value":"yes","description":"🄿 Ford","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"golf","value":"bunker","description":"🄿 Sand Trap","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"},{"key":"golf","value":"cartpath","description":"🄿 Golf Cartpath","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_cart.svg"},{"key":"golf","value":"clubhouse","description":"🄿 Golf Clubhouse","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"},{"key":"golf","value":"driving_range","description":"🄿 Driving Range","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"},{"key":"golf","value":"fairway","description":"🄿 Fairway","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"},{"key":"golf","value":"green","description":"🄿 Putting Green","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_green.svg"},{"key":"golf","value":"hole","description":"🄿 Golf Hole","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_green.svg"},{"key":"golf","value":"lateral_water_hazard","description":"🄿 Lateral Water Hazard","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"},{"key":"golf","value":"path","description":"🄿 Golf Walking Path","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"},{"key":"golf","value":"rough","description":"🄿 Rough","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"},{"key":"golf","value":"tee","description":"🄿 Tee Box","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"},{"key":"golf","value":"water_hazard","description":"🄿 Water Hazard","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"},{"key":"healthcare","description":"🄿 Healthcare Facility, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"healthcare","value":"yes","description":"🄿 Healthcare Facility (Unspecified Type) (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"healthcare","value":"alternative","description":"🄿 Alternative Medicine","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"healthcare:speciality","value":"chiropractic","description":"🄿 Chiropractor, 🄵🅅 Specialties: Chiropractic","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"healthcare","value":"audiologist","description":"🄿 Audiologist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"healthcare","value":"birthing_centre","description":"🄿 Birthing Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"},{"key":"healthcare","value":"blood_donation","description":"🄿 Blood Donor Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/blood-bank-15.svg"},{"key":"healthcare","value":"counselling","description":"🄿 Counselling Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comments.svg"},{"key":"healthcare:speciality","value":"orthodontics","description":"🄿 Orthodontist, 🄵🅅 Specialties: Orthodontics","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-teeth.svg"},{"key":"healthcare","value":"hospice","description":"🄿 Hospice","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-procedures.svg"},{"key":"healthcare","value":"laboratory","description":"🄿 Medical Laboratory","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vial.svg"},{"key":"healthcare","value":"midwife","description":"🄿 Midwife","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"},{"key":"healthcare","value":"occupational_therapist","description":"🄿 Occupational Therapist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"healthcare","value":"optometrist","description":"🄿 Optometrist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-eye.svg"},{"key":"healthcare","value":"physiotherapist","description":"🄿 Physiotherapist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/physiotherapist.svg"},{"key":"healthcare","value":"podiatrist","description":"🄿 Podiatrist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"healthcare","value":"psychotherapist","description":"🄿 Psychotherapist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"healthcare","value":"rehabilitation","description":"🄿 Rehabilitation Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital-15.svg"},{"key":"healthcare","value":"sample_collection","description":"🄿 Sample Collection Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vial.svg"},{"key":"healthcare","value":"speech_therapist","description":"🄿 Speech Therapist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comment.svg"},{"key":"highway","value":"bus_stop","description":"🄿 Bus Stop (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"},{"key":"highway","value":"crossing","description":"🄿 Crossing (unsearchable)","object_types":["node"]},{"key":"highway","value":"bridleway","description":"🄿 Bridle Path","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"},{"key":"highway","value":"bus_guideway","description":"🄿 Bus Guideway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus_guided.svg"},{"key":"highway","value":"busway","description":"🄿 Busway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"},{"key":"highway","value":"construction","description":"🄿 Road Under Construction","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/barrier-15.svg"},{"key":"highway","value":"corridor","description":"🄿 Indoor Corridor","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_walled.svg"},{"key":"crossing","value":"marked","description":"🄿 Marked Crosswalk (unsearchable), 🄿 Marked Cycle Crossing (unsearchable), 🄿 Marked Crossing (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_crosswalk.svg"},{"key":"crossing","value":"zebra","description":"🄿 Marked Crosswalk (unsearchable), 🄿 Marked Crossing (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_crosswalk.svg"},{"key":"crossing","value":"traffic_signals","description":"🄿 Crossing With Pedestrian Signals, 🄿 Cycle Crossing With Traffic Signals, 🄵🅅 Type: Crossing With Traffic Signals","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_signals.svg"},{"key":"crossing","value":"uncontrolled","description":"🄿 Marked Crosswalk, 🄿 Marked Cycle Crossing, 🄿 Marked Crossing, 🄵🅅 Type: Only Road Markings","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_crosswalk.svg"},{"key":"crossing","value":"unmarked","description":"🄿 Unmarked Crossing, 🄿 Unmarked Cycle Crossing, 🄵🅅 Type: No Road Markings or Traffic Signals","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"highway","value":"cycleway","description":"🄿 Cycle Path","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-biking.svg"},{"key":"cycleway","value":"crossing","description":"🄿 Cycle Crossing (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cyclist_crosswalk.svg"},{"key":"foot","value":"designated","description":"🄿 Cycle & Foot Path, 🄿 Cycle & Foot Crossing, 🄵🅅 Allowed Access: `designated`","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian_and_cyclist.svg"},{"key":"moped","value":"designated","description":"🄿 Moped Link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"},{"key":"highway","value":"elevator","description":"🄿 Inclined Elevator, 🄿 Elevator","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/elevator.svg"},{"key":"highway","value":"emergency_access_point","description":"🄿 Emergency Access Point","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compress-arrows-alt.svg"},{"key":"highway","value":"emergency_bay","description":"🄿 Emergency Stopping Place","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"},{"key":"highway","value":"escape","description":"🄿 Runaway Truck Ramp","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-fast.svg"},{"key":"highway","value":"footway","description":"🄿 Foot Path","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"footway","value":"crossing","description":"🄿 Pedestrian Crossing (unsearchable)","object_types":["way"]},{"key":"informal","value":"yes","description":"🄿 Informal Foot Path (unsearchable), 🄿 Informal Path","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shoe-prints.svg"},{"key":"footway","value":"access_aisle","description":"🄿 Access Aisle","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/striped_zone.svg"},{"key":"conveying","description":"🄿 Moving Walkway, 🄿 Escalator, 🄵 Escalator, 🄵 Movement Direction","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"footway","value":"sidewalk","description":"🄿 Sidewalk","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"footway","value":"traffic_island","description":"🄿 Refuge Island","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"highway","value":"give_way","description":"🄿 Yield Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/yield.svg"},{"key":"highway","value":"living_street","description":"🄿 Living Street","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-living-street.svg"},{"key":"highway","value":"milestone","description":"🄿 Highway Milestone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"},{"key":"highway","value":"mini_roundabout","description":"🄿 Mini-Roundabout","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"},{"key":"highway","value":"motorway_junction","description":"🄿 Motorway Junction / Exit","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junction.svg"},{"key":"highway","value":"motorway_link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-motorway-link.svg","description":"🄿 Motorway Link"},{"key":"highway","value":"motorway","description":"🄿 Motorway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-motorway.svg"},{"key":"highway","value":"passing_place","description":"🄿 Passing Place","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"},{"key":"highway","value":"path","description":"🄿 Path, 🄵🅅 Type of Path: Cartpath","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"},{"key":"bridge","value":"boardwalk","description":"🄿 Boardwalk","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"highway","value":"pedestrian","description":"🄿 Pedestrian Area, 🄿 Pedestrian Street","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"highway","value":"primary_link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-primary-link.svg","description":"🄿 Primary Link"},{"key":"highway","value":"primary","description":"🄿 Primary Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-primary.svg"},{"key":"highway","value":"raceway","description":"🄿 Motorsport Racetrack","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speedway_oval.svg"},{"key":"sport","value":"karting","description":"🄿 Karting Racetrack, 🄵🅅 Sports: Karting","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speedway_8.svg"},{"key":"sport","value":"motocross","description":"🄿 Motocross Racetrack, 🄵🅅 Sports: Motocross","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"},{"key":"highway","value":"residential","description":"🄿 Residential Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-residential.svg"},{"key":"highway","value":"rest_area","description":"🄿 Rest Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/highway-rest-area-15.svg"},{"key":"highway","value":"road","description":"🄿 Unknown Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"},{"key":"bridge","description":"🄿 Unknown Road Bridge, 🄵 Type, 🄵 Structure","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"},{"key":"highway","value":"secondary_link","description":"🄿 Secondary Link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-secondary-link.svg"},{"key":"highway","value":"secondary","description":"🄿 Secondary Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-secondary.svg"},{"key":"highway","value":"service","description":"🄿 Paved Service Area (unsearchable), 🄿 Service Road, 🄿 Slipway (Drivable), 🄵🅅 Type of Path: Service Road","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"service","value":"alley","description":"🄿 Alley, 🄵🅅 Type: Alley","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"service","value":"drive-through","description":"🄿 Drive-Through, 🄵🅅 Type: Drive-Through","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"service","value":"driveway","description":"🄿 Driveway, 🄵🅅 Type: Driveway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"service","value":"emergency_access","description":"🄿 Emergency Access, 🄵🅅 Type: Emergency Access","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"service","value":"parking_aisle","description":"🄿 Parking Aisle, 🄵🅅 Type: Parking Aisle","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"highway","value":"services","description":"🄿 Service Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"},{"key":"highway","value":"speed_camera","description":"🄿 Speed Camera","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/security_camera.svg"},{"key":"highway","value":"speed_display","description":"🄿 Radar Speed Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"},{"key":"highway","value":"steps","description":"🄿 Steps","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-steps.svg"},{"key":"highway","value":"stop","description":"🄿 Stop Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/stop.svg"},{"key":"highway","value":"street_lamp","description":"🄿 Street Lamp","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/street_lamp_arm.svg"},{"key":"highway","value":"tertiary_link","description":"🄿 Tertiary Link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary-link.svg"},{"key":"highway","value":"tertiary","description":"🄿 Tertiary Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary.svg"},{"key":"highway","value":"toll_gantry","description":"🄿 Open Road Toll","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/toll_gantry.svg"},{"key":"highway","value":"track","description":"🄿 Track / Land-Access Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-monster.svg"},{"key":"highway","value":"traffic_mirror","description":"🄿 Traffic Mirror","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"},{"key":"highway","value":"traffic_signals","description":"🄿 Traffic Signals","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/traffic_signals.svg"},{"key":"highway","value":"trailhead","description":"🄿 Trailhead","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hiking.svg"},{"key":"highway","value":"trunk_link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-trunk-link.svg","description":"🄿 Trunk Link"},{"key":"highway","value":"trunk","description":"🄿 Trunk Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-trunk.svg"},{"key":"highway","value":"turning_circle","description":"🄿 Turning Circle","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked-15.svg"},{"key":"highway","value":"turning_loop","description":"🄿 Turning Loop (Island)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-15.svg"},{"key":"highway","value":"unclassified","description":"🄿 Minor/Unclassified Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-unclassified.svg"},{"key":"historic","description":"🄿 Historic Site, 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"},{"key":"historic","value":"archaeological_site","description":"🄿 Archaeological Site","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"},{"key":"historic","value":"boundary_stone","description":"🄿 Boundary Stone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"},{"key":"historic","value":"building","description":"🄿 Historic Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"},{"key":"historic","value":"castle","description":"🄿 Castle","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"},{"key":"castle_type","value":"fortress","description":"🄿 Historic Fortress, 🄵🅅 Type: Fortress","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"},{"key":"castle_type","value":"palace","description":"🄿 Palace, 🄵🅅 Type: Palace","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crown.svg"},{"key":"castle_type","value":"stately","description":"🄿 Château, 🄵🅅 Type: Stately Home","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crown.svg"},{"key":"historic","value":"city_gate","description":"🄿 City Gate","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"},{"key":"historic","value":"fort","description":"🄿 Historic Fort","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"},{"key":"historic","value":"manor","description":"🄿 Manor House","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"},{"key":"historic","value":"memorial","description":"🄿 Memorial","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument-15.svg"},{"key":"memorial","value":"plaque","description":"🄿 Commemorative Plaque","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/plaque.svg"},{"key":"historic","value":"monument","description":"🄿 Monument","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument-15.svg"},{"key":"historic","value":"pillory","description":"🄿 Historic Pillory","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument-15.svg"},{"key":"historic","value":"ruins","description":"🄿 Ruins","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"},{"key":"historic","value":"tomb","description":"🄿 Tomb","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"},{"key":"historic","value":"wayside_cross","description":"🄿 Wayside Cross","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"},{"key":"historic","value":"wayside_shrine","description":"🄿 Wayside Shrine","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/landmark-15.svg"},{"key":"historic","value":"wreck","description":"🄿 Shipwreck","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ruins.svg"},{"key":"indoor","value":"corridor","description":"🄿 Indoor Corridor (unsearchable), 🄿 Indoor Corridor","object_types":["way"]},{"key":"indoor","value":"area","description":"🄿 Indoor Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/room.svg"},{"key":"indoor","value":"door","description":"🄿 Indoor Door","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1-15.svg"},{"key":"elevator","value":"yes","description":"🄿 Indoor Elevator Shaft","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/elevator.svg"},{"key":"indoor","value":"room","description":"🄿 Room","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/room.svg"},{"key":"stairs","value":"yes","description":"🄿 Indoor Stairwell","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-steps.svg"},{"key":"indoor","value":"wall","description":"🄿 Indoor Wall","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"},{"key":"internet_access","value":"wlan","description":"🄿 Wi-Fi Hotspot, 🄵🅅 Internet Connection: Wifi","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-wifi.svg"},{"key":"junction","value":"yes","description":"🄿 Junction","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junction.svg"},{"key":"landuse","value":"basin","description":"🄿 Basin (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=basin","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"landuse","value":"churchyard","description":"🄿 Churchyard (unsearchable), 🄳 (deprecated tag) ➜ landuse=religious","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"},{"key":"landuse","value":"farm","description":"🄿 Farmland (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"},{"key":"landuse","value":"pond","description":"🄿 Pond (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=pond","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"landuse","value":"reservoir","description":"🄿 Reservoir (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=reservoir","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"landuse","value":"allotments","description":"🄿 Garden Allotments","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"},{"key":"landuse","value":"aquaculture","description":"🄿 Aquaculture","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aquarium-15.svg"},{"key":"landuse","value":"brownfield","description":"🄿 Brownfield","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"},{"key":"landuse","value":"cemetery","description":"🄿 Cemetery","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"},{"key":"landuse","value":"commercial","description":"🄿 Commercial Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"landuse","value":"construction","description":"🄿 Construction Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"},{"key":"landuse","value":"education","description":"🄿 Educational Campus","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/school.svg"},{"key":"landuse","value":"farmland","description":"🄿 Farmland","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"},{"key":"landuse","value":"farmyard","description":"🄿 Farmyard","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"},{"key":"landuse","value":"flowerbed","description":"🄿 Flowerbed","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"},{"key":"landuse","value":"forest","description":"🄿 Managed Forest","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-alt1-15.svg"},{"key":"landuse","value":"garages","description":"🄿 Garage Landuse","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"},{"key":"landuse","value":"grass","description":"🄿 Grass","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lawn.svg"},{"key":"landuse","value":"greenfield","description":"🄿 Greenfield","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"},{"key":"landuse","value":"greenhouse_horticulture","description":"🄿 Greenhouse Horticulture","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"},{"key":"landuse","value":"harbour","description":"🄿 Harbor","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"},{"key":"landuse","value":"industrial","description":"🄿 Industrial Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"},{"key":"industrial","value":"brewery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"},{"key":"industrial","value":"scrap_yard","description":"🄿 Scrap Yard","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junk_car.svg"},{"key":"industrial","value":"slaughterhouse","description":"🄿 Slaughterhouse","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slaughterhouse-15.svg"},{"key":"landuse","value":"landfill","description":"🄿 Landfill","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bulldozer.svg"},{"key":"landuse","value":"meadow","description":"🄿 Meadow","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"},{"key":"landuse","value":"military","description":"🄿 Military Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"},{"key":"military","value":"airfield","description":"🄿 Military Airfield","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fighter_jet.svg"},{"key":"military","value":"barracks","description":"🄿 Barracks","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/army_tent.svg"},{"key":"military","value":"base","description":"🄿 Military Base","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/anchor_medal.svg"},{"key":"military_service","value":"navy","description":"🄿 Naval Base","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/anchor_medal.svg"},{"key":"military","value":"danger_area","description":"🄿 Danger Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger-15.svg"},{"key":"military","value":"obstacle_course","description":"🄿 Military Obstacle Course","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tire_course.svg"},{"key":"military","value":"range","description":"🄿 Military Range","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bullseye.svg"},{"key":"military","value":"training_area","description":"🄿 Military Training Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"},{"key":"landuse","value":"orchard","description":"🄿 Orchard","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-15.svg"},{"key":"landuse","value":"plant_nursery","description":"🄿 Plant Nursery","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-seedling.svg"},{"key":"landuse","value":"quarry","description":"🄿 Quarry","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pick_hammer.svg"},{"key":"landuse","value":"railway","description":"🄿 Railway Corridor","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"},{"key":"landuse","value":"recreation_ground","description":"🄿 Recreation Ground","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"landuse","value":"religious","description":"🄿 Religious Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship-15.svg"},{"key":"landuse","value":"residential","description":"🄿 Residential Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community-15.svg"},{"key":"residential","value":"apartments","description":"🄿 Apartment Complex","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community-15.svg"},{"key":"residential","value":"trailer_park","description":"🄿 Mobile Home Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manufactured_home.svg"},{"key":"landuse","value":"retail","description":"🄿 Retail Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial-15.svg"},{"key":"landuse","value":"salt_pond","description":"🄿 Salt Evaporation Pond","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"},{"key":"landuse","value":"vineyard","description":"🄿 Vineyard","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/grapes.svg"},{"key":"landuse","value":"winter_sports","description":"🄿 Winter Sports Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"},{"key":"leisure","value":"adult_gaming_centre","description":"🄿 Adult Gaming Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/casino.svg"},{"key":"leisure","value":"amusement_arcade","description":"🄿 Amusement Arcade","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gaming-15.svg"},{"key":"leisure","value":"bandstand","description":"🄿 Bandstand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"},{"key":"leisure","value":"beach_resort","description":"🄿 Beach Resort","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-umbrella-beach.svg"},{"key":"leisure","value":"bird_hide","description":"🄿 Bird Hide","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/binoculars.svg"},{"key":"leisure","value":"bleachers","description":"🄿 Bleachers","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bleachers.svg"},{"key":"leisure","value":"bowling_alley","description":"🄿 Bowling Alley","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bowling.svg"},{"key":"leisure","value":"common","description":"🄿 Common","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"leisure","value":"dance","description":"🄿 Dance Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"},{"key":"dance:teaching","value":"yes","description":"🄿 Dance School","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"},{"key":"leisure","value":"disc_golf_course","description":"🄿 Disc Golf Course","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/disc_golf_basket.svg"},{"key":"leisure","value":"dog_park","description":"🄿 Dog Park","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dog-park-15.svg"},{"key":"leisure","value":"escape_game","description":"🄿 Escape Room","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-puzzle-piece.svg"},{"key":"leisure","value":"firepit","description":"🄿 Fire Pit","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/campfire.svg"},{"key":"leisure","value":"fishing","description":"🄿 Fishing Spot","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"},{"key":"leisure","value":"fitness_centre","description":"🄿 Gym / Fitness Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumbbell.svg"},{"key":"sport","value":"yoga","description":"🄿 Yoga Studio","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"leisure","value":"fitness_station","description":"🄿 Outdoor Fitness Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horizontal_bar.svg"},{"key":"fitness_station","value":"balance_beam","description":"🄿 Exercise Balance Beam","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/balance_beam.svg"},{"key":"fitness_station","value":"box","description":"🄿 Exercise Box","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"fitness_station","value":"horizontal_bar","description":"🄿 Exercise Horizontal Bar","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horizontal_bar.svg"},{"key":"fitness_station","value":"horizontal_ladder","description":"🄿 Exercise Monkey Bars","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"fitness_station","value":"hyperextension","description":"🄿 Hyperextension Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"fitness_station","value":"parallel_bars","description":"🄿 Parallel Bars","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"fitness_station","value":"push-up","description":"🄿 Push-Up Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"fitness_station","value":"rings","description":"🄿 Exercise Rings","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"fitness_station","value":"sign","description":"🄿 Exercise Instruction Sign","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"fitness_station","value":"sit-up","description":"🄿 Sit-Up Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"fitness_station","value":"stairs","description":"🄿 Exercise Stairs","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"leisure","value":"garden","description":"🄿 Garden","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"},{"key":"garden:type","value":"botanical","description":"🄿 Botanical Garden","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"},{"key":"garden:type","value":"community","description":"🄿 Community Garden","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"},{"key":"garden:type","value":"residential","description":"🄿 Residential Garden","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-15.svg"},{"key":"leisure","value":"golf_course","description":"🄿 Golf Course","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf-15.svg"},{"key":"leisure","value":"hackerspace","description":"🄿 Hackerspace","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-code.svg"},{"key":"leisure","value":"horse_riding","description":"🄿 Horseback Riding Center, 🄵🅅 Horseback Riding: Yes","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"},{"key":"leisure","value":"ice_rink","description":"🄿 Ice Rink","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skating.svg"},{"key":"leisure","value":"indoor_play","description":"🄿 Indoor Play Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/slide.svg"},{"key":"leisure","value":"marina","description":"🄿 Marina","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sailboat.svg"},{"key":"leisure","value":"miniature_golf","description":"🄿 Miniature Golf","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/golf_green.svg"},{"key":"leisure","value":"nature_reserve","description":"🄿 Nature Reserve","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-15.svg"},{"key":"leisure","value":"outdoor_seating","description":"🄿 Outdoor Seating Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"},{"key":"leisure","value":"park","description":"🄿 Park","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tree_and_bench.svg"},{"key":"leisure","value":"picnic_table","description":"🄿 Picnic Table","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"},{"key":"sport","value":"chess","description":"🄿 Chess Table, 🄿 Giant Chess Board","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chess-pawn.svg"},{"key":"leisure","value":"pitch","description":"🄿 Sport Pitch","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"sport","value":"american_football","description":"🄿 American Football Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"},{"key":"sport","value":"american_handball","description":"🄿 American Handball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wall.svg"},{"key":"sport","value":"archery","description":"🄿 Archery Range","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/archery.svg"},{"key":"sport","value":"australian_football","description":"🄿 Australian Football Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"},{"key":"sport","value":"badminton","description":"🄿 Badminton Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis-15.svg"},{"key":"sport","value":"baseball","description":"🄿 Baseball Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/baseball-15.svg"},{"key":"sport","value":"basketball","description":"🄿 Basketball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/basketball-15.svg"},{"key":"sport","value":"beachvolleyball","description":"🄿 Beach Volleyball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball-15.svg"},{"key":"sport","value":"boules","description":"🄿 Boules/Bocce Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"sport","value":"bowls","description":"🄿 Bowling Green","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"sport","value":"cricket","description":"🄿 Cricket Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cricket-15.svg"},{"key":"sport","value":"equestrian","description":"🄿 Horseback Riding Arena, 🄵🅅 Dressage Riding: Yes","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"},{"key":"sport","value":"field_hockey","description":"🄿 Field Hockey Pitch","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/field_hockey.svg"},{"key":"sport","value":"four_square","description":"🄿 Four Square Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-border-all.svg"},{"key":"sport","value":"funnel_ball","description":"🄿 Funnel Ball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"sport","value":"futsal","description":"🄿 Futsal Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/soccer-15.svg"},{"key":"sport","value":"gaga","description":"🄿 Gaga Pit","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"sport","value":"handball","description":"🄿 Team Handball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"sport","value":"horseshoes","description":"🄿 Horseshoes Pit","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horseshoes.svg"},{"key":"sport","value":"netball","description":"🄿 Netball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball-15.svg"},{"key":"sport","value":"padel","description":"🄿 Padel Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis-15.svg"},{"key":"sport","value":"paintball","description":"🄿 Paintball Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crosshairs.svg"},{"key":"sport","value":"pickleball","description":"🄿 Pickleball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis-15.svg"},{"key":"sport","value":"rugby_league","description":"🄿 Rugby League Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"},{"key":"sport","value":"rugby_union","description":"🄿 Rugby Union Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football-15.svg"},{"key":"sport","value":"shooting","description":"🄿 Shooting Range, 🄿 Shooting Range Facility","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crosshairs.svg"},{"key":"sport","value":"shuffleboard","description":"🄿 Shuffleboard Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shuffleboard.svg"},{"key":"sport","value":"skateboard","description":"🄿 Skate Park","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/skateboard-15.svg"},{"key":"sport","value":"soccer","description":"🄿 Soccer Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/soccer-15.svg"},{"key":"sport","value":"softball","description":"🄿 Softball Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/baseball-15.svg"},{"key":"sport","value":"table_soccer","description":"🄿 Foosball Table, 🄵🅅 Sports: Foosball","object_types":["area","node"]},{"key":"sport","value":"table_tennis","description":"🄿 Ping Pong Table","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-table-tennis.svg"},{"key":"sport","value":"tennis","description":"🄿 Tennis Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis-15.svg"},{"key":"sport","value":"tetherball","description":"🄿 Tetherball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"sport","value":"volleyball","description":"🄿 Volleyball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball-15.svg"},{"key":"leisure","value":"playground","description":"🄿 Playground","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"indoor","value":"yes","description":"🄿 Indoor Playground","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"leisure","value":"resort","description":"🄿 Resort","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"},{"key":"leisure","value":"sauna","description":"🄿 Sauna","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-thermometer-three-quarters.svg"},{"key":"leisure","value":"slipway","description":"🄿 Slipway","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slipway-15.svg"},{"key":"leisure","value":"sports_centre","description":"🄿 Sports Center / Complex","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"sport","value":"climbing","description":"🄿 Climbing Gym","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/abseiling.svg"},{"key":"sport","value":"horse_racing","description":"🄿 Horse Race Course, 🄿 Horse Racetrack, 🄵🅅 Sports: Horse Racing","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/racetrack-horse-15.svg"},{"key":"sport","value":"swimming","description":"🄿 Swimming Pool Facility","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"},{"key":"leisure","value":"sports_hall","description":"🄿 Gymnasium","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"leisure","value":"stadium","description":"🄿 Stadium","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch-15.svg"},{"key":"leisure","value":"swimming_area","description":"🄿 Natural Swimming Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"},{"key":"leisure","value":"swimming_pool","description":"🄿 Swimming Pool","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimming-pool.svg"},{"key":"leisure","value":"track","description":"🄿 Racetrack (Non-Motorsport)","object_types":["way","node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/racetrack_oval.svg"},{"key":"sport","value":"cycling","description":"🄿 Cycling Track, 🄵🅅 Sports: Cycling","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/racetrack-cycling-15.svg"},{"key":"sport","value":"running","description":"🄿 Running Track, 🄵🅅 Sports: Running","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"},{"key":"leisure","value":"trampoline_park","description":"🄿 Trampoline Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chevron-circle-up.svg"},{"key":"leisure","value":"water_park","description":"🄿 Water Park","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"},{"key":"man_made","value":"courtyard","description":"🄿 Courtyard (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"},{"key":"man_made","value":"yes","description":"🄿 Man-Made Feature (Unspecified Type) (unsearchable)","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"},{"key":"man_made","value":"adit","description":"🄿 Adit","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/adit_profile.svg"},{"key":"man_made","value":"antenna","description":"🄿 Antenna","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/antenna.svg"},{"key":"man_made","value":"beacon","description":"🄿 Beacon","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/communications-tower-15.svg"},{"key":"man_made","value":"beehive","description":"🄿 Beehive","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archive.svg"},{"key":"man_made","value":"breakwater","description":"🄿 Breakwater","object_types":["way","area"]},{"key":"man_made","value":"bridge","description":"🄿 Bridge Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bridge-15.svg"},{"key":"man_made","value":"bunker_silo","description":"🄿 Bunker Silo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunker_silo.svg"},{"key":"man_made","value":"cairn","description":"🄿 Cairn","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cairn.svg"},{"key":"man_made","value":"carpet_hanger","description":"🄿 Carpet Hanger","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"},{"key":"man_made","value":"chimney","description":"🄿 Chimney","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chimney.svg"},{"key":"man_made","value":"clearcut","description":"🄿 Clearcut Forest","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging-15.svg"},{"key":"man_made","value":"compass_rose","description":"🄿 Compass Rose","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/compass.svg"},{"key":"man_made","value":"crane","description":"🄿 Crane","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crane.svg"},{"key":"crane:type","value":"gantry_crane","description":"🄿 Gantry Crane, 🄵🅅 Crane Type: Gantry Crane","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crane.svg"},{"key":"crane:type","value":"portal_crane","description":"🄿 Portal Crane, 🄵🅅 Crane Type: Portal Crane","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crane.svg"},{"key":"man_made","value":"cross","description":"🄿 Cross","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian-15.svg"},{"key":"man_made","value":"cutline","description":"🄿 Cut line","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging-15.svg"},{"key":"man_made","value":"dovecote","description":"🄿 Dovecote","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dove.svg"},{"key":"man_made","value":"dyke","description":"🄿 Levee","object_types":["way"]},{"key":"man_made","value":"embankment","description":"🄿 Embankment","object_types":["way"]},{"key":"man_made","value":"flagpole","description":"🄿 Flagpole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/embassy-15.svg"},{"key":"man_made","value":"gantry","description":"🄿 Gantry","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/toll_gantry.svg"},{"key":"man_made","value":"gasometer","description":"🄿 Gasometer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"},{"key":"man_made","value":"goods_conveyor","description":"🄿 Goods Conveyor","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/conveyor.svg"},{"key":"man_made","value":"groyne","description":"🄿 Groin","object_types":["way","area"]},{"key":"man_made","value":"lighthouse","description":"🄿 Lighthouse","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lighthouse-15.svg"},{"key":"man_made","value":"manhole","description":"🄿 Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manhole.svg"},{"key":"manhole","value":"drain","description":"🄿 Storm Drain","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/manhole.svg"},{"key":"manhole","value":"gas","description":"🄿 Gas Utility Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gas_manhole.svg"},{"key":"manhole","value":"power","description":"🄿 Power Utility Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_manhole.svg"},{"key":"manhole","value":"sewer","description":"🄿 Sewer Utility Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste_manhole.svg"},{"key":"manhole","value":"telecom","description":"🄿 Telecom Utility Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable_manhole.svg"},{"key":"manhole","value":"water","description":"🄿 Water Utility Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste_manhole.svg"},{"key":"man_made","value":"mast","description":"🄿 Mast","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast.svg"},{"key":"tower:type","value":"communication","description":"🄿 Communication Mast, 🄿 Communication Tower","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"},{"key":"communication:mobile_phone","value":"yes","description":"🄿 Mobile Phone Mast","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"},{"key":"communication:radio","value":"yes","description":"🄿 Radio Broadcast Mast","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"},{"key":"communication:television","value":"yes","description":"🄿 Television Broadcast Mast","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_communication.svg"},{"key":"tower:type","value":"lighting","description":"🄿 Lighting Mast","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mast_lighting.svg"},{"key":"man_made","value":"mineshaft","description":"🄿 Mineshaft","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mineshaft_cage.svg"},{"key":"man_made","value":"monitoring_station","description":"🄿 Monitoring Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/antenna.svg"},{"key":"man_made","value":"obelisk","description":"🄿 Obelisk","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/obelisk.svg"},{"key":"man_made","value":"observatory","description":"🄿 Observatory","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/telescope.svg"},{"key":"man_made","value":"petroleum_well","description":"🄿 Oil Well","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/oil_well.svg"},{"key":"man_made","value":"pier","description":"🄿 Pier","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pier_fixed.svg"},{"key":"floating","value":"yes","description":"🄿 Floating Pier","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pier_floating.svg"},{"key":"man_made","value":"pipeline","description":"🄿 Pipeline","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"},{"key":"location","value":"underground","description":"🄿 Underground Pipeline, 🄿 Underground Power Cable","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"},{"key":"man_made","value":"pumping_station","description":"🄿 Pumping Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/powered_pump.svg"},{"key":"man_made","value":"silo","description":"🄿 Silo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"},{"key":"content","value":"water","description":"🄿 Water Tank, 🄵🅅 Content: `water`","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_tank.svg"},{"key":"man_made","value":"street_cabinet","description":"🄿 Street Cabinet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"},{"key":"man_made","value":"surveillance","description":"🄿 Surveillance","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/security_camera.svg"},{"key":"surveillance:type","value":"camera","description":"🄿 Surveillance Camera, 🄵🅅 Surveillance Type: Camera","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/security_camera.svg"},{"key":"man_made","value":"survey_point","description":"🄿 Survey Point","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/benchmark_disk.svg"},{"key":"man_made","value":"tailings_pond","description":"🄿 Tailings Pond","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"man_made","value":"torii","description":"🄿 Torii","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shinto.svg"},{"key":"man_made","value":"tower","description":"🄿 Tower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tower.svg"},{"key":"tower:type","value":"bell_tower","description":"🄿 Bell Tower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bell.svg"},{"key":"tower:type","value":"cooling","description":"🄿 Cooling Tower","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cooling_tower.svg"},{"key":"tower:type","value":"defensive","description":"🄿 Fortified Tower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle-15.svg"},{"key":"tower:type","value":"diving","description":"🄿 Diving Platform","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diving.svg"},{"key":"tower:type","value":"minaret","description":"🄿 Minaret","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/domed_tower.svg"},{"key":"tower:type","value":"observation","description":"🄿 Observation Tower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/observation-tower-15.svg"},{"key":"tower:type","value":"pagoda","description":"🄿 Pagoda","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vihara.svg"},{"key":"man_made","value":"tunnel","description":"🄿 Tunnel Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tunnel.svg"},{"key":"man_made","value":"utility_pole","description":"🄿 Utility Pole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/utility_pole.svg"},{"key":"man_made","value":"video_wall","description":"🄿 Digital Screen","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/billboard.svg"},{"key":"man_made","value":"wastewater_plant","description":"🄿 Wastewater Plant","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste.svg"},{"key":"man_made","value":"water_tap","description":"🄿 Water Tap","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water_tap.svg"},{"key":"man_made","value":"water_tower","description":"🄿 Water Tower","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water_tower.svg"},{"key":"man_made","value":"water_well","description":"🄿 Water Well","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/well_pump_manual.svg"},{"key":"man_made","value":"water_works","description":"🄿 Water Works","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/powered_pump.svg"},{"key":"man_made","value":"watermill","description":"🄿 Watermill","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watermill-15.svg"},{"key":"man_made","value":"windmill","description":"🄿 Windmill","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/windmill-15.svg"},{"key":"man_made","value":"windpump","description":"🄿 Windpump","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/windpump.svg"},{"key":"man_made","value":"works","description":"🄿 Factory","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"},{"key":"product","value":"beer","description":"🄿 Industrial Brewery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"},{"key":"marker","description":"🄿 Marker, 🄵 Type","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"},{"key":"utility","description":"🄿 Utility Marker, 🄵 Utilities, 🄵 Utility","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"},{"key":"utility","value":"power","description":"🄿 Power Marker, 🄵🅅 Utility: Power","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/silo.svg"},{"key":"military","value":"bunker","description":"🄿 Military Bunker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunker.svg"},{"key":"military","value":"checkpoint","description":"🄿 Military Checkpoint","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military_checkpoint.svg"},{"key":"military","value":"nuclear_explosion_site","description":"🄿 Nuclear Explosion Site","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger-15.svg"},{"key":"military","value":"office","description":"🄿 Military Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"},{"key":"military","value":"trench","description":"🄿 Military Trench","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trench.svg"},{"key":"natural","value":"bare_rock","description":"🄿 Bare Rock","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boulder3.svg"},{"key":"natural","value":"bay","description":"🄿 Bay","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"},{"key":"natural","value":"beach","description":"🄿 Beach","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"},{"key":"natural","value":"cape","description":"🄿 Cape","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cape_landform.svg"},{"key":"natural","value":"cave_entrance","description":"🄿 Cave Entrance","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-15.svg"},{"key":"natural","value":"cliff","description":"🄿 Cliff","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cliff_falling_rocks.svg"},{"key":"natural","value":"coastline","description":"🄿 Coastline","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beach.svg"},{"key":"natural","value":"fell","description":"🄿 Fell","object_types":["area"]},{"key":"natural","value":"geyser","description":"🄿 Geyser","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"natural","value":"glacier","description":"🄿 Glacier","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/snow.svg"},{"key":"natural","value":"grassland","description":"🄿 Grassland","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/grass.svg"},{"key":"natural","value":"heath","description":"🄿 Heath","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shrub_low.svg"},{"key":"natural","value":"hot_spring","description":"🄿 Hot Spring","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hot-spring-15.svg"},{"key":"natural","value":"mud","description":"🄿 Mud","object_types":["area"]},{"key":"natural","value":"peak","description":"🄿 Peak","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/mountain-15.svg"},{"key":"natural","value":"reef","description":"🄿 Reef","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/coral_reef.svg"},{"key":"natural","value":"ridge","description":"🄿 Ridge","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/mountain_range.svg"},{"key":"natural","value":"rock","description":"🄿 Attached Rock / Boulder","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boulder2.svg"},{"key":"natural","value":"saddle","description":"🄿 Saddle","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/saddle.svg"},{"key":"natural","value":"sand","description":"🄿 Sand","object_types":["area"]},{"key":"natural","value":"scree","description":"🄿 Scree","object_types":["area"]},{"key":"natural","value":"scrub","description":"🄿 Scrub","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shrub.svg"},{"key":"natural","value":"shingle","description":"🄿 Shingle","object_types":["area"]},{"key":"natural","value":"shrub","description":"🄿 Shrub","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/shrub.svg"},{"key":"natural","value":"spring","description":"🄿 Spring","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"natural","value":"stone","description":"🄿 Unattached Stone / Boulder","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boulder1.svg"},{"key":"natural","value":"strait","description":"🄿 Strait","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"},{"key":"natural","value":"tree_row","description":"🄿 Tree Row","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tree_row.svg"},{"key":"natural","value":"tree_stump","description":"🄿 Tree Stump","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tree_stump.svg"},{"key":"natural","value":"tree","description":"🄿 Tree","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-15.svg"},{"key":"natural","value":"valley","description":"🄿 Valley","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/valley.svg"},{"key":"natural","value":"volcano","description":"🄿 Volcano","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volcano-15.svg"},{"key":"natural","value":"water","description":"🄿 Water","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"water","value":"basin","description":"🄿 Basin","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"water","value":"canal","description":"🄿 Canal Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"},{"key":"water","value":"lake","description":"🄿 Lake","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"water","value":"moat","description":"🄿 Moat","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"water","value":"oxbow","description":"🄿 Oxbow Lake","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"water","value":"pond","description":"🄿 Pond","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water-15.svg"},{"key":"water","value":"river","description":"🄿 River Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"},{"key":"water","value":"stream","description":"🄿 Stream Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"},{"key":"water","value":"wastewater","description":"🄿 Wastewater Basin","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste.svg"},{"key":"natural","value":"wetland","description":"🄿 Wetland","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"},{"key":"wetland","value":"bog","description":"🄿 Bog, 🄵🅅 Type: Bog","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"},{"key":"wetland","value":"fen","description":"🄿 Fen, 🄵🅅 Type: Fen","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"},{"key":"wetland","value":"mangrove","description":"🄿 Mangrove, 🄵🅅 Type: Mangrove","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"},{"key":"wetland","value":"marsh","description":"🄿 Marsh, 🄵🅅 Type: Marsh","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"},{"key":"wetland","value":"reedbed","description":"🄿 Reed bed, 🄵🅅 Type: Reed Bed","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"},{"key":"wetland","value":"saltmarsh","description":"🄿 Coastal Salt Marsh, 🄵🅅 Type: Coastal Salt Marsh","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"},{"key":"wetland","value":"string_bog","description":"🄿 String Bog, 🄵🅅 Type: String Bog","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"},{"key":"wetland","value":"swamp","description":"🄿 Swamp, 🄵🅅 Type: Swamp","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/swamp.svg"},{"key":"wetland","value":"tidalflat","description":"🄿 Tidal Flat, 🄵🅅 Type: Tidal Flat","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"},{"key":"wetland","value":"wet_meadow","description":"🄿 Wet Meadow, 🄵🅅 Type: Wet Meadow","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland-15.svg"},{"key":"natural","value":"wood","description":"🄿 Natural Wood","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-alt1-15.svg"},{"key":"network:type","value":"node_network","description":"🄿 Recreational Network Node","object_types":["node"]},{"key":"noexit","value":"yes","description":"🄿 No Exit","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/barrier-15.svg"},{"key":"office","description":"🄿 Office, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"administrative","description":"🄿 Administrative Office (unsearchable), 🄳 (deprecated tag) ➜ office=government","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"physician","description":"🄿 Physician (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"travel_agent","description":"🄿 Travel Agency (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"yes","description":"🄿 Office (Unspecified Type) (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"accountant","description":"🄿 Accountant Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/accounting.svg"},{"key":"office","value":"adoption_agency","description":"🄿 Adoption Agency","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"advertising_agency","description":"🄿 Advertising Agency","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"architect","description":"🄿 Architect Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-drafting-compass.svg"},{"key":"office","value":"association","description":"🄿 Nonprofit Organization Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"bail_bond_agent","description":"🄿 Bail Bond Agent","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank-15.svg"},{"key":"office","value":"charity","description":"🄿 Charity Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"company","description":"🄿 Corporate Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"consulting","description":"🄿 Consultancy Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"coworking","description":"🄿 Coworking Space","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"diplomatic","description":"🄿 Diplomatic Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"},{"key":"diplomatic","value":"consulate","description":"🄿 Consulate","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"},{"key":"diplomatic","value":"embassy","description":"🄿 Embassy","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"},{"key":"diplomatic","value":"liaison","description":"🄿 Liaison Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/embassy.svg"},{"key":"office","value":"educational_institution","description":"🄿 Educational Institution","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/school-15.svg"},{"key":"office","value":"employment_agency","description":"🄿 Employment Agency","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"energy_supplier","description":"🄿 Energy Supplier Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/briefcase_bolt.svg"},{"key":"office","value":"estate_agent","description":"🄿 Real Estate Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/real_estate_agency.svg"},{"key":"office","value":"financial_advisor","description":"🄿 Financial Advisor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"financial","description":"🄿 Financial Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"forestry","description":"🄿 Forestry Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"foundation","description":"🄿 Foundation Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"government","description":"🄿 Government Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"},{"key":"government","value":"prosecutor","description":"🄿 Public Prosecutor's Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"government","value":"register_office","description":"🄿 Register Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"},{"key":"government","value":"tax","description":"🄿 Tax and Revenue Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/town_hall.svg"},{"key":"office","value":"graphic_design","description":"🄿 Graphic Design Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"guide","description":"🄿 Tour Guide Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"insurance","description":"🄿 Insurance Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/briefcase_shield.svg"},{"key":"office","value":"it","description":"🄿 Information Technology Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"lawyer","description":"🄿 Law Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-balance-scale.svg"},{"key":"lawyer","value":"notary","description":"🄿 Notary Office (unsearchable), 🄳 (deprecated tag) ➜ office=notary","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"moving_company","description":"🄿 Moving Company Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-people-carry.svg"},{"key":"office","value":"newspaper","description":"🄿 Newspaper Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-newspaper.svg"},{"key":"office","value":"ngo","description":"🄿 NGO Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"notary","description":"🄿 Notary Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-stamp.svg"},{"key":"office","value":"political_party","description":"🄿 Political Party Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall-15.svg"},{"key":"office","value":"private_investigator","description":"🄿 Private Investigator Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-secret.svg"},{"key":"office","value":"property_management","description":"🄿 Property Management / Leasing Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"quango","description":"🄿 Quasi-NGO Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"religion","description":"🄿 Religious Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"research","description":"🄿 Research Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flask.svg"},{"key":"office","value":"security","description":"🄿 Security Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/briefcase_shield.svg"},{"key":"office","value":"surveyor","description":"🄿 Surveyor Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vest.svg"},{"key":"office","value":"tax_advisor","description":"🄿 Tax Advisor Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"telecommunication","description":"🄿 Telecom Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/telephone-15.svg"},{"key":"office","value":"therapist","description":"🄿 Therapist Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"union","description":"🄿 Labor Union Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"office","value":"water_utility","description":"🄿 Water Utility Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase-15.svg"},{"key":"pipeline","value":"substation","description":"🄿 Pipeline Substation","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/powered_pump.svg"},{"key":"pipeline","value":"valve","description":"🄿 Pipeline Valve","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wheel.svg"},{"key":"piste:type","value":"downhill","description":"🄿 Downhill Ski Run, 🄵🅅 Type: Downhill","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"},{"key":"man_made","value":"piste:halfpipe","description":"🄿 Snowsports Half-Pipe","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-snowboarding.svg"},{"key":"piste:type","value":"hike","description":"🄿 Snowshoeing / Winter Hiking Trail, 🄵🅅 Type: Hike","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/snow_shoeing.svg"},{"key":"piste:type","value":"ice_skate","description":"🄿 Ice Skating Trail, 🄵🅅 Type: Ice Skate","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skating.svg"},{"key":"piste:type","value":"nordic","description":"🄿 Cross-Country Ski Trail, 🄵🅅 Type: Nordic","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing-nordic.svg"},{"key":"piste:type","description":"🄿 Snowsports Trail / Piste, 🄵 Type","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"},{"key":"piste:type","value":"skitour","description":"🄿 Ski Touring Trail, 🄵🅅 Type: Skitour","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing-nordic.svg"},{"key":"piste:type","value":"sled","description":"🄿 Sled Run, 🄵🅅 Type: Sled","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sledding.svg"},{"key":"piste:type","value":"sleigh","description":"🄿 Sleigh Trail, 🄵🅅 Type: Sleigh","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-sleigh.svg"},{"key":"place","value":"farm","description":"🄿 Farm (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm-15.svg"},{"key":"place","value":"city_block","description":"🄿 City Block","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"},{"key":"place","value":"city","description":"🄿 City","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/city-15.svg"},{"key":"place","value":"hamlet","description":"🄿 Hamlet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"},{"key":"place","value":"island","description":"🄿 Island","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/island_trees_building.svg"},{"key":"place","value":"islet","description":"🄿 Islet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/islet_tree.svg"},{"key":"place","value":"isolated_dwelling","description":"🄿 Isolated Dwelling","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home-15.svg"},{"key":"place","value":"locality","description":"🄿 Locality","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"},{"key":"place","value":"neighbourhood","description":"🄿 Neighborhood","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"},{"key":"place","value":"plot","description":"🄿 Plot","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"},{"key":"place","value":"quarter","description":"🄿 Sub-Borough / Quarter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"},{"key":"place","value":"square","description":"🄿 Square","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/marker-stroked-15.svg"},{"key":"place","value":"suburb","description":"🄿 Borough / Suburb","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked-15.svg"},{"key":"place","value":"town","description":"🄿 Town","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-15.svg"},{"key":"place","value":"village","description":"🄿 Village","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/village-15.svg"},{"key":"playground","value":"activitypanel","description":"🄿 Play Activity Panel","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"aerialrotator","description":"🄿 Hanging Spinner","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"balancebeam","description":"🄿 Play Balance Beam","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/balance_beam.svg"},{"key":"playground","value":"basketrotator","description":"🄿 Basket Spinner","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"basketswing","description":"🄿 Basket Swing","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"bridge","description":"🄿 Play Bridge","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"climbingframe","description":"🄿 Play Climbing Frame","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"climbingwall","description":"🄿 Play Climbing Wall","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"cushion","description":"🄿 Bouncy Cushion","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"funnel_ball","description":"🄿 Funnel Ball Funnel","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"hopscotch","description":"🄿 Hopscotch","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"horizontal_bar","description":"🄿 Play Horizontal Bar","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horizontal_bar.svg"},{"key":"playground","value":"map","description":"🄿 Painted Playground Map","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/compass.svg"},{"key":"playground","value":"playhouse","description":"🄿 Play House","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/play_structure.svg"},{"key":"playground","value":"roundabout","description":"🄿 Play Roundabout","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/stadium-15.svg"},{"key":"playground","value":"sandpit","description":"🄿 Play Sandbox","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sandbox.svg"},{"key":"playground","value":"seesaw","description":"🄿 Seesaw","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/seesaw.svg"},{"key":"playground","value":"sledding","description":"🄿 Play Sledding Hill","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sledding.svg"},{"key":"playground","value":"slide","description":"🄿 Slide","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/slide.svg"},{"key":"playground","value":"splash_pad","description":"🄿 Play Splash Pad","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fountain.svg"},{"key":"playground","value":"springy","description":"🄿 Spring Rider","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spring_rider.svg"},{"key":"playground","value":"structure","description":"🄿 Play Structure","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/play_structure.svg"},{"key":"playground","value":"swing","description":"🄿 Swing","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"teenshelter","description":"🄿 Teen Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter-15.svg"},{"key":"playground","value":"tetherball","description":"🄿 Tetherball Pole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"trampoline","description":"🄿 Trampoline","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"tunnel_tube","description":"🄿 Play Tunnel","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"playground","value":"water","description":"🄿 Play Water Pump/Screw","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water.svg"},{"key":"playground","value":"zipwire","description":"🄿 Play Zip Line","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground-15.svg"},{"key":"police","value":"checkpoint","description":"🄿 Police Checkpoint","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military_checkpoint.svg"},{"key":"polling_station","description":"🄿 Temporary Polling Place, 🄵 Polling Place","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vote-yea.svg"},{"key":"power","value":"cable","description":"🄿 Power Cable (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable.svg"},{"key":"power","value":"catenary_mast","description":"🄿 Catenary Pole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_pole.svg"},{"key":"power","value":"generator","description":"🄿 Power Generator","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"},{"key":"generator:method","value":"photovoltaic","description":"🄿 Solar Panel, 🄵🅅 Method: Photovoltaic","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"},{"key":"location","value":"roof","description":"🄿 Rooftop Solar Panel","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"},{"key":"generator:source","value":"hydro","description":"🄿 Water Turbine, 🄵🅅 Source: Hydropower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"},{"key":"generator:method","value":"fission","description":"🄿 Nuclear Reactor, 🄵🅅 Method: Fission","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/radiation.svg"},{"key":"generator:source","value":"wind","description":"🄿 Wind Turbine, 🄵🅅 Source: Wind","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wind_turbine.svg"},{"key":"power","value":"line","description":"🄿 Power Line","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_tower.svg"},{"key":"power","value":"minor_line","description":"🄿 Minor Power Line","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/power-line.svg"},{"key":"power","value":"plant","description":"🄿 Power Station Grounds","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"},{"key":"plant:source","value":"coal","description":"🄿 Coal-Fired Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry-15.svg"},{"key":"plant:source","value":"gas","description":"🄿 Gas-Fired Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gas.svg"},{"key":"plant:source","value":"hydro","description":"🄿 Hydroelectric Power Station","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"},{"key":"plant:method","value":"photovoltaic","description":"🄿 Solar Farm","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"},{"key":"plant:source","value":"nuclear","description":"🄿 Nuclear Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/radiation.svg"},{"key":"plant:source","value":"oil","description":"🄿 Oil-Fired Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tint.svg"},{"key":"plant:source","value":"solar","description":"🄿 Solar Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"},{"key":"plant:source","value":"waste","description":"🄿 Waste Incineration Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumpster-fire.svg"},{"key":"plant:source","value":"wind","description":"🄿 Wind Farm","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/wind_turbine.svg"},{"key":"power","value":"pole","description":"🄿 Power Pole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_pole.svg"},{"key":"power","value":"portal","description":"🄿 Anchor Portal","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"},{"key":"power","value":"substation","description":"🄿 Substation","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"},{"key":"power","value":"switch","description":"🄿 Power Switch","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_switch.svg"},{"key":"power","value":"tower","description":"🄿 High-Voltage Tower","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_tower.svg"},{"key":"power","value":"transformer","description":"🄿 Transformer","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power_transformer.svg"},{"key":"public_transport","value":"platform","description":"🄿 Transit Stop / Platform, 🄿 Transit Platform","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sign_and_bench.svg"},{"key":"aerialway","value":"yes","description":"🄿 Aerialway Stop / Platform (unsearchable), 🄿 Aerialway Platform, 🄿 Aerialway Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"},{"key":"ferry","value":"yes","description":"🄿 Ferry Stop / Platform (unsearchable), 🄿 Ferry Platform, 🄿 Ferry Terminal, 🄿 Ferry Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ferry.svg"},{"key":"light_rail","value":"yes","description":"🄿 Light Rail Stop / Platform (unsearchable), 🄿 Light Rail Platform, 🄿 Light Rail Station, 🄿 Light Rail Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/light_rail.svg"},{"key":"monorail","value":"yes","description":"🄿 Monorail Stop / Platform (unsearchable), 🄿 Monorail Platform, 🄿 Monorail Station, 🄿 Monorail Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/monorail.svg"},{"key":"subway","value":"yes","description":"🄿 Subway Stop / Platform (unsearchable), 🄿 Subway Platform, 🄿 Subway Station, 🄿 Subway Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/subway.svg"},{"key":"train","value":"yes","description":"🄿 Train Stop / Platform (unsearchable), 🄿 Train Platform, 🄿 Train Station, 🄿 Train Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"},{"key":"bus","value":"yes","description":"🄿 Bus Stop, 🄿 Bus Platform, 🄿 Bus Station / Terminal, 🄿 Bus Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"},{"key":"tram","value":"yes","description":"🄿 Tram & Bus Stop, 🄿 Tram Stop / Platform, 🄿 Tram Platform, 🄿 Tram Station, 🄿 Tram Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"},{"key":"trolleybus","value":"yes","description":"🄿 Trolleybus Stop, 🄿 Trolleybus Platform, 🄿 Trolleybus Station / Terminal, 🄿 Trolleybus Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trolleybus.svg"},{"key":"aerialway","value":"station","description":"🄿 Aerialway Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"},{"key":"railway","value":"halt","description":"🄿 Train Station (Halt / Request), 🄿 Train Station (Halt / Request) (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rail_flag.svg"},{"key":"public_transport","value":"station","description":"🄿 Transit Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/transit.svg"},{"key":"public_transport","value":"stop_area","description":"🄿 Transit Stop Area","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"public_transport","value":"stop_position","description":"🄿 Transit Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/transit.svg"},{"key":"railway","value":"platform","description":"🄿 Train Platform (unsearchable), 🄳 (deprecated tag) ➜ railway=platform + public_transport=platform","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/board_train.svg"},{"key":"railway","value":"station","description":"🄿 Train Station (unsearchable), 🄳 (deprecated tag) ➜ railway=station + public_transport=station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"},{"key":"railway","value":"tram_stop","description":"🄿 Tram Stopping Position (unsearchable), 🄳 (deprecated tag) ➜ railway=tram_stop + public_transport=stop_position + tram=yes","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"},{"key":"railway","value":"abandoned","description":"🄿 Abandoned Railway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_askew.svg"},{"key":"railway","value":"buffer_stop","description":"🄿 Buffer Stop","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buffer_stop.svg"},{"key":"railway","value":"construction","description":"🄿 Railway Under Construction","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_partial.svg"},{"key":"railway","value":"crossing","description":"🄿 Railway-Path Crossing","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"railway","value":"derail","description":"🄿 Railway Derailer","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock-15.svg"},{"key":"railway","value":"disused","description":"🄿 Disused Railway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track.svg"},{"key":"railway","value":"funicular","description":"🄿 Funicular Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_cable_track.svg"},{"key":"railway","value":"level_crossing","description":"🄿 Railway-Road Crossing","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cross-15.svg"},{"key":"railway","value":"light_rail","description":"🄿 Light Rail Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/light_rail.svg"},{"key":"railway","value":"milestone","description":"🄿 Railway Milestone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"},{"key":"railway","value":"miniature","description":"🄿 Miniature Train Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_mini.svg"},{"key":"railway","value":"monorail","description":"🄿 Monorail Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/monorail.svg"},{"key":"monorail","value":"hanging","description":"🄿 Hanging Monorail Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hanging_rail.svg"},{"key":"railway","value":"narrow_gauge","description":"🄿 Narrow Gauge Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track_narrow.svg"},{"key":"railway:preserved","value":"yes","description":"🄿 Heritage Railway Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_steam.svg"},{"key":"railway","value":"rail","description":"🄿 Train Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track.svg"},{"key":"highspeed","value":"yes","description":"🄿 High-Speed Train Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_bullet.svg"},{"key":"railway","value":"railway_crossing","description":"🄿 Railway-Railway Crossing","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/x_oblique.svg"},{"key":"railway","value":"signal","description":"🄿 Railway Signal","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_signals.svg"},{"key":"railway","value":"subway_entrance","description":"🄿 Subway Entrance","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-15.svg"},{"key":"railway","value":"subway","description":"🄿 Subway Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/subway.svg"},{"key":"railway","value":"switch","description":"🄿 Railway Switch","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/junction.svg"},{"key":"railway","value":"wash","description":"🄿 Train Wash","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train_wash.svg"},{"key":"railway","value":"tram_crossing","description":"🄿 Tram-Path Crossing","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crossing_tram_striped.svg"},{"key":"railway","value":"tram_level_crossing","description":"🄿 Tram-Road Crossing","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/crossing_tram_solid.svg"},{"key":"railway","value":"tram","description":"🄿 Tram Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"},{"key":"railway","value":"yard","description":"🄿 Rail Yard","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/freight_car.svg"},{"key":"route","value":"ferry","description":"🄿 Ferry Route","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ferry.svg"},{"key":"seamark:type","value":"beacon_isolated_danger","description":"🄿 Danger Beacon","object_types":["node"]},{"key":"seamark:type","value":"beacon_lateral","description":"🄿 Channel Beacon","object_types":["node"]},{"key":"seamark:type","value":"buoy_lateral","description":"🄿 Channel Buoy","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buoy.svg"},{"key":"seamark:buoy_lateral:colour","value":"green","description":"🄿 Green Buoy, 🄵🅅 Color: Green","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buoy.svg"},{"key":"seamark:buoy_lateral:colour","value":"red","description":"🄿 Red Buoy, 🄵🅅 Color: Red","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/buoy.svg"},{"key":"seamark:type","value":"mooring","description":"🄿 Mooring","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/horn_cleat.svg"},{"key":"shop","description":"🄿 Shop, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"boutique","description":"🄿 Boutique (unsearchable), 🄳 (deprecated tag) ➜ shop=clothes","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"fashion","description":"🄿 Fashion Store (unsearchable), 🄳 (deprecated tag) ➜ shop=clothes","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"vacant","description":"🄿 Vacant Shop (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"yes","description":"🄿 Shop (Unspecified Type) (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"agrarian","description":"🄿 Farm Supply Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"},{"key":"shop","value":"alcohol","description":"🄿 Liquor Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-wine-bottle.svg"},{"key":"shop","value":"anime","description":"🄿 Anime / Manga Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dragon.svg"},{"key":"shop","value":"antiques","description":"🄿 Antique Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/furniture.svg"},{"key":"shop","value":"appliance","description":"🄿 Appliance Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/laundry.svg"},{"key":"shop","value":"art","description":"🄿 Art Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"baby_goods","description":"🄿 Baby Goods Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby-carriage.svg"},{"key":"shop","value":"bag","description":"🄿 Bag/Luggage Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-suitcase-rolling.svg"},{"key":"shop","value":"bakery","description":"🄿 Bakery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bakery-15.svg"},{"key":"shop","value":"bathroom_furnishing","description":"🄿 Bathroom Furnishing Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bath.svg"},{"key":"shop","value":"beauty","description":"🄿 Beauty Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lipstick.svg"},{"key":"beauty","value":"nails","description":"🄿 Nail Salon, 🄵🅅 Services: Manicure / Pedicure","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/polished_nail.svg"},{"key":"beauty","value":"tanning","description":"🄿 Tanning Salon, 🄵🅅 Services: Tanning","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tanning.svg"},{"key":"shop","value":"bed","description":"🄿 Bedding/Mattress Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"},{"key":"shop","value":"beverages","description":"🄿 Beverage Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bottles.svg"},{"key":"shop","value":"bicycle","description":"🄿 Bicycle Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"},{"key":"shop","value":"boat","description":"🄿 Boat Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat.svg"},{"key":"shop","value":"bookmaker","description":"🄿 Bookmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"},{"key":"shop","value":"books","description":"🄿 Bookstore","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-book.svg"},{"key":"shop","value":"brewing_supplies","description":"🄿 Brewing Supply Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_fermenter.svg"},{"key":"shop","value":"butcher","description":"🄿 Butcher","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cleaver.svg"},{"key":"shop","value":"camera","description":"🄿 Camera Equipment Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-camera-retro.svg"},{"key":"shop","value":"candles","description":"🄿 Candle Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-burn.svg"},{"key":"shop","value":"cannabis","description":"🄿 Cannabis Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cannabis.svg"},{"key":"shop","value":"car_parts","description":"🄿 Car Parts Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-car-battery.svg"},{"key":"shop","value":"car_repair","description":"🄿 Car Repair Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-repair-15.svg"},{"key":"shop","value":"car","description":"🄿 Car Dealership","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"},{"key":"second_hand","value":"only","description":"🄿 Used Car Dealership, 🄿 Secondhand Clothing Store, 🄵🅅 Sells Used: Only","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-15.svg"},{"key":"shop","value":"caravan","description":"🄿 RV Dealership","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/camper_trailer.svg"},{"key":"shop","value":"carpet","description":"🄿 Carpet Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"},{"key":"shop","value":"catalogue","description":"🄿 Catalog Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"charity","description":"🄿 Charity Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"cheese","description":"🄿 Cheese Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cheese.svg"},{"key":"shop","value":"chemist","description":"🄿 Drugstore","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-basket.svg"},{"key":"shop","value":"chocolate","description":"🄿 Chocolate Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery-15.svg"},{"key":"shop","value":"clothes","description":"🄿 Clothing Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store-15.svg"},{"key":"clothes","value":"suits","description":"🄿 Suits Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tshirt.svg"},{"key":"clothes","value":"underwear","description":"🄿 Underwear Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bikini.svg"},{"key":"clothes","value":"wedding","description":"🄿 Wedding Clothes Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gown.svg"},{"key":"clothes","value":"workwear","description":"🄿 Workwear Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tshirt.svg"},{"key":"shop","value":"coffee","description":"🄿 Coffee Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/coffee.svg"},{"key":"shop","value":"collector","description":"🄿 Collectibles Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-th.svg"},{"key":"shop","value":"computer","description":"🄿 Computer Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-laptop.svg"},{"key":"shop","value":"confectionery","description":"🄿 Candy Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery-15.svg"},{"key":"shop","value":"convenience","description":"🄿 Convenience Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-basket.svg"},{"key":"shop","value":"copyshop","description":"🄿 Copy Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-print.svg"},{"key":"shop","value":"cosmetics","description":"🄿 Cosmetics Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/lipstick.svg"},{"key":"shop","value":"country_store","description":"🄿 Rural Supplies Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hat-cowboy-side.svg"},{"key":"shop","value":"craft","description":"🄿 Arts & Crafts Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cut.svg"},{"key":"shop","value":"curtain","description":"🄿 Curtain Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/curtains.svg"},{"key":"shop","value":"dairy","description":"🄿 Dairy Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cheese.svg"},{"key":"shop","value":"deli","description":"🄿 Delicatessen","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-jar.svg"},{"key":"shop","value":"department_store","description":"🄿 Department Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"doityourself","description":"🄿 DIY Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"shop","value":"doors","description":"🄿 Door Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-open.svg"},{"key":"shop","value":"dry_cleaning","description":"🄿 Dry Cleaner","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/clothes_hanger.svg"},{"key":"shop","value":"e-cigarette","description":"🄿 E-Cigarette Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"electrical","description":"🄿 Electrical Equipment Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/power.svg"},{"key":"shop","value":"electronics","description":"🄿 Electronics Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plug.svg"},{"key":"shop","value":"erotic","description":"🄿 Erotic Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"fabric","description":"🄿 Fabric Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"},{"key":"shop","value":"farm","description":"🄿 Produce Stand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-apple-alt.svg"},{"key":"shop","value":"fashion_accessories","description":"🄿 Fashion Accessories Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fashion_accessories.svg"},{"key":"shop","value":"fireplace","description":"🄿 Fireplace Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fireplace.svg"},{"key":"shop","value":"fishing","description":"🄿 Fishing Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/ice_fishing.svg"},{"key":"shop","value":"flooring","description":"🄿 Flooring Supply Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"shop","value":"florist","description":"🄿 Florist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/florist-15.svg"},{"key":"shop","value":"frame","description":"🄿 Framing Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vector-square.svg"},{"key":"shop","value":"frozen_food","description":"🄿 Frozen Food Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"fuel","description":"🄿 Fuel Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/propane_tank.svg"},{"key":"shop","value":"funeral_directors","description":"🄿 Funeral Home","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery-15.svg"},{"key":"shop","value":"furniture","description":"🄿 Furniture Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-couch.svg"},{"key":"shop","value":"games","description":"🄿 Tabletop Game Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dice.svg"},{"key":"shop","value":"garden_centre","description":"🄿 Garden Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre-15.svg"},{"key":"shop","value":"gas","description":"🄿 Bottled Gas Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/propane_tank.svg"},{"key":"shop","value":"general","description":"🄿 General Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"gift","description":"🄿 Gift Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gift-15.svg"},{"key":"shop","value":"greengrocer","description":"🄿 Greengrocer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-carrot.svg"},{"key":"shop","value":"hairdresser_supply","description":"🄿 Hairdresser Supply Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hair_care.svg"},{"key":"shop","value":"hairdresser","description":"🄿 Hairdresser","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/beauty_salon.svg"},{"key":"shop","value":"hardware","description":"🄿 Hardware Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"shop","value":"health_food","description":"🄿 Health Food Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"hearing_aids","description":"🄿 Hearing Aids Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hearing_aid.svg"},{"key":"shop","value":"herbalist","description":"🄿 Herbalist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-leaf.svg"},{"key":"shop","value":"hifi","description":"🄿 Hifi Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speaker.svg"},{"key":"shop","value":"hobby","description":"🄿 Hobby Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dragon.svg"},{"key":"shop","value":"household_linen","description":"🄿 Household Linen Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cloth.svg"},{"key":"shop","value":"houseware","description":"🄿 Houseware Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-blender.svg"},{"key":"shop","value":"hunting","description":"🄿 Hunting Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bow_and_arrow.svg"},{"key":"shop","value":"interior_decoration","description":"🄿 Interior Decoration Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"jewelry","description":"🄿 Jewelry Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/jewelry-store-15.svg"},{"key":"shop","value":"kiosk","description":"🄿 Kiosk","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store.svg"},{"key":"shop","value":"kitchen","description":"🄿 Kitchen Design Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/kitchen_sink.svg"},{"key":"shop","value":"laundry","description":"🄿 Laundry","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/laundry.svg"},{"key":"self_service","value":"yes","description":"🄿 Self-Service Laundry","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/laundry.svg"},{"key":"shop","value":"leather","description":"🄿 Leather Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/handbag.svg"},{"key":"shop","value":"lighting","description":"🄿 Lighting Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/desk_lamp.svg"},{"key":"shop","value":"locksmith","description":"🄿 Locksmith","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-key.svg"},{"key":"shop","value":"lottery","description":"🄿 Lottery Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ticket-alt.svg"},{"key":"shop","value":"mall","description":"🄿 Mall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"massage","description":"🄿 Massage Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spa.svg"},{"key":"shop","value":"medical_supply","description":"🄿 Medical Supply Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crutch.svg"},{"key":"shop","value":"military_surplus","description":"🄿 Military Surplus Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/military.svg"},{"key":"shop","value":"mobile_phone","description":"🄿 Mobile Phone Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mobile-alt.svg"},{"key":"shop","value":"model","description":"🄿 Model Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"money_lender","description":"🄿 Money Lender","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"},{"key":"shop","value":"motorcycle_repair","description":"🄿 Motorcycle Repair Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/motorcycle_repair.svg"},{"key":"shop","value":"motorcycle","description":"🄿 Motorcycle Dealership","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"},{"key":"shop","value":"music","description":"🄿 Music Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compact-disc.svg"},{"key":"shop","value":"musical_instrument","description":"🄿 Musical Instrument Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-guitar.svg"},{"key":"shop","value":"newsagent","description":"🄿 Newsstand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-newspaper.svg"},{"key":"shop","value":"nutrition_supplements","description":"🄿 Nutrition Supplements Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pills.svg"},{"key":"shop","value":"optician","description":"🄿 Optician","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/optician-15.svg"},{"key":"shop","value":"outdoor","description":"🄿 Outdoors Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/compass.svg"},{"key":"shop","value":"outpost","description":"🄿 Online Retailer Outpost","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"paint","description":"🄿 Paint Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paint-roller.svg"},{"key":"shop","value":"party","description":"🄿 Party Supply Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/balloon.svg"},{"key":"shop","value":"pastry","description":"🄿 Pastry Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bakery-15.svg"},{"key":"shop","value":"pawnbroker","description":"🄿 Pawnshop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/money_hand.svg"},{"key":"shop","value":"perfumery","description":"🄿 Perfume Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/perfume.svg"},{"key":"shop","value":"pet_grooming","description":"🄿 Pet Grooming Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pet_grooming.svg"},{"key":"shop","value":"pet","description":"🄿 Pet Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cat.svg"},{"key":"shop","value":"photo","description":"🄿 Photography Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-camera-retro.svg"},{"key":"shop","value":"pottery","description":"🄿 Pottery Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vase.svg"},{"key":"shop","value":"printer_ink","description":"🄿 Printer Ink Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-print.svg"},{"key":"shop","value":"psychic","description":"🄿 Psychic","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/psychic.svg"},{"key":"shop","value":"pyrotechnics","description":"🄿 Fireworks Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rocket_firework.svg"},{"key":"shop","value":"radiotechnics","description":"🄿 Radio/Electronic Component Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microchip.svg"},{"key":"shop","value":"religion","description":"🄿 Religious Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"rental","description":"🄿 Rental Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dolly.svg"},{"key":"shop","value":"repair","description":"🄿 Repair Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tools.svg"},{"key":"shop","value":"scuba_diving","description":"🄿 Scuba Diving Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/scuba_diving.svg"},{"key":"shop","value":"seafood","description":"🄿 Seafood Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fish_cleaning.svg"},{"key":"shop","value":"second_hand","description":"🄿 Thrift Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"sewing","description":"🄿 Sewing Supply Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/needle_and_spool.svg"},{"key":"shop","value":"shoe_repair","description":"🄿 Shoe Repair Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/hammer_shoe.svg"},{"key":"shop","value":"shoes","description":"🄿 Shoe Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shoe-15.svg"},{"key":"shop","value":"spices","description":"🄿 Spice Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spice_bottle.svg"},{"key":"shop","value":"sports","description":"🄿 Sporting Goods Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-futbol.svg"},{"key":"shop","value":"stationery","description":"🄿 Stationery Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paperclip.svg"},{"key":"shop","value":"storage_rental","description":"🄿 Storage Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/storage_rental.svg"},{"key":"shop","value":"supermarket","description":"🄿 Supermarket","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/grocery-15.svg"},{"key":"organic","value":"only","description":"🄿 Organic Supermarket, 🄵🅅 Organic Products: Only","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/grocery-15.svg"},{"key":"shop","value":"swimming_pool","description":"🄿 Pool Supply Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"},{"key":"shop","value":"tailor","description":"🄿 Tailor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/needle_and_spool.svg"},{"key":"shop","value":"tattoo","description":"🄿 Tattoo Parlor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tattoo_machine.svg"},{"key":"shop","value":"tea","description":"🄿 Tea Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/teahouse-15.svg"},{"key":"shop","value":"telecommunication","description":"🄿 Telecom Retail Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/telephone-15.svg"},{"key":"shop","value":"ticket","description":"🄿 Ticket Seller","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ticket-alt.svg"},{"key":"shop","value":"tiles","description":"🄿 Tile Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tiling.svg"},{"key":"shop","value":"tobacco","description":"🄿 Tobacco Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pipe.svg"},{"key":"shop","value":"tool_hire","description":"🄿 Tool Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"shop","value":"toys","description":"🄿 Toy Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-rocket.svg"},{"key":"shop","value":"trade","description":"🄿 Trade Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tools.svg"},{"key":"shop","value":"travel_agency","description":"🄿 Travel Agency","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-suitcase.svg"},{"key":"shop","value":"trophy","description":"🄿 Trophy Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-trophy.svg"},{"key":"shop","value":"tyres","description":"🄿 Tire Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tire.svg"},{"key":"shop","value":"vacuum_cleaner","description":"🄿 Vacuum Cleaner Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/vacuum.svg"},{"key":"shop","value":"variety_store","description":"🄿 Discount Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"video_games","description":"🄿 Video Game Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gaming-15.svg"},{"key":"shop","value":"video","description":"🄿 Video Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/movie_rental.svg"},{"key":"shop","value":"watches","description":"🄿 Watches Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watch-15.svg"},{"key":"shop","value":"water_sports","description":"🄿 Watersport/Swim Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"},{"key":"shop","value":"water","description":"🄿 Drinking Water Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/water_bottle.svg"},{"key":"shop","value":"weapons","description":"🄿 Weapon Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/dagger.svg"},{"key":"shop","value":"wholesale","description":"🄿 Wholesale Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/warehouse-15.svg"},{"key":"shop","value":"wigs","description":"🄿 Wig Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop-15.svg"},{"key":"shop","value":"window_blind","description":"🄿 Window Blind Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/window.svg"},{"key":"shop","value":"wine","description":"🄿 Wine Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/alcohol-shop-15.svg"},{"key":"telecom","value":"data_center","description":"🄿 Data Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-server.svg"},{"key":"telecom","value":"exchange","description":"🄿 Telecom Exchange","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cable.svg"},{"key":"tourism","value":"alpine_hut","description":"🄿 Mountain Lodge","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"},{"key":"tourism","value":"apartment","description":"🄿 Guest Apartment / Condo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"},{"key":"tourism","value":"aquarium","description":"🄿 Aquarium","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aquarium-15.svg"},{"key":"tourism","value":"artwork","description":"🄿 Artwork","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"},{"key":"artwork_type","value":"bust","description":"🄿 Bust, 🄵🅅 Type: Bust","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-alt.svg"},{"key":"artwork_type","value":"graffiti","description":"🄿 Graffiti, 🄵🅅 Type: Graffiti","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"},{"key":"artwork_type","value":"installation","description":"🄿 Art Installation, 🄵🅅 Type: Art Installation","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sculpture.svg"},{"key":"artwork_type","value":"mural","description":"🄿 Mural, 🄵🅅 Type: Mural","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"},{"key":"artwork_type","value":"sculpture","description":"🄿 Sculpture, 🄵🅅 Type: Sculpture","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/sculpture.svg"},{"key":"artwork_type","value":"statue","description":"🄿 Statue, 🄵🅅 Type: Statue","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/statue.svg"},{"key":"tourism","value":"attraction","description":"🄿 Tourist Attraction","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/star-15.svg"},{"key":"tourism","value":"camp_pitch","description":"🄿 Camp Pitch","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"},{"key":"tourism","value":"camp_site","description":"🄿 Campground","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"},{"key":"backcountry","value":"yes","description":"🄿 Backcountry Camping Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"},{"key":"group_only","value":"yes","description":"🄿 Group Camping Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite-15.svg"},{"key":"tourism","value":"caravan_site","description":"🄿 RV Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/camper_trailer.svg"},{"key":"tourism","value":"chalet","description":"🄿 Holiday Cottage","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"},{"key":"tourism","value":"gallery","description":"🄿 Art Gallery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery-15.svg"},{"key":"tourism","value":"guest_house","description":"🄿 Guest House","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"},{"key":"tourism","value":"hostel","description":"🄿 Hostel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bunk_beds.svg"},{"key":"tourism","value":"hotel","description":"🄿 Hotel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-concierge-bell.svg"},{"key":"tourism","value":"information","description":"🄿 Information","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information-15.svg"},{"key":"information","value":"board","description":"🄿 Information Board","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/info_board.svg"},{"key":"board_type","value":"welcome_sign","description":"🄿 Welcome Sign, 🄵🅅 Type: Welcome Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/embassy-15.svg"},{"key":"information","value":"guidepost","description":"🄿 Guidepost","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-map-signs.svg"},{"key":"information","value":"map","description":"🄿 Map","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-map.svg"},{"key":"information","value":"office","description":"🄿 Visitor Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information-15.svg"},{"key":"information","value":"route_marker","description":"🄿 Trail Marker","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information-15.svg"},{"key":"information","value":"terminal","description":"🄿 Information Terminal","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/app_terminal.svg"},{"key":"tourism","value":"motel","description":"🄿 Motel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging-15.svg"},{"key":"tourism","value":"museum","description":"🄿 Museum","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/museum.svg"},{"key":"museum","value":"history","description":"🄿 History Museum","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/museum.svg"},{"key":"tourism","value":"picnic_site","description":"🄿 Picnic Site","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site-15.svg"},{"key":"tourism","value":"theme_park","description":"🄿 Theme Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park-15.svg"},{"key":"tourism","value":"trail_riding_station","description":"🄿 Trail Riding Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"},{"key":"tourism","value":"viewpoint","description":"🄿 Viewpoint","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/spotting_scope.svg"},{"key":"tourism","value":"wilderness_hut","description":"🄿 Wilderness Hut","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/cabin.svg"},{"key":"tourism","value":"zoo","description":"🄿 Zoo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/zoo.svg"},{"key":"zoo","value":"petting_zoo","description":"🄿 Petting Zoo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-horse.svg"},{"key":"zoo","value":"safari_park","description":"🄿 Safari Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/zoo.svg"},{"key":"zoo","value":"wildlife_park","description":"🄿 Wildlife Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-frog.svg"},{"key":"traffic_calming","description":"🄿 Traffic Calming, 🄵 Raised, 🄵 Type","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"},{"key":"traffic_calming","value":"yes","description":"🄿 Traffic Calming (Unspecified Type) (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"},{"key":"traffic_calming","value":"bump","description":"🄿 Speed Bump, 🄵🅅 Type: Speed Bump","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_bump.svg"},{"key":"traffic_calming","value":"chicane","description":"🄿 Traffic Chicane, 🄵🅅 Type: Traffic Chicane","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/chicane_arrow.svg"},{"key":"traffic_calming","value":"choker","description":"🄿 Traffic Choker, 🄵🅅 Type: Traffic Choker","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"},{"key":"traffic_calming","value":"cushion","description":"🄿 Speed Cushion, 🄵🅅 Type: Speed Cushion","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_hump.svg"},{"key":"traffic_calming","value":"dip","description":"🄿 Dip, 🄵🅅 Type: Dip","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_dip.svg"},{"key":"traffic_calming","value":"hump","description":"🄿 Speed Hump, 🄵🅅 Type: Speed Hump","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_hump.svg"},{"key":"traffic_calming","value":"island","description":"🄿 Traffic Island, 🄵🅅 Type: Traffic Island","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/diamond.svg"},{"key":"traffic_calming","value":"mini_bumps","description":"🄿 Mini Speed Bumps, 🄵🅅 Type: Mini Speed Bumps","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_bump.svg"},{"key":"traffic_calming","value":"rumble_strip","description":"🄿 Rumble Strip, 🄵🅅 Type: Rumble Strip","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/rumble_strip.svg"},{"key":"traffic_calming","value":"table","description":"🄿 Speed Table, 🄵🅅 Raised: Yes, 🄵🅅 Type: Speed Table","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/speed_table.svg"},{"key":"traffic_sign","description":"🄿 Traffic Sign, 🄵 Traffic Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-directions.svg"},{"key":"traffic_sign","value":"city_limit","description":"🄿 City Limit Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"},{"key":"traffic_sign","value":"maxspeed","description":"🄿 Speed Limit Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked-15.svg"},{"key":"traffic_sign","value":"variable_message","description":"🄿 Variable Message Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/billboard.svg"},{"key":"type","value":"boundary","description":"🄿 Boundary","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/boundary.svg"},{"key":"type","value":"connectivity","description":"🄿 Lane Connectivity","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"type","value":"destination_sign","description":"🄿 Destination Sign","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"type","value":"enforcement","description":"🄿 Enforcement","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"enforcement","value":"maxspeed","description":"🄿 Speed Limit Enforcement","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"type","value":"multipolygon","description":"🄿 Multipolygon","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/multipolygon.svg"},{"key":"public_transport","value":"stop_area_group","description":"🄿 Transit Stop Area Group","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"type","value":"restriction","description":"🄿 Restriction","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction.svg"},{"key":"restriction","value":"no_left_turn","description":"🄿 No Left Turn","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-left-turn.svg"},{"key":"restriction","value":"no_right_turn","description":"🄿 No Right Turn","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-right-turn.svg"},{"key":"restriction","value":"no_straight_on","description":"🄿 No Straight Ahead","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-straight-on.svg"},{"key":"restriction","value":"no_u_turn","description":"🄿 No U-Turn","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-u-turn.svg"},{"key":"restriction","value":"only_left_turn","description":"🄿 Left Turn Only","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-left-turn.svg"},{"key":"restriction","value":"only_right_turn","description":"🄿 Right Turn Only","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-right-turn.svg"},{"key":"restriction","value":"only_straight_on","description":"🄿 Straight Ahead Only","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-straight-on.svg"},{"key":"restriction","value":"only_u_turn","description":"🄿 U-Turn Only","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-u-turn.svg"},{"key":"type","value":"route_master","description":"🄿 Route Master","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route-master.svg"},{"key":"type","value":"route","description":"🄿 Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route.svg"},{"key":"route","value":"aerialway","description":"🄿 Aerial Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/gondola_lift.svg"},{"key":"route","value":"bicycle","description":"🄿 Bicycle Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"},{"key":"route","value":"bus","description":"🄿 Bus Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/bus.svg"},{"key":"route","value":"detour","description":"🄿 Detour Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route-detour.svg"},{"key":"route","value":"foot","description":"🄿 Walking Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/pedestrian.svg"},{"key":"route","value":"hiking","description":"🄿 Hiking Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hiking.svg"},{"key":"route","value":"horse","description":"🄿 Horseback Riding Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding-15.svg"},{"key":"route","value":"light_rail","description":"🄿 Light Rail Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/light_rail.svg"},{"key":"route","value":"monorail","description":"🄿 Monorail Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/monorail.svg"},{"key":"route","value":"mtb","description":"🄿 Mountain Biking Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle-15.svg"},{"key":"route","value":"pipeline","description":"🄿 Pipeline Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"},{"key":"route","value":"piste","description":"🄿 Piste/Ski Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"},{"key":"route","value":"power","description":"🄿 Power Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/power-line.svg"},{"key":"route","value":"railway","description":"🄿 Railway Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/railway_track.svg"},{"key":"route","value":"road","description":"🄿 Road Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-unclassified.svg"},{"key":"route","value":"subway","description":"🄿 Subway Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/subway.svg"},{"key":"route","value":"train","description":"🄿 Train Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/train.svg"},{"key":"route","value":"tram","description":"🄿 Tram Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/tram.svg"},{"key":"route","value":"trolleybus","description":"🄿 Trolleybus Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/trolleybus.svg"},{"key":"type","value":"site","description":"🄿 Site","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"type","value":"waterway","description":"🄿 Waterway","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"},{"key":"waterway","value":"boatyard","description":"🄿 Boatyard","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/boat.svg"},{"key":"waterway","value":"canal","description":"🄿 Canal","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"},{"key":"lock","value":"yes","description":"🄿 Canal Lock","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"},{"key":"waterway","value":"dam","description":"🄿 Dam","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"},{"key":"waterway","value":"ditch","description":"🄿 Ditch","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-ditch.svg"},{"key":"waterway","value":"dock","description":"🄿 Wet Dock / Dry Dock","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor-15.svg"},{"key":"waterway","value":"drain","description":"🄿 Drain","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-ditch.svg"},{"key":"waterway","value":"fish_pass","description":"🄿 Fish Pass","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/fish_ladder.svg"},{"key":"waterway","value":"fuel","description":"🄿 Marine Fuel Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel-15.svg"},{"key":"waterway","value":"lock_gate","description":"🄿 Lock Gate","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"},{"key":"waterway","value":"milestone","description":"🄿 Waterway Milestone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/milestone.svg"},{"key":"waterway","value":"river","description":"🄿 River","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"},{"key":"waterway","value":"sanitary_dump_station","description":"🄿 Marine Toilet Disposal","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/ideditor/temaki/icons/waste.svg"},{"key":"intermittent","value":"yes","description":"🄿 Intermittent Stream","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"},{"key":"waterway","value":"stream","description":"🄿 Stream","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"},{"key":"waterway","value":"tidal_channel","description":"🄿 Tidal Channel","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"},{"key":"waterway","value":"water_point","description":"🄿 Marine Drinking Water","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water-15.svg"},{"key":"waterway","value":"waterfall","description":"🄿 Waterfall","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waterfall-15.svg"},{"key":"waterway","value":"weir","description":"🄿 Weir","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam-15.svg"},{"key":"access_aisle","description":"🄵 Type"},{"key":"access","description":"🄵 Allowed Access"},{"key":"access","value":"yes","description":"🄵🅅 Allowed Access: Public, 🄵🅅 Allowed Access: `yes`"},{"key":"access","value":"private","description":"🄵🅅 Allowed Access: Private, 🄵🅅 Allowed Access: `private`"},{"key":"access","value":"permissive","description":"🄵🅅 Allowed Access: Permissive, 🄵🅅 Allowed Access: `permissive`"},{"key":"access","value":"customers","description":"🄵🅅 Allowed Access: Customers Only, 🄵🅅 Allowed Access: `customers`"},{"key":"access","value":"permit","description":"🄵🅅 Allowed Access: By Permit Only, 🄵🅅 Allowed Access: `permit`"},{"key":"access","value":"unknown","description":"🄵🅅 Allowed Access: Unknown, 🄵🅅 Allowed Access: `unknown`"},{"key":"access","value":"no","description":"🄵🅅 Allowed Access: None, 🄵🅅 Allowed Access: `no`"},{"key":"access","value":"designated","description":"🄵🅅 Allowed Access: `designated`"},{"key":"access","value":"destination","description":"🄵🅅 Allowed Access: `destination`"},{"key":"access","value":"dismount","description":"🄵🅅 Allowed Access: `dismount`"},{"key":"foot","description":"🄵 Allowed Access"},{"key":"foot","value":"yes","description":"🄵🅅 Allowed Access: `yes`"},{"key":"foot","value":"no","description":"🄵🅅 Allowed Access: `no`"},{"key":"foot","value":"permissive","description":"🄵🅅 Allowed Access: `permissive`"},{"key":"foot","value":"private","description":"🄵🅅 Allowed Access: `private`"},{"key":"foot","value":"destination","description":"🄵🅅 Allowed Access: `destination`"},{"key":"foot","value":"customers","description":"🄵🅅 Allowed Access: `customers`"},{"key":"foot","value":"dismount","description":"🄵🅅 Allowed Access: `dismount`"},{"key":"foot","value":"permit","description":"🄵🅅 Allowed Access: `permit`"},{"key":"foot","value":"unknown","description":"🄵🅅 Allowed Access: `unknown`"},{"key":"motor_vehicle","description":"🄵 Allowed Access"},{"key":"motor_vehicle","value":"yes","description":"🄵🅅 Allowed Access: `yes`"},{"key":"motor_vehicle","value":"no","description":"🄵🅅 Allowed Access: `no`"},{"key":"motor_vehicle","value":"permissive","description":"🄵🅅 Allowed Access: `permissive`"},{"key":"motor_vehicle","value":"private","description":"🄵🅅 Allowed Access: `private`"},{"key":"motor_vehicle","value":"designated","description":"🄵🅅 Allowed Access: `designated`"},{"key":"motor_vehicle","value":"destination","description":"🄵🅅 Allowed Access: `destination`"},{"key":"motor_vehicle","value":"customers","description":"🄵🅅 Allowed Access: `customers`"},{"key":"motor_vehicle","value":"dismount","description":"🄵🅅 Allowed Access: `dismount`"},{"key":"motor_vehicle","value":"permit","description":"🄵🅅 Allowed Access: `permit`"},{"key":"motor_vehicle","value":"unknown","description":"🄵🅅 Allowed Access: `unknown`"},{"key":"bicycle","description":"🄵 Allowed Access, 🄵 Activity"},{"key":"bicycle","value":"yes","description":"🄵🅅 Allowed Access: `yes`"},{"key":"bicycle","value":"no","description":"🄵🅅 Allowed Access: `no`"},{"key":"bicycle","value":"permissive","description":"🄵🅅 Allowed Access: `permissive`"},{"key":"bicycle","value":"private","description":"🄵🅅 Allowed Access: `private`"},{"key":"bicycle","value":"designated","description":"🄵🅅 Allowed Access: `designated`"},{"key":"bicycle","value":"destination","description":"🄵🅅 Allowed Access: `destination`"},{"key":"bicycle","value":"customers","description":"🄵🅅 Allowed Access: `customers`"},{"key":"bicycle","value":"dismount","description":"🄵🅅 Allowed Access: `dismount`"},{"key":"bicycle","value":"permit","description":"🄵🅅 Allowed Access: `permit`"},{"key":"bicycle","value":"unknown","description":"🄵🅅 Allowed Access: `unknown`"},{"key":"horse","description":"🄵 Allowed Access, 🄵 Activity"},{"key":"horse","value":"yes","description":"🄵🅅 Allowed Access: `yes`"},{"key":"horse","value":"no","description":"🄵🅅 Allowed Access: `no`"},{"key":"horse","value":"permissive","description":"🄵🅅 Allowed Access: `permissive`"},{"key":"horse","value":"private","description":"🄵🅅 Allowed Access: `private`"},{"key":"horse","value":"designated","description":"🄵🅅 Allowed Access: `designated`"},{"key":"horse","value":"destination","description":"🄵🅅 Allowed Access: `destination`"},{"key":"horse","value":"customers","description":"🄵🅅 Allowed Access: `customers`"},{"key":"horse","value":"dismount","description":"🄵🅅 Allowed Access: `dismount`"},{"key":"horse","value":"permit","description":"🄵🅅 Allowed Access: `permit`"},{"key":"horse","value":"unknown","description":"🄵🅅 Allowed Access: `unknown`"},{"key":"hiking","description":"🄵 Activity"},{"key":"mtb","description":"🄵 Activity"},{"key":"ski","description":"🄵 Activity"},{"key":"addr:interpolation","value":"all","description":"🄵🅅 Type: All"},{"key":"addr:interpolation","value":"even","description":"🄵🅅 Type: Even"},{"key":"addr:interpolation","value":"odd","description":"🄵🅅 Type: Odd"},{"key":"addr:interpolation","value":"alphabetic","description":"🄵🅅 Type: Alphabetic"},{"key":"addr:block_number","description":"🄵 Address"},{"key":"addr:city","description":"🄵 Address"},{"key":"addr:conscriptionnumber","description":"🄵 Address"},{"key":"addr:county","description":"🄵 Address"},{"key":"addr:country","description":"🄵 Address"},{"key":"addr:district","description":"🄵 Address"},{"key":"addr:floor","description":"🄵 Address"},{"key":"addr:hamlet","description":"🄵 Address"},{"key":"addr:housename","description":"🄵 Address"},{"key":"addr:housenumber","description":"🄵 Address"},{"key":"addr:neighbourhood","description":"🄵 Address"},{"key":"addr:place","description":"🄵 Address"},{"key":"addr:postcode","description":"🄵 Address"},{"key":"addr:province","description":"🄵 Address"},{"key":"addr:quarter","description":"🄵 Address"},{"key":"addr:state","description":"🄵 Address"},{"key":"addr:street","description":"🄵 Address"},{"key":"addr:subdistrict","description":"🄵 Address"},{"key":"addr:suburb","description":"🄵 Address"},{"key":"addr:unit","description":"🄵 Address"},{"key":"admin_level","description":"🄵 Admin Level"},{"key":"aerialway:access","description":"🄵 Access"},{"key":"aerialway:access","value":"entry","description":"🄵🅅 Access: Entry"},{"key":"aerialway:access","value":"exit","description":"🄵🅅 Access: Exit"},{"key":"aerialway:access","value":"both","description":"🄵🅅 Access: Both"},{"key":"aerialway:bubble","description":"🄵 Bubble"},{"key":"aerialway:capacity","description":"🄵 Capacity (per hour)"},{"key":"aerialway:duration","description":"🄵 Duration (minutes)"},{"key":"aerialway:heating","description":"🄵 Heated"},{"key":"aerialway:occupancy","description":"🄵 Occupancy"},{"key":"aerialway:summer:access","description":"🄵 Access (summer)"},{"key":"aerialway:summer:access","value":"entry","description":"🄵🅅 Access (summer): Entry"},{"key":"aerialway:summer:access","value":"exit","description":"🄵🅅 Access (summer): Exit"},{"key":"aerialway:summer:access","value":"both","description":"🄵🅅 Access (summer): Both"},{"key":"agrarian","description":"🄵 Products"},{"key":"air_conditioning","description":"🄵 Air Conditioning"},{"key":"animal_boarding","description":"🄵 For Animals"},{"key":"animal_breeding","description":"🄵 For Animals"},{"key":"animal_shelter","description":"🄵 For Animals"},{"key":"archaeological_site","description":"🄵 Type"},{"key":"architect","description":"🄵 Architect"},{"key":"artist_name","description":"🄵 Artist"},{"key":"artwork_type","description":"🄵 Type"},{"key":"artwork_type","value":"painting","description":"🄵🅅 Type: Painting"},{"key":"artwork_type","value":"mosaic","description":"🄵🅅 Type: Mosaic"},{"key":"artwork_type","value":"relief","description":"🄵🅅 Type: Relief"},{"key":"ascent","description":"🄵 Total Ascent"},{"key":"atm","description":"🄵 ATM"},{"key":"automated","description":"🄵 Automated"},{"key":"baby_feeding","description":"🄵 Baby Nursing Area"},{"key":"baby_feeding","value":"room","description":"🄵🅅 Baby Nursing Area: Dedicated Room"},{"key":"baby_feeding","value":"yes","description":"🄵🅅 Baby Nursing Area: Marked Space"},{"key":"baby_feeding","value":"no","description":"🄵🅅 Baby Nursing Area: None"},{"key":"baby","description":"🄵 Baby Seat"},{"key":"backcountry","description":"🄵 Backcountry"},{"key":"backrest","description":"🄵 Backrest"},{"key":"bar","description":"🄵 Bar"},{"key":"barrier","value":"planter","description":"🄵🅅 Barrier: Yes"},{"key":"basin","description":"🄵 Type"},{"key":"basin","value":"detention","description":"🄵🅅 Type: Detention"},{"key":"basin","value":"evaporation","description":"🄵🅅 Type: Evaporation"},{"key":"basin","value":"infiltration","description":"🄵🅅 Type: Infiltration"},{"key":"basin","value":"retention","description":"🄵🅅 Type: Retention"},{"key":"bath:open_air","description":"🄵 Open Air"},{"key":"bath:sand_bath","description":"🄵 Sand Bath"},{"key":"bath:type","description":"🄵 Specialty"},{"key":"beauty","description":"🄵 Services"},{"key":"beauty","value":"cosmetics","description":"🄵🅅 Services: Cosmetics"},{"key":"beauty","value":"spa","description":"🄵🅅 Services: Day Spa"},{"key":"beauty","value":"skin_care","description":"🄵🅅 Services: Skin Care"},{"key":"beauty","value":"waxing","description":"🄵🅅 Services: Waxing"},{"key":"beauty","value":"hair_removal","description":"🄵🅅 Services: Hair Removal"},{"key":"bench","description":"🄵 Bench"},{"key":"bicycle_parking","description":"🄵 Type"},{"key":"bicycle_parking","value":"stands","description":"🄵🅅 Type: Stand (supports bicycle frame)"},{"key":"bicycle_parking","value":"wall_loops","description":"🄵🅅 Type: Wheelbender (supports wheel only)"},{"key":"bicycle_parking","value":"handlebar_holder","description":"🄵🅅 Type: Handlebar Holder"},{"key":"bike_ride","description":"🄵 Bike and Ride"},{"key":"bin","description":"🄵 Waste Bin"},{"key":"blind","description":"🄵 Blind Person Access"},{"key":"blood:","description":"🄵 Blood Components"},{"key":"blood:whole","description":"🄵🅅 Blood Components: whole blood"},{"key":"blood:plasma","description":"🄵🅅 Blood Components: plasma"},{"key":"blood:platelets","description":"🄵🅅 Blood Components: platelets"},{"key":"blood:stemcells","description":"🄵🅅 Blood Components: stem cell samples"},{"key":"board_type","description":"🄵 Type"},{"key":"board_type","value":"art","description":"🄵🅅 Type: Art"},{"key":"board_type","value":"astronomy","description":"🄵🅅 Type: Astronomy"},{"key":"board_type","value":"geology","description":"🄵🅅 Type: Geology"},{"key":"board_type","value":"history","description":"🄵🅅 Type: History"},{"key":"board_type","value":"nature","description":"🄵🅅 Type: Nature"},{"key":"board_type","value":"notice","description":"🄵🅅 Type: Notice Board"},{"key":"board_type","value":"plants","description":"🄵🅅 Type: Plants"},{"key":"board_type","value":"wildlife","description":"🄵🅅 Type: Wildlife"},{"key":"bollard","description":"🄵 Type"},{"key":"bollard","value":"fixed","description":"🄵🅅 Type: Fixed Bollard"},{"key":"bollard","value":"flexible","description":"🄵🅅 Type: Flexible Bollard"},{"key":"bollard","value":"foldable","description":"🄵🅅 Type: Foldable Bollard"},{"key":"bollard","value":"removable","description":"🄵🅅 Type: Removable Bollard"},{"key":"bollard","value":"rising","description":"🄵🅅 Type: Rising Bollard"},{"key":"booth","description":"🄵 Booth"},{"key":"bottle","description":"🄵 Bottle Filling"},{"key":"boules","description":"🄵 Type"},{"key":"branch","description":"🄵 Branch"},{"key":"brand","description":"🄵 Brand"},{"key":"brewery","description":"🄵 Draft Beers"},{"key":"building:flats","description":"🄵 Units"},{"key":"building:levels","description":"🄵 Levels"},{"key":"building:levels:underground","description":"🄵 Underground Levels"},{"key":"building:material","description":"🄵 Material"},{"key":"building:prefabricated","description":"🄵 Prefabricated"},{"key":"bunker_type","description":"🄵 Type"},{"key":"button_operated","description":"🄵 Call Button"},{"key":"cables","description":"🄵 Cables"},{"key":"cai_scale","description":"🄵 Hiking Route Difficulty (Italian Alpine Club)"},{"key":"cai_scale","value":"T","description":"🄵🅅 Hiking Route Difficulty (Italian Alpine Club): T: Touristic"},{"key":"cai_scale","value":"E","description":"🄵🅅 Hiking Route Difficulty (Italian Alpine Club): E: For hikers"},{"key":"cai_scale","value":"EE","description":"🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EE: For expert hikers"},{"key":"cai_scale","value":"EEA","description":"🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EEA: For expert hikers with equipment"},{"key":"cai_scale","value":"EAI","description":"🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EAI: Hiking in snowy conditions"},{"key":"camera:direction","description":"🄵 Direction (Degrees Clockwise)"},{"key":"camera:mount","description":"🄵 Camera Mount"},{"key":"camera:type","description":"🄵 Camera Type"},{"key":"camera:type","value":"fixed","description":"🄵🅅 Camera Type: Fixed"},{"key":"camera:type","value":"panning","description":"🄵🅅 Camera Type: Panning"},{"key":"camera:type","value":"dome","description":"🄵🅅 Camera Type: Dome"},{"key":"capacity","description":"🄵 Total Spaces, 🄵 Capacity (Cubic Meters), 🄵 Capacity"},{"key":"capacity:caravans","description":"🄵 Capacity (Caravans)"},{"key":"capacity:disabled","description":"🄵 Accessible Spaces"},{"key":"capacity:persons","description":"🄵 Capacity (Persons)"},{"key":"capacity:tents","description":"🄵 Capacity (Tents)"},{"key":"cash_in","description":"🄵 Deposits"},{"key":"castle_type","description":"🄵 Type"},{"key":"castle_type","value":"defensive","description":"🄵🅅 Type: Defensive Castle"},{"key":"castle_type","value":"manor","description":"🄵🅅 Type: Manor House"},{"key":"castle_type","value":"castrum","description":"🄵🅅 Type: Roman Fort"},{"key":"castle_type","value":"shiro","description":"🄵🅅 Type: Shiro"},{"key":"castle_type","value":"kremlin","description":"🄵🅅 Type: Kremlin"},{"key":"castle_type","value":"hillfort","description":"🄵🅅 Type: Hillfort"},{"key":"changing_table","description":"🄵 Diaper Changing Table"},{"key":"charge","description":"🄵 Fee Amount, 🄵 Toll Amount"},{"key":"check_date","description":"🄵 Last Checked Date"},{"key":"circumference","description":"🄵 Circumference (at Breast Height)"},{"key":"clothes","description":"🄵 Clothes"},{"key":"collection_times","description":"🄵 Collection Times"},{"key":"collector","description":"🄵 Items"},{"key":"colour","description":"🄵 Color"},{"key":"comment","description":"🄵 Changeset Comment"},{"key":"communication:","description":"🄵 Communication Types"},{"key":"connectivity","description":"🄵 Connectivity"},{"key":"construction","description":"🄵 Type"},{"key":"consulate","description":"🄵 Type"},{"key":"consulting","description":"🄵 Expertise"},{"key":"contact:webcam","description":"🄵 Webcam URL"},{"key":"content","description":"🄵 Content"},{"key":"content","value":"silage","description":"🄵🅅 Content: `silage`"},{"key":"content","value":"oil","description":"🄵🅅 Content: `oil`"},{"key":"content","value":"fuel","description":"🄵🅅 Content: `fuel`"},{"key":"content","value":"slurry","description":"🄵🅅 Content: `slurry`"},{"key":"content","value":"gas","description":"🄵🅅 Content: `gas`"},{"key":"content","value":"manure","description":"🄵🅅 Content: `manure`"},{"key":"content","value":"sewage","description":"🄵🅅 Content: `sewage`"},{"key":"conveying","value":"forward","description":"🄵🅅 Movement Direction: Forward"},{"key":"conveying","value":"backward","description":"🄵🅅 Movement Direction: Backward"},{"key":"conveying","value":"reversible","description":"🄵🅅 Movement Direction: Reversible"},{"key":"country","description":"🄵 Flag Country, 🄵 Country"},{"key":"couplings","description":"🄵 Couplings"},{"key":"covered","description":"🄵 Covered"},{"key":"covered","value":"yes"},{"key":"covered","value":"no"},{"key":"craft","value":"builder","description":"🄵🅅 Type: Builder"},{"key":"craft","value":"grinding_mill","description":"🄵🅅 Type: Grinding Mill"},{"key":"craft","value":"jeweller","description":"🄵🅅 Type: Jeweller"},{"key":"craft","value":"oil_mill","description":"🄵🅅 Type: Oil Mill"},{"key":"crane:type","description":"🄵 Crane Type"},{"key":"crane:type","value":"floor-mounted_crane","description":"🄵🅅 Crane Type: Floor-mounted Crane"},{"key":"crane:type","value":"travel_lift","description":"🄵🅅 Crane Type: Travel Lift"},{"key":"crane:type","value":"tower_crane","description":"🄵🅅 Crane Type: Tower Crane"},{"key":"crop","description":"🄵 Crops"},{"key":"crop","value":"asparagus","description":"🄵🅅 Crops: Asparagus"},{"key":"crop","value":"barley","description":"🄵🅅 Crops: Barley"},{"key":"crop","value":"beet","description":"🄵🅅 Crops: Beets"},{"key":"crop","value":"cassava","description":"🄵🅅 Crops: Cassava"},{"key":"crop","value":"coffee","description":"🄵🅅 Crops: Coffee"},{"key":"crop","value":"cotton","description":"🄵🅅 Crops: Cotton"},{"key":"crop","value":"cranberries","description":"🄵🅅 Crops: Cranberries"},{"key":"crop","value":"fast_growing_wood","description":"🄵🅅 Crops: Short-Rotation Coppice"},{"key":"crop","value":"flowers","description":"🄵🅅 Crops: Flowers"},{"key":"crop","value":"grape","description":"🄵🅅 Crops: Grapes"},{"key":"crop","value":"grass","description":"🄵🅅 Crops: Grass"},{"key":"crop","value":"hop","description":"🄵🅅 Crops: Hops"},{"key":"crop","value":"lavender","description":"🄵🅅 Crops: Lavender"},{"key":"crop","value":"maize","description":"🄵🅅 Crops: Corn"},{"key":"crop","value":"potato","description":"🄵🅅 Crops: Potatoes"},{"key":"crop","value":"rape","description":"🄵🅅 Crops: Rapeseed"},{"key":"crop","value":"rice","description":"🄵🅅 Crops: Rice"},{"key":"crop","value":"strawberry","description":"🄵🅅 Crops: Strawberries"},{"key":"crop","value":"sugar_beet","description":"🄵🅅 Crops: Sugar Beets"},{"key":"crop","value":"sugarcane","description":"🄵🅅 Crops: Sugarcane"},{"key":"crop","value":"sunflower","description":"🄵🅅 Crops: Sunflowers"},{"key":"crop","value":"soy","description":"🄵🅅 Crops: Soybeans"},{"key":"crop","value":"tea","description":"🄵🅅 Crops: Tea"},{"key":"crop","value":"tobacco","description":"🄵🅅 Crops: Tobacco"},{"key":"crop","value":"vegetable","description":"🄵🅅 Crops: Vegetables"},{"key":"crop","value":"wheat","description":"🄵🅅 Crops: Wheat"},{"key":"crossing","description":"🄵 Type"},{"key":"crossing:barrier","description":"🄵 Barrier Arm"},{"key":"crossing:barrier","value":"full","description":"🄵🅅 Barrier Arm: Full"},{"key":"crossing:barrier","value":"double_half","description":"🄵🅅 Barrier Arm: Double Half"},{"key":"crossing:barrier","value":"half","description":"🄵🅅 Barrier Arm: Half"},{"key":"crossing:barrier","value":"no","description":"🄵🅅 Barrier Arm: No"},{"key":"crossing:barrier","value":"yes","description":"🄵🅅 Barrier Arm: Yes"},{"key":"crossing:bell","description":"🄵 Bell"},{"key":"crossing:island","description":"🄵 Refuge Island"},{"key":"crossing:light","description":"🄵 Lights"},{"key":"crossing:markings","description":"🄵 Crossing Markings"},{"key":"crossing:markings","value":"zebra","description":"🄵🅅 Crossing Markings: Longitudinal Bars"},{"key":"crossing:markings","value":"lines","description":"🄵🅅 Crossing Markings: Transverse Lines"},{"key":"crossing:markings","value":"no","description":"🄵🅅 Crossing Markings: Unmarked"},{"key":"crossing:markings","value":"ladder","description":"🄵🅅 Crossing Markings: Ladder With Longitudinal Bars"},{"key":"crossing:markings","value":"dots","description":"🄵🅅 Crossing Markings: Dotted Transverse Lines"},{"key":"crossing:markings","value":"dashes","description":"🄵🅅 Crossing Markings: Dashed Transverse Lines"},{"key":"crossing:markings","value":"yes","description":"🄵🅅 Crossing Markings: Marked Somehow"},{"key":"crossing:markings","value":"surface","description":"🄵🅅 Crossing Markings: Surface Treatment Only"},{"key":"crossing:markings","value":"ladder:skewed","description":"🄵🅅 Crossing Markings: Ladder With Diagonal Bars"},{"key":"crossing:markings","value":"pictograms","description":"🄵🅅 Crossing Markings: Painted Pictograms"},{"key":"crossing:markings","value":"lines:paired","description":"🄵🅅 Crossing Markings: Double Transverse Lines"},{"key":"crossing:markings","value":"zebra:double","description":"🄵🅅 Crossing Markings: Triple-Four"},{"key":"crossing:markings","value":"zebra:paired","description":"🄵🅅 Crossing Markings: Paired Longitudinal Bars"},{"key":"crossing:markings","value":"zebra:bicolour","description":"🄵🅅 Crossing Markings: Longitudinal Bars With Alternating Colors"},{"key":"crossing:markings","value":"ladder:paired","description":"🄵🅅 Crossing Markings: Ladder With Paired Longitudinal Bars"},{"key":"cuisine","description":"🄵 Cuisines"},{"key":"cuisine","value":"regional","description":"🄵🅅 Cuisines: Regional"},{"key":"cuisine","value":"fish","description":"🄵🅅 Cuisines: Fish"},{"key":"cuisine","value":"spanish","description":"🄵🅅 Cuisines: Spanish"},{"key":"cuisine","value":"portuguese","description":"🄵🅅 Cuisines: Portuguese"},{"key":"cuisine","value":"russian","description":"🄵🅅 Cuisines: Russian"},{"key":"cuisine","value":"polish","description":"🄵🅅 Cuisines: Polish"},{"key":"cuisine","value":"korean","description":"🄵🅅 Cuisines: Korean"},{"key":"cuisine","value":"lebanese","description":"🄵🅅 Cuisines: Lebanese"},{"key":"cuisine","value":"indonesian","description":"🄵🅅 Cuisines: Indonesian"},{"key":"cuisine","value":"malaysian","description":"🄵🅅 Cuisines: Malaysian"},{"key":"cuisine","value":"taiwanese","description":"🄵🅅 Cuisines: Taiwanese"},{"key":"cuisine","value":"cake","description":"🄵🅅 Cuisines: Cake"},{"key":"cuisine","value":"pankcake","description":"🄵🅅 Cuisines: Pancake"},{"key":"cuisine","value":"pasta","description":"🄵🅅 Cuisines: Pasta"},{"key":"cuisine","value":"salad","description":"🄵🅅 Cuisines: Salad"},{"key":"cuisine","value":"chocolate","description":"🄵🅅 Cuisines: Chocolate"},{"key":"cuisine","value":"dessert","description":"🄵🅅 Cuisines: Dessert"},{"key":"currency:","description":"🄵 Currency Types"},{"key":"cutting","description":"🄵 Type, 🄵 Structure"},{"key":"cycle_network","description":"🄵 Network"},{"key":"cycleway","description":"🄵 Bike Lanes"},{"key":"cycleway","value":"no","description":"🄵🅅 Bike Lanes: `no`"},{"key":"cycleway","value":"lane","description":"🄵🅅 Bike Lanes: `lane`"},{"key":"cycleway","value":"shared_lane","description":"🄵🅅 Bike Lanes: `shared_lane`"},{"key":"cycleway","value":"track","description":"🄵🅅 Bike Lanes: `track`"},{"key":"cycleway","value":"share_busway","description":"🄵🅅 Bike Lanes: `share_busway`"},{"key":"cycleway","value":"opposite_lane","description":"🄵🅅 Bike Lanes: `opposite_lane`"},{"key":"cycleway","value":"opposite","description":"🄵🅅 Bike Lanes: `opposite`"},{"key":"cycleway","value":"separate","description":"🄵🅅 Bike Lanes: `separate`"},{"key":"cycleway:left","description":"🄵 Bike Lanes"},{"key":"cycleway:left","value":"no","description":"🄵🅅 Bike Lanes: `no`"},{"key":"cycleway:left","value":"lane","description":"🄵🅅 Bike Lanes: `lane`"},{"key":"cycleway:left","value":"shared_lane","description":"🄵🅅 Bike Lanes: `shared_lane`"},{"key":"cycleway:left","value":"track","description":"🄵🅅 Bike Lanes: `track`"},{"key":"cycleway:left","value":"share_busway","description":"🄵🅅 Bike Lanes: `share_busway`"},{"key":"cycleway:left","value":"opposite_lane","description":"🄵🅅 Bike Lanes: `opposite_lane`"},{"key":"cycleway:left","value":"opposite","description":"🄵🅅 Bike Lanes: `opposite`"},{"key":"cycleway:left","value":"separate","description":"🄵🅅 Bike Lanes: `separate`"},{"key":"cycleway:right","description":"🄵 Bike Lanes"},{"key":"cycleway:right","value":"no","description":"🄵🅅 Bike Lanes: `no`"},{"key":"cycleway:right","value":"lane","description":"🄵🅅 Bike Lanes: `lane`"},{"key":"cycleway:right","value":"shared_lane","description":"🄵🅅 Bike Lanes: `shared_lane`"},{"key":"cycleway:right","value":"track","description":"🄵🅅 Bike Lanes: `track`"},{"key":"cycleway:right","value":"share_busway","description":"🄵🅅 Bike Lanes: `share_busway`"},{"key":"cycleway:right","value":"opposite_lane","description":"🄵🅅 Bike Lanes: `opposite_lane`"},{"key":"cycleway:right","value":"opposite","description":"🄵🅅 Bike Lanes: `opposite`"},{"key":"cycleway:right","value":"separate","description":"🄵🅅 Bike Lanes: `separate`"},{"key":"dance:style","description":"🄵 Dance Styles"},{"key":"date","description":"🄵 Date"},{"key":"defibrillator:location","description":"🄵 Location Description"},{"key":"delivery","description":"🄵 Delivery"},{"key":"denomination","description":"🄵 Denomination"},{"key":"denotation","description":"🄵 Denotation"},{"key":"departures_board","description":"🄵 Departures/Arrivals Board"},{"key":"departures_board","value":"yes","description":"🄵🅅 Departures/Arrivals Board: Yes"},{"key":"departures_board","value":"timetable","description":"🄵🅅 Departures/Arrivals Board: Timetable"},{"key":"departures_board","value":"realtime","description":"🄵🅅 Departures/Arrivals Board: Realtime"},{"key":"departures_board","value":"no","description":"🄵🅅 Departures/Arrivals Board: None"},{"key":"trolley:deposit","description":"🄵 Deposit"},{"key":"depth","description":"🄵 Depth (Meters)"},{"key":"descent","description":"🄵 Total Descent"},{"key":"description","description":"🄵 Description"},{"key":"design","description":"🄵 Design"},{"key":"destination","description":"🄵 Destination, 🄵 Destinations"},{"key":"destination:ref","description":"🄵 Destination Road Numbers"},{"key":"destination:symbol","description":"🄵 Destination Symbols"},{"key":"devices","description":"🄵 Devices"},{"key":"diameter_crown","description":"🄵 Crown Diameter"},{"key":"diameter","description":"🄵 Diameter"},{"key":"diet:","description":"🄵 Diet Types"},{"key":"diet:vegetarian","description":"🄵🅅 Diet Types: Vegetarian"},{"key":"diet:vegan","description":"🄵🅅 Diet Types: Vegan"},{"key":"diet:halal","description":"🄵🅅 Diet Types: Halal"},{"key":"diet:gluten_free","description":"🄵🅅 Diet Types: Gluten-Free"},{"key":"diet:kosher","description":"🄵🅅 Diet Types: Kosher"},{"key":"diet:lactose_free","description":"🄵🅅 Diet Types: Lactose-Free"},{"key":"diet:pescetarian","description":"🄵🅅 Diet Types: Pescetarian"},{"key":"diplomatic","description":"🄵 Type"},{"key":"diplomatic:services:","description":"🄵 Services"},{"key":"direction","description":"🄵 Direction, 🄵 Direction Affected, 🄵 Direction (Degrees Clockwise)"},{"key":"direction","value":"north","description":"🄵🅅 Direction: Northbound"},{"key":"direction","value":"south","description":"🄵🅅 Direction: Southbound"},{"key":"direction","value":"east","description":"🄵🅅 Direction: Eastbound"},{"key":"direction","value":"west","description":"🄵🅅 Direction: Westbound"},{"key":"direction","value":"clockwise","description":"🄵🅅 Direction: Clockwise"},{"key":"direction","value":"anticlockwise","description":"🄵🅅 Direction: Counterclockwise"},{"key":"direction","value":"forward","description":"🄵🅅 Direction Affected: Forward"},{"key":"direction","value":"backward","description":"🄵🅅 Direction Affected: Backward"},{"key":"direction","value":"both","description":"🄵🅅 Direction Affected: Both / All"},{"key":"dispensing","description":"🄵 Dispenses Prescriptions"},{"key":"display","description":"🄵 Display"},{"key":"display","value":"analog","description":"🄵🅅 Display: Analog"},{"key":"display","value":"digital","description":"🄵🅅 Display: Digital"},{"key":"display","value":"unorthodox","description":"🄵🅅 Display: Unorthodox"},{"key":"distance","description":"🄵 Distance"},{"key":"dock","description":"🄵 Type"},{"key":"dog","description":"🄵 Dogs"},{"key":"dog","value":"yes","description":"🄵🅅 Dogs: Allowed"},{"key":"dog","value":"leashed","description":"🄵🅅 Dogs: Leashed Only"},{"key":"dog","value":"no","description":"🄵🅅 Dogs: Not Allowed"},{"key":"door","description":"🄵 Type, 🄵 Door"},{"key":"drink:","description":"🄵 Drinks"},{"key":"drinking_water","description":"🄵 Drinking Water Available, 🄵 Drinkable"},{"key":"drive_through","description":"🄵 Drive-Through"},{"key":"duration","description":"🄵 Duration"},{"key":"ele","description":"🄵 Elevation (Meters)"},{"key":"electrified","description":"🄵 Electrification"},{"key":"electrified","value":"contact_line","description":"🄵🅅 Electrification: Contact Line"},{"key":"electrified","value":"rail","description":"🄵🅅 Electrification: Electrified Rail"},{"key":"electrified","value":"yes","description":"🄵🅅 Electrification: Yes (unspecified)"},{"key":"electrified","value":"no","description":"🄵🅅 Electrification: No"},{"key":"email","description":"🄵 Email"},{"key":"embankment","description":"🄵 Type, 🄵 Structure"},{"key":"embassy","description":"🄵 Type"},{"key":"embassy","value":"yes","description":"🄵🅅 Type: Embassy"},{"key":"embassy","value":"residence","description":"🄵🅅 Type: Official Residence of an Ambassador"},{"key":"embassy","value":"high_commission","description":"🄵🅅 Type: High Commission"},{"key":"embassy","value":"mission","description":"🄵🅅 Type: Diplomatic Mission"},{"key":"embassy","value":"branch_embassy","description":"🄵🅅 Type: Branch of an Embassy"},{"key":"embassy","value":"nunciature","description":"🄵🅅 Type: Diplomatic Mission of the Holy See"},{"key":"embassy","value":"delegation","description":"🄵🅅 Type: Delegation"},{"key":"embassy","value":"interests_section","description":"🄵🅅 Type: Interests Section"},{"key":"emergency_ward_entrance","description":"🄵 Type"},{"key":"enforcement","description":"🄵 Type"},{"key":"entrance","value":"yes","description":"🄵🅅 Type: Unspecified"},{"key":"entrance","value":"secondary","description":"🄵🅅 Type: Secondary"},{"key":"entrance","value":"service","description":"🄵🅅 Type: Service"},{"key":"entrance","value":"exit","description":"🄵🅅 Type: Exit Only"},{"key":"entrance","value":"entrance","description":"🄵🅅 Type: Entrance Only"},{"key":"entrance","value":"staircase","description":"🄵🅅 Type: Staircase"},{"key":"entrance","value":"home","description":"🄵🅅 Type: Private House or Apartment"},{"key":"entrance","value":"garage","description":"🄵🅅 Type: Garage Door"},{"key":"except","description":"🄵 Exceptions"},{"key":"expected_rcn_route_relations","description":"🄵 Adjacent Cycling Nodes"},{"key":"expected_rwn_route_relations","description":"🄵 Adjacent Walking Nodes"},{"key":"expressway","description":"🄵 Expressway"},{"key":"faces","description":"🄵 Faces"},{"key":"fax","description":"🄵 Fax"},{"key":"fee","description":"🄵 Fee"},{"key":"fence_type","description":"🄵 Type"},{"key":"fire_hydrant:diameter","description":"🄵 Diameter (mm, in, or letters)"},{"key":"fire_hydrant:position","description":"🄵 Position"},{"key":"fire_hydrant:position","value":"green","description":"🄵🅅 Position: Green/Grass"},{"key":"fire_hydrant:position","value":"lane","description":"🄵🅅 Position: Road Lane"},{"key":"fire_hydrant:position","value":"sidewalk","description":"🄵🅅 Position: Sidewalk"},{"key":"fire_hydrant:position","value":"parking_lot","description":"🄵🅅 Position: Parking Lot"},{"key":"fire_hydrant:pressure","description":"🄵 Pressure (bar)"},{"key":"fire_hydrant:type","description":"🄵 Shape"},{"key":"fire_hydrant:type","value":"pillar","description":"🄵🅅 Shape: Pillar/Aboveground"},{"key":"fire_hydrant:type","value":"underground","description":"🄵🅅 Shape: Underground"},{"key":"fire_hydrant:type","value":"wall","description":"🄵🅅 Shape: Wall"},{"key":"fire_hydrant:type","value":"pipe","description":"🄵🅅 Shape: Capped Pipe"},{"key":"fireplace","description":"🄵 Fireplace"},{"key":"fishing","description":"🄵 Fishing"},{"key":"fitness_station","description":"🄵 Equipment Type"},{"key":"fixme","description":"🄵 Fix Me"},{"key":"flag:name","description":"🄵 Flag Name"},{"key":"flag:type","description":"🄵 Flag Type"},{"key":"flag:wikidata","description":"🄵 Flag Wikidata"},{"key":"flag:wikipedia","description":"🄵 Flag Wikidata"},{"key":"flashing_lights","description":"🄵 Flashing Lights"},{"key":"flashing_lights","value":"button","description":"🄵🅅 Flashing Lights: `button`"},{"key":"flashing_lights","value":"always","description":"🄵🅅 Flashing Lights: `always`"},{"key":"flashing_lights","value":"sensor","description":"🄵🅅 Flashing Lights: `sensor`"},{"key":"flashing_lights","value":"button;sensor","description":"🄵🅅 Flashing Lights: `button;sensor`"},{"key":"flashing_lights","value":"no","description":"🄵🅅 Flashing Lights: No"},{"key":"flashing_lights","value":"yes","description":"🄵🅅 Flashing Lights: Yes"},{"key":"floating","description":"🄵 Floating"},{"key":"flood_prone","description":"🄵 Flood Prone"},{"key":"fountain","description":"🄵 Type"},{"key":"frequency","description":"🄵 Operating Frequency"},{"key":"from","description":"🄵 From"},{"key":"fuel","description":"🄵 Fuel"},{"key":"fuel:","description":"🄵 Fuel Types"},{"key":"fuel:diesel","description":"🄵🅅 Fuel Types: Diesel"},{"key":"fuel:octane_80","description":"🄵🅅 Fuel Types: Gasoline (80 Octane)"},{"key":"fuel:octane_92","description":"🄵🅅 Fuel Types: Gasoline (92 Octane)"},{"key":"fuel:octane_95","description":"🄵🅅 Fuel Types: Gasoline (95 Octane)"},{"key":"fuel:octane_98","description":"🄵🅅 Fuel Types: Gasoline (98 Octane)"},{"key":"fuel:octane_100","description":"🄵🅅 Fuel Types: Gasoline (100 Octane)"},{"key":"fuel:lpg","description":"🄵🅅 Fuel Types: Liquefied Natural Gas (LPG)"},{"key":"fuel:cng","description":"🄵🅅 Fuel Types: Compressed Natural Gas (CNG)"},{"key":"fuel:GTL_diesel","description":"🄵🅅 Fuel Types: GTL Diesel"},{"key":"fuel:HGV_diesel","description":"🄵🅅 Fuel Types: Truck Diesel"},{"key":"fuel:biodiesel","description":"🄵🅅 Fuel Types: Biodiesel"},{"key":"fuel:octane_85","description":"🄵🅅 Fuel Types: Gasoline (85 Octane)"},{"key":"fuel:octane_87","description":"🄵🅅 Fuel Types: Gasoline (87 Octane)"},{"key":"fuel:octane_88","description":"🄵🅅 Fuel Types: Gasoline (88 Octane)"},{"key":"fuel:octane_89","description":"🄵🅅 Fuel Types: Gasoline (89 Octane)"},{"key":"fuel:octane_90","description":"🄵🅅 Fuel Types: Gasoline (90 Octane)"},{"key":"fuel:octane_91","description":"🄵🅅 Fuel Types: Gasoline (91 Octane)"},{"key":"fuel:octane_93","description":"🄵🅅 Fuel Types: Gasoline (93 Octane)"},{"key":"fuel:octane_97","description":"🄵🅅 Fuel Types: Gasoline (97 Octane)"},{"key":"fuel:e10","description":"🄵🅅 Fuel Types: E10 Gasoline"},{"key":"fuel:e85","description":"🄵🅅 Fuel Types: E85 Gasoline"},{"key":"fuel:propane","description":"🄵🅅 Fuel Types: Propane"},{"key":"fuel:LH2","description":"🄵🅅 Fuel Types: Liquid Hydrogen"},{"key":"fuel:h70","description":"🄵🅅 Fuel Types: Gaseous Hydrogen (700 bar)"},{"key":"fuel:adblue","description":"🄵🅅 Fuel Types: AdBlue / AUS 32"},{"key":"fuel:adblue:canister","description":"🄵🅅 Fuel Types: AdBlue / AUS 32 (sold in canisters)"},{"key":"gambling","description":"🄵 Games"},{"key":"garden:type","description":"🄵 Garden Type"},{"key":"gauge","description":"🄵 Gauge"},{"key":"male","description":"🄵 Gender"},{"key":"female","description":"🄵 Gender"},{"key":"unisex","description":"🄵 Gender"},{"key":"generator:method","description":"🄵 Method"},{"key":"generator:method","value":"fusion","description":"🄵🅅 Method: Fusion"},{"key":"generator:method","value":"wind_turbine","description":"🄵🅅 Method: Wind Turbine"},{"key":"generator:method","value":"water-storage","description":"🄵🅅 Method: Reservoir"},{"key":"generator:method","value":"water-pumped-storage","description":"🄵🅅 Method: Pumped-Storage"},{"key":"generator:method","value":"run-of-the-river","description":"🄵🅅 Method: Run-of-the-River"},{"key":"generator:method","value":"barrage","description":"🄵🅅 Method: Tidal Barrage"},{"key":"generator:method","value":"stream","description":"🄵🅅 Method: Tidal Stream"},{"key":"generator:method","value":"thermal","description":"🄵🅅 Method: Solar Thermal"},{"key":"generator:method","value":"combustion","description":"🄵🅅 Method: Combustion"},{"key":"generator:method","value":"gasification","description":"🄵🅅 Method: Gasification"},{"key":"generator:method","value":"anaerobic_digestion","description":"🄵🅅 Method: Anaerobic Digestion"},{"key":"generator:output:electricity","description":"🄵 Power Output"},{"key":"generator:source","description":"🄵 Source"},{"key":"generator:source","value":"nuclear","description":"🄵🅅 Source: Nuclear Power"},{"key":"generator:source","value":"tidal","description":"🄵🅅 Source: Tidal Power"},{"key":"generator:source","value":"wave","description":"🄵🅅 Source: Wave Power"},{"key":"generator:source","value":"geothermal","description":"🄵🅅 Source: Geothermal Energy"},{"key":"generator:source","value":"solar","description":"🄵🅅 Source: Solar Radiation"},{"key":"generator:source","value":"coal","description":"🄵🅅 Source: Coal"},{"key":"generator:source","value":"gas","description":"🄵🅅 Source: Natural Gas"},{"key":"generator:source","value":"biomass","description":"🄵🅅 Source: Plant Matter"},{"key":"generator:source","value":"biofuel","description":"🄵🅅 Source: Plant Based Fuels"},{"key":"generator:source","value":"biogas","description":"🄵🅅 Source: Biogas"},{"key":"generator:source","value":"oil","description":"🄵🅅 Source: Oil"},{"key":"generator:source","value":"diesel","description":"🄵🅅 Source: Diesel"},{"key":"generator:source","value":"gasoline","description":"🄵🅅 Source: Gasoline"},{"key":"generator:source","value":"waste","description":"🄵🅅 Source: Waste"},{"key":"generator:source","value":"battery","description":"🄵🅅 Source: Battery"},{"key":"generator:type","description":"🄵 Type"},{"key":"genus","description":"🄵 Genus"},{"key":"geyser:height","description":"🄵 Eruption Height"},{"key":"gnis:feature_id","description":"🄵 GNIS Feature ID"},{"key":"government","description":"🄵 Type"},{"key":"grades","description":"🄵 Grade Levels"},{"key":"grape_variety","description":"🄵 Grape Varieties"},{"key":"group_only","description":"🄵 Groups Only"},{"key":"guest_house","description":"🄵 Type"},{"key":"handicap","description":"🄵 Handicap"},{"key":"handrail","description":"🄵 Handrail"},{"key":"hashtags","description":"🄵 Hashtags"},{"key":"healthcare:speciality","description":"🄵 Specialties"},{"key":"healthcare:speciality","value":"acupuncture","description":"🄵🅅 Specialties: Acupuncture"},{"key":"healthcare:speciality","value":"anaesthetics","description":"🄵🅅 Specialties: Anesthesiology"},{"key":"healthcare:speciality","value":"angiology","description":"🄵🅅 Specialties: Angiology"},{"key":"healthcare:speciality","value":"anthroposophical","description":"🄵🅅 Specialties: Anthroposophic Medicine"},{"key":"healthcare:speciality","value":"applied_kinesiology","description":"🄵🅅 Specialties: Applied Kinesiology"},{"key":"healthcare:speciality","value":"aromatherapy","description":"🄵🅅 Specialties: Aromatherapy"},{"key":"healthcare:speciality","value":"ayurveda","description":"🄵🅅 Specialties: Ayurveda"},{"key":"healthcare:speciality","value":"behavior","description":"🄵🅅 Specialties: Behavior Therapy"},{"key":"healthcare:speciality","value":"biochemistry","description":"🄵🅅 Specialties: Biochemistry"},{"key":"healthcare:speciality","value":"biology","description":"🄵🅅 Specialties: Biology"},{"key":"healthcare:speciality","value":"blood_check","description":"🄵🅅 Specialties: Blood Test"},{"key":"healthcare:speciality","value":"body","description":"🄵🅅 Specialties: Body Therapy"},{"key":"healthcare:speciality","value":"cardiothoracic_surgery","description":"🄵🅅 Specialties: Cardiothoracic Surgery"},{"key":"healthcare:speciality","value":"child_psychiatry","description":"🄵🅅 Specialties: Child & Adolescent Psychiatry"},{"key":"healthcare:speciality","value":"clinical_pathology","description":"🄵🅅 Specialties: Clinical Pathology"},{"key":"healthcare:speciality","value":"community","description":"🄵🅅 Specialties: Community & Public Health"},{"key":"healthcare:speciality","value":"depth","description":"🄵🅅 Specialties: Depth Psychology"},{"key":"healthcare:speciality","value":"dermatovenereology","description":"🄵🅅 Specialties: Dermatovenereology"},{"key":"healthcare:speciality","value":"diabetology","description":"🄵🅅 Specialties: Diabetology"},{"key":"healthcare:speciality","value":"diagnostic_radiology","description":"🄵🅅 Specialties: Diagnostic Radiology"},{"key":"healthcare:speciality","value":"emergency","description":"🄵🅅 Specialties: Emergency Medicine"},{"key":"healthcare:speciality","value":"endocrinology","description":"🄵🅅 Specialties: Endocrinology"},{"key":"healthcare:speciality","value":"geriatrics","description":"🄵🅅 Specialties: Geriatric Medicine"},{"key":"healthcare:speciality","value":"hepatology","description":"🄵🅅 Specialties: Hepatology"},{"key":"healthcare:speciality","value":"herbalism","description":"🄵🅅 Specialties: Herbalism"},{"key":"healthcare:speciality","value":"homeopathy","description":"🄵🅅 Specialties: Homeopathy"},{"key":"healthcare:speciality","value":"humanistic","description":"🄵🅅 Specialties: Humanistic Psychology"},{"key":"healthcare:speciality","value":"hydrotherapy","description":"🄵🅅 Specialties: Hydrotherapy"},{"key":"healthcare:speciality","value":"hypnosis","description":"🄵🅅 Specialties: Hypnosis"},{"key":"healthcare:speciality","value":"infectious_diseases","description":"🄵🅅 Specialties: Infectious Disease"},{"key":"healthcare:speciality","value":"intensive","description":"🄵🅅 Specialties: Intensive Care"},{"key":"healthcare:speciality","value":"dental_oral_maxillo_facial_surgery","description":"🄵🅅 Specialties: Dental, Oral & Maxillofacial Surgery"},{"key":"healthcare:speciality","value":"naturopathy","description":"🄵🅅 Specialties: Naturopathy"},{"key":"healthcare:speciality","value":"neonatology","description":"🄵🅅 Specialties: Neonatology"},{"key":"healthcare:speciality","value":"neuropsychiatry","description":"🄵🅅 Specialties: Neuropsychiatry"},{"key":"healthcare:speciality","value":"nuclear","description":"🄵🅅 Specialties: Nuclear Medicine"},{"key":"healthcare:speciality","value":"occupational","description":"🄵🅅 Specialties: Occupational Medicine"},{"key":"healthcare:speciality","value":"osteopathy","description":"🄵🅅 Specialties: Osteopathy"},{"key":"healthcare:speciality","value":"paediatric_surgery","description":"🄵🅅 Specialties: Pediatric Surgery"},{"key":"healthcare:speciality","value":"palliative","description":"🄵🅅 Specialties: Palliative Care"},{"key":"healthcare:speciality","value":"physiatry","description":"🄵🅅 Specialties: Physical Medicine & Rehabilitation"},{"key":"healthcare:speciality","value":"psychiatry","description":"🄵🅅 Specialties: Psychiatry"},{"key":"healthcare:speciality","value":"radiotherapy","description":"🄵🅅 Specialties: Radiotherapy"},{"key":"healthcare:speciality","value":"reflexology","description":"🄵🅅 Specialties: Reflexology"},{"key":"healthcare:speciality","value":"reiki","description":"🄵🅅 Specialties: Reiki"},{"key":"healthcare:speciality","value":"shiatsu","description":"🄵🅅 Specialties: Shiatsu"},{"key":"healthcare:speciality","value":"stomatology","description":"🄵🅅 Specialties: Stomatology"},{"key":"healthcare:speciality","value":"systemic","description":"🄵🅅 Specialties: Systemic Therapy"},{"key":"healthcare:speciality","value":"traditional_chinese_medicine","description":"🄵🅅 Specialties: Traditional Chinese Medicine"},{"key":"healthcare:speciality","value":"transplant","description":"🄵🅅 Specialties: Transplant Surgery"},{"key":"healthcare:speciality","value":"tropical","description":"🄵🅅 Specialties: Tropical Medicine"},{"key":"healthcare:speciality","value":"tuina","description":"🄵🅅 Specialties: Tuī ná"},{"key":"healthcare:speciality","value":"unani","description":"🄵🅅 Specialties: Unani Medicine"},{"key":"healthcare:speciality","value":"vaccination","description":"🄵🅅 Specialties: Vaccination"},{"key":"healthcare:speciality","value":"vascular_surgery","description":"🄵🅅 Specialties: Vascular Surgery"},{"key":"heating","description":"🄵 Heating"},{"key":"height","description":"🄵 Building Height (Meters), 🄵 Height (Meters)"},{"key":"height:hub","description":"🄵 Height of Hub (Meters)"},{"key":"highchair","description":"🄵 High Chair"},{"key":"highspeed","description":"🄵 High-Speed"},{"key":"historic:civilization","description":"🄵 Historic Civilization"},{"key":"wreck:date_sunk","description":"🄵 Date Sunk"},{"key":"wreck:visible_at_high_tide","description":"🄵 Visible At High Tide"},{"key":"wreck:visible_at_low_tide","description":"🄵 Visible At Low Tide"},{"key":"holding_position:type","description":"🄵 Type"},{"key":"holding_position:type","value":"runway","description":"🄵🅅 Type: Runway"},{"key":"holding_position:type","value":"intermediate","description":"🄵🅅 Type: Taxiway-Taxiway Intersection"},{"key":"holding_position:type","value":"ILS","description":"🄵🅅 Type: Instrument Landing System"},{"key":"hoops","description":"🄵 Hoops"},{"key":"sport","description":"🄵 Dressage Riding, 🄵 Sports"},{"key":"horse_scale","description":"🄵 Horseback Riding Difficulty"},{"key":"horse_scale","value":"common","description":"🄵🅅 Horseback Riding Difficulty: Easy: No problems or difficulties. (default)"},{"key":"horse_scale","value":"demanding","description":"🄵🅅 Horseback Riding Difficulty: Use with caution: Uneven way, occasional difficult passages."},{"key":"horse_scale","value":"difficult","description":"🄵🅅 Horseback Riding Difficulty: Difficult: Way narrow and exposed. May contain obstacles to step over and narrow passages."},{"key":"horse_scale","value":"critical","description":"🄵🅅 Horseback Riding Difficulty: Borderline: Passable only for experienced riders and horses. Major obstacles. Bridges should be examined carefully."},{"key":"horse_scale","value":"dangerous","description":"🄵🅅 Horseback Riding Difficulty: Dangerous: Passable only for very experienced riders and horses and only in good weather. Dismount."},{"key":"horse_scale","value":"impossible","description":"🄵🅅 Horseback Riding Difficulty: Impassable: Way or bridge not passable for horses. Too narrow, insuffient support, obstacles like ladders. Danger of life."},{"key":"amenity","value":"stables","description":"🄵🅅 Riding Stable: Yes"},{"key":"hot_water","description":"🄵 Hot Water"},{"key":"iata","description":"🄵 IATA Airport Code"},{"key":"icao","description":"🄵 ICAO Airport Code"},{"key":"image","description":"🄵 Image"},{"key":"incline","description":"🄵 Incline"},{"key":"incline","value":"up"},{"key":"incline","value":"down"},{"key":"industrial","description":"🄵 Type"},{"key":"informal","description":"🄵 Informal"},{"key":"information","description":"🄵 Type"},{"key":"inscription","description":"🄵 Inscription"},{"key":"intermittent","description":"🄵 Intermittent"},{"key":"internet_access","description":"🄵 Internet Connection"},{"key":"internet_access","value":"yes","description":"🄵🅅 Internet Connection: Yes"},{"key":"internet_access","value":"no","description":"🄵🅅 Internet Connection: No"},{"key":"internet_access","value":"wired","description":"🄵🅅 Internet Connection: Wired"},{"key":"internet_access","value":"terminal","description":"🄵🅅 Internet Connection: Terminal"},{"key":"internet_access:fee","description":"🄵 Internet Access"},{"key":"internet_access:fee","value":"no","description":"🄵🅅 Internet Access: Free"},{"key":"internet_access:fee","value":"yes","description":"🄵🅅 Internet Access: Paid"},{"key":"internet_access:fee","value":"customers","description":"🄵🅅 Internet Access: Customers Only"},{"key":"internet_access:ssid","description":"🄵 Wifi Network Name"},{"key":"interval","description":"🄵 Interval"},{"key":"junction","description":"🄵 Junction"},{"key":"junction","value":"roundabout","description":"🄵🅅 Junction: Roundabout"},{"key":"junction","value":"circular","description":"🄵🅅 Junction: Traffic Circle"},{"key":"junction","value":"jughandle","description":"🄵🅅 Junction: Jughandle"},{"key":"junction:ref","description":"🄵 Junction Number"},{"key":"kerb","description":"🄵 Curb"},{"key":"kerb:height","description":"🄵 Height"},{"key":"kitchen","description":"🄵 Kitchen"},{"key":"kneipp_water_cure:","description":"🄵 Basin Types"},{"key":"label","description":"🄵 Label"},{"key":"lamp_mount","description":"🄵 Mount"},{"key":"lamp_type","description":"🄵 Type"},{"key":"lane_markings","description":"🄵 Lane Markings"},{"key":"lanes","description":"🄵 Lanes"},{"key":"language:","description":"🄵 Languages"},{"key":"layer","description":"🄵 Layer"},{"key":"leaf_cycle","description":"🄵 Leaf Cycle"},{"key":"leaf_cycle","value":"evergreen","description":"🄵🅅 Leaf Cycle: Evergreen"},{"key":"leaf_cycle","value":"deciduous","description":"🄵🅅 Leaf Cycle: Deciduous"},{"key":"leaf_cycle","value":"semi_evergreen","description":"🄵🅅 Leaf Cycle: Semi-Evergreen"},{"key":"leaf_cycle","value":"semi_deciduous","description":"🄵🅅 Leaf Cycle: Semi-Deciduous"},{"key":"leaf_cycle","value":"mixed","description":"🄵🅅 Leaf Cycle: Mixed"},{"key":"leaf_type","description":"🄵 Leaf Type"},{"key":"leaf_type","value":"broadleaved","description":"🄵🅅 Leaf Type: `broadleaved`, 🄵🅅 Leaf Type: Broadleaved"},{"key":"leaf_type","value":"needleleaved","description":"🄵🅅 Leaf Type: `needleleaved`, 🄵🅅 Leaf Type: Needleleaved"},{"key":"leaf_type","value":"leafless","description":"🄵🅅 Leaf Type: `leafless`, 🄵🅅 Leaf Type: Leafless"},{"key":"leaf_type","value":"mixed","description":"🄵🅅 Leaf Type: Mixed"},{"key":"length","description":"🄵 Length (Meters)"},{"key":"level","description":"🄵 Levels, 🄵 Level"},{"key":"liaison","description":"🄵 Type"},{"key":"license_classes","description":"🄵 Classes of Driver’s License"},{"key":"lifeguard","description":"🄵 Lifeguard"},{"key":"line_attachment","description":"🄵 Line Attachment"},{"key":"line_management","description":"🄵 Line Management"},{"key":"lit","description":"🄵 Lit"},{"key":"location","description":"🄵 Location"},{"key":"location","value":"outdoor"},{"key":"location","value":"indoor"},{"key":"lock","description":"🄵 Lock"},{"key":"lockable","description":"🄵 Lockable"},{"key":"locked","description":"🄵 Locked"},{"key":"manhole","description":"🄵 Type"},{"key":"manufacturer","description":"🄵 Manufacturer"},{"key":"map_size","description":"🄵 Coverage"},{"key":"map_type","description":"🄵 Type"},{"key":"mapillary","description":"🄵 Mapillary Image ID"},{"key":"material","description":"🄵 Material"},{"key":"mattress","description":"🄵 Mattresses Available"},{"key":"max_age","description":"🄵 Maximum Age"},{"key":"maxheight","description":"🄵 Max Height"},{"key":"maxspeed","description":"🄵 Speed Limit"},{"key":"maxspeed:advisory","description":"🄵 Advisory Speed Limit"},{"key":"maxspeed:hgv","description":"🄵 Truck Speed Limit"},{"key":"maxstay","description":"🄵 Max Stay"},{"key":"maxstay","value":"15 minutes","description":"🄵🅅 Max Stay: `15 minutes`"},{"key":"maxstay","value":"30 minutes","description":"🄵🅅 Max Stay: `30 minutes`"},{"key":"maxstay","value":"45 minutes","description":"🄵🅅 Max Stay: `45 minutes`"},{"key":"maxstay","value":"1 hour","description":"🄵🅅 Max Stay: `1 hour`"},{"key":"maxstay","value":"1.5 hours","description":"🄵🅅 Max Stay: `1.5 hours`"},{"key":"maxstay","value":"2 hours","description":"🄵🅅 Max Stay: `2 hours`"},{"key":"maxstay","value":"2.5 hours","description":"🄵🅅 Max Stay: `2.5 hours`"},{"key":"maxstay","value":"3 hours","description":"🄵🅅 Max Stay: `3 hours`"},{"key":"maxstay","value":"4 hours","description":"🄵🅅 Max Stay: `4 hours`"},{"key":"maxstay","value":"1 day","description":"🄵🅅 Max Stay: `1 day`"},{"key":"maxstay","value":"2 days","description":"🄵🅅 Max Stay: `2 days`"},{"key":"maxweight","description":"🄵 Max Weight"},{"key":"maxwidth","description":"🄵 Max Width"},{"key":"memorial","description":"🄵 Type"},{"key":"microbrewery","description":"🄵 Microbrewery"},{"key":"military_service","description":"🄵 Military Service"},{"key":"mimics","description":"🄵 Mimics"},{"key":"min_age","description":"🄵 Minimum Age"},{"key":"min_height","description":"🄵 Height of Bottom (Meters)"},{"key":"minspeed","description":"🄵 Minimum Speed Limit"},{"key":"model","description":"🄵 Model"},{"key":"monitoring:","description":"🄵 Monitoring"},{"key":"mtb:scale","description":"🄵 Mountain Biking Difficulty"},{"key":"mtb:scale","value":"0","description":"🄵🅅 Mountain Biking Difficulty: 0: Solid gravel/packed earth, no obstacles, wide curves"},{"key":"mtb:scale","value":"1","description":"🄵🅅 Mountain Biking Difficulty: 1: Some loose surface, small obstacles, wide curves"},{"key":"mtb:scale","value":"2","description":"🄵🅅 Mountain Biking Difficulty: 2: Much loose surface, large obstacles, easy hairpins"},{"key":"mtb:scale","value":"3","description":"🄵🅅 Mountain Biking Difficulty: 3: Slippery surface, large obstacles, tight hairpins"},{"key":"mtb:scale","value":"4","description":"🄵🅅 Mountain Biking Difficulty: 4: Loose surface or boulders, dangerous hairpins"},{"key":"mtb:scale","value":"5","description":"🄵🅅 Mountain Biking Difficulty: 5: Maximum difficulty, boulder fields, landslides"},{"key":"mtb:scale","value":"6","description":"🄵🅅 Mountain Biking Difficulty: 6: Not rideable except by the very best mountain bikers"},{"key":"mtb:scale:imba","description":"🄵 IMBA Trail Difficulty"},{"key":"mtb:scale:imba","value":"0","description":"🄵🅅 IMBA Trail Difficulty: ⚪ Easiest (white circle)"},{"key":"mtb:scale:imba","value":"1","description":"🄵🅅 IMBA Trail Difficulty: 🟢 Easy (green circle)"},{"key":"mtb:scale:imba","value":"2","description":"🄵🅅 IMBA Trail Difficulty: 🟦 Medium (blue square)"},{"key":"mtb:scale:imba","value":"3","description":"🄵🅅 IMBA Trail Difficulty: ◆ Difficult (black diamond)"},{"key":"mtb:scale:imba","value":"4","description":"🄵🅅 IMBA Trail Difficulty: ◆◆ Extremely Difficult (double black diamond)"},{"key":"mtb:scale:uphill","description":"🄵 Mountain Biking Uphill Difficulty"},{"key":"mtb:scale:uphill","value":"0","description":"🄵🅅 Mountain Biking Uphill Difficulty: 0: Avg. incline <10%, gravel/packed earth, no obstacles"},{"key":"mtb:scale:uphill","value":"1","description":"🄵🅅 Mountain Biking Uphill Difficulty: 1: Avg. incline <15%, gravel/packed earth, few small objects"},{"key":"mtb:scale:uphill","value":"2","description":"🄵🅅 Mountain Biking Uphill Difficulty: 2: Avg. incline <20%, stable surface, fistsize rocks/roots"},{"key":"mtb:scale:uphill","value":"3","description":"🄵🅅 Mountain Biking Uphill Difficulty: 3: Avg. incline <25%, variable surface, fistsize rocks/branches"},{"key":"mtb:scale:uphill","value":"4","description":"🄵🅅 Mountain Biking Uphill Difficulty: 4: Avg. incline <30%, poor condition, big rocks/branches"},{"key":"mtb:scale:uphill","value":"5","description":"🄵🅅 Mountain Biking Uphill Difficulty: 5: Very steep, bike generally needs to be pushed or carried"},{"key":"museum","description":"🄵 Type"},{"key":"name","description":"🄵 Name"},{"key":"network","description":"🄵 Network Class, 🄵 Network"},{"key":"network","value":"lcn","description":"🄵🅅 Network Class: Local"},{"key":"network","value":"rcn","description":"🄵🅅 Network Class: Regional"},{"key":"network","value":"ncn","description":"🄵🅅 Network Class: National"},{"key":"network","value":"icn","description":"🄵🅅 Network Class: International"},{"key":"network","value":"lwn","description":"🄵🅅 Network Class: Local"},{"key":"network","value":"rwn","description":"🄵🅅 Network Class: Regional"},{"key":"network","value":"nwn","description":"🄵🅅 Network Class: National"},{"key":"network","value":"iwn","description":"🄵🅅 Network Class: International"},{"key":"network","value":"lhn","description":"🄵🅅 Network Class: Local"},{"key":"network","value":"rhn","description":"🄵🅅 Network Class: Regional"},{"key":"network","value":"nhn","description":"🄵🅅 Network Class: National"},{"key":"network","value":"ihn","description":"🄵🅅 Network Class: International"},{"key":"network:type","description":"🄵 Network Type"},{"key":"not:name","description":"🄵 Incorrect Names"},{"key":"note","description":"🄵 Note"},{"key":"oneway","description":"🄵 One Way"},{"key":"oneway","value":"yes","description":"🄵🅅 One Way: Yes"},{"key":"oneway","value":"no","description":"🄵🅅 One Way: No"},{"key":"oneway","value":"reversible","description":"🄵🅅 One Way: Reversible"},{"key":"oneway","value":"alternating","description":"🄵🅅 One Way: Alternating"},{"key":"oneway:bicycle","description":"🄵 One Way (Bicycles)"},{"key":"openfire","description":"🄵 Open Fires Allowed"},{"key":"opening_date","description":"🄵 Expected Opening Date"},{"key":"opening_hours","description":"🄵 Hours"},{"key":"opening_hours:covid19","description":"🄵 COVID-19 Pandemic Hours"},{"key":"operator","description":"🄵 Operator"},{"key":"operator:type","description":"🄵 Operator Type"},{"key":"organic","description":"🄵 Organic Products"},{"key":"organic","value":"no","description":"🄵🅅 Organic Products: None"},{"key":"organic","value":"yes","description":"🄵🅅 Organic Products: Some"},{"key":"outdoor_seating","description":"🄵 Outdoor Seating"},{"key":"par","description":"🄵 Par"},{"key":"parcel_mail_in","description":"🄵 Parcel Dropoff"},{"key":"parcel_pickup","description":"🄵 Parcel Pickup"},{"key":"parcel_pickup","value":"yes","description":"🄵🅅 Parcel Pickup: Yes"},{"key":"parcel_pickup","value":"no","description":"🄵🅅 Parcel Pickup: No"},{"key":"park_ride","description":"🄵 Park and Ride"},{"key":"parking","description":"🄵 Type"},{"key":"parking","value":"surface","description":"🄵🅅 Type: `surface`, 🄵🅅 Type: Surface"},{"key":"parking_space","description":"🄵 Type"},{"key":"parking","value":"lane","description":"🄵🅅 Type: Roadside Lane"},{"key":"parking","value":"carports","description":"🄵🅅 Type: Carports"},{"key":"parking","value":"garage_boxes","description":"🄵🅅 Type: Garage Boxes"},{"key":"parking","value":"rooftop","description":"🄵🅅 Type: Rooftop"},{"key":"parking","value":"sheds","description":"🄵🅅 Type: Sheds"},{"key":"parking","value":"layby","description":"🄵🅅 Type: Turnout / Lay-By"},{"key":"parking:orientation","description":"🄵 Orientation"},{"key":"parking:orientation","value":"parallel","description":"🄵🅅 Orientation: Parallel to the Street"},{"key":"parking:orientation","value":"diagonal","description":"🄵🅅 Orientation: Diagonal in Relation to the Street"},{"key":"parking:orientation","value":"perpendicular","description":"🄵🅅 Orientation: Meets the Street at a Straight Angle"},{"key":"payment:","description":"🄵 Payment Types"},{"key":"payment:account_cards","description":"🄵🅅 Payment Types: Account Card"},{"key":"payment:app","description":"🄵🅅 Payment Types: Mobile Application"},{"key":"payment:cards","description":"🄵🅅 Payment Types: Payment Card"},{"key":"payment:cash","description":"🄵🅅 Payment Types: Cash"},{"key":"payment:cheque","description":"🄵🅅 Payment Types: Check"},{"key":"payment:coins","description":"🄵🅅 Payment Types: Coins"},{"key":"payment:contactless","description":"🄵🅅 Payment Types: Contactless Payment"},{"key":"payment:credit_cards","description":"🄵🅅 Payment Types: Credit Card"},{"key":"payment:cryptocurrencies","description":"🄵🅅 Payment Types: Cryptocurrency"},{"key":"payment:debit_cards","description":"🄵🅅 Payment Types: Debit Card"},{"key":"payment:electronic_purses","description":"🄵🅅 Payment Types: Electronic Purse"},{"key":"payment:notes","description":"🄵🅅 Payment Types: Banknotes"},{"key":"payment:prepaid_ticket","description":"🄵🅅 Payment Types: Prepaid Ticket"},{"key":"payment:telephone_cards","description":"🄵🅅 Payment Types: Telephone Card"},{"key":"payment:alipay","description":"🄵🅅 Payment Types: Alipay"},{"key":"payment:american_express","description":"🄵🅅 Payment Types: American Express"},{"key":"payment:apple_pay","description":"🄵🅅 Payment Types: Apple Pay"},{"key":"payment:bancomat","description":"🄵🅅 Payment Types: Bancomat"},{"key":"payment:blik","description":"🄵🅅 Payment Types: Blik"},{"key":"payment:clipper","description":"🄵🅅 Payment Types: Clipper"},{"key":"payment:diners_club","description":"🄵🅅 Payment Types: Diners Club"},{"key":"payment:discover_card","description":"🄵🅅 Payment Types: Discover"},{"key":"payment:dkv","description":"🄵🅅 Payment Types: DKV"},{"key":"payment:ep_easycard","description":"🄵🅅 Payment Types: 悠遊卡EasyCard"},{"key":"payment:ep_geldkarte","description":"🄵🅅 Payment Types: GeldKarte"},{"key":"payment:ep_ipass","description":"🄵🅅 Payment Types: iPASS一卡通"},{"key":"payment:girocard","description":"🄵🅅 Payment Types: Girocard"},{"key":"payment:google_pay","description":"🄵🅅 Payment Types: Google Pay"},{"key":"payment:jcb","description":"🄵🅅 Payment Types: JCB"},{"key":"payment:maestro","description":"🄵🅅 Payment Types: Maestro"},{"key":"payment:mastercard","description":"🄵🅅 Payment Types: Mastercard"},{"key":"payment:mastercard_contactless","description":"🄵🅅 Payment Types: Mastercard Contactless"},{"key":"payment:paypal","description":"🄵🅅 Payment Types: PayPal"},{"key":"payment:unionpay","description":"🄵🅅 Payment Types: UnionPay"},{"key":"payment:uta","description":"🄵🅅 Payment Types: UTA"},{"key":"payment:v_pay","description":"🄵🅅 Payment Types: V Pay"},{"key":"payment:visa","description":"🄵🅅 Payment Types: Visa"},{"key":"payment:visa_debit","description":"🄵🅅 Payment Types: Visa Debit"},{"key":"payment:visa_electron","description":"🄵🅅 Payment Types: Visa Electron"},{"key":"payment:wechat","description":"🄵🅅 Payment Types: WeChat Pay"},{"key":"phases","description":"🄵 Phases"},{"key":"phone","description":"🄵 Telephone"},{"key":"pipeline","description":"🄵 Type"},{"key":"piste:difficulty","description":"🄵 Difficulty"},{"key":"piste:difficulty","value":"novice","description":"🄵🅅 Difficulty: Novice"},{"key":"piste:difficulty","value":"easy","description":"🄵🅅 Difficulty: Easy"},{"key":"piste:difficulty","value":"intermediate","description":"🄵🅅 Difficulty: Intermediate"},{"key":"piste:difficulty","value":"advanced","description":"🄵🅅 Difficulty: Advanced"},{"key":"piste:difficulty","value":"expert","description":"🄵🅅 Difficulty: Expert"},{"key":"piste:difficulty","value":"freeride","description":"🄵🅅 Difficulty: Freeride"},{"key":"piste:difficulty","value":"extreme","description":"🄵🅅 Difficulty: Extreme"},{"key":"piste:grooming","description":"🄵 Grooming"},{"key":"piste:grooming","value":"classic","description":"🄵🅅 Grooming: Classic"},{"key":"piste:grooming","value":"mogul","description":"🄵🅅 Grooming: Mogul"},{"key":"piste:grooming","value":"backcountry","description":"🄵🅅 Grooming: Backcountry"},{"key":"piste:grooming","value":"classic+skating","description":"🄵🅅 Grooming: Classic and Skating"},{"key":"piste:grooming","value":"scooter","description":"🄵🅅 Grooming: Scooter/Snowmobile"},{"key":"piste:grooming","value":"skating","description":"🄵🅅 Grooming: Skating"},{"key":"piste:type","value":"snow_park","description":"🄵🅅 Type: Snow Park"},{"key":"piste:type","value":"playground","description":"🄵🅅 Type: Playground"},{"key":"piste:type","value":"connection","description":"🄵🅅 Type: Connection"},{"key":"plant","description":"🄵 Plant"},{"key":"plant:method","description":"🄵 Generation Method"},{"key":"plant:method","value":"water-storage"},{"key":"plant:method","value":"water-pumped-storage"},{"key":"plant:method","value":"run-of-the-river"},{"key":"plant:method","value":"thermal"},{"key":"plant:method","value":"combustion"},{"key":"plant:method","value":"gasification"},{"key":"plant:output","description":"🄵 Form of Power Output"},{"key":"plant:outputelectricity","description":"🄵🅅 Form of Power Output: Electricity"},{"key":"plant:outputhot_water","description":"🄵🅅 Form of Power Output: Hot Water"},{"key":"plant:outputhot_air","description":"🄵🅅 Form of Power Output: Hot Air"},{"key":"plant:outputcold_water","description":"🄵🅅 Form of Power Output: Cold Water"},{"key":"plant:outputcold_air","description":"🄵🅅 Form of Power Output: Cold Air"},{"key":"plant:outputcompressed_air","description":"🄵🅅 Form of Power Output: Compressed Air"},{"key":"plant:outputsteam","description":"🄵🅅 Form of Power Output: Steam"},{"key":"plant:outputvacuum","description":"🄵🅅 Form of Power Output: Vacuum"},{"key":"plant:output:electricity","description":"🄵 Electric Power Output"},{"key":"plant:source","description":"🄵 Energy Source"},{"key":"playground:theme","description":"🄵 Theme"},{"key":"plots","description":"🄵 Plots"},{"key":"population","description":"🄵 Population"},{"key":"population:date","description":"🄵 Population Date"},{"key":"portable","description":"🄵 Portable"},{"key":"post:block_number","description":"🄵 Delivery Address"},{"key":"post:city","description":"🄵 Delivery Address"},{"key":"post:conscriptionnumber","description":"🄵 Delivery Address"},{"key":"post:county","description":"🄵 Delivery Address"},{"key":"post:country","description":"🄵 Delivery Address"},{"key":"post:district","description":"🄵 Delivery Address"},{"key":"post:floor","description":"🄵 Delivery Address"},{"key":"post:hamlet","description":"🄵 Delivery Address"},{"key":"post:housename","description":"🄵 Delivery Address"},{"key":"post:housenumber","description":"🄵 Delivery Address"},{"key":"post:neighbourhood","description":"🄵 Delivery Address"},{"key":"post:place","description":"🄵 Delivery Address"},{"key":"post:postcode","description":"🄵 Delivery Address"},{"key":"post:province","description":"🄵 Delivery Address"},{"key":"post:quarter","description":"🄵 Delivery Address"},{"key":"post:state","description":"🄵 Delivery Address"},{"key":"post:street","description":"🄵 Delivery Address"},{"key":"post:subdistrict","description":"🄵 Delivery Address"},{"key":"post:suburb","description":"🄵 Delivery Address"},{"key":"post:unit","description":"🄵 Delivery Address"},{"key":"power_supply","description":"🄵 Power Supply"},{"key":"preschool","description":"🄵 Preschool"},{"key":"produce","description":"🄵 Produce"},{"key":"product","description":"🄵 Products"},{"key":"public_bookcase:type","description":"🄵 Type"},{"key":"pump","description":"🄵 Pump"},{"key":"pump","value":"yes","description":"🄵🅅 Pump: Yes"},{"key":"pump","value":"manual","description":"🄵🅅 Pump: Manual Hand Pump"},{"key":"pump","value":"powered","description":"🄵🅅 Pump: Machine-Powered Pump"},{"key":"pump","value":"no","description":"🄵🅅 Pump: None"},{"key":"railway:position","description":"🄵 Milestone Position"},{"key":"railway:signal:direction","description":"🄵 Direction Affected"},{"key":"railway:signal:direction","value":"forward","description":"🄵🅅 Direction Affected: Forward"},{"key":"railway:signal:direction","value":"backward","description":"🄵🅅 Direction Affected: Backward"},{"key":"railway:signal:direction","value":"both","description":"🄵🅅 Direction Affected: Both / All"},{"key":"ramp","description":"🄵 Embedded Ramp"},{"key":"rating","description":"🄵 Power Rating"},{"key":"rcn_ref","description":"🄵 Cycling Code"},{"key":"real_fire","description":"🄵 Real Fire"},{"key":"recycling:","description":"🄵 Accepts"},{"key":"recycling:glass_bottles","description":"🄵🅅 Accepts: Glass Bottles and Jars"},{"key":"recycling:glass","description":"🄵🅅 Accepts: Any Glass (tempered glass, windows, mirrors, etc.)"},{"key":"recycling:paper","description":"🄵🅅 Accepts: Paper"},{"key":"recycling:plastic","description":"🄵🅅 Accepts: Plastic"},{"key":"recycling:clothes","description":"🄵🅅 Accepts: Clothes"},{"key":"recycling:cans","description":"🄵🅅 Accepts: Cans"},{"key":"recycling:batteries","description":"🄵🅅 Accepts: Batteries"},{"key":"recycling:shoes","description":"🄵🅅 Accepts: Shoes"},{"key":"recycling:green_waste","description":"🄵🅅 Accepts: Green Waste"},{"key":"recycling:plastic_packaging","description":"🄵🅅 Accepts: Plastic Packaging"},{"key":"recycling:plastic_bottles","description":"🄵🅅 Accepts: Plastic Bottles"},{"key":"recycling:cardboard","description":"🄵🅅 Accepts: Cardboard"},{"key":"recycling:scrap_metal","description":"🄵🅅 Accepts: Scrap Metal"},{"key":"recycling:cooking_oil","description":"🄵🅅 Accepts: Cooking Oil"},{"key":"recycling:engine_oil","description":"🄵🅅 Accepts: Engine Oil"},{"key":"recycling_type","description":"🄵 Type"},{"key":"ref","description":"🄵 Gate Number, 🄵 Hole Number, 🄵 Junction Number, 🄵 Platform Number, 🄵 Road Number, 🄵 Room Number, 🄵 Route Number, 🄵 Runway Number, 🄵 Section Number, 🄵 Stop Number, 🄵 Taxiway Name, 🄵 Reference Code"},{"key":"ref:FR:SIRET","description":"🄵 SIRET Number"},{"key":"ref:isil","description":"🄵 ISIL Code"},{"key":"ref:vatin","description":"🄵 VAT ID Number"},{"key":"type","description":"🄵 Type"},{"key":"religion","description":"🄵 Religion"},{"key":"religion","value":"bahai","description":"🄵🅅 Religion: Bahá’í"},{"key":"religion","value":"benzhu","description":"🄵🅅 Religion: Benzhu"},{"key":"religion","value":"caodaism","description":"🄵🅅 Religion: Caodaist"},{"key":"religion","value":"chinese_folk","description":"🄵🅅 Religion: Chinese Folk Religion"},{"key":"religion","value":"confucian","description":"🄵🅅 Religion: Confucian"},{"key":"religion","value":"jain","description":"🄵🅅 Religion: Jain"},{"key":"religion","value":"multifaith","description":"🄵🅅 Religion: Multifaith"},{"key":"religion","value":"none","description":"🄵🅅 Religion: Nonreligious"},{"key":"religion","value":"pagan","description":"🄵🅅 Religion: Pagan"},{"key":"religion","value":"spiritualist","description":"🄵🅅 Religion: Spiritualist"},{"key":"religion","value":"tenrikyo","description":"🄵🅅 Religion: Tenrikyo"},{"key":"religion","value":"unitarian_universalist","description":"🄵🅅 Religion: Unitarian Universalist"},{"key":"religion","value":"vietnamese_folk","description":"🄵🅅 Religion: Vietnamese Folk Religion"},{"key":"religion","value":"voodoo","description":"🄵🅅 Religion: Voodoo"},{"key":"reservation","description":"🄵 Reservations"},{"key":"reservation","value":"yes","description":"🄵🅅 Reservations: Accepted"},{"key":"reservation","value":"no","description":"🄵🅅 Reservations: Not Accepted"},{"key":"reservation","value":"required","description":"🄵🅅 Reservations: Required"},{"key":"reservation","value":"recommended","description":"🄵🅅 Reservations: Recommended"},{"key":"residential","description":"🄵 Type"},{"key":"resort","description":"🄵 Type"},{"key":"resource","description":"🄵 Resources"},{"key":"restriction","description":"🄵 Type"},{"key":"roof:colour","description":"🄵 Roof Color"},{"key":"room","description":"🄵 Type"},{"key":"rooms","description":"🄵 Rooms"},{"key":"rotor:diameter","description":"🄵 Rotor Diameter (Meters)"},{"key":"roundtrip","description":"🄵 Forms Loop"},{"key":"route_master","description":"🄵 Type"},{"key":"route","description":"🄵 Type"},{"key":"ruins","description":"🄵 Type"},{"key":"rwn_ref","description":"🄵 Walking Code"},{"key":"sac_scale","description":"🄵 Hiking Difficulty"},{"key":"sac_scale","value":"hiking","description":"🄵🅅 Hiking Difficulty: T1: Hiking"},{"key":"sac_scale","value":"mountain_hiking","description":"🄵🅅 Hiking Difficulty: T2: Mountain Hiking"},{"key":"sac_scale","value":"demanding_mountain_hiking","description":"🄵🅅 Hiking Difficulty: T3: Demanding Mountain Hiking"},{"key":"sac_scale","value":"alpine_hiking","description":"🄵🅅 Hiking Difficulty: T4: Alpine Hiking"},{"key":"sac_scale","value":"demanding_alpine_hiking","description":"🄵🅅 Hiking Difficulty: T5: Demanding Alpine Hiking"},{"key":"sac_scale","value":"difficult_alpine_hiking","description":"🄵🅅 Hiking Difficulty: T6: Difficult Alpine Hiking"},{"key":"salt","description":"🄵 Salt"},{"key":"sample_collection","description":"🄵 Samples"},{"key":"sanitary_dump_station","description":"🄵 Toilet Disposal"},{"key":"screen","description":"🄵 Screens"},{"key":"scuba_diving:","description":"🄵 Services"},{"key":"scuba_diving:repair","description":"🄵🅅 Services: `repair`"},{"key":"scuba_diving:courses","description":"🄵🅅 Services: `courses`"},{"key":"scuba_diving:rental","description":"🄵🅅 Services: `rental`"},{"key":"scuba_diving:filling","description":"🄵🅅 Services: `filling`"},{"key":"scuba_diving:air_filling","description":"🄵🅅 Services: `air_filling`"},{"key":"scuba_diving:nitrox_filling","description":"🄵🅅 Services: `nitrox_filling`"},{"key":"scuba_diving:trimix_filling","description":"🄵🅅 Services: `trimix_filling`"},{"key":"scuba_diving:oxygen_filling","description":"🄵🅅 Services: `oxygen_filling`"},{"key":"seamark:beacon_isolated_danger:shape","description":"🄵 Shape"},{"key":"seamark:beacon_lateral:category","description":"🄵 Category"},{"key":"seamark:beacon_lateral:category","value":"port","description":"🄵🅅 Category: Port"},{"key":"seamark:beacon_lateral:category","value":"starboard","description":"🄵🅅 Category: Starboard"},{"key":"seamark:beacon_lateral:category","value":"waterway_left","description":"🄵🅅 Category: Waterway Left"},{"key":"seamark:beacon_lateral:category","value":"waterway_right","description":"🄵🅅 Category: Waterway Right"},{"key":"seamark:beacon_lateral:category","value":"danger_left","description":"🄵🅅 Category: Danger Left"},{"key":"seamark:beacon_lateral:category","value":"danger_right","description":"🄵🅅 Category: Danger Right"},{"key":"seamark:beacon_lateral:colour","description":"🄵 Color"},{"key":"seamark:beacon_lateral:colour","value":"red","description":"🄵🅅 Color: Red"},{"key":"seamark:beacon_lateral:colour","value":"green","description":"🄵🅅 Color: Green"},{"key":"seamark:beacon_lateral:colour","value":"grey","description":"🄵🅅 Color: Grey"},{"key":"seamark:beacon_lateral:shape","description":"🄵 Shape"},{"key":"seamark:beacon_lateral:system","description":"🄵 System"},{"key":"seamark:beacon_lateral:system","value":"iala-a","description":"🄵🅅 System: IALA A"},{"key":"seamark:beacon_lateral:system","value":"iala-b","description":"🄵🅅 System: IALA B"},{"key":"seamark:beacon_lateral:system","value":"cevni","description":"🄵🅅 System: CEVNI"},{"key":"seamark:beacon_lateral:system","value":"other","description":"🄵🅅 System: Other"},{"key":"seamark:buoy_lateral:category","description":"🄵 Category"},{"key":"seamark:buoy_lateral:category","value":"port","description":"🄵🅅 Category: Port"},{"key":"seamark:buoy_lateral:category","value":"starboard","description":"🄵🅅 Category: Starboard"},{"key":"seamark:buoy_lateral:category","value":"channel_left","description":"🄵🅅 Category: Channel Left"},{"key":"seamark:buoy_lateral:category","value":"channel_right","description":"🄵🅅 Category: Channel Right"},{"key":"seamark:buoy_lateral:category","value":"waterway_left","description":"🄵🅅 Category: Waterway Left"},{"key":"seamark:buoy_lateral:category","value":"waterway_right","description":"🄵🅅 Category: Waterway Right"},{"key":"seamark:buoy_lateral:category","value":"danger_left","description":"🄵🅅 Category: Danger Left"},{"key":"seamark:buoy_lateral:category","value":"danger_right","description":"🄵🅅 Category: Danger Right"},{"key":"seamark:buoy_lateral:category","value":"preferred_channel_port","description":"🄵🅅 Category: Preferred Channel Port"},{"key":"seamark:buoy_lateral:category","value":"preferred_channel_starboard","description":"🄵🅅 Category: Preferred Channel Starboard"},{"key":"seamark:buoy_lateral:colour","description":"🄵 Color"},{"key":"seamark:buoy_lateral:colour","value":"red;white;red;white","description":"🄵🅅 Color: Red-White-Red-White"},{"key":"seamark:buoy_lateral:colour","value":"green;white;green;white","description":"🄵🅅 Color: Green-White-Green-White"},{"key":"seamark:buoy_lateral:colour","value":"red;green;red","description":"🄵🅅 Color: Red-Green-Red"},{"key":"seamark:buoy_lateral:colour","value":"green;red;green","description":"🄵🅅 Color: Green-Red-Green"},{"key":"seamark:buoy_lateral:colour","value":"white","description":"🄵🅅 Color: White"},{"key":"seamark:buoy_lateral:colour","value":"yellow","description":"🄵🅅 Color: Yellow"},{"key":"seamark:buoy_lateral:shape","description":"🄵 Shape"},{"key":"seamark:buoy_lateral:system","description":"🄵 System"},{"key":"seamark:buoy_lateral:system","value":"iala-a","description":"🄵🅅 System: IALA A"},{"key":"seamark:buoy_lateral:system","value":"iala-b","description":"🄵🅅 System: IALA B"},{"key":"seamark:buoy_lateral:system","value":"cevni","description":"🄵🅅 System: CEVNI"},{"key":"seamark:buoy_lateral:system","value":"other","description":"🄵🅅 System: Other"},{"key":"seamark:mooring:category","description":"🄵 Category"},{"key":"seamark:rescue_station:category","description":"🄵 Life Saving Equipment"},{"key":"seamark:rescue_station:category","value":"lifeboat","description":"🄵🅅 Life Saving Equipment: Lifeboat (on Land)"},{"key":"seamark:rescue_station:category","value":"lifeboat_on_mooring","description":"🄵🅅 Life Saving Equipment: Lifeboat (at a Mooring)"},{"key":"seamark:rescue_station:category","value":"seaplane","description":"🄵🅅 Life Saving Equipment: Seaplane"},{"key":"seamark:rescue_station:category","value":"aircraft","description":"🄵🅅 Life Saving Equipment: Aircraft"},{"key":"seamark:rescue_station:category","value":"hovercraft","description":"🄵🅅 Life Saving Equipment: Hovercraft"},{"key":"seamark:rescue_station:category","value":"radio","description":"🄵🅅 Life Saving Equipment: Radio Station"},{"key":"seamark:rescue_station:category","value":"first_aid","description":"🄵🅅 Life Saving Equipment: First aid"},{"key":"seamark:rescue_station:category","value":"refuge_shipwrecked","description":"🄵🅅 Life Saving Equipment: Shipwreck Refuge"},{"key":"seamark:rescue_station:category","value":"refuge_intertidal","description":"🄵🅅 Life Saving Equipment: Intertidal Refuge"},{"key":"seamark:rescue_station:category","value":"tug","description":"🄵🅅 Life Saving Equipment: Salvage tug"},{"key":"seamark:wreck:category","description":"🄵 Category"},{"key":"seasonal","description":"🄵 Seasonal"},{"key":"seats","description":"🄵 Seats"},{"key":"second_hand","description":"🄵 Sells Used"},{"key":"second_hand","value":"yes","description":"🄵🅅 Sells Used: Yes"},{"key":"second_hand","value":"no","description":"🄵🅅 Sells Used: No"},{"key":"segregated","description":"🄵 Bicycle-Pedestrian Separation"},{"key":"self_service","description":"🄵 Self-Service"},{"key":"service","description":"🄵 Service Type, 🄵 Type"},{"key":"service","value":"spur","description":"🄵🅅 Service Type: Spur"},{"key":"service","value":"yard","description":"🄵🅅 Service Type: Yard"},{"key":"service","value":"siding","description":"🄵🅅 Service Type: Siding"},{"key":"service","value":"crossover","description":"🄵🅅 Service Type: Crossover"},{"key":"service_times","description":"🄵 Service Times"},{"key":"service:bicycle:","description":"🄵 Bicycle Services"},{"key":"service:vehicle:","description":"🄵 Services"},{"key":"shelter_type","description":"🄵 Type"},{"key":"shelter","description":"🄵 Shelter"},{"key":"shoes","description":"🄵 Shoes"},{"key":"shower","description":"🄵 Showers"},{"key":"siren:purpose","description":"🄵 Purpose"},{"key":"siren:type","description":"🄵 Type"},{"key":"siren:type","value":"pneumatic","description":"🄵🅅 Type: Pneumatic"},{"key":"siren:type","value":"electronic","description":"🄵🅅 Type: Electronic"},{"key":"siren:type","value":"other","description":"🄵🅅 Type: Other"},{"key":"site","description":"🄵 Type"},{"key":"smoking","description":"🄵 Smoking"},{"key":"smoking","value":"no","description":"🄵🅅 Smoking: No smoking anywhere"},{"key":"smoking","value":"separated","description":"🄵🅅 Smoking: In smoking areas, not physically isolated"},{"key":"smoking","value":"isolated","description":"🄵🅅 Smoking: In smoking areas, physically isolated"},{"key":"smoking","value":"outside","description":"🄵🅅 Smoking: Allowed outside"},{"key":"smoking","value":"yes","description":"🄵🅅 Smoking: Allowed everywhere"},{"key":"smoking","value":"dedicated","description":"🄵🅅 Smoking: Dedicated to smokers (e.g. smokers' club)"},{"key":"smoothness","description":"🄵 Smoothness"},{"key":"smoothness","value":"excellent","description":"🄵🅅 Smoothness: Thin Rollers: rollerblade, skateboard"},{"key":"smoothness","value":"good","description":"🄵🅅 Smoothness: Thin Wheels: racing bike"},{"key":"smoothness","value":"intermediate","description":"🄵🅅 Smoothness: Wheels: city bike, wheelchair, scooter"},{"key":"smoothness","value":"bad","description":"🄵🅅 Smoothness: Robust Wheels: trekking bike, car, rickshaw"},{"key":"smoothness","value":"very_bad","description":"🄵🅅 Smoothness: High Clearance: light duty off-road vehicle"},{"key":"smoothness","value":"horrible","description":"🄵🅅 Smoothness: Off-Road: heavy duty off-road vehicle"},{"key":"smoothness","value":"very_horrible","description":"🄵🅅 Smoothness: Specialized off-road: tractor, ATV"},{"key":"smoothness","value":"impassable","description":"🄵🅅 Smoothness: Impassable / No wheeled vehicle"},{"key":"sms","description":"🄵 SMS"},{"key":"social_facility:for","description":"🄵 People Served"},{"key":"social_facility","description":"🄵 Type"},{"key":"social_facility","value":"assisted_living","description":"🄵🅅 Type: Assisted Living"},{"key":"social_facility","value":"day_care","description":"🄵🅅 Type: Day Care"},{"key":"social_facility","value":"group_home","description":"🄵🅅 Type: Group Home"},{"key":"social_facility","value":"nursing_home","description":"🄵🅅 Type: Nursing Home"},{"key":"social_facility","value":"outreach","description":"🄵🅅 Type: Outreach"},{"key":"social_facility","value":"shelter","description":"🄵🅅 Type: Shelter"},{"key":"social_facility","value":"workshop","description":"🄵🅅 Type: Workshop"},{"key":"source","description":"🄵 Sources"},{"key":"source","value":"survey","description":"🄵🅅 Sources: Survey"},{"key":"source","value":"local knowledge","description":"🄵🅅 Sources: Local Knowledge"},{"key":"source","value":"aerial imagery","description":"🄵🅅 Sources: Aerial Imagery"},{"key":"source","value":"gps","description":"🄵🅅 Sources: GPS"},{"key":"source","value":"streetlevel imagery","description":"🄵🅅 Sources: Street-Level Photos"},{"key":"source","value":"osm notes","description":"🄵🅅 Sources: OpenStreetMap Notes"},{"key":"source:population","description":"🄵 Population Source"},{"key":"species","description":"🄵 Species"},{"key":"species:wikidata","description":"🄵 Species Wikidata"},{"key":"species:wikipedia","description":"🄵 Species Wikidata"},{"key":"sport","value":"ice_skating","description":"🄵🅅 Sports: Ice Skating"},{"key":"sport","value":"ice_hockey","description":"🄵🅅 Sports: Ice Hockey"},{"key":"sport","value":"curling","description":"🄵🅅 Sports: Curling"},{"key":"sport","value":"ice_stock","description":"🄵🅅 Sports: Ice Stock"},{"key":"sport","value":"multi","description":"🄵🅅 Sports: Multiple"},{"key":"sport","value":"billiards","description":"🄵🅅 Sports: Billiards"},{"key":"sport","value":"darts","description":"🄵🅅 Sports: Darts"},{"key":"sport","value":"motor","description":"🄵🅅 Sports: Motorsport"},{"key":"sport","value":"speedway","description":"🄵🅅 Sports: Motorcycle Speedway"},{"key":"sport","value":"bmx","description":"🄵🅅 Sports: BMX"},{"key":"sport","value":"dog_racing","description":"🄵🅅 Sports: Dog Racing"},{"key":"stars","description":"🄵 Stars"},{"key":"start_date","description":"🄵 Start Date"},{"key":"step_count","description":"🄵 Number of Steps"},{"key":"stile","description":"🄵 Type"},{"key":"stop","description":"🄵 Stop Type"},{"key":"stop","value":"all","description":"🄵🅅 Stop Type: All Ways"},{"key":"stop","value":"minor","description":"🄵🅅 Stop Type: Minor Road"},{"key":"street_cabinet","description":"🄵 Type"},{"key":"stroller","description":"🄵 Stroller Access"},{"key":"structure","description":"🄵 Structure"},{"key":"structure","value":"lattice","description":"🄵🅅 Structure: Lattice"},{"key":"structure","value":"solid","description":"🄵🅅 Structure: Solid"},{"key":"structure","value":"tubular","description":"🄵🅅 Structure: Tubular"},{"key":"tunnel","description":"🄵 Structure, 🄵 Type"},{"key":"studio","description":"🄵 Type"},{"key":"subject","description":"🄵 Subject"},{"key":"subject:wikidata","description":"🄵 Subject Wikidata"},{"key":"subject:wikipedia","description":"🄵 Subject Wikidata"},{"key":"substance","description":"🄵 Substance"},{"key":"substation","description":"🄵 Type"},{"key":"substation","value":"transmission","description":"🄵🅅 Type: Transmission, 🄵🅅 Type: High-Voltage Transmission"},{"key":"substation","value":"distribution","description":"🄵🅅 Type: Regional Distribution"},{"key":"substation","value":"minor_distribution","description":"🄵🅅 Type: Local Distribution"},{"key":"substation","value":"industrial","description":"🄵🅅 Type: Industrial"},{"key":"substation","value":"compression","description":"🄵🅅 Type: Compression"},{"key":"substation","value":"measurement","description":"🄵🅅 Type: Measurement"},{"key":"substation","value":"valve","description":"🄵🅅 Type: Valve"},{"key":"substation","value":"valve_group","description":"🄵🅅 Type: Valve Group"},{"key":"substation","value":"inspection_gauge","description":"🄵🅅 Type: Inspection Gauge"},{"key":"substation","value":"field_gathering","description":"🄵🅅 Type: Field Gathering"},{"key":"substation","value":"generation","description":"🄵🅅 Type: Generation"},{"key":"substation","value":"transition","description":"🄵🅅 Type: Overground/Underground Transition"},{"key":"substation","value":"traction","description":"🄵🅅 Type: Traction System Supply"},{"key":"substation","value":"converter","description":"🄵🅅 Type: High-Voltage AC/DC Converter"},{"key":"substation","value":"compensation","description":"🄵🅅 Type: Reactive Power Compensation"},{"key":"supervised","description":"🄵 Supervised"},{"key":"support","description":"🄵 Support"},{"key":"surface","description":"🄵 Surface"},{"key":"surface","value":"asphalt","description":"🄵🅅 Surface: Asphalt"},{"key":"surface","value":"unpaved","description":"🄵🅅 Surface: Unpaved"},{"key":"surface","value":"paved","description":"🄵🅅 Surface: Paved"},{"key":"surface","value":"ground","description":"🄵🅅 Surface: Ground"},{"key":"surface","value":"gravel","description":"🄵🅅 Surface: Gravel"},{"key":"surface","value":"compacted","description":"🄵🅅 Surface: Compacted"},{"key":"surface","value":"concrete","description":"🄵🅅 Surface: Concrete"},{"key":"surface","value":"paving_stones","description":"🄵🅅 Surface: Paving Stones"},{"key":"surface","value":"sett","description":"🄵🅅 Surface: Sett"},{"key":"surface","value":"dirt","description":"🄵🅅 Surface: Dirt"},{"key":"surface","value":"grass","description":"🄵🅅 Surface: Grass"},{"key":"surface","value":"sand","description":"🄵🅅 Surface: Sand"},{"key":"surface","value":"wood","description":"🄵🅅 Surface: Wood"},{"key":"surface","value":"metal","description":"🄵🅅 Surface: Metal"},{"key":"surface","value":"artificial_turf","description":"🄵🅅 Surface: Artificial Turf"},{"key":"surface","value":"unhewn_cobblestone","description":"🄵🅅 Surface: Cobblestone (uncut, rounded stones)"},{"key":"surface","value":"mud","description":"🄵🅅 Surface: Persistently Muddy"},{"key":"surface","value":"woodchips","description":"🄵🅅 Surface: Woodchips"},{"key":"surface","value":"salt","description":"🄵🅅 Surface: Salt"},{"key":"surveillance","description":"🄵 Surveillance Kind"},{"key":"surveillance:type","description":"🄵 Surveillance Type"},{"key":"surveillance:type","value":"guard","description":"🄵🅅 Surveillance Type: Guard"},{"key":"surveillance:type","value":"ALPR","description":"🄵🅅 Surveillance Type: Automatic License Plate Reader"},{"key":"surveillance:zone","description":"🄵 Surveillance Zone"},{"key":"survey_point:datum_aligned","description":"🄵 Aligned to the Local Geodetic Datum"},{"key":"survey_point:purpose","description":"🄵 Purpose"},{"key":"survey_point:purpose","value":"horizontal","description":"🄵🅅 Purpose: Horizontal Alignment"},{"key":"survey_point:purpose","value":"vertical","description":"🄵🅅 Purpose: Vertical Alignment"},{"key":"survey_point:purpose","value":"both","description":"🄵🅅 Purpose: Both"},{"key":"survey_point:structure","description":"🄵 Structure"},{"key":"survey_point:structure","value":"beacon","description":"🄵🅅 Structure: Beacon"},{"key":"survey_point:structure","value":"block","description":"🄵🅅 Structure: Block"},{"key":"survey_point:structure","value":"pole","description":"🄵🅅 Structure: Pole"},{"key":"survey_point:structure","value":"pillar","description":"🄵🅅 Structure: Pillar"},{"key":"survey_point:structure","value":"bracket","description":"🄵🅅 Structure: Bracket"},{"key":"survey_point:structure","value":"plaque","description":"🄵🅅 Structure: Plaque"},{"key":"survey_point:structure","value":"medallion","description":"🄵🅅 Structure: Medallion"},{"key":"survey_point:structure","value":"cairn","description":"🄵🅅 Structure: Cairn"},{"key":"survey_point:structure","value":"pin","description":"🄵🅅 Structure: Pin"},{"key":"survey_point:structure","value":"indented_pin","description":"🄵🅅 Structure: Indented pin"},{"key":"survey_point:structure","value":"cut","description":"🄵🅅 Structure: Cut"},{"key":"survey_point:structure","value":"magnet","description":"🄵🅅 Structure: Magnet"},{"key":"survey:date","description":"🄵 Last Survey Date"},{"key":"swimming_pool","description":"🄵 Type"},{"key":"switch","description":"🄵 Type"},{"key":"switch","value":"mechanical","description":"🄵🅅 Type: Mechanical"},{"key":"switch","value":"circuit_breaker","description":"🄵🅅 Type: Circuit Breaker"},{"key":"switch","value":"disconnector","description":"🄵🅅 Type: Disconnector"},{"key":"switch","value":"earthing","description":"🄵🅅 Type: Earthing"},{"key":"tactile_paving","description":"🄵 Tactile Paving"},{"key":"takeaway","description":"🄵 Takeaway"},{"key":"takeaway","value":"yes","description":"🄵🅅 Takeaway: Yes"},{"key":"takeaway","value":"no","description":"🄵🅅 Takeaway: No"},{"key":"takeaway","value":"only","description":"🄵🅅 Takeaway: Takeaway Only"},{"key":"target","description":"🄵 Target"},{"key":"taxon","description":"🄵 Taxon"},{"key":"tee","description":"🄵 Tee Color/Type"},{"key":"telecom:medium","description":"🄵 Medium"},{"key":"tidal","description":"🄵 Tidal"},{"key":"to","description":"🄵 To"},{"key":"toilets","description":"🄵 Toilets"},{"key":"toilets:disposal","description":"🄵 Disposal"},{"key":"toilets:disposal","value":"chemical","description":"🄵🅅 Disposal: Chemical"},{"key":"toilets:disposal","value":"bucket","description":"🄵🅅 Disposal: Bucket"},{"key":"toilets:handwashing","description":"🄵 Handwashing"},{"key":"toilets:position","description":"🄵 Positions"},{"key":"toilets:wheelchair","description":"🄵 Wheelchair Accessible Toilet"},{"key":"toll","description":"🄵 Toll"},{"key":"tomb","description":"🄵 Type"},{"key":"tower:construction","description":"🄵 Construction"},{"key":"tower:platforms","description":"🄵 Platforms"},{"key":"tower:type","description":"🄵 Type"},{"key":"townhall:type","description":"🄵 Type"},{"key":"tracktype","description":"🄵 Track Type"},{"key":"tracktype","value":"grade1","description":"🄵🅅 Track Type: Solid: paved"},{"key":"tracktype","value":"grade2","description":"🄵🅅 Track Type: Mostly Solid: gravel/rock with some soft material mixed in"},{"key":"tracktype","value":"grade3","description":"🄵🅅 Track Type: Even mixture of hard and soft materials"},{"key":"tracktype","value":"grade4","description":"🄵🅅 Track Type: Mostly Soft: soil/sand/grass with some hard material mixed in"},{"key":"tracktype","value":"grade5","description":"🄵🅅 Track Type: Soft: soil/sand/grass"},{"key":"trade","description":"🄵 Type"},{"key":"traffic_calming","value":"choked_table","description":"🄵🅅 Type: Choked Speed Table"},{"key":"traffic_calming","value":"double_dip","description":"🄵🅅 Type: Double Dip"},{"key":"traffic_sign:direction","description":"🄵 Direction Affected"},{"key":"traffic_sign:direction","value":"forward","description":"🄵🅅 Direction Affected: Forward"},{"key":"traffic_sign:direction","value":"backward","description":"🄵🅅 Direction Affected: Backward"},{"key":"traffic_sign:direction","value":"both","description":"🄵🅅 Direction Affected: Both / All"},{"key":"traffic_signals","description":"🄵 Type"},{"key":"traffic_signals:arrow","description":"🄵 Tactile Arrow"},{"key":"traffic_signals:countdown","description":"🄵 Countdown Timer"},{"key":"traffic_signals:direction","description":"🄵 Direction Affected"},{"key":"traffic_signals:direction","value":"forward","description":"🄵🅅 Direction Affected: Forward"},{"key":"traffic_signals:direction","value":"backward","description":"🄵🅅 Direction Affected: Backward"},{"key":"traffic_signals:direction","value":"both","description":"🄵🅅 Direction Affected: Both / All"},{"key":"traffic_signals:minimap","description":"🄵 Tactile Map"},{"key":"traffic_signals:sound","description":"🄵 Sound Signals"},{"key":"traffic_signals:sound","value":"yes","description":"🄵🅅 Sound Signals: Yes"},{"key":"traffic_signals:sound","value":"no","description":"🄵🅅 Sound Signals: No"},{"key":"traffic_signals:sound","value":"locate","description":"🄵🅅 Sound Signals: `locate`"},{"key":"traffic_signals:sound","value":"walk","description":"🄵🅅 Sound Signals: `walk`"},{"key":"traffic_signals:vibration","description":"🄵 Vibration"},{"key":"trail_visibility","description":"🄵 Trail Visibility"},{"key":"trail_visibility","value":"excellent","description":"🄵🅅 Trail Visibility: Excellent: unambiguous path or markers everywhere"},{"key":"trail_visibility","value":"good","description":"🄵🅅 Trail Visibility: Good: markers visible, sometimes require searching"},{"key":"trail_visibility","value":"intermediate","description":"🄵🅅 Trail Visibility: Intermediate: few markers, path mostly visible"},{"key":"trail_visibility","value":"bad","description":"🄵🅅 Trail Visibility: Bad: no markers, path sometimes invisible/pathless"},{"key":"trail_visibility","value":"horrible","description":"🄵🅅 Trail Visibility: Horrible: often pathless, some orientation skills required"},{"key":"trail_visibility","value":"no","description":"🄵🅅 Trail Visibility: No: pathless, excellent orientation skills required"},{"key":"transformer","description":"🄵 Type"},{"key":"transformer","value":"main","description":"🄵🅅 Type: Main: Forwards power"},{"key":"transformer","value":"distribution","description":"🄵🅅 Type: Distribution: Feeds final consumers, installed outside substations"},{"key":"transformer","value":"generator","description":"🄵🅅 Type: Generator: Steps-up voltage in power plants"},{"key":"transformer","value":"converter","description":"🄵🅅 Type: Converter: Feeds power converters"},{"key":"transformer","value":"phase_angle_regulator","description":"🄵🅅 Type: Phase Angle Regulator"},{"key":"transformer","value":"auxiliary","description":"🄵🅅 Type: Auxiliary: Feeds internal systems in substations"},{"key":"transformer","value":"yes","description":"🄵🅅 Type: Unknown Role"},{"key":"trees","description":"🄵 Trees"},{"key":"trench","description":"🄵 Type"},{"key":"trolley_wire","description":"🄵 Overhead Trolley Wires"},{"key":"tunnel","value":"avalanche_protector","description":"🄵🅅 Type: Avalanche Protector"},{"key":"tunnel","value":"building_passage","description":"🄵🅅 Type: Building Passage"},{"key":"tunnel","value":"culvert","description":"🄵🅅 Type: Culvert"},{"key":"tunnel","value":"flooded","description":"🄵🅅 Type: Flooded Tunnel"},{"key":"turning_circle","description":"🄵 Shape"},{"key":"two_sided","description":"🄵 Two-Sided"},{"key":"two_sided","value":"yes","description":"🄵🅅 Two-Sided: Yes"},{"key":"usage","description":"🄵 Usage Type"},{"key":"usage","value":"main","description":"🄵🅅 Usage Type: Main"},{"key":"usage","value":"branch","description":"🄵🅅 Usage Type: Branch"},{"key":"usage","value":"industrial","description":"🄵🅅 Usage Type: Industrial"},{"key":"usage","value":"military","description":"🄵🅅 Usage Type: Military"},{"key":"usage","value":"test","description":"🄵🅅 Usage Type: Test"},{"key":"usage","value":"tourism","description":"🄵🅅 Usage Type: Tourism"},{"key":"usage","value":"transportation","description":"🄵🅅 Usage Type: Transportation"},{"key":"usage","value":"transmission","description":"🄵🅅 Usage Type: Transmission"},{"key":"usage","value":"irrigation","description":"🄵🅅 Usage Type: Irrigation"},{"key":"usage","value":"headrace","description":"🄵🅅 Usage Type: Headrace"},{"key":"usage","value":"tailrace","description":"🄵🅅 Usage Type: Tailrace"},{"key":"usage","value":"spillway","description":"🄵🅅 Usage Type: Spillway"},{"key":"utility","value":"gas","description":"🄵🅅 Utility: Gas"},{"key":"utility","value":"oil","description":"🄵🅅 Utility: Oil"},{"key":"utility","value":"sewerage","description":"🄵🅅 Utility: Waste Water"},{"key":"utility","value":"street_lighting","description":"🄵🅅 Utility: Street Lighting"},{"key":"utility","value":"telecom","description":"🄵🅅 Utility: Telecom"},{"key":"utility","value":"water","description":"🄵🅅 Utility: Water"},{"key":"valve","description":"🄵 Type"},{"key":"bus","description":"🄵 Vehicles"},{"key":"trolleybus","description":"🄵 Vehicles"},{"key":"tram","description":"🄵 Vehicles"},{"key":"train","description":"🄵 Vehicles"},{"key":"subway","description":"🄵 Vehicles"},{"key":"light_rail","description":"🄵 Vehicles"},{"key":"monorail","description":"🄵 Vehicles"},{"key":"ferry","description":"🄵 Vehicles"},{"key":"vending","description":"🄵 Types of Goods"},{"key":"vhf","description":"🄵 VHF Channel"},{"key":"via","description":"🄵 Via"},{"key":"video","description":"🄵 Video Calls"},{"key":"visibility","description":"🄵 Visibility"},{"key":"visibility","value":"house","description":"🄵🅅 Visibility: Up to 5m (16ft)"},{"key":"visibility","value":"street","description":"🄵🅅 Visibility: 5 to 20m (16 to 65ft)"},{"key":"visibility","value":"area","description":"🄵🅅 Visibility: Over 20m (65ft)"},{"key":"volcano:status","description":"🄵 Volcano Status"},{"key":"volcano:status","value":"active","description":"🄵🅅 Volcano Status: Active"},{"key":"volcano:status","value":"dormant","description":"🄵🅅 Volcano Status: Dormant"},{"key":"volcano:status","value":"extinct","description":"🄵🅅 Volcano Status: Extinct"},{"key":"volcano:type","description":"🄵 Volcano Type"},{"key":"volcano:type","value":"stratovolcano","description":"🄵🅅 Volcano Type: Stratovolcano"},{"key":"volcano:type","value":"shield","description":"🄵🅅 Volcano Type: Shield"},{"key":"volcano:type","value":"scoria","description":"🄵🅅 Volcano Type: Scoria"},{"key":"voltage","description":"🄵 Voltage"},{"key":"voltage:primary","description":"🄵 Primary Voltage"},{"key":"voltage:secondary","description":"🄵 Secondary Voltage"},{"key":"voltage:tertiary","description":"🄵 Tertiary Voltage"},{"key":"wall","description":"🄵 Type"},{"key":"waste","description":"🄵 Waste"},{"key":"water_point","description":"🄵 Water Point"},{"key":"water_source","description":"🄵 Water Source"},{"key":"water_source","value":"main","description":"🄵🅅 Water Source: Water Distribution Pipe"},{"key":"water_source","value":"water_tank","description":"🄵🅅 Water Source: Water Tank"},{"key":"water_source","value":"pond","description":"🄵🅅 Water Source: Pond"},{"key":"water_source","value":"river","description":"🄵🅅 Water Source: River"},{"key":"water_source","value":"stream","description":"🄵🅅 Water Source: Stream"},{"key":"water_tank:volume","description":"🄵 Volume (Liters)"},{"key":"water","description":"🄵 Type"},{"key":"website","description":"🄵 Website"},{"key":"wetland","description":"🄵 Type"},{"key":"wheelchair","description":"🄵 Wheelchair Access"},{"key":"wholesale","description":"🄵 Wholesale"},{"key":"width","description":"🄵 Width (Meters)"},{"key":"wikidata","description":"🄵 Wikidata, 🄵 Wikipedia"},{"key":"wikipedia","description":"🄵 Wikidata, 🄵 Wikipedia"},{"key":"wikimedia_commons","description":"🄵 Wikimedia Commons Page"},{"key":"windings","description":"🄵 Windings"},{"key":"windings:auto","description":"🄵 Autotransformer"},{"key":"windings:auto","value":"yes","description":"🄵🅅 Autotransformer: Yes"},{"key":"windings:auto","value":"no","description":"🄵🅅 Autotransformer: No"},{"key":"windings:configuration","description":"🄵 Windings Configuration"},{"key":"windings:configuration","value":"star","description":"🄵🅅 Windings Configuration: Star / Wye"},{"key":"windings:configuration","value":"delta","description":"🄵🅅 Windings Configuration: Delta"},{"key":"windings:configuration","value":"open-delta","description":"🄵🅅 Windings Configuration: Open Delta"},{"key":"windings:configuration","value":"zigzag","description":"🄵🅅 Windings Configuration: Zig Zag"},{"key":"windings:configuration","value":"open","description":"🄵🅅 Windings Configuration: Open"},{"key":"windings:configuration","value":"scott","description":"🄵🅅 Windings Configuration: Scott"},{"key":"windings:configuration","value":"leblanc","description":"🄵🅅 Windings Configuration: Leblanc"},{"key":"aerialway","value":"canopy","description":"🄳 (deprecated tag) ➜ aerialway=zip_line"},{"key":"aeroway","value":"aerobridge","description":"🄳 (deprecated tag) ➜ aeroway=jet_bridge + highway=corridor"},{"key":"access","value":"customer","description":"🄳 (deprecated tag) ➜ access=customers"},{"key":"access","value":"public","description":"🄳 (deprecated tag) ➜ access=yes"},{"key":"aerodrome","value":"military","description":"🄳 (deprecated tag) ➜ military=airfield"},{"key":"aerodrome:type","value":"military","description":"🄳 (deprecated tag) ➜ military=airfield"},{"key":"agrarian","value":"agrcultural_machinry","description":"🄳 (deprecated tag) ➜ agrarian=agricultural_machinery"},{"key":"amenity","value":"advertising","description":"🄳 (deprecated tag) ➜ advertising=*"},{"key":"amenity","value":"artwork","description":"🄳 (deprecated tag) ➜ tourism=artwork"},{"key":"amenity","value":"bail_bonds","description":"🄳 (deprecated tag) ➜ office=bail_bond_agent"},{"key":"amenity","value":"car_repair","description":"🄳 (deprecated tag) ➜ shop=car_repair"},{"key":"amenity","value":"changing_room","description":"🄳 (deprecated tag) ➜ amenity=dressing_room"},{"key":"amenity","value":"citymap_post","description":"🄳 (deprecated tag) ➜ tourism=information"},{"key":"amenity","value":"club","description":"🄳 (deprecated tag) ➜ club=*"},{"key":"amenity","value":"community_center","description":"🄳 (deprecated tag) ➜ amenity=community_centre"},{"key":"amenity","value":"dancing_school","description":"🄳 (deprecated tag) ➜ leisure=dance + dance:teaching=yes"},{"key":"amenity","value":"dog_bin","description":"🄳 (deprecated tag) ➜ amenity=waste_basket + waste=dog_excrement"},{"key":"amenity","value":"dog_waste_bin","description":"🄳 (deprecated tag) ➜ amenity=waste_basket + waste=dog_excrement"},{"key":"amenity","value":"ev_charging","description":"🄳 (deprecated tag) ➜ amenity=charging_station"},{"key":"amenity","value":"fire_hydrant","description":"🄳 (deprecated tag) ➜ emergency=fire_hydrant"},{"key":"amenity","value":"firepit","description":"🄳 (deprecated tag) ➜ leisure=firepit"},{"key":"amenity","value":"garage","description":"🄳 (deprecated tag) ➜ landuse=garages"},{"key":"amenity","value":"garages","description":"🄳 (deprecated tag) ➜ landuse=garages"},{"key":"amenity","value":"givebox","description":"🄳 (deprecated tag) ➜ amenity=give_box"},{"key":"amenity","value":"gym","description":"🄳 (deprecated tag) ➜ leisure=fitness_centre"},{"key":"amenity","value":"hotel","description":"🄳 (deprecated tag) ➜ tourism=hotel"},{"key":"amenity","value":"kiosk","description":"🄳 (deprecated tag) ➜ shop=kiosk"},{"key":"amenity","value":"notice_board","description":"🄳 (deprecated tag) ➜ advertising=board"},{"key":"amenity","value":"nursery","description":"🄳 (deprecated tag) ➜ amenity=kindergarten"},{"key":"amenity","value":"preschool","description":"🄳 (deprecated tag) ➜ amenity=kindergarten + preschool=yes"},{"key":"amenity","value":"public_building","description":"🄳 (deprecated tag) ➜ building=public"},{"key":"amenity","value":"real_estate","description":"🄳 (deprecated tag) ➜ office=estate_agent"},{"key":"amenity","value":"register_office","description":"🄳 (deprecated tag) ➜ office=government + government=register_office"},{"key":"amenity","value":"research_institution","description":"🄳 (deprecated tag) ➜ amenity=research_institute"},{"key":"amenity","value":"sauna","description":"🄳 (deprecated tag) ➜ leisure=sauna"},{"key":"amenity","value":"scrapyard","description":"🄳 (deprecated tag) ➜ landuse=industrial + industrial=scrap_yard"},{"key":"amenity","value":"shop","description":"🄳 (deprecated tag) ➜ shop=*"},{"key":"amenity","value":"sloped_curb","description":"🄳 (deprecated tag) ➜ kerb=lowered"},{"key":"amenity","value":"swimming_pool","description":"🄳 (deprecated tag) ➜ leisure=swimming_pool"},{"key":"amenity","value":"ticket_booth","description":"🄳 (deprecated tag) ➜ shop=ticket"},{"key":"amenity","value":"toilet","description":"🄳 (deprecated tag) ➜ amenity=toilets"},{"key":"amenity","value":"weigh_bridge","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"amenity","value":"winery","description":"🄳 (deprecated tag) ➜ craft=winery"},{"key":"amenity","value":"youth_center","description":"🄳 (deprecated tag) ➜ amenity=community_centre + community_centre=youth_centre"},{"key":"amenity","value":"youth_centre","description":"🄳 (deprecated tag) ➜ amenity=community_centre + community_centre=youth_centre"},{"key":"artwork","description":"🄳 (deprecated tag) ➜ artwork_type=*"},{"key":"artwork:type","description":"🄳 (deprecated tag) ➜ artwork_type=*"},{"key":"attraction","value":"ferris_wheel","description":"🄳 (deprecated tag) ➜ attraction=big_wheel"},{"key":"barrier","value":"chicane","description":"🄳 (deprecated tag) ➜ barrier=cycle_barrier"},{"key":"barrier","value":"curb","description":"🄳 (deprecated tag) ➜ barrier=kerb"},{"key":"barrier","value":"embankment","description":"🄳 (deprecated tag) ➜ man_made=embankment"},{"key":"barrier","value":"railing","description":"🄳 (deprecated tag) ➜ barrier=fence + fence_type=railing"},{"key":"barrier","value":"wire_fence","description":"🄳 (deprecated tag) ➜ barrier=fence + fence_type=wire"},{"key":"barrier","value":"wood_fence","description":"🄳 (deprecated tag) ➜ barrier=fence + fence_type=wood"},{"key":"bicycle:oneway","description":"🄳 (deprecated tag) ➜ oneway:bicycle=*"},{"key":"bridge","value":"1","description":"🄳 (deprecated tag) ➜ bridge=yes"},{"key":"bridge","value":"true","description":"🄳 (deprecated tag) ➜ bridge=yes"},{"key":"building","value":"apartment","description":"🄳 (deprecated tag) ➜ building=apartments"},{"key":"building","value":"building","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"Building","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"comercial","description":"🄳 (deprecated tag) ➜ building=commercial"},{"key":"building","value":"constraction","description":"🄳 (deprecated tag) ➜ building=construction"},{"key":"building","value":"convenience","description":"🄳 (deprecated tag) ➜ building=retail"},{"key":"building","value":"detached_house","description":"🄳 (deprecated tag) ➜ building=detached"},{"key":"building","value":"family_house","description":"🄳 (deprecated tag) ➜ building=house"},{"key":"building","value":"home","description":"🄳 (deprecated tag) ➜ building=house"},{"key":"building","value":"House","description":"🄳 (deprecated tag) ➜ building=house"},{"key":"building","value":"household","description":"🄳 (deprecated tag) ➜ building=house"},{"key":"building","value":"offices","description":"🄳 (deprecated tag) ➜ building=office"},{"key":"building","value":"other","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"oui","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"OUI","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"part","description":"🄳 (deprecated tag) ➜ building:part=yes"},{"key":"building","value":"pavillion","description":"🄳 (deprecated tag) ➜ building=pavilion"},{"key":"building","value":"railway_station","description":"🄳 (deprecated tag) ➜ building=train_station"},{"key":"building","value":"Residential","description":"🄳 (deprecated tag) ➜ building=residential"},{"key":"building","value":"services","description":"🄳 (deprecated tag) ➜ building=service"},{"key":"building","value":"shop","description":"🄳 (deprecated tag) ➜ building=retail"},{"key":"building","value":"shops","description":"🄳 (deprecated tag) ➜ building=retail"},{"key":"building","value":"Si","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"Sí","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"under constraction","description":"🄳 (deprecated tag) ➜ building=construction"},{"key":"building","value":"under construction","description":"🄳 (deprecated tag) ➜ building=construction"},{"key":"building","value":"y","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building:color","description":"🄳 (deprecated tag) ➜ building:colour=*"},{"key":"building:height","description":"🄳 (deprecated tag) ➜ height=*"},{"key":"building:level","description":"🄳 (deprecated tag) ➜ building:levels=*"},{"key":"building:material","value":"Brick","description":"🄳 (deprecated tag) ➜ building:material=brick"},{"key":"building:min_height","description":"🄳 (deprecated tag) ➜ min_height=*"},{"key":"building:roof:colour","description":"🄳 (deprecated tag) ➜ roof:colour=*"},{"key":"building:roof:shape","description":"🄳 (deprecated tag) ➜ roof:shape=*"},{"key":"building:type","description":"🄳 (deprecated tag) ➜ building=*"},{"key":"camp_site","value":"camp_pitch","description":"🄳 (deprecated tag) ➜ tourism=camp_pitch"},{"key":"color","description":"🄳 (deprecated tag) ➜ colour=*"},{"key":"company","value":"consulting","description":"🄳 (deprecated tag) ➜ office=consulting"},{"key":"content","value":"unknown","description":"🄳 (deprecated tag)"},{"key":"contents","description":"🄳 (deprecated tag) ➜ content=*"},{"key":"craft","value":"car_repair","description":"🄳 (deprecated tag) ➜ shop=car_repair"},{"key":"craft","value":"catering","description":"🄳 (deprecated tag) ➜ craft=caterer"},{"key":"craft","value":"glass","description":"🄳 (deprecated tag) ➜ craft=glaziery"},{"key":"craft","value":"sculpter","description":"🄳 (deprecated tag) ➜ craft=sculptor"},{"key":"crossing","value":"island","description":"🄳 (deprecated tag) ➜ crossing:island=yes"},{"key":"crossing","value":"traffic_lights","description":"🄳 (deprecated tag) ➜ crossing=traffic_signals"},{"key":"cuisine","value":"gluten-free","description":"🄳 (deprecated tag) ➜ diet:gluten_free=*"},{"key":"cuisine","value":"halal","description":"🄳 (deprecated tag) ➜ diet:halal=*"},{"key":"cuisine","value":"kosher","description":"🄳 (deprecated tag) ➜ diet:kosher=*"},{"key":"cuisine","value":"vegan","description":"🄳 (deprecated tag) ➜ diet:vegan=*"},{"key":"cuisine","value":"vegetarian","description":"🄳 (deprecated tag) ➜ diet:vegetarian=*"},{"key":"culvert","value":"culvert","description":"🄳 (deprecated tag) ➜ tunnel=culvert"},{"key":"culvert","value":"tunnel","description":"🄳 (deprecated tag) ➜ tunnel=culvert"},{"key":"culvert","value":"yes","description":"🄳 (deprecated tag) ➜ tunnel=culvert"},{"key":"curb","description":"🄳 (deprecated tag) ➜ kerb=*"},{"key":"diaper","value":"1","description":"🄳 (deprecated tag) ➜ changing_table=yes + changing_table:count=1"},{"key":"diaper","value":"no","description":"🄳 (deprecated tag) ➜ changing_table=no"},{"key":"diaper","value":"room","description":"🄳 (deprecated tag) ➜ changing_table=yes + changing_table:location=room"},{"key":"diaper","value":"yes","description":"🄳 (deprecated tag) ➜ changing_table=yes"},{"key":"direction","value":"all","description":"🄳 (deprecated tag) ➜ direction=both"},{"key":"direction","value":"downhill","description":"🄳 (deprecated tag) ➜ incline=down"},{"key":"direction","value":"East","description":"🄳 (deprecated tag) ➜ direction=E"},{"key":"direction","value":"forward;backward","description":"🄳 (deprecated tag) ➜ direction=both"},{"key":"direction","value":"North","description":"🄳 (deprecated tag) ➜ direction=N"},{"key":"direction","value":"South","description":"🄳 (deprecated tag) ➜ direction=S"},{"key":"direction","value":"uphill","description":"🄳 (deprecated tag) ➜ incline=up"},{"key":"direction","value":"West","description":"🄳 (deprecated tag) ➜ direction=W"},{"key":"disabled_spaces","description":"🄳 (deprecated tag) ➜ capacity:disabled=*"},{"key":"drinkable","description":"🄳 (deprecated tag) ➜ drinking_water=*"},{"key":"embankment","value":"1","description":"🄳 (deprecated tag) ➜ embankment=yes"},{"key":"embankment","value":"false","description":"🄳 (deprecated tag) ➜ embankment=no"},{"key":"embankment","value":"true","description":"🄳 (deprecated tag) ➜ embankment=yes"},{"key":"embassy","value":"embassy","description":"🄳 (deprecated tag) ➜ embassy=yes"},{"key":"entrance","value":"emergency_exit","description":"🄳 (deprecated tag) ➜ entrance=emergency"},{"key":"entrance","value":"fire_exit","description":"🄳 (deprecated tag) ➜ entrance=emergency"},{"key":"entrance","value":"loading_dock","description":"🄳 (deprecated tag) ➜ amenity=loading_dock"},{"key":"entrance","value":"main_entrance","description":"🄳 (deprecated tag) ➜ entrance=main"},{"key":"entrance","value":"private","description":"🄳 (deprecated tag) ➜ entrance=yes + access=private"},{"key":"escalator","description":"🄳 (deprecated tag) ➜ highway=steps + conveying=*"},{"key":"fast_food","value":"pizza","description":"🄳 (deprecated tag) ➜ cuisine=pizza"},{"key":"fast_food","value":"shawarma","description":"🄳 (deprecated tag) ➜ cuisine=shawarma"},{"key":"fee","value":"0","description":"🄳 (deprecated tag) ➜ fee=no"},{"key":"fee","value":"free","description":"🄳 (deprecated tag) ➜ fee=no"},{"key":"fee","value":"Free","description":"🄳 (deprecated tag) ➜ fee=no"},{"key":"fee","value":"No","description":"🄳 (deprecated tag) ➜ fee=no"},{"key":"fee","value":"none","description":"🄳 (deprecated tag) ➜ fee=no"},{"key":"fee","value":"some","description":"🄳 (deprecated tag) ➜ fee=yes"},{"key":"fee","value":"Yes","description":"🄳 (deprecated tag) ➜ fee=yes"},{"key":"FIXME","description":"🄳 (deprecated tag) ➜ fixme=*"},{"key":"footway","value":"both","description":"🄳 (deprecated tag) ➜ sidewalk=both"},{"key":"footway","value":"left","description":"🄳 (deprecated tag) ➜ sidewalk=left"},{"key":"footway","value":"no","description":"🄳 (deprecated tag) ➜ sidewalk=no"},{"key":"footway","value":"none","description":"🄳 (deprecated tag) ➜ sidewalk=no"},{"key":"footway","value":"right","description":"🄳 (deprecated tag) ➜ sidewalk=right"},{"key":"footway","value":"separate","description":"🄳 (deprecated tag) ➜ sidewalk=separate"},{"key":"gambling","value":"slot_machine","description":"🄳 (deprecated tag) ➜ gambling=slot_machines"},{"key":"generator:source","value":"photovoltaic","description":"🄳 (deprecated tag) ➜ generator:source=solar + generator:method=photovoltaic"},{"key":"generator:method","value":"solar","description":"🄳 (deprecated tag) ➜ generator:source=solar"},{"key":"golf","value":"faiway","description":"🄳 (deprecated tag) ➜ golf=fairway"},{"key":"golf","value":"putting_green","description":"🄳 (deprecated tag) ➜ golf=green"},{"key":"golf","value":"sand_trap","description":"🄳 (deprecated tag) ➜ golf=bunker + natural=sand"},{"key":"golf","value":"tee_area","description":"🄳 (deprecated tag) ➜ golf=tee"},{"key":"golf","value":"tee_box","description":"🄳 (deprecated tag) ➜ golf=tee"},{"key":"golf","value":"teebox","description":"🄳 (deprecated tag) ➜ golf=tee"},{"key":"healthcare","value":"birthing_center","description":"🄳 (deprecated tag) ➜ healthcare=birthing_centre"},{"key":"healthcare:speciality","value":"internist","description":"🄳 (deprecated tag) ➜ healthcare:speciality=internal"},{"key":"highway","value":"abandoned","description":"🄳 (deprecated tag) ➜ abandoned:highway=*"},{"key":"highway","value":"ford","description":"🄳 (deprecated tag) ➜ ford=*"},{"key":"highway","value":"platform","description":"🄳 (deprecated tag) ➜ highway=platform + public_transport=platform"},{"key":"highway","value":"stile","description":"🄳 (deprecated tag) ➜ barrier=stile"},{"key":"highway","value":"unsurfaced","description":"🄳 (deprecated tag) ➜ highway=road + surface=unpaved"},{"key":"information","value":"citymap","description":"🄳 (deprecated tag) ➜ tourism=information + information=map + map_type=street + map_size=city"},{"key":"information","value":"hikingmap","description":"🄳 (deprecated tag) ➜ tourism=information + information=map + map_type=topo + hiking=yes"},{"key":"information","value":"bicyclemap","description":"🄳 (deprecated tag) ➜ tourism=information + information=map + map_type=topo + bicyle=yes"},{"key":"information","value":"nature","description":"🄳 (deprecated tag) ➜ tourism=information + information=board + board_type=nature"},{"key":"information","value":"history","description":"🄳 (deprecated tag) ➜ tourism=information + information=board + board_type=history"},{"key":"information","value":"wild_life","description":"🄳 (deprecated tag) ➜ tourism=information + information=board + board_type=wildlife"},{"key":"information","value":"wildlife","description":"🄳 (deprecated tag) ➜ tourism=information + information=board + board_type=wildlife"},{"key":"internet_access","value":"public","description":"🄳 (deprecated tag) ➜ internet_access=yes + internet_access:fee=no"},{"key":"internet_access","value":"wifi","description":"🄳 (deprecated tag) ➜ internet_access=wlan"},{"key":"internet_access","value":"wi-fi","description":"🄳 (deprecated tag) ➜ internet_access=wlan"},{"key":"internet_access","value":"WLAN","description":"🄳 (deprecated tag) ➜ internet_access=wlan"},{"key":"internet_access:fee","value":"0","description":"🄳 (deprecated tag) ➜ internet_access:fee=no"},{"key":"internet_access:fee","value":"free","description":"🄳 (deprecated tag) ➜ internet_access:fee=no"},{"key":"internet_access:fee","value":"Free","description":"🄳 (deprecated tag) ➜ internet_access:fee=no"},{"key":"internet_access:fee","value":"No","description":"🄳 (deprecated tag) ➜ internet_access:fee=no"},{"key":"internet_access:name","description":"🄳 (deprecated tag) ➜ internet_access:ssid=*"},{"key":"internet_access:type","description":"🄳 (deprecated tag) ➜ internet_access=*"},{"key":"kerb","value":"dropped","description":"🄳 (deprecated tag) ➜ kerb=lowered"},{"key":"kerb","value":"flat","description":"🄳 (deprecated tag) ➜ kerb=flush"},{"key":"lamp_mount","value":"bent mast","description":"🄳 (deprecated tag) ➜ lamp_mount=bent_mast"},{"key":"lamp_mount","value":"straight mast","description":"🄳 (deprecated tag) ➜ lamp_mount=straight_mast"},{"key":"lamp_mount","value":"straightmast","description":"🄳 (deprecated tag) ➜ lamp_mount=straight_mast"},{"key":"lamp_mount","value":"streight_mast","description":"🄳 (deprecated tag) ➜ lamp_mount=straight_mast"},{"key":"lamp_mount","value":"wal","description":"🄳 (deprecated tag) ➜ lamp_mount=wall"},{"key":"lamp_mount","value":"wall mounted","description":"🄳 (deprecated tag) ➜ lamp_mount=wall"},{"key":"lamp_mount","value":"wall_mount","description":"🄳 (deprecated tag) ➜ lamp_mount=wall"},{"key":"lamp_mount","value":"wall_mounted","description":"🄳 (deprecated tag) ➜ lamp_mount=wall"},{"key":"landcover","value":"flower_bed","description":"🄳 (deprecated tag) ➜ landuse=flowerbed"},{"key":"landcover","value":"flowerbed","description":"🄳 (deprecated tag) ➜ landuse=flowerbed"},{"key":"landuse","value":"conservation","description":"🄳 (deprecated tag) ➜ boundary=protected_area"},{"key":"landuse","value":"field","description":"🄳 (deprecated tag) ➜ landuse=farmland"},{"key":"landuse","value":"garden","description":"🄳 (deprecated tag) ➜ leisure=garden"},{"key":"landuse","value":"port","description":"🄳 (deprecated tag) ➜ landuse=industrial + industrial=port"},{"key":"landuse","value":"school","description":"🄳 (deprecated tag) ➜ landuse=education"},{"key":"landuse","value":"wood","description":"🄳 (deprecated tag) ➜ natural=wood"},{"key":"leisure","value":"beach","description":"🄳 (deprecated tag) ➜ natural=beach"},{"key":"leisure","value":"bingo","description":"🄳 (deprecated tag) ➜ amenity=gambling + gambling=bingo"},{"key":"leisure","value":"club","description":"🄳 (deprecated tag) ➜ club=*"},{"key":"leisure","value":"gambling","description":"🄳 (deprecated tag) ➜ amenity=gambling"},{"key":"leisure","value":"golf_pin","description":"🄳 (deprecated tag) ➜ golf=pin"},{"key":"leisure","value":"recreation_ground","description":"🄳 (deprecated tag) ➜ landuse=recreation_ground"},{"key":"leisure","value":"table_tennis_table","description":"🄳 (deprecated tag) ➜ leisure=pitch + sport=table_tennis"},{"key":"leisure","value":"video_arcade","description":"🄳 (deprecated tag) ➜ leisure=amusement_arcade"},{"key":"Level","description":"🄳 (deprecated tag) ➜ level=*"},{"key":"LEVEL","description":"🄳 (deprecated tag) ➜ level=*"},{"key":"levels","description":"🄳 (deprecated tag) ➜ building:levels=*"},{"key":"man_made","value":"cut_line","description":"🄳 (deprecated tag) ➜ man_made=cutline"},{"key":"man_made","value":"flower_bed","description":"🄳 (deprecated tag) ➜ landuse=flowerbed"},{"key":"man_made","value":"flowerbed","description":"🄳 (deprecated tag) ➜ landuse=flowerbed"},{"key":"man_made","value":"fuel_storage_tank","description":"🄳 (deprecated tag) ➜ man_made=storage_tank + content=fuel"},{"key":"man_made","value":"gas_well","description":"🄳 (deprecated tag) ➜ man_made=petroleum_well + substance=gas"},{"key":"man_made","value":"jetty","description":"🄳 (deprecated tag) ➜ man_made=pier"},{"key":"man_made","value":"mdf","description":"🄳 (deprecated tag) ➜ telecom=exchange"},{"key":"man_made","value":"MDF","description":"🄳 (deprecated tag) ➜ telecom=exchange"},{"key":"man_made","value":"oil_tank","description":"🄳 (deprecated tag) ➜ man_made=storage_tank + content=oil"},{"key":"man_made","value":"oil_well","description":"🄳 (deprecated tag) ➜ man_made=petroleum_well + substance=oil"},{"key":"man_made","value":"telephone_exchange","description":"🄳 (deprecated tag) ➜ telecom=exchange"},{"key":"man_made","value":"village_pump","description":"🄳 (deprecated tag) ➜ man_made=water_well"},{"key":"man_made","value":"wastewater_tank","description":"🄳 (deprecated tag) ➜ man_made=storage_tank + content=wastewater"},{"key":"man_made","value":"water_tank","description":"🄳 (deprecated tag) ➜ man_made=storage_tank + content=water"},{"key":"man_made","value":"weigh_bridge","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"weighbridge","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"weighing_machine","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"weighing_scale","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"weighting machine","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"weighting_machine","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"well","description":"🄳 (deprecated tag) ➜ man_made=water_well"},{"key":"man_made","value":"winery","description":"🄳 (deprecated tag) ➜ craft=winery"},{"key":"maxage","description":"🄳 (deprecated tag) ➜ max_age=*"},{"key":"memorial","value":"plate","description":"🄳 (deprecated tag) ➜ memorial=plaque"},{"key":"men","description":"🄳 (deprecated tag) ➜ male=*"},{"key":"minage","description":"🄳 (deprecated tag) ➜ min_age=*"},{"key":"mining_resource","description":"🄳 (deprecated tag) ➜ resource=*"},{"key":"museum_type","value":"history","description":"🄳 (deprecated tag) ➜ museum=history"},{"key":"museum_type","value":"private","description":"🄳 (deprecated tag) ➜ operator:type=private"},{"key":"museum_type","value":"public","description":"🄳 (deprecated tag) ➜ operator:type=public"},{"key":"natural","value":"marsh","description":"🄳 (deprecated tag) ➜ natural=wetland + wetland=marsh"},{"key":"natural","value":"waterfall","description":"🄳 (deprecated tag) ➜ waterway=waterfall"},{"key":"NOTE","description":"🄳 (deprecated tag) ➜ note=*"},{"key":"office","value":"consultancy","description":"🄳 (deprecated tag) ➜ office=consulting"},{"key":"office","value":"consultant","description":"🄳 (deprecated tag) ➜ office=consulting"},{"key":"office","value":"real_estate","description":"🄳 (deprecated tag) ➜ office=estate_agent"},{"key":"oneway","value":"1","description":"🄳 (deprecated tag) ➜ oneway=yes"},{"key":"oneway","value":"alternate","description":"🄳 (deprecated tag) ➜ oneway=alternating"},{"key":"operator:type","value":"goverment","description":"🄳 (deprecated tag) ➜ operator:type=government"},{"key":"operator:type","value":"Privado","description":"🄳 (deprecated tag) ➜ operator:type=private"},{"key":"operator:type","value":"Private","description":"🄳 (deprecated tag) ➜ operator:type=private"},{"key":"operator:type","value":"Public","description":"🄳 (deprecated tag) ➜ operator:type=public"},{"key":"operator:type","value":"Publico","description":"🄳 (deprecated tag) ➜ operator:type=public"},{"key":"operator:type","value":"unknown","description":"🄳 (deprecated tag)"},{"key":"parking","value":"covered","description":"🄳 (deprecated tag) ➜ covered=yes"},{"key":"parking","value":"customers","description":"🄳 (deprecated tag) ➜ access=customers"},{"key":"parking","value":"entrance","description":"🄳 (deprecated tag) ➜ amenity=parking_entrance"},{"key":"parking","value":"park_and_ride","description":"🄳 (deprecated tag) ➜ park_ride=yes"},{"key":"parking","value":"private","description":"🄳 (deprecated tag) ➜ access=private"},{"key":"parking","value":"street","description":"🄳 (deprecated tag) ➜ parking=lane"},{"key":"parking:orientation","value":"orthogonal","description":"🄳 (deprecated tag) ➜ parking:orientation=perpendicular"},{"key":"place_name","description":"🄳 (deprecated tag) ➜ name=*"},{"key":"pole","value":"transition","description":"🄳 (deprecated tag) ➜ location:transition=yes"},{"key":"pole:type","value":"termination","description":"🄳 (deprecated tag) ➜ line_management=termination"},{"key":"postcode","description":"🄳 (deprecated tag) ➜ addr:postcode=*"},{"key":"power","value":"busbar","description":"🄳 (deprecated tag) ➜ power=line + line=busbar"},{"key":"power","value":"marker","description":"🄳 (deprecated tag) ➜ marker=* + utility=power"},{"key":"power","value":"sub_station","description":"🄳 (deprecated tag) ➜ power=substation"},{"key":"power","value":"underground_cable","description":"🄳 (deprecated tag) ➜ power=cable + location=underground"},{"key":"power_source","description":"🄳 (deprecated tag) ➜ generator:source=*"},{"key":"power_rating","description":"🄳 (deprecated tag) ➜ generator:output=*"},{"key":"pump","value":"hand_pump","description":"🄳 (deprecated tag) ➜ pump=manual"},{"key":"pump","value":"electrical_pump","description":"🄳 (deprecated tag) ➜ pump=powered"},{"key":"pump","value":"no_pump","description":"🄳 (deprecated tag) ➜ pump=no"},{"key":"pump","value":"power","description":"🄳 (deprecated tag) ➜ pump=powered"},{"key":"recommended_speed","description":"🄳 (deprecated tag) ➜ maxspeed:advisory=*"},{"key":"recommended_speed:backward","description":"🄳 (deprecated tag) ➜ maxspeed:advisory:backward=*"},{"key":"recommended_speed:forward","description":"🄳 (deprecated tag) ➜ maxspeed:advisory:forward=*"},{"key":"religion","value":"catholic","description":"🄳 (deprecated tag) ➜ religion=christian + denomination=catholic"},{"key":"roof:color","description":"🄳 (deprecated tag) ➜ roof:colour=*"},{"key":"roof:shape","value":"half_hipped","description":"🄳 (deprecated tag) ➜ roof:shape=half-hipped"},{"key":"route","value":"ncn","description":"🄳 (deprecated tag) ➜ route=bicycle + network=ncn"},{"key":"service","value":"drive_through","description":"🄳 (deprecated tag) ➜ service=drive-through"},{"key":"shop","value":"adult","description":"🄳 (deprecated tag) ➜ shop=erotic"},{"key":"shop","value":"antique","description":"🄳 (deprecated tag) ➜ shop=antiques"},{"key":"shop","value":"army_surplus","description":"🄳 (deprecated tag) ➜ shop=military_surplus"},{"key":"shop","value":"auto_parts","description":"🄳 (deprecated tag) ➜ shop=car_parts"},{"key":"shop","value":"baby","description":"🄳 (deprecated tag) ➜ shop=baby_goods"},{"key":"shop","value":"baby_care","description":"🄳 (deprecated tag) ➜ shop=baby_goods"},{"key":"shop","value":"bags","description":"🄳 (deprecated tag) ➜ shop=bag"},{"key":"shop","value":"bail_bond","description":"🄳 (deprecated tag) ➜ office=bail_bond_agent"},{"key":"shop","value":"bail_bonds","description":"🄳 (deprecated tag) ➜ office=bail_bond_agent"},{"key":"shop","value":"betting","description":"🄳 (deprecated tag) ➜ shop=bookmaker"},{"key":"shop","value":"cafe","description":"🄳 (deprecated tag) ➜ amenity=cafe"},{"key":"shop","value":"consulting","description":"🄳 (deprecated tag) ➜ office=consulting"},{"key":"shop","value":"dive","description":"🄳 (deprecated tag) ➜ shop=scuba_diving"},{"key":"shop","value":"fish","description":"🄳 (deprecated tag) ➜ shop=seafood"},{"key":"shop","value":"fishmonger","description":"🄳 (deprecated tag) ➜ shop=seafood"},{"key":"shop","value":"furnace","description":"🄳 (deprecated tag) ➜ shop=fireplace"},{"key":"shop","value":"gallery","description":"🄳 (deprecated tag) ➜ shop=art"},{"key":"shop","value":"general_store","description":"🄳 (deprecated tag) ➜ shop=general"},{"key":"shop","value":"insurance","description":"🄳 (deprecated tag) ➜ office=insurance"},{"key":"shop","value":"jewellery","description":"🄳 (deprecated tag) ➜ shop=jewelry"},{"key":"shop","value":"lingerie","description":"🄳 (deprecated tag) ➜ shop=clothes + clothes=underwear"},{"key":"shop","value":"luggage","description":"🄳 (deprecated tag) ➜ shop=bag"},{"key":"shop","value":"mattress","description":"🄳 (deprecated tag) ➜ shop=bed"},{"key":"shop","value":"money_transfer","description":"🄳 (deprecated tag) ➜ amenity=money_transfer"},{"key":"shop","value":"moneylender","description":"🄳 (deprecated tag) ➜ shop=money_lender"},{"key":"shop","value":"office_supplies","description":"🄳 (deprecated tag) ➜ shop=stationery"},{"key":"shop","value":"organic","description":"🄳 (deprecated tag) ➜ shop=supermarket + organic=only"},{"key":"shop","value":"perfume","description":"🄳 (deprecated tag) ➜ shop=perfumery"},{"key":"shop","value":"photo_studio","description":"🄳 (deprecated tag) ➜ craft=photographer"},{"key":"shop","value":"real_estate","description":"🄳 (deprecated tag) ➜ office=estate_agent"},{"key":"shop","value":"telecommunications","description":"🄳 (deprecated tag) ➜ shop=telecommunication"},{"key":"shop","value":"tickets","description":"🄳 (deprecated tag) ➜ shop=ticket"},{"key":"shop","value":"underwear","description":"🄳 (deprecated tag) ➜ shop=clothes + clothes=underwear"},{"key":"shop","value":"winery","description":"🄳 (deprecated tag) ➜ craft=winery"},{"key":"sloped_curb","value":"0","description":"🄳 (deprecated tag) ➜ kerb=flush"},{"key":"sloped_curb","value":"0.00","description":"🄳 (deprecated tag) ➜ kerb=flush"},{"key":"sloped_curb","value":"0.01","description":"🄳 (deprecated tag) ➜ kerb=lowered + kerb:height=1 cm"},{"key":"sloped_curb","value":"0.02","description":"🄳 (deprecated tag) ➜ kerb=lowered + kerb:height=2 cm"},{"key":"sloped_curb","value":"0.03","description":"🄳 (deprecated tag) ➜ kerb=lowered + kerb:height=3 cm"},{"key":"sloped_curb","value":"at_grade","description":"🄳 (deprecated tag) ➜ kerb=flush"},{"key":"sloped_curb","value":"both","description":"🄳 (deprecated tag) ➜ kerb=lowered"},{"key":"sloped_curb","value":"flush","description":"🄳 (deprecated tag) ➜ kerb=flush"},{"key":"sloped_curb","value":"low","description":"🄳 (deprecated tag) ➜ kerb=lowered"},{"key":"sloped_curb","value":"no","description":"🄳 (deprecated tag) ➜ kerb=raised"},{"key":"sloped_curb","value":"yes","description":"🄳 (deprecated tag) ➜ kerb=lowered"},{"key":"sport","value":"horse_shoes","description":"🄳 (deprecated tag) ➜ sport=horseshoes"},{"key":"sport","value":"horseshoe","description":"🄳 (deprecated tag) ➜ sport=horseshoes"},{"key":"sport","value":"shuffle_board","description":"🄳 (deprecated tag) ➜ sport=shuffleboard"},{"key":"sport","value":"team_handball","description":"🄳 (deprecated tag) ➜ sport=handball"},{"key":"station","value":"light_rail","description":"🄳 (deprecated tag) ➜ station=light_rail + light_rail=yes"},{"key":"station","value":"monorail","description":"🄳 (deprecated tag) ➜ station=monorail + monorail=yes"},{"key":"station","value":"subway","description":"🄳 (deprecated tag) ➜ station=subway + subway=yes"},{"key":"station","value":"train","description":"🄳 (deprecated tag) ➜ station=train + train=yes"},{"key":"sustenance","value":"bar","description":"🄳 (deprecated tag) ➜ amenity=bar"},{"key":"sustenance","value":"cafe","description":"🄳 (deprecated tag) ➜ amenity=cafe"},{"key":"sustenance","value":"pub","description":"🄳 (deprecated tag) ➜ amenity=pub"},{"key":"sustenance","value":"restaurant","description":"🄳 (deprecated tag) ➜ amenity=restaurant"},{"key":"theatre:type","value":"amphitheatre","description":"🄳 (deprecated tag) ➜ theatre:type=amphi"},{"key":"todo","description":"🄳 (deprecated tag) ➜ fixme=*"},{"key":"TODO","description":"🄳 (deprecated tag) ➜ fixme=*"},{"key":"toilets:disposal","value":"longdrop","description":"🄳 (deprecated tag) ➜ toilets:disposal=pitlatrine"},{"key":"toilets:disposal","value":"pit_latrine","description":"🄳 (deprecated tag) ➜ toilets:disposal=pitlatrine"},{"key":"toilets:type","value":"flush","description":"🄳 (deprecated tag) ➜ toilets:disposal=flush"},{"key":"toilets:type","value":"pit","description":"🄳 (deprecated tag) ➜ toilets:disposal=pitlatrine"},{"key":"toilets:type","value":"pitlatrine","description":"🄳 (deprecated tag) ➜ toilets:disposal=pitlatrine"},{"key":"toilets:type","value":"pit latrine","description":"🄳 (deprecated tag) ➜ toilets:disposal=pitlatrine"},{"key":"tourism","value":"bed_and_breakfast","description":"🄳 (deprecated tag) ➜ tourism=guest_house + guest_house=bed_and_breakfast"},{"key":"tower:type","value":"power","description":"🄳 (deprecated tag) ➜ power=tower"},{"key":"tower:type","value":"anchor","description":"🄳 (deprecated tag) ➜ line_attachment=anchor"},{"key":"tower:type","value":"suspension","description":"🄳 (deprecated tag) ➜ line_attachment=suspension"},{"key":"tower:type","value":"termination","description":"🄳 (deprecated tag) ➜ line_management=termination"},{"key":"tower:type","value":"transposing","description":"🄳 (deprecated tag) ➜ line_management=transpose"},{"key":"townhall:village","value":"yes","description":"🄳 (deprecated tag) ➜ amenity=townhall + townhall:type=village"},{"key":"transformer","value":"auto","description":"🄳 (deprecated tag) ➜ transformer=yes + windings:auto=yes"},{"key":"transformer","value":"minor_distribution","description":"🄳 (deprecated tag) ➜ transformer=distribution"},{"key":"transformer","value":"traction","description":"🄳 (deprecated tag) ➜ transformer=main"},{"key":"tunnel","value":"1","description":"🄳 (deprecated tag) ➜ tunnel=yes"},{"key":"type","value":"broad_leaved","description":"🄳 (deprecated tag) ➜ leaf_type=broadleaved"},{"key":"type","value":"caldera","description":"🄳 (deprecated tag) ➜ volcano:type=caldera"},{"key":"type","value":"conifer","description":"🄳 (deprecated tag) ➜ leaf_type=needleleaved"},{"key":"type","value":"deciduous","description":"🄳 (deprecated tag) ➜ leaf_cycle=deciduous"},{"key":"type","value":"extinct","description":"🄳 (deprecated tag) ➜ volcano:status=extinct"},{"key":"type","value":"scoria","description":"🄳 (deprecated tag) ➜ volcano:type=scoria"},{"key":"type","value":"shield","description":"🄳 (deprecated tag) ➜ volcano:type=shield"},{"key":"type","value":"strato","description":"🄳 (deprecated tag) ➜ volcano:type=stratovolcano"},{"key":"unnamed","description":"🄳 (deprecated tag) ➜ noname=*"},{"key":"vhf_channel","description":"🄳 (deprecated tag) ➜ vhf=*"},{"key":"volcano","value":"extinct","description":"🄳 (deprecated tag) ➜ volcano:status=extinct"},{"key":"voltage-high","description":"🄳 (deprecated tag) ➜ voltage:primary=*"},{"key":"voltage-low","description":"🄳 (deprecated tag) ➜ voltage:secondary=*"},{"key":"wall_type","value":"noise_barrier","description":"🄳 (deprecated tag) ➜ wall=noise_barrier"},{"key":"water","value":"intermittent","description":"🄳 (deprecated tag) ➜ natural=water + intermittent=yes"},{"key":"water","value":"riverbank","description":"🄳 (deprecated tag) ➜ natural=water + water=river"},{"key":"water","value":"salt","description":"🄳 (deprecated tag) ➜ natural=water + salt=yes"},{"key":"water","value":"tidal","description":"🄳 (deprecated tag) ➜ natural=water + tidal=yes"},{"key":"waterway","value":"aqueduct","description":"🄳 (deprecated tag) ➜ waterway=canal + bridge=aqueduct"},{"key":"waterway","value":"lock","description":"🄳 (deprecated tag) ➜ waterway=canal + lock=yes"},{"key":"waterway","value":"riverbank","description":"🄳 (deprecated tag) ➜ natural=water + water=river"},{"key":"waterway:vhf_channel","description":"🄳 (deprecated tag) ➜ vhf=*"},{"key":"wifi","value":"yes","description":"🄳 (deprecated tag) ➜ internet_access=wlan"},{"key":"wifi","value":"free","description":"🄳 (deprecated tag) ➜ internet_access=wlan + internet_access:fee=no"},{"key":"women","description":"🄳 (deprecated tag) ➜ female=*"},{"key":"wood","value":"coniferous","description":"🄳 (deprecated tag) ➜ leaf_type=needleleaved"},{"key":"wood","value":"deciduous","description":"🄳 (deprecated tag) ➜ leaf_cycle=deciduous"},{"key":"wood","value":"evergreen","description":"🄳 (deprecated tag) ➜ leaf_cycle=evergreen"},{"key":"wood","value":"mixed","description":"🄳 (deprecated tag) ➜ leaf_cycle=mixed + leaf_type=mixed"}]}
\ No newline at end of file
+{"data_format":1,"project":{"name":"iD Tagging Schema","description":"Presets available in the iD editor, Rapid, StreetComplete, Go Map!!, Every Door, and other applications The following mnemonics are used in individual tag descriptions to annotate in which context the respective tag is supported: 🄿: preset, 🄵 field, 🄵🅅: field value, 🄳: deprecated tag, 🄳🄳: discarded tag","project_url":"https://github.com/openstreetmap/id-tagging-schema/","icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@release/dist/img/logo.png","contact_name":"Martin Raifer","contact_email":"martin@raifer.tech"},"tags":[{"key":"traffic_sign","description":"🄿 Traffic Sign, 🄵 Traffic Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-directions.svg"},{"key":"traffic_calming","description":"🄿 Traffic Calming, 🄵 Traffic Calming, 🄵 Type, 🄵 Raised","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/diamond.svg"},{"key":"shop","description":"🄿 Shop, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"polling_station","description":"🄿 Temporary Polling Place, 🄵 Polling Place","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vote-yea.svg"},{"key":"office","description":"🄿 Office, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"marker","description":"🄿 Marker, 🄵 Type","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/silo.svg"},{"key":"junction","value":"yes","description":"🄿 Junction","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/junction.svg"},{"key":"historic","description":"🄿 Historic Site, 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"},{"key":"healthcare","description":"🄿 Healthcare Facility, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"ford","value":"yes","description":"🄿 Ford","object_types":["node"]},{"key":"entrance","description":"🄿 Entrance / Exit, 🄵 Type","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"},{"key":"education","description":"🄿 Education Facility, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"},{"key":"craft","description":"🄿 Craft, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"club","description":"🄿 Club, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"},{"key":"building:part","description":"🄿 Building Part, 🄵 Building Part","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","description":"🄿 Building, 🄿 Building (unsearchable), 🄿 Historic Building, 🄵 Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"},{"key":"barrier","description":"🄿 Barrier, 🄵 Barrier, 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"},{"key":"area","value":"yes","description":"🄿 Area","object_types":["area"]},{"key":"advertising","description":"🄿 Advertising Device, 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/billboard.svg"},{"key":"addr:*","description":"🄿 Address","object_types":["node","area"]},{"key":"waterway","description":"🄿 Waterway Feature (unsearchable), 🄵 Type","object_types":["node","way","area"]},{"key":"tourism","description":"🄿 Tourism Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/attraction.svg"},{"key":"telecom","description":"🄿 Telecom Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cable.svg"},{"key":"seamark:type","description":"🄿 Seamark (unsearchable), 🄵 Seamark","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor.svg"},{"key":"railway","description":"🄿 Railway Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rail_profile.svg"},{"key":"power","description":"🄿 Power Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"},{"key":"playground","description":"🄿 Playground Equipment (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"place","description":"🄿 Place (unsearchable), 🄵 Type","object_types":["node","area"]},{"key":"pipeline","description":"🄿 Pipeline Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"},{"key":"natural","description":"🄿 Natural Feature (unsearchable), 🄵 Natural","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/natural.svg"},{"key":"man_made","description":"🄿 Man-Made Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_tank.svg"},{"key":"leisure","description":"🄿 Leisure Feature (unsearchable), 🄵 Type, 🄵 Horseback Riding Center","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"landuse","description":"🄿 Land Use Feature (unsearchable), 🄵 Type","object_types":["area"]},{"key":"indoor","description":"🄿 Indoor Feature (unsearchable), 🄵 Type, 🄵 Indoor","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/room.svg"},{"key":"highway","description":"🄿 Highway Feature (unsearchable), 🄵 Type of Path, 🄵 Type","object_types":["node","way","area"]},{"key":"ford","description":"🄿 Ford (unsearchable), 🄵 Structure, 🄵 Type","object_types":["way"]},{"key":"emergency","description":"🄿 Emergency Feature (unsearchable), 🄵 Type, 🄵 Emergency","object_types":["node","area"]},{"key":"embankment","value":"yes","description":"🄿 Embankment (unsearchable)","object_types":["way"]},{"key":"boundary","description":"🄿 Boundary (unsearchable), 🄵 Type","object_types":["way"]},{"key":"attraction","description":"🄿 Attraction (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/star.svg"},{"key":"amenity","description":"🄿 Amenity (unsearchable), 🄵 Type","object_types":["node","way","area"]},{"key":"aeroway","description":"🄿 Aeroway Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport.svg"},{"key":"aerialway","description":"🄿 Aerialway Feature (unsearchable), 🄵 Type","object_types":["node","way"]},{"key":"waterway","value":"weir","description":"🄿 Weir","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam.svg"},{"key":"waterway","value":"waterfall","description":"🄿 Waterfall","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waterfall.svg"},{"key":"waterway","value":"water_point","description":"🄿 Marine Drinking Water","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water.svg"},{"key":"waterway","value":"tidal_channel","description":"🄿 Tidal Channel","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"},{"key":"intermittent","value":"yes","description":"🄿 Intermittent Stream","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"},{"key":"waterway","value":"stream","description":"🄿 Stream","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"},{"key":"waterway","value":"sanitary_dump_station","description":"🄿 Marine Toilet Disposal","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste.svg"},{"key":"waterway","value":"river","description":"🄿 River","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"},{"key":"waterway","value":"milestone","description":"🄿 Waterway Milestone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/milestone.svg"},{"key":"waterway","value":"lock_gate","description":"🄿 Lock Gate","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam.svg"},{"key":"waterway","value":"fuel","description":"🄿 Marine Fuel Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel.svg"},{"key":"waterway","value":"fish_pass","description":"🄿 Fish Pass","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fish_ladder.svg"},{"key":"waterway","value":"drain","description":"🄿 Drain","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-ditch.svg"},{"key":"waterway","value":"dock","description":"🄿 Wet Dock / Dry Dock","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor.svg"},{"key":"waterway","value":"ditch","description":"🄿 Ditch","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-ditch.svg"},{"key":"waterway","value":"dam","description":"🄿 Dam","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam.svg"},{"key":"waterway","value":"canal","description":"🄿 Canal","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"},{"key":"waterway","value":"boatyard","description":"🄿 Boatyard","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat.svg"},{"key":"lock","value":"yes","description":"🄿 Canal Lock","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"},{"key":"type","value":"waterway","description":"🄿 Waterway","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"},{"key":"type","value":"site","description":"🄿 Site, 🄿 Climbing Area","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"type","value":"route_master","description":"🄿 Route Master","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route-master.svg"},{"key":"type","value":"route","description":"🄿 Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route.svg"},{"key":"type","value":"restriction","description":"🄿 Restriction","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction.svg"},{"key":"type","value":"multipolygon","description":"🄿 Multipolygon","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/multipolygon.svg"},{"key":"type","value":"enforcement","description":"🄿 Enforcement","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"type","value":"destination_sign","description":"🄿 Destination Sign","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"type","value":"connectivity","description":"🄿 Lane Connectivity","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"type","value":"boundary","description":"🄿 Boundary","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/boundary.svg"},{"key":"type","value":"associatedStreet","description":"🄿 Associated Street (unsearchable)","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"climbing","value":"crag","description":"🄿 Climbing Crag","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/climbing.svg"},{"key":"route","value":"trolleybus","description":"🄿 Trolleybus Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/trolleybus.svg"},{"key":"route","value":"tram","description":"🄿 Tram Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tram.svg"},{"key":"route","value":"train","description":"🄿 Train Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train.svg"},{"key":"route","value":"subway","description":"🄿 Subway Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/subway.svg"},{"key":"route","value":"road","description":"🄿 Road Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-unclassified.svg"},{"key":"route","value":"railway","description":"🄿 Railway Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track.svg"},{"key":"route","value":"power","description":"🄿 Power Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/power-line.svg"},{"key":"route","value":"piste","description":"🄿 Piste/Ski Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"},{"key":"route","value":"pipeline","description":"🄿 Pipeline Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"},{"key":"route","value":"mtb","description":"🄿 Mountain Biking Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle.svg"},{"key":"route","value":"monorail","description":"🄿 Monorail Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/monorail.svg"},{"key":"route","value":"light_rail","description":"🄿 Light Rail Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/light_rail.svg"},{"key":"route","value":"horse","description":"🄿 Horseback Riding Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"},{"key":"route","value":"hiking","description":"🄿 Hiking Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hiking.svg"},{"key":"route","value":"foot","description":"🄿 Walking Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"route","value":"ferry","description":"🄿 Ferry Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ferry.svg"},{"key":"route","value":"detour","description":"🄿 Detour Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/route-detour.svg"},{"key":"route","value":"climbing","description":"🄿 Climbing Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/climbing.svg"},{"key":"route","value":"bus","description":"🄿 Bus Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus.svg"},{"key":"route","value":"bicycle","description":"🄿 Bicycle Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle.svg"},{"key":"route","value":"aerialway","description":"🄿 Aerial Route","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gondola_lift.svg"},{"key":"restriction","value":"only_u_turn","description":"🄿 U-Turn Only","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-u-turn.svg"},{"key":"restriction","value":"only_straight_on","description":"🄿 Straight Ahead Only","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-straight-on.svg"},{"key":"restriction","value":"only_right_turn","description":"🄿 Right Turn Only","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-right-turn.svg"},{"key":"restriction","value":"only_left_turn","description":"🄿 Left Turn Only","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-only-left-turn.svg"},{"key":"restriction","value":"no_u_turn","description":"🄿 No U-Turn","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-u-turn.svg"},{"key":"restriction","value":"no_straight_on","description":"🄿 No Straight Ahead","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-straight-on.svg"},{"key":"restriction","value":"no_right_turn","description":"🄿 No Right Turn","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-right-turn.svg"},{"key":"restriction","value":"no_left_turn","description":"🄿 No Left Turn","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/restriction-no-left-turn.svg"},{"key":"public_transport","value":"stop_area_group","description":"🄿 Transit Stop Area Group","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"enforcement","value":"maxspeed","description":"🄿 Speed Limit Enforcement","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"boundary","value":"administrative","description":"🄿 Administrative Boundary","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/boundary.svg"},{"key":"traffic_sign","value":"variable_message","description":"🄿 Variable Message Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/billboard.svg"},{"key":"traffic_sign","value":"maxspeed","description":"🄿 Speed Limit Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-directions.svg"},{"key":"traffic_sign","value":"city_limit","description":"🄿 City Limit Sign","object_types":["node"]},{"key":"traffic_calming","value":"table","description":"🄿 Speed Table, 🄵🅅 Type: Speed Table, 🄵🅅 Raised: Yes","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_table.svg"},{"key":"traffic_calming","value":"rumble_strip","description":"🄿 Rumble Strip, 🄵🅅 Type: Rumble Strip","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rumble_strip.svg"},{"key":"traffic_calming","value":"mini_bumps","description":"🄿 Mini Speed Bumps, 🄵🅅 Type: Mini Speed Bumps","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_bump.svg"},{"key":"traffic_calming","value":"island","description":"🄿 Traffic Calming Island, 🄵🅅 Type: Traffic Calming Island","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/diamond.svg"},{"key":"traffic_calming","value":"hump","description":"🄿 Speed Hump, 🄵🅅 Type: Speed Hump","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_hump.svg"},{"key":"traffic_calming","value":"dip","description":"🄿 Dip, 🄵🅅 Type: Dip","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_dip.svg"},{"key":"traffic_calming","value":"cushion","description":"🄿 Speed Cushion, 🄵🅅 Type: Speed Cushion","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_hump.svg"},{"key":"traffic_calming","value":"choker","description":"🄿 Traffic Choker, 🄵🅅 Type: Traffic Choker","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/diamond.svg"},{"key":"traffic_calming","value":"chicane","description":"🄿 Traffic Chicane, 🄵🅅 Type: Traffic Chicane","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/chicane_arrow.svg"},{"key":"traffic_calming","value":"bump","description":"🄿 Speed Bump, 🄵🅅 Type: Speed Bump","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speed_bump.svg"},{"key":"traffic_calming","value":"yes","description":"🄿 Traffic Calming (Unspecified Type) (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/diamond.svg"},{"key":"tourism","value":"zoo","description":"🄿 Zoo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/zoo.svg"},{"key":"tourism","value":"wilderness_hut","description":"🄿 Wilderness Hut","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cabin.svg"},{"key":"tourism","value":"viewpoint","description":"🄿 Viewpoint","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/spotting_scope.svg"},{"key":"tourism","value":"trail_riding_station","description":"🄿 Trail Riding Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"},{"key":"tourism","value":"theme_park","description":"🄿 Theme Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park.svg"},{"key":"tourism","value":"picnic_site","description":"🄿 Picnic Site","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site.svg"},{"key":"tourism","value":"museum","description":"🄿 Museum","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/museum.svg"},{"key":"tourism","value":"motel","description":"🄿 Motel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging.svg"},{"key":"tourism","value":"information","description":"🄿 Information","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information.svg"},{"key":"tourism","value":"hotel","description":"🄿 Hotel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-concierge-bell.svg"},{"key":"tourism","value":"hostel","description":"🄿 Hostel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bunk_beds.svg"},{"key":"tourism","value":"guest_house","description":"🄿 Guest House","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging.svg"},{"key":"tourism","value":"gallery","description":"🄿 Art Gallery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"},{"key":"tourism","value":"chalet","description":"🄿 Holiday Cottage","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cabin.svg"},{"key":"tourism","value":"caravan_site","description":"🄿 RV Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/camper_trailer.svg"},{"key":"tourism","value":"camp_site","description":"🄿 Campground","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite.svg"},{"key":"tourism","value":"camp_pitch","description":"🄿 Camp Pitch","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite.svg"},{"key":"tourism","value":"attraction","description":"🄿 Tourist Attraction","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/star.svg"},{"key":"tourism","value":"artwork","description":"🄿 Artwork","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"},{"key":"tourism","value":"aquarium","description":"🄿 Aquarium","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aquarium.svg"},{"key":"tourism","value":"apartment","description":"🄿 Guest Apartment / Condo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging.svg"},{"key":"tourism","value":"alpine_hut","description":"🄿 Mountain Lodge","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cabin.svg"},{"key":"zoo","value":"wildlife_park","description":"🄿 Wildlife Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-frog.svg"},{"key":"zoo","value":"safari_park","description":"🄿 Safari Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/zoo.svg"},{"key":"zoo","value":"petting_zoo","description":"🄿 Petting Zoo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-horse.svg"},{"key":"museum","value":"history","description":"🄿 History Museum","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/museum.svg"},{"key":"information","value":"terminal","description":"🄿 Information Terminal","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/app_terminal.svg"},{"key":"information","value":"route_marker","description":"🄿 Trail Marker","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information.svg"},{"key":"information","value":"office","description":"🄿 Visitor Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/information.svg"},{"key":"information","value":"map","description":"🄿 Map","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-map.svg"},{"key":"information","value":"guidepost","description":"🄿 Guidepost","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-map-signs.svg"},{"key":"information","value":"board","description":"🄿 Information Board","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/info_board.svg"},{"key":"board_type","value":"welcome_sign","description":"🄿 Welcome Sign, 🄵🅅 Type: Welcome Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/embassy.svg"},{"key":"group_only","value":"yes","description":"🄿 Group Camping Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite.svg"},{"key":"backcountry","value":"yes","description":"🄿 Backcountry Camping Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/campsite.svg"},{"key":"artwork_type","value":"statue","description":"🄿 Statue, 🄵🅅 Type: Statue","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/statue.svg"},{"key":"artwork_type","value":"sculpture","description":"🄿 Sculpture, 🄵🅅 Type: Sculpture","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sculpture.svg"},{"key":"artwork_type","value":"mural","description":"🄿 Mural, 🄵🅅 Type: Mural","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"},{"key":"artwork_type","value":"installation","description":"🄿 Art Installation, 🄵🅅 Type: Art Installation","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sculpture.svg"},{"key":"artwork_type","value":"graffiti","description":"🄿 Graffiti, 🄵🅅 Type: Graffiti","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"},{"key":"artwork_type","value":"bust","description":"🄿 Bust, 🄵🅅 Type: Bust","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-alt.svg"},{"key":"telecom","value":"exchange","description":"🄿 Telecom Exchange, 🄵🅅 Type: Exchange","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cable.svg"},{"key":"telecom","value":"data_center","description":"🄿 Data Center, 🄵🅅 Type: Data Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-server.svg"},{"key":"shop","value":"wine","description":"🄿 Wine Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/alcohol-shop.svg"},{"key":"shop","value":"window_blind","description":"🄿 Window Blind Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/window.svg"},{"key":"shop","value":"wigs","description":"🄿 Wig Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"wholesale","description":"🄿 Wholesale Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/warehouse.svg"},{"key":"shop","value":"weapons","description":"🄿 Weapon Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/dagger.svg"},{"key":"shop","value":"water_sports","description":"🄿 Watersport/Swim Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"},{"key":"shop","value":"water","description":"🄿 Drinking Water Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/water_bottle.svg"},{"key":"shop","value":"watches","description":"🄿 Watches Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watch.svg"},{"key":"shop","value":"video_games","description":"🄿 Video Game Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gaming.svg"},{"key":"shop","value":"video","description":"🄿 Video Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/movie_rental.svg"},{"key":"shop","value":"variety_store","description":"🄿 Discount Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"vacuum_cleaner","description":"🄿 Vacuum Cleaner Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vacuum.svg"},{"key":"shop","value":"tyres","description":"🄿 Tire Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tire.svg"},{"key":"shop","value":"trophy","description":"🄿 Trophy Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-trophy.svg"},{"key":"shop","value":"travel_agency","description":"🄿 Travel Agency","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-suitcase.svg"},{"key":"shop","value":"trade","description":"🄿 Trade Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"shop","value":"toys","description":"🄿 Toy Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-rocket.svg"},{"key":"shop","value":"tool_hire","description":"🄿 Tool Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"shop","value":"tobacco","description":"🄿 Tobacco Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pipe.svg"},{"key":"shop","value":"tiles","description":"🄿 Tile Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tiling.svg"},{"key":"shop","value":"ticket","description":"🄿 Ticket Seller","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ticket-alt.svg"},{"key":"shop","value":"telecommunication","description":"🄿 Telecom Retail Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/telephone.svg"},{"key":"shop","value":"tea","description":"🄿 Tea Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/teahouse.svg"},{"key":"shop","value":"tattoo","description":"🄿 Tattoo Parlor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tattoo_machine.svg"},{"key":"shop","value":"tailor","description":"🄿 Tailor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/needle_and_spool.svg"},{"key":"shop","value":"swimming_pool","description":"🄿 Pool Supply Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"},{"key":"shop","value":"supermarket","description":"🄿 Supermarket","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/grocery.svg"},{"key":"shop","value":"storage_rental","description":"🄿 Storage Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_rental.svg"},{"key":"shop","value":"stationery","description":"🄿 Stationery Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paperclip.svg"},{"key":"shop","value":"sports","description":"🄿 Sporting Goods Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-futbol.svg"},{"key":"shop","value":"spices","description":"🄿 Spice Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/spice_bottle.svg"},{"key":"shop","value":"shoes","description":"🄿 Shoe Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shoe.svg"},{"key":"shop","value":"shoe_repair","description":"🄿 Shoe Repair Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hammer_shoe.svg"},{"key":"shop","value":"sewing","description":"🄿 Sewing Supply Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/needle_and_spool.svg"},{"key":"shop","value":"second_hand","description":"🄿 Thrift Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"seafood","description":"🄿 Seafood Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fish_cleaning.svg"},{"key":"shop","value":"scuba_diving","description":"🄿 Scuba Diving Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/scuba_diving.svg"},{"key":"shop","value":"rice","description":"🄿 Rice Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bowl-rice.svg"},{"key":"shop","value":"repair","description":"🄿 Repair Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tools.svg"},{"key":"shop","value":"rental","description":"🄿 Rental Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dolly.svg"},{"key":"shop","value":"religion","description":"🄿 Religious Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"radiotechnics","description":"🄿 Radio/Electronic Component Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microchip.svg"},{"key":"shop","value":"pyrotechnics","description":"🄿 Fireworks Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rocket_firework.svg"},{"key":"shop","value":"psychic","description":"🄿 Psychic","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/psychic.svg"},{"key":"shop","value":"printer_ink","description":"🄿 Printer Ink Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-print.svg"},{"key":"shop","value":"pottery","description":"🄿 Pottery Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vase.svg"},{"key":"shop","value":"photo","description":"🄿 Photography Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-camera-retro.svg"},{"key":"shop","value":"pet_grooming","description":"🄿 Pet Groomer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pet_grooming.svg"},{"key":"shop","value":"pet","description":"🄿 Pet Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cat.svg"},{"key":"shop","value":"perfumery","description":"🄿 Perfume Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/perfume.svg"},{"key":"shop","value":"pawnbroker","description":"🄿 Pawnshop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"},{"key":"shop","value":"pastry","description":"🄿 Pastry Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bakery.svg"},{"key":"shop","value":"pasta","description":"🄿 Pasta Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plate-wheat.svg"},{"key":"shop","value":"party","description":"🄿 Party Supply Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/balloon.svg"},{"key":"shop","value":"paint","description":"🄿 Paint Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paint-roller.svg"},{"key":"shop","value":"outpost","description":"🄿 Online Retailer Outpost","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"outdoor","description":"🄿 Outdoors Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/compass.svg"},{"key":"shop","value":"optician","description":"🄿 Optician","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/optician.svg"},{"key":"shop","value":"nuts","description":"🄿 Nuts Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"nutrition_supplements","description":"🄿 Nutrition Supplements Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pills.svg"},{"key":"shop","value":"newsagent","description":"🄿 Newsstand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-newspaper.svg"},{"key":"shop","value":"musical_instrument","description":"🄿 Musical Instrument Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-guitar.svg"},{"key":"shop","value":"music","description":"🄿 Music Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compact-disc.svg"},{"key":"shop","value":"motorcycle_repair","description":"🄿 Motorcycle Repair Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/motorcycle_repair.svg"},{"key":"shop","value":"motorcycle","description":"🄿 Motorcycle Dealership","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"},{"key":"shop","value":"money_lender","description":"🄿 Money Lender","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"},{"key":"shop","value":"model","description":"🄿 Model Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"mobile_phone_accessories","description":"🄿 Mobile Phone Accessory Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mobile-screen.svg"},{"key":"shop","value":"mobile_phone","description":"🄿 Mobile Phone Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mobile-alt.svg"},{"key":"shop","value":"military_surplus","description":"🄿 Military Surplus Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military.svg"},{"key":"shop","value":"medical_supply","description":"🄿 Medical Supply Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crutch.svg"},{"key":"shop","value":"massage","description":"🄿 Massage Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/spa.svg"},{"key":"shop","value":"mall","description":"🄿 Mall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shopping_mall.svg"},{"key":"shop","value":"lottery","description":"🄿 Lottery Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ticket-alt.svg"},{"key":"shop","value":"locksmith","description":"🄿 Locksmith","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-key.svg"},{"key":"shop","value":"lighting","description":"🄿 Lighting Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/desk_lamp.svg"},{"key":"shop","value":"leather","description":"🄿 Leather Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/handbag.svg"},{"key":"shop","value":"laundry","description":"🄿 Laundry","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/laundry.svg"},{"key":"shop","value":"kitchen","description":"🄿 Kitchen Design Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kitchen_sink.svg"},{"key":"shop","value":"kiosk","description":"🄿 Kiosk","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store.svg"},{"key":"shop","value":"jewelry","description":"🄿 Jewelry Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/jewelry-store.svg"},{"key":"shop","value":"interior_decoration","description":"🄿 Interior Decoration Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"hunting","description":"🄿 Hunting Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bow_and_arrow.svg"},{"key":"shop","value":"houseware","description":"🄿 Houseware Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-blender.svg"},{"key":"shop","value":"household_linen","description":"🄿 Household Linen Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cloth.svg"},{"key":"shop","value":"honey","description":"🄿 Honey Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"hifi","description":"🄿 Hifi Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speaker.svg"},{"key":"shop","value":"herbalist","description":"🄿 Herbalist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-leaf.svg"},{"key":"shop","value":"hearing_aids","description":"🄿 Hearing Aids Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hearing_aid.svg"},{"key":"shop","value":"health_food","description":"🄿 Health Food Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"hardware","description":"🄿 Hardware Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"shop","value":"hairdresser_supply","description":"🄿 Hairdresser Supply Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hair_care.svg"},{"key":"shop","value":"hairdresser","description":"🄿 Hairdresser","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/beauty_salon.svg"},{"key":"shop","value":"groundskeeping","description":"🄿 Lawn & Garden Equipment Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"},{"key":"shop","value":"greengrocer","description":"🄿 Greengrocer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-carrot.svg"},{"key":"shop","value":"gold_buyer","description":"🄿 Gold buyer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hand-holding.svg"},{"key":"shop","value":"gift","description":"🄿 Gift Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gift.svg"},{"key":"shop","value":"general","description":"🄿 General Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"gas","description":"🄿 Bottled Gas Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/propane_tank.svg"},{"key":"shop","value":"garden_centre","description":"🄿 Garden Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre.svg"},{"key":"shop","value":"games","description":"🄿 Tabletop Game Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dice.svg"},{"key":"shop","value":"furniture","description":"🄿 Furniture Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-couch.svg"},{"key":"shop","value":"funeral_directors","description":"🄿 Funeral Home","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"},{"key":"shop","value":"fuel","description":"🄿 Fuel Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/propane_tank.svg"},{"key":"shop","value":"frozen_food","description":"🄿 Frozen Food Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/far-snowflake.svg"},{"key":"shop","value":"frame","description":"🄿 Framing Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/portrait_framed.svg"},{"key":"shop","value":"florist","description":"🄿 Florist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/florist.svg"},{"key":"shop","value":"flooring","description":"🄿 Flooring Supply Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"shop","value":"fishing","description":"🄿 Fishing Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ice_fishing.svg"},{"key":"shop","value":"fireplace","description":"🄿 Fireplace Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fireplace.svg"},{"key":"shop","value":"fashion_accessories","description":"🄿 Fashion Accessories Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fashion_accessories.svg"},{"key":"shop","value":"farm","description":"🄿 Produce Stand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-apple-alt.svg"},{"key":"shop","value":"fabric","description":"🄿 Fabric Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"},{"key":"shop","value":"erotic","description":"🄿 Erotic Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"electronics","description":"🄿 Electronics Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plug.svg"},{"key":"shop","value":"electrical","description":"🄿 Electrical Equipment Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"},{"key":"shop","value":"e-cigarette","description":"🄿 E-Cigarette Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-smoking.svg"},{"key":"shop","value":"dry_cleaning","description":"🄿 Dry Cleaner","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/clothes_hanger.svg"},{"key":"shop","value":"doors","description":"🄿 Door Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-open.svg"},{"key":"shop","value":"doityourself","description":"🄿 DIY Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"shop","value":"department_store","description":"🄿 Department Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"deli","description":"🄿 Delicatessen","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-jar.svg"},{"key":"shop","value":"dairy","description":"🄿 Dairy Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cheese.svg"},{"key":"shop","value":"curtain","description":"🄿 Curtain Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/curtains.svg"},{"key":"shop","value":"craft","description":"🄿 Arts & Crafts Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-palette.svg"},{"key":"shop","value":"country_store","description":"🄿 Rural Supplies Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hat-cowboy-side.svg"},{"key":"shop","value":"cosmetics","description":"🄿 Cosmetics Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/lipstick.svg"},{"key":"shop","value":"copyshop","description":"🄿 Copy Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-print.svg"},{"key":"shop","value":"convenience","description":"🄿 Convenience Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-basket.svg"},{"key":"shop","value":"confectionery","description":"🄿 Candy Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery.svg"},{"key":"shop","value":"computer","description":"🄿 Computer Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-laptop.svg"},{"key":"shop","value":"collector","description":"🄿 Collectibles Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-th.svg"},{"key":"shop","value":"coffee","description":"🄿 Coffee Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/coffee.svg"},{"key":"shop","value":"clothes","description":"🄿 Clothing Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store.svg"},{"key":"shop","value":"chocolate","description":"🄿 Chocolate Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery.svg"},{"key":"shop","value":"chemist","description":"🄿 Drugstore","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-basket.svg"},{"key":"shop","value":"cheese","description":"🄿 Cheese Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cheese.svg"},{"key":"shop","value":"charity","description":"🄿 Charity Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"catalogue","description":"🄿 Catalog Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"carpet","description":"🄿 Carpet Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"},{"key":"shop","value":"caravan","description":"🄿 RV Dealership","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/camper_trailer.svg"},{"key":"shop","value":"car_repair","description":"🄿 Car Repair Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-repair.svg"},{"key":"shop","value":"car_parts","description":"🄿 Car Parts Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-car-battery.svg"},{"key":"shop","value":"car","description":"🄿 Car Dealership","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_dealer.svg"},{"key":"shop","value":"cannabis","description":"🄿 Cannabis Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cannabis.svg"},{"key":"shop","value":"candles","description":"🄿 Candle Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-burn.svg"},{"key":"shop","value":"camera","description":"🄿 Camera Equipment Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-camera-retro.svg"},{"key":"shop","value":"butcher","description":"🄿 Butcher","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cleaver.svg"},{"key":"shop","value":"brewing_supplies","description":"🄿 Brewing Supply Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_fermenter.svg"},{"key":"shop","value":"books","description":"🄿 Bookstore","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-book.svg"},{"key":"shop","value":"bookmaker","description":"🄿 Bookmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"},{"key":"shop","value":"boat","description":"🄿 Boat Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat.svg"},{"key":"shop","value":"bicycle","description":"🄿 Bicycle Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle.svg"},{"key":"shop","value":"beverages","description":"🄿 Beverage Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bottles.svg"},{"key":"shop","value":"bed","description":"🄿 Bedding/Mattress Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging.svg"},{"key":"shop","value":"beauty","description":"🄿 Beauty Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/lipstick.svg"},{"key":"shop","value":"bbq","description":"🄿 Barbecue Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bbq.svg"},{"key":"shop","value":"bathroom_furnishing","description":"🄿 Bathroom Furnishing Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bath.svg"},{"key":"shop","value":"bakery","description":"🄿 Bakery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bakery.svg"},{"key":"shop","value":"bag","description":"🄿 Bag/Luggage Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-suitcase-rolling.svg"},{"key":"shop","value":"baby_goods","description":"🄿 Baby Goods Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby-carriage.svg"},{"key":"shop","value":"art","description":"🄿 Art Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"},{"key":"shop","value":"appliance","description":"🄿 Appliance Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/laundry.svg"},{"key":"shop","value":"antiques","description":"🄿 Antique Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/furniture.svg"},{"key":"shop","value":"anime","description":"🄿 Anime / Manga Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dragon.svg"},{"key":"shop","value":"alcohol","description":"🄿 Liquor Store","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-wine-bottle.svg"},{"key":"shop","value":"agrarian","description":"🄿 Farm Supply Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"},{"key":"shop","value":"yes","description":"🄿 Shop (Unspecified Type) (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"vacant","description":"🄿 Vacant Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store-alt-slash.svg"},{"key":"shop","value":"hobby","description":"🄿 Hobby Shop (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dragon.svg"},{"key":"shop","value":"fashion","description":"🄿 Fashion Store (unsearchable), 🄳 (deprecated tag) ➜ shop=clothes","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"shop","value":"boutique","description":"🄿 Boutique (unsearchable), 🄳 (deprecated tag) ➜ shop=clothes","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"organic","value":"only","description":"🄿 Organic Supermarket, 🄵🅅 Organic Products: Only","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/grocery.svg"},{"key":"self_service","value":"yes","description":"🄿 Self-Service Laundry","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/laundry.svg"},{"key":"hairdresser","value":"barber","description":"🄿 Barber","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/beauty_salon.svg"},{"key":"lgbtq","value":"primary","description":"🄿 LGBTQ+ Erotic Store, 🄿 LGBTQ+ Pub, 🄿 LGBTQ+ Nightclub, 🄿 LGBTQ+ Community Center, 🄿 LGBTQ+ Bar","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shop.svg"},{"key":"clothes","value":"workwear","description":"🄿 Workwear Store, 🄵🅅 Clothes: Workwear","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tshirt.svg"},{"key":"clothes","value":"wedding","description":"🄿 Wedding Clothes Store, 🄵🅅 Clothes: Wedding Clothing","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gown.svg"},{"key":"clothes","value":"underwear","description":"🄿 Underwear Store, 🄵🅅 Clothes: Underwear","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bikini.svg"},{"key":"clothes","value":"suits","description":"🄿 Suits Store, 🄵🅅 Clothes: Suits","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tshirt.svg"},{"key":"second_hand","value":"only","description":"🄿 Secondhand Clothing Store, 🄿 Used Car Dealership, 🄵🅅 Sells Used: Only","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tshirt.svg"},{"key":"beauty","value":"tanning","description":"🄿 Tanning Salon, 🄵🅅 Services: Tanning","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tanning.svg"},{"key":"beauty","value":"nails","description":"🄿 Nail Salon, 🄵🅅 Services: Manicure / Pedicure","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/polished_nail.svg"},{"key":"seamark:type","value":"mooring","description":"🄿 Mooring","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horn_cleat.svg"},{"key":"seamark:type","value":"buoy_lateral","description":"🄿 Channel Buoy","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/buoy.svg"},{"key":"seamark:type","value":"beacon_lateral","description":"🄿 Channel Beacon","object_types":["node"]},{"key":"seamark:type","value":"beacon_isolated_danger","description":"🄿 Danger Beacon","object_types":["node"]},{"key":"seamark:buoy_lateral:colour","value":"red","description":"🄿 Red Buoy, 🄵🅅 Color: Red","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/buoy.svg"},{"key":"seamark:buoy_lateral:colour","value":"green","description":"🄿 Green Buoy, 🄵🅅 Color: Green","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/buoy.svg"},{"key":"roller_coaster","value":"track","description":"🄿 Roller Coaster Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/roller_coaster.svg"},{"key":"roller_coaster","value":"support","description":"🄿 Roller Coaster Support","object_types":["way"]},{"key":"roller_coaster","value":"station","description":"🄿 Roller Coaster Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/roller_coaster.svg"},{"key":"railway","value":"yard","description":"🄿 Rail Yard","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/freight_car.svg"},{"key":"railway","value":"turntable","description":"🄿 Railway Turntable","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked.svg"},{"key":"railway","value":"tram_level_crossing","description":"🄿 Tram-Road Crossing","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/crossing_tram_solid.svg"},{"key":"railway","value":"tram_crossing","description":"🄿 Tram-Path Crossing","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/crossing_tram_striped.svg"},{"key":"railway","value":"tram","description":"🄿 Tram Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tram.svg"},{"key":"railway","value":"wash","description":"🄿 Train Wash","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train_wash.svg"},{"key":"railway","value":"switch","description":"🄿 Railway Switch","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/junction.svg"},{"key":"railway","value":"subway_entrance","description":"🄿 Subway Entrance","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance.svg"},{"key":"railway","value":"subway","description":"🄿 Subway Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/subway.svg"},{"key":"railway","value":"signal","description":"🄿 Railway Signal","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_signals.svg"},{"key":"railway","value":"railway_crossing","description":"🄿 Railway-Railway Crossing","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/x_oblique.svg"},{"key":"railway","value":"rail","description":"🄿 Train Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track.svg"},{"key":"railway:preserved","value":"yes","description":"🄿 Heritage Railway Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train_steam.svg"},{"key":"railway","value":"narrow_gauge","description":"🄿 Narrow Gauge Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track_narrow.svg"},{"key":"railway","value":"monorail","description":"🄿 Monorail Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/monorail.svg"},{"key":"railway","value":"miniature","description":"🄿 Miniature Train Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track_mini.svg"},{"key":"railway","value":"milestone","description":"🄿 Railway Milestone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/milestone.svg"},{"key":"railway","value":"light_rail","description":"🄿 Light Rail Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/light_rail.svg"},{"key":"railway","value":"level_crossing","description":"🄿 Railway-Road Crossing","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cross.svg"},{"key":"railway","value":"funicular","description":"🄿 Funicular Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_cable_track.svg"},{"key":"railway","value":"disused","description":"🄿 Disused Railway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track.svg"},{"key":"railway","value":"derail","description":"🄿 Railway Derailer","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"},{"key":"railway","value":"crossing","description":"🄿 Railway-Path Crossing","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"railway","value":"construction","description":"🄿 Railway Under Construction","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track_partial.svg"},{"key":"railway","value":"buffer_stop","description":"🄿 Buffer Stop","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/buffer_stop.svg"},{"key":"railway","value":"abandoned","description":"🄿 Abandoned Railway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_track_askew.svg"},{"key":"railway","value":"tram_stop","description":"🄿 Tram Stopping Position (unsearchable), 🄳 (deprecated tag) ➜ railway=tram_stop + public_transport=stop_position + tram=yes","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tram.svg"},{"key":"railway","value":"station","description":"🄿 Train Station (unsearchable), 🄳 (deprecated tag) ➜ railway=station + public_transport=station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/board_train.svg"},{"key":"railway","value":"platform","description":"🄿 Train Platform (unsearchable), 🄳 (deprecated tag) ➜ railway=platform + public_transport=platform","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/board_train.svg"},{"key":"railway","value":"halt","description":"🄿 Train Station (Halt / Request) (unsearchable), 🄿 Train Station (Halt / Request)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rail_flag.svg"},{"key":"highspeed","value":"yes","description":"🄿 High-Speed Train Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train_bullet.svg"},{"key":"monorail","value":"hanging","description":"🄿 Hanging Monorail Track","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hanging_rail.svg"},{"key":"trolleybus","value":"yes","description":"🄿 Trolleybus Stopping Location, 🄿 Trolleybus Station / Terminal, 🄿 Trolleybus Stop, 🄿 Trolleybus Platform","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/trolleybus.svg"},{"key":"tram","value":"yes","description":"🄿 Tram Stopping Location, 🄿 Tram Station, 🄿 Tram Stop / Platform, 🄿 Tram Platform, 🄿 Tram & Bus Stop","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tram.svg"},{"key":"train","value":"yes","description":"🄿 Train Stopping Location, 🄿 Train Station, 🄿 Train Platform, 🄿 Train Stop / Platform (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train.svg"},{"key":"subway","value":"yes","description":"🄿 Subway Stopping Location, 🄿 Subway Station, 🄿 Subway Platform, 🄿 Subway Stop / Platform (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/subway.svg"},{"key":"monorail","value":"yes","description":"🄿 Monorail Stopping Location, 🄿 Monorail Station, 🄿 Monorail Platform, 🄿 Monorail Stop / Platform (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/monorail.svg"},{"key":"light_rail","value":"yes","description":"🄿 Light Rail Stopping Location, 🄿 Light Rail Station, 🄿 Light Rail Platform, 🄿 Light Rail Stop / Platform (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/light_rail.svg"},{"key":"ferry","value":"yes","description":"🄿 Ferry Stopping Location, 🄿 Ferry Terminal, 🄿 Ferry Platform, 🄿 Ferry Stop / Platform (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ferry.svg"},{"key":"bus","value":"yes","description":"🄿 Bus Stopping Location, 🄿 Bus Station / Terminal, 🄿 Bus Stop, 🄿 Bus Platform","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus.svg"},{"key":"aerialway","value":"yes","description":"🄿 Aerialway Stopping Location, 🄿 Aerialway Platform, 🄿 Aerialway Stop / Platform (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gondola_lift.svg"},{"key":"public_transport","value":"stop_position","description":"🄿 Transit Stopping Location","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/transit.svg"},{"key":"public_transport","value":"stop_area","description":"🄿 Transit Stop Area","object_types":["relation"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/relation.svg"},{"key":"aerialway","value":"station","description":"🄿 Aerialway Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gondola_lift.svg"},{"key":"public_transport","value":"station","description":"🄿 Transit Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/transit.svg"},{"key":"public_transport","value":"platform","description":"🄿 Transit Stop / Platform, 🄿 Transit Platform","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sign_and_bench.svg"},{"key":"power","value":"transformer","description":"🄿 Transformer","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_transformer.svg"},{"key":"power","value":"tower","description":"🄿 High-Voltage Tower","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_tower.svg"},{"key":"power","value":"switchgear","description":"🄿 Switchgear","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_switch.svg"},{"key":"power","value":"switch","description":"🄿 Power Switch","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_switch.svg"},{"key":"power","value":"substation","description":"🄿 Substation","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"},{"key":"power","value":"portal","description":"🄿 Anchor Portal","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"},{"key":"power","value":"pole","description":"🄿 Power Pole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_pole.svg"},{"key":"power","value":"plant","description":"🄿 Power Station Grounds","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"},{"key":"power","value":"minor_line","description":"🄿 Minor Power Line","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/power-line.svg"},{"key":"power","value":"line","description":"🄿 Power Line","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_tower.svg"},{"key":"power","value":"generator","description":"🄿 Power Generator","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"},{"key":"power","value":"catenary_mast","description":"🄿 Catenary Pole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_pole.svg"},{"key":"power","value":"cable","description":"🄿 Power Cable (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cable.svg"},{"key":"plant:source","value":"wind","description":"🄿 Wind Farm","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wind_turbine.svg"},{"key":"plant:source","value":"waste","description":"🄿 Waste Incineration Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumpster-fire.svg"},{"key":"plant:source","value":"solar","description":"🄿 Solar Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"},{"key":"plant:source","value":"oil","description":"🄿 Oil-Fired Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tint.svg"},{"key":"plant:source","value":"nuclear","description":"🄿 Nuclear Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/radiation.svg"},{"key":"plant:source","value":"hydro","description":"🄿 Hydroelectric Power Station","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dam.svg"},{"key":"plant:source","value":"gas","description":"🄿 Gas-Fired Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gas.svg"},{"key":"plant:source","value":"coal","description":"🄿 Coal-Fired Power Plant","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"},{"key":"plant:method","value":"photovoltaic","description":"🄿 Solar Farm, 🄵🅅 Generation Method: Photovoltaic","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"},{"key":"generator:source","value":"wind","description":"🄿 Wind Turbine, 🄵🅅 Source: Wind","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wind_turbine.svg"},{"key":"generator:method","value":"fission","description":"🄿 Nuclear Reactor, 🄵🅅 Method: Fission","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/radiation.svg"},{"key":"generator:source","value":"hydro","description":"🄿 Water Turbine, 🄵🅅 Source: Hydropower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"},{"key":"generator:method","value":"photovoltaic","description":"🄿 Solar Panel, 🄵🅅 Method: Photovoltaic","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"},{"key":"location","value":"roof","description":"🄿 Rooftop Solar Panel, 🄵🅅 Location: Rooftop","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"},{"key":"building","value":"roof","description":"🄿 Solar Panel Canopy, 🄿 Roof, 🄵🅅 Building: Roof","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-solar-panel.svg"},{"key":"location","value":"underground","description":"🄿 Underground Power Cable, 🄿 Underground Pipeline","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cable.svg"},{"key":"police","value":"checkpoint","description":"🄿 Police Checkpoint","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military_checkpoint.svg"},{"key":"playground","value":"zipwire","description":"🄿 Play Zip Line, 🄵🅅 Type: Zipline / Zipwire","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"water","description":"🄿 Play Water Pump/Screw, 🄵🅅 Type: Water Device (unspecified)","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/water.svg"},{"key":"playground","value":"tunnel_tube","description":"🄿 Play Tunnel, 🄵🅅 Type: Tunnel Tube","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"trampoline","description":"🄿 Trampoline, 🄵🅅 Type: Trampoline","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"tetherball","description":"🄿 Tetherball Pole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"teenshelter","description":"🄿 Teen Shelter, 🄵🅅 Type: Teen Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter.svg"},{"key":"playground","value":"swing","description":"🄿 Swing, 🄵🅅 Type: Swing","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"structure","description":"🄿 Play Structure, 🄵🅅 Type: Playground Structure","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/play_structure.svg"},{"key":"playground","value":"springy","description":"🄿 Spring Rider, 🄵🅅 Type: Spring Rider","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/spring_rider.svg"},{"key":"playground","value":"splash_pad","description":"🄿 Play Splash Pad, 🄵🅅 Type: Splash Pad","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fountain.svg"},{"key":"playground","value":"slide","description":"🄿 Slide, 🄵🅅 Type: Slide","object_types":["node","way","area"]},{"key":"playground","value":"sledding","description":"🄿 Play Sledding Hill, 🄵🅅 Type: Sledding Hill","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sledding.svg"},{"key":"playground","value":"seesaw","description":"🄿 Seesaw, 🄵🅅 Type: Seesaw","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/seesaw.svg"},{"key":"playground","value":"sandpit","description":"🄿 Play Sandbox, 🄵🅅 Type: Sandbox / Sandpit","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sandbox.svg"},{"key":"playground","value":"roundabout","description":"🄿 Play Roundabout, 🄵🅅 Type: Merry-Go-Round / Roundabout","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/stadium.svg"},{"key":"playground","value":"playhouse","description":"🄿 Play House, 🄵🅅 Type: Playhouse","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/play_structure.svg"},{"key":"playground","value":"map","description":"🄿 Painted Playground Map, 🄵🅅 Type: Map","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/compass.svg"},{"key":"playground","value":"horizontal_bar","description":"🄿 Play Horizontal Bar, 🄵🅅 Type: Horizontal Bar","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horizontal_bar.svg"},{"key":"playground","value":"hopscotch","description":"🄿 Hopscotch, 🄵🅅 Type: Hopscotch","object_types":["node","way","area"]},{"key":"playground","value":"funnel_ball","description":"🄿 Funnel Ball Funnel, 🄵🅅 Type: Funnel Ball","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"cushion","description":"🄿 Bouncy Cushion, 🄵🅅 Type: Bouncy Cushion","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"climbingwall","description":"🄿 Play Climbing Wall, 🄵🅅 Type: Climbing Wall","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"climbingframe","description":"🄿 Play Climbing Frame, 🄵🅅 Type: Climbing Frame","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"bridge","description":"🄿 Play Bridge, 🄵🅅 Type: Bridge","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"basketswing","description":"🄿 Basket Swing, 🄵🅅 Type: Basket Swing","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"basketrotator","description":"🄿 Basket Spinner, 🄵🅅 Type: Basket Rotator","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"balancebeam","description":"🄿 Play Balance Beam, 🄵🅅 Type: Balance Beam","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/balance_beam.svg"},{"key":"playground","value":"aerialrotator","description":"🄿 Hanging Spinner, 🄵🅅 Type: Aerial Rotator","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"playground","value":"activitypanel","description":"🄿 Play Activity Panel, 🄵🅅 Type: Activity Panel","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"place","value":"village","description":"🄿 Village","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/village.svg"},{"key":"place","value":"town","description":"🄿 Town","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town.svg"},{"key":"place","value":"suburb","description":"🄿 Borough / Suburb","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"},{"key":"place","value":"square","description":"🄿 Square","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/marker-stroked.svg"},{"key":"place","value":"quarter","description":"🄿 Sub-Borough / Quarter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"},{"key":"place","value":"plot","description":"🄿 Plot","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"},{"key":"place","value":"neighbourhood","description":"🄿 Neighborhood","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"},{"key":"place","value":"locality","description":"🄿 Locality","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"},{"key":"place","value":"isolated_dwelling","description":"🄿 Isolated Dwelling","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"},{"key":"place","value":"islet","description":"🄿 Islet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/islet_tree.svg"},{"key":"place","value":"island","description":"🄿 Island","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/island_trees_building.svg"},{"key":"place","value":"hamlet","description":"🄿 Hamlet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"},{"key":"place","value":"city_block","description":"🄿 City Block","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"},{"key":"place","value":"city","description":"🄿 City","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/city.svg"},{"key":"place","value":"farm","description":"🄿 Farm (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"},{"key":"piste:takeoff","value":"yes","description":"🄿 Ski Jumping Take-Off","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ski_jumping.svg"},{"key":"piste:type","value":"sleigh","description":"🄿 Sleigh Trail, 🄵🅅 Type: Sleigh","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-sleigh.svg"},{"key":"piste:type","value":"sled","description":"🄿 Sled Run, 🄵🅅 Type: Sled","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sledding.svg"},{"key":"piste:type","value":"skitour","description":"🄿 Ski Touring Trail, 🄵🅅 Type: Skitour","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing-nordic.svg"},{"key":"piste:type","value":"ski_jump","description":"🄿 Ski Jumping Piste, 🄵🅅 Type: Ski Jump","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ski_jumping.svg"},{"key":"piste:type","value":"nordic","description":"🄿 Cross-Country Ski Trail, 🄵🅅 Type: Nordic","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing-nordic.svg"},{"key":"piste:type","value":"ice_skate","description":"🄿 Ice Skating Trail, 🄵🅅 Type: Ice Skate","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skating.svg"},{"key":"piste:type","value":"hike","description":"🄿 Snowshoeing / Winter Hiking Trail, 🄵🅅 Type: Hike","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/snow_shoeing.svg"},{"key":"piste:type","value":"downhill","description":"🄿 Downhill Ski Run, 🄵🅅 Type: Downhill","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"},{"key":"piste:type","description":"🄿 Snowsports Trail / Piste (Unspecified Type) (unsearchable), 🄵 Type","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"},{"key":"man_made","value":"piste:halfpipe","description":"🄿 Snowsports Half-Pipe","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-snowboarding.svg"},{"key":"pipeline","value":"valve","description":"🄿 Pipeline Valve","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wheel.svg"},{"key":"pipeline","value":"substation","description":"🄿 Pipeline Substation","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/powered_pump.svg"},{"key":"office","value":"water_utility","description":"🄿 Water Utility Office, 🄵🅅 Type: Water Utility Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"union","description":"🄿 Labor Union Office, 🄵🅅 Type: Labor Union Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"translator","description":"🄿 Translation Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-language.svg"},{"key":"office","value":"therapist","description":"🄿 Therapist Office, 🄵🅅 Type: Therapist Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"telecommunication","description":"🄿 Telecom Office, 🄵🅅 Type: Telecom Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/telephone.svg"},{"key":"office","value":"tax_advisor","description":"🄿 Tax Advisor Office, 🄵🅅 Type: Tax Advisor Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"surveyor","description":"🄿 Surveyor Office, 🄵🅅 Type: Surveyor Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vest.svg"},{"key":"office","value":"security","description":"🄿 Security Office, 🄵🅅 Type: Security Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/briefcase_shield.svg"},{"key":"office","value":"research","description":"🄿 Research Office, 🄵🅅 Type: Research Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flask.svg"},{"key":"office","value":"religion","description":"🄿 Religious Office, 🄵🅅 Type: Religious Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"quango","description":"🄿 Quasi-NGO Office, 🄵🅅 Type: Quasi-NGO Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"property_management","description":"🄿 Property Management / Leasing Office, 🄵🅅 Type: Property Management Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"private_investigator","description":"🄿 Private Investigator Office, 🄵🅅 Type: Private Investigator Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-secret.svg"},{"key":"office","value":"political_party","description":"🄿 Political Party Office, 🄵🅅 Type: Political Party Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"},{"key":"office","value":"notary","description":"🄿 Notary Office, 🄵🅅 Type: Notary Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-stamp.svg"},{"key":"office","value":"ngo","description":"🄿 NGO Office, 🄵🅅 Type: NGO Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"newspaper","description":"🄿 Newspaper Office, 🄵🅅 Type: Newspaper Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-newspaper.svg"},{"key":"office","value":"moving_company","description":"🄿 Moving Company Office, 🄵🅅 Type: Moving Company Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-people-carry.svg"},{"key":"office","value":"lawyer","description":"🄿 Law Office, 🄵🅅 Type: Law Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-balance-scale.svg"},{"key":"office","value":"it","description":"🄿 Information Technology Office, 🄵🅅 Type: Information Technology Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"insurance","description":"🄿 Insurance Office, 🄵🅅 Type: Insurance Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/briefcase_shield.svg"},{"key":"office","value":"guide","description":"🄿 Tour Guide Office, 🄵🅅 Type: Tour Guide Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"graphic_design","description":"🄿 Graphic Design Office, 🄵🅅 Type: Graphic Design Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"government","description":"🄿 Government Office, 🄵🅅 Type: Government Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/town_hall.svg"},{"key":"office","value":"foundation","description":"🄿 Foundation Office, 🄵🅅 Type: Foundation Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"forestry","description":"🄿 Forestry Office, 🄵🅅 Type: Forestry Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"financial_advisor","description":"🄿 Financial Advisor, 🄵🅅 Type: Financial Advisor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"financial","description":"🄿 Financial Office, 🄵🅅 Type: Financial Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"estate_agent","description":"🄿 Real Estate Office, 🄵🅅 Type: Real Estate Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/real_estate_agency.svg"},{"key":"office","value":"engineer","description":"🄿 Engineering Office, 🄵🅅 Type: Engineering Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pen-ruler.svg"},{"key":"office","value":"energy_supplier","description":"🄿 Energy Supplier Office, 🄵🅅 Type: Energy Supplier Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/briefcase_bolt.svg"},{"key":"office","value":"employment_agency","description":"🄿 Employment Agency, 🄵🅅 Type: Employment Agency","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"educational_institution","description":"🄿 Educational Institution, 🄵🅅 Type: Educational Institution","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/school.svg"},{"key":"office","value":"diplomatic","description":"🄿 Diplomatic Office, 🄵🅅 Type: Diplomatic Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/embassy.svg"},{"key":"office","value":"coworking","description":"🄿 Coworking Space, 🄵🅅 Type: Coworking Space","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"consulting","description":"🄿 Consultancy Office, 🄵🅅 Type: Consultancy Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"company","description":"🄿 Corporate Office, 🄵🅅 Type: Corporate Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"charity","description":"🄿 Charity Office, 🄵🅅 Type: Charity Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"bail_bond_agent","description":"🄿 Bail Bond Agent","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank.svg"},{"key":"office","value":"association","description":"🄿 Nonprofit Organization Office, 🄵🅅 Type: Nonprofit Organization Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"architect","description":"🄿 Architect Office, 🄵🅅 Type: Architect Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-drafting-compass.svg"},{"key":"office","value":"advertising_agency","description":"🄿 Advertising Agency, 🄵🅅 Type: Advertising Agency","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"adoption_agency","description":"🄿 Adoption Agency, 🄵🅅 Type: Adoption Agency","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"accountant","description":"🄿 Accountant Office, 🄵🅅 Type: Accountant Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/accounting.svg"},{"key":"office","value":"yes","description":"🄿 Office (Unspecified Type) (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"travel_agent","description":"🄿 Travel Agency (unsearchable), 🄵🅅 Type: Travel Agency","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"physician","description":"🄿 Physician (unsearchable), 🄵🅅 Type: Physician","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"office","value":"administrative","description":"🄿 Administrative Office (unsearchable), 🄳 (deprecated tag) ➜ office=government","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"lawyer","value":"notary","description":"🄿 Notary Office (unsearchable), 🄳 (deprecated tag) ➜ office=notary","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"government","value":"tax","description":"🄿 Tax and Revenue Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/town_hall.svg"},{"key":"government","value":"register_office","description":"🄿 Register Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/town_hall.svg"},{"key":"government","value":"prosecutor","description":"🄿 Public Prosecutor's Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"diplomatic","value":"liaison","description":"🄿 Liaison Office, 🄵🅅 Type: Liaison Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/embassy.svg"},{"key":"diplomatic","value":"embassy","description":"🄿 Embassy, 🄵🅅 Type: Embassy","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/embassy.svg"},{"key":"diplomatic","value":"consulate","description":"🄿 Consulate, 🄵🅅 Type: Consulate","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/embassy.svg"},{"key":"noexit","value":"yes","description":"🄿 No Exit","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/barrier.svg"},{"key":"network:type","value":"node_network","description":"🄿 Recreational Network Node","object_types":["node"]},{"key":"natural","value":"wood","description":"🄿 Natural Wood, 🄿 Natural Wood (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-alt1.svg"},{"key":"natural","value":"wetland","description":"🄿 Wetland","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"},{"key":"natural","value":"water","description":"🄿 Water","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"natural","value":"volcano","description":"🄿 Volcano","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volcano.svg"},{"key":"natural","value":"valley","description":"🄿 Valley","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/valley.svg"},{"key":"natural","value":"tree_stump","description":"🄿 Tree Stump","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tree_stump.svg"},{"key":"natural","value":"tree_row","description":"🄿 Tree Row","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tree_row.svg"},{"key":"natural","value":"tree","description":"🄿 Tree","object_types":["node"]},{"key":"natural","value":"strait","description":"🄿 Strait","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"},{"key":"natural","value":"stone","description":"🄿 Unattached Stone / Boulder","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boulder1.svg"},{"key":"natural","value":"spring","description":"🄿 Spring","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"natural","value":"sinkhole","description":"🄿 Sinkhole","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/trench.svg"},{"key":"natural","value":"shrub","description":"🄿 Shrub","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shrub.svg"},{"key":"natural","value":"shingle","description":"🄿 Shingle","object_types":["area"]},{"key":"natural","value":"scrub","description":"🄿 Scrub","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shrub.svg"},{"key":"natural","value":"scree","description":"🄿 Scree","object_types":["area"]},{"key":"natural","value":"sand","description":"🄿 Sand","object_types":["area"]},{"key":"natural","value":"saddle","description":"🄿 Saddle","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/saddle.svg"},{"key":"natural","value":"rock","description":"🄿 Attached Rock / Boulder","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boulder2.svg"},{"key":"natural","value":"ridge","description":"🄿 Ridge","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mountain_range.svg"},{"key":"natural","value":"reef","description":"🄿 Reef","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/coral_reef.svg"},{"key":"natural","value":"peninsula","description":"🄿 Peninsula","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cape_landform.svg"},{"key":"natural","value":"peak","description":"🄿 Peak","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/mountain.svg"},{"key":"natural","value":"mud","description":"🄿 Mud","object_types":["area"]},{"key":"natural","value":"hot_spring","description":"🄿 Hot Spring","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hot-spring.svg"},{"key":"natural","value":"heath","description":"🄿 Heath","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shrub_low.svg"},{"key":"natural","value":"grassland","description":"🄿 Grassland","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/grass.svg"},{"key":"natural","value":"glacier","description":"🄿 Glacier","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/snow.svg"},{"key":"natural","value":"geyser","description":"🄿 Geyser","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"natural","value":"fell","description":"🄿 Fell","object_types":["area"]},{"key":"natural","value":"coastline","description":"🄿 Coastline","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/beach.svg"},{"key":"natural","value":"cliff","description":"🄿 Cliff","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cliff_falling_rocks.svg"},{"key":"natural","value":"cave_entrance","description":"🄿 Cave Entrance","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle.svg"},{"key":"natural","value":"cape","description":"🄿 Cape","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cape_landform.svg"},{"key":"natural","value":"beach","description":"🄿 Beach","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/beach.svg"},{"key":"natural","value":"bay","description":"🄿 Bay","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/beach.svg"},{"key":"natural","value":"bare_rock","description":"🄿 Bare Rock","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boulder3.svg"},{"key":"natural","value":"arch","description":"🄿 Natural Arch","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/natural_arch.svg"},{"key":"wetland","value":"wet_meadow","description":"🄿 Wet Meadow, 🄵🅅 Type: Wet Meadow","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"},{"key":"wetland","value":"tidalflat","description":"🄿 Tidal Flat, 🄵🅅 Type: Tidal Flat","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"},{"key":"wetland","value":"swamp","description":"🄿 Swamp, 🄵🅅 Type: Swamp","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/swamp.svg"},{"key":"wetland","value":"string_bog","description":"🄿 String Bog, 🄵🅅 Type: String Bog","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"},{"key":"wetland","value":"saltmarsh","description":"🄿 Coastal Salt Marsh, 🄵🅅 Type: Coastal Salt Marsh","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"},{"key":"wetland","value":"reedbed","description":"🄿 Reed bed, 🄵🅅 Type: Reed Bed","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"},{"key":"wetland","value":"marsh","description":"🄿 Marsh, 🄵🅅 Type: Marsh","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"},{"key":"wetland","value":"mangrove","description":"🄿 Mangrove, 🄵🅅 Type: Mangrove","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"},{"key":"wetland","value":"fen","description":"🄿 Fen, 🄵🅅 Type: Fen","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"},{"key":"wetland","value":"bog","description":"🄿 Bog, 🄵🅅 Type: Bog","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wetland.svg"},{"key":"water","value":"wastewater","description":"🄿 Wastewater Basin","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste.svg"},{"key":"water","value":"stream","description":"🄿 Stream Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-stream.svg"},{"key":"water","value":"river","description":"🄿 River Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-river.svg"},{"key":"water","value":"reservoir","description":"🄿 Reservoir, 🄿 Emergency Water Reservoir","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"water","value":"pond","description":"🄿 Pond","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"water","value":"oxbow","description":"🄿 Oxbow Lake","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"water","value":"moat","description":"🄿 Moat","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"water","value":"lake","description":"🄿 Lake","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"water","value":"canal","description":"🄿 Canal Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/waterway-canal.svg"},{"key":"water","value":"basin","description":"🄿 Basin","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"leaf_type","value":"needleleaved","description":"🄿 Needleleaved Tree (unsearchable), 🄵🅅 Leaf Type: Needleleaved","object_types":["node"]},{"key":"leaf_type","value":"broadleaved","description":"🄿 Broadleaved Tree (unsearchable), 🄵🅅 Leaf Type: Broadleaved","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park.svg"},{"key":"leaf_cycle","value":"evergreen","description":"🄿 Needleleaved Tree (evergreen), 🄿 Broadleaved Tree (evergreen), 🄵🅅 Leaf Cycle: Evergreen","object_types":["node"]},{"key":"leaf_cycle","value":"deciduous","description":"🄿 Needleleaved Tree (deciduous), 🄿 Broadleaved Tree (deciduous), 🄵🅅 Leaf Cycle: Deciduous","object_types":["node"]},{"key":"military","value":"trench","description":"🄿 Military Trench","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/trench.svg"},{"key":"military","value":"office","description":"🄿 Military Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military.svg"},{"key":"military","value":"nuclear_explosion_site","description":"🄿 Nuclear Explosion Site","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger.svg"},{"key":"military","value":"checkpoint","description":"🄿 Military Checkpoint","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military_checkpoint.svg"},{"key":"military","value":"bunker","description":"🄿 Military Bunker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bunker.svg"},{"key":"utility","description":"🄿 Utility Marker, 🄵 Utilities, 🄵 Utility","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/silo.svg"},{"key":"utility","value":"power","description":"🄿 Power Marker, 🄵🅅 Utility: Power","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/silo.svg"},{"key":"man_made","value":"works","description":"🄿 Factory","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"},{"key":"man_made","value":"windpump","description":"🄿 Windpump","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/windpump.svg"},{"key":"man_made","value":"windmill","description":"🄿 Windmill","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/windmill.svg"},{"key":"man_made","value":"watermill","description":"🄿 Watermill","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watermill.svg"},{"key":"man_made","value":"water_works","description":"🄿 Water Works","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/powered_pump.svg"},{"key":"man_made","value":"water_well","description":"🄿 Water Well","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/well_pump_manual.svg"},{"key":"man_made","value":"water_tower","description":"🄿 Water Tower","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/water_tower.svg"},{"key":"man_made","value":"water_tap","description":"🄿 Water Tap","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/water_tap.svg"},{"key":"man_made","value":"wastewater_plant","description":"🄿 Wastewater Plant","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste.svg"},{"key":"man_made","value":"video_wall","description":"🄿 Digital Screen","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/billboard.svg"},{"key":"man_made","value":"utility_pole","description":"🄿 Utility Pole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/utility_pole.svg"},{"key":"man_made","value":"tunnel","description":"🄿 Tunnel Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tunnel.svg"},{"key":"man_made","value":"tower","description":"🄿 Tower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tower.svg"},{"key":"man_made","value":"telescope","description":"🄿 Telescope","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-satellite-dish.svg"},{"key":"man_made","value":"tailings_pond","description":"🄿 Tailings Pond","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"man_made","value":"survey_point","description":"🄿 Survey Point","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/benchmark_disk.svg"},{"key":"man_made","value":"surveillance","description":"🄿 Surveillance","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/security_camera.svg"},{"key":"man_made","value":"street_cabinet","description":"🄿 Street Cabinet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"},{"key":"man_made","value":"storage_tank","description":"🄿 Storage Tank, 🄿 Emergency Water Tank","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_tank.svg"},{"key":"man_made","value":"ski_jump","description":"🄿 Ski Jumping Tower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ski_jumping.svg"},{"key":"man_made","value":"silo","description":"🄿 Silo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/silo.svg"},{"key":"man_made","value":"satellite_dish","description":"🄿 Satellite Dish","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-satellite-dish.svg"},{"key":"man_made","value":"reservoir_covered","description":"🄿 Covered Reservoir, 🄿 Emergency Water Reservoir (Underground)","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"man_made","value":"quay","description":"🄿 Quay","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/quay.svg"},{"key":"man_made","value":"pumping_station","description":"🄿 Pumping Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/powered_pump.svg"},{"key":"man_made","value":"planter","description":"🄿 Planter, 🄿 Planter (Barrier) (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"},{"key":"man_made","value":"pipeline","description":"🄿 Pipeline","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/pipeline-line.svg"},{"key":"man_made","value":"pier","description":"🄿 Pier","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pier_fixed.svg"},{"key":"man_made","value":"petroleum_well","description":"🄿 Oil Well","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/oil_well.svg"},{"key":"man_made","value":"observatory","description":"🄿 Observatory","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/telescope.svg"},{"key":"man_made","value":"obelisk","description":"🄿 Obelisk","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/obelisk.svg"},{"key":"man_made","value":"monitoring_station","description":"🄿 Monitoring Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/antenna.svg"},{"key":"man_made","value":"mineshaft","description":"🄿 Mineshaft","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mineshaft_cage.svg"},{"key":"man_made","value":"milk_churn_stand","description":"🄿 Milk Churn Stand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/milk_jug.svg"},{"key":"man_made","value":"mast","description":"🄿 Mast","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mast.svg"},{"key":"man_made","value":"manhole","description":"🄿 Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/manhole.svg"},{"key":"man_made","value":"lighthouse","description":"🄿 Lighthouse","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lighthouse.svg"},{"key":"man_made","value":"insect_hotel","description":"🄿 Insect Hotel","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bugs.svg"},{"key":"man_made","value":"groyne","description":"🄿 Groin","object_types":["way","area"]},{"key":"man_made","value":"goods_conveyor","description":"🄿 Goods Conveyor","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/conveyor.svg"},{"key":"man_made","value":"gasometer","description":"🄿 Gasometer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_tank.svg"},{"key":"man_made","value":"gantry","description":"🄿 Gantry","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/toll_gantry.svg"},{"key":"man_made","value":"fuel_pump","description":"🄿 Gas Pump","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel.svg"},{"key":"man_made","value":"footwear_decontamination","description":"🄿 Footwear Decontamination Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/footwear_decontamination.svg"},{"key":"man_made","value":"flare","description":"🄿 Gas Flare","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/chimney.svg"},{"key":"man_made","value":"flagpole","description":"🄿 Flagpole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/embassy.svg"},{"key":"man_made","value":"embankment","description":"🄿 Embankment","object_types":["way"]},{"key":"man_made","value":"dyke","description":"🄿 Levee","object_types":["way"]},{"key":"man_made","value":"dovecote","description":"🄿 Dovecote","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dove.svg"},{"key":"man_made","value":"cutline","description":"🄿 Cut line","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging.svg"},{"key":"man_made","value":"cross","description":"🄿 Cross","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian.svg"},{"key":"man_made","value":"crane","description":"🄿 Crane","object_types":["node","way","area"]},{"key":"man_made","value":"compass_rose","description":"🄿 Compass Rose","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/compass.svg"},{"key":"man_made","value":"clearcut","description":"🄿 Clearcut Forest","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging.svg"},{"key":"man_made","value":"clarifier","description":"🄿 Wastewater Clarifier","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste.svg"},{"key":"man_made","value":"chimney","description":"🄿 Chimney","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/chimney.svg"},{"key":"man_made","value":"charge_point","description":"🄿 EV Charging Point","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plug-circle-bolt.svg"},{"key":"man_made","value":"ceremonial_gate","description":"🄿 Ceremonial Gate","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"},{"key":"man_made","value":"carpet_hanger","description":"🄿 Carpet Hanger","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site.svg"},{"key":"man_made","value":"cairn","description":"🄿 Cairn","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cairn.svg"},{"key":"man_made","value":"bunker_silo","description":"🄿 Bunker Silo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bunker_silo.svg"},{"key":"man_made","value":"bridge","description":"🄿 Bridge Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bridge.svg"},{"key":"man_made","value":"breakwater","description":"🄿 Breakwater","object_types":["way","area"]},{"key":"man_made","value":"beehive","description":"🄿 Beehive","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archive.svg"},{"key":"man_made","value":"beacon","description":"🄿 Beacon","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/communications-tower.svg"},{"key":"man_made","value":"antenna","description":"🄿 Antenna","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/antenna.svg"},{"key":"man_made","value":"adit","description":"🄿 Adit","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/adit_profile.svg"},{"key":"man_made","value":"yes","description":"🄿 Man-Made Feature (Unspecified Type) (unsearchable)","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_tank.svg"},{"key":"man_made","value":"courtyard","description":"🄿 Courtyard (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked.svg"},{"key":"product","value":"beer","description":"🄿 Industrial Brewery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_fermenter.svg"},{"key":"tower:type","value":"pagoda","description":"🄿 Pagoda","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vihara.svg"},{"key":"tower:type","value":"observation","description":"🄿 Observation Tower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/observation-tower.svg"},{"key":"tower:type","value":"minaret","description":"🄿 Minaret","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/domed_tower.svg"},{"key":"tower:type","value":"diving","description":"🄿 Diving Platform","object_types":["node","area"]},{"key":"tower:type","value":"defensive","description":"🄿 Fortified Tower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle.svg"},{"key":"tower:type","value":"cooling","description":"🄿 Cooling Tower","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cooling_tower.svg"},{"key":"tower:type","value":"communication","description":"🄿 Communication Tower, 🄿 Communication Mast","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tower_communication.svg"},{"key":"tower:type","value":"bell_tower","description":"🄿 Bell Tower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bell.svg"},{"key":"telescope:type","value":"radio","description":"🄿 Radio Telescope, 🄵🅅 Type: Radio Telescope","object_types":["node","area"]},{"key":"telescope:type","value":"optical","description":"🄿 Optical Telescope, 🄵🅅 Type: Optical Telescope","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/telescope.svg"},{"key":"surveillance:type","value":"camera","description":"🄿 Surveillance Camera, 🄵🅅 Surveillance Type: Camera","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/security_camera.svg"},{"key":"street_cabinet","value":"waste","description":"🄿 Private Waste Collection Cabinet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"},{"key":"street_cabinet","value":"transport_management","description":"🄿 Transport Management Cabinet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"},{"key":"street_cabinet","value":"traffic_monitoring","description":"🄿 Traffic Monitoring Cabinet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"},{"key":"street_cabinet","value":"traffic_control","description":"🄿 Traffic Control System Cabinet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"},{"key":"street_cabinet","value":"postal_service","description":"🄿 Postal Relay Box","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-door-closed.svg"},{"key":"content","value":"water","description":"🄿 Water Tank, 🄵🅅 Content: `water`","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_tank.svg"},{"key":"floating","value":"yes","description":"🄿 Floating Pier","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pier_floating.svg"},{"key":"tower:type","value":"lighting","description":"🄿 Lighting Mast","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mast_lighting.svg"},{"key":"communication:television","value":"yes","description":"🄿 Television Broadcast Mast","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mast_communication.svg"},{"key":"communication:radio","value":"yes","description":"🄿 Radio Broadcast Mast","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mast_communication.svg"},{"key":"communication:mobile_phone","value":"yes","description":"🄿 Mobile Phone Mast","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mast_communication.svg"},{"key":"manhole","value":"water","description":"🄿 Water Utility Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste_manhole.svg"},{"key":"manhole","value":"telecom","description":"🄿 Telecom Utility Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cable_manhole.svg"},{"key":"manhole","value":"sewer","description":"🄿 Sewer Utility Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/waste_manhole.svg"},{"key":"manhole","value":"power","description":"🄿 Power Utility Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power_manhole.svg"},{"key":"manhole","value":"gas","description":"🄿 Gas Utility Manhole","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gas_manhole.svg"},{"key":"manhole","value":"drain","description":"🄿 Storm Drain","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/manhole.svg"},{"key":"crane:type","value":"portal_crane","description":"🄿 Portal Crane, 🄵🅅 Crane Type: Portal Crane","object_types":["node","area"]},{"key":"crane:type","value":"gantry_crane","description":"🄿 Gantry Crane, 🄵🅅 Crane Type: Gantry Crane","object_types":["node","area"]},{"key":"ceremonial_gate","value":"torii","description":"🄿 Torii, 🄵🅅 Type: Torii","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shinto.svg"},{"key":"ceremonial_gate","value":"paifang","description":"🄿 Paifang, 🄵🅅 Type: Paifang","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/paifang.svg"},{"key":"leisure","value":"water_park","description":"🄿 Water Park","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"},{"key":"leisure","value":"trampoline_park","description":"🄿 Trampoline Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chevron-circle-up.svg"},{"key":"leisure","value":"track","description":"🄿 Racetrack (Non-Motorsport)","object_types":["way","node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/racetrack_oval.svg"},{"key":"leisure","value":"swimming_pool","description":"🄿 Swimming Pool","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimming-pool.svg"},{"key":"leisure","value":"swimming_area","description":"🄿 Natural Swimming Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"},{"key":"leisure","value":"stadium","description":"🄿 Stadium","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"leisure","value":"sports_hall","description":"🄿 Gymnasium","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"leisure","value":"sports_centre","description":"🄿 Sports Center / Complex","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"highway","value":"service","description":"🄿 Slipway (Drivable), 🄿 Paved Service Area (unsearchable), 🄿 Service Road, 🄵🅅 Type of Path: Service Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slipway.svg"},{"key":"leisure","value":"slipway","description":"🄿 Slipway","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slipway.svg"},{"key":"leisure","value":"sauna","description":"🄿 Sauna","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-thermometer-three-quarters.svg"},{"key":"leisure","value":"resort","description":"🄿 Resort","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/lodging.svg"},{"key":"leisure","value":"playground","description":"🄿 Playground","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"leisure","value":"pitch","description":"🄿 Sport Pitch","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"leisure","value":"picnic_table","description":"🄿 Picnic Table","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site.svg"},{"key":"leisure","value":"park","description":"🄿 Park","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tree_and_bench.svg"},{"key":"leisure","value":"outdoor_seating","description":"🄿 Outdoor Seating Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/picnic-site.svg"},{"key":"leisure","value":"nature_reserve","description":"🄿 Nature Reserve","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park.svg"},{"key":"leisure","value":"miniature_golf","description":"🄿 Miniature Golf","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/golf_green.svg"},{"key":"seamark:harbour:category","value":"marina_no_facilities","description":"🄿 Yacht Berths, 🄵🅅 Domestic Facilities: No","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sailboat.svg"},{"key":"leisure","value":"marina","description":"🄿 Marina","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sailboat.svg"},{"key":"leisure","value":"indoor_play","description":"🄿 Indoor Play Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/slide.svg"},{"key":"leisure","value":"ice_rink","description":"🄿 Ice Rink","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skating.svg"},{"key":"leisure","value":"hot_tub","description":"🄿 Hot Tub","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hot-tub-person.svg"},{"key":"leisure","value":"horse_riding","description":"🄿 Horseback Riding Center, 🄵🅅 Horseback Riding Center: Yes","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"},{"key":"leisure","value":"hackerspace","description":"🄿 Hackerspace","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-code.svg"},{"key":"leisure","value":"golf_course","description":"🄿 Golf Course","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"},{"key":"leisure","value":"garden","description":"🄿 Garden","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"},{"key":"leisure","value":"fitness_station","description":"🄿 Outdoor Fitness Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horizontal_bar.svg"},{"key":"leisure","value":"fitness_centre","description":"🄿 Gym / Fitness Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumbbell.svg"},{"key":"leisure","value":"fishing","description":"🄿 Fishing Spot","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"},{"key":"leisure","value":"firepit","description":"🄿 Fire Pit","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/campfire.svg"},{"key":"leisure","value":"escape_game","description":"🄿 Escape Room","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-puzzle-piece.svg"},{"key":"leisure","value":"dog_park","description":"🄿 Dog Park","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dog-park.svg"},{"key":"leisure","value":"disc_golf_course","description":"🄿 Disc Golf Course","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/disc_golf_basket.svg"},{"key":"leisure","value":"dance","description":"🄿 Dance Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"},{"key":"leisure","value":"common","description":"🄿 Common","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"leisure","value":"bowling_alley","description":"🄿 Bowling Alley","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bowling.svg"},{"key":"leisure","value":"bleachers","description":"🄿 Bleachers","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bleachers.svg"},{"key":"leisure","value":"bird_hide","description":"🄿 Bird Hide","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/binoculars.svg"},{"key":"leisure","value":"beach_resort","description":"🄿 Beach Resort","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-umbrella-beach.svg"},{"key":"leisure","value":"bathing_place","description":"🄿 Bathing Place","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"leisure","value":"bandstand","description":"🄿 Bandstand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"},{"key":"leisure","value":"amusement_arcade","description":"🄿 Amusement Arcade","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/gaming.svg"},{"key":"leisure","value":"adult_gaming_centre","description":"🄿 Adult Gaming Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/casino.svg"},{"key":"sport","value":"running","description":"🄿 Running Track, 🄵🅅 Sports: Running","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"},{"key":"sport","value":"horse_racing","description":"🄿 Horse Racetrack, 🄿 Horse Race Course, 🄵🅅 Sports: Horse Racing","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/racetrack-horse.svg"},{"key":"sport","value":"cycling","description":"🄿 Cycling Track, 🄵🅅 Sports: Cycling","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/racetrack-cycling.svg"},{"key":"sport","value":"athletics","description":"🄿 Track & Field Runway (unsearchable), 🄿 Track & Field Pitch (unsearchable), 🄵🅅 Sports: Track & Field","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"},{"key":"athletics","value":"triple_jump","description":"🄿 Triple Jump Runway, 🄿 Triple Jump Pit, 🄵🅅 Event: Triple Jump","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"},{"key":"athletics","value":"steeplechase","description":"🄿 Steeplechase Runway, 🄵🅅 Event: Steeplechase","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"},{"key":"athletics","value":"sprint","description":"🄿 Sprint Runway, 🄵🅅 Event: Sprinting","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"},{"key":"athletics","value":"pole_vault","description":"🄿 Pole Vault Runway, 🄿 Pole Vault Pit, 🄵🅅 Event: Pole Vault","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"},{"key":"athletics","value":"long_jump","description":"🄿 Long Jump Runway, 🄿 Long Jump Pit, 🄵🅅 Event: Long Jump","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"},{"key":"athletics","value":"javelin_throw","description":"🄿 Javelin Runway, 🄿 Javelin Sector, 🄵🅅 Event: Javelin","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"},{"key":"athletics","value":"running","description":"🄿 Running Track (unsearchable), 🄵🅅 Event: Running","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-running.svg"},{"key":"sport","value":"swimming","description":"🄿 Swimming Pool Facility, 🄵🅅 Sports: Swimming","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-swimmer.svg"},{"key":"sport","value":"shooting","description":"🄿 Shooting Range Facility, 🄿 Shooting Range, 🄵🅅 Sports: Shooting","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crosshairs.svg"},{"key":"sport","value":"karting","description":"🄿 Go Kart Facility, 🄿 Karting Racetrack, 🄵🅅 Sports: Kart Racing","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flag-checkered.svg"},{"key":"sport","value":"climbing_adventure","description":"🄿 Adventure Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/abseiling.svg"},{"key":"sport","value":"climbing","description":"🄿 Climbing Gym, 🄵🅅 Sports: Climbing","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/abseiling.svg"},{"key":"indoor","value":"yes","description":"🄿 Indoor Playground","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/playground.svg"},{"key":"sport","value":"volleyball","description":"🄿 Volleyball Court, 🄵🅅 Sports: Volleyball","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball.svg"},{"key":"sport","value":"tetherball","description":"🄿 Tetherball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"sport","value":"tennis","description":"🄿 Tennis Court, 🄵🅅 Sports: Tennis","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis.svg"},{"key":"sport","value":"table_tennis","description":"🄿 Ping Pong Table, 🄵🅅 Sports: Table Tennis","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-table-tennis.svg"},{"key":"sport","value":"table_soccer","description":"🄿 Foosball Table, 🄵🅅 Sports: `table_soccer`","object_types":["area","node"]},{"key":"sport","value":"softball","description":"🄿 Softball Field, 🄵🅅 Sports: Softball","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/baseball.svg"},{"key":"sport","value":"soccer","description":"🄿 Soccer Field, 🄵🅅 Sports: Soccer","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/soccer.svg"},{"key":"sport","value":"skateboard","description":"🄿 Skate Park, 🄵🅅 Sports: Skateboard","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/skateboard.svg"},{"key":"sport","value":"shuffleboard","description":"🄿 Shuffleboard Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shuffleboard.svg"},{"key":"sport","value":"rugby_union","description":"🄿 Rugby Union Field, 🄵🅅 Sports: Rugby Union","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football.svg"},{"key":"sport","value":"rugby_league","description":"🄿 Rugby League Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football.svg"},{"key":"sport","value":"pickleball","description":"🄿 Pickleball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis.svg"},{"key":"sport","value":"paintball","description":"🄿 Paintball Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crosshairs.svg"},{"key":"sport","value":"padel","description":"🄿 Padel Court, 🄵🅅 Sports: Padel","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis.svg"},{"key":"sport","value":"netball","description":"🄿 Netball Court, 🄵🅅 Sports: Netball","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball.svg"},{"key":"sport","value":"horseshoes","description":"🄿 Horseshoes Pit","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horseshoes.svg"},{"key":"sport","value":"handball","description":"🄿 Team Handball Court, 🄵🅅 Sports: Team Handball","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"sport","value":"gaga","description":"🄿 Gaga Pit","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"sport","value":"futsal","description":"🄿 Futsal Court, 🄵🅅 Sports: Futsal","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/soccer.svg"},{"key":"sport","value":"funnel_ball","description":"🄿 Funnel Ball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"sport","value":"four_square","description":"🄿 Four Square Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-border-all.svg"},{"key":"sport","value":"field_hockey","description":"🄿 Field Hockey Pitch","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/field_hockey.svg"},{"key":"sport","value":"equestrian","description":"🄿 Horseback Riding / Rodeo Arena, 🄵🅅 Sports: Equestrian Sports","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"},{"key":"sport","value":"cricket","description":"🄿 Cricket Field, 🄵🅅 Sports: Cricket","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cricket.svg"},{"key":"sport","value":"chess","description":"🄿 Giant Chess Board, 🄿 Chess Table, 🄵🅅 Sports: Chess","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chess-bishop.svg"},{"key":"sport","value":"bowls","description":"🄿 Bowling Green, 🄵🅅 Sports: Bowls","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"sport","value":"boules","description":"🄿 Boules/Bocce Court, 🄵🅅 Sports: Boules","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"sport","value":"beachvolleyball","description":"🄿 Beach Volleyball Court, 🄵🅅 Sports: Beach Volleyball","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/volleyball.svg"},{"key":"sport","value":"basketball","description":"🄿 Basketball Court, 🄵🅅 Sports: Basketball","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/basketball.svg"},{"key":"sport","value":"baseball","description":"🄿 Baseball Field, 🄵🅅 Sports: Baseball","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/baseball.svg"},{"key":"sport","value":"badminton","description":"🄿 Badminton Court, 🄵🅅 Sports: Badminton","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/tennis.svg"},{"key":"sport","value":"australian_football","description":"🄿 Australian Football Field","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football.svg"},{"key":"sport","value":"archery","description":"🄿 Archery Range","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/archery.svg"},{"key":"sport","value":"american_handball","description":"🄿 American Handball Court","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"},{"key":"sport","value":"american_football","description":"🄿 American Football Field, 🄵🅅 Sports: American Football","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/american-football.svg"},{"key":"athletics","value":"shot_put","description":"🄿 Shot Put Ring / Pit, 🄵🅅 Event: Shot Put","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"athletics","value":"high_jump","description":"🄿 High Jump Pit, 🄵🅅 Event: High Jump","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"athletics","value":"hammer_throw","description":"🄿 Hammer Throw Ring / Sector, 🄵🅅 Event: Hammer Throw","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"athletics","value":"discus_throw","description":"🄿 Discus Ring / Sector, 🄵🅅 Event: Discus","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"garden:type","value":"residential","description":"🄿 Residential Garden","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"},{"key":"garden:style","value":"kitchen","description":"🄿 Kitchen Garden","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-carrot.svg"},{"key":"garden:type","value":"community","description":"🄿 Community Garden","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"},{"key":"garden:type","value":"botanical","description":"🄿 Botanical Garden","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"},{"key":"fitness_station","value":"stairs","description":"🄿 Exercise Stairs","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"fitness_station","value":"sit-up","description":"🄿 Sit-Up Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"fitness_station","value":"sign","description":"🄿 Exercise Instruction Sign","object_types":["node","area"]},{"key":"fitness_station","value":"rings","description":"🄿 Exercise Rings","object_types":["node","area"]},{"key":"fitness_station","value":"push-up","description":"🄿 Push-Up Station","object_types":["node","area"]},{"key":"fitness_station","value":"parallel_bars","description":"🄿 Parallel Bars","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horizontal_bar.svg"},{"key":"fitness_station","value":"hyperextension","description":"🄿 Hyperextension Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"fitness_station","value":"horizontal_ladder","description":"🄿 Exercise Monkey Bars","object_types":["node","area"]},{"key":"fitness_station","value":"horizontal_bar","description":"🄿 Exercise Horizontal Bar","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horizontal_bar.svg"},{"key":"fitness_station","value":"box","description":"🄿 Exercise Box","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"fitness_station","value":"balance_beam","description":"🄿 Exercise Balance Beam","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/balance_beam.svg"},{"key":"sport","value":"yoga","description":"🄿 Yoga Studio, 🄵🅅 Sports: Yoga","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"landuse","value":"winter_sports","description":"🄿 Winter Sports Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-skiing.svg"},{"key":"landuse","value":"vineyard","description":"🄿 Vineyard","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/grapes.svg"},{"key":"landuse","value":"salt_pond","description":"🄿 Salt Evaporation Pond","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/triangle-stroked.svg"},{"key":"landuse","value":"retail","description":"🄿 Retail Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial.svg"},{"key":"landuse","value":"residential","description":"🄿 Residential Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community.svg"},{"key":"landuse","value":"religious","description":"🄿 Religious Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"},{"key":"landuse","value":"recreation_ground","description":"🄿 Recreation Ground","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"landuse","value":"railway","description":"🄿 Railway Corridor","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train.svg"},{"key":"landuse","value":"quarry","description":"🄿 Quarry","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pick_hammer.svg"},{"key":"landuse","value":"plant_nursery","description":"🄿 Plant Nursery","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-seedling.svg"},{"key":"landuse","value":"orchard","description":"🄿 Orchard","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park.svg"},{"key":"landuse","value":"military","description":"🄿 Military Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military.svg"},{"key":"landuse","value":"meadow","description":"🄿 Meadow","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"},{"key":"landuse","value":"landfill","description":"🄿 Landfill","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bulldozer.svg"},{"key":"landuse","value":"industrial","description":"🄿 Industrial Area, 🄿 Industrial Area (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"},{"key":"landuse","value":"harbour","description":"🄿 Harbor","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor.svg"},{"key":"landuse","value":"greenhouse_horticulture","description":"🄿 Greenhouse Horticulture","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"},{"key":"landuse","value":"greenfield","description":"🄿 Greenfield","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bulldozer.svg"},{"key":"landuse","value":"grass","description":"🄿 Grass","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/lawn.svg"},{"key":"landuse","value":"garages","description":"🄿 Garage Landuse","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"},{"key":"landuse","value":"forest","description":"🄿 Managed Forest","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park-alt1.svg"},{"key":"landuse","value":"flowerbed","description":"🄿 Flowerbed","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden.svg"},{"key":"landuse","value":"farmyard","description":"🄿 Farmyard","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"},{"key":"landuse","value":"farmland","description":"🄿 Farmland","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tractor.svg"},{"key":"landuse","value":"education","description":"🄿 Educational Campus","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"},{"key":"landuse","value":"construction","description":"🄿 Construction Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bulldozer.svg"},{"key":"landuse","value":"commercial","description":"🄿 Commercial Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"landuse","value":"cemetery","description":"🄿 Cemetery","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"},{"key":"landuse","value":"brownfield","description":"🄿 Brownfield","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bulldozer.svg"},{"key":"landuse","value":"aquaculture","description":"🄿 Aquaculture","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aquarium.svg"},{"key":"landuse","value":"allotments","description":"🄿 Garden Allotments","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre.svg"},{"key":"landuse","value":"reservoir","description":"🄿 Reservoir (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=reservoir","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"landuse","value":"pond","description":"🄿 Pond (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=pond","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"landuse","value":"farm","description":"🄿 Farmland (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"},{"key":"landuse","value":"churchyard","description":"🄿 Churchyard (unsearchable), 🄳 (deprecated tag) ➜ landuse=religious","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian.svg"},{"key":"landuse","value":"basin","description":"🄿 Basin (unsearchable), 🄳 (deprecated tag) ➜ natural=water + water=basin","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"residential","value":"trailer_park","description":"🄿 Mobile Home Park","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/manufactured_home.svg"},{"key":"residential","value":"apartments","description":"🄿 Apartment Complex","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community.svg"},{"key":"military","value":"training_area","description":"🄿 Military Training Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/military.svg"},{"key":"military","value":"range","description":"🄿 Military Range","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bullseye.svg"},{"key":"military","value":"obstacle_course","description":"🄿 Military Obstacle Course","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tire_course.svg"},{"key":"military","value":"danger_area","description":"🄿 Military Danger Area, 🄿 Military Danger Area (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger.svg"},{"key":"military","value":"base","description":"🄿 Military Base","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/anchor_medal.svg"},{"key":"military","value":"barracks","description":"🄿 Barracks","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/army_tent.svg"},{"key":"military","value":"airfield","description":"🄿 Military Airfield","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fighter_jet.svg"},{"key":"military_service","value":"navy","description":"🄿 Naval Base, 🄵🅅 Military Service: Navy","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/anchor_medal.svg"},{"key":"orchard","value":"meadow_orchard","description":"🄿 Orchard Planted in a Meadow","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park.svg"},{"key":"meadow","value":"meadow_orchard","description":"🄿 Meadow With Fruit Trees","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/park.svg"},{"key":"industrial","value":"slaughterhouse","description":"🄿 Slaughterhouse","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slaughterhouse.svg"},{"key":"industrial","value":"scrap_yard","description":"🄿 Scrap Yard","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/junk_car.svg"},{"key":"industrial","value":"depot","description":"🄿 Depot","object_types":["node","area"]},{"key":"industrial","value":"brewery","description":"🄿 Industrial Brewery (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_fermenter.svg"},{"key":"produce","value":"fish","description":"🄿 Fish Farm / Hatchery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"},{"key":"internet_access","value":"wlan","description":"🄿 Wi-Fi Hotspot, 🄵🅅 Internet Connection: Wifi","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-wifi.svg"},{"key":"indoor","value":"wall","description":"🄿 Indoor Wall","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"},{"key":"stairs","value":"yes","description":"🄿 Indoor Stairwell","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-steps.svg"},{"key":"indoor","value":"room","description":"🄿 Room","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/room.svg"},{"key":"elevator","value":"yes","description":"🄿 Indoor Elevator Shaft","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/elevator.svg"},{"key":"indoor","value":"door","description":"🄿 Indoor Door","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"},{"key":"indoor","value":"corridor","description":"🄿 Indoor Corridor, 🄿 Indoor Corridor (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"indoor","value":"area","description":"🄿 Indoor Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/room.svg"},{"key":"historic","value":"wreck","description":"🄿 Shipwreck, 🄵🅅 Type: Shipwreck","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"},{"key":"historic","value":"wayside_shrine","description":"🄿 Wayside Shrine, 🄵🅅 Type: Wayside Shrine","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/landmark.svg"},{"key":"historic","value":"wayside_cross","description":"🄿 Wayside Cross, 🄵🅅 Type: Wayside Cross","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian.svg"},{"key":"historic","value":"tomb","description":"🄿 Tomb, 🄵🅅 Type: Tomb","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"},{"key":"historic","value":"ruins","description":"🄿 Ruins, 🄵🅅 Type: Ruins","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"},{"key":"historic","value":"pillory","description":"🄿 Historic Pillory, 🄵🅅 Type: Historic Pillory","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument.svg"},{"key":"historic","value":"monument","description":"🄿 Monument, 🄵🅅 Type: Monument","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument.svg"},{"key":"historic","value":"memorial","description":"🄿 Memorial, 🄵🅅 Type: Memorial","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/monument.svg"},{"key":"historic","value":"manor","description":"🄿 Manor House, 🄵🅅 Type: Manor House","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle.svg"},{"key":"historic","value":"fort","description":"🄿 Historic Fort, 🄵🅅 Type: Historic Fort","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle.svg"},{"key":"historic","value":"city_gate","description":"🄿 City Gate, 🄵🅅 Type: City Gate","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle.svg"},{"key":"historic","value":"castle","description":"🄿 Castle, 🄵🅅 Type: Castle","object_types":["node","area"]},{"key":"historic","value":"cannon","description":"🄿 Cannon","object_types":["node"]},{"key":"historic","value":"boundary_stone","description":"🄿 Boundary Stone, 🄵🅅 Type: Boundary Stone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/milestone.svg"},{"key":"historic","value":"archaeological_site","description":"🄿 Archaeological Site, 🄵🅅 Type: Archaeological Site","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"},{"key":"historic","value":"aircraft","description":"🄿 Historic Aircraft","object_types":["node","area"]},{"key":"memorial","value":"stolperstein","description":"🄿 Memorial Plaque Stolperstein, 🄵🅅 Type: Stolperstein","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plaque.svg"},{"key":"memorial","value":"plaque","description":"🄿 Commemorative Plaque, 🄵🅅 Type: Commemorative Plaque","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plaque.svg"},{"key":"memorial","value":"blue_plaque","description":"🄿 Blue Plaque, 🄵🅅 Type: Blue Plaque","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plaque.svg"},{"key":"castle_type","value":"stately","description":"🄿 Château, 🄵🅅 Type: Stately Home","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crown.svg"},{"key":"castle_type","value":"palace","description":"🄿 Palace, 🄵🅅 Type: Palace","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-crown.svg"},{"key":"castle_type","value":"fortress","description":"🄿 Historic Fortress, 🄵🅅 Type: Fortress","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/castle.svg"},{"key":"highway","value":"unclassified","description":"🄿 Minor/Unclassified Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-unclassified.svg"},{"key":"highway","value":"turning_loop","description":"🄿 Turning Loop (Island)","object_types":["node"]},{"key":"highway","value":"turning_circle","description":"🄿 Turning Circle","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle.svg"},{"key":"highway","value":"trunk_link","description":"🄿 Trunk Link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-trunk-link.svg"},{"key":"highway","value":"trunk","description":"🄿 Trunk Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-trunk.svg"},{"key":"highway","value":"trailhead","description":"🄿 Trailhead","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hiking.svg"},{"key":"highway","value":"traffic_signals","description":"🄿 Traffic Signals","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/traffic_signals.svg"},{"key":"highway","value":"traffic_mirror","description":"🄿 Traffic Mirror","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked.svg"},{"key":"highway","value":"track","description":"🄿 Track / Land-Access Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-monster.svg"},{"key":"highway","value":"toll_gantry","description":"🄿 Open Road Toll","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/toll_gantry.svg"},{"key":"highway","value":"tertiary_link","description":"🄿 Tertiary Link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary-link.svg"},{"key":"highway","value":"tertiary","description":"🄿 Tertiary Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-tertiary.svg"},{"key":"highway","value":"street_lamp","description":"🄿 Street Lamp","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/street_lamp_arm.svg"},{"key":"highway","value":"stop","description":"🄿 Stop Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/stop.svg"},{"key":"highway","value":"steps","description":"🄿 Steps","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-steps.svg"},{"key":"highway","value":"speed_display","description":"🄿 Radar Speed Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/square-stroked.svg"},{"key":"highway","value":"speed_camera","description":"🄿 Speed Camera","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/security_camera.svg"},{"key":"highway","value":"services","description":"🄿 Service Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car.svg"},{"key":"highway","value":"secondary_link","description":"🄿 Secondary Link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-secondary-link.svg"},{"key":"highway","value":"secondary","description":"🄿 Secondary Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-secondary.svg"},{"key":"highway","value":"road","description":"🄿 Unknown Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"},{"key":"highway","value":"rest_area","description":"🄿 Rest Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/highway-rest-area.svg"},{"key":"highway","value":"residential","description":"🄿 Residential Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-residential.svg"},{"key":"highway","value":"raceway","description":"🄿 Motorsport Racetrack","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/speedway_oval.svg"},{"key":"highway","value":"primary_link","description":"🄿 Primary Link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-primary-link.svg"},{"key":"highway","value":"primary","description":"🄿 Primary Road","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-primary.svg"},{"key":"highway","value":"pedestrian","description":"🄿 Pedestrian Street, 🄿 Pedestrian Area","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"highway","value":"path","description":"🄿 Path, 🄵🅅 Type of Path: Cartpath","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"},{"key":"highway","value":"passing_place","description":"🄿 Passing Place","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked.svg"},{"key":"highway","value":"motorway_link","description":"🄿 Motorway Link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-motorway-link.svg"},{"key":"highway","value":"motorway_junction","description":"🄿 Motorway Junction / Exit","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/junction.svg"},{"key":"highway","value":"motorway","description":"🄿 Motorway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-motorway.svg"},{"key":"highway","value":"mini_roundabout","description":"🄿 Mini-Roundabout","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/circle-stroked.svg"},{"key":"highway","value":"milestone","description":"🄿 Highway Milestone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/milestone.svg"},{"key":"highway","value":"living_street","description":"🄿 Living Street","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-living-street.svg"},{"key":"highway","value":"ladder","description":"🄿 Ladder","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/crossing_markings-ladder.svg"},{"key":"highway","value":"give_way","description":"🄿 Yield Sign","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/yield.svg"},{"key":"highway","value":"footway","description":"🄿 Foot Path","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"highway","value":"escape","description":"🄿 Runaway Truck Ramp","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-fast.svg"},{"key":"highway","value":"emergency_bay","description":"🄿 Emergency Stopping Place","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car.svg"},{"key":"highway","value":"emergency_access_point","description":"🄿 Emergency Access Point","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compress-arrows-alt.svg"},{"key":"highway","value":"elevator","description":"🄿 Inclined Elevator, 🄿 Elevator","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/elevator.svg"},{"key":"highway","value":"cyclist_waiting_aid","description":"🄿 Cyclist Waiting Aid","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/guard_rail.svg"},{"key":"highway","value":"cycleway","description":"🄿 Cycle Path","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-biking.svg"},{"key":"highway","value":"crossing","description":"🄿 Crossing","object_types":["node"]},{"key":"highway","value":"corridor","description":"🄿 Indoor Corridor","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_walled.svg"},{"key":"highway","value":"construction","description":"🄿 Road Under Construction","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/barrier.svg"},{"key":"highway","value":"busway","description":"🄿 Busway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus.svg"},{"key":"highway","value":"bus_guideway","description":"🄿 Bus Guideway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus_guided.svg"},{"key":"highway","value":"bridleway","description":"🄿 Bridle Path","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"},{"key":"highway","value":"traffic_sign","description":"🄿 Traffic Sign (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-directions.svg"},{"key":"highway","value":"bus_stop","description":"🄿 Bus Stop (unsearchable)","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus.svg"},{"key":"conveying","description":"🄿 Escalator, 🄿 Moving Walkway, 🄵 Escalator, 🄵 Movement Direction","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance.svg"},{"key":"service","value":"parking_aisle","description":"🄿 Parking Aisle, 🄵🅅 Type: Parking Aisle","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"service","value":"emergency_access","description":"🄿 Emergency Access, 🄵🅅 Type: Emergency Access","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"service","value":"driveway","description":"🄿 Driveway, 🄵🅅 Type: Driveway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"service","value":"drive-through","description":"🄿 Drive-Through, 🄵🅅 Type: Drive-Through","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"service","value":"alley","description":"🄿 Alley, 🄵🅅 Type: Alley","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/highway-service.svg"},{"key":"bridge","description":"🄿 Unknown Road Bridge, 🄵 Structure, 🄵 Type","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/iD-sprite/presets/other-line.svg"},{"key":"sport","value":"motocross","description":"🄿 Motocross Racetrack, 🄵🅅 Sports: Motocross","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"},{"key":"bicycle","value":"designated","description":"🄿 Cycle & Foot Refuge Island, 🄿 Cycle & Foot Path, 🄿 Cycle & Foot Crossing, 🄵🅅 Allowed Access: `designated`","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_and_cyclist.svg"},{"key":"informal","value":"yes","description":"🄿 Informal Path, 🄿 Informal Foot Path (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shoe-prints.svg"},{"key":"bridge","value":"boardwalk","description":"🄿 Boardwalk, 🄵🅅 Type: Boardwalk","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"path","value":"crossing","description":"🄿 Cycle & Foot Crossing (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cyclist_crosswalk.svg"},{"key":"crossing","value":"unmarked","description":"🄿 Unmarked Cycle & Foot Crossing (unsearchable), 🄿 Unmarked Crossing, 🄿 Unmarked Cycle Crossing, 🄵🅅 Type: No Road Markings or Traffic Signals","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"crossing","value":"uncontrolled","description":"🄿 Marked Cycle & Foot Crossing (unsearchable), 🄿 Marked Crossing, 🄿 Marked Cycle Crossing, 🄵🅅 Type: Only Road Markings","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"crossing","value":"traffic_signals","description":"🄿 Cycle & Foot Crossing With Pedestrian Signals (unsearchable), 🄿 Crossing With Pedestrian Signals, 🄿 Cycle Crossing With Traffic Signals, 🄵🅅 Type: Crossing With Traffic Signals","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railway_signals.svg"},{"key":"crossing","value":"marked","description":"🄿 Marked Cycle & Foot Crossing (unsearchable), 🄿 Marked Crossing (unsearchable), 🄿 Marked Cycle Crossing (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_crosswalk.svg"},{"key":"crossing","value":"informal","description":"🄿 Informal Crossing (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"footway","value":"traffic_island","description":"🄿 Refuge Island","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"footway","value":"sidewalk","description":"🄿 Sidewalk","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian.svg"},{"key":"footway","value":"crossing","description":"🄿 Pedestrian Crossing","object_types":["way"]},{"key":"footway","value":"access_aisle","description":"🄿 Access Aisle","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/striped_zone.svg"},{"key":"crossing","value":"zebra","description":"🄿 Marked Crossing (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_crosswalk.svg"},{"key":"cycleway","value":"traffic_island","description":"🄿 Cycle Refuge Island","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-biking.svg"},{"key":"moped","value":"designated","description":"🄿 Moped Link","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"},{"key":"foot","value":"designated","description":"🄿 Cycle & Foot Path, 🄿 Cycle & Foot Crossing, 🄵🅅 Allowed Access: `designated`","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_and_cyclist.svg"},{"key":"cycleway","value":"crossing","description":"🄿 Cycle Crossing (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cyclist_crosswalk.svg"},{"key":"healthcare","value":"speech_therapist","description":"🄿 Speech Therapist, 🄵🅅 Type: `speech_therapist`, 🄵🅅 Type: Speech Therapist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comment.svg"},{"key":"healthcare","value":"sample_collection","description":"🄿 Sample Collection Facility, 🄵🅅 Type: Sample Collection Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vial.svg"},{"key":"healthcare","value":"rehabilitation","description":"🄿 Rehabilitation Facility, 🄵🅅 Type: Rehabilitation Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"healthcare","value":"psychotherapist","description":"🄿 Psychotherapist, 🄵🅅 Type: `psychotherapist`, 🄵🅅 Type: Psychotherapist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"healthcare","value":"podiatrist","description":"🄿 Podiatrist, 🄵🅅 Type: Podiatrist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"healthcare","value":"physiotherapist","description":"🄿 Physiotherapist, 🄵🅅 Type: `physiotherapist`, 🄵🅅 Type: Physiotherapist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/physiotherapist.svg"},{"key":"healthcare","value":"optometrist","description":"🄿 Optometrist, 🄵🅅 Type: Optometrist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-eye.svg"},{"key":"healthcare","value":"occupational_therapist","description":"🄿 Occupational Therapist, 🄵🅅 Type: `occupational_therapist`, 🄵🅅 Type: Occupational Therapist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"healthcare","value":"midwife","description":"🄿 Midwife, 🄵🅅 Type: Midwife","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"},{"key":"healthcare","value":"laboratory","description":"🄿 Medical Laboratory, 🄵🅅 Type: Medical Laboratory","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vial.svg"},{"key":"healthcare","value":"hospice","description":"🄿 Hospice, 🄵🅅 Type: Hospice","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-procedures.svg"},{"key":"healthcare","value":"counselling","description":"🄿 Counselling Center, 🄵🅅 Type: Counselling Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-comments.svg"},{"key":"healthcare","value":"blood_donation","description":"🄿 Blood Donor Center, 🄵🅅 Type: Blood Donation Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/blood-bank.svg"},{"key":"healthcare","value":"birthing_centre","description":"🄿 Birthing Center, 🄵🅅 Type: Birthing Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-baby.svg"},{"key":"healthcare","value":"audiologist","description":"🄿 Audiologist, 🄵🅅 Type: Audiologist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"healthcare","value":"alternative","description":"🄿 Alternative Medicine, 🄵🅅 Type: Alternative Medicine","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"},{"key":"healthcare","value":"yes","description":"🄿 Healthcare Facility (Unspecified Type) (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"healthcare:speciality","value":"orthodontics","description":"🄿 Orthodontist, 🄵🅅 Specialties: Orthodontics","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-teeth.svg"},{"key":"healthcare:speciality","value":"traditional_chinese_medicine","description":"🄿 Traditional Chinese Medicine Practitioner, 🄵🅅 Specialties: Traditional Chinese Medicine","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"},{"key":"healthcare:speciality","value":"osteopathy","description":"🄿 Osteopath, 🄵🅅 Specialties: Osteopathy","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"},{"key":"healthcare:speciality","value":"naturopathy","description":"🄿 Naturopath, 🄵🅅 Specialties: Naturopathy","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"},{"key":"healthcare:speciality","value":"homeopathy","description":"🄿 Homeopath, 🄵🅅 Specialties: Homeopathy","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"},{"key":"healthcare:speciality","value":"chiropractic","description":"🄿 Chiropractor, 🄵🅅 Specialties: Chiropractic","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"},{"key":"healthcare:speciality","value":"ayurveda","description":"🄿 Ayurveda Practitioner, 🄵🅅 Specialties: Ayurveda","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hinduism.svg"},{"key":"healthcare:speciality","value":"acupuncture","description":"🄿 Acupuncture Practitioner, 🄵🅅 Specialties: Acupuncture","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spa.svg"},{"key":"golf","value":"water_hazard","description":"🄿 Water Hazard","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"},{"key":"golf","value":"tee","description":"🄿 Tee Box","object_types":["node","area"]},{"key":"golf","value":"rough","description":"🄿 Rough","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"},{"key":"golf","value":"path","description":"🄿 Golf Walking Path","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"},{"key":"golf","value":"lateral_water_hazard","description":"🄿 Lateral Water Hazard","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"},{"key":"golf","value":"hole","description":"🄿 Golf Hole","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/golf_green.svg"},{"key":"golf","value":"green","description":"🄿 Putting Green","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/golf_green.svg"},{"key":"golf","value":"fairway","description":"🄿 Fairway","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"},{"key":"golf","value":"driving_range","description":"🄿 Driving Range","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"},{"key":"golf","value":"clubhouse","description":"🄿 Golf Clubhouse","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"},{"key":"golf","value":"cartpath","description":"🄿 Golf Cartpath","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/golf_cart.svg"},{"key":"golf","value":"bunker","description":"🄿 Sand Trap","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/golf.svg"},{"key":"entrance","value":"staircase","description":"🄿 Staircase Entrance, 🄵🅅 Type: Staircase","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"},{"key":"entrance","value":"shop","description":"🄿 Shop Entrance, 🄵🅅 Type: Shop Entrance","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"},{"key":"entrance","value":"main","description":"🄿 Main Entrance, 🄵🅅 Type: Main","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"},{"key":"emergency","value":"emergency_ward_entrance","description":"🄿 Emergency Room Entrance","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"entrance","value":"emergency","description":"🄿 Emergency Exit, 🄵🅅 Type: Emergency Exit","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"},{"key":"emergency","value":"siren","description":"🄿 Siren","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-volume-up.svg"},{"key":"emergency","value":"phone","description":"🄿 Emergency Phone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/emergency-phone.svg"},{"key":"emergency","value":"mountain_rescue","description":"🄿 Mountain Rescue","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/mountain_cross.svg"},{"key":"emergency","value":"lifeguard","description":"🄿 Lifeguard","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-life-ring.svg"},{"key":"emergency","value":"water_rescue","description":"🄿 Lifeboat Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat_tour.svg"},{"key":"emergency","value":"life_ring","description":"🄿 Life Ring","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-life-ring.svg"},{"key":"emergency","value":"landing_site","description":"🄿 Emergency Landing Site","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport.svg"},{"key":"emergency","value":"first_aid_kit","description":"🄿 First Aid Kit","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-medkit.svg"},{"key":"emergency","value":"fire_service_inlet","description":"🄿 Fire Department Connection","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/water.svg"},{"key":"emergency","value":"fire_hydrant","description":"🄿 Fire Hydrant","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fire_hydrant.svg"},{"key":"emergency","value":"fire_hose","description":"🄿 Fire Hose","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tape.svg"},{"key":"emergency","value":"fire_extinguisher","description":"🄿 Fire Extinguisher","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fire-extinguisher.svg"},{"key":"emergency","value":"fire_alarm_box","description":"🄿 Fire Alarm Call Box","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-bell.svg"},{"key":"emergency","value":"disaster_response","description":"🄿 Disaster Response Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-helmet-safety.svg"},{"key":"emergency","value":"defibrillator","description":"🄿 Defibrillator","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/defibrillator.svg"},{"key":"emergency","value":"assembly_point","description":"🄿 Emergency Assembly Point","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-compress-arrows-alt.svg"},{"key":"emergency","value":"ambulance_station","description":"🄿 Ambulance Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ambulance.svg"},{"key":"emergency","value":"yes","description":"🄿 Emergency Feature (unsearchable)","object_types":["way"]},{"key":"emergency","value":"private","description":"🄿 Emergency Feature (unsearchable)","object_types":["way"]},{"key":"emergency","value":"official","description":"🄿 Emergency Feature (unsearchable)","object_types":["way"]},{"key":"emergency","value":"no","description":"🄿 Emergency Feature (unsearchable)","object_types":["way"]},{"key":"emergency","value":"destination","description":"🄿 Emergency Feature (unsearchable)","object_types":["way"]},{"key":"emergency","value":"designated","description":"🄿 Emergency Feature (unsearchable)","object_types":["way"]},{"key":"fire_hydrant:type","value":"underground","description":"🄿 Underground Fire Hydrant, 🄵🅅 Shape: Underground","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fire_hydrant_underground.svg"},{"key":"fire_hydrant:type","value":"pillar","description":"🄿 Pillar Fire Hydrant, 🄵🅅 Shape: Pillar/Aboveground","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fire_hydrant.svg"},{"key":"amenity","value":"university","description":"🄿 University Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/college.svg"},{"key":"amenity","value":"school","description":"🄿 School Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"},{"key":"amenity","value":"prep_school","description":"🄿 Test Prep / Tutoring School","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"},{"key":"amenity","value":"music_school","description":"🄿 Music School","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"},{"key":"amenity","value":"language_school","description":"🄿 Language School","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"},{"key":"amenity","value":"kindergarten","description":"🄿 Preschool / Kindergarten Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"},{"key":"amenity","value":"driving_school","description":"🄿 Driving School","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_pool.svg"},{"key":"amenity","value":"dancing_school","description":"🄿 Dance School","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-music.svg"},{"key":"amenity","value":"college","description":"🄿 College Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/college.svg"},{"key":"education","value":"yes","description":"🄿 Education Facility (Unspecified Type) (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/school.svg"},{"key":"disused:shop","description":"🄿 Disused Shop (unsearchable), 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store-alt-slash.svg"},{"key":"disused:railway","description":"🄿 Disused Railway Feature (unsearchable), 🄵 Type","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rail_profile.svg"},{"key":"disused:amenity","description":"🄿 Disused Amenity (unsearchable), 🄵 Type","object_types":["node","area"]},{"key":"disc_golf","value":"tee","description":"🄿 Disc Golf Tee","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/disc_golf_basket.svg"},{"key":"disc_golf","value":"hole","description":"🄿 Disc Golf Hole","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/disc_golf_basket.svg"},{"key":"disc_golf","value":"basket","description":"🄿 Disc Golf Basket","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/disc_golf_basket.svg"},{"key":"demolished:building","description":"🄿 Recently Demolished Building (unsearchable)","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-house-damage.svg"},{"key":"cycleway","value":"asl","description":"🄿 Advanced Stop Line","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bicycle.svg"},{"key":"craft","value":"winery","description":"🄿 Winery, 🄵🅅 Type: Winery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/alcohol-shop.svg"},{"key":"craft","value":"window_construction","description":"🄿 Window Construction, 🄵🅅 Type: Window Construction","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/window.svg"},{"key":"craft","value":"watchmaker","description":"🄿 Watchmaker, 🄵🅅 Type: Watchmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/watch.svg"},{"key":"craft","value":"upholsterer","description":"🄿 Upholsterer, 🄵🅅 Type: Upholsterer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-couch.svg"},{"key":"craft","value":"tinsmith","description":"🄿 Tinsmith, 🄵🅅 Type: Tinsmith","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"craft","value":"tiler","description":"🄿 Tiler, 🄵🅅 Type: Tiler","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/brick_trowel.svg"},{"key":"craft","value":"stonemason","description":"🄿 Stonemason, 🄵🅅 Type: Stonemason","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/brick_trowel.svg"},{"key":"craft","value":"signmaker","description":"🄿 Signmaker, 🄵🅅 Type: Signmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-sign-hanging.svg"},{"key":"craft","value":"shoemaker","description":"🄿 Shoemaker, 🄵🅅 Type: Shoemaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hammer_shoe.svg"},{"key":"craft","value":"sculptor","description":"🄿 Sculptor, 🄵🅅 Type: Sculptor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/art-gallery.svg"},{"key":"craft","value":"scaffolder","description":"🄿 Scaffolder, 🄵🅅 Type: Scaffolder","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/scaffold.svg"},{"key":"craft","value":"sawmill","description":"🄿 Sawmill, 🄵🅅 Type: Sawmill","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/logging.svg"},{"key":"craft","value":"sailmaker","description":"🄿 Sailmaker, 🄵🅅 Type: Sailmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"craft","value":"saddler","description":"🄿 Saddler, 🄵🅅 Type: Saddler","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"craft","value":"roofer","description":"🄿 Roofer, 🄵🅅 Type: Roofer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"},{"key":"craft","value":"rigger","description":"🄿 Rigger, 🄵🅅 Type: Rigger","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"craft","value":"pottery","description":"🄿 Pottery Maker, 🄵🅅 Type: Pottery Maker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vase.svg"},{"key":"craft","value":"plumber","description":"🄿 Plumber, 🄵🅅 Type: Plumber","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plumber.svg"},{"key":"craft","value":"plasterer","description":"🄿 Plasterer, 🄵🅅 Type: Plasterer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/brick_trowel.svg"},{"key":"craft","value":"photographic_laboratory","description":"🄿 Photographic Laboratory, 🄵🅅 Type: Photographic Laboratory","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-film.svg"},{"key":"craft","value":"photographer","description":"🄿 Photographer, 🄵🅅 Type: Photographer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/attraction.svg"},{"key":"craft","value":"parquet_layer","description":"🄿 Parquet Layer, 🄵🅅 Type: Parquet Layer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/brick_trowel.svg"},{"key":"craft","value":"painter","description":"🄿 Painter, 🄵🅅 Type: Painter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-paint-roller.svg"},{"key":"craft","value":"metal_construction","description":"🄿 Metalworker, 🄵🅅 Type: Metalworker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"craft","value":"key_cutter","description":"🄿 Key Cutter, 🄵🅅 Type: Key Cutter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-key.svg"},{"key":"craft","value":"joiner","description":"🄿 Joiner, 🄵🅅 Type: Joiner","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"},{"key":"craft","value":"insulation","description":"🄿 Insulator, 🄵🅅 Type: Insulator","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"craft","value":"hvac","description":"🄿 HVAC Workplace, 🄵🅅 Type: HVAC","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"craft","value":"handicraft","description":"🄿 Handicraft Workspace, 🄵🅅 Type: Handicraft","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vase.svg"},{"key":"craft","value":"glaziery","description":"🄿 Glaziery, 🄵🅅 Type: Glaziery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/window.svg"},{"key":"craft","value":"gardener","description":"🄿 Gardener, 🄵🅅 Type: Gardener","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre.svg"},{"key":"craft","value":"floorer","description":"🄿 Floorer, 🄵🅅 Type: Floorer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/brick_trowel.svg"},{"key":"craft","value":"electronics_repair","description":"🄿 Electronics Repair Shop, 🄵🅅 Type: Electronics Repair","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-screwdriver.svg"},{"key":"craft","value":"electrician","description":"🄿 Electrician, 🄵🅅 Type: Electrician","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/power.svg"},{"key":"craft","value":"dressmaker","description":"🄿 Dressmaker, 🄵🅅 Type: Dressmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/dress.svg"},{"key":"craft","value":"distillery","description":"🄿 Distillery, 🄵🅅 Type: Distillery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_fermenter.svg"},{"key":"craft","value":"confectionery","description":"🄿 Candy Maker, 🄵🅅 Type: Candy Maker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/confectionery.svg"},{"key":"craft","value":"clockmaker","description":"🄿 Clockmaker, 🄵🅅 Type: Clockmaker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/clock.svg"},{"key":"craft","value":"cleaning","description":"🄿 Cleaning Service, 🄵🅅 Type: Cleaning Service","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vacuum.svg"},{"key":"craft","value":"chimney_sweeper","description":"🄿 Chimney Sweeper, 🄵🅅 Type: Chimney Sweeper","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/chimney.svg"},{"key":"craft","value":"caterer","description":"🄿 Caterer, 🄵🅅 Type: Caterer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/catering.svg"},{"key":"craft","value":"carpet_layer","description":"🄿 Carpet Layer, 🄵🅅 Type: Carpet Layer","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tools.svg"},{"key":"craft","value":"carpenter","description":"🄿 Carpenter, 🄵🅅 Type: Carpenter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hammer.svg"},{"key":"craft","value":"brewery","description":"🄿 Craft Brewery, 🄵🅅 Type: Brewery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/storage_fermenter.svg"},{"key":"craft","value":"bookbinder","description":"🄿 Bookbinder, 🄵🅅 Type: Bookbinder","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library.svg"},{"key":"craft","value":"boatbuilder","description":"🄿 Boat Builder, 🄵🅅 Type: Boat Builder","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat_repair.svg"},{"key":"craft","value":"blacksmith","description":"🄿 Blacksmith, 🄵🅅 Type: Blacksmith","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/anvil_and_hammer.svg"},{"key":"craft","value":"beekeeper","description":"🄿 Beekeeper, 🄵🅅 Type: Beekeeper","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"},{"key":"craft","value":"basket_maker","description":"🄿 Basket Maker, 🄵🅅 Type: Basket Maker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vase.svg"},{"key":"craft","value":"agricultural_engines","description":"🄿 Agricultural Engines Mechanic, 🄵🅅 Type: Agricultural Engines Mechanic","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tools.svg"},{"key":"craft","value":"tailor","description":"🄿 Tailor (unsearchable), 🄵🅅 Type: Tailor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/needle_and_spool.svg"},{"key":"craft","value":"locksmith","description":"🄿 Locksmith (unsearchable), 🄵🅅 Type: Locksmith","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/marker-stroked.svg"},{"key":"club","value":"sport","description":"🄿 Sports Club","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"club","value":"scout","description":"🄿 Scout Group","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"},{"key":"climbing","value":"route_bottom","description":"🄿 Climbing Route Start","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/abseiling.svg"},{"key":"climbing","value":"route","description":"🄿 Climbing Route","object_types":["way","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/climbing.svg"},{"key":"cemetery","value":"sector","description":"🄿 Cemetery Section","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"},{"key":"cemetery","value":"grave","description":"🄿 Grave","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"},{"key":"building","value":"warehouse","description":"🄿 Warehouse, 🄵🅅 Building: Warehouse","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/warehouse.svg"},{"key":"building","value":"university","description":"🄿 University Building, 🄵🅅 Building: University Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"},{"key":"building","value":"transportation","description":"🄿 Transportation Building, 🄵🅅 Building: Transportation Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"terrace","description":"🄿 Row of Townhouses, 🄵🅅 Building: Row Houses","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/row_houses.svg"},{"key":"building","value":"temple","description":"🄿 Temple Building, 🄵🅅 Building: Temple Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"},{"key":"building","value":"synagogue","description":"🄿 Synagogue Building, 🄵🅅 Building: Synagogue Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-synagogue.svg"},{"key":"building","value":"sty","description":"🄿 Pigsty, 🄵🅅 Building: Pigsty","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/barn.svg"},{"key":"building","value":"static_caravan","description":"🄿 Mobile Home, 🄵🅅 Building: Mobile Home","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/manufactured_home.svg"},{"key":"building","value":"stadium","description":"🄿 Stadium Building, 🄵🅅 Building: Stadium Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/stadium.svg"},{"key":"building","value":"stable","description":"🄿 Stable, 🄵🅅 Building: Stable","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/horse_shelter.svg"},{"key":"building","value":"shed","description":"🄿 Shed, 🄵🅅 Building: Shed","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"},{"key":"building","value":"service","description":"🄿 Service Building, 🄵🅅 Building: Service Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"semidetached_house","description":"🄿 Semi-Detached House, 🄵🅅 Building: Semi-Detached House","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"},{"key":"building","value":"school","description":"🄿 School Building, 🄵🅅 Building: School Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"},{"key":"building","value":"ruins","description":"🄿 Building Ruins, 🄵🅅 Building: Building Ruins","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ruins.svg"},{"key":"building","value":"riding_hall","description":"🄿 Indoor Horseback Riding Arena, 🄵🅅 Building: Horseback Riding Arena","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/horse-riding.svg"},{"key":"building","value":"retail","description":"🄿 Retail Building, 🄵🅅 Building: Retail Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial.svg"},{"key":"building","value":"residential","description":"🄿 Residential Building, 🄵🅅 Building: Residential Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/residential-community.svg"},{"key":"building","value":"public","description":"🄿 Public Building, 🄵🅅 Building: Public Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"pavilion","description":"🄿 Pavilion Building, 🄵🅅 Building: Pavilion Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"office","description":"🄿 Office Building, 🄵🅅 Building: Office Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"building","value":"mosque","description":"🄿 Mosque Building, 🄵🅅 Building: Mosque Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mosque.svg"},{"key":"building","value":"kindergarten","description":"🄿 Preschool / Kindergarten Building, 🄵🅅 Building: Preschool / Kindergarten Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"},{"key":"building","value":"industrial","description":"🄿 Industrial Building, 🄵🅅 Building: Industrial Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"},{"key":"building","value":"hut","description":"🄿 Hut, 🄵🅅 Building: Hut","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hut.svg"},{"key":"building","value":"houseboat","description":"🄿 Houseboat, 🄵🅅 Building: Houseboat","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/houseboat.svg"},{"key":"building","value":"house","description":"🄿 House, 🄵🅅 Building: House","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"},{"key":"building","value":"hotel","description":"🄿 Hotel Building, 🄵🅅 Building: Hotel Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hotel.svg"},{"key":"building","value":"hospital","description":"🄿 Hospital Building, 🄵🅅 Building: Hospital Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hospital-alt.svg"},{"key":"building","value":"hangar","description":"🄿 Hangar Building, 🄵🅅 Building: Hangar Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hangar.svg"},{"key":"building","value":"greenhouse","description":"🄿 Greenhouse, 🄵🅅 Building: Greenhouse","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/garden-centre.svg"},{"key":"building","value":"grandstand","description":"🄿 Grandstand, 🄵🅅 Building: Grandstand","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"ger","description":"🄿 Yurt, 🄵🅅 Building: Yurt","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hut.svg"},{"key":"building","value":"garages","description":"🄿 Garages, 🄵🅅 Building: Garages","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"},{"key":"building","value":"garage","description":"🄿 Garage, 🄵🅅 Building: Garage","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-warehouse.svg"},{"key":"building","value":"fire_station","description":"🄿 Fire Station Building, 🄵🅅 Building: Fire Station Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-house-fire.svg"},{"key":"building","value":"farm_auxiliary","description":"🄿 Farm Building, 🄵🅅 Building: Farm Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"},{"key":"building","value":"farm","description":"🄿 Farm House, 🄵🅅 Building: Farm House","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/farm.svg"},{"key":"building","value":"dormitory","description":"🄿 Dormitory, 🄵🅅 Building: Dormitory","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"detached","description":"🄿 Detached House, 🄵🅅 Building: Detached House","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"},{"key":"building","value":"cowshed","description":"🄿 Cowshed, 🄵🅅 Building: Cowshed","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/barn.svg"},{"key":"building","value":"construction","description":"🄿 Building Under Construction, 🄵🅅 Building: Building Under Construction","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"commercial","description":"🄿 Commercial Building, 🄵🅅 Building: Commercial Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/suitcase.svg"},{"key":"building","value":"college","description":"🄿 College Building, 🄵🅅 Building: College Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-school.svg"},{"key":"building","value":"civic","description":"🄿 Civic Building, 🄵🅅 Building: Civic Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"church","description":"🄿 Church Building, 🄵🅅 Building: Church Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-church.svg"},{"key":"building","value":"chapel","description":"🄿 Chapel Building, 🄵🅅 Building: Chapel Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"},{"key":"building","value":"cathedral","description":"🄿 Cathedral Building, 🄵🅅 Building: Cathedral Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-church.svg"},{"key":"building","value":"carport","description":"🄿 Carport, 🄵🅅 Building: Carport","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/carport.svg"},{"key":"building","value":"cabin","description":"🄿 Cabin, 🄵🅅 Building: Cabin","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cabin.svg"},{"key":"building","value":"bungalow","description":"🄿 Bungalow, 🄵🅅 Building: Bungalow","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"},{"key":"building","value":"boathouse","description":"🄿 Boathouse, 🄵🅅 Building: Boathouse","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/harbor.svg"},{"key":"building","value":"barn","description":"🄿 Barn, 🄵🅅 Building: Barn","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/barn.svg"},{"key":"building","value":"bakehouse","description":"🄿 Bakehouse","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bread.svg"},{"key":"building","value":"apartments","description":"🄿 Apartment Building, 🄵🅅 Building: Apartment Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"allotment_house","description":"🄿 Allotment House, 🄵🅅 Building: Allotment House","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"train_station","description":"🄿 Train Station Building (unsearchable), 🄵🅅 Building: Train Station Building","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"outbuilding","description":"🄿 Outbuilding (unsearchable), 🄵🅅 Building: Outbuilding","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/building.svg"},{"key":"building","value":"manufacture","description":"🄿 Industrial Production Building (unsearchable), 🄵🅅 Building: Industrial Production Building","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/industry.svg"},{"key":"building","value":"entrance","description":"🄿 Entrance/Exit (unsearchable), 🄳 (deprecated tag) ➜ entrance=*","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"},{"key":"building","value":"bunker","description":"🄿 Bunker (unsearchable), 🄵🅅 Building: Bunker","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bunker.svg"},{"key":"house","value":"terraced","description":"🄿 Townhouse, 🄵🅅 House Type: `terraced`","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/row_houses.svg"},{"key":"house","value":"terrace","description":"🄿 Row of Townhouses (unsearchable), 🄵🅅 House Type: `terrace`","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/row_houses.svg"},{"key":"house","value":"semi-detached","description":"🄿 Semi-Detached House (unsearchable), 🄵🅅 House Type: `semi-detached`","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"},{"key":"house","value":"detached","description":"🄿 Detached House (unsearchable), 🄵🅅 House Type: `detached`","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/home.svg"},{"key":"bridge:support","description":"🄿 Bridge Support, 🄵 Type","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"},{"key":"bridge:support","value":"pier","description":"🄿 Bridge Pier","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-archway.svg"},{"key":"boundary","value":"hazard","description":"🄿 Hazardous Area","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-triangle-exclamation.svg"},{"key":"barrier","value":"wicket_gate","description":"🄿 Wicket Gate","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gate.svg"},{"key":"barrier","value":"wall","description":"🄿 Wall, 🄵🅅 Type: Wall","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"},{"key":"barrier","value":"turnstile","description":"🄿 Turnstile, 🄵🅅 Type: Turnstile","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/turnstile.svg"},{"key":"barrier","value":"toll_booth","description":"🄿 Toll Booth, 🄵🅅 Type: Toll Booth","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/toll.svg"},{"key":"barrier","value":"swing_gate","description":"🄿 Swing Gate, 🄵🅅 Type: Swing Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gate.svg"},{"key":"barrier","value":"stile","description":"🄿 Stile, 🄵🅅 Type: Stile","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/stile_squeezer.svg"},{"key":"barrier","value":"spikes","description":"🄿 Spike Strip","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/spike_strip.svg"},{"key":"barrier","value":"sally_port","description":"🄿 Sally Port","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dungeon.svg"},{"key":"barrier","value":"rope","description":"🄿 Rope Fence","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rope_fence.svg"},{"key":"barrier","value":"retaining_wall","description":"🄿 Retaining Wall, 🄵🅅 Type: Retaining Wall","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"},{"key":"barrier","value":"motorcycle_barrier","description":"🄿 Motorcycle Barrier","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"},{"key":"barrier","value":"log","description":"🄿 Fallen Tree Obstruction","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"},{"key":"barrier","value":"lift_gate","description":"🄿 Boom Barrier, 🄵🅅 Type: Boom Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/lift_gate.svg"},{"key":"barrier","value":"kissing_gate","description":"🄿 Kissing Gate, 🄵🅅 Type: Kissing Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gate.svg"},{"key":"barrier","value":"kerb","description":"🄿 Curb, 🄵🅅 Type: Curb","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kerb-unspecified.svg"},{"key":"barrier","value":"jersey_barrier","description":"🄿 Jersey Barrier, 🄵🅅 Type: Jersey Barrier","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"},{"key":"barrier","value":"height_restrictor","description":"🄿 Height Restrictor, 🄵🅅 Type: Height Restrictor","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/height_restrictor.svg"},{"key":"barrier","value":"hedge","description":"🄿 Hedge, 🄵🅅 Type: Hedge","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hedge.svg"},{"key":"barrier","value":"hampshire_gate","description":"🄿 Wire Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gate.svg"},{"key":"barrier","value":"guard_rail","description":"🄿 Guard Rail, 🄵🅅 Type: Guard Rail","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/guard_rail.svg"},{"key":"barrier","value":"gate","description":"🄿 Gate, 🄵🅅 Type: Gate","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gate.svg"},{"key":"barrier","value":"full-height_turnstile","description":"🄿 Full-Height Turnstile","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"},{"key":"barrier","value":"fence","description":"🄿 Fence, 🄵🅅 Type: Fence","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fence.svg"},{"key":"barrier","value":"ditch","description":"🄿 Trench, 🄵🅅 Type: Ditch","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/trench.svg"},{"key":"barrier","value":"cycle_barrier","description":"🄿 Cycle Barrier, 🄵🅅 Type: Cycle Barrier","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cycle_barrier.svg"},{"key":"barrier","value":"city_wall","description":"🄿 City Wall, 🄵🅅 Type: City Wall","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"},{"key":"barrier","value":"chain","description":"🄿 Chain, 🄵🅅 Type: Chain","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/rope_fence.svg"},{"key":"barrier","value":"cattle_grid","description":"🄿 Cattle Grid, 🄵🅅 Type: Cattle Grid","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/cattle_grid.svg"},{"key":"barrier","value":"cable_barrier","description":"🄿 Cable Barrier","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"},{"key":"barrier","value":"bus_trap","description":"🄿 Bus Trap","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"},{"key":"barrier","value":"bump_gate","description":"🄿 Bump Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"},{"key":"barrier","value":"border_control","description":"🄿 Border Control","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/passport_checkpoint.svg"},{"key":"barrier","value":"bollard","description":"🄿 Bollard Row, 🄿 Bollard, 🄵🅅 Type: Bollard","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bollard_row.svg"},{"key":"barrier","value":"block","description":"🄿 Block, 🄵🅅 Type: Large Block","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cube.svg"},{"key":"barrier","value":"yes","description":"🄿 Barrier (Unspecified Type) (unsearchable)","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/roadblock.svg"},{"key":"barrier","value":"handrail","description":"🄿 Handrail (unsearchable)","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railing.svg"},{"key":"barrier","value":"entrance","description":"🄿 Entrance (unsearchable), 🄵🅅 Type: Entrance","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"},{"key":"wall","value":"noise_barrier","description":"🄿 Noise Barrier","object_types":["way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/wall.svg"},{"key":"kerb","value":"rolled","description":"🄿 Rolled Curb, 🄵🅅 Curb: `rolled`, 🄵🅅 Type: `rolled`","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kerb-rolled.svg"},{"key":"kerb","value":"raised","description":"🄿 Raised Curb, 🄵🅅 Curb: `raised`, 🄵🅅 Type: `raised`","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kerb-raised.svg"},{"key":"kerb","value":"lowered","description":"🄿 Lowered Curb, 🄵🅅 Curb: `lowered`, 🄵🅅 Type: `lowered`","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kerb-lowered.svg"},{"key":"kerb","value":"flush","description":"🄿 Flush Curb, 🄵🅅 Curb: `flush`, 🄵🅅 Type: `flush`","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/kerb-flush.svg"},{"key":"fence_type","value":"railing","description":"🄿 Railing","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/railing.svg"},{"key":"attraction","value":"water_slide","description":"🄿 Water Slide, 🄵🅅 Type: Water Slide","object_types":["node","way"]},{"key":"attraction","value":"train","description":"🄿 Tourist Train, 🄵🅅 Type: Tourist Train","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/train_kids.svg"},{"key":"attraction","value":"swing_carousel","description":"🄿 Swing Carousel, 🄵🅅 Type: Swing Carousel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tower.svg"},{"key":"attraction","value":"summer_toboggan","description":"🄿 Summer Toboggan, 🄵🅅 Type: Summer Toboggan","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sledding.svg"},{"key":"attraction","value":"roller_coaster","description":"🄿 Roller Coaster, 🄵🅅 Type: Roller Coaster","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/roller_coaster.svg"},{"key":"attraction","value":"river_rafting","description":"🄿 River Rapids Ride, 🄵🅅 Type: River Rapids Ride","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ferry.svg"},{"key":"attraction","value":"pirate_ship","description":"🄿 Pirate Ship Ride, 🄵🅅 Type: Pirate Ship Ride","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/danger.svg"},{"key":"attraction","value":"maze","description":"🄿 Maze, 🄵🅅 Type: Maze","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/maze.svg"},{"key":"attraction","value":"log_flume","description":"🄿 Log Flume, 🄵🅅 Type: Log Flume","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ferry.svg"},{"key":"attraction","value":"kiddie_ride","description":"🄿 Kiddie Ride, 🄵🅅 Type: Kiddie Ride","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/amusement_park.svg"},{"key":"attraction","value":"drop_tower","description":"🄿 Drop Tower Ride, 🄵🅅 Type: Drop Tower Ride","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tower.svg"},{"key":"attraction","value":"dark_ride","description":"🄿 Dark Ride, 🄵🅅 Type: Dark Ride","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/rail-metro.svg"},{"key":"attraction","value":"carousel","description":"🄿 Carousel, 🄵🅅 Type: Carousel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/amusement_park.svg"},{"key":"attraction","value":"bungee_jumping","description":"🄿 Bungee Jumping, 🄵🅅 Type: Bungee Jumping","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"attraction","value":"bumper_car","description":"🄿 Bumper Cars, 🄵🅅 Type: Bumper Cars","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-car-crash.svg"},{"key":"attraction","value":"big_wheel","description":"🄿 Ferris Wheel, 🄵🅅 Type: Ferris Wheel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park.svg"},{"key":"attraction","value":"animal","description":"🄿 Animal Enclosure, 🄵🅅 Type: Animal Enclosure","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/zoo.svg"},{"key":"attraction","value":"amusement_ride","description":"🄿 Amusement Ride, 🄵🅅 Type: Amusement Ride","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/amusement-park.svg"},{"key":"area:highway","description":"🄿 Road Area, 🄵 Type","object_types":["area"]},{"key":"area:highway","value":"footway","description":"🄿 Footway Area","object_types":["area"]},{"key":"area:highway","value":"traffic_island","description":"🄿 Traffic Island Area","object_types":["area"]},{"key":"amenity","value":"weighbridge","description":"🄿 Truck Scale","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-weight.svg"},{"key":"amenity","value":"watering_place","description":"🄿 Animal Watering Place","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water.svg"},{"key":"amenity","value":"water_point","description":"🄿 RV Drinking Water","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water.svg"},{"key":"amenity","value":"waste_transfer_station","description":"🄿 Waste Transfer Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-trash-restore.svg"},{"key":"amenity","value":"waste_disposal","description":"🄿 Garbage Dumpster","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-dumpster.svg"},{"key":"amenity","value":"waste_basket","description":"🄿 Trash Can","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waste-basket.svg"},{"key":"amenity","value":"veterinary_pharmacy","description":"🄿 Veterinary Pharmacy","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/veterinary_care.svg"},{"key":"amenity","value":"veterinary","description":"🄿 Veterinary","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/veterinary_care.svg"},{"key":"amenity","value":"vending_machine","description":"🄿 Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"},{"key":"amenity","value":"vehicle_inspection","description":"🄿 Vehicle Inspection","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car.svg"},{"key":"amenity","value":"vacuum_cleaner","description":"🄿 Vacuum Cleaning Station","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vacuum_station.svg"},{"key":"amenity","value":"trolley_bay","description":"🄿 Cart Corral","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-shopping-cart.svg"},{"key":"amenity","value":"toy_library","description":"🄿 Toy Library","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-chess-knight.svg"},{"key":"amenity","value":"townhall","description":"🄿 Town Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/town_hall.svg"},{"key":"amenity","value":"toilets","description":"🄿 Restroom","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/toilet.svg"},{"key":"amenity","value":"ticket_validator","description":"🄿 Ticket Validator","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_tickets.svg"},{"key":"amenity","value":"theatre","description":"🄿 Theater","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre.svg"},{"key":"amenity","value":"telephone","description":"🄿 Telephone","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-phone-alt.svg"},{"key":"amenity","value":"taxi","description":"🄿 Taxi Stand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-taxi.svg"},{"key":"amenity","value":"swingerclub","description":"🄿 Swinger Club","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heart.svg"},{"key":"amenity","value":"studio","description":"🄿 Studio","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"},{"key":"amenity","value":"stripclub","description":"🄿 Strip club","object_types":["node","area"]},{"key":"amenity","value":"social_facility","description":"🄿 Social Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/social_facility.svg"},{"key":"amenity","value":"social_centre","description":"🄿 Social Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-handshake.svg"},{"key":"amenity","value":"smoking_area","description":"🄿 Smoking Area","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-smoking.svg"},{"key":"amenity","value":"shower","description":"🄿 Shower","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shower.svg"},{"key":"amenity","value":"shelter","description":"🄿 Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter.svg"},{"key":"amenity","value":"sanitary_dump_station","description":"🄿 RV Toilet Disposal","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/camper_trailer_dump.svg"},{"key":"amenity","value":"restaurant","description":"🄿 Restaurant","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"amenity","value":"research_institute","description":"🄿 Research Institute Grounds","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-flask.svg"},{"key":"amenity","value":"refugee_site","description":"🄿 Refugee Camp","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/tents.svg"},{"key":"recycling_type","value":"container","description":"🄿 Recycling Bin, 🄵🅅 Type: Container","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"},{"key":"recycling_type","value":"centre","description":"🄿 Recycling Center, 🄵🅅 Type: Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"},{"key":"amenity","value":"ranger_station","description":"🄿 Ranger Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ranger-station.svg"},{"key":"amenity","value":"public_bookcase","description":"🄿 Public Bookcase","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library.svg"},{"key":"amenity","value":"public_bath","description":"🄿 Public Bath","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-water-ladder.svg"},{"key":"amenity","value":"pub","description":"🄿 Pub","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer.svg"},{"key":"amenity","value":"prison","description":"🄿 Prison Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/prison.svg"},{"key":"amenity","value":"post_office","description":"🄿 Post Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/post.svg"},{"key":"amenity","value":"post_depot","description":"🄿 Post Sorting Office","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-mail-bulk.svg"},{"key":"amenity","value":"post_box","description":"🄿 Mail Drop Box","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/post_box.svg"},{"key":"amenity","value":"polling_station","description":"🄿 Permanent Polling Place","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-vote-yea.svg"},{"key":"amenity","value":"police","description":"🄿 Police","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/police_officer.svg"},{"key":"amenity","value":"planetarium","description":"🄿 Planetarium","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/globe.svg"},{"key":"amenity","value":"place_of_worship","description":"🄿 Place of Worship","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"},{"key":"amenity","value":"photo_booth","description":"🄿 Photo Booth","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-person-booth.svg"},{"key":"amenity","value":"pharmacy","description":"🄿 Pharmacy Counter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pharmacy.svg"},{"key":"amenity","value":"payment_terminal","description":"🄿 Payment Terminal","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/far-credit-card.svg"},{"key":"amenity","value":"payment_centre","description":"🄿 Payment Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"},{"key":"amenity","value":"parking_space","description":"🄿 Parking Space","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/parking_space.svg"},{"key":"amenity","value":"parking_entrance","description":"🄿 Parking Garage Entrance / Exit","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/entrance-alt1.svg"},{"key":"amenity","value":"parking","description":"🄿 Parking Lot","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_parked.svg"},{"key":"amenity","value":"parcel_locker","description":"🄿 Parcel Locker","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_lockers.svg"},{"key":"amenity","value":"nightclub","description":"🄿 Nightclub","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-cocktail.svg"},{"key":"amenity","value":"motorcycle_rental","description":"🄿 Motorcycle Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/motorcycle_rental.svg"},{"key":"amenity","value":"motorcycle_parking","description":"🄿 Motorcycle Parking","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-motorcycle.svg"},{"key":"amenity","value":"mortuary","description":"🄿 Morgue","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"},{"key":"amenity","value":"money_transfer","description":"🄿 Money Transfer Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"},{"key":"amenity","value":"monastery","description":"🄿 Monastery Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"},{"key":"amenity","value":"marketplace","description":"🄿 Marketplace","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-store.svg"},{"key":"amenity","value":"luggage_locker","description":"🄿 Luggage Locker","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/suitcase_key.svg"},{"key":"amenity","value":"love_hotel","description":"🄿 Love Hotel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heart.svg"},{"key":"amenity","value":"lounger","description":"🄿 Lounger","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/lounger.svg"},{"key":"amenity","value":"loading_dock","description":"🄿 Loading Dock","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-truck-loading.svg"},{"key":"amenity","value":"library_dropoff","description":"🄿 Book Return Drop Box","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library.svg"},{"key":"amenity","value":"library","description":"🄿 Library","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/library.svg"},{"key":"amenity","value":"letter_box","description":"🄿 Letter Box","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/letter_box.svg"},{"key":"amenity","value":"lavoir","description":"🄿 Lavoir","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/detergent_bottle.svg"},{"key":"amenity","value":"kneipp_water_cure","description":"🄿 Kneipp Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"amenity","value":"karaoke_box","description":"🄿 Karaoke Box","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/karaoke.svg"},{"key":"amenity","value":"internet_cafe","description":"🄿 Internet Cafe","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/antenna.svg"},{"key":"amenity","value":"ice_cream","description":"🄿 Ice Cream Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ice-cream.svg"},{"key":"amenity","value":"hunting_stand","description":"🄿 Hunting Stand","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hunting_blind.svg"},{"key":"amenity","value":"hospital","description":"🄿 Hospital Grounds","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"amenity","value":"hookah_lounge","description":"🄿 Hookah Lounge","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-smoking.svg"},{"key":"amenity","value":"grit_bin","description":"🄿 Grit Bin","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-box.svg"},{"key":"amenity","value":"grave_yard","description":"🄿 Graveyard","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"},{"key":"amenity","value":"give_box","description":"🄿 Free Box","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-box-open.svg"},{"key":"amenity","value":"gambling","description":"🄿 Gambling Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-coins.svg"},{"key":"amenity","value":"funeral_hall","description":"🄿 Funeral Service Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"},{"key":"amenity","value":"fuel","description":"🄿 Gas Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel.svg"},{"key":"amenity","value":"fountain","description":"🄿 Fountain","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/fountain.svg"},{"key":"amenity","value":"food_court","description":"🄿 Food Court","object_types":["node","area"]},{"key":"amenity","value":"fire_station","description":"🄿 Fire Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fire-station.svg"},{"key":"amenity","value":"fast_food","description":"🄿 Fast Food","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food.svg"},{"key":"amenity","value":"exhibition_centre","description":"🄿 Exposition Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-tie.svg"},{"key":"amenity","value":"events_venue","description":"🄿 Events Venue","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-users.svg"},{"key":"amenity","value":"driver_training","description":"🄿 Driver Training Grounds","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car.svg"},{"key":"amenity","value":"drinking_water","description":"🄿 Drinking Water","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/drinking-water.svg"},{"key":"amenity","value":"dressing_room","description":"🄿 Changing Room","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/clothing-store.svg"},{"key":"amenity","value":"dojo","description":"🄿 Dojo / Martial Arts Academy","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/pitch.svg"},{"key":"amenity","value":"dog_toilet","description":"🄿 Dog Toilet","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dog-park.svg"},{"key":"amenity","value":"doctors","description":"🄿 Doctor","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"amenity","value":"dive_centre","description":"🄿 Dive Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/scuba_diving.svg"},{"key":"amenity","value":"device_charging_station","description":"🄿 Device Charging Station","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/electronic.svg"},{"key":"amenity","value":"dentist","description":"🄿 Dentist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/dentist.svg"},{"key":"amenity","value":"crematorium","description":"🄿 Crematorium","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cemetery.svg"},{"key":"amenity","value":"courthouse","description":"🄿 Courthouse","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-gavel.svg"},{"key":"amenity","value":"conference_centre","description":"🄿 Convention Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-user-tie.svg"},{"key":"amenity","value":"compressed_air","description":"🄿 Compressed Air","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tachometer-alt.svg"},{"key":"amenity","value":"community_centre","description":"🄿 Community Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"},{"key":"amenity","value":"clock","description":"🄿 Clock","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/clock.svg"},{"key":"amenity","value":"clinic","description":"🄿 Clinic","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"amenity","value":"cinema","description":"🄿 Cinema","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cinema.svg"},{"key":"amenity","value":"childcare","description":"🄿 Nursery/Childcare","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-child-reaching.svg"},{"key":"amenity","value":"charging_station","description":"🄿 Charging Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-charging-station.svg"},{"key":"amenity","value":"casino","description":"🄿 Casino","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/casino.svg"},{"key":"amenity","value":"car_wash","description":"🄿 Car Wash","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_wash.svg"},{"key":"amenity","value":"car_sharing","description":"🄿 Car Sharing Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sign_and_car.svg"},{"key":"amenity","value":"car_rental","description":"🄿 Car Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/car-rental.svg"},{"key":"amenity","value":"car_pooling","description":"🄿 Car Pooling Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_pool.svg"},{"key":"amenity","value":"cafe","description":"🄿 Cafe","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cafe.svg"},{"key":"amenity","value":"bureau_de_change","description":"🄿 Currency Exchange","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/money_hand.svg"},{"key":"amenity","value":"boat_storage","description":"🄿 Boat Storage","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat_dry_dock.svg"},{"key":"amenity","value":"boat_rental","description":"🄿 Boat Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/boat_rental.svg"},{"key":"amenity","value":"binoculars","description":"🄿 Mounted Binoculars","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/binoculars.svg"},{"key":"amenity","value":"biergarten","description":"🄿 Biergarten","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-beer.svg"},{"key":"amenity","value":"bicycle_wash","description":"🄿 Bicycle Wash","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_wash.svg"},{"key":"amenity","value":"bicycle_repair_station","description":"🄿 Bicycle Repair Tool Stand","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_repair.svg"},{"key":"amenity","value":"bicycle_rental","description":"🄿 Bicycle Rental","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_rental.svg"},{"key":"amenity","value":"bicycle_parking","description":"🄿 Bicycle Parking","object_types":["node","way","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_parked.svg"},{"key":"amenity","value":"bench","description":"🄿 Bench","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bench.svg"},{"key":"amenity","value":"bbq","description":"🄿 Barbecue/Grill","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bbq.svg"},{"key":"amenity","value":"bar","description":"🄿 Bar","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bar.svg"},{"key":"amenity","value":"bank","description":"🄿 Bank","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/bank.svg"},{"key":"amenity","value":"baking_oven","description":"🄿 Baking Oven","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bread.svg"},{"key":"amenity","value":"atm","description":"🄿 ATM","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/atm2.svg"},{"key":"amenity","value":"arts_centre","description":"🄿 Arts Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre.svg"},{"key":"amenity","value":"animal_shelter","description":"🄿 Animal Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary.svg"},{"key":"amenity","value":"animal_breeding","description":"🄿 Animal Breeding Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary.svg"},{"key":"amenity","value":"animal_boarding","description":"🄿 Animal Boarding Facility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/veterinary.svg"},{"key":"amenity","value":"recycling","description":"🄿 Recycling (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"},{"key":"amenity","value":"nursing_home","description":"🄿 Nursing Home (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair.svg"},{"key":"amenity","value":"ferry_terminal","description":"🄿 Ferry Terminal (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/ferry.svg"},{"key":"amenity","value":"embassy","description":"🄿 Embassy (unsearchable), 🄳 (deprecated tag) ➜ office=diplomatic","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/embassy.svg"},{"key":"amenity","value":"coworking_space","description":"🄿 Coworking Space (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/commercial.svg"},{"key":"amenity","value":"bus_station","description":"🄿 Bus Station / Terminal (unsearchable)","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bus.svg"},{"key":"waste","value":"dog_excrement","description":"🄿 Dog Excrement Bin, 🄵🅅 Waste: Dog Excrement","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/waste-basket.svg"},{"key":"vending","value":"sweets","description":"🄿 Candy Vending Machine, 🄵🅅 Types of Goods: Sweets","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"stamps","description":"🄿 Postage Vending Machine, 🄵🅅 Types of Goods: Postage Stamps","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_stamps.svg"},{"key":"vending","value":"public_transport_tickets","description":"🄿 Transit Ticket Vending Machine, 🄵🅅 Types of Goods: Public Transport Tickets","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_tickets.svg"},{"key":"vending","value":"pizza","description":"🄿 Pizza Vending Machine, 🄵🅅 Types of Goods: Pizza","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"parking_tickets","description":"🄿 Parking Ticket Vending Machine, 🄵🅅 Types of Goods: Parking Tickets","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_tickets.svg"},{"key":"vending","value":"newspapers","description":"🄿 Newspaper Vending Machine, 🄵🅅 Types of Goods: Newspapers","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_newspaper.svg"},{"key":"vending","value":"ice_cubes","description":"🄿 Ice Vending Machine, 🄵🅅 Types of Goods: Ice Cubes","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_ice.svg"},{"key":"vending","value":"ice_cream","description":"🄿 Ice Cream Vending Machine, 🄵🅅 Types of Goods: Ice Cream","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_ice_cream.svg"},{"key":"vending","value":"fuel","description":"🄿 Gas Vending Machine, 🄵🅅 Types of Goods: Fuel","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fuel.svg"},{"key":"vending","value":"food","description":"🄿 Food Vending Machine, 🄵🅅 Types of Goods: Food","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"feminine_hygiene","description":"🄿 Feminine Hygiene Vending Machine, 🄵🅅 Types of Goods: Feminine Hygiene Products","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_venus.svg"},{"key":"vending","value":"excrement_bags","description":"🄿 Excrement Bag Dispenser, 🄵🅅 Types of Goods: Excrement Bags","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_pet_waste.svg"},{"key":"vending","value":"elongated_coin","description":"🄿 Flat Coin Vending Machine, 🄵🅅 Types of Goods: Souvenir Coins","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_flat_coin.svg"},{"key":"vending","value":"electronics","description":"🄿 Electronics Vending Machine, 🄵🅅 Types of Goods: Electronics","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"eggs","description":"🄿 Egg Vending Machine, 🄵🅅 Types of Goods: Eggs","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_eggs.svg"},{"key":"vending","value":"drinks","description":"🄿 Drink Vending Machine, 🄵🅅 Types of Goods: Drinks","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_cold_drink.svg"},{"key":"vending","value":"condoms","description":"🄿 Condom Vending Machine, 🄵🅅 Types of Goods: Condoms","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_love.svg"},{"key":"vending","value":"coffee","description":"🄿 Coffee Vending Machine, 🄵🅅 Types of Goods: Coffee","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_hot_drink.svg"},{"key":"vending","value":"cigarettes","description":"🄿 Cigarette Vending Machine, 🄵🅅 Types of Goods: Cigarettes","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_cigarettes.svg"},{"key":"vending","value":"bread","description":"🄿 Bread Vending Machine, 🄵🅅 Types of Goods: Bread","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_bread.svg"},{"key":"vending","value":"bottle_return","description":"🄿 Bottle Return Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"},{"key":"vending","value":"bicycle_tube","description":"🄿 Bicycle Inner Tube Vending Machine, 🄵🅅 Types of Goods: Bicycle Tubes","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"},{"key":"food","value":"snacks","description":"🄿 Snack Vending Machine","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vending_machine.svg"},{"key":"townhall:type","value":"city","description":"🄿 City Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/capitol.svg"},{"key":"townhall:type","value":"barangay","description":"🄿 Barangay Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-building-flag.svg"},{"key":"portable","value":"yes","description":"🄿 Portable Toilet","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/latrine.svg"},{"key":"toilets:disposal","value":"pitlatrine","description":"🄿 Pit Latrine, 🄵🅅 Disposal: Pit Latrine","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/latrine.svg"},{"key":"toilets:disposal","value":"flush","description":"🄿 Flush Toilets, 🄵🅅 Disposal: Flush","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-toilet.svg"},{"key":"theatre:type","value":"amphi","description":"🄿 Amphitheater","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/theatre.svg"},{"key":"taxi_vehicle","value":"motorcycle","description":"🄿 Motorcycle Taxi Stand, 🄵🅅 Vehicle Type: `motorcycle`","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_and_cyclist.svg"},{"key":"taxi_vehicle","value":"cycle_rickshaw","description":"🄿 Cycle Rickshaw Stand, 🄵🅅 Vehicle Type: `cycle_rickshaw`","object_types":["node","area"]},{"key":"taxi_vehicle","value":"auto_rickshaw","description":"🄿 Auto Rickshaw Stand, 🄵🅅 Vehicle Type: `auto_rickshaw`","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-person-arrow-up-from-line.svg"},{"key":"studio","value":"video","description":"🄿 Film Studio","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-video.svg"},{"key":"studio","value":"television","description":"🄿 Television Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-video.svg"},{"key":"studio","value":"radio","description":"🄿 Radio Station","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"},{"key":"studio","value":"audio","description":"🄿 Recording Studio","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-microphone.svg"},{"key":"social_facility:for","value":"senior","description":"🄿 Nursing Home, 🄿 Elderly Group Home, 🄿 Senior Assisted Living Facility, 🄵🅅 People Served: Elderly","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair.svg"},{"key":"social_facility:for","value":"homeless","description":"🄿 Homeless Shelter, 🄵🅅 People Served: Homeless","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/social_facility.svg"},{"key":"social_facility","value":"food_bank","description":"🄿 Food Bank, 🄵🅅 Type: Food Bank","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/social_facility.svg"},{"key":"social_facility","value":"ambulatory_care","description":"🄿 Ambulatory Care, 🄵🅅 Type: Ambulatory Care","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/wheelchair.svg"},{"key":"shelter_type","value":"public_transport","description":"🄿 Transit Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/transit_shelter.svg"},{"key":"shelter_type","value":"picnic_shelter","description":"🄿 Picnic Shelter","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/picnic_shelter.svg"},{"key":"shelter_type","value":"lean_to","description":"🄿 Lean-To","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sleep_shelter.svg"},{"key":"shelter_type","value":"gazebo","description":"🄿 Gazebo","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/shelter.svg"},{"key":"cuisine","value":"vietnamese","description":"🄿 Vietnamese Restaurant, 🄵🅅 Cuisines: Vietnamese","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"},{"key":"cuisine","value":"ukrainian","description":"🄿 Ukrainian Restaurant, 🄵🅅 Cuisines: Ukrainian","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"cuisine","value":"turkish","description":"🄿 Turkish Restaurant, 🄵🅅 Cuisines: Turkish","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"cuisine","value":"thai","description":"🄿 Thai Restaurant, 🄵🅅 Cuisines: Thai","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-spoon.svg"},{"key":"cuisine","value":"sushi","description":"🄿 Sushi Restaurant, 🄵🅅 Cuisines: Sushi","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/temaki.svg"},{"key":"cuisine","value":"steak_house","description":"🄿 Steakhouse, 🄵🅅 Cuisines: Steak House","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/slaughterhouse.svg"},{"key":"cuisine","value":"spanish","description":"🄿 Spanish Restaurant, 🄵🅅 Cuisines: Spanish","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"cuisine","value":"seafood","description":"🄿 Seafood Restaurant, 🄵🅅 Cuisines: Seafood","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-seafood.svg"},{"key":"cuisine","value":"ramen","description":"🄿 Ramen Restaurant, 🄵🅅 Cuisines: Ramen","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"},{"key":"cuisine","value":"pizza","description":"🄿 Pizza Restaurant, 🄿 Pizza Fast Food, 🄵🅅 Cuisines: Pizza","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-pizza.svg"},{"key":"cuisine","value":"noodle","description":"🄿 Noodle Restaurant, 🄵🅅 Cuisines: Noodle","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"},{"key":"cuisine","value":"mexican","description":"🄿 Mexican Restaurant, 🄿 Mexican Fast Food, 🄵🅅 Cuisines: Mexican","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-pepper-hot.svg"},{"key":"cuisine","value":"korean","description":"🄿 Korean Restaurant, 🄵🅅 Cuisines: Korean","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"},{"key":"cuisine","value":"japanese","description":"🄿 Japanese Restaurant, 🄵🅅 Cuisines: Japanese","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"},{"key":"cuisine","value":"italian","description":"🄿 Italian Restaurant, 🄵🅅 Cuisines: Italian","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"cuisine","value":"indian","description":"🄿 Indian Restaurant, 🄵🅅 Cuisines: Indian","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"cuisine","value":"greek","description":"🄿 Greek Restaurant, 🄵🅅 Cuisines: Greek","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"cuisine","value":"german","description":"🄿 German Restaurant, 🄵🅅 Cuisines: German","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"cuisine","value":"georgian","description":"🄿 Georgian Restaurant, 🄵🅅 Cuisines: Georgian","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"cuisine","value":"french","description":"🄿 French Restaurant, 🄵🅅 Cuisines: French","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"cuisine","value":"chinese","description":"🄿 Chinese Restaurant, 🄿 Chinese Fast Food, 🄵🅅 Cuisines: Chinese","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"},{"key":"cuisine","value":"barbecue","description":"🄿 Barbecue Restaurant, 🄵🅅 Cuisines: Barbecue","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-bbq.svg"},{"key":"cuisine","value":"asian","description":"🄿 Asian Restaurant, 🄵🅅 Cuisines: Asian","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant-noodle.svg"},{"key":"cuisine","value":"american","description":"🄿 American Restaurant, 🄵🅅 Cuisines: American","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"recycling:green_waste","value":"yes","description":"🄿 Green Waste Container","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"},{"key":"recycling:electrical_items","value":"yes","description":"🄿 E-Waste Container","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/recycling.svg"},{"key":"microbrewery","value":"yes","description":"🄿 Brewpub","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer.svg"},{"key":"theme","value":"irish","description":"🄿 Irish Pub","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/beer.svg"},{"key":"religion","value":"taoist","description":"🄿 Taoist Temple, 🄵🅅 Religion: Taoist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/taoism.svg"},{"key":"religion","value":"sikh","description":"🄿 Sikh Temple, 🄵🅅 Religion: Sikh","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sikhism.svg"},{"key":"religion","value":"shinto","description":"🄿 Shinto Shrine, 🄵🅅 Religion: Shinto","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/shinto.svg"},{"key":"religion","value":"muslim","description":"🄿 Muslim Mosque, 🄵🅅 Religion: Muslim","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-muslim.svg"},{"key":"religion","value":"jewish","description":"🄿 Jewish Synagogue, 🄵🅅 Religion: Jewish","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-jewish.svg"},{"key":"religion","value":"hindu","description":"🄿 Hindu Temple, 🄵🅅 Religion: Hindu","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hinduism.svg"},{"key":"religion","value":"christian","description":"🄿 Christian Church, 🄵🅅 Religion: Christian","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-christian.svg"},{"key":"religion","value":"buddhist","description":"🄿 Buddhist Temple, 🄵🅅 Religion: Buddhist","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/religious-buddhist.svg"},{"key":"denomination","value":"quaker","description":"🄿 Quaker Friends Meeting House","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/quakerism.svg"},{"key":"denomination","value":"la_luz_del_mundo","description":"🄿 La Luz del Mundo Temple","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"},{"key":"denomination","value":"jehovahs_witness","description":"🄿 Kingdom Hall of Jehovah's Witnesses","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/place-of-worship.svg"},{"key":"parking_space","value":"disabled","description":"🄿 Accessible Parking Space","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/accessible_space.svg"},{"key":"parking","value":"underground","description":"🄿 Underground Parking, 🄵🅅 Type: `underground`","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_structure.svg"},{"key":"parking","value":"street_side","description":"🄿 Street-side Parking, 🄵🅅 Type: `street_side`","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_parked.svg"},{"key":"park_ride","value":"yes","description":"🄿 Park & Ride Lot","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sign_and_car.svg"},{"key":"parking","value":"multi-storey","description":"🄿 Multilevel Parking Garage, 🄵🅅 Type: `multi-storey`","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/car_structure.svg"},{"key":"cuisine","value":"frozen_yogurt","description":"🄿 Frozen Yogurt Shop, 🄵🅅 Cuisines: Frozen Yogurt","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/ice-cream.svg"},{"key":"cuisine","value":"wings","description":"🄿 Chicken Wings Fast Food, 🄵🅅 Cuisines: Chicken Wings","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food.svg"},{"key":"cuisine","value":"sandwich","description":"🄿 Sandwich Fast Food, 🄵🅅 Cuisines: Sandwich","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/sandwich.svg"},{"key":"cuisine","value":"kebab","description":"🄿 Kebab Fast Food, 🄵🅅 Cuisines: Kebab","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/vertical_rotisserie.svg"},{"key":"cuisine","value":"juice","description":"🄿 Juice Fast Food, 🄵🅅 Cuisines: Juice","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/drink_cup.svg"},{"key":"cuisine","value":"hot_dog","description":"🄿 Hot Dog Fast Food, 🄵🅅 Cuisines: Hot Dog","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-hotdog.svg"},{"key":"cuisine","value":"fish_and_chips","description":"🄿 Fish & Chips Fast Food, 🄵🅅 Cuisines: Fish and Chips","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-fish.svg"},{"key":"cuisine","value":"donut","description":"🄿 Donut Fast Food, 🄵🅅 Cuisines: Donut","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/donut.svg"},{"key":"cuisine","value":"chicken","description":"🄿 Chicken Fast Food, 🄵🅅 Cuisines: Chicken","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-drumstick-bite.svg"},{"key":"fast_food","value":"cafeteria","description":"🄿 Cafeteria","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/restaurant.svg"},{"key":"cuisine","value":"burger","description":"🄿 Burger Fast Food, 🄵🅅 Cuisines: Burger","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food.svg"},{"key":"cuisine","value":"bagel","description":"🄿 Bagel Fast Food, 🄵🅅 Cuisines: Bagel","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/fast-food.svg"},{"key":"cuisine","value":"ice_cream","description":"🄿 Ice Cream Fast Food (unsearchable), 🄵🅅 Cuisines: Ice Cream","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-ice-cream.svg"},{"key":"healthcare:speciality","value":"urology","description":"🄿 Urologist, 🄵🅅 Specialties: Urology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"trauma","description":"🄿 Trauma Surgeon, 🄵🅅 Specialties: Trauma Surgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"surgery","description":"🄿 General Surgeon, 🄵🅅 Specialties: General Surgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"rheumatology","description":"🄿 Rheumatologist, 🄵🅅 Specialties: Rheumatology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"radiology","description":"🄿 Radiologist, 🄵🅅 Specialties: Radiology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"pulmonology","description":"🄿 Pulmonologist, 🄵🅅 Specialties: Pulmonology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"psychiatry","description":"🄿 Psychiatrist, 🄵🅅 Specialties: Psychiatry","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"proctology","description":"🄿 Colorectal Surgeon, 🄵🅅 Specialties: Colorectal Surgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"podiatry","description":"🄿 Podiatrist, 🄵🅅 Specialties: Podiatry","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"plastic_surgery","description":"🄿 Plastic Surgeon, 🄵🅅 Specialties: Plastic Surgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"pathology","description":"🄿 Pathologist, 🄵🅅 Specialties: Pathology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"paediatrics","description":"🄿 Pediatrician, 🄵🅅 Specialties: Pediatrics","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"otolaryngology","description":"🄿 Otolaryngologist, 🄵🅅 Specialties: Ear, Nose & Throat","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"orthopaedics","description":"🄿 Orthopedic Surgeon, 🄵🅅 Specialties: Orthopedic Surgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"ophthalmology","description":"🄿 Ophthalmologist, 🄵🅅 Specialties: Ophthalmology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"oncology","description":"🄿 Oncologist, 🄵🅅 Specialties: Oncology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"neurosurgery","description":"🄿 Neurosurgeon, 🄵🅅 Specialties: Neurosurgery","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"neurology","description":"🄿 Neurologist, 🄵🅅 Specialties: Neurology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"nephrology","description":"🄿 Nephrologist, 🄵🅅 Specialties: Nephrology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"internal","description":"🄿 Internist, 🄵🅅 Specialties: Internal Medicine","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"haematology","description":"🄿 Hematologist, 🄵🅅 Specialties: Hematology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"gynaecology","description":"🄿 Obstetrician/Gynecologist, 🄵🅅 Specialties: Obstetrics & Gynecology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"general","description":"🄿 Primary Care Physician, 🄵🅅 Specialties: General Practice","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"gastroenterology","description":"🄿 Gastroenterologist, 🄵🅅 Specialties: Gastroenterology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"dermatology","description":"🄿 Dermatologist, 🄵🅅 Specialties: Dermatology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"child_psychiatry","description":"🄿 Child and Adolescent Psychiatrist, 🄵🅅 Specialties: Child & Adolescent Psychiatry","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"cardiology","description":"🄿 Cardiologist, 🄵🅅 Specialties: Cardiology","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"allergology","description":"🄿 Allergologist, 🄵🅅 Specialties: Allergy & Asthma","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"community_centre","value":"youth_centre","description":"🄿 Youth Center, 🄵🅅 Type: Youth Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"},{"key":"community_centre","value":"village_hall","description":"🄿 Village Hall, 🄵🅅 Type: Village Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"},{"key":"community_centre","value":"parish_hall","description":"🄿 Parish Hall, 🄵🅅 Type: Parish Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"},{"key":"community_centre","value":"family_centre","description":"🄿 Family Centre, 🄵🅅 Type: Family Centre","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"},{"key":"community_centre","value":"cultural_centre","description":"🄿 Cultural Centre, 🄵🅅 Type: Cultural Centre","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"},{"key":"community_centre","value":"community_hall","description":"🄿 Community Hall, 🄵🅅 Type: Community Hall","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"},{"key":"community_centre","value":"club_home","description":"🄿 Club Home, 🄵🅅 Type: Club Home","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/town-hall.svg"},{"key":"display","value":"sundial","description":"🄿 Sundial, 🄵🅅 Display: Sundial","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/clock.svg"},{"key":"healthcare:speciality","value":"fertility","description":"🄿 Fertility Clinic, 🄵🅅 Specialties: Fertility","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"healthcare","value":"dialysis","description":"🄿 Dialysis Center, 🄵🅅 Type: Dialysis Center","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/doctor.svg"},{"key":"healthcare:speciality","value":"abortion","description":"🄿 Abortion Clinic, 🄵🅅 Specialties: Abortion","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/hospital.svg"},{"key":"cuisine","value":"tea","description":"🄿 Teahouse, 🄵🅅 Cuisines: Tea","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/cafe.svg"},{"key":"cuisine","value":"coffee_shop","description":"🄿 Coffeehouse, 🄵🅅 Cuisines: Coffee Shop","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hot_drink_cup.svg"},{"key":"cuisine","value":"bubble_tea","description":"🄿 Bubble Tea Cafe, 🄵🅅 Cuisines: Bubble Tea","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bubble_tea.svg"},{"key":"bicycle_parking","value":"shed","description":"🄿 Bicycle Shed, 🄵🅅 Type: Closed Shed","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_shed.svg"},{"key":"bicycle_parking","value":"lockers","description":"🄿 Bicycle Lockers, 🄵🅅 Type: Individual Lockers","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_locker.svg"},{"key":"bicycle_parking","value":"building","description":"🄿 Bicycle Parking Garage, 🄵🅅 Type: In a Building","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bicycle_structure.svg"},{"key":"allotments","value":"plot","description":"🄿 Community Garden Plot","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/garden_bed.svg"},{"key":"aeroway","value":"windsock","description":"🄿 Windsock","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/windsock.svg"},{"key":"aeroway","value":"terminal","description":"🄿 Airport Terminal","object_types":["node","area"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/airport.svg"},{"key":"aeroway","value":"taxiway","description":"🄿 Taxiway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plane_taxiing.svg"},{"key":"aeroway","value":"spaceport","description":"🄿 Spaceport","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-space-shuttle.svg"},{"key":"aeroway","value":"runway","description":"🄿 Runway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plane-departure.svg"},{"key":"aeroway","value":"parking_position","description":"🄿 Aircraft Parking Position","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plane_taxiing.svg"},{"key":"aeroway","value":"jet_bridge","description":"🄿 Jetway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/pedestrian_walled.svg"},{"key":"aeroway","value":"holding_position","description":"🄿 Aircraft Holding Position","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/plane_taxiing.svg"},{"key":"aeroway","value":"helipad","description":"🄿 Helipad","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/heliport.svg"},{"key":"aeroway","value":"hangar","description":"🄿 Hangar","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/hangar.svg"},{"key":"aeroway","value":"gate","description":"🄿 Airport Gate","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-plane.svg"},{"key":"aeroway","value":"apron","description":"🄿 Airport Apron","object_types":["area"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/planes.svg"},{"key":"aeroway","value":"aerodrome","description":"🄿 Airport","object_types":["area","node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/airport.svg"},{"key":"aerialway","value":"zip_line","description":"🄿 Zip Line","object_types":["way"]},{"key":"aerialway","value":"t-bar","description":"🄿 T-Bar Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/t_bar_lift.svg"},{"key":"aerialway","value":"rope_tow","description":"🄿 Rope Tow Lift","object_types":["way"]},{"key":"aerialway","value":"pylon","description":"🄿 Aerialway Pylon","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/aerialway_pole.svg"},{"key":"aerialway","value":"platter","description":"🄿 Platter Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/platter_lift.svg"},{"key":"aerialway","value":"mixed_lift","description":"🄿 Mixed Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/mapbox/maki/icons/aerialway.svg"},{"key":"aerialway","value":"magic_carpet","description":"🄿 Magic Carpet Lift","object_types":["way"]},{"key":"aerialway","value":"j-bar","description":"🄿 J-Bar Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/j_bar_lift.svg"},{"key":"aerialway","value":"goods","description":"🄿 Goods Aerialway","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/goods_lift.svg"},{"key":"aerialway","value":"gondola","description":"🄿 Gondola Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/gondola_lift.svg"},{"key":"aerialway","value":"drag_lift","description":"🄿 Drag Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/drag_lift.svg"},{"key":"aerialway","value":"chair_lift","description":"🄿 Chair Lift","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/chairlift.svg"},{"key":"aerialway","value":"cable_car","description":"🄿 Cable Car","object_types":["way"],"icon_url":"https://cdn.jsdelivr.net/gh/openstreetmap/iD@develop/svg/fontawesome/fas-tram.svg"},{"key":"advertising","value":"totem","description":"🄿 Advertising Totem","object_types":["node","way"]},{"key":"advertising","value":"poster_box","description":"🄿 Poster Box","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/poster_box.svg"},{"key":"advertising","value":"column","description":"🄿 Advertising Column","object_types":["node","area"]},{"key":"advertising","value":"board","description":"🄿 Notice Board","object_types":["node"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/bulletin_board.svg"},{"key":"advertising","value":"billboard","description":"🄿 Billboard","object_types":["node","way"],"icon_url":"https://cdn.jsdelivr.net/gh/rapideditor/temaki/icons/billboard.svg"},{"key":"addr:interpolation","description":"🄿 Address Interpolation (unsearchable), 🄵 Type","object_types":["way"]},{"key":"wood_provided","description":"🄵 Firewood Provided"},{"key":"windings","description":"🄵 Windings"},{"key":"wikipedia","description":"🄵 Wikipedia, 🄵 Wikidata"},{"key":"wikimedia_commons","description":"🄵 Wikimedia Commons Page"},{"key":"wikidata","description":"🄵 Wikidata"},{"key":"width","description":"🄵 Width (Meters)"},{"key":"wholesale","description":"🄵 Wholesale"},{"key":"wheelchair","description":"🄵 Wheelchair Access"},{"key":"wetland","description":"🄵 Type"},{"key":"website","description":"🄵 Website"},{"key":"contact:website","description":"🄵 Website"},{"key":"water_source","description":"🄵 Water Source"},{"key":"water_source","value":"main","description":"🄵🅅 Water Source: Water Distribution Pipe"},{"key":"water_source","value":"water_tank","description":"🄵🅅 Water Source: Water Tank"},{"key":"water_source","value":"pond","description":"🄵🅅 Water Source: Pond"},{"key":"water_source","value":"river","description":"🄵🅅 Water Source: River"},{"key":"water_source","value":"stream","description":"🄵🅅 Water Source: Stream"},{"key":"water_source","value":"groundwater","description":"🄵🅅 Water Source: Groundwater"},{"key":"water_point","description":"🄵 Water Point"},{"key":"water","description":"🄵 Type"},{"key":"waste","description":"🄵 Waste"},{"key":"waste","value":"cigarettes","description":"🄵🅅 Waste: Cigarettes"},{"key":"waste","value":"organic","description":"🄵🅅 Waste: Organic Waste"},{"key":"waste","value":"trash","description":"🄵🅅 Waste: Trash"},{"key":"wall","description":"🄵 Type"},{"key":"voltage","description":"🄵 Voltage"},{"key":"visibility","description":"🄵 Visibility"},{"key":"visibility","value":"house","description":"🄵🅅 Visibility: Up to 5m (16ft)"},{"key":"visibility","value":"street","description":"🄵🅅 Visibility: 5 to 20m (16 to 65ft)"},{"key":"visibility","value":"area","description":"🄵🅅 Visibility: Over 20m (65ft)"},{"key":"video","description":"🄵 Video Calls"},{"key":"via","description":"🄵 Via"},{"key":"vhf","description":"🄵 VHF Channel"},{"key":"vending","description":"🄵 Types of Goods"},{"key":"vending","value":"e-cigarettes","description":"🄵🅅 Types of Goods: E-Cigarettes"},{"key":"vending","value":"milk","description":"🄵🅅 Types of Goods: Milk"},{"key":"vending","value":"water","description":"🄵🅅 Types of Goods: Drinking Water"},{"key":"bus","description":"🄵 Vehicles"},{"key":"trolleybus","description":"🄵 Vehicles"},{"key":"tram","description":"🄵 Vehicles"},{"key":"train","description":"🄵 Vehicles"},{"key":"subway","description":"🄵 Vehicles"},{"key":"light_rail","description":"🄵 Vehicles"},{"key":"monorail","description":"🄵 Vehicles"},{"key":"ferry","description":"🄵 Vehicles"},{"key":"valve","description":"🄵 Type"},{"key":"utility","value":"gas","description":"🄵🅅 Utility: Gas"},{"key":"utility","value":"oil","description":"🄵🅅 Utility: Oil"},{"key":"utility","value":"sewerage","description":"🄵🅅 Utility: Waste Water"},{"key":"utility","value":"street_lighting","description":"🄵🅅 Utility: Street Lighting"},{"key":"utility","value":"telecom","description":"🄵🅅 Utility: Telecom"},{"key":"utility","value":"water","description":"🄵🅅 Utility: Water"},{"key":"usage","description":"🄵 Usage Type"},{"key":"usage","value":"transportation","description":"🄵🅅 Usage Type: Transportation"},{"key":"usage","value":"transmission","description":"🄵🅅 Usage Type: Transmission"},{"key":"usage","value":"irrigation","description":"🄵🅅 Usage Type: Irrigation"},{"key":"usage","value":"headrace","description":"🄵🅅 Usage Type: Headrace"},{"key":"usage","value":"tailrace","description":"🄵🅅 Usage Type: Tailrace"},{"key":"usage","value":"spillway","description":"🄵🅅 Usage Type: Spillway"},{"key":"usage","value":"main","description":"🄵🅅 Usage Type: Main"},{"key":"usage","value":"branch","description":"🄵🅅 Usage Type: Branch"},{"key":"usage","value":"industrial","description":"🄵🅅 Usage Type: Industrial"},{"key":"usage","value":"military","description":"🄵🅅 Usage Type: Military"},{"key":"usage","value":"test","description":"🄵🅅 Usage Type: Test"},{"key":"usage","value":"tourism","description":"🄵🅅 Usage Type: Tourism"},{"key":"two_sided","description":"🄵 Two-Sided"},{"key":"two_sided","value":"yes","description":"🄵🅅 Two-Sided: Yes"},{"key":"turning_circle","description":"🄵 Shape"},{"key":"tunnel","description":"🄵 Type, 🄵 Structure"},{"key":"tunnel","value":"avalanche_protector","description":"🄵🅅 Type: Avalanche Protector"},{"key":"tunnel","value":"building_passage","description":"🄵🅅 Type: Building Passage"},{"key":"tunnel","value":"culvert","description":"🄵🅅 Type: Culvert"},{"key":"tunnel","value":"flooded","description":"🄵🅅 Type: Flooded Tunnel"},{"key":"trolley_wire","description":"🄵 Overhead Trolley Wires"},{"key":"trench","description":"🄵 Type"},{"key":"trees","description":"🄵 Trees"},{"key":"transformer","description":"🄵 Type"},{"key":"transformer","value":"main","description":"🄵🅅 Type: Main: Forwards power"},{"key":"transformer","value":"distribution","description":"🄵🅅 Type: Distribution: Feeds final consumers, installed outside substations"},{"key":"transformer","value":"generator","description":"🄵🅅 Type: Generator: Steps-up voltage in power plants"},{"key":"transformer","value":"converter","description":"🄵🅅 Type: Converter: Feeds power converters"},{"key":"transformer","value":"phase_angle_regulator","description":"🄵🅅 Type: Phase Angle Regulator"},{"key":"transformer","value":"auxiliary","description":"🄵🅅 Type: Auxiliary: Feeds internal systems in substations"},{"key":"transformer","value":"yes","description":"🄵🅅 Type: Unknown Role"},{"key":"trail_visibility","description":"🄵 Trail Visibility"},{"key":"trail_visibility","value":"excellent","description":"🄵🅅 Trail Visibility: Excellent: unambiguous path or markers everywhere"},{"key":"trail_visibility","value":"good","description":"🄵🅅 Trail Visibility: Good: markers visible, sometimes require searching"},{"key":"trail_visibility","value":"intermediate","description":"🄵🅅 Trail Visibility: Intermediate: few markers, path mostly visible"},{"key":"trail_visibility","value":"bad","description":"🄵🅅 Trail Visibility: Bad: no markers, path sometimes invisible/pathless"},{"key":"trail_visibility","value":"horrible","description":"🄵🅅 Trail Visibility: Horrible: often pathless, some orientation skills required"},{"key":"trail_visibility","value":"no","description":"🄵🅅 Trail Visibility: No: pathless, excellent orientation skills required"},{"key":"traffic_signals","description":"🄵 Type"},{"key":"traffic_calming","value":"choked_table","description":"🄵🅅 Type: Choked Speed Table"},{"key":"traffic_calming","value":"double_dip","description":"🄵🅅 Type: Double Dip"},{"key":"trade","description":"🄵 Type"},{"key":"tracktype","description":"🄵 Track Type"},{"key":"tracktype","value":"grade1","description":"🄵🅅 Track Type: Solid: paved"},{"key":"tracktype","value":"grade2","description":"🄵🅅 Track Type: Mostly Solid: gravel/rock with some soft material mixed in"},{"key":"tracktype","value":"grade3","description":"🄵🅅 Track Type: Even mixture of hard and soft materials"},{"key":"tracktype","value":"grade4","description":"🄵🅅 Track Type: Mostly Soft: soil/sand/grass with some hard material mixed in"},{"key":"tracktype","value":"grade5","description":"🄵🅅 Track Type: Soft: soil/sand/grass"},{"key":"tomb","description":"🄵 Type"},{"key":"tomb","value":"columbarium","description":"🄵🅅 Type: Columbarium"},{"key":"tomb","value":"crypt","description":"🄵🅅 Type: Crypt"},{"key":"tomb","value":"dolmen","description":"🄵🅅 Type: Dolmen"},{"key":"tomb","value":"hypogeum","description":"🄵🅅 Type: Hypogeum"},{"key":"tomb","value":"mausoleum","description":"🄵🅅 Type: Mausoleum"},{"key":"tomb","value":"pyramid","description":"🄵🅅 Type: Pyramid"},{"key":"tomb","value":"rock-cut","description":"🄵🅅 Type: Rock-cut Tomb"},{"key":"tomb","value":"sarcophagus","description":"🄵🅅 Type: Sarcophagus"},{"key":"tomb","value":"table","description":"🄵🅅 Type: Table"},{"key":"tomb","value":"tumulus","description":"🄵🅅 Type: Tumulus"},{"key":"tomb","value":"vault","description":"🄵🅅 Type: Vault"},{"key":"tomb","value":"war_grave","description":"🄵🅅 Type: Single War Grave"},{"key":"toll","description":"🄵 Toll"},{"key":"toilets","description":"🄵 Toilets"},{"key":"to","description":"🄵 To"},{"key":"tidal","description":"🄵 Tidal"},{"key":"tents","description":"🄵 Tents"},{"key":"telecom","value":"connection_point","description":"🄵🅅 Type: Connection Point"},{"key":"telecom","value":"distribution_point","description":"🄵🅅 Type: Distribution Point"},{"key":"telecom","value":"service_device","description":"🄵🅅 Type: Service Device"},{"key":"tee","description":"🄵 Tee Color/Type"},{"key":"taxon","description":"🄵 Taxon"},{"key":"taxi_vehicle","description":"🄵 Vehicle Type"},{"key":"taxi_vehicle","value":"motorcar","description":"🄵🅅 Vehicle Type: `motorcar`"},{"key":"target","description":"🄵 Target"},{"key":"takeaway","description":"🄵 Takeaway"},{"key":"takeaway","value":"yes","description":"🄵🅅 Takeaway: Yes"},{"key":"takeaway","value":"no","description":"🄵🅅 Takeaway: No"},{"key":"takeaway","value":"only","description":"🄵🅅 Takeaway: Takeaway Only"},{"key":"tactile_paving","description":"🄵 Tactile Paving"},{"key":"switch","description":"🄵 Type"},{"key":"switch","value":"mechanical","description":"🄵🅅 Type: Mechanical"},{"key":"switch","value":"circuit_breaker","description":"🄵🅅 Type: Circuit Breaker"},{"key":"switch","value":"disconnector","description":"🄵🅅 Type: Disconnector"},{"key":"switch","value":"earthing","description":"🄵🅅 Type: Earthing"},{"key":"swimming_pool","description":"🄵 Type"},{"key":"swimming_pool","value":"swimming","description":"🄵🅅 Type: Lap Pool"},{"key":"swimming_pool","value":"plunge","description":"🄵🅅 Type: Diving"},{"key":"swimming_pool","value":"wading","description":"🄵🅅 Type: Wading / Leisure"},{"key":"swimming_pool","value":"spa","description":"🄵🅅 Type: Spa"},{"key":"swimming_pool","value":"wave_pool","description":"🄵🅅 Type: Wave Pool"},{"key":"swimming_pool","value":"lazy_river","description":"🄵🅅 Type: Lazy River"},{"key":"swimming_pool","value":"personal","description":"🄵🅅 Type: Personal / Backyard"},{"key":"swimming_pool","value":"kids","description":"🄵🅅 Type: Kids Pool"},{"key":"surveillance","description":"🄵 Surveillance Kind"},{"key":"surface","description":"🄵 Surface"},{"key":"surface","value":"artificial_turf","description":"🄵🅅 Surface: Artificial Turf"},{"key":"surface","value":"asphalt","description":"🄵🅅 Surface: Asphalt"},{"key":"surface","value":"clay","description":"🄵🅅 Surface: Clay"},{"key":"surface","value":"compacted","description":"🄵🅅 Surface: Compacted"},{"key":"surface","value":"concrete","description":"🄵🅅 Surface: Concrete"},{"key":"surface","value":"concrete:lanes","description":"🄵🅅 Surface: Concrete Lanes"},{"key":"surface","value":"concrete:plates","description":"🄵🅅 Surface: Concrete Plates"},{"key":"surface","value":"dirt","description":"🄵🅅 Surface: Dirt"},{"key":"surface","value":"fine_gravel","description":"🄵🅅 Surface: Fine Gravel"},{"key":"surface","value":"grass","description":"🄵🅅 Surface: Grass"},{"key":"surface","value":"grass_paver","description":"🄵🅅 Surface: Grass Paver"},{"key":"surface","value":"gravel","description":"🄵🅅 Surface: Gravel"},{"key":"surface","value":"ground","description":"🄵🅅 Surface: Ground"},{"key":"surface","value":"metal","description":"🄵🅅 Surface: Metal"},{"key":"surface","value":"mud","description":"🄵🅅 Surface: Persistently Muddy"},{"key":"surface","value":"paved","description":"🄵🅅 Surface: Paved"},{"key":"surface","value":"paving_stones","description":"🄵🅅 Surface: Paving Stones"},{"key":"surface","value":"pebblestone","description":"🄵🅅 Surface: Pebblestone"},{"key":"surface","value":"salt","description":"🄵🅅 Surface: Salt"},{"key":"surface","value":"sand","description":"🄵🅅 Surface: Sand"},{"key":"surface","value":"sett","description":"🄵🅅 Surface: Sett"},{"key":"surface","value":"tartan","description":"🄵🅅 Surface: Tartan"},{"key":"surface","value":"unhewn_cobblestone","description":"🄵🅅 Surface: Cobblestone (uncut, rounded stones)"},{"key":"surface","value":"unpaved","description":"🄵🅅 Surface: Unpaved"},{"key":"surface","value":"wood","description":"🄵🅅 Surface: Wood"},{"key":"surface","value":"woodchips","description":"🄵🅅 Surface: Woodchips"},{"key":"support","description":"🄵 Support"},{"key":"supervised","description":"🄵 Supervised"},{"key":"substation","description":"🄵 Type"},{"key":"substation","value":"transmission","description":"🄵🅅 Type: Transmission, 🄵🅅 Type: High-Voltage Transmission"},{"key":"substation","value":"distribution","description":"🄵🅅 Type: Regional Distribution"},{"key":"substation","value":"minor_distribution","description":"🄵🅅 Type: Local Distribution"},{"key":"substation","value":"industrial","description":"🄵🅅 Type: Industrial"},{"key":"substation","value":"compression","description":"🄵🅅 Type: Compression"},{"key":"substation","value":"measurement","description":"🄵🅅 Type: Measurement"},{"key":"substation","value":"valve","description":"🄵🅅 Type: Valve"},{"key":"substation","value":"valve_group","description":"🄵🅅 Type: Valve Group"},{"key":"substation","value":"inspection_gauge","description":"🄵🅅 Type: Inspection Gauge"},{"key":"substation","value":"field_gathering","description":"🄵🅅 Type: Field Gathering"},{"key":"substation","value":"generation","description":"🄵🅅 Type: Generation"},{"key":"substation","value":"transition","description":"🄵🅅 Type: Overground/Underground Transition"},{"key":"substation","value":"traction","description":"🄵🅅 Type: Traction System Supply"},{"key":"substation","value":"converter","description":"🄵🅅 Type: High-Voltage AC/DC Converter"},{"key":"substation","value":"compensation","description":"🄵🅅 Type: Reactive Power Compensation"},{"key":"substance","description":"🄵 Substance"},{"key":"substance","value":"fuel","description":"🄵🅅 Substance: Fuel"},{"key":"substance","value":"gas","description":"🄵🅅 Substance: Natural Gas"},{"key":"substance","value":"hot_water","description":"🄵🅅 Substance: Hot Water"},{"key":"substance","value":"oil","description":"🄵🅅 Substance: Crude Oil"},{"key":"substance","value":"rainwater","description":"🄵🅅 Substance: Rainwater"},{"key":"substance","value":"sewage","description":"🄵🅅 Substance: Sewage"},{"key":"substance","value":"water","description":"🄵🅅 Substance: Drinking Water"},{"key":"subject","description":"🄵 Subject"},{"key":"studio","description":"🄵 Type"},{"key":"structure","description":"🄵 Structure"},{"key":"structure","value":"lattice","description":"🄵🅅 Structure: Lattice"},{"key":"structure","value":"solid","description":"🄵🅅 Structure: Solid"},{"key":"structure","value":"tubular","description":"🄵🅅 Structure: Tubular"},{"key":"embankment","description":"🄵 Structure, 🄵 Type"},{"key":"cutting","description":"🄵 Structure, 🄵 Type"},{"key":"stroller","description":"🄵 Stroller Access"},{"key":"street_cabinet","description":"🄵 Type"},{"key":"stop","description":"🄵 Stop Type"},{"key":"stop","value":"all","description":"🄵🅅 Stop Type: All Ways"},{"key":"stop","value":"minor","description":"🄵🅅 Stop Type: Minor Road"},{"key":"stile","description":"🄵 Type"},{"key":"step_count","description":"🄵 Number of Steps"},{"key":"static_caravans","description":"🄵 Mobile Homes"},{"key":"start_date","description":"🄵 Start Date"},{"key":"stars","description":"🄵 Stars"},{"key":"sport","description":"🄵 Sports"},{"key":"sport","value":"10pin","description":"🄵🅅 Sports: Ten-Pin Bowling"},{"key":"sport","value":"9pin","description":"🄵🅅 Sports: Nine-Pin Bowling"},{"key":"sport","value":"billiards","description":"🄵🅅 Sports: Cue Sports"},{"key":"sport","value":"bmx","description":"🄵🅅 Sports: BMX"},{"key":"sport","value":"canoe","description":"🄵🅅 Sports: Canoeing"},{"key":"sport","value":"curling","description":"🄵🅅 Sports: Curling"},{"key":"sport","value":"darts","description":"🄵🅅 Sports: Darts"},{"key":"sport","value":"disc_golf","description":"🄵🅅 Sports: Disc Golf"},{"key":"sport","value":"dog_racing","description":"🄵🅅 Sports: Dog Racing"},{"key":"sport","value":"fitness","description":"🄵🅅 Sports: Fitness Training"},{"key":"sport","value":"free_flying","description":"🄵🅅 Sports: Paragliding / Hang Gliding"},{"key":"sport","value":"gaelic_games","description":"🄵🅅 Sports: Gaelic Games"},{"key":"sport","value":"golf","description":"🄵🅅 Sports: Golf"},{"key":"sport","value":"gymnastics","description":"🄵🅅 Sports: Gymnastics"},{"key":"sport","value":"ice_hockey","description":"🄵🅅 Sports: Ice Hockey"},{"key":"sport","value":"ice_skating","description":"🄵🅅 Sports: Ice Skating"},{"key":"sport","value":"ice_stock","description":"🄵🅅 Sports: Ice Stock"},{"key":"sport","value":"motor","description":"🄵🅅 Sports: Motorsports"},{"key":"sport","value":"multi","description":"🄵🅅 Sports: Unspecified Other Sports"},{"key":"sport","value":"orienteering","description":"🄵🅅 Sports: Orienteering"},{"key":"sport","value":"pelota","description":"🄵🅅 Sports: Pelota"},{"key":"sport","value":"scuba_diving","description":"🄵🅅 Sports: Scuba Diving"},{"key":"sport","value":"skiing","description":"🄵🅅 Sports: Skiing"},{"key":"sport","value":"ski_jumping","description":"🄵🅅 Sports: Ski Jumping"},{"key":"sport","value":"speedway","description":"🄵🅅 Sports: Motorcycle Speedway"},{"key":"species","description":"🄵 Species"},{"key":"spacing","description":"🄵 Distance Between Barriers (Meters)"},{"key":"source","description":"🄵 Sources"},{"key":"source","value":"survey","description":"🄵🅅 Sources: Survey"},{"key":"source","value":"local knowledge","description":"🄵🅅 Sources: Local Knowledge"},{"key":"source","value":"aerial imagery","description":"🄵🅅 Sources: Aerial Imagery"},{"key":"source","value":"gps","description":"🄵🅅 Sources: GPS"},{"key":"source","value":"streetlevel imagery","description":"🄵🅅 Sources: Street-Level Photos"},{"key":"source","value":"osm notes","description":"🄵🅅 Sources: OpenStreetMap Notes"},{"key":"social_facility:for","description":"🄵 People Served"},{"key":"social_facility:for","value":"abused","description":"🄵🅅 People Served: Abuse victims"},{"key":"social_facility:for","value":"child","description":"🄵🅅 People Served: Children"},{"key":"social_facility:for","value":"dementia","description":"🄵🅅 People Served: People suffering from dementia"},{"key":"social_facility:for","value":"disabled","description":"🄵🅅 People Served: People with disabilities"},{"key":"social_facility:for","value":"diseased","description":"🄵🅅 People Served: People suffering from a disease"},{"key":"social_facility:for","value":"displaced","description":"🄵🅅 People Served: People displaced by disasters or conflicts"},{"key":"social_facility:for","value":"drug_addicted","description":"🄵🅅 People Served: Drug addicted"},{"key":"social_facility:for","value":"juvenile","description":"🄵🅅 People Served: Juveniles"},{"key":"social_facility:for","value":"mental_health","description":"🄵🅅 People Served: People with mental health problems"},{"key":"social_facility:for","value":"migrant","description":"🄵🅅 People Served: Migrants"},{"key":"social_facility:for","value":"orphan","description":"🄵🅅 People Served: Orphans"},{"key":"social_facility:for","value":"refugee","description":"🄵🅅 People Served: Refugees"},{"key":"social_facility:for","value":"terminally_ill","description":"🄵🅅 People Served: People with a terminal illness"},{"key":"social_facility:for","value":"underprivileged","description":"🄵🅅 People Served: Underprivileged people"},{"key":"social_facility:for","value":"unemployed","description":"🄵🅅 People Served: People without a job"},{"key":"social_facility:for","value":"veteran","description":"🄵🅅 People Served: Veterans"},{"key":"social_facility:for","value":"victim","description":"🄵🅅 People Served: Victims of crime"},{"key":"social_facility:for","value":"woman","description":"🄵🅅 People Served: Women"},{"key":"social_facility","description":"🄵 Type"},{"key":"social_facility","value":"assisted_living","description":"🄵🅅 Type: Assisted Living"},{"key":"social_facility","value":"day_care","description":"🄵🅅 Type: Day Care"},{"key":"social_facility","value":"group_home","description":"🄵🅅 Type: Group Home"},{"key":"social_facility","value":"nursing_home","description":"🄵🅅 Type: Nursing Home"},{"key":"social_facility","value":"outreach","description":"🄵🅅 Type: Outreach"},{"key":"social_facility","value":"shelter","description":"🄵🅅 Type: Shelter"},{"key":"social_facility","value":"workshop","description":"🄵🅅 Type: Workshop"},{"key":"sms","description":"🄵 SMS"},{"key":"smoothness","description":"🄵 Smoothness"},{"key":"smoothness","value":"excellent","description":"🄵🅅 Smoothness: Thin Rollers: rollerblade, skateboard"},{"key":"smoothness","value":"good","description":"🄵🅅 Smoothness: Thin Wheels: racing bike"},{"key":"smoothness","value":"intermediate","description":"🄵🅅 Smoothness: Wheels: city bike, wheelchair, scooter"},{"key":"smoothness","value":"bad","description":"🄵🅅 Smoothness: Robust Wheels: trekking bike, car, rickshaw"},{"key":"smoothness","value":"very_bad","description":"🄵🅅 Smoothness: High Clearance: light duty off-road vehicle"},{"key":"smoothness","value":"horrible","description":"🄵🅅 Smoothness: Off-Road: heavy duty off-road vehicle"},{"key":"smoothness","value":"very_horrible","description":"🄵🅅 Smoothness: Specialized off-road: tractor, ATV"},{"key":"smoothness","value":"impassable","description":"🄵🅅 Smoothness: Impassable / No wheeled vehicle"},{"key":"smoking","description":"🄵 Smoking"},{"key":"smoking","value":"no","description":"🄵🅅 Smoking: No smoking anywhere"},{"key":"smoking","value":"separated","description":"🄵🅅 Smoking: In smoking areas, not physically isolated"},{"key":"smoking","value":"isolated","description":"🄵🅅 Smoking: In smoking areas, physically isolated"},{"key":"smoking","value":"outside","description":"🄵🅅 Smoking: Allowed outside"},{"key":"smoking","value":"yes","description":"🄵🅅 Smoking: Allowed everywhere"},{"key":"smoking","value":"dedicated","description":"🄵🅅 Smoking: Dedicated to smokers (e.g. smokers' club)"},{"key":"site","description":"🄵 Type"},{"key":"side","description":"🄵 Side"},{"key":"side","value":"left","description":"🄵🅅 Side: Left of Cyclist"},{"key":"side","value":"right","description":"🄵🅅 Side: Right of Cyclist"},{"key":"shower","description":"🄵 Showers"},{"key":"short_name","description":"🄵 Short Name"},{"key":"shoes","description":"🄵 Shoes"},{"key":"shelter_type","description":"🄵 Type"},{"key":"shelter","description":"🄵 Shelter"},{"key":"service_times","description":"🄵 Service Times"},{"key":"service","description":"🄵 Service Type, 🄵 Type"},{"key":"service","value":"spur","description":"🄵🅅 Service Type: Spur"},{"key":"service","value":"yard","description":"🄵🅅 Service Type: Yard"},{"key":"service","value":"siding","description":"🄵🅅 Service Type: Siding"},{"key":"service","value":"crossover","description":"🄵🅅 Service Type: Crossover"},{"key":"self_service","description":"🄵 Self-Service"},{"key":"self_checkout","description":"🄵 Self Checkout"},{"key":"segregated","description":"🄵 Bicycle-Pedestrian Separation"},{"key":"second_hand","description":"🄵 Sells Used"},{"key":"second_hand","value":"yes","description":"🄵🅅 Sells Used: Yes"},{"key":"second_hand","value":"no","description":"🄵🅅 Sells Used: No"},{"key":"seats","description":"🄵 Seats"},{"key":"seasonal","description":"🄵 Seasonal"},{"key":"scuba_diving:","description":"🄵 Services"},{"key":"scuba_diving:air_filling","description":"🄵🅅 Services: `air_filling`"},{"key":"scuba_diving:courses","description":"🄵🅅 Services: `courses`"},{"key":"scuba_diving:filling","description":"🄵🅅 Services: `filling`"},{"key":"scuba_diving:hobby","description":"🄵🅅 Services: `hobby`"},{"key":"scuba_diving:nitrox_filling","description":"🄵🅅 Services: `nitrox_filling`"},{"key":"scuba_diving:oxygen_filling","description":"🄵🅅 Services: `oxygen_filling`"},{"key":"scuba_diving:rental","description":"🄵🅅 Services: `rental`"},{"key":"scuba_diving:repair","description":"🄵🅅 Services: `repair`"},{"key":"scuba_diving:trimix_filling","description":"🄵🅅 Services: `trimix_filling`"},{"key":"screen","description":"🄵 Screens"},{"key":"sanitary_dump_station","description":"🄵 Toilet Disposal"},{"key":"sample_collection","description":"🄵 Samples"},{"key":"salt","description":"🄵 Salt"},{"key":"sac_scale","description":"🄵 Hiking Difficulty"},{"key":"sac_scale","value":"strolling","description":"🄵🅅 Hiking Difficulty: Strolling"},{"key":"sac_scale","value":"hiking","description":"🄵🅅 Hiking Difficulty: T1: Hiking"},{"key":"sac_scale","value":"mountain_hiking","description":"🄵🅅 Hiking Difficulty: T2: Mountain Hiking"},{"key":"sac_scale","value":"demanding_mountain_hiking","description":"🄵🅅 Hiking Difficulty: T3: Demanding Mountain Hiking"},{"key":"sac_scale","value":"alpine_hiking","description":"🄵🅅 Hiking Difficulty: T4: Alpine Hiking"},{"key":"sac_scale","value":"demanding_alpine_hiking","description":"🄵🅅 Hiking Difficulty: T5: Demanding Alpine Hiking"},{"key":"sac_scale","value":"difficult_alpine_hiking","description":"🄵🅅 Hiking Difficulty: T6: Difficult Alpine Hiking"},{"key":"rwn_ref","description":"🄵 Walking Code"},{"key":"ruins","description":"🄵 Type"},{"key":"royal_cypher","description":"🄵 Royal Cypher"},{"key":"royal_cypher","value":"VR","description":"🄵🅅 Royal Cypher: VR (Victoria)"},{"key":"royal_cypher","value":"EVIIR","description":"🄵🅅 Royal Cypher: EVIIR (Edward VII)"},{"key":"royal_cypher","value":"EVIIIR","description":"🄵🅅 Royal Cypher: EVIIIR (Edward VIII)"},{"key":"royal_cypher","value":"GR","description":"🄵🅅 Royal Cypher: GR (George V)"},{"key":"royal_cypher","value":"GVIR","description":"🄵🅅 Royal Cypher: GVIR (George VI)"},{"key":"royal_cypher","value":"EIIR","description":"🄵🅅 Royal Cypher: EIIR (Elizabeth II)"},{"key":"royal_cypher","value":"CIIIR","description":"🄵🅅 Royal Cypher: CIIIR (Charles III)"},{"key":"royal_cypher","value":"scottish_crown","description":"🄵🅅 Royal Cypher: Scottish Crown"},{"key":"royal_cypher","value":"no","description":"🄵🅅 Royal Cypher: No"},{"key":"route_master","description":"🄵 Type"},{"key":"route","description":"🄵 Type"},{"key":"roundtrip","description":"🄵 Forms Loop"},{"key":"rooms","description":"🄵 Rooms"},{"key":"room","description":"🄵 Type"},{"key":"restriction","description":"🄵 Type"},{"key":"resource","description":"🄵 Resources"},{"key":"resource","value":"aggregate","description":"🄵🅅 Resources: Aggregate"},{"key":"resource","value":"clay","description":"🄵🅅 Resources: Clay"},{"key":"resource","value":"coal","description":"🄵🅅 Resources: Coal"},{"key":"resource","value":"gold","description":"🄵🅅 Resources: Gold"},{"key":"resource","value":"gravel","description":"🄵🅅 Resources: Gravel"},{"key":"resource","value":"iron_ore","description":"🄵🅅 Resources: Iron Ore"},{"key":"resource","value":"limestone","description":"🄵🅅 Resources: Limestone"},{"key":"resource","value":"peat","description":"🄵🅅 Resources: Peat"},{"key":"resource","value":"sand","description":"🄵🅅 Resources: Sand"},{"key":"resort","description":"🄵 Type"},{"key":"residential","description":"🄵 Type"},{"key":"reservation","description":"🄵 Reservations"},{"key":"reservation","value":"yes","description":"🄵🅅 Reservations: Accepted"},{"key":"reservation","value":"no","description":"🄵🅅 Reservations: Not Accepted"},{"key":"reservation","value":"required","description":"🄵🅅 Reservations: Required"},{"key":"reservation","value":"recommended","description":"🄵🅅 Reservations: Recommended"},{"key":"religion","description":"🄵 Religion"},{"key":"religion","value":"bahai","description":"🄵🅅 Religion: Bahá’í"},{"key":"religion","value":"benzhu","description":"🄵🅅 Religion: Benzhu"},{"key":"religion","value":"caodaism","description":"🄵🅅 Religion: Caodaist"},{"key":"religion","value":"chinese_folk","description":"🄵🅅 Religion: Chinese Folk Religion"},{"key":"religion","value":"confucian","description":"🄵🅅 Religion: Confucian"},{"key":"religion","value":"jain","description":"🄵🅅 Religion: Jain"},{"key":"religion","value":"multifaith","description":"🄵🅅 Religion: Multifaith"},{"key":"religion","value":"none","description":"🄵🅅 Religion: Nonreligious"},{"key":"religion","value":"pagan","description":"🄵🅅 Religion: Pagan"},{"key":"religion","value":"spiritualist","description":"🄵🅅 Religion: Spiritualist"},{"key":"religion","value":"tenrikyo","description":"🄵🅅 Religion: Tenrikyo"},{"key":"religion","value":"unitarian_universalist","description":"🄵🅅 Religion: Unitarian Universalist"},{"key":"religion","value":"vietnamese_folk","description":"🄵🅅 Religion: Vietnamese Folk Religion"},{"key":"religion","value":"voodoo","description":"🄵🅅 Religion: Voodoo"},{"key":"type","description":"🄵 Type"},{"key":"reg_name","description":"🄵 Regional Name"},{"key":"ref","description":"🄵 Taxiway Name, 🄵 Stop Number, 🄵 Section Number, 🄵 Runway Number, 🄵 Route Number, 🄵 Room Number, 🄵 Road Number, 🄵 Line Number, 🄵 Platform Number, 🄵 Junction Number, 🄵 Hole Number, 🄵 Bridge Number, 🄵 Gate Number, 🄵 Reference Code"},{"key":"recycling_type","description":"🄵 Type"},{"key":"recycling:","description":"🄵 Accepts"},{"key":"recycling:glass_bottles","description":"🄵🅅 Accepts: Glass Bottles and Jars"},{"key":"recycling:glass","description":"🄵🅅 Accepts: Any Glass (tempered glass, windows, mirrors, etc.)"},{"key":"recycling:paper","description":"🄵🅅 Accepts: Paper"},{"key":"recycling:plastic","description":"🄵🅅 Accepts: Plastic"},{"key":"recycling:clothes","description":"🄵🅅 Accepts: Clothes"},{"key":"recycling:cans","description":"🄵🅅 Accepts: Cans"},{"key":"recycling:batteries","description":"🄵🅅 Accepts: Batteries"},{"key":"recycling:shoes","description":"🄵🅅 Accepts: Shoes"},{"key":"recycling:green_waste","description":"🄵🅅 Accepts: Green Waste"},{"key":"recycling:plastic_packaging","description":"🄵🅅 Accepts: Plastic Packaging"},{"key":"recycling:plastic_bottles","description":"🄵🅅 Accepts: Plastic Bottles"},{"key":"recycling:cardboard","description":"🄵🅅 Accepts: Cardboard"},{"key":"recycling:scrap_metal","description":"🄵🅅 Accepts: Scrap Metal"},{"key":"recycling:cooking_oil","description":"🄵🅅 Accepts: Cooking Oil"},{"key":"recycling:engine_oil","description":"🄵🅅 Accepts: Engine Oil"},{"key":"real_fire","description":"🄵 Real Fire"},{"key":"rcn_ref","description":"🄵 Cycling Code"},{"key":"rating","description":"🄵 Power Rating"},{"key":"ramp","description":"🄵 Embedded Ramp"},{"key":"ramp","value":"yes","description":"🄵🅅 Embedded Ramp: Yes"},{"key":"ramp","value":"no","description":"🄵🅅 Embedded Ramp: No"},{"key":"ramp","value":"separate","description":"🄵🅅 Embedded Ramp: Separately Mapped"},{"key":"pump","description":"🄵 Pump"},{"key":"pump","value":"yes","description":"🄵🅅 Pump: Yes"},{"key":"pump","value":"manual","description":"🄵🅅 Pump: Manual Hand Pump"},{"key":"pump","value":"powered","description":"🄵🅅 Pump: Machine-Powered Pump"},{"key":"pump","value":"no","description":"🄵🅅 Pump: None"},{"key":"product","description":"🄵 Products"},{"key":"produce","description":"🄵 Produce"},{"key":"preschool","description":"🄵 Preschool"},{"key":"power_supply","description":"🄵 Power Supply"},{"key":"post:block_number","description":"🄵 Delivery Address"},{"key":"post:city","description":"🄵 Delivery Address"},{"key":"post:conscriptionnumber","description":"🄵 Delivery Address"},{"key":"post:county","description":"🄵 Delivery Address"},{"key":"post:country","description":"🄵 Delivery Address"},{"key":"post:district","description":"🄵 Delivery Address"},{"key":"post:floor","description":"🄵 Delivery Address"},{"key":"post:hamlet","description":"🄵 Delivery Address"},{"key":"post:housename","description":"🄵 Delivery Address"},{"key":"post:housenumber","description":"🄵 Delivery Address"},{"key":"post:neighbourhood","description":"🄵 Delivery Address"},{"key":"post:place","description":"🄵 Delivery Address"},{"key":"post:postcode","description":"🄵 Delivery Address"},{"key":"post:province","description":"🄵 Delivery Address"},{"key":"post:quarter","description":"🄵 Delivery Address"},{"key":"post:state","description":"🄵 Delivery Address"},{"key":"post:street","description":"🄵 Delivery Address"},{"key":"post:subdistrict","description":"🄵 Delivery Address"},{"key":"post:suburb","description":"🄵 Delivery Address"},{"key":"post:unit","description":"🄵 Delivery Address"},{"key":"portable","description":"🄵 Portable"},{"key":"population","description":"🄵 Population"},{"key":"plots","description":"🄵 Plots"},{"key":"playground","value":"archimedes_screw","description":"🄵🅅 Type: Archimedes Screw"},{"key":"playground","value":"balance","description":"🄵🅅 Type: Balancing Device (unspecified)"},{"key":"playground","value":"ball_pool","description":"🄵🅅 Type: Ball Pool"},{"key":"playground","value":"bannister_bars","description":"🄵🅅 Type: Banister Bars"},{"key":"playground","value":"belt_bridge","description":"🄵🅅 Type: Belt Bridge"},{"key":"playground","value":"blackboard","description":"🄵🅅 Type: Blackboard"},{"key":"playground","value":"chute","description":"🄵🅅 Type: Chute"},{"key":"playground","value":"climbing","description":"🄵🅅 Type: Climbing Device (unspecified)"},{"key":"playground","value":"climbing_pole","description":"🄵🅅 Type: Climbing Pole"},{"key":"playground","value":"climbing_slope","description":"🄵🅅 Type: Climbing Slope"},{"key":"playground","value":"dome","description":"🄵🅅 Type: Dome"},{"key":"playground","value":"excavator","description":"🄵🅅 Type: Excavator"},{"key":"playground","value":"exercise","description":"🄵🅅 Type: Exercise Device"},{"key":"playground","value":"hammock","description":"🄵🅅 Type: Hammock"},{"key":"playground","value":"hamster_wheel","description":"🄵🅅 Type: Hamster Wheel"},{"key":"playground","value":"ladder","description":"🄵🅅 Type: Ladder"},{"key":"playground","value":"maze","description":"🄵🅅 Type: Maze"},{"key":"playground","value":"marble_run","description":"🄵🅅 Type: Marble Run"},{"key":"playground","value":"monkey_bars","description":"🄵🅅 Type: Monkey Bars"},{"key":"playground","value":"mound","description":"🄵🅅 Type: Artificial Mound"},{"key":"playground","value":"musical_instrument","description":"🄵🅅 Type: Musical Instrument"},{"key":"playground","value":"parallel_bars","description":"🄵🅅 Type: Parallel Bars"},{"key":"playground","value":"platform","description":"🄵🅅 Type: Platform"},{"key":"playground","value":"pump","description":"🄵🅅 Type: Pump"},{"key":"playground","value":"ride_on","description":"🄵🅅 Type: Fixed Riding Device"},{"key":"playground","value":"rope_swing","description":"🄵🅅 Type: Rope Swing"},{"key":"playground","value":"rope_traverse","description":"🄵🅅 Type: Rope Traverse"},{"key":"playground","value":"rotator","description":"🄵🅅 Type: Rotating Device (unspecified)"},{"key":"playground","value":"sand","description":"🄵🅅 Type: Sand Play Device (unspecified)"},{"key":"playground","value":"sand_pulley","description":"🄵🅅 Type: Sand Pulley"},{"key":"playground","value":"sand_seesaw","description":"🄵🅅 Type: Sand Seesaw"},{"key":"playground","value":"sand_wheel","description":"🄵🅅 Type: Sand Wheel"},{"key":"playground","value":"seat","description":"🄵🅅 Type: Seat"},{"key":"playground","value":"sieve","description":"🄵🅅 Type: Sieve"},{"key":"playground","value":"speaking_tube","description":"🄵🅅 Type: Speaking Tube"},{"key":"playground","value":"spinner","description":"🄵🅅 Type: Spinner"},{"key":"playground","value":"spinner_bowl","description":"🄵🅅 Type: Spinner Bowl"},{"key":"playground","value":"spinning_circle","description":"🄵🅅 Type: Spinning Circle"},{"key":"playground","value":"spinning_disc","description":"🄵🅅 Type: Spinning Disc"},{"key":"playground","value":"spring_board","description":"🄵🅅 Type: Spring Board"},{"key":"playground","value":"stepping_post","description":"🄵🅅 Type: Stepping Post"},{"key":"playground","value":"stepping_stone","description":"🄵🅅 Type: Stepping Stone"},{"key":"playground","value":"steps","description":"🄵🅅 Type: Steps"},{"key":"playground","value":"baby_swing","description":"🄵🅅 Type: Baby Swing"},{"key":"playground","value":"tire_swing","description":"🄵🅅 Type: Tire Swing"},{"key":"playground","value":"table","description":"🄵🅅 Type: Table"},{"key":"playground","value":"track","description":"🄵🅅 Type: Playground Track"},{"key":"playground","value":"water_barrier","description":"🄵🅅 Type: Water Barrier"},{"key":"playground","value":"water_basin","description":"🄵🅅 Type: Water Basin"},{"key":"playground","value":"water_cannon","description":"🄵🅅 Type: Water Cannon"},{"key":"playground","value":"water_channel","description":"🄵🅅 Type: Water Channel"},{"key":"playground","value":"water_seesaw","description":"🄵🅅 Type: Water Seesaw"},{"key":"playground","value":"water_sprayer","description":"🄵🅅 Type: Water Sprayer"},{"key":"playground","value":"water_stream","description":"🄵🅅 Type: Water Stream"},{"key":"playground","value":"water_wheel","description":"🄵🅅 Type: Water Wheel"},{"key":"playground","value":"wobble_bridge","description":"🄵🅅 Type: Wobble Bridge"},{"key":"playground","value":"youth_bench","description":"🄵🅅 Type: Youth Bench"},{"key":"plant","description":"🄵 Plant"},{"key":"picnic_table","description":"🄵 Picnic Table"},{"key":"phone","description":"🄵 Telephone"},{"key":"contact:phone","description":"🄵 Telephone"},{"key":"phases","description":"🄵 Phases"},{"key":"payment:","description":"🄵 Payment Types"},{"key":"payment:account_cards","description":"🄵🅅 Payment Types: Account Card"},{"key":"payment:app","description":"🄵🅅 Payment Types: Mobile Application"},{"key":"payment:cards","description":"🄵🅅 Payment Types: Payment Card"},{"key":"payment:cash","description":"🄵🅅 Payment Types: Cash"},{"key":"payment:cheque","description":"🄵🅅 Payment Types: Check"},{"key":"payment:coins","description":"🄵🅅 Payment Types: Coins"},{"key":"payment:contactless","description":"🄵🅅 Payment Types: Contactless Payment"},{"key":"payment:credit_cards","description":"🄵🅅 Payment Types: Credit Card"},{"key":"payment:cryptocurrencies","description":"🄵🅅 Payment Types: Cryptocurrency"},{"key":"payment:debit_cards","description":"🄵🅅 Payment Types: Debit Card"},{"key":"payment:electronic_purses","description":"🄵🅅 Payment Types: Electronic Purse"},{"key":"payment:notes","description":"🄵🅅 Payment Types: Banknotes"},{"key":"payment:prepaid_ticket","description":"🄵🅅 Payment Types: Prepaid Ticket"},{"key":"payment:telephone_cards","description":"🄵🅅 Payment Types: Telephone Card"},{"key":"payment:alipay","description":"🄵🅅 Payment Types: Alipay"},{"key":"payment:american_express","description":"🄵🅅 Payment Types: American Express"},{"key":"payment:apple_pay","description":"🄵🅅 Payment Types: Apple Pay"},{"key":"payment:bancomat","description":"🄵🅅 Payment Types: Bancomat"},{"key":"payment:blik","description":"🄵🅅 Payment Types: Blik"},{"key":"payment:clipper","description":"🄵🅅 Payment Types: Clipper"},{"key":"payment:diners_club","description":"🄵🅅 Payment Types: Diners Club"},{"key":"payment:discover_card","description":"🄵🅅 Payment Types: Discover"},{"key":"payment:dkv","description":"🄵🅅 Payment Types: DKV"},{"key":"payment:ep_easycard","description":"🄵🅅 Payment Types: 悠遊卡EasyCard"},{"key":"payment:ep_geldkarte","description":"🄵🅅 Payment Types: GeldKarte"},{"key":"payment:ep_ipass","description":"🄵🅅 Payment Types: iPASS一卡通"},{"key":"payment:girocard","description":"🄵🅅 Payment Types: Girocard"},{"key":"payment:google_pay","description":"🄵🅅 Payment Types: Google Pay"},{"key":"payment:jcb","description":"🄵🅅 Payment Types: JCB"},{"key":"payment:maestro","description":"🄵🅅 Payment Types: Maestro"},{"key":"payment:mastercard","description":"🄵🅅 Payment Types: Mastercard"},{"key":"payment:mastercard_contactless","description":"🄵🅅 Payment Types: Mastercard Contactless"},{"key":"payment:paypal","description":"🄵🅅 Payment Types: PayPal"},{"key":"payment:unionpay","description":"🄵🅅 Payment Types: UnionPay"},{"key":"payment:uta","description":"🄵🅅 Payment Types: UTA"},{"key":"payment:v_pay","description":"🄵🅅 Payment Types: V Pay"},{"key":"payment:visa","description":"🄵🅅 Payment Types: Visa"},{"key":"payment:visa_debit","description":"🄵🅅 Payment Types: Visa Debit"},{"key":"payment:visa_electron","description":"🄵🅅 Payment Types: Visa Electron"},{"key":"payment:wechat","description":"🄵🅅 Payment Types: WeChat Pay"},{"key":"parking_space","description":"🄵 Type"},{"key":"parking","description":"🄵 Type"},{"key":"parking","value":"surface","description":"🄵🅅 Type: `surface`"},{"key":"parking","value":"lane","description":"🄵🅅 Type: `lane`"},{"key":"parking","value":"rooftop","description":"🄵🅅 Type: `rooftop`"},{"key":"parking","value":"carports","description":"🄵🅅 Type: `carports`"},{"key":"parking","value":"garage_boxes","description":"🄵🅅 Type: `garage_boxes`"},{"key":"parking","value":"sheds","description":"🄵🅅 Type: `sheds`"},{"key":"parking","value":"layby","description":"🄵🅅 Type: `layby`"},{"key":"parking","value":"on_kerb","description":"🄵🅅 Type: `on_kerb`"},{"key":"parking","value":"half_on_kerb","description":"🄵🅅 Type: `half_on_kerb`"},{"key":"parking","value":"shoulder","description":"🄵🅅 Type: `shoulder`"},{"key":"park_ride","description":"🄵 Park and Ride"},{"key":"parcel_pickup","description":"🄵 Parcel Pickup"},{"key":"parcel_pickup","value":"yes","description":"🄵🅅 Parcel Pickup: Yes"},{"key":"parcel_pickup","value":"no","description":"🄵🅅 Parcel Pickup: No"},{"key":"parcel_mail_in","description":"🄵 Parcel Dropoff"},{"key":"par","description":"🄵 Par"},{"key":"panoramax","description":"🄵 Panoramax Image ID"},{"key":"overlap","description":"🄵 Overlap Width (Meters)"},{"key":"outdoor_seating","description":"🄵 Outdoor Seating"},{"key":"organic","description":"🄵 Organic Products"},{"key":"organic","value":"no","description":"🄵🅅 Organic Products: None"},{"key":"organic","value":"yes","description":"🄵🅅 Organic Products: Some"},{"key":"operator","description":"🄵 Operator"},{"key":"opening_hours","description":"🄵 Hours"},{"key":"opening_date","description":"🄵 Expected Opening Date"},{"key":"opening","description":"🄵 Opening Width (Meters)"},{"key":"openfire","description":"🄵 Open Fires Allowed"},{"key":"oneway","description":"🄵 One Way"},{"key":"oneway","value":"yes","description":"🄵🅅 One Way: Yes"},{"key":"oneway","value":"no","description":"🄵🅅 One Way: No"},{"key":"oneway","value":"reversible","description":"🄵🅅 One Way: Reversible"},{"key":"oneway","value":"alternating","description":"🄵🅅 One Way: Alternating"},{"key":"official_name","description":"🄵 Official Name"},{"key":"office","value":"construction_company","description":"🄵🅅 Type: Construction Company Office"},{"key":"office","value":"courier","description":"🄵🅅 Type: Courier Office"},{"key":"office","value":"logistics","description":"🄵🅅 Type: Forwarding Agency"},{"key":"nudism","description":"🄵 Nudism"},{"key":"nudism","value":"customary","description":"🄵🅅 Nudism: Customary"},{"key":"nudism","value":"designated","description":"🄵🅅 Nudism: Designated"},{"key":"nudism","value":"no","description":"🄵🅅 Nudism: Prohibited"},{"key":"nudism","value":"obligatory","description":"🄵🅅 Nudism: Obligatory"},{"key":"nudism","value":"permissive","description":"🄵🅅 Nudism: Permissive"},{"key":"nudism","value":"yes","description":"🄵🅅 Nudism: Allowed"},{"key":"note","description":"🄵 Note"},{"key":"network","description":"🄵 Network, 🄵 Network Class"},{"key":"network","value":"lhn","description":"🄵🅅 Network Class: Local"},{"key":"network","value":"rhn","description":"🄵🅅 Network Class: Regional"},{"key":"network","value":"nhn","description":"🄵🅅 Network Class: National"},{"key":"network","value":"ihn","description":"🄵🅅 Network Class: International"},{"key":"network","value":"lwn","description":"🄵🅅 Network Class: Local"},{"key":"network","value":"rwn","description":"🄵🅅 Network Class: Regional"},{"key":"network","value":"nwn","description":"🄵🅅 Network Class: National"},{"key":"network","value":"iwn","description":"🄵🅅 Network Class: International"},{"key":"network","value":"lcn","description":"🄵🅅 Network Class: Local"},{"key":"network","value":"rcn","description":"🄵🅅 Network Class: Regional"},{"key":"network","value":"ncn","description":"🄵🅅 Network Class: National"},{"key":"network","value":"icn","description":"🄵🅅 Network Class: International"},{"key":"nat_name","description":"🄵 National Name"},{"key":"name","description":"🄵 Name"},{"key":"museum","description":"🄵 Type"},{"key":"mooring","description":"🄵 Mooring"},{"key":"mooring","value":"yes","description":"🄵🅅 Mooring: Yes"},{"key":"mooring","value":"no","description":"🄵🅅 Mooring: No"},{"key":"mooring","value":"private","description":"🄵🅅 Mooring: Private"},{"key":"mooring","value":"commercial","description":"🄵🅅 Mooring: Commercial"},{"key":"mooring","value":"guest","description":"🄵🅅 Mooring: Guests"},{"key":"monitoring:","description":"🄵 Monitoring"},{"key":"model","description":"🄵 Model"},{"key":"mobile","description":"🄵 Mobile Phone"},{"key":"contact:mobile","description":"🄵 Mobile Phone"},{"key":"minspeed","description":"🄵 Minimum Speed Limit"},{"key":"min_height","description":"🄵 Height of Bottom (Meters)"},{"key":"min_age","description":"🄵 Minimum Age"},{"key":"mimics","description":"🄵 Mimics"},{"key":"military_service","description":"🄵 Military Service"},{"key":"military_service","value":"air_force","description":"🄵🅅 Military Service: Air Force"},{"key":"military_service","value":"army","description":"🄵🅅 Military Service: Army"},{"key":"military_service","value":"coast_guard","description":"🄵🅅 Military Service: Coast Guard"},{"key":"military_service","value":"marines","description":"🄵🅅 Military Service: Marines"},{"key":"microbrewery","description":"🄵 Microbrewery"},{"key":"message","description":"🄵 Message"},{"key":"memorial","description":"🄵 Type"},{"key":"memorial","value":"bust","description":"🄵🅅 Type: Bust"},{"key":"memorial","value":"cross","description":"🄵🅅 Type: Memorial Cross"},{"key":"memorial","value":"ghost_bike","description":"🄵🅅 Type: Ghost Bike"},{"key":"memorial","value":"obelisk","description":"🄵🅅 Type: Obelisk"},{"key":"memorial","value":"sculpture","description":"🄵🅅 Type: Sculpture"},{"key":"memorial","value":"statue","description":"🄵🅅 Type: Statue"},{"key":"memorial","value":"stele","description":"🄵🅅 Type: Stele"},{"key":"memorial","value":"stone","description":"🄵🅅 Type: Stone"},{"key":"memorial","value":"war_memorial","description":"🄵🅅 Type: War Memorial"},{"key":"maxwidth","description":"🄵 Width Limit"},{"key":"maxweight","description":"🄵 Weight Limit"},{"key":"maxstay","description":"🄵 Time Limit"},{"key":"maxstay","value":"15 minutes","description":"🄵🅅 Time Limit: `15 minutes`"},{"key":"maxstay","value":"30 minutes","description":"🄵🅅 Time Limit: `30 minutes`"},{"key":"maxstay","value":"45 minutes","description":"🄵🅅 Time Limit: `45 minutes`"},{"key":"maxstay","value":"1 hour","description":"🄵🅅 Time Limit: `1 hour`"},{"key":"maxstay","value":"1.5 hours","description":"🄵🅅 Time Limit: `1.5 hours`"},{"key":"maxstay","value":"2 hours","description":"🄵🅅 Time Limit: `2 hours`"},{"key":"maxstay","value":"2.5 hours","description":"🄵🅅 Time Limit: `2.5 hours`"},{"key":"maxstay","value":"3 hours","description":"🄵🅅 Time Limit: `3 hours`"},{"key":"maxstay","value":"4 hours","description":"🄵🅅 Time Limit: `4 hours`"},{"key":"maxstay","value":"1 day","description":"🄵🅅 Time Limit: `1 day`"},{"key":"maxstay","value":"2 days","description":"🄵🅅 Time Limit: `2 days`"},{"key":"maxspeed","description":"🄵 Speed Limit"},{"key":"maxlength","description":"🄵 Length Limit"},{"key":"maxheight","description":"🄵 Height Limit"},{"key":"maxaxleload","description":"🄵 Axle Weight Limit"},{"key":"max_age","description":"🄵 Maximum Age"},{"key":"mattress","description":"🄵 Mattresses Available"},{"key":"material","description":"🄵 Material"},{"key":"material","value":"adobe","description":"🄵🅅 Material: Adobe"},{"key":"material","value":"aluminium","description":"🄵🅅 Material: Aluminum"},{"key":"material","value":"brass","description":"🄵🅅 Material: Brass"},{"key":"material","value":"brick","description":"🄵🅅 Material: Brick"},{"key":"material","value":"bronze","description":"🄵🅅 Material: Bronze"},{"key":"material","value":"concrete","description":"🄵🅅 Material: Concrete"},{"key":"material","value":"dry_stone","description":"🄵🅅 Material: Dry Stone"},{"key":"material","value":"glass","description":"🄵🅅 Material: Glass"},{"key":"material","value":"granite","description":"🄵🅅 Material: Granite"},{"key":"material","value":"iron","description":"🄵🅅 Material: Iron"},{"key":"material","value":"limestone","description":"🄵🅅 Material: Limestone"},{"key":"material","value":"marble","description":"🄵🅅 Material: Marble"},{"key":"material","value":"metal","description":"🄵🅅 Material: Metal"},{"key":"material","value":"plastic","description":"🄵🅅 Material: Plastic"},{"key":"material","value":"reinforced_concrete","description":"🄵🅅 Material: Reinforced Concrete"},{"key":"material","value":"rock","description":"🄵🅅 Material: Rock"},{"key":"material","value":"sand","description":"🄵🅅 Material: Sand"},{"key":"material","value":"sandstone","description":"🄵🅅 Material: Sandstone"},{"key":"material","value":"soil","description":"🄵🅅 Material: Soil, Earth"},{"key":"material","value":"steel","description":"🄵🅅 Material: Steel"},{"key":"material","value":"stone","description":"🄵🅅 Material: Stone"},{"key":"material","value":"wood","description":"🄵🅅 Material: Wood"},{"key":"marker","value":"aerial","description":"🄵🅅 Type: `aerial`"},{"key":"marker","value":"ground","description":"🄵🅅 Type: `ground`"},{"key":"marker","value":"pedestal","description":"🄵🅅 Type: `pedestal`"},{"key":"marker","value":"plate","description":"🄵🅅 Type: `plate`"},{"key":"marker","value":"post","description":"🄵🅅 Type: `post`"},{"key":"marker","value":"stone","description":"🄵🅅 Type: `stone`"},{"key":"mapillary","description":"🄵 Mapillary Image ID"},{"key":"map_type","description":"🄵 Type"},{"key":"map_type","value":"topo","description":"🄵🅅 Type: Topographical Map"},{"key":"map_type","value":"street","description":"🄵🅅 Type: Road Map"},{"key":"map_type","value":"scheme","description":"🄵🅅 Type: Schematic Map"},{"key":"map_type","value":"toposcope","description":"🄵🅅 Type: Toposcope"},{"key":"map_size","description":"🄵 Coverage"},{"key":"manufacturer","description":"🄵 Manufacturer"},{"key":"manhole","description":"🄵 Type"},{"key":"locked","description":"🄵 Locked"},{"key":"lockable","description":"🄵 Lockable"},{"key":"lock","description":"🄵 Lock"},{"key":"location","description":"🄵 Location"},{"key":"location","value":"outdoor","description":"🄵🅅 Location: Outdoor"},{"key":"location","value":"indoor","description":"🄵🅅 Location: Indoor"},{"key":"loc_name","description":"🄵 Local Name"},{"key":"lit","description":"🄵 Lit"},{"key":"line_management","description":"🄵 Line Management"},{"key":"line_attachment","description":"🄵 Line Attachment"},{"key":"lifeguard","description":"🄵 Lifeguard, 🄵 Type"},{"key":"license_classes","description":"🄵 Classes of Driver’s License"},{"key":"liaison","description":"🄵 Type"},{"key":"level","description":"🄵 Levels, 🄵 Level"},{"key":"length","description":"🄵 Length (Meters)"},{"key":"leaf_type","description":"🄵 Leaf Type"},{"key":"leaf_type","value":"leafless","description":"🄵🅅 Leaf Type: Leafless"},{"key":"leaf_type","value":"mixed","description":"🄵🅅 Leaf Type: Mixed"},{"key":"leaf_cycle","description":"🄵 Leaf Cycle"},{"key":"leaf_cycle","value":"semi_evergreen","description":"🄵🅅 Leaf Cycle: Semi-Evergreen"},{"key":"leaf_cycle","value":"semi_deciduous","description":"🄵🅅 Leaf Cycle: Semi-Deciduous"},{"key":"leaf_cycle","value":"mixed","description":"🄵🅅 Leaf Cycle: Mixed"},{"key":"layer","description":"🄵 Layer"},{"key":"language:","description":"🄵 Languages"},{"key":"lanes","description":"🄵 Lanes"},{"key":"lane_markings","description":"🄵 Lane Markings"},{"key":"lamp_type","description":"🄵 Type"},{"key":"lamp_mount","description":"🄵 Mount"},{"key":"label","description":"🄵 Label"},{"key":"kneipp_water_cure:","description":"🄵 Basin Types"},{"key":"kneipp_water_cure:foot","description":"🄵🅅 Basin Types: Foot Basin"},{"key":"kneipp_water_cure:arm","description":"🄵🅅 Basin Types: Arm Basin"},{"key":"kneipp_water_cure:face","description":"🄵🅅 Basin Types: Face Basin"},{"key":"kitchen","description":"🄵 Kitchen"},{"key":"kerb","description":"🄵 Curb, 🄵 Type"},{"key":"kerb","value":"no","description":"🄵🅅 Curb: `no`"},{"key":"kerb","value":"yes","description":"🄵🅅 Curb: `yes`"},{"key":"junction","description":"🄵 Junction"},{"key":"junction","value":"roundabout","description":"🄵🅅 Junction: Roundabout"},{"key":"junction","value":"circular","description":"🄵🅅 Junction: Traffic Circle"},{"key":"junction","value":"jughandle","description":"🄵🅅 Junction: Jughandle"},{"key":"irrigation","description":"🄵 Center-Pivot Irrigation"},{"key":"irrigation","value":"pivot","description":"🄵🅅 Center-Pivot Irrigation: Yes"},{"key":"interval","description":"🄵 Interval"},{"key":"internet_access","description":"🄵 Internet Connection"},{"key":"internet_access","value":"yes","description":"🄵🅅 Internet Connection: Yes"},{"key":"internet_access","value":"no","description":"🄵🅅 Internet Connection: No"},{"key":"internet_access","value":"wired","description":"🄵🅅 Internet Connection: Wired"},{"key":"internet_access","value":"terminal","description":"🄵🅅 Internet Connection: Terminal"},{"key":"intermittent","description":"🄵 Intermittent"},{"key":"inscription","description":"🄵 Inscription"},{"key":"information","description":"🄵 Type"},{"key":"informal","description":"🄵 Informal"},{"key":"industrial","description":"🄵 Type"},{"key":"incline","description":"🄵 Incline"},{"key":"incline","value":"up","description":"🄵🅅 Incline: Up"},{"key":"incline","value":"down","description":"🄵🅅 Incline: Down"},{"key":"image","description":"🄵 Image"},{"key":"icao","description":"🄵 ICAO Airport Code"},{"key":"iata","description":"🄵 IATA Airport Code"},{"key":"house","description":"🄵 House Type"},{"key":"house","value":"bungalow","description":"🄵🅅 House Type: `bungalow`"},{"key":"house","value":"link-detached","description":"🄵🅅 House Type: `link-detached`"},{"key":"house","value":"maisonette","description":"🄵🅅 House Type: `maisonette`"},{"key":"hot_water","description":"🄵 Hot Water"},{"key":"horse_scale","description":"🄵 Horseback Riding Difficulty"},{"key":"horse_scale","value":"common","description":"🄵🅅 Horseback Riding Difficulty: Easy: No problems or difficulties. (default)"},{"key":"horse_scale","value":"demanding","description":"🄵🅅 Horseback Riding Difficulty: Use with caution: Uneven way, occasional difficult passages."},{"key":"horse_scale","value":"difficult","description":"🄵🅅 Horseback Riding Difficulty: Difficult: Way narrow and exposed. May contain obstacles to step over and narrow passages."},{"key":"horse_scale","value":"critical","description":"🄵🅅 Horseback Riding Difficulty: Borderline: Passable only for experienced riders and horses. Major obstacles. Bridges should be examined carefully."},{"key":"horse_scale","value":"dangerous","description":"🄵🅅 Horseback Riding Difficulty: Dangerous: Passable only for very experienced riders and horses and only in good weather. Dismount."},{"key":"horse_scale","value":"impossible","description":"🄵🅅 Horseback Riding Difficulty: Impassable: Way or bridge not passable for horses. Too narrow, insufficient support, obstacles like ladders. Danger of life."},{"key":"hoops","description":"🄵 Hoops"},{"key":"historic","value":"bomb_crater","description":"🄵🅅 Type: Bomb Crater"},{"key":"historic","value":"building","description":"🄵🅅 Type: Historic Building"},{"key":"historic","value":"charcoal_pile","description":"🄵🅅 Type: Charcoal Pile"},{"key":"historic","value":"church","description":"🄵🅅 Type: Church"},{"key":"historic","value":"citywalls","description":"🄵🅅 Type: Citywall"},{"key":"historic","value":"milestone","description":"🄵🅅 Type: Milestone"},{"key":"historic","value":"millstone","description":"🄵🅅 Type: Millstone"},{"key":"historic","value":"mine","description":"🄵🅅 Type: Mine"},{"key":"historic","value":"mine_shaft","description":"🄵🅅 Type: Mine Shaft"},{"key":"historic","value":"railway","description":"🄵🅅 Type: Railway"},{"key":"historic","value":"shieling","description":"🄵🅅 Type: Shieling"},{"key":"highspeed","description":"🄵 High-Speed"},{"key":"highchair","description":"🄵 High Chair"},{"key":"height","description":"🄵 Building Height (Meters), 🄵 Height (Meters)"},{"key":"heating","description":"🄵 Heating"},{"key":"healthcare","value":"blood_bank","description":"🄵🅅 Type: Blood Bank"},{"key":"healthcare","value":"clinic","description":"🄵🅅 Type: Clinic"},{"key":"healthcare","value":"community_health_worker","description":"🄵🅅 Type: Community Health Worker"},{"key":"healthcare","value":"dentist","description":"🄵🅅 Type: Dentist"},{"key":"healthcare","value":"doctor","description":"🄵🅅 Type: Doctor"},{"key":"healthcare","value":"hospital","description":"🄵🅅 Type: Hospital"},{"key":"healthcare","value":"nurse","description":"🄵🅅 Type: Nurse"},{"key":"healthcare","value":"pharmacy","description":"🄵🅅 Type: Pharmacy"},{"key":"healthcare","value":"vaccination_centre","description":"🄵🅅 Type: Vaccination Center"},{"key":"hazard","description":"🄵 Hazard"},{"key":"hazard","value":"archery_range","description":"🄵🅅 Hazard: Arrows"},{"key":"hazard","value":"avalanche","description":"🄵🅅 Hazard: Avalanche"},{"key":"hazard","value":"biohazard","description":"🄵🅅 Hazard: Biohazard"},{"key":"hazard","value":"contamination","description":"🄵🅅 Hazard: Chemical Contamination"},{"key":"hazard","value":"electricity","description":"🄵🅅 Hazard: Electric Shock"},{"key":"hazard","value":"shooting_range","description":"🄵🅅 Hazard: Gunfire"},{"key":"hazard","value":"hole","description":"🄵🅅 Hazard: Hole"},{"key":"hazard","value":"minefield","description":"🄵🅅 Hazard: Land Mines"},{"key":"hazard","value":"nuclear","description":"🄵🅅 Hazard: Nuclear / Radioactive"},{"key":"hazard","value":"quicksand","description":"🄵🅅 Hazard: Quicksand"},{"key":"hashtags","description":"🄵 Hashtags"},{"key":"handrest","description":"🄵 Handrest"},{"key":"handrail","description":"🄵 Handrail"},{"key":"handicap","description":"🄵 Handicap"},{"key":"guest_house","description":"🄵 Type"},{"key":"group_only","description":"🄵 Groups Only"},{"key":"grape_variety","description":"🄵 Grape Varieties"},{"key":"grades","description":"🄵 Grade Levels"},{"key":"government","description":"🄵 Type"},{"key":"genus","description":"🄵 Genus"},{"key":"female","description":"🄵 Gender"},{"key":"male","description":"🄵 Gender"},{"key":"unisex","description":"🄵 Gender"},{"key":"gauge","description":"🄵 Gauge"},{"key":"gambling","description":"🄵 Games"},{"key":"fuel","description":"🄵 Fuel"},{"key":"from","description":"🄵 From"},{"key":"frequency","description":"🄵 Operating Frequency"},{"key":"fountain","description":"🄵 Type"},{"key":"fortification_type","description":"🄵 Fortification Type"},{"key":"footrest","description":"🄵 Footrest"},{"key":"flood_prone","description":"🄵 Flood Prone"},{"key":"floating","description":"🄵 Floating"},{"key":"flashing_lights","description":"🄵 Flashing Lights"},{"key":"flashing_lights","value":"button","description":"🄵🅅 Flashing Lights: `button`"},{"key":"flashing_lights","value":"always","description":"🄵🅅 Flashing Lights: `always`"},{"key":"flashing_lights","value":"sensor","description":"🄵🅅 Flashing Lights: `sensor`"},{"key":"flashing_lights","value":"button;sensor","description":"🄵🅅 Flashing Lights: `button;sensor`"},{"key":"flashing_lights","value":"no","description":"🄵🅅 Flashing Lights: No"},{"key":"flashing_lights","value":"yes","description":"🄵🅅 Flashing Lights: Yes"},{"key":"fixme","description":"🄵 Fix Me"},{"key":"fitness_station","description":"🄵 Equipment Type"},{"key":"fishing","description":"🄵 Fishing"},{"key":"fireplace","description":"🄵 Fireplace"},{"key":"fire_sprinkler","description":"🄵 Fire Sprinkler Inlet"},{"key":"fire_sprinkler","value":"dry","description":"🄵🅅 Fire Sprinkler Inlet: Dedicated Network (Normally Dry)"},{"key":"fire_sprinkler","value":"wet","description":"🄵🅅 Fire Sprinkler Inlet: Connected to Mains (Permanently Filled)"},{"key":"fire_sprinkler","value":"pre-action","description":"🄵🅅 Fire Sprinkler Inlet: Connected to Mains (Pre-Action System)"},{"key":"fire_sprinkler","value":"yes","description":"🄵🅅 Fire Sprinkler Inlet: Unknown Type"},{"key":"fire_sprinkler","value":"no","description":"🄵🅅 Fire Sprinkler Inlet: No"},{"key":"fire_service_inlet","description":"🄵 Shape"},{"key":"fire_service_inlet","value":"pillar","description":"🄵🅅 Shape: Pillar/Aboveground"},{"key":"fire_service_inlet","value":"underground","description":"🄵🅅 Shape: Underground"},{"key":"fire_service_inlet","value":"wall","description":"🄵🅅 Shape: Wall"},{"key":"fire_service_inlet","value":"pipe","description":"🄵🅅 Shape: Capped Pipe"},{"key":"fire_mains","description":"🄵 Network-Type"},{"key":"fire_mains","value":"dry","description":"🄵🅅 Network-Type: Dedicated Network (Normally Dry)"},{"key":"fire_mains","value":"wet","description":"🄵🅅 Network-Type: Connected to Mains (Permanently Filled)"},{"key":"fire_mains","value":"yes","description":"🄵🅅 Network-Type: Unknown Type"},{"key":"fire_mains","value":"no","description":"🄵🅅 Network-Type: No"},{"key":"fence_type","description":"🄵 Type"},{"key":"fee","description":"🄵 Fee"},{"key":"fax","description":"🄵 Fax"},{"key":"contact:fax","description":"🄵 Fax"},{"key":"faces","description":"🄵 Faces"},{"key":"expressway","description":"🄵 Expressway"},{"key":"expected_rwn_route_relations","description":"🄵 Adjacent Walking Nodes"},{"key":"expected_rcn_route_relations","description":"🄵 Adjacent Cycling Nodes"},{"key":"except","description":"🄵 Exceptions"},{"key":"entrance","value":"yes","description":"🄵🅅 Type: Unspecified"},{"key":"entrance","value":"secondary","description":"🄵🅅 Type: Secondary"},{"key":"entrance","value":"service","description":"🄵🅅 Type: Service"},{"key":"entrance","value":"exit","description":"🄵🅅 Type: Exit Only"},{"key":"entrance","value":"entrance","description":"🄵🅅 Type: Entrance Only"},{"key":"entrance","value":"home","description":"🄵🅅 Type: Private House or Apartment"},{"key":"entrance","value":"garage","description":"🄵🅅 Type: Garage Door"},{"key":"enforcement","description":"🄵 Type"},{"key":"emergency_ward_entrance","description":"🄵 Type"},{"key":"embassy","description":"🄵 Type"},{"key":"embassy","value":"yes","description":"🄵🅅 Type: Embassy"},{"key":"embassy","value":"residence","description":"🄵🅅 Type: Official Residence of an Ambassador"},{"key":"embassy","value":"high_commission","description":"🄵🅅 Type: High Commission"},{"key":"embassy","value":"mission","description":"🄵🅅 Type: Diplomatic Mission"},{"key":"embassy","value":"branch_embassy","description":"🄵🅅 Type: Branch of an Embassy"},{"key":"embassy","value":"nunciature","description":"🄵🅅 Type: Diplomatic Mission of the Holy See"},{"key":"embassy","value":"delegation","description":"🄵🅅 Type: Delegation"},{"key":"embassy","value":"interests_section","description":"🄵🅅 Type: Interests Section"},{"key":"email","description":"🄵 Email"},{"key":"contact:email","description":"🄵 Email"},{"key":"electrified","description":"🄵 Electrification"},{"key":"electrified","value":"contact_line","description":"🄵🅅 Electrification: Contact Line"},{"key":"electrified","value":"rail","description":"🄵🅅 Electrification: Electrified Rail"},{"key":"electrified","value":"yes","description":"🄵🅅 Electrification: Yes (unspecified)"},{"key":"electrified","value":"no","description":"🄵🅅 Electrification: No"},{"key":"ele","description":"🄵 Elevation (Meters)"},{"key":"education","value":"college","description":"🄵🅅 Type: College"},{"key":"education","value":"dancing_school","description":"🄵🅅 Type: Dancing School"},{"key":"education","value":"driving_school","description":"🄵🅅 Type: Driving School"},{"key":"education","value":"kindergarten","description":"🄵🅅 Type: Kindergarten"},{"key":"education","value":"language_school","description":"🄵🅅 Type: Language School"},{"key":"education","value":"music_school","description":"🄵🅅 Type: Music School"},{"key":"education","value":"prep_school","description":"🄵🅅 Type: Test Prep / Tutoring School"},{"key":"education","value":"school","description":"🄵🅅 Type: School"},{"key":"education","value":"university","description":"🄵🅅 Type: University"},{"key":"duration","description":"🄵 Duration"},{"key":"drive_through","description":"🄵 Drive-Through"},{"key":"drinking_water","description":"🄵 Drinking Water Available, 🄵 Drinkable"},{"key":"drink:","description":"🄵 Drinks"},{"key":"door","description":"🄵 Type, 🄵 Door"},{"key":"dog","description":"🄵 Dogs, 🄵 Suitable For Dogs"},{"key":"dog","value":"leashed","description":"🄵🅅 Dogs: Leashed Only"},{"key":"dog","value":"unleashed","description":"🄵🅅 Dogs: Leashes Not Required"},{"key":"dog","value":"yes","description":"🄵🅅 Dogs: Allowed"},{"key":"dog","value":"no","description":"🄵🅅 Dogs: Not Allowed"},{"key":"dock","description":"🄵 Type"},{"key":"dock","value":"drydock","description":"🄵🅅 Type: Dry Dock"},{"key":"dock","value":"floating","description":"🄵🅅 Type: Floating Dry Dock"},{"key":"dock","value":"tidal","description":"🄵🅅 Type: Impounded Tidal Dock"},{"key":"distance","description":"🄵 Distance"},{"key":"display","description":"🄵 Display"},{"key":"display","value":"analog","description":"🄵🅅 Display: Analog"},{"key":"display","value":"digital","description":"🄵🅅 Display: Digital"},{"key":"display","value":"unorthodox","description":"🄵🅅 Display: Unorthodox"},{"key":"dispensing","description":"🄵 Dispenses Prescriptions"},{"key":"direction","description":"🄵 Direction Affected, 🄵 Direction (Degrees Clockwise), 🄵 Direction"},{"key":"direction","value":"forward","description":"🄵🅅 Direction Affected: Forward"},{"key":"direction","value":"backward","description":"🄵🅅 Direction Affected: Backward"},{"key":"direction","value":"both","description":"🄵🅅 Direction Affected: Both / All"},{"key":"direction","value":"clockwise","description":"🄵🅅 Direction: Clockwise"},{"key":"direction","value":"anticlockwise","description":"🄵🅅 Direction: Counterclockwise"},{"key":"direction","value":"north","description":"🄵🅅 Direction: Northbound"},{"key":"direction","value":"south","description":"🄵🅅 Direction: Southbound"},{"key":"direction","value":"east","description":"🄵🅅 Direction: Eastbound"},{"key":"direction","value":"west","description":"🄵🅅 Direction: Westbound"},{"key":"diplomatic","description":"🄵 Type"},{"key":"diet:","description":"🄵 Diet Types"},{"key":"diet:vegetarian","description":"🄵🅅 Diet Types: Vegetarian"},{"key":"diet:vegan","description":"🄵🅅 Diet Types: Vegan"},{"key":"diet:halal","description":"🄵🅅 Diet Types: Halal"},{"key":"diet:gluten_free","description":"🄵🅅 Diet Types: Gluten-Free"},{"key":"diet:kosher","description":"🄵🅅 Diet Types: Kosher"},{"key":"diet:lactose_free","description":"🄵🅅 Diet Types: Lactose-Free"},{"key":"diet:pescetarian","description":"🄵🅅 Diet Types: Pescetarian"},{"key":"diameter_crown","description":"🄵 Crown Diameter"},{"key":"diameter","description":"🄵 Diameter"},{"key":"devices","description":"🄵 Devices"},{"key":"destination","description":"🄵 Destination, 🄵 Destinations"},{"key":"design","description":"🄵 Design"},{"key":"description","description":"🄵 Description"},{"key":"descent","description":"🄵 Total Descent"},{"key":"depth","description":"🄵 Depth (Meters)"},{"key":"depot","description":"🄵 Type"},{"key":"departures_board","description":"🄵 Departures/Arrivals Board"},{"key":"departures_board","value":"yes","description":"🄵🅅 Departures/Arrivals Board: Yes"},{"key":"departures_board","value":"timetable","description":"🄵🅅 Departures/Arrivals Board: Timetable"},{"key":"departures_board","value":"realtime","description":"🄵🅅 Departures/Arrivals Board: Realtime"},{"key":"departures_board","value":"no","description":"🄵🅅 Departures/Arrivals Board: None"},{"key":"denotation","description":"🄵 Denotation"},{"key":"denomination","description":"🄵 Denomination"},{"key":"delivery","description":"🄵 Delivery"},{"key":"deflection","description":"🄵 Angle"},{"key":"date","description":"🄵 Date"},{"key":"cycleway:left","description":"🄵 Bike Lanes"},{"key":"cycleway:left","value":"no","description":"🄵🅅 Bike Lanes: `no`"},{"key":"cycleway:left","value":"lane","description":"🄵🅅 Bike Lanes: `lane`"},{"key":"cycleway:left","value":"shared_lane","description":"🄵🅅 Bike Lanes: `shared_lane`"},{"key":"cycleway:left","value":"track","description":"🄵🅅 Bike Lanes: `track`"},{"key":"cycleway:left","value":"share_busway","description":"🄵🅅 Bike Lanes: `share_busway`"},{"key":"cycleway:left","value":"separate","description":"🄵🅅 Bike Lanes: `separate`"},{"key":"cycleway:left","value":"opposite_lane","description":"🄵🅅 Bike Lanes: `opposite_lane`"},{"key":"cycleway:left","value":"opposite","description":"🄵🅅 Bike Lanes: `opposite`, 🄳 (deprecated tag) ➜ oneway:bicycle=no + cycleway:left=no"},{"key":"cycleway:right","description":"🄵 Bike Lanes"},{"key":"cycleway:right","value":"no","description":"🄵🅅 Bike Lanes: `no`"},{"key":"cycleway:right","value":"lane","description":"🄵🅅 Bike Lanes: `lane`"},{"key":"cycleway:right","value":"shared_lane","description":"🄵🅅 Bike Lanes: `shared_lane`"},{"key":"cycleway:right","value":"track","description":"🄵🅅 Bike Lanes: `track`"},{"key":"cycleway:right","value":"share_busway","description":"🄵🅅 Bike Lanes: `share_busway`"},{"key":"cycleway:right","value":"separate","description":"🄵🅅 Bike Lanes: `separate`"},{"key":"cycleway:right","value":"opposite_lane","description":"🄵🅅 Bike Lanes: `opposite_lane`"},{"key":"cycleway:right","value":"opposite","description":"🄵🅅 Bike Lanes: `opposite`"},{"key":"cyclestreet","description":"🄵 Cycle Street"},{"key":"cycle_network","description":"🄵 Network"},{"key":"cycle_barrier","description":"🄵 Type"},{"key":"cycle_barrier","value":"single","description":"🄵🅅 Type: Single"},{"key":"cycle_barrier","value":"double","description":"🄵🅅 Type: Double"},{"key":"cycle_barrier","value":"triple","description":"🄵🅅 Type: Triple"},{"key":"cycle_barrier","value":"diagonal","description":"🄵🅅 Type: Diagonal"},{"key":"cycle_barrier","value":"tilted","description":"🄵🅅 Type: Tilted"},{"key":"currency:","description":"🄵 Currency Types"},{"key":"cuisine","description":"🄵 Cuisines"},{"key":"cuisine","value":"regional","description":"🄵🅅 Cuisines: Regional"},{"key":"cuisine","value":"breakfast","description":"🄵🅅 Cuisines: Breakfast"},{"key":"cuisine","value":"fish","description":"🄵🅅 Cuisines: Fish"},{"key":"cuisine","value":"cake","description":"🄵🅅 Cuisines: Cake"},{"key":"cuisine","value":"pasta","description":"🄵🅅 Cuisines: Pasta"},{"key":"cuisine","value":"tex-mex","description":"🄵🅅 Cuisines: Tex-Mex"},{"key":"cuisine","value":"mediterranean","description":"🄵🅅 Cuisines: Mediterranean"},{"key":"cuisine","value":"friture","description":"🄵🅅 Cuisines: Friterie"},{"key":"cuisine","value":"grill","description":"🄵🅅 Cuisines: Bar and Grill"},{"key":"cuisine","value":"salad","description":"🄵🅅 Cuisines: Salad"},{"key":"cuisine","value":"crepe","description":"🄵🅅 Cuisines: Crepe"},{"key":"cuisine","value":"pancake","description":"🄵🅅 Cuisines: Pancake"},{"key":"cuisine","value":"dessert","description":"🄵🅅 Cuisines: Dessert"},{"key":"cuisine","value":"diner","description":"🄵🅅 Cuisines: Diner"},{"key":"cuisine","value":"tapas","description":"🄵🅅 Cuisines: Tapas"},{"key":"cuisine","value":"portuguese","description":"🄵🅅 Cuisines: Portuguese"},{"key":"cuisine","value":"beef_bowl","description":"🄵🅅 Cuisines: Gyūdon"},{"key":"cuisine","value":"russian","description":"🄵🅅 Cuisines: Russian"},{"key":"cuisine","value":"indonesian","description":"🄵🅅 Cuisines: Indonesian"},{"key":"cuisine","value":"lebanese","description":"🄵🅅 Cuisines: Lebanese"},{"key":"cuisine","value":"arab","description":"🄵🅅 Cuisines: Arab"},{"key":"cuisine","value":"curry","description":"🄵🅅 Cuisines: Curry"},{"key":"cuisine","value":"malaysian","description":"🄵🅅 Cuisines: Malaysian"},{"key":"cuisine","value":"polish","description":"🄵🅅 Cuisines: Polish"},{"key":"cuisine","value":"african","description":"🄵🅅 Cuisines: African"},{"key":"cuisine","value":"western","description":"🄵🅅 Cuisines: Western"},{"key":"cuisine","value":"sausage","description":"🄵🅅 Cuisines: Sausage"},{"key":"cuisine","value":"filipino","description":"🄵🅅 Cuisines: Filipino"},{"key":"cuisine","value":"caribbean","description":"🄵🅅 Cuisines: Caribbean"},{"key":"cuisine","value":"soba","description":"🄵🅅 Cuisines: Soba"},{"key":"cuisine","value":"peruvian","description":"🄵🅅 Cuisines: Peruvian"},{"key":"cuisine","value":"brazilian","description":"🄵🅅 Cuisines: Brazilian"},{"key":"cuisine","value":"oriental","description":"🄵🅅 Cuisines: Oriental"},{"key":"cuisine","value":"fine_dining","description":"🄵🅅 Cuisines: Fine Dining"},{"key":"cuisine","value":"argentinian","description":"🄵🅅 Cuisines: Argentinian"},{"key":"cuisine","value":"balkan","description":"🄵🅅 Cuisines: Balkan"},{"key":"cuisine","value":"bavarian","description":"🄵🅅 Cuisines: Bavarian"},{"key":"cuisine","value":"shawarma","description":"🄵🅅 Cuisines: Shawarma"},{"key":"cuisine","value":"persian","description":"🄵🅅 Cuisines: Persian"},{"key":"cuisine","value":"middle_eastern","description":"🄵🅅 Cuisines: Middle Eastern"},{"key":"cuisine","value":"pastry","description":"🄵🅅 Cuisines: Pastry"},{"key":"cuisine","value":"soup","description":"🄵🅅 Cuisines: Soup"},{"key":"cuisine","value":"fries","description":"🄵🅅 Cuisines: Fries"},{"key":"cuisine","value":"taiwanese","description":"🄵🅅 Cuisines: Taiwanese"},{"key":"cuisine","value":"bistro","description":"🄵🅅 Cuisines: Bistro"},{"key":"cuisine","value":"european","description":"🄵🅅 Cuisines: European"},{"key":"cuisine","value":"moroccan","description":"🄵🅅 Cuisines: Moroccan"},{"key":"cuisine","value":"hawaiian","description":"🄵🅅 Cuisines: Hawaiian"},{"key":"cuisine","value":"brunch","description":"🄵🅅 Cuisines: Brunch"},{"key":"cuisine","value":"udon","description":"🄵🅅 Cuisines: Udon"},{"key":"crossing","description":"🄵 Type"},{"key":"crop","description":"🄵 Crops"},{"key":"crop","value":"asparagus","description":"🄵🅅 Crops: Asparagus"},{"key":"crop","value":"barley","description":"🄵🅅 Crops: Barley"},{"key":"crop","value":"beet","description":"🄵🅅 Crops: Beets"},{"key":"crop","value":"cassava","description":"🄵🅅 Crops: Cassava"},{"key":"crop","value":"coffee","description":"🄵🅅 Crops: Coffee"},{"key":"crop","value":"cotton","description":"🄵🅅 Crops: Cotton"},{"key":"crop","value":"cranberries","description":"🄵🅅 Crops: Cranberries"},{"key":"crop","value":"fast_growing_wood","description":"🄵🅅 Crops: Short-Rotation Coppice"},{"key":"crop","value":"flowers","description":"🄵🅅 Crops: Flowers"},{"key":"crop","value":"grape","description":"🄵🅅 Crops: Grapes"},{"key":"crop","value":"grass","description":"🄵🅅 Crops: Grass"},{"key":"crop","value":"hop","description":"🄵🅅 Crops: Hops"},{"key":"crop","value":"lavender","description":"🄵🅅 Crops: Lavender"},{"key":"crop","value":"maize","description":"🄵🅅 Crops: Corn"},{"key":"crop","value":"potato","description":"🄵🅅 Crops: Potatoes"},{"key":"crop","value":"rape","description":"🄵🅅 Crops: Rapeseed"},{"key":"crop","value":"rice","description":"🄵🅅 Crops: Rice"},{"key":"crop","value":"strawberry","description":"🄵🅅 Crops: Strawberries"},{"key":"crop","value":"sugar_beet","description":"🄵🅅 Crops: Sugar Beets"},{"key":"crop","value":"sugarcane","description":"🄵🅅 Crops: Sugarcane"},{"key":"crop","value":"sunflower","description":"🄵🅅 Crops: Sunflowers"},{"key":"crop","value":"soy","description":"🄵🅅 Crops: Soybeans"},{"key":"crop","value":"tea","description":"🄵🅅 Crops: Tea"},{"key":"crop","value":"tobacco","description":"🄵🅅 Crops: Tobacco"},{"key":"crop","value":"vegetable","description":"🄵🅅 Crops: Vegetables"},{"key":"crop","value":"wheat","description":"🄵🅅 Crops: Wheat"},{"key":"craft","value":"builder","description":"🄵🅅 Type: Builder"},{"key":"craft","value":"grinding_mill","description":"🄵🅅 Type: Grinding Mill"},{"key":"craft","value":"jeweller","description":"🄵🅅 Type: Jeweller"},{"key":"craft","value":"oil_mill","description":"🄵🅅 Type: Oil Mill"},{"key":"covered","description":"🄵 Covered"},{"key":"covered","value":"yes","description":"🄵🅅 Covered: Yes"},{"key":"covered","value":"no","description":"🄵🅅 Covered: No"},{"key":"couplings","description":"🄵 Couplings"},{"key":"country","description":"🄵 Flag Country, 🄵 Country"},{"key":"count","description":"🄵 Number of Features"},{"key":"conveying","value":"forward","description":"🄵🅅 Movement Direction: Forward"},{"key":"conveying","value":"backward","description":"🄵🅅 Movement Direction: Backward"},{"key":"conveying","value":"reversible","description":"🄵🅅 Movement Direction: Reversible"},{"key":"content","description":"🄵 Content"},{"key":"content","value":"silage","description":"🄵🅅 Content: `silage`"},{"key":"content","value":"oil","description":"🄵🅅 Content: `oil`"},{"key":"content","value":"fuel","description":"🄵🅅 Content: `fuel`"},{"key":"content","value":"slurry","description":"🄵🅅 Content: `slurry`"},{"key":"content","value":"gas","description":"🄵🅅 Content: `gas`"},{"key":"content","value":"manure","description":"🄵🅅 Content: `manure`"},{"key":"content","value":"sewage","description":"🄵🅅 Content: `sewage`"},{"key":"consulting","description":"🄵 Expertise"},{"key":"consulate","description":"🄵 Type"},{"key":"consulate","value":"consulate_general","description":"🄵🅅 Type: Consulate General"},{"key":"consulate","value":"honorary_consul","description":"🄵🅅 Type: Honorary Consul"},{"key":"consulate","value":"yes","description":"🄵🅅 Type: Consulate"},{"key":"consulate","value":"consular_office","description":"🄵🅅 Type: Consular Services Office"},{"key":"consulate","value":"consular_agency","description":"🄵🅅 Type: Consular Services Agency"},{"key":"consulate","value":"residence","description":"🄵🅅 Type: Official Residence of a Consul"},{"key":"construction","description":"🄵 Type"},{"key":"connectivity","description":"🄵 Connectivity"},{"key":"community_centre","description":"🄵 Type"},{"key":"communication:","description":"🄵 Communication Types"},{"key":"comment","description":"🄵 Changeset Comment"},{"key":"colour","description":"🄵 Color"},{"key":"collector","description":"🄵 Items"},{"key":"collector","value":"coins","description":"🄵🅅 Items: Coins"},{"key":"collector","value":"stamps","description":"🄵🅅 Items: Stamps"},{"key":"collector","value":"comics","description":"🄵🅅 Items: Comics"},{"key":"collection_times","description":"🄵 Collection Times"},{"key":"clothes","description":"🄵 Clothes"},{"key":"clothes","value":"babies","description":"🄵🅅 Clothes: Baby Clothing"},{"key":"clothes","value":"children","description":"🄵🅅 Clothes: Children's Clothing"},{"key":"clothes","value":"denim","description":"🄵🅅 Clothes: Jeans Clothing"},{"key":"clothes","value":"fur","description":"🄵🅅 Clothes: Fur Clothing"},{"key":"clothes","value":"hats","description":"🄵🅅 Clothes: Hats"},{"key":"clothes","value":"maternity","description":"🄵🅅 Clothes: Maternity Clothing"},{"key":"clothes","value":"men","description":"🄵🅅 Clothes: Men's Clothing"},{"key":"clothes","value":"motorcycle","description":"🄵🅅 Clothes: Motorcycle Clothing"},{"key":"clothes","value":"oversize","description":"🄵🅅 Clothes: Plus Size Clothing"},{"key":"clothes","value":"socks","description":"🄵🅅 Clothes: Socks"},{"key":"clothes","value":"sports","description":"🄵🅅 Clothes: Sportswear"},{"key":"clothes","value":"swimwear","description":"🄵🅅 Clothes: Swimwear"},{"key":"clothes","value":"traditional","description":"🄵🅅 Clothes: Traditional Garments / Folk Costumes"},{"key":"clothes","value":"women","description":"🄵🅅 Clothes: Women's Clothing"},{"key":"circumference","description":"🄵 Circumference (at Breast Height)"},{"key":"check_date","description":"🄵 Last Checked Date"},{"key":"charge","description":"🄵 Toll Amount, 🄵 Fee Amount"},{"key":"changing_table","description":"🄵 Diaper Changing Table"},{"key":"ceremonial_gate","description":"🄵 Type"},{"key":"ceremonial_gate","value":"hongsalmun","description":"🄵🅅 Type: Hongsalmun"},{"key":"ceremonial_gate","value":"iljumun","description":"🄵🅅 Type: Iljumun"},{"key":"castle_type","description":"🄵 Type"},{"key":"castle_type","value":"defensive","description":"🄵🅅 Type: Defensive Castle"},{"key":"castle_type","value":"manor","description":"🄵🅅 Type: Manor House"},{"key":"castle_type","value":"castrum","description":"🄵🅅 Type: Roman Fort"},{"key":"castle_type","value":"shiro","description":"🄵🅅 Type: Shiro"},{"key":"castle_type","value":"kremlin","description":"🄵🅅 Type: Kremlin"},{"key":"castle_type","value":"hillfort","description":"🄵🅅 Type: Hillfort"},{"key":"cash_in","description":"🄵 Deposits"},{"key":"caravans","description":"🄵 Campervan / Camping Trailer"},{"key":"capacity","description":"🄵 Capacity (Cubic Meters), 🄵 Total Spaces, 🄵 Capacity"},{"key":"camp_site","description":"🄵 Type"},{"key":"camp_site","value":"basic","description":"🄵🅅 Type: `basic`"},{"key":"camp_site","value":"standard","description":"🄵🅅 Type: `standard`"},{"key":"camp_site","value":"serviced","description":"🄵🅅 Type: `serviced`"},{"key":"camp_site","value":"deluxe","description":"🄵🅅 Type: `deluxe`"},{"key":"cai_scale","description":"🄵 Hiking Route Difficulty (Italian Alpine Club)"},{"key":"cai_scale","value":"T","description":"🄵🅅 Hiking Route Difficulty (Italian Alpine Club): T: Touristic"},{"key":"cai_scale","value":"E","description":"🄵🅅 Hiking Route Difficulty (Italian Alpine Club): E: For hikers"},{"key":"cai_scale","value":"EE","description":"🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EE: For expert hikers"},{"key":"cai_scale","value":"EEA","description":"🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EEA: For expert hikers with equipment"},{"key":"cai_scale","value":"EAI","description":"🄵🅅 Hiking Route Difficulty (Italian Alpine Club): EAI: Hiking in snowy conditions"},{"key":"cables","description":"🄵 Cables"},{"key":"cabins","description":"🄵 Cabins"},{"key":"button_operated","description":"🄵 Call Button"},{"key":"bunker_type","description":"🄵 Type"},{"key":"building","value":"container","description":"🄵🅅 Building: Container"},{"key":"bridge","value":"aqueduct","description":"🄵🅅 Type: Aqueduct"},{"key":"bridge","value":"cantilever","description":"🄵🅅 Type: Cantilever Bridge"},{"key":"bridge","value":"covered","description":"🄵🅅 Type: Covered Bridge"},{"key":"bridge","value":"low_water_crossing","description":"🄵🅅 Type: Low Water Crossing"},{"key":"bridge","value":"movable","description":"🄵🅅 Type: Movable Bridge"},{"key":"bridge","value":"trestle","description":"🄵🅅 Type: Trestle Bridge"},{"key":"bridge","value":"viaduct","description":"🄵🅅 Type: Viaduct"},{"key":"brewery","description":"🄵 Sold Beer brands"},{"key":"brand","description":"🄵 Brand"},{"key":"branch","description":"🄵 Branch"},{"key":"boules","description":"🄵 Type"},{"key":"bottle","description":"🄵 Bottle Filling"},{"key":"booth","description":"🄵 Booth"},{"key":"books","description":"🄵 Type of Books"},{"key":"bollard","description":"🄵 Type"},{"key":"bollard","value":"fixed","description":"🄵🅅 Type: Fixed Bollard"},{"key":"bollard","value":"flexible","description":"🄵🅅 Type: Flexible Bollard"},{"key":"bollard","value":"foldable","description":"🄵🅅 Type: Foldable Bollard"},{"key":"bollard","value":"removable","description":"🄵🅅 Type: Removable Bollard"},{"key":"bollard","value":"rising","description":"🄵🅅 Type: Rising Bollard"},{"key":"board_type","description":"🄵 Type"},{"key":"board_type","value":"art","description":"🄵🅅 Type: Art"},{"key":"board_type","value":"astronomy","description":"🄵🅅 Type: Astronomy"},{"key":"board_type","value":"geology","description":"🄵🅅 Type: Geology"},{"key":"board_type","value":"history","description":"🄵🅅 Type: History"},{"key":"board_type","value":"nature","description":"🄵🅅 Type: Nature"},{"key":"board_type","value":"notice","description":"🄵🅅 Type: Notice Board"},{"key":"board_type","value":"plants","description":"🄵🅅 Type: Plants"},{"key":"board_type","value":"wildlife","description":"🄵🅅 Type: Wildlife"},{"key":"blood:","description":"🄵 Blood Components"},{"key":"blood:whole","description":"🄵🅅 Blood Components: whole blood"},{"key":"blood:plasma","description":"🄵🅅 Blood Components: plasma"},{"key":"blood:platelets","description":"🄵🅅 Blood Components: platelets"},{"key":"blood:stemcells","description":"🄵🅅 Blood Components: stem cell samples"},{"key":"blind","description":"🄵 Blind Person Access"},{"key":"bin","description":"🄵 Waste Bin"},{"key":"bike_ride","description":"🄵 Bike and Ride"},{"key":"bicycle_road","description":"🄵 Cycle Street"},{"key":"bicycle_road","value":"yes","description":"🄵🅅 Cycle Street: Yes"},{"key":"bicycle_parking","description":"🄵 Type"},{"key":"bicycle_parking","value":"stands","description":"🄵🅅 Type: Stand (supports bicycle frame)"},{"key":"bicycle_parking","value":"wall_loops","description":"🄵🅅 Type: Wheelbender (supports wheel only)"},{"key":"bicycle_parking","value":"handlebar_holder","description":"🄵🅅 Type: Handlebar Holder"},{"key":"bench","description":"🄵 Bench"},{"key":"beauty","description":"🄵 Services"},{"key":"beauty","value":"cosmetics","description":"🄵🅅 Services: Cosmetics"},{"key":"beauty","value":"spa","description":"🄵🅅 Services: Day Spa"},{"key":"beauty","value":"skin_care","description":"🄵🅅 Services: Skin Care"},{"key":"beauty","value":"waxing","description":"🄵🅅 Services: Waxing"},{"key":"beauty","value":"hair_removal","description":"🄵🅅 Services: Hair Removal"},{"key":"basin","description":"🄵 Type"},{"key":"basin","value":"detention","description":"🄵🅅 Type: Detention"},{"key":"basin","value":"evaporation","description":"🄵🅅 Type: Evaporation"},{"key":"basin","value":"infiltration","description":"🄵🅅 Type: Infiltration"},{"key":"basin","value":"retention","description":"🄵🅅 Type: Retention"},{"key":"barrier","value":"planter","description":"🄵🅅 Barrier: Yes"},{"key":"bar","description":"🄵 Bar"},{"key":"backrest","description":"🄵 Backrest"},{"key":"backcountry","description":"🄵 Backcountry"},{"key":"baby","description":"🄵 Baby Seat"},{"key":"baby_feeding","description":"🄵 Baby Nursing Area"},{"key":"baby_feeding","value":"room","description":"🄵🅅 Baby Nursing Area: Dedicated Room"},{"key":"baby_feeding","value":"yes","description":"🄵🅅 Baby Nursing Area: Marked Space"},{"key":"baby_feeding","value":"no","description":"🄵🅅 Baby Nursing Area: None"},{"key":"automated","description":"🄵 Automated"},{"key":"attraction","value":"alpine_coaster","description":"🄵🅅 Type: Alpine Coaster"},{"key":"atm","description":"🄵 ATM"},{"key":"athletics","description":"🄵 Event"},{"key":"ascent","description":"🄵 Total Ascent"},{"key":"artwork_type","description":"🄵 Type"},{"key":"artwork_type","value":"painting","description":"🄵🅅 Type: Painting"},{"key":"artwork_type","value":"mosaic","description":"🄵🅅 Type: Mosaic"},{"key":"artwork_type","value":"relief","description":"🄵🅅 Type: Relief"},{"key":"artwork_type","value":"stone","description":"🄵🅅 Type: Artistically Worked Stone"},{"key":"artwork_type","value":"tilework","description":"🄵🅅 Type: Tile Work"},{"key":"artist_name","description":"🄵 Artist"},{"key":"armrest","description":"🄵 Armrests"},{"key":"armrest","value":"yes","description":"🄵🅅 Armrests: One or more armrests"},{"key":"armrest","value":"no","description":"🄵🅅 Armrests: No armrests"},{"key":"architect","description":"🄵 Architect"},{"key":"archaeological_site","description":"🄵 Type"},{"key":"archaeological_site","value":"baths","description":"🄵🅅 Type: Baths"},{"key":"archaeological_site","value":"city","description":"🄵🅅 Type: Historic City"},{"key":"archaeological_site","value":"crannog","description":"🄵🅅 Type: Crannog"},{"key":"archaeological_site","value":"enclosure","description":"🄵🅅 Type: Enclosure"},{"key":"archaeological_site","value":"fortification","description":"🄵🅅 Type: Fortification"},{"key":"archaeological_site","value":"hut_circle","description":"🄵🅅 Type: Hut Circle"},{"key":"archaeological_site","value":"megalith","description":"🄵🅅 Type: Megalith"},{"key":"archaeological_site","value":"necropolis","description":"🄵🅅 Type: Necropolis"},{"key":"archaeological_site","value":"petroglyph","description":"🄵🅅 Type: Rock Carving"},{"key":"archaeological_site","value":"roman_circus","description":"🄵🅅 Type: Roman Circus"},{"key":"archaeological_site","value":"roman_villa","description":"🄵🅅 Type: Roman Villa"},{"key":"archaeological_site","value":"settlement","description":"🄵🅅 Type: Historic Settlement"},{"key":"archaeological_site","value":"tumulus","description":"🄵🅅 Type: Tumulus"},{"key":"animal_shelter","description":"🄵 For Animals"},{"key":"animal_breeding","description":"🄵 For Animals"},{"key":"animal_boarding","description":"🄵 For Animals"},{"key":"alt_name","description":"🄵 Alternative Name"},{"key":"air_conditioning","description":"🄵 Air Conditioning"},{"key":"agrarian","description":"🄵 Products"},{"key":"admin_level","description":"🄵 Admin Level"},{"key":"addr:block_number","description":"🄵 Address"},{"key":"addr:city","description":"🄵 Address"},{"key":"addr:conscriptionnumber","description":"🄵 Address"},{"key":"addr:country","description":"🄵 Address"},{"key":"addr:county","description":"🄵 Address"},{"key":"addr:district","description":"🄵 Address"},{"key":"addr:floor","description":"🄵 Address"},{"key":"addr:hamlet","description":"🄵 Address"},{"key":"addr:housename","description":"🄵 Address"},{"key":"addr:housenumber","description":"🄵 Address"},{"key":"addr:neighbourhood","description":"🄵 Address"},{"key":"addr:place","description":"🄵 Address"},{"key":"addr:postcode","description":"🄵 Address"},{"key":"addr:province","description":"🄵 Address"},{"key":"addr:quarter","description":"🄵 Address"},{"key":"addr:state","description":"🄵 Address"},{"key":"addr:street","description":"🄵 Address"},{"key":"addr:subdistrict","description":"🄵 Address"},{"key":"addr:suburb","description":"🄵 Address"},{"key":"addr:town","description":"🄵 Address"},{"key":"addr:unit","description":"🄵 Address"},{"key":"hiking","description":"🄵 Activity"},{"key":"bicycle","description":"🄵 Activity, 🄵 Allowed Access"},{"key":"mtb","description":"🄵 Activity"},{"key":"horse","description":"🄵 Activity, 🄵 Allowed Access"},{"key":"ski","description":"🄵 Activity"},{"key":"access","description":"🄵 Allowed Access"},{"key":"access","value":"yes","description":"🄵🅅 Allowed Access: Public, 🄵🅅 Allowed Access: `yes`"},{"key":"access","value":"private","description":"🄵🅅 Allowed Access: Private, 🄵🅅 Allowed Access: `private`"},{"key":"access","value":"permissive","description":"🄵🅅 Allowed Access: Permissive, 🄵🅅 Allowed Access: `permissive`"},{"key":"access","value":"customers","description":"🄵🅅 Allowed Access: Customers Only, 🄵🅅 Allowed Access: `customers`"},{"key":"access","value":"permit","description":"🄵🅅 Allowed Access: By Permit Only, 🄵🅅 Allowed Access: `permit`"},{"key":"access","value":"unknown","description":"🄵🅅 Allowed Access: Unknown, 🄵🅅 Allowed Access: `unknown`"},{"key":"access","value":"no","description":"🄵🅅 Allowed Access: None, 🄵🅅 Allowed Access: `no`"},{"key":"access_aisle","description":"🄵 Type"},{"key":"access","value":"designated","description":"🄵🅅 Allowed Access: `designated`"},{"key":"access","value":"destination","description":"🄵🅅 Allowed Access: `destination`"},{"key":"access","value":"dismount","description":"🄵🅅 Allowed Access: `dismount`"},{"key":"foot","description":"🄵 Allowed Access"},{"key":"foot","value":"yes","description":"🄵🅅 Allowed Access: `yes`"},{"key":"foot","value":"no","description":"🄵🅅 Allowed Access: `no`"},{"key":"foot","value":"permissive","description":"🄵🅅 Allowed Access: `permissive`"},{"key":"foot","value":"private","description":"🄵🅅 Allowed Access: `private`"},{"key":"foot","value":"destination","description":"🄵🅅 Allowed Access: `destination`"},{"key":"foot","value":"customers","description":"🄵🅅 Allowed Access: `customers`"},{"key":"foot","value":"dismount","description":"🄵🅅 Allowed Access: `dismount`"},{"key":"foot","value":"permit","description":"🄵🅅 Allowed Access: `permit`"},{"key":"foot","value":"unknown","description":"🄵🅅 Allowed Access: `unknown`"},{"key":"motor_vehicle","description":"🄵 Allowed Access"},{"key":"motor_vehicle","value":"yes","description":"🄵🅅 Allowed Access: `yes`"},{"key":"motor_vehicle","value":"no","description":"🄵🅅 Allowed Access: `no`"},{"key":"motor_vehicle","value":"permissive","description":"🄵🅅 Allowed Access: `permissive`"},{"key":"motor_vehicle","value":"private","description":"🄵🅅 Allowed Access: `private`"},{"key":"motor_vehicle","value":"designated","description":"🄵🅅 Allowed Access: `designated`"},{"key":"motor_vehicle","value":"destination","description":"🄵🅅 Allowed Access: `destination`"},{"key":"motor_vehicle","value":"customers","description":"🄵🅅 Allowed Access: `customers`"},{"key":"motor_vehicle","value":"dismount","description":"🄵🅅 Allowed Access: `dismount`"},{"key":"motor_vehicle","value":"permit","description":"🄵🅅 Allowed Access: `permit`"},{"key":"motor_vehicle","value":"unknown","description":"🄵🅅 Allowed Access: `unknown`"},{"key":"bicycle","value":"yes","description":"🄵🅅 Allowed Access: `yes`"},{"key":"bicycle","value":"no","description":"🄵🅅 Allowed Access: `no`"},{"key":"bicycle","value":"permissive","description":"🄵🅅 Allowed Access: `permissive`"},{"key":"bicycle","value":"private","description":"🄵🅅 Allowed Access: `private`"},{"key":"bicycle","value":"destination","description":"🄵🅅 Allowed Access: `destination`"},{"key":"bicycle","value":"customers","description":"🄵🅅 Allowed Access: `customers`"},{"key":"bicycle","value":"dismount","description":"🄵🅅 Allowed Access: `dismount`"},{"key":"bicycle","value":"permit","description":"🄵🅅 Allowed Access: `permit`"},{"key":"bicycle","value":"unknown","description":"🄵🅅 Allowed Access: `unknown`"},{"key":"horse","value":"yes","description":"🄵🅅 Allowed Access: `yes`"},{"key":"horse","value":"no","description":"🄵🅅 Allowed Access: `no`"},{"key":"horse","value":"permissive","description":"🄵🅅 Allowed Access: `permissive`"},{"key":"horse","value":"private","description":"🄵🅅 Allowed Access: `private`"},{"key":"horse","value":"designated","description":"🄵🅅 Allowed Access: `designated`"},{"key":"horse","value":"destination","description":"🄵🅅 Allowed Access: `destination`"},{"key":"horse","value":"customers","description":"🄵🅅 Allowed Access: `customers`"},{"key":"horse","value":"dismount","description":"🄵🅅 Allowed Access: `dismount`"},{"key":"horse","value":"permit","description":"🄵🅅 Allowed Access: `permit`"},{"key":"horse","value":"unknown","description":"🄵🅅 Allowed Access: `unknown`"},{"key":"windings:configuration","description":"🄵 Windings Configuration"},{"key":"windings:configuration","value":"star","description":"🄵🅅 Windings Configuration: Star / Wye"},{"key":"windings:configuration","value":"delta","description":"🄵🅅 Windings Configuration: Delta"},{"key":"windings:configuration","value":"open-delta","description":"🄵🅅 Windings Configuration: Open Delta"},{"key":"windings:configuration","value":"zigzag","description":"🄵🅅 Windings Configuration: Zig Zag"},{"key":"windings:configuration","value":"open","description":"🄵🅅 Windings Configuration: Open"},{"key":"windings:configuration","value":"scott","description":"🄵🅅 Windings Configuration: Scott"},{"key":"windings:configuration","value":"leblanc","description":"🄵🅅 Windings Configuration: Leblanc"},{"key":"windings:auto","description":"🄵 Autotransformer"},{"key":"windings:auto","value":"yes","description":"🄵🅅 Autotransformer: Yes"},{"key":"windings:auto","value":"no","description":"🄵🅅 Autotransformer: No"},{"key":"website:menu","description":"🄵 Menu Link"},{"key":"water_tank:volume","description":"🄵 Volume (Liters)"},{"key":"voltage:tertiary","description":"🄵 Tertiary Voltage"},{"key":"voltage:secondary","description":"🄵 Secondary Voltage"},{"key":"voltage:primary","description":"🄵 Primary Voltage"},{"key":"volcano:type","description":"🄵 Volcano Type"},{"key":"volcano:type","value":"stratovolcano","description":"🄵🅅 Volcano Type: Stratovolcano"},{"key":"volcano:type","value":"shield","description":"🄵🅅 Volcano Type: Shield"},{"key":"volcano:type","value":"scoria","description":"🄵🅅 Volcano Type: Scoria"},{"key":"volcano:status","description":"🄵 Volcano Status"},{"key":"volcano:status","value":"active","description":"🄵🅅 Volcano Status: Active"},{"key":"volcano:status","value":"dormant","description":"🄵🅅 Volcano Status: Dormant"},{"key":"volcano:status","value":"extinct","description":"🄵🅅 Volcano Status: Extinct"},{"key":"traffic_signals:vibration","description":"🄵 Vibration"},{"key":"traffic_signals:sound","description":"🄵 Sound Signals"},{"key":"traffic_signals:sound","value":"yes","description":"🄵🅅 Sound Signals: Yes"},{"key":"traffic_signals:sound","value":"no","description":"🄵🅅 Sound Signals: No"},{"key":"traffic_signals:sound","value":"locate","description":"🄵🅅 Sound Signals: `locate`"},{"key":"traffic_signals:sound","value":"walk","description":"🄵🅅 Sound Signals: `walk`"},{"key":"traffic_signals:minimap","description":"🄵 Tactile Map"},{"key":"traffic_signals:direction","description":"🄵 Direction Affected"},{"key":"traffic_signals:direction","value":"forward","description":"🄵🅅 Direction Affected: Forward"},{"key":"traffic_signals:direction","value":"backward","description":"🄵🅅 Direction Affected: Backward"},{"key":"traffic_signals:direction","value":"both","description":"🄵🅅 Direction Affected: Both / All"},{"key":"traffic_signals:countdown","description":"🄵 Countdown Timer"},{"key":"traffic_signals:arrow","description":"🄵 Tactile Arrow"},{"key":"traffic_sign:direction","description":"🄵 Direction Affected"},{"key":"traffic_sign:direction","value":"forward","description":"🄵🅅 Direction Affected: Forward"},{"key":"traffic_sign:direction","value":"backward","description":"🄵🅅 Direction Affected: Backward"},{"key":"traffic_sign:direction","value":"both","description":"🄵🅅 Direction Affected: Both / All"},{"key":"townhall:type","description":"🄵 Type"},{"key":"tower:type","description":"🄵 Type"},{"key":"tower:platforms","description":"🄵 Platforms"},{"key":"tower:construction","description":"🄵 Construction"},{"key":"toilets:wheelchair","description":"🄵 Wheelchair Accessible Toilet"},{"key":"toilets:position","description":"🄵 Positions"},{"key":"toilets:menstrual_products","description":"🄵 Free Menstrual Products Available"},{"key":"toilets:handwashing","description":"🄵 Handwashing"},{"key":"toilets:disposal","description":"🄵 Disposal"},{"key":"toilets:disposal","value":"chemical","description":"🄵🅅 Disposal: Chemical"},{"key":"toilets:disposal","value":"bucket","description":"🄵🅅 Disposal: Bucket"},{"key":"telescope:type","description":"🄵 Type"},{"key":"telecom:medium","description":"🄵 Medium"},{"key":"survey_point:structure","description":"🄵 Structure"},{"key":"survey_point:structure","value":"beacon","description":"🄵🅅 Structure: Beacon"},{"key":"survey_point:structure","value":"block","description":"🄵🅅 Structure: Block"},{"key":"survey_point:structure","value":"pole","description":"🄵🅅 Structure: Pole"},{"key":"survey_point:structure","value":"pillar","description":"🄵🅅 Structure: Pillar"},{"key":"survey_point:structure","value":"bracket","description":"🄵🅅 Structure: Bracket"},{"key":"survey_point:structure","value":"plaque","description":"🄵🅅 Structure: Plaque"},{"key":"survey_point:structure","value":"medallion","description":"🄵🅅 Structure: Medallion"},{"key":"survey_point:structure","value":"cairn","description":"🄵🅅 Structure: Cairn"},{"key":"survey_point:structure","value":"pin","description":"🄵🅅 Structure: Pin"},{"key":"survey_point:structure","value":"indented_pin","description":"🄵🅅 Structure: Indented pin"},{"key":"survey_point:structure","value":"cut","description":"🄵🅅 Structure: Cut"},{"key":"survey_point:structure","value":"magnet","description":"🄵🅅 Structure: Magnet"},{"key":"survey_point:purpose","description":"🄵 Purpose"},{"key":"survey_point:purpose","value":"horizontal","description":"🄵🅅 Purpose: Horizontal Alignment"},{"key":"survey_point:purpose","value":"vertical","description":"🄵🅅 Purpose: Vertical Alignment"},{"key":"survey_point:purpose","value":"both","description":"🄵🅅 Purpose: Both"},{"key":"survey_point:datum_aligned","description":"🄵 Aligned to the Local Geodetic Datum"},{"key":"survey:date","description":"🄵 Last Survey Date"},{"key":"surveillance:zone","description":"🄵 Surveillance Zone"},{"key":"surveillance:type","description":"🄵 Surveillance Type"},{"key":"surveillance:type","value":"guard","description":"🄵🅅 Surveillance Type: Guard"},{"key":"surveillance:type","value":"ALPR","description":"🄵🅅 Surveillance Type: Automatic License Plate Reader"},{"key":"summit:cross","description":"🄵 Summit Cross"},{"key":"subject:wikidata","description":"🄵 Subject Wikidata"},{"key":"subject:wikipedia","description":"🄵 Subject Wikidata"},{"key":"species:wikidata","description":"🄵 Species Wikidata"},{"key":"species:wikipedia","description":"🄵 Species Wikidata"},{"key":"source:population","description":"🄵 Population Source"},{"key":"siren:type","description":"🄵 Type"},{"key":"siren:type","value":"pneumatic","description":"🄵🅅 Type: Pneumatic"},{"key":"siren:type","value":"electronic","description":"🄵🅅 Type: Electronic"},{"key":"siren:type","value":"other","description":"🄵🅅 Type: Other"},{"key":"siren:purpose","description":"🄵 Purpose"},{"key":"service:vehicle:","description":"🄵 Services"},{"key":"service:bicycle:","description":"🄵 Bicycle Services"},{"key":"seamark:wreck:category","description":"🄵 Category"},{"key":"seamark:rescue_station:category","description":"🄵 Life Saving Equipment"},{"key":"seamark:rescue_station:category","value":"lifeboat","description":"🄵🅅 Life Saving Equipment: Lifeboat (on Land)"},{"key":"seamark:rescue_station:category","value":"lifeboat_on_mooring","description":"🄵🅅 Life Saving Equipment: Lifeboat (at a Mooring)"},{"key":"seamark:rescue_station:category","value":"seaplane","description":"🄵🅅 Life Saving Equipment: Seaplane"},{"key":"seamark:rescue_station:category","value":"aircraft","description":"🄵🅅 Life Saving Equipment: Aircraft"},{"key":"seamark:rescue_station:category","value":"hovercraft","description":"🄵🅅 Life Saving Equipment: Hovercraft"},{"key":"seamark:rescue_station:category","value":"radio","description":"🄵🅅 Life Saving Equipment: Radio Station"},{"key":"seamark:rescue_station:category","value":"first_aid","description":"🄵🅅 Life Saving Equipment: First aid"},{"key":"seamark:rescue_station:category","value":"refuge_shipwrecked","description":"🄵🅅 Life Saving Equipment: Shipwreck Refuge"},{"key":"seamark:rescue_station:category","value":"refuge_intertidal","description":"🄵🅅 Life Saving Equipment: Intertidal Refuge"},{"key":"seamark:rescue_station:category","value":"tug","description":"🄵🅅 Life Saving Equipment: Salvage tug"},{"key":"seamark:mooring:category","description":"🄵 Category"},{"key":"seamark:harbour:category","description":"🄵 Domestic Facilities"},{"key":"seamark:harbour:category","value":"marina","description":"🄵🅅 Domestic Facilities: Yes"},{"key":"seamark:buoy_lateral:system","description":"🄵 System"},{"key":"seamark:buoy_lateral:system","value":"iala-a","description":"🄵🅅 System: IALA A"},{"key":"seamark:buoy_lateral:system","value":"iala-b","description":"🄵🅅 System: IALA B"},{"key":"seamark:buoy_lateral:system","value":"cevni","description":"🄵🅅 System: CEVNI"},{"key":"seamark:buoy_lateral:system","value":"other","description":"🄵🅅 System: Other"},{"key":"seamark:buoy_lateral:shape","description":"🄵 Shape"},{"key":"seamark:buoy_lateral:colour","description":"🄵 Color"},{"key":"seamark:buoy_lateral:colour","value":"red;white;red;white","description":"🄵🅅 Color: Red-White-Red-White"},{"key":"seamark:buoy_lateral:colour","value":"green;white;green;white","description":"🄵🅅 Color: Green-White-Green-White"},{"key":"seamark:buoy_lateral:colour","value":"red;green;red","description":"🄵🅅 Color: Red-Green-Red"},{"key":"seamark:buoy_lateral:colour","value":"green;red;green","description":"🄵🅅 Color: Green-Red-Green"},{"key":"seamark:buoy_lateral:colour","value":"white","description":"🄵🅅 Color: White"},{"key":"seamark:buoy_lateral:colour","value":"yellow","description":"🄵🅅 Color: Yellow"},{"key":"seamark:buoy_lateral:category","description":"🄵 Category"},{"key":"seamark:buoy_lateral:category","value":"port","description":"🄵🅅 Category: Port"},{"key":"seamark:buoy_lateral:category","value":"starboard","description":"🄵🅅 Category: Starboard"},{"key":"seamark:buoy_lateral:category","value":"channel_left","description":"🄵🅅 Category: Channel Left"},{"key":"seamark:buoy_lateral:category","value":"channel_right","description":"🄵🅅 Category: Channel Right"},{"key":"seamark:buoy_lateral:category","value":"waterway_left","description":"🄵🅅 Category: Waterway Left"},{"key":"seamark:buoy_lateral:category","value":"waterway_right","description":"🄵🅅 Category: Waterway Right"},{"key":"seamark:buoy_lateral:category","value":"danger_left","description":"🄵🅅 Category: Danger Left"},{"key":"seamark:buoy_lateral:category","value":"danger_right","description":"🄵🅅 Category: Danger Right"},{"key":"seamark:buoy_lateral:category","value":"preferred_channel_port","description":"🄵🅅 Category: Preferred Channel Port"},{"key":"seamark:buoy_lateral:category","value":"preferred_channel_starboard","description":"🄵🅅 Category: Preferred Channel Starboard"},{"key":"seamark:beacon_lateral:system","description":"🄵 System"},{"key":"seamark:beacon_lateral:system","value":"iala-a","description":"🄵🅅 System: IALA A"},{"key":"seamark:beacon_lateral:system","value":"iala-b","description":"🄵🅅 System: IALA B"},{"key":"seamark:beacon_lateral:system","value":"cevni","description":"🄵🅅 System: CEVNI"},{"key":"seamark:beacon_lateral:system","value":"other","description":"🄵🅅 System: Other"},{"key":"seamark:beacon_lateral:shape","description":"🄵 Shape"},{"key":"seamark:beacon_lateral:colour","description":"🄵 Color"},{"key":"seamark:beacon_lateral:colour","value":"red","description":"🄵🅅 Color: Red"},{"key":"seamark:beacon_lateral:colour","value":"green","description":"🄵🅅 Color: Green"},{"key":"seamark:beacon_lateral:colour","value":"grey","description":"🄵🅅 Color: Grey"},{"key":"seamark:beacon_lateral:category","description":"🄵 Category"},{"key":"seamark:beacon_lateral:category","value":"port","description":"🄵🅅 Category: Port"},{"key":"seamark:beacon_lateral:category","value":"starboard","description":"🄵🅅 Category: Starboard"},{"key":"seamark:beacon_lateral:category","value":"waterway_left","description":"🄵🅅 Category: Waterway Left"},{"key":"seamark:beacon_lateral:category","value":"waterway_right","description":"🄵🅅 Category: Waterway Right"},{"key":"seamark:beacon_lateral:category","value":"danger_left","description":"🄵🅅 Category: Danger Left"},{"key":"seamark:beacon_lateral:category","value":"danger_right","description":"🄵🅅 Category: Danger Right"},{"key":"seamark:beacon_isolated_danger:shape","description":"🄵 Shape"},{"key":"rotor:diameter","description":"🄵 Rotor Diameter (Meters)"},{"key":"roof:shape","description":"🄵 Roof Shape"},{"key":"roof:shape","value":"flat","description":"🄵🅅 Roof Shape: Flat"},{"key":"roof:shape","value":"gabled","description":"🄵🅅 Roof Shape: Gabled"},{"key":"roof:shape","value":"gabled_height_moved","description":"🄵🅅 Roof Shape: Gabled (Height Moved)"},{"key":"roof:shape","value":"skillion","description":"🄵🅅 Roof Shape: Skillion"},{"key":"roof:shape","value":"hipped","description":"🄵🅅 Roof Shape: Hipped"},{"key":"roof:shape","value":"half-hipped","description":"🄵🅅 Roof Shape: Half-Hipped"},{"key":"roof:shape","value":"side_hipped","description":"🄵🅅 Roof Shape: Side-Hipped"},{"key":"roof:shape","value":"side_half-hipped","description":"🄵🅅 Roof Shape: Side Half-Hipped"},{"key":"roof:shape","value":"mansard","description":"🄵🅅 Roof Shape: Mansard"},{"key":"roof:shape","value":"gambrel","description":"🄵🅅 Roof Shape: Gambrel"},{"key":"roof:shape","value":"hipped-and-gabled","description":"🄵🅅 Roof Shape: Hipped & Gabled"},{"key":"roof:shape","value":"pyramidal","description":"🄵🅅 Roof Shape: Pyramidal"},{"key":"roof:shape","value":"crosspitched","description":"🄵🅅 Roof Shape: Cross-Pitched"},{"key":"roof:shape","value":"sawtooth","description":"🄵🅅 Roof Shape: Sawtooth"},{"key":"roof:shape","value":"butterfly","description":"🄵🅅 Roof Shape: Butterfly"},{"key":"roof:shape","value":"cone","description":"🄵🅅 Roof Shape: Cone"},{"key":"roof:shape","value":"dome","description":"🄵🅅 Roof Shape: Dome"},{"key":"roof:shape","value":"onion","description":"🄵🅅 Roof Shape: Onion"},{"key":"roof:shape","value":"round","description":"🄵🅅 Roof Shape: Round"},{"key":"roof:height","description":"🄵 Roof Height (Meters)"},{"key":"roof:colour","description":"🄵 Roof Color"},{"key":"roller_coaster:track","description":"🄵 Type"},{"key":"roller_coaster:track","value":"lift_hill","description":"🄵🅅 Type: `lift_hill`"},{"key":"roller_coaster:track","value":"launch_straight","description":"🄵🅅 Type: `launch_straight`"},{"key":"roller_coaster:track","value":"brake_run","description":"🄵🅅 Type: `brake_run`"},{"key":"roller_coaster:track","value":"station","description":"🄵🅅 Type: `station`"},{"key":"roller_coaster:track","value":"moving","description":"🄵🅅 Type: `moving`"},{"key":"roller_coaster:track","value":"waiting","description":"🄵🅅 Type: `waiting`"},{"key":"roller_coaster:track","value":"maintenance","description":"🄵🅅 Type: `maintenance`"},{"key":"ref:vatin","description":"🄵 VAT ID Number"},{"key":"ref:isil","description":"🄵 ISIL Code"},{"key":"ref:edubase","description":"🄵 Department for Education Reference"},{"key":"ref:linz:place_id","description":"🄵 NZGB Place ID"},{"key":"ref:FR:SIRET","description":"🄵 SIRET Number"},{"key":"railway:track_ref","description":"🄵 Track Number"},{"key":"railway:switch","description":"🄵 Switch Type"},{"key":"railway:switch","value":"default","description":"🄵🅅 Switch Type: Normal Switch"},{"key":"railway:switch","value":"double_slip","description":"🄵🅅 Switch Type: Double-slip Switch"},{"key":"railway:switch","value":"single_slip","description":"🄵🅅 Switch Type: Single-slip Switch"},{"key":"railway:switch","value":"wye","description":"🄵🅅 Switch Type: Wye Switch"},{"key":"railway:switch","value":"three_way","description":"🄵🅅 Switch Type: Three-way Switch"},{"key":"railway:switch","value":"abt","description":"🄵🅅 Switch Type: Abt Switch"},{"key":"railway:position","description":"🄵 Milestone Position"},{"key":"railway:signal:direction","description":"🄵 Direction Affected"},{"key":"railway:signal:direction","value":"forward","description":"🄵🅅 Direction Affected: Forward"},{"key":"railway:signal:direction","value":"backward","description":"🄵🅅 Direction Affected: Backward"},{"key":"railway:signal:direction","value":"both","description":"🄵🅅 Direction Affected: Both / All"},{"key":"public_bookcase:type","description":"🄵 Type"},{"key":"post_box:type","description":"🄵 Type"},{"key":"post_box:type","value":"pillar","description":"🄵🅅 Type: Freestanding Box"},{"key":"post_box:type","value":"lamp","description":"🄵🅅 Type: Attached to a Pole"},{"key":"post_box:type","value":"wall","description":"🄵🅅 Type: Mounted in a Wall"},{"key":"population:date","description":"🄵 Population Date"},{"key":"playground:theme","description":"🄵 Theme"},{"key":"plant:source","description":"🄵 Energy Source"},{"key":"plant:output","description":"🄵 Form of Power Output"},{"key":"plant:outputelectricity","description":"🄵🅅 Form of Power Output: Electricity"},{"key":"plant:outputhot_water","description":"🄵🅅 Form of Power Output: Hot Water"},{"key":"plant:outputhot_air","description":"🄵🅅 Form of Power Output: Hot Air"},{"key":"plant:outputcold_water","description":"🄵🅅 Form of Power Output: Cold Water"},{"key":"plant:outputcold_air","description":"🄵🅅 Form of Power Output: Cold Air"},{"key":"plant:outputcompressed_air","description":"🄵🅅 Form of Power Output: Compressed Air"},{"key":"plant:outputsteam","description":"🄵🅅 Form of Power Output: Steam"},{"key":"plant:outputvacuum","description":"🄵🅅 Form of Power Output: Vacuum"},{"key":"plant:method","description":"🄵 Generation Method"},{"key":"plant:output:electricity","description":"🄵 Electric Power Output"},{"key":"plant:method","value":"combustion","description":"🄵🅅 Generation Method: Combustion"},{"key":"plant:method","value":"gasification","description":"🄵🅅 Generation Method: Gasification"},{"key":"plant:method","value":"thermal","description":"🄵🅅 Generation Method: Solar Thermal"},{"key":"plant:method","value":"water-storage","description":"🄵🅅 Generation Method: Reservoir"},{"key":"plant:method","value":"water-pumped-storage","description":"🄵🅅 Generation Method: Pumped-Storage"},{"key":"plant:method","value":"run-of-the-river","description":"🄵🅅 Generation Method: Run-of-the-River"},{"key":"piste:type","value":"snow_park","description":"🄵🅅 Type: Snow Park"},{"key":"piste:type","value":"playground","description":"🄵🅅 Type: Playground"},{"key":"piste:type","value":"connection","description":"🄵🅅 Type: Connection"},{"key":"piste:grooming","description":"🄵 Grooming"},{"key":"piste:grooming","value":"classic","description":"🄵🅅 Grooming: Classic, 🄵🅅 Grooming: Classic - Winter Hiking"},{"key":"piste:grooming","value":"backcountry","description":"🄵🅅 Grooming: Backcountry, no grooming, 🄵🅅 Grooming: Backcountry - Snowshoeing, 🄵🅅 Grooming: Backcountry - no grooming, 🄵🅅 Grooming: Backcountry"},{"key":"piste:grooming","value":"classic+skating","description":"🄵🅅 Grooming: Classic and Skating"},{"key":"piste:grooming","value":"scooter","description":"🄵🅅 Grooming: Scooter/Snowmobile"},{"key":"piste:grooming","value":"skating","description":"🄵🅅 Grooming: Skating"},{"key":"piste:grooming","value":"mogul","description":"🄵🅅 Grooming: Mogul"},{"key":"piste:difficulty","description":"🄵 Difficulty"},{"key":"piste:difficulty","value":"novice","description":"🄵🅅 Difficulty: Novice - L: <30° incline, 🄵🅅 Difficulty: Novice - Flat, no effort needed, 🄵🅅 Difficulty: Novice (instructional), 🄵🅅 Difficulty: Novice"},{"key":"piste:difficulty","value":"easy","description":"🄵🅅 Difficulty: Easy - WS: 30-35° incline, 🄵🅅 Difficulty: Easy - Soft hills, short steep section, 🄵🅅 Difficulty: Easy (green circle), 🄵🅅 Difficulty: Easy"},{"key":"piste:difficulty","value":"intermediate","description":"🄵🅅 Difficulty: Intermediate - ZS: 35-40° incline, 🄵🅅 Difficulty: Intermediate - Steep section, 🄵🅅 Difficulty: Intermediate (blue square), 🄵🅅 Difficulty: Intermediate"},{"key":"piste:difficulty","value":"advanced","description":"🄵🅅 Difficulty: Advanced - S: 40-45° incline, 🄵🅅 Difficulty: Advanced - Narrow, steep or icy section, sharp turn, 🄵🅅 Difficulty: Advanced (black diamond), 🄵🅅 Difficulty: Advanced"},{"key":"piste:difficulty","value":"expert","description":"🄵🅅 Difficulty: Expert - SS: 45–50° incline, 🄵🅅 Difficulty: Expert - Dangerous terrain around, 🄵🅅 Difficulty: Expert (double black diamond), 🄵🅅 Difficulty: Expert"},{"key":"piste:difficulty","value":"freeride","description":"🄵🅅 Difficulty: Freeride - AS: 50–55° incline, 🄵🅅 Difficulty: Freeride (off-piste), 🄵🅅 Difficulty: Freeride"},{"key":"piste:difficulty","value":"extreme","description":"🄵🅅 Difficulty: Extreme - EX: >55° incline, 🄵🅅 Difficulty: Extreme (climbing equipment required), 🄵🅅 Difficulty: Extreme"},{"key":"parking:left","description":"🄵 Parking"},{"key":"parking:left","value":"lane","description":"🄵🅅 Parking: Roadside Lane"},{"key":"parking:left","value":"street_side","description":"🄵🅅 Parking: Street-Side"},{"key":"parking:left","value":"on_kerb","description":"🄵🅅 Parking: On Kerb"},{"key":"parking:left","value":"half_on_kerb","description":"🄵🅅 Parking: Half On Kerb"},{"key":"parking:left","value":"shoulder","description":"🄵🅅 Parking: Shoulder"},{"key":"parking:left","value":"no","description":"🄵🅅 Parking: No"},{"key":"parking:left","value":"separate","description":"🄵🅅 Parking: Parking mapped separately"},{"key":"parking:left","value":"yes","description":"🄵🅅 Parking: Yes (unspecified)"},{"key":"parking:right","description":"🄵 Parking"},{"key":"parking:right","value":"lane","description":"🄵🅅 Parking: Roadside Lane"},{"key":"parking:right","value":"street_side","description":"🄵🅅 Parking: Street-Side"},{"key":"parking:right","value":"on_kerb","description":"🄵🅅 Parking: On Kerb"},{"key":"parking:right","value":"half_on_kerb","description":"🄵🅅 Parking: Half On Kerb"},{"key":"parking:right","value":"shoulder","description":"🄵🅅 Parking: Shoulder"},{"key":"parking:right","value":"no","description":"🄵🅅 Parking: No"},{"key":"parking:right","value":"separate","description":"🄵🅅 Parking: Parking mapped separately"},{"key":"parking:right","value":"yes","description":"🄵🅅 Parking: Yes (unspecified)"},{"key":"parking:left:orientation","description":"🄵 Parking Orientation"},{"key":"parking:left:orientation","value":"parallel","description":"🄵🅅 Parking Orientation: Parallel to the Street"},{"key":"parking:left:orientation","value":"diagonal","description":"🄵🅅 Parking Orientation: Diagonal in Relation to the Street (~45°)"},{"key":"parking:left:orientation","value":"perpendicular","description":"🄵🅅 Parking Orientation: Meets the Street at a Straight Angle (~90°)"},{"key":"parking:right:orientation","description":"🄵 Parking Orientation"},{"key":"parking:right:orientation","value":"parallel","description":"🄵🅅 Parking Orientation: Parallel to the Street"},{"key":"parking:right:orientation","value":"diagonal","description":"🄵🅅 Parking Orientation: Diagonal in Relation to the Street (~45°)"},{"key":"parking:right:orientation","value":"perpendicular","description":"🄵🅅 Parking Orientation: Meets the Street at a Straight Angle (~90°)"},{"key":"orientation","description":"🄵 Orientation"},{"key":"orientation","value":"parallel","description":"🄵🅅 Orientation: Parallel to the Street"},{"key":"orientation","value":"diagonal","description":"🄵🅅 Orientation: Diagonal in Relation to the Street (~45°)"},{"key":"orientation","value":"perpendicular","description":"🄵🅅 Orientation: Meets the Street at a Straight Angle (~90°)"},{"key":"operator:type","description":"🄵 Operator Type"},{"key":"opening_hours:drive_through","description":"🄵 Drive Through Hours"},{"key":"oneway:bicycle","description":"🄵 One Way (Bicycles)"},{"key":"not:name","description":"🄵 Incorrect Names"},{"key":"network:type","description":"🄵 Network Type"},{"key":"mtb:scale","description":"🄵 Mountain Biking Difficulty"},{"key":"mtb:scale","value":"0","description":"🄵🅅 Mountain Biking Difficulty: 0: Solid gravel/packed earth, no obstacles, wide curves"},{"key":"mtb:scale","value":"1","description":"🄵🅅 Mountain Biking Difficulty: 1: Some loose surface, small obstacles, wide curves"},{"key":"mtb:scale","value":"2","description":"🄵🅅 Mountain Biking Difficulty: 2: Much loose surface, large obstacles, easy hairpins"},{"key":"mtb:scale","value":"3","description":"🄵🅅 Mountain Biking Difficulty: 3: Slippery surface, large obstacles, tight hairpins"},{"key":"mtb:scale","value":"4","description":"🄵🅅 Mountain Biking Difficulty: 4: Loose surface or boulders, dangerous hairpins"},{"key":"mtb:scale","value":"5","description":"🄵🅅 Mountain Biking Difficulty: 5: Maximum difficulty, boulder fields, landslides"},{"key":"mtb:scale","value":"6","description":"🄵🅅 Mountain Biking Difficulty: 6: Not rideable except by the very best mountain bikers"},{"key":"mtb:scale:uphill","description":"🄵 Mountain Biking Uphill Difficulty"},{"key":"mtb:scale:uphill","value":"0","description":"🄵🅅 Mountain Biking Uphill Difficulty: 0: Avg. incline <10%, gravel/packed earth, no obstacles"},{"key":"mtb:scale:uphill","value":"1","description":"🄵🅅 Mountain Biking Uphill Difficulty: 1: Avg. incline <15%, gravel/packed earth, few small objects"},{"key":"mtb:scale:uphill","value":"2","description":"🄵🅅 Mountain Biking Uphill Difficulty: 2: Avg. incline <20%, stable surface, fistsize rocks/roots"},{"key":"mtb:scale:uphill","value":"3","description":"🄵🅅 Mountain Biking Uphill Difficulty: 3: Avg. incline <25%, variable surface, fistsize rocks/branches"},{"key":"mtb:scale:uphill","value":"4","description":"🄵🅅 Mountain Biking Uphill Difficulty: 4: Avg. incline <30%, poor condition, big rocks/branches"},{"key":"mtb:scale:uphill","value":"5","description":"🄵🅅 Mountain Biking Uphill Difficulty: 5: Very steep, bike generally needs to be pushed or carried"},{"key":"mtb:scale:imba","description":"🄵 IMBA Trail Difficulty"},{"key":"mtb:scale:imba","value":"0","description":"🄵🅅 IMBA Trail Difficulty: ⚪ Easiest (white circle)"},{"key":"mtb:scale:imba","value":"1","description":"🄵🅅 IMBA Trail Difficulty: 🟢 Easy (green circle)"},{"key":"mtb:scale:imba","value":"2","description":"🄵🅅 IMBA Trail Difficulty: 🟦 Medium (blue square)"},{"key":"mtb:scale:imba","value":"3","description":"🄵🅅 IMBA Trail Difficulty: ◆ Difficult (black diamond)"},{"key":"mtb:scale:imba","value":"4","description":"🄵🅅 IMBA Trail Difficulty: ◆◆ Extremely Difficult (double black diamond)"},{"key":"model:wikidata","description":"🄵 Model Wikidata"},{"key":"model:wikipedia","description":"🄵 Model Wikidata"},{"key":"memorial:addr:city","description":"🄵 Nearest Building Address"},{"key":"memorial:addr:housename","description":"🄵 Nearest Building Address"},{"key":"memorial:addr:housenumber","description":"🄵 Nearest Building Address"},{"key":"memorial:addr:place","description":"🄵 Nearest Building Address"},{"key":"memorial:addr:postcode","description":"🄵 Nearest Building Address"},{"key":"memorial:addr:street","description":"🄵 Nearest Building Address"},{"key":"memorial:addr","description":"🄵 Nearest Building Address"},{"key":"maxwidth:physical","description":"🄵 Width Limit"},{"key":"maxspeed:hgv","description":"🄵 Truck Speed Limit"},{"key":"maxspeed:advisory","description":"🄵 Advisory Speed Limit"},{"key":"manufacturer:wikidata","description":"🄵 Manufacturer Wikidata"},{"key":"manufacturer:wikipedia","description":"🄵 Manufacturer Wikidata"},{"key":"lift_gate:type","description":"🄵 Type"},{"key":"lift_gate:type","value":"single","description":"🄵🅅 Type: Single Bar"},{"key":"lift_gate:type","value":"double","description":"🄵🅅 Type: Opposing Bars"},{"key":"kerb:height","description":"🄵 Height"},{"key":"junction:ref","description":"🄵 Junction Number"},{"key":"internet_access:ssid","description":"🄵 Wifi Network Name"},{"key":"internet_access:fee","description":"🄵 Internet Access Fee"},{"key":"internet_access:fee","value":"no","description":"🄵🅅 Internet Access Fee: Free"},{"key":"internet_access:fee","value":"yes","description":"🄵🅅 Internet Access Fee: Paid"},{"key":"internet_access:fee","value":"customers","description":"🄵🅅 Internet Access Fee: Customers Only"},{"key":"holding_position:type","description":"🄵 Type"},{"key":"holding_position:type","value":"runway","description":"🄵🅅 Type: Runway"},{"key":"holding_position:type","value":"intermediate","description":"🄵🅅 Type: Taxiway-Taxiway Intersection"},{"key":"holding_position:type","value":"ILS","description":"🄵🅅 Type: Instrument Landing System"},{"key":"historic:civilization","description":"🄵 Historic Civilization"},{"key":"wreck:visible_at_low_tide","description":"🄵 Visible At Low Tide"},{"key":"wreck:visible_at_high_tide","description":"🄵 Visible At High Tide"},{"key":"wreck:date_sunk","description":"🄵 Date Sunk"},{"key":"height:hub","description":"🄵 Height of Hub (Meters)"},{"key":"healthcare:speciality","description":"🄵 Specialties"},{"key":"healthcare:speciality","value":"anaesthetics","description":"🄵🅅 Specialties: Anesthesiology"},{"key":"healthcare:speciality","value":"angiology","description":"🄵🅅 Specialties: Angiology"},{"key":"healthcare:speciality","value":"anthroposophical","description":"🄵🅅 Specialties: Anthroposophic Medicine"},{"key":"healthcare:speciality","value":"applied_kinesiology","description":"🄵🅅 Specialties: Applied Kinesiology"},{"key":"healthcare:speciality","value":"aromatherapy","description":"🄵🅅 Specialties: Aromatherapy"},{"key":"healthcare:speciality","value":"behavior","description":"🄵🅅 Specialties: Behavior Therapy"},{"key":"healthcare:speciality","value":"biochemistry","description":"🄵🅅 Specialties: Biochemistry"},{"key":"healthcare:speciality","value":"biology","description":"🄵🅅 Specialties: Biology"},{"key":"healthcare:speciality","value":"blood_check","description":"🄵🅅 Specialties: Blood Test"},{"key":"healthcare:speciality","value":"body","description":"🄵🅅 Specialties: Body Therapy"},{"key":"healthcare:speciality","value":"cardiothoracic_surgery","description":"🄵🅅 Specialties: Cardiothoracic Surgery"},{"key":"healthcare:speciality","value":"clinical_pathology","description":"🄵🅅 Specialties: Clinical Pathology"},{"key":"healthcare:speciality","value":"community","description":"🄵🅅 Specialties: Community & Public Health"},{"key":"healthcare:speciality","value":"depth","description":"🄵🅅 Specialties: Depth Psychology"},{"key":"healthcare:speciality","value":"dermatovenereology","description":"🄵🅅 Specialties: Dermatovenereology"},{"key":"healthcare:speciality","value":"diabetology","description":"🄵🅅 Specialties: Diabetology"},{"key":"healthcare:speciality","value":"diagnostic_radiology","description":"🄵🅅 Specialties: Diagnostic Radiology"},{"key":"healthcare:speciality","value":"emergency","description":"🄵🅅 Specialties: Emergency Medicine"},{"key":"healthcare:speciality","value":"endocrinology","description":"🄵🅅 Specialties: Endocrinology"},{"key":"healthcare:speciality","value":"geriatrics","description":"🄵🅅 Specialties: Geriatric Medicine"},{"key":"healthcare:speciality","value":"hepatology","description":"🄵🅅 Specialties: Hepatology"},{"key":"healthcare:speciality","value":"herbalism","description":"🄵🅅 Specialties: Herbalism"},{"key":"healthcare:speciality","value":"humanistic","description":"🄵🅅 Specialties: Humanistic Psychology"},{"key":"healthcare:speciality","value":"hydrotherapy","description":"🄵🅅 Specialties: Hydrotherapy"},{"key":"healthcare:speciality","value":"hypnosis","description":"🄵🅅 Specialties: Hypnosis"},{"key":"healthcare:speciality","value":"infectious_diseases","description":"🄵🅅 Specialties: Infectious Disease"},{"key":"healthcare:speciality","value":"intensive","description":"🄵🅅 Specialties: Intensive Care"},{"key":"healthcare:speciality","value":"dental_oral_maxillo_facial_surgery","description":"🄵🅅 Specialties: Dental, Oral & Maxillofacial Surgery"},{"key":"healthcare:speciality","value":"neonatology","description":"🄵🅅 Specialties: Neonatology"},{"key":"healthcare:speciality","value":"neuropsychiatry","description":"🄵🅅 Specialties: Neuropsychiatry"},{"key":"healthcare:speciality","value":"nuclear","description":"🄵🅅 Specialties: Nuclear Medicine"},{"key":"healthcare:speciality","value":"occupational","description":"🄵🅅 Specialties: Occupational Medicine"},{"key":"healthcare:speciality","value":"paediatric_surgery","description":"🄵🅅 Specialties: Pediatric Surgery"},{"key":"healthcare:speciality","value":"palliative","description":"🄵🅅 Specialties: Palliative Care"},{"key":"healthcare:speciality","value":"physiatry","description":"🄵🅅 Specialties: Physical Medicine & Rehabilitation"},{"key":"healthcare:speciality","value":"radiotherapy","description":"🄵🅅 Specialties: Radiotherapy"},{"key":"healthcare:speciality","value":"reflexology","description":"🄵🅅 Specialties: Reflexology"},{"key":"healthcare:speciality","value":"reiki","description":"🄵🅅 Specialties: Reiki"},{"key":"healthcare:speciality","value":"shiatsu","description":"🄵🅅 Specialties: Shiatsu"},{"key":"healthcare:speciality","value":"stomatology","description":"🄵🅅 Specialties: Stomatology"},{"key":"healthcare:speciality","value":"systemic","description":"🄵🅅 Specialties: Systemic Therapy"},{"key":"healthcare:speciality","value":"transplant","description":"🄵🅅 Specialties: Transplant Surgery"},{"key":"healthcare:speciality","value":"tropical","description":"🄵🅅 Specialties: Tropical Medicine"},{"key":"healthcare:speciality","value":"tuina","description":"🄵🅅 Specialties: Tuī ná"},{"key":"healthcare:speciality","value":"unani","description":"🄵🅅 Specialties: Unani Medicine"},{"key":"healthcare:speciality","value":"vaccination","description":"🄵🅅 Specialties: Vaccination"},{"key":"healthcare:speciality","value":"vascular_surgery","description":"🄵🅅 Specialties: Vascular Surgery"},{"key":"gnis:feature_id","description":"🄵 GNIS Feature ID"},{"key":"geyser:height","description":"🄵 Eruption Height"},{"key":"generator:type","description":"🄵 Type"},{"key":"generator:source","description":"🄵 Source"},{"key":"generator:source","value":"nuclear","description":"🄵🅅 Source: Nuclear Power"},{"key":"generator:source","value":"tidal","description":"🄵🅅 Source: Tidal Power"},{"key":"generator:source","value":"wave","description":"🄵🅅 Source: Wave Power"},{"key":"generator:source","value":"geothermal","description":"🄵🅅 Source: Geothermal Energy"},{"key":"generator:source","value":"solar","description":"🄵🅅 Source: Solar Radiation"},{"key":"generator:source","value":"coal","description":"🄵🅅 Source: Coal"},{"key":"generator:source","value":"gas","description":"🄵🅅 Source: Natural Gas"},{"key":"generator:source","value":"biomass","description":"🄵🅅 Source: Plant Matter"},{"key":"generator:source","value":"biofuel","description":"🄵🅅 Source: Plant Based Fuels"},{"key":"generator:source","value":"biogas","description":"🄵🅅 Source: Biogas"},{"key":"generator:source","value":"oil","description":"🄵🅅 Source: Oil"},{"key":"generator:source","value":"diesel","description":"🄵🅅 Source: Diesel"},{"key":"generator:source","value":"gasoline","description":"🄵🅅 Source: Gasoline"},{"key":"generator:source","value":"waste","description":"🄵🅅 Source: Waste"},{"key":"generator:source","value":"battery","description":"🄵🅅 Source: Battery"},{"key":"generator:method","description":"🄵 Method"},{"key":"generator:method","value":"fusion","description":"🄵🅅 Method: Fusion"},{"key":"generator:method","value":"wind_turbine","description":"🄵🅅 Method: Wind Turbine"},{"key":"generator:method","value":"water-storage","description":"🄵🅅 Method: Reservoir"},{"key":"generator:method","value":"water-pumped-storage","description":"🄵🅅 Method: Pumped-Storage"},{"key":"generator:method","value":"run-of-the-river","description":"🄵🅅 Method: Run-of-the-River"},{"key":"generator:method","value":"barrage","description":"🄵🅅 Method: Tidal Barrage"},{"key":"generator:method","value":"stream","description":"🄵🅅 Method: Tidal Stream"},{"key":"generator:method","value":"thermal","description":"🄵🅅 Method: Solar Thermal"},{"key":"generator:method","value":"combustion","description":"🄵🅅 Method: Combustion"},{"key":"generator:method","value":"gasification","description":"🄵🅅 Method: Gasification"},{"key":"generator:method","value":"anaerobic_digestion","description":"🄵🅅 Method: Anaerobic Digestion"},{"key":"generator:output:electricity","description":"🄵 Power Output"},{"key":"garden:type","description":"🄵 Garden Type"},{"key":"fuel:","description":"🄵 Fuel Types"},{"key":"fuel:diesel","description":"🄵🅅 Fuel Types: Diesel"},{"key":"fuel:GTL_diesel","description":"🄵🅅 Fuel Types: GTL Diesel"},{"key":"fuel:HGV_diesel","description":"🄵🅅 Fuel Types: Truck Diesel"},{"key":"fuel:biodiesel","description":"🄵🅅 Fuel Types: Biodiesel"},{"key":"fuel:octane_80","description":"🄵🅅 Fuel Types: Gasoline (80 Octane)"},{"key":"fuel:octane_85","description":"🄵🅅 Fuel Types: Gasoline (85 Octane)"},{"key":"fuel:octane_87","description":"🄵🅅 Fuel Types: Gasoline (87 Octane)"},{"key":"fuel:octane_88","description":"🄵🅅 Fuel Types: Gasoline (88 Octane)"},{"key":"fuel:octane_89","description":"🄵🅅 Fuel Types: Gasoline (89 Octane)"},{"key":"fuel:octane_90","description":"🄵🅅 Fuel Types: Gasoline (90 Octane)"},{"key":"fuel:octane_91","description":"🄵🅅 Fuel Types: Gasoline (91 Octane)"},{"key":"fuel:octane_92","description":"🄵🅅 Fuel Types: Gasoline (92 Octane)"},{"key":"fuel:octane_93","description":"🄵🅅 Fuel Types: Gasoline (93 Octane)"},{"key":"fuel:octane_95","description":"🄵🅅 Fuel Types: Gasoline (95 Octane)"},{"key":"fuel:octane_97","description":"🄵🅅 Fuel Types: Gasoline (97 Octane)"},{"key":"fuel:octane_98","description":"🄵🅅 Fuel Types: Gasoline (98 Octane)"},{"key":"fuel:octane_100","description":"🄵🅅 Fuel Types: Gasoline (100 Octane)"},{"key":"fuel:e5","description":"🄵🅅 Fuel Types: E5 Gasoline"},{"key":"fuel:e10","description":"🄵🅅 Fuel Types: E10 Gasoline"},{"key":"fuel:e85","description":"🄵🅅 Fuel Types: E85 Gasoline"},{"key":"fuel:lpg","description":"🄵🅅 Fuel Types: Liquefied Petroleum Gas (LPG)"},{"key":"fuel:lng","description":"🄵🅅 Fuel Types: Liquefied Natural Gas (LNG)"},{"key":"fuel:cng","description":"🄵🅅 Fuel Types: Compressed Natural Gas (CNG)"},{"key":"fuel:propane","description":"🄵🅅 Fuel Types: Propane"},{"key":"fuel:LH2","description":"🄵🅅 Fuel Types: Liquid Hydrogen"},{"key":"fuel:h70","description":"🄵🅅 Fuel Types: Gaseous Hydrogen (700 bar)"},{"key":"fuel:adblue","description":"🄵🅅 Fuel Types: AdBlue / AUS 32"},{"key":"fuel:adblue:canister","description":"🄵🅅 Fuel Types: AdBlue / AUS 32 (sold in canisters)"},{"key":"flag:wikidata","description":"🄵 Flag Wikidata"},{"key":"flag:wikipedia","description":"🄵 Flag Wikidata"},{"key":"flag:type","description":"🄵 Flag Type"},{"key":"flag:name","description":"🄵 Flag Name"},{"key":"fire_hydrant:type","description":"🄵 Shape"},{"key":"fire_hydrant:type","value":"wall","description":"🄵🅅 Shape: Wall"},{"key":"fire_hydrant:type","value":"pipe","description":"🄵🅅 Shape: Capped Pipe"},{"key":"fire_hydrant:pressure","description":"🄵 Pressure (bar)"},{"key":"fire_hydrant:position","description":"🄵 Position"},{"key":"fire_hydrant:position","value":"green","description":"🄵🅅 Position: Green/Grass"},{"key":"fire_hydrant:position","value":"lane","description":"🄵🅅 Position: Road Lane"},{"key":"fire_hydrant:position","value":"sidewalk","description":"🄵🅅 Position: Sidewalk"},{"key":"fire_hydrant:position","value":"parking_lot","description":"🄵🅅 Position: Parking Lot"},{"key":"fire_hydrant:diameter","description":"🄵 Diameter (mm, in, or letters)"},{"key":"fhrs:id","description":"🄵 FHRS ID"},{"key":"door:width","description":"🄵 Door Width (Meters)"},{"key":"door:height","description":"🄵 Door Height (Meters)"},{"key":"dock:width","description":"🄵 Dock Width (Meters)"},{"key":"dock:height","description":"🄵 Dock Height (Meters)"},{"key":"diplomatic:services:","description":"🄵 Services"},{"key":"destination:symbol","description":"🄵 Destination Symbols"},{"key":"destination:ref","description":"🄵 Destination Road Numbers"},{"key":"trolley:deposit","description":"🄵 Deposit"},{"key":"defibrillator:location","description":"🄵 Location Description"},{"key":"dance:teaching","description":"🄵 Offers Dance Lessons"},{"key":"dance:style","description":"🄵 Dance Styles"},{"key":"cycle_barrier:installation","description":"🄵 Installation"},{"key":"cycle_barrier:installation","value":"fixed","description":"🄵🅅 Installation: Fixed"},{"key":"cycle_barrier:installation","value":"openable","description":"🄵🅅 Installation: Openable"},{"key":"cycle_barrier:installation","value":"removable","description":"🄵🅅 Installation: Removable"},{"key":"crossing:markings","description":"🄵 Crossing Markings"},{"key":"crossing:markings","value":"zebra","description":"🄵🅅 Crossing Markings: Longitudinal Bars"},{"key":"crossing:markings","value":"dots","description":"🄵🅅 Crossing Markings: Dotted Transverse Lines"},{"key":"crossing:markings","value":"surface","description":"🄵🅅 Crossing Markings: Surface Treatment Only"},{"key":"crossing:markings","value":"yes","description":"🄵🅅 Crossing Markings: Marked Somehow"},{"key":"crossing:markings","value":"no","description":"🄵🅅 Crossing Markings: Unmarked"},{"key":"crossing:markings","value":"dashes","description":"🄵🅅 Crossing Markings: Dashed Transverse Lines"},{"key":"crossing:markings","value":"lines","description":"🄵🅅 Crossing Markings: Transverse Lines"},{"key":"crossing:markings","value":"ladder","description":"🄵🅅 Crossing Markings: Ladder With Longitudinal Bars"},{"key":"crossing:markings","value":"ladder:skewed","description":"🄵🅅 Crossing Markings: Ladder With Diagonal Bars"},{"key":"crossing:markings","value":"pictograms","description":"🄵🅅 Crossing Markings: Painted Pictograms"},{"key":"crossing:markings","value":"lines:paired","description":"🄵🅅 Crossing Markings: Double Transverse Lines"},{"key":"crossing:markings","value":"zebra:double","description":"🄵🅅 Crossing Markings: Triple-Four"},{"key":"crossing:markings","value":"zebra:paired","description":"🄵🅅 Crossing Markings: Paired Longitudinal Bars"},{"key":"crossing:markings","value":"zebra:bicolour","description":"🄵🅅 Crossing Markings: Longitudinal Bars With Alternating Colors"},{"key":"crossing:markings","value":"ladder:paired","description":"🄵🅅 Crossing Markings: Ladder With Paired Longitudinal Bars"},{"key":"crossing:light","description":"🄵 Lights"},{"key":"crossing:island","description":"🄵 Refuge Island"},{"key":"crossing:bell","description":"🄵 Bell"},{"key":"crossing:barrier","description":"🄵 Barrier Arm"},{"key":"crossing:barrier","value":"full","description":"🄵🅅 Barrier Arm: Full"},{"key":"crossing:barrier","value":"double_half","description":"🄵🅅 Barrier Arm: Double Half"},{"key":"crossing:barrier","value":"half","description":"🄵🅅 Barrier Arm: Half"},{"key":"crossing:barrier","value":"no","description":"🄵🅅 Barrier Arm: No"},{"key":"crossing:barrier","value":"yes","description":"🄵🅅 Barrier Arm: Yes"},{"key":"crane:type","description":"🄵 Crane Type"},{"key":"crane:type","value":"floor-mounted_crane","description":"🄵🅅 Crane Type: Floor-mounted Crane"},{"key":"crane:type","value":"travel_lift","description":"🄵🅅 Crane Type: Travel Lift"},{"key":"crane:type","value":"tower_crane","description":"🄵🅅 Crane Type: Tower Crane"},{"key":"contact:webcam","description":"🄵 Webcam URL"},{"key":"contact:facebook","description":"🄵 Facebook Username or URL"},{"key":"climbing:trad","description":"🄵 Traditional climbing"},{"key":"climbing:sport","description":"🄵 Sport climbing (bolted climbing)"},{"key":"climbing:length","description":"🄵 Length (Meters)"},{"key":"climbing:bolts","description":"🄵 Number of Bolts"},{"key":"climbing:grade:yds_class","description":"🄵 Grade (YDS)"},{"key":"climbing:grade:yds_class","value":"5","description":"🄵🅅 Grade (YDS): `5`"},{"key":"climbing:grade:yds_class","value":"5.1","description":"🄵🅅 Grade (YDS): `5.1`"},{"key":"climbing:grade:yds_class","value":"5.2","description":"🄵🅅 Grade (YDS): `5.2`"},{"key":"climbing:grade:yds_class","value":"5.3","description":"🄵🅅 Grade (YDS): `5.3`"},{"key":"climbing:grade:yds_class","value":"5.4","description":"🄵🅅 Grade (YDS): `5.4`"},{"key":"climbing:grade:yds_class","value":"5.5","description":"🄵🅅 Grade (YDS): `5.5`"},{"key":"climbing:grade:yds_class","value":"5.6","description":"🄵🅅 Grade (YDS): `5.6`"},{"key":"climbing:grade:yds_class","value":"5.7","description":"🄵🅅 Grade (YDS): `5.7`"},{"key":"climbing:grade:yds_class","value":"5.8","description":"🄵🅅 Grade (YDS): `5.8`"},{"key":"climbing:grade:yds_class","value":"5.9","description":"🄵🅅 Grade (YDS): `5.9`"},{"key":"climbing:grade:yds_class","value":"5.10a","description":"🄵🅅 Grade (YDS): `5.10a`"},{"key":"climbing:grade:yds_class","value":"5.10b","description":"🄵🅅 Grade (YDS): `5.10b`"},{"key":"climbing:grade:yds_class","value":"5.10c","description":"🄵🅅 Grade (YDS): `5.10c`"},{"key":"climbing:grade:yds_class","value":"5.10d","description":"🄵🅅 Grade (YDS): `5.10d`"},{"key":"climbing:grade:yds_class","value":"5.11a","description":"🄵🅅 Grade (YDS): `5.11a`"},{"key":"climbing:grade:yds_class","value":"5.11b","description":"🄵🅅 Grade (YDS): `5.11b`"},{"key":"climbing:grade:yds_class","value":"5.11c","description":"🄵🅅 Grade (YDS): `5.11c`"},{"key":"climbing:grade:yds_class","value":"5.11d","description":"🄵🅅 Grade (YDS): `5.11d`"},{"key":"climbing:grade:yds_class","value":"5.12a","description":"🄵🅅 Grade (YDS): `5.12a`"},{"key":"climbing:grade:yds_class","value":"5.12b","description":"🄵🅅 Grade (YDS): `5.12b`"},{"key":"climbing:grade:yds_class","value":"5.12c","description":"🄵🅅 Grade (YDS): `5.12c`"},{"key":"climbing:grade:yds_class","value":"5.12d","description":"🄵🅅 Grade (YDS): `5.12d`"},{"key":"climbing:grade:yds_class","value":"5.13a","description":"🄵🅅 Grade (YDS): `5.13a`"},{"key":"climbing:grade:yds_class","value":"5.13b","description":"🄵🅅 Grade (YDS): `5.13b`"},{"key":"climbing:grade:yds_class","value":"5.13c","description":"🄵🅅 Grade (YDS): `5.13c`"},{"key":"climbing:grade:yds_class","value":"5.13d","description":"🄵🅅 Grade (YDS): `5.13d`"},{"key":"climbing:grade:yds_class","value":"5.14a","description":"🄵🅅 Grade (YDS): `5.14a`"},{"key":"climbing:grade:yds_class","value":"5.14b","description":"🄵🅅 Grade (YDS): `5.14b`"},{"key":"climbing:grade:yds_class","value":"5.14c","description":"🄵🅅 Grade (YDS): `5.14c`"},{"key":"climbing:grade:yds_class","value":"5.14d","description":"🄵🅅 Grade (YDS): `5.14d`"},{"key":"climbing:grade:yds_class","value":"5.15a","description":"🄵🅅 Grade (YDS): `5.15a`"},{"key":"climbing:grade:yds_class","value":"5.15b","description":"🄵🅅 Grade (YDS): `5.15b`"},{"key":"climbing:grade:yds_class","value":"5.15c","description":"🄵🅅 Grade (YDS): `5.15c`"},{"key":"climbing:grade:yds_class","value":"5.15d","description":"🄵🅅 Grade (YDS): `5.15d`"},{"key":"climbing:grade:uiaa","description":"🄵 Grade (UIAA)"},{"key":"climbing:grade:uiaa","value":"1-","description":"🄵🅅 Grade (UIAA): `1-`"},{"key":"climbing:grade:uiaa","value":"1","description":"🄵🅅 Grade (UIAA): `1`"},{"key":"climbing:grade:uiaa","value":"1+","description":"🄵🅅 Grade (UIAA): `1+`"},{"key":"climbing:grade:uiaa","value":"2-","description":"🄵🅅 Grade (UIAA): `2-`"},{"key":"climbing:grade:uiaa","value":"2","description":"🄵🅅 Grade (UIAA): `2`"},{"key":"climbing:grade:uiaa","value":"2+","description":"🄵🅅 Grade (UIAA): `2+`"},{"key":"climbing:grade:uiaa","value":"3-","description":"🄵🅅 Grade (UIAA): `3-`"},{"key":"climbing:grade:uiaa","value":"3","description":"🄵🅅 Grade (UIAA): `3`"},{"key":"climbing:grade:uiaa","value":"3+","description":"🄵🅅 Grade (UIAA): `3+`"},{"key":"climbing:grade:uiaa","value":"4-","description":"🄵🅅 Grade (UIAA): `4-`"},{"key":"climbing:grade:uiaa","value":"4","description":"🄵🅅 Grade (UIAA): `4`"},{"key":"climbing:grade:uiaa","value":"4+","description":"🄵🅅 Grade (UIAA): `4+`"},{"key":"climbing:grade:uiaa","value":"5-","description":"🄵🅅 Grade (UIAA): `5-`"},{"key":"climbing:grade:uiaa","value":"5","description":"🄵🅅 Grade (UIAA): `5`"},{"key":"climbing:grade:uiaa","value":"5+","description":"🄵🅅 Grade (UIAA): `5+`"},{"key":"climbing:grade:uiaa","value":"6-","description":"🄵🅅 Grade (UIAA): `6-`"},{"key":"climbing:grade:uiaa","value":"6","description":"🄵🅅 Grade (UIAA): `6`"},{"key":"climbing:grade:uiaa","value":"6+","description":"🄵🅅 Grade (UIAA): `6+`"},{"key":"climbing:grade:uiaa","value":"7-","description":"🄵🅅 Grade (UIAA): `7-`"},{"key":"climbing:grade:uiaa","value":"7","description":"🄵🅅 Grade (UIAA): `7`"},{"key":"climbing:grade:uiaa","value":"7+","description":"🄵🅅 Grade (UIAA): `7+`"},{"key":"climbing:grade:uiaa","value":"8-","description":"🄵🅅 Grade (UIAA): `8-`"},{"key":"climbing:grade:uiaa","value":"8","description":"🄵🅅 Grade (UIAA): `8`"},{"key":"climbing:grade:uiaa","value":"8+","description":"🄵🅅 Grade (UIAA): `8+`"},{"key":"climbing:grade:uiaa","value":"9-","description":"🄵🅅 Grade (UIAA): `9-`"},{"key":"climbing:grade:uiaa","value":"9","description":"🄵🅅 Grade (UIAA): `9`"},{"key":"climbing:grade:uiaa","value":"9+","description":"🄵🅅 Grade (UIAA): `9+`"},{"key":"climbing:grade:uiaa","value":"10-","description":"🄵🅅 Grade (UIAA): `10-`"},{"key":"climbing:grade:uiaa","value":"10","description":"🄵🅅 Grade (UIAA): `10`"},{"key":"climbing:grade:uiaa","value":"10+","description":"🄵🅅 Grade (UIAA): `10+`"},{"key":"climbing:grade:uiaa","value":"11-","description":"🄵🅅 Grade (UIAA): `11-`"},{"key":"climbing:grade:uiaa","value":"11","description":"🄵🅅 Grade (UIAA): `11`"},{"key":"climbing:grade:uiaa","value":"11+","description":"🄵🅅 Grade (UIAA): `11+`"},{"key":"climbing:grade:uiaa","value":"12-","description":"🄵🅅 Grade (UIAA): `12-`"},{"key":"climbing:grade:uiaa","value":"12","description":"🄵🅅 Grade (UIAA): `12`"},{"key":"climbing:grade:uiaa","value":"12+","description":"🄵🅅 Grade (UIAA): `12+`"},{"key":"climbing:grade:uiaa","value":"13-","description":"🄵🅅 Grade (UIAA): `13-`"},{"key":"climbing:grade:uiaa","value":"13","description":"🄵🅅 Grade (UIAA): `13`"},{"key":"climbing:grade:uiaa","value":"13+","description":"🄵🅅 Grade (UIAA): `13+`"},{"key":"climbing:grade:uiaa","value":"14-","description":"🄵🅅 Grade (UIAA): `14-`"},{"key":"climbing:grade:saxon","description":"🄵 Grade (Saxon)"},{"key":"climbing:grade:saxon","value":"I","description":"🄵🅅 Grade (Saxon): `I`"},{"key":"climbing:grade:saxon","value":"II","description":"🄵🅅 Grade (Saxon): `II`"},{"key":"climbing:grade:saxon","value":"III","description":"🄵🅅 Grade (Saxon): `III`"},{"key":"climbing:grade:saxon","value":"IV","description":"🄵🅅 Grade (Saxon): `IV`"},{"key":"climbing:grade:saxon","value":"V","description":"🄵🅅 Grade (Saxon): `V`"},{"key":"climbing:grade:saxon","value":"VI","description":"🄵🅅 Grade (Saxon): `VI`"},{"key":"climbing:grade:saxon","value":"VIIa","description":"🄵🅅 Grade (Saxon): `VIIa`"},{"key":"climbing:grade:saxon","value":"VIIb","description":"🄵🅅 Grade (Saxon): `VIIb`"},{"key":"climbing:grade:saxon","value":"VII","description":"🄵🅅 Grade (Saxon): `VII`"},{"key":"climbing:grade:saxon","value":"VIIc","description":"🄵🅅 Grade (Saxon): `VIIc`"},{"key":"climbing:grade:saxon","value":"VIIIa","description":"🄵🅅 Grade (Saxon): `VIIIa`"},{"key":"climbing:grade:saxon","value":"VIIIb","description":"🄵🅅 Grade (Saxon): `VIIIb`"},{"key":"climbing:grade:saxon","value":"VIIIc","description":"🄵🅅 Grade (Saxon): `VIIIc`"},{"key":"climbing:grade:saxon","value":"IXa","description":"🄵🅅 Grade (Saxon): `IXa`"},{"key":"climbing:grade:saxon","value":"IXb","description":"🄵🅅 Grade (Saxon): `IXb`"},{"key":"climbing:grade:saxon","value":"IXc","description":"🄵🅅 Grade (Saxon): `IXc`"},{"key":"climbing:grade:saxon","value":"Xa","description":"🄵🅅 Grade (Saxon): `Xa`"},{"key":"climbing:grade:saxon","value":"Xb","description":"🄵🅅 Grade (Saxon): `Xb`"},{"key":"climbing:grade:saxon","value":"Xc","description":"🄵🅅 Grade (Saxon): `Xc`"},{"key":"climbing:grade:saxon","value":"XIa","description":"🄵🅅 Grade (Saxon): `XIa`"},{"key":"climbing:grade:saxon","value":"XIb","description":"🄵🅅 Grade (Saxon): `XIb`"},{"key":"climbing:grade:saxon","value":"XIc","description":"🄵🅅 Grade (Saxon): `XIc`"},{"key":"climbing:grade:saxon","value":"XIIa","description":"🄵🅅 Grade (Saxon): `XIIa`"},{"key":"climbing:grade:saxon","value":"XIIb","description":"🄵🅅 Grade (Saxon): `XIIb`"},{"key":"climbing:grade:saxon","value":"XIIc","description":"🄵🅅 Grade (Saxon): `XIIc`"},{"key":"climbing:grade:saxon","value":"XIIIa","description":"🄵🅅 Grade (Saxon): `XIIIa`"},{"key":"climbing:grade:saxon","value":"XIIIb","description":"🄵🅅 Grade (Saxon): `XIIIb`"},{"key":"climbing:grade:saxon","value":"XIIIc","description":"🄵🅅 Grade (Saxon): `XIIIc`"},{"key":"climbing:grade:french","description":"🄵 Grade (French)"},{"key":"climbing:grade:french","value":"1","description":"🄵🅅 Grade (French): `1`"},{"key":"climbing:grade:french","value":"2","description":"🄵🅅 Grade (French): `2`"},{"key":"climbing:grade:french","value":"3-","description":"🄵🅅 Grade (French): `3-`"},{"key":"climbing:grade:french","value":"3","description":"🄵🅅 Grade (French): `3`"},{"key":"climbing:grade:french","value":"3+","description":"🄵🅅 Grade (French): `3+`"},{"key":"climbing:grade:french","value":"4a","description":"🄵🅅 Grade (French): `4a`"},{"key":"climbing:grade:french","value":"4b","description":"🄵🅅 Grade (French): `4b`"},{"key":"climbing:grade:french","value":"4c","description":"🄵🅅 Grade (French): `4c`"},{"key":"climbing:grade:french","value":"5a","description":"🄵🅅 Grade (French): `5a`"},{"key":"climbing:grade:french","value":"5b","description":"🄵🅅 Grade (French): `5b`"},{"key":"climbing:grade:french","value":"5c","description":"🄵🅅 Grade (French): `5c`"},{"key":"climbing:grade:french","value":"5c+","description":"🄵🅅 Grade (French): `5c+`"},{"key":"climbing:grade:french","value":"6a","description":"🄵🅅 Grade (French): `6a`"},{"key":"climbing:grade:french","value":"6a+","description":"🄵🅅 Grade (French): `6a+`"},{"key":"climbing:grade:french","value":"6b","description":"🄵🅅 Grade (French): `6b`"},{"key":"climbing:grade:french","value":"6b+","description":"🄵🅅 Grade (French): `6b+`"},{"key":"climbing:grade:french","value":"6c","description":"🄵🅅 Grade (French): `6c`"},{"key":"climbing:grade:french","value":"6c+","description":"🄵🅅 Grade (French): `6c+`"},{"key":"climbing:grade:french","value":"7a","description":"🄵🅅 Grade (French): `7a`"},{"key":"climbing:grade:french","value":"7a+","description":"🄵🅅 Grade (French): `7a+`"},{"key":"climbing:grade:french","value":"7b","description":"🄵🅅 Grade (French): `7b`"},{"key":"climbing:grade:french","value":"7b+","description":"🄵🅅 Grade (French): `7b+`"},{"key":"climbing:grade:french","value":"7c","description":"🄵🅅 Grade (French): `7c`"},{"key":"climbing:grade:french","value":"7c+","description":"🄵🅅 Grade (French): `7c+`"},{"key":"climbing:grade:french","value":"8a","description":"🄵🅅 Grade (French): `8a`"},{"key":"climbing:grade:french","value":"8a+","description":"🄵🅅 Grade (French): `8a+`"},{"key":"climbing:grade:french","value":"8b","description":"🄵🅅 Grade (French): `8b`"},{"key":"climbing:grade:french","value":"8b+","description":"🄵🅅 Grade (French): `8b+`"},{"key":"climbing:grade:french","value":"8c","description":"🄵🅅 Grade (French): `8c`"},{"key":"climbing:grade:french","value":"8c+","description":"🄵🅅 Grade (French): `8c+`"},{"key":"climbing:grade:french","value":"9a","description":"🄵🅅 Grade (French): `9a`"},{"key":"climbing:grade:french","value":"9a+","description":"🄵🅅 Grade (French): `9a+`"},{"key":"climbing:grade:french","value":"9b","description":"🄵🅅 Grade (French): `9b`"},{"key":"climbing:grade:french","value":"9b+","description":"🄵🅅 Grade (French): `9b+`"},{"key":"climbing:grade:french","value":"9c","description":"🄵🅅 Grade (French): `9c`"},{"key":"climbing:grade:french","value":"9c+","description":"🄵🅅 Grade (French): `9c+`"},{"key":"climbing:grade:french","value":"10a","description":"🄵🅅 Grade (French): `10a`"},{"key":"capacity:tents","description":"🄵 Capacity (Tents)"},{"key":"capacity:persons","description":"🄵 Capacity (Persons)"},{"key":"capacity:disabled","description":"🄵 Accessible Spaces"},{"key":"capacity:caravans","description":"🄵 Capacity (Campervan / Camping Trailer)"},{"key":"camera:type","description":"🄵 Camera Type"},{"key":"camera:type","value":"fixed","description":"🄵🅅 Camera Type: Fixed"},{"key":"camera:type","value":"panning","description":"🄵🅅 Camera Type: Panning"},{"key":"camera:type","value":"dome","description":"🄵🅅 Camera Type: Dome"},{"key":"camera:mount","description":"🄵 Camera Mount"},{"key":"camera:direction","description":"🄵 Direction (Degrees Clockwise)"},{"key":"building:prefabricated","description":"🄵 Prefabricated"},{"key":"building:material","description":"🄵 Material"},{"key":"building:levels","description":"🄵 Levels"},{"key":"building:flats","description":"🄵 Units"},{"key":"building:colour","description":"🄵 Façade Color"},{"key":"building:levels:underground","description":"🄵 Underground Levels"},{"key":"bridge:ref","description":"🄵 Bridge Number"},{"key":"bath:type","description":"🄵 Specialty"},{"key":"bath:type","value":"hammam","description":"🄵🅅 Specialty: Hammam"},{"key":"bath:type","value":"hot_spring","description":"🄵🅅 Specialty: Hot Spring"},{"key":"bath:type","value":"lake","description":"🄵🅅 Specialty: Lake"},{"key":"bath:type","value":"onsen","description":"🄵🅅 Specialty: Onsen"},{"key":"bath:type","value":"thermal","description":"🄵🅅 Specialty: Thermal Bath"},{"key":"bath:sand_bath","description":"🄵 Sand Bath"},{"key":"bath:open_air","description":"🄵 Open Air"},{"key":"aircraft:type","description":"🄵 Type"},{"key":"aircraft:type","value":"military","description":"🄵🅅 Type: Military"},{"key":"aircraft:type","value":"helicopter","description":"🄵🅅 Type: Helicopter"},{"key":"aircraft:type","value":"airliner","description":"🄵🅅 Type: Airliner"},{"key":"aircraft:type","value":"jet","description":"🄵🅅 Type: Jet"},{"key":"aircraft:type","value":"fixed_wing","description":"🄵🅅 Type: Fixed Wing"},{"key":"aircraft:type","value":"cargo","description":"🄵🅅 Type: Cargo"},{"key":"aircraft:type","value":"glider","description":"🄵🅅 Type: Glider"},{"key":"aerialway:occupancy","description":"🄵 Occupancy"},{"key":"aerialway:heating","description":"🄵 Heated"},{"key":"aerialway:duration","description":"🄵 Duration (minutes)"},{"key":"aerialway:capacity","description":"🄵 Capacity (per hour)"},{"key":"aerialway:bubble","description":"🄵 Bubble"},{"key":"aerialway:access","description":"🄵 Access"},{"key":"aerialway:access","value":"entry","description":"🄵🅅 Access: Entry"},{"key":"aerialway:access","value":"exit","description":"🄵🅅 Access: Exit"},{"key":"aerialway:access","value":"both","description":"🄵🅅 Access: Both"},{"key":"aerialway:summer:access","description":"🄵 Access (summer)"},{"key":"aerialway:summer:access","value":"entry","description":"🄵🅅 Access (summer): Entry"},{"key":"aerialway:summer:access","value":"exit","description":"🄵🅅 Access (summer): Exit"},{"key":"aerialway:summer:access","value":"both","description":"🄵🅅 Access (summer): Both"},{"key":"addr:interpolation","value":"all","description":"🄵🅅 Type: All"},{"key":"addr:interpolation","value":"even","description":"🄵🅅 Type: Even"},{"key":"addr:interpolation","value":"odd","description":"🄵🅅 Type: Odd"},{"key":"addr:interpolation","value":"alphabetic","description":"🄵🅅 Type: Alphabetic"},{"key":"aerialway","value":"canopy","description":"🄳 (deprecated tag) ➜ aerialway=zip_line"},{"key":"aeroway","value":"aerobridge","description":"🄳 (deprecated tag) ➜ aeroway=jet_bridge + highway=corridor"},{"key":"access","value":"customer","description":"🄳 (deprecated tag) ➜ access=customers"},{"key":"access","value":"public","description":"🄳 (deprecated tag) ➜ access=yes"},{"key":"aerodrome","value":"military","description":"🄳 (deprecated tag) ➜ military=airfield"},{"key":"aerodrome:type","value":"military","description":"🄳 (deprecated tag) ➜ military=airfield"},{"key":"agrarian","value":"agrcultural_machinry","description":"🄳 (deprecated tag) ➜ agrarian=agricultural_machinery"},{"key":"amenity","value":"advertising","description":"🄳 (deprecated tag) ➜ advertising=*"},{"key":"amenity","value":"artwork","description":"🄳 (deprecated tag) ➜ tourism=artwork"},{"key":"amenity","value":"bail_bonds","description":"🄳 (deprecated tag) ➜ office=bail_bond_agent"},{"key":"amenity","value":"car_repair","description":"🄳 (deprecated tag) ➜ shop=car_repair"},{"key":"amenity","value":"changing_room","description":"🄳 (deprecated tag) ➜ amenity=dressing_room"},{"key":"amenity","value":"citymap_post","description":"🄳 (deprecated tag) ➜ tourism=information"},{"key":"amenity","value":"club","description":"🄳 (deprecated tag) ➜ club=*"},{"key":"amenity","value":"community_center","description":"🄳 (deprecated tag) ➜ amenity=community_centre"},{"key":"amenity","value":"dog_bin","description":"🄳 (deprecated tag) ➜ amenity=waste_basket + waste=dog_excrement"},{"key":"amenity","value":"dog_waste_bin","description":"🄳 (deprecated tag) ➜ amenity=waste_basket + waste=dog_excrement"},{"key":"amenity","value":"ev_charging","description":"🄳 (deprecated tag) ➜ amenity=charging_station"},{"key":"amenity","value":"fire_hydrant","description":"🄳 (deprecated tag) ➜ emergency=fire_hydrant"},{"key":"amenity","value":"firepit","description":"🄳 (deprecated tag) ➜ leisure=firepit"},{"key":"amenity","value":"garage","description":"🄳 (deprecated tag) ➜ landuse=garages"},{"key":"amenity","value":"garages","description":"🄳 (deprecated tag) ➜ landuse=garages"},{"key":"amenity","value":"givebox","description":"🄳 (deprecated tag) ➜ amenity=give_box"},{"key":"amenity","value":"gym","description":"🄳 (deprecated tag) ➜ leisure=fitness_centre"},{"key":"amenity","value":"hotel","description":"🄳 (deprecated tag) ➜ tourism=hotel"},{"key":"amenity","value":"kiosk","description":"🄳 (deprecated tag) ➜ shop=kiosk"},{"key":"amenity","value":"lifeboat_station","description":"🄳 (deprecated tag) ➜ emergency=water_rescue"},{"key":"amenity","value":"lockers","description":"🄳 (deprecated tag) ➜ amenity=locker"},{"key":"amenity","value":"notice_board","description":"🄳 (deprecated tag) ➜ advertising=board"},{"key":"amenity","value":"nursery","description":"🄳 (deprecated tag) ➜ amenity=kindergarten"},{"key":"amenity","value":"preschool","description":"🄳 (deprecated tag) ➜ amenity=kindergarten + preschool=yes"},{"key":"amenity","value":"public_building","description":"🄳 (deprecated tag) ➜ building=public"},{"key":"amenity","value":"real_estate","description":"🄳 (deprecated tag) ➜ office=estate_agent"},{"key":"amenity","value":"register_office","description":"🄳 (deprecated tag) ➜ office=government + government=register_office"},{"key":"amenity","value":"research_institution","description":"🄳 (deprecated tag) ➜ amenity=research_institute"},{"key":"amenity","value":"sauna","description":"🄳 (deprecated tag) ➜ leisure=sauna"},{"key":"amenity","value":"scrapyard","description":"🄳 (deprecated tag) ➜ landuse=industrial + industrial=scrap_yard"},{"key":"amenity","value":"shop","description":"🄳 (deprecated tag) ➜ shop=*"},{"key":"amenity","value":"sloped_curb","description":"🄳 (deprecated tag) ➜ kerb=lowered"},{"key":"amenity","value":"swimming_pool","description":"🄳 (deprecated tag) ➜ leisure=swimming_pool"},{"key":"amenity","value":"ticket_booth","description":"🄳 (deprecated tag) ➜ shop=ticket"},{"key":"amenity","value":"toilet","description":"🄳 (deprecated tag) ➜ amenity=toilets"},{"key":"amenity","value":"weigh_bridge","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"amenity","value":"winery","description":"🄳 (deprecated tag) ➜ craft=winery"},{"key":"amenity","value":"youth_center","description":"🄳 (deprecated tag) ➜ amenity=community_centre + community_centre=youth_centre"},{"key":"amenity","value":"youth_centre","description":"🄳 (deprecated tag) ➜ amenity=community_centre + community_centre=youth_centre"},{"key":"artwork","description":"🄳 (deprecated tag) ➜ artwork_type=*"},{"key":"artwork:type","description":"🄳 (deprecated tag) ➜ artwork_type=*"},{"key":"attraction","value":"ferris_wheel","description":"🄳 (deprecated tag) ➜ attraction=big_wheel"},{"key":"barrier","value":"chicane","description":"🄳 (deprecated tag) ➜ barrier=cycle_barrier"},{"key":"barrier","value":"curb","description":"🄳 (deprecated tag) ➜ barrier=kerb"},{"key":"barrier","value":"embankment","description":"🄳 (deprecated tag) ➜ man_made=embankment"},{"key":"barrier","value":"railing","description":"🄳 (deprecated tag) ➜ barrier=fence + fence_type=railing"},{"key":"barrier","value":"wire_fence","description":"🄳 (deprecated tag) ➜ barrier=fence + fence_type=wire"},{"key":"barrier","value":"wood_fence","description":"🄳 (deprecated tag) ➜ barrier=fence + fence_type=wood"},{"key":"bicycle:oneway","description":"🄳 (deprecated tag) ➜ oneway:bicycle=*"},{"key":"bridge","value":"1","description":"🄳 (deprecated tag) ➜ bridge=yes"},{"key":"bridge","value":"true","description":"🄳 (deprecated tag) ➜ bridge=yes"},{"key":"building","value":"apartment","description":"🄳 (deprecated tag) ➜ building=apartments"},{"key":"building","value":"building","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"Building","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"comercial","description":"🄳 (deprecated tag) ➜ building=commercial"},{"key":"building","value":"convenience","description":"🄳 (deprecated tag) ➜ building=retail"},{"key":"building","value":"detached_house","description":"🄳 (deprecated tag) ➜ building=detached"},{"key":"building","value":"family_house","description":"🄳 (deprecated tag) ➜ building=house"},{"key":"building","value":"home","description":"🄳 (deprecated tag) ➜ building=house"},{"key":"building","value":"House","description":"🄳 (deprecated tag) ➜ building=house"},{"key":"building","value":"household","description":"🄳 (deprecated tag) ➜ building=house"},{"key":"building","value":"offices","description":"🄳 (deprecated tag) ➜ building=office"},{"key":"building","value":"other","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"oui","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"OUI","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"part","description":"🄳 (deprecated tag) ➜ building:part=yes"},{"key":"building","value":"pavillion","description":"🄳 (deprecated tag) ➜ building=pavilion"},{"key":"building","value":"railway_station","description":"🄳 (deprecated tag) ➜ building=train_station"},{"key":"building","value":"Residential","description":"🄳 (deprecated tag) ➜ building=residential"},{"key":"building","value":"services","description":"🄳 (deprecated tag) ➜ building=service"},{"key":"building","value":"shop","description":"🄳 (deprecated tag) ➜ building=retail"},{"key":"building","value":"shops","description":"🄳 (deprecated tag) ➜ building=retail"},{"key":"building","value":"Si","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"Sí","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building","value":"under construction","description":"🄳 (deprecated tag) ➜ building=construction"},{"key":"building","value":"y","description":"🄳 (deprecated tag) ➜ building=yes"},{"key":"building:color","description":"🄳 (deprecated tag) ➜ building:colour=*"},{"key":"building:height","description":"🄳 (deprecated tag) ➜ height=*"},{"key":"building:level","description":"🄳 (deprecated tag) ➜ building:levels=*"},{"key":"building:material","value":"Brick","description":"🄳 (deprecated tag) ➜ building:material=brick"},{"key":"building:min_height","description":"🄳 (deprecated tag) ➜ min_height=*"},{"key":"building:roof:colour","description":"🄳 (deprecated tag) ➜ roof:colour=*"},{"key":"building:roof:shape","description":"🄳 (deprecated tag) ➜ roof:shape=*"},{"key":"building:type","description":"🄳 (deprecated tag) ➜ building=*"},{"key":"camp_site","value":"camp_pitch","description":"🄳 (deprecated tag) ➜ tourism=camp_pitch"},{"key":"color","description":"🄳 (deprecated tag) ➜ colour=*"},{"key":"company","value":"consulting","description":"🄳 (deprecated tag) ➜ office=consulting"},{"key":"content","value":"unknown","description":"🄳 (deprecated tag)"},{"key":"contents","description":"🄳 (deprecated tag) ➜ content=*"},{"key":"craft","value":"car_repair","description":"🄳 (deprecated tag) ➜ shop=car_repair"},{"key":"craft","value":"catering","description":"🄳 (deprecated tag) ➜ craft=caterer"},{"key":"craft","value":"glass","description":"🄳 (deprecated tag) ➜ craft=glaziery"},{"key":"craft","value":"sculpter","description":"🄳 (deprecated tag) ➜ craft=sculptor"},{"key":"crossing","value":"island","description":"🄳 (deprecated tag) ➜ crossing:island=yes"},{"key":"crossing","value":"traffic_lights","description":"🄳 (deprecated tag) ➜ crossing=traffic_signals"},{"key":"cuisine","value":"barbeque","description":"🄳 (deprecated tag) ➜ cuisine=barbecue"},{"key":"cuisine","value":"bbq","description":"🄳 (deprecated tag) ➜ cuisine=barbecue"},{"key":"cuisine","value":"gluten-free","description":"🄳 (deprecated tag) ➜ diet:gluten_free=*"},{"key":"cuisine","value":"halal","description":"🄳 (deprecated tag) ➜ diet:halal=*"},{"key":"cuisine","value":"kosher","description":"🄳 (deprecated tag) ➜ diet:kosher=*"},{"key":"cuisine","value":"vegan","description":"🄳 (deprecated tag) ➜ diet:vegan=*"},{"key":"cuisine","value":"vegetarian","description":"🄳 (deprecated tag) ➜ diet:vegetarian=*"},{"key":"culvert","value":"culvert","description":"🄳 (deprecated tag) ➜ tunnel=culvert"},{"key":"culvert","value":"tunnel","description":"🄳 (deprecated tag) ➜ tunnel=culvert"},{"key":"culvert","value":"yes","description":"🄳 (deprecated tag) ➜ tunnel=culvert"},{"key":"curb","description":"🄳 (deprecated tag) ➜ kerb=*"},{"key":"diaper","value":"1","description":"🄳 (deprecated tag) ➜ changing_table=yes + changing_table:count=1"},{"key":"diaper","value":"no","description":"🄳 (deprecated tag) ➜ changing_table=no"},{"key":"diaper","value":"room","description":"🄳 (deprecated tag) ➜ changing_table=yes + changing_table:location=room"},{"key":"diaper","value":"yes","description":"🄳 (deprecated tag) ➜ changing_table=yes"},{"key":"direction","value":"all","description":"🄳 (deprecated tag) ➜ direction=both"},{"key":"direction","value":"downhill","description":"🄳 (deprecated tag) ➜ incline=down"},{"key":"direction","value":"East","description":"🄳 (deprecated tag) ➜ direction=E"},{"key":"direction","value":"forward;backward","description":"🄳 (deprecated tag) ➜ direction=both"},{"key":"direction","value":"North","description":"🄳 (deprecated tag) ➜ direction=N"},{"key":"direction","value":"South","description":"🄳 (deprecated tag) ➜ direction=S"},{"key":"direction","value":"uphill","description":"🄳 (deprecated tag) ➜ incline=up"},{"key":"direction","value":"West","description":"🄳 (deprecated tag) ➜ direction=W"},{"key":"disabled_spaces","description":"🄳 (deprecated tag) ➜ capacity:disabled=*"},{"key":"door","value":"loadingdock","description":"🄳 (deprecated tag) ➜ amenity=loading_dock"},{"key":"drinkable","description":"🄳 (deprecated tag) ➜ drinking_water=*"},{"key":"embankment","value":"1","description":"🄳 (deprecated tag) ➜ embankment=yes"},{"key":"embankment","value":"false","description":"🄳 (deprecated tag) ➜ embankment=no"},{"key":"embankment","value":"true","description":"🄳 (deprecated tag) ➜ embankment=yes"},{"key":"embassy","value":"embassy","description":"🄳 (deprecated tag) ➜ embassy=yes"},{"key":"emergency","value":"dry_riser_inlet","description":"🄳 (deprecated tag) ➜ emergency=fire_service_inlet + fire_mains=dry"},{"key":"emergency","value":"sprinkler_connection","description":"🄳 (deprecated tag) ➜ emergency=fire_service_inlet + fire_sprinkler=yes"},{"key":"emergency","value":"lifeguard_base","description":"🄳 (deprecated tag) ➜ emergency=lifeguard + lifeguard=base"},{"key":"emergency","value":"lifeguard_platform","description":"🄳 (deprecated tag) ➜ emergency=lifeguard + lifeguard=tower"},{"key":"emergency","value":"lifeguard_tower","description":"🄳 (deprecated tag) ➜ emergency=lifeguard + lifeguard=tower"},{"key":"emergency","value":"water_rescue_station","description":"🄳 (deprecated tag) ➜ emergency=water_rescue"},{"key":"emergency","value":"lifeboat_station","description":"🄳 (deprecated tag) ➜ emergency=water_rescue"},{"key":"emergency","value":"ses_station","description":"🄳 (deprecated tag) ➜ emergency=disaster_response"},{"key":"emergency","value":"marine_rescue","description":"🄳 (deprecated tag) ➜ emergency=water_rescue"},{"key":"emergency_service","value":"air","description":"🄳 (deprecated tag) ➜ emergency=air_rescue_service"},{"key":"entrance","value":"emergency_exit","description":"🄳 (deprecated tag) ➜ entrance=emergency"},{"key":"entrance","value":"fire_exit","description":"🄳 (deprecated tag) ➜ entrance=emergency"},{"key":"entrance","value":"loading_dock","description":"🄳 (deprecated tag) ➜ amenity=loading_dock"},{"key":"entrance","value":"main_entrance","description":"🄳 (deprecated tag) ➜ entrance=main"},{"key":"entrance","value":"private","description":"🄳 (deprecated tag) ➜ entrance=yes + access=private"},{"key":"escalator","description":"🄳 (deprecated tag) ➜ highway=steps + conveying=*"},{"key":"fast_food","value":"pizza","description":"🄳 (deprecated tag) ➜ cuisine=pizza"},{"key":"fast_food","value":"shawarma","description":"🄳 (deprecated tag) ➜ cuisine=shawarma"},{"key":"fee","value":"0","description":"🄳 (deprecated tag) ➜ fee=no"},{"key":"fee","value":"free","description":"🄳 (deprecated tag) ➜ fee=no"},{"key":"fee","value":"Free","description":"🄳 (deprecated tag) ➜ fee=no"},{"key":"fee","value":"No","description":"🄳 (deprecated tag) ➜ fee=no"},{"key":"fee","value":"none","description":"🄳 (deprecated tag) ➜ fee=no"},{"key":"fee","value":"some","description":"🄳 (deprecated tag) ➜ fee=yes"},{"key":"fee","value":"Yes","description":"🄳 (deprecated tag) ➜ fee=yes"},{"key":"FIXME","description":"🄳 (deprecated tag) ➜ fixme=*"},{"key":"footway","value":"both","description":"🄳 (deprecated tag) ➜ sidewalk=both"},{"key":"sidewalk","value":"none","description":"🄳 (deprecated tag) ➜ sidewalk=no"},{"key":"footway","value":"left","description":"🄳 (deprecated tag) ➜ sidewalk=left"},{"key":"footway","value":"no","description":"🄳 (deprecated tag) ➜ sidewalk=no"},{"key":"footway","value":"none","description":"🄳 (deprecated tag) ➜ sidewalk=no"},{"key":"footway","value":"right","description":"🄳 (deprecated tag) ➜ sidewalk=right"},{"key":"footway","value":"separate","description":"🄳 (deprecated tag) ➜ sidewalk=separate"},{"key":"gambling","value":"slot_machine","description":"🄳 (deprecated tag) ➜ gambling=slot_machines"},{"key":"generator:source","value":"photovoltaic","description":"🄳 (deprecated tag) ➜ generator:source=solar + generator:method=photovoltaic"},{"key":"generator:method","value":"solar","description":"🄳 (deprecated tag) ➜ generator:source=solar"},{"key":"golf","value":"faiway","description":"🄳 (deprecated tag) ➜ golf=fairway"},{"key":"golf","value":"putting_green","description":"🄳 (deprecated tag) ➜ golf=green"},{"key":"golf","value":"sand_trap","description":"🄳 (deprecated tag) ➜ golf=bunker + natural=sand"},{"key":"golf","value":"tee_area","description":"🄳 (deprecated tag) ➜ golf=tee"},{"key":"golf","value":"tee_box","description":"🄳 (deprecated tag) ➜ golf=tee"},{"key":"golf","value":"teebox","description":"🄳 (deprecated tag) ➜ golf=tee"},{"key":"healthcare","value":"birthing_center","description":"🄳 (deprecated tag) ➜ healthcare=birthing_centre"},{"key":"healthcare:speciality","value":"internist","description":"🄳 (deprecated tag) ➜ healthcare:speciality=internal"},{"key":"highway","value":"abandoned","description":"🄳 (deprecated tag) ➜ abandoned:highway=*"},{"key":"highway","value":"platform","description":"🄳 (deprecated tag) ➜ highway=platform + public_transport=platform"},{"key":"highway","value":"stile","description":"🄳 (deprecated tag) ➜ barrier=stile"},{"key":"highway","value":"unsurfaced","description":"🄳 (deprecated tag) ➜ highway=road + surface=unpaved"},{"key":"industrial","value":"gas","description":"🄳 (deprecated tag) ➜ utility=gas"},{"key":"information","value":"citymap","description":"🄳 (deprecated tag) ➜ tourism=information + information=map + map_type=street + map_size=city"},{"key":"information","value":"hikingmap","description":"🄳 (deprecated tag) ➜ tourism=information + information=map + map_type=topo + hiking=yes"},{"key":"information","value":"bicyclemap","description":"🄳 (deprecated tag) ➜ tourism=information + information=map + map_type=topo + bicyle=yes"},{"key":"information","value":"nature","description":"🄳 (deprecated tag) ➜ tourism=information + information=board + board_type=nature"},{"key":"information","value":"history","description":"🄳 (deprecated tag) ➜ tourism=information + information=board + board_type=history"},{"key":"information","value":"wild_life","description":"🄳 (deprecated tag) ➜ tourism=information + information=board + board_type=wildlife"},{"key":"information","value":"wildlife","description":"🄳 (deprecated tag) ➜ tourism=information + information=board + board_type=wildlife"},{"key":"internet_access","value":"public","description":"🄳 (deprecated tag) ➜ internet_access=yes + internet_access:fee=no"},{"key":"internet_access","value":"wifi","description":"🄳 (deprecated tag) ➜ internet_access=wlan"},{"key":"internet_access","value":"wi-fi","description":"🄳 (deprecated tag) ➜ internet_access=wlan"},{"key":"internet_access","value":"WLAN","description":"🄳 (deprecated tag) ➜ internet_access=wlan"},{"key":"internet_access:fee","value":"0","description":"🄳 (deprecated tag) ➜ internet_access:fee=no"},{"key":"internet_access:fee","value":"free","description":"🄳 (deprecated tag) ➜ internet_access:fee=no"},{"key":"internet_access:fee","value":"Free","description":"🄳 (deprecated tag) ➜ internet_access:fee=no"},{"key":"internet_access:fee","value":"No","description":"🄳 (deprecated tag) ➜ internet_access:fee=no"},{"key":"internet_access:name","description":"🄳 (deprecated tag) ➜ internet_access:ssid=*"},{"key":"internet_access:type","description":"🄳 (deprecated tag) ➜ internet_access=*"},{"key":"kerb","value":"dropped","description":"🄳 (deprecated tag) ➜ kerb=lowered"},{"key":"kerb","value":"flat","description":"🄳 (deprecated tag) ➜ kerb=flush"},{"key":"lamp_mount","value":"bent mast","description":"🄳 (deprecated tag) ➜ lamp_mount=bent_mast"},{"key":"lamp_mount","value":"straight mast","description":"🄳 (deprecated tag) ➜ lamp_mount=straight_mast"},{"key":"lamp_mount","value":"straightmast","description":"🄳 (deprecated tag) ➜ lamp_mount=straight_mast"},{"key":"lamp_mount","value":"streight_mast","description":"🄳 (deprecated tag) ➜ lamp_mount=straight_mast"},{"key":"lamp_mount","value":"wal","description":"🄳 (deprecated tag) ➜ lamp_mount=wall"},{"key":"lamp_mount","value":"wall mounted","description":"🄳 (deprecated tag) ➜ lamp_mount=wall"},{"key":"lamp_mount","value":"wall_mount","description":"🄳 (deprecated tag) ➜ lamp_mount=wall"},{"key":"lamp_mount","value":"wall_mounted","description":"🄳 (deprecated tag) ➜ lamp_mount=wall"},{"key":"landcover","value":"flower_bed","description":"🄳 (deprecated tag) ➜ landuse=flowerbed"},{"key":"landcover","value":"flowerbed","description":"🄳 (deprecated tag) ➜ landuse=flowerbed"},{"key":"landuse","value":"conservation","description":"🄳 (deprecated tag) ➜ boundary=protected_area"},{"key":"landuse","value":"field","description":"🄳 (deprecated tag) ➜ landuse=farmland"},{"key":"landuse","value":"garden","description":"🄳 (deprecated tag) ➜ leisure=garden"},{"key":"landuse","value":"port","description":"🄳 (deprecated tag) ➜ landuse=industrial + industrial=port"},{"key":"landuse","value":"school","description":"🄳 (deprecated tag) ➜ landuse=education"},{"key":"landuse","value":"wood","description":"🄳 (deprecated tag) ➜ natural=wood"},{"key":"leisure","value":"beach","description":"🄳 (deprecated tag) ➜ natural=beach"},{"key":"leisure","value":"bingo","description":"🄳 (deprecated tag) ➜ amenity=gambling + gambling=bingo"},{"key":"leisure","value":"club","description":"🄳 (deprecated tag) ➜ club=*"},{"key":"leisure","value":"gambling","description":"🄳 (deprecated tag) ➜ amenity=gambling"},{"key":"leisure","value":"golf_pin","description":"🄳 (deprecated tag) ➜ golf=pin"},{"key":"leisure","value":"maze","description":"🄳 (deprecated tag) ➜ attraction=maze"},{"key":"leisure","value":"recreation_ground","description":"🄳 (deprecated tag) ➜ landuse=recreation_ground"},{"key":"leisure","value":"table_tennis_table","description":"🄳 (deprecated tag) ➜ leisure=pitch + sport=table_tennis"},{"key":"leisure","value":"video_arcade","description":"🄳 (deprecated tag) ➜ leisure=amusement_arcade"},{"key":"Level","description":"🄳 (deprecated tag) ➜ level=*"},{"key":"LEVEL","description":"🄳 (deprecated tag) ➜ level=*"},{"key":"levels","description":"🄳 (deprecated tag) ➜ building:levels=*"},{"key":"man_made","value":"cut_line","description":"🄳 (deprecated tag) ➜ man_made=cutline"},{"key":"man_made","value":"flower_bed","description":"🄳 (deprecated tag) ➜ landuse=flowerbed"},{"key":"man_made","value":"flowerbed","description":"🄳 (deprecated tag) ➜ landuse=flowerbed"},{"key":"man_made","value":"fuel_storage_tank","description":"🄳 (deprecated tag) ➜ man_made=storage_tank + content=fuel"},{"key":"man_made","value":"gas_well","description":"🄳 (deprecated tag) ➜ man_made=petroleum_well + substance=gas"},{"key":"man_made","value":"jetty","description":"🄳 (deprecated tag) ➜ man_made=pier"},{"key":"man_made","value":"mdf","description":"🄳 (deprecated tag) ➜ telecom=exchange"},{"key":"man_made","value":"MDF","description":"🄳 (deprecated tag) ➜ telecom=exchange"},{"key":"man_made","value":"oil_tank","description":"🄳 (deprecated tag) ➜ man_made=storage_tank + content=oil"},{"key":"man_made","value":"oil_well","description":"🄳 (deprecated tag) ➜ man_made=petroleum_well + substance=oil"},{"key":"man_made","value":"telephone_exchange","description":"🄳 (deprecated tag) ➜ telecom=exchange"},{"key":"man_made","value":"village_pump","description":"🄳 (deprecated tag) ➜ man_made=water_well"},{"key":"man_made","value":"wastewater_tank","description":"🄳 (deprecated tag) ➜ man_made=storage_tank + content=wastewater"},{"key":"man_made","value":"water_tank","description":"🄳 (deprecated tag) ➜ man_made=storage_tank + content=water"},{"key":"man_made","value":"weigh_bridge","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"weighbridge","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"weighing_machine","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"weighing_scale","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"weighting machine","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"weighting_machine","description":"🄳 (deprecated tag) ➜ amenity=weighbridge"},{"key":"man_made","value":"well","description":"🄳 (deprecated tag) ➜ man_made=water_well"},{"key":"man_made","value":"winery","description":"🄳 (deprecated tag) ➜ craft=winery"},{"key":"maxage","description":"🄳 (deprecated tag) ➜ max_age=*"},{"key":"memorial","value":"plate","description":"🄳 (deprecated tag) ➜ memorial=plaque"},{"key":"men","description":"🄳 (deprecated tag) ➜ male=*"},{"key":"minage","description":"🄳 (deprecated tag) ➜ min_age=*"},{"key":"mining_resource","description":"🄳 (deprecated tag) ➜ resource=*"},{"key":"museum_type","value":"history","description":"🄳 (deprecated tag) ➜ museum=history"},{"key":"museum_type","value":"private","description":"🄳 (deprecated tag) ➜ operator:type=private"},{"key":"museum_type","value":"public","description":"🄳 (deprecated tag) ➜ operator:type=public"},{"key":"natural","value":"marsh","description":"🄳 (deprecated tag) ➜ natural=wetland + wetland=marsh"},{"key":"natural","value":"waterfall","description":"🄳 (deprecated tag) ➜ waterway=waterfall"},{"key":"NOTE","description":"🄳 (deprecated tag) ➜ note=*"},{"key":"office","value":"consultancy","description":"🄳 (deprecated tag) ➜ office=consulting"},{"key":"office","value":"consultant","description":"🄳 (deprecated tag) ➜ office=consulting"},{"key":"office","value":"real_estate","description":"🄳 (deprecated tag) ➜ office=estate_agent"},{"key":"oneway","value":"1","description":"🄳 (deprecated tag) ➜ oneway=yes"},{"key":"oneway","value":"alternate","description":"🄳 (deprecated tag) ➜ oneway=alternating"},{"key":"operator:type","value":"goverment","description":"🄳 (deprecated tag) ➜ operator:type=government"},{"key":"operator:type","value":"Privado","description":"🄳 (deprecated tag) ➜ operator:type=private"},{"key":"operator:type","value":"Private","description":"🄳 (deprecated tag) ➜ operator:type=private"},{"key":"operator:type","value":"Public","description":"🄳 (deprecated tag) ➜ operator:type=public"},{"key":"operator:type","value":"Publico","description":"🄳 (deprecated tag) ➜ operator:type=public"},{"key":"operator:type","value":"unknown","description":"🄳 (deprecated tag)"},{"key":"parking","value":"covered","description":"🄳 (deprecated tag) ➜ covered=yes"},{"key":"parking","value":"customers","description":"🄳 (deprecated tag) ➜ access=customers"},{"key":"parking","value":"entrance","description":"🄳 (deprecated tag) ➜ amenity=parking_entrance"},{"key":"parking","value":"park_and_ride","description":"🄳 (deprecated tag) ➜ park_ride=yes"},{"key":"parking","value":"private","description":"🄳 (deprecated tag) ➜ access=private"},{"key":"parking","value":"street","description":"🄳 (deprecated tag) ➜ parking=lane"},{"key":"parking:lane:both","value":"no","description":"🄳 (deprecated tag) ➜ parking:both=no"},{"key":"parking:lane:both","value":"no_parking","description":"🄳 (deprecated tag) ➜ parking:both=no + parking:both:restriction=no_parking"},{"key":"parking:lane:both","value":"no_stopping","description":"🄳 (deprecated tag) ➜ parking:both=no + parking:both:restriction=no_stopping"},{"key":"parking:lane:both","value":"fire_lane","description":"🄳 (deprecated tag) ➜ parking:both=no + parking:both:restriction=no_stopping + parking:both:restriction:reason=fire_lane"},{"key":"parking:lane:both","value":"separate","description":"🄳 (deprecated tag) ➜ parking:both=separate"},{"key":"parking:lane:both","value":"diagonal","description":"🄳 (deprecated tag) ➜ parking:both=yes + parking:both:orientation=diagonal"},{"key":"parking:lane:both","value":"parallel","description":"🄳 (deprecated tag) ➜ parking:both=yes + parking:both:orientation=parallel"},{"key":"parking:lane:both","value":"perpendicular","description":"🄳 (deprecated tag) ➜ parking:both=yes + parking:both:orientation=perpendicular"},{"key":"parking:lane:both:parallel","value":"on_street","description":"🄳 (deprecated tag) ➜ parking:both=lane"},{"key":"parking:lane:left","value":"no","description":"🄳 (deprecated tag) ➜ parking:left=no"},{"key":"parking:lane:left","value":"no_parking","description":"🄳 (deprecated tag) ➜ parking:left=no + parking:left:restriction=no_parking"},{"key":"parking:lane:left","value":"no_stopping","description":"🄳 (deprecated tag) ➜ parking:left=no + parking:left:restriction=no_stopping"},{"key":"parking:lane:left","value":"separate","description":"🄳 (deprecated tag) ➜ parking:left=separate"},{"key":"parking:lane:left","value":"diagonal","description":"🄳 (deprecated tag) ➜ parking:left=yes + parking:left:orientation=diagonal"},{"key":"parking:lane:left","value":"parallel","description":"🄳 (deprecated tag) ➜ parking:left=yes + parking:left:orientation=parallel"},{"key":"parking:lane:left","value":"perpendicular","description":"🄳 (deprecated tag) ➜ parking:left=yes + parking:left:orientation=perpendicular"},{"key":"parking:lane:right","value":"no","description":"🄳 (deprecated tag) ➜ parking:right=no"},{"key":"parking:lane:right","value":"no_parking","description":"🄳 (deprecated tag) ➜ parking:right=no + parking:right:restriction=no_parking"},{"key":"parking:lane:right","value":"no_stopping","description":"🄳 (deprecated tag) ➜ parking:right=no + parking:right:restriction=no_stopping"},{"key":"parking:lane:right","value":"separate","description":"🄳 (deprecated tag) ➜ parking:right=separate"},{"key":"parking:lane:right","value":"diagonal","description":"🄳 (deprecated tag) ➜ parking:right=yes + parking:right:orientation=diagonal"},{"key":"parking:lane:right","value":"parallel","description":"🄳 (deprecated tag) ➜ parking:right=yes + parking:right:orientation=parallel"},{"key":"parking:lane:right","value":"perpendicular","description":"🄳 (deprecated tag) ➜ parking:right=yes + parking:right:orientation=perpendicular"},{"key":"parking:lane:right:parallel","value":"on_street","description":"🄳 (deprecated tag) ➜ parking:right=lane"},{"key":"parking:orientation","description":"🄳 (deprecated tag) ➜ orientation=*"},{"key":"orientation","value":"orthogonal","description":"🄳 (deprecated tag) ➜ orientation=perpendicular"},{"key":"parking:orientation","value":"orthogonal","description":"🄳 (deprecated tag) ➜ parking:orientation=perpendicular"},{"key":"place_name","description":"🄳 (deprecated tag) ➜ name=*"},{"key":"playground:theme","value":"playground","description":"🄳 (deprecated tag)"},{"key":"pole","value":"transition","description":"🄳 (deprecated tag) ➜ location:transition=yes"},{"key":"pole:type","value":"termination","description":"🄳 (deprecated tag) ➜ line_management=termination"},{"key":"postcode","description":"🄳 (deprecated tag) ➜ addr:postcode=*"},{"key":"power","value":"busbar","description":"🄳 (deprecated tag) ➜ power=line + line=busbar"},{"key":"power","value":"marker","description":"🄳 (deprecated tag) ➜ marker=* + utility=power"},{"key":"power","value":"sub_station","description":"🄳 (deprecated tag) ➜ power=substation"},{"key":"power","value":"underground_cable","description":"🄳 (deprecated tag) ➜ power=cable + location=underground"},{"key":"power_source","description":"🄳 (deprecated tag) ➜ generator:source=*"},{"key":"power_rating","description":"🄳 (deprecated tag) ➜ generator:output=*"},{"key":"pump","value":"hand_pump","description":"🄳 (deprecated tag) ➜ pump=manual"},{"key":"pump","value":"electrical_pump","description":"🄳 (deprecated tag) ➜ pump=powered"},{"key":"pump","value":"no_pump","description":"🄳 (deprecated tag) ➜ pump=no"},{"key":"pump","value":"power","description":"🄳 (deprecated tag) ➜ pump=powered"},{"key":"recommended_speed","description":"🄳 (deprecated tag) ➜ maxspeed:advisory=*"},{"key":"recommended_speed:backward","description":"🄳 (deprecated tag) ➜ maxspeed:advisory:backward=*"},{"key":"recommended_speed:forward","description":"🄳 (deprecated tag) ➜ maxspeed:advisory:forward=*"},{"key":"religion","value":"catholic","description":"🄳 (deprecated tag) ➜ religion=christian + denomination=catholic"},{"key":"roof:color","description":"🄳 (deprecated tag) ➜ roof:colour=*"},{"key":"roof:shape","value":"half_hipped","description":"🄳 (deprecated tag) ➜ roof:shape=half-hipped"},{"key":"route","value":"ncn","description":"🄳 (deprecated tag) ➜ route=bicycle + network=ncn"},{"key":"service","value":"drive_through","description":"🄳 (deprecated tag) ➜ service=drive-through"},{"key":"shop","value":"adult","description":"🄳 (deprecated tag) ➜ shop=erotic"},{"key":"shop","value":"antique","description":"🄳 (deprecated tag) ➜ shop=antiques"},{"key":"shop","value":"army_surplus","description":"🄳 (deprecated tag) ➜ shop=military_surplus"},{"key":"shop","value":"auto_parts","description":"🄳 (deprecated tag) ➜ shop=car_parts"},{"key":"shop","value":"baby","description":"🄳 (deprecated tag) ➜ shop=baby_goods"},{"key":"shop","value":"baby_care","description":"🄳 (deprecated tag) ➜ shop=baby_goods"},{"key":"shop","value":"bags","description":"🄳 (deprecated tag) ➜ shop=bag"},{"key":"shop","value":"bail_bond","description":"🄳 (deprecated tag) ➜ office=bail_bond_agent"},{"key":"shop","value":"bail_bonds","description":"🄳 (deprecated tag) ➜ office=bail_bond_agent"},{"key":"shop","value":"betting","description":"🄳 (deprecated tag) ➜ shop=bookmaker"},{"key":"shop","value":"cafe","description":"🄳 (deprecated tag) ➜ amenity=cafe"},{"key":"shop","value":"consulting","description":"🄳 (deprecated tag) ➜ office=consulting"},{"key":"shop","value":"dive","description":"🄳 (deprecated tag) ➜ shop=scuba_diving"},{"key":"shop","value":"fish","description":"🄳 (deprecated tag) ➜ shop=seafood"},{"key":"shop","value":"fishmonger","description":"🄳 (deprecated tag) ➜ shop=seafood"},{"key":"shop","value":"furnace","description":"🄳 (deprecated tag) ➜ shop=fireplace"},{"key":"shop","value":"gallery","description":"🄳 (deprecated tag) ➜ shop=art"},{"key":"shop","value":"general_store","description":"🄳 (deprecated tag) ➜ shop=general"},{"key":"shop","value":"insurance","description":"🄳 (deprecated tag) ➜ office=insurance"},{"key":"shop","value":"jewellery","description":"🄳 (deprecated tag) ➜ shop=jewelry"},{"key":"shop","value":"lingerie","description":"🄳 (deprecated tag) ➜ shop=clothes + clothes=underwear"},{"key":"shop","value":"luggage","description":"🄳 (deprecated tag) ➜ shop=bag"},{"key":"shop","value":"mattress","description":"🄳 (deprecated tag) ➜ shop=bed"},{"key":"shop","value":"money_transfer","description":"🄳 (deprecated tag) ➜ amenity=money_transfer"},{"key":"shop","value":"moneylender","description":"🄳 (deprecated tag) ➜ shop=money_lender"},{"key":"shop","value":"office_supplies","description":"🄳 (deprecated tag) ➜ shop=stationery"},{"key":"shop","value":"organic","description":"🄳 (deprecated tag) ➜ shop=yes + organic=only"},{"key":"shop","value":"perfume","description":"🄳 (deprecated tag) ➜ shop=perfumery"},{"key":"shop","value":"real_estate","description":"🄳 (deprecated tag) ➜ office=estate_agent"},{"key":"shop","value":"telecommunications","description":"🄳 (deprecated tag) ➜ shop=telecommunication"},{"key":"shop","value":"tickets","description":"🄳 (deprecated tag) ➜ shop=ticket"},{"key":"shop","value":"underwear","description":"🄳 (deprecated tag) ➜ shop=clothes + clothes=underwear"},{"key":"shop","value":"winery","description":"🄳 (deprecated tag) ➜ craft=winery"},{"key":"sloped_curb","value":"0","description":"🄳 (deprecated tag) ➜ kerb=flush"},{"key":"sloped_curb","value":"0.00","description":"🄳 (deprecated tag) ➜ kerb=flush"},{"key":"sloped_curb","value":"0.01","description":"🄳 (deprecated tag) ➜ kerb=lowered + kerb:height=1 cm"},{"key":"sloped_curb","value":"0.02","description":"🄳 (deprecated tag) ➜ kerb=lowered + kerb:height=2 cm"},{"key":"sloped_curb","value":"0.03","description":"🄳 (deprecated tag) ➜ kerb=lowered + kerb:height=3 cm"},{"key":"sloped_curb","value":"at_grade","description":"🄳 (deprecated tag) ➜ kerb=flush"},{"key":"sloped_curb","value":"both","description":"🄳 (deprecated tag) ➜ kerb=lowered"},{"key":"sloped_curb","value":"flush","description":"🄳 (deprecated tag) ➜ kerb=flush"},{"key":"sloped_curb","value":"low","description":"🄳 (deprecated tag) ➜ kerb=lowered"},{"key":"sloped_curb","value":"no","description":"🄳 (deprecated tag) ➜ kerb=raised"},{"key":"sloped_curb","value":"yes","description":"🄳 (deprecated tag) ➜ kerb=lowered"},{"key":"sport","value":"horse_shoes","description":"🄳 (deprecated tag) ➜ sport=horseshoes"},{"key":"sport","value":"horseshoe","description":"🄳 (deprecated tag) ➜ sport=horseshoes"},{"key":"sport","value":"shuffle_board","description":"🄳 (deprecated tag) ➜ sport=shuffleboard"},{"key":"sport","value":"team_handball","description":"🄳 (deprecated tag) ➜ sport=handball"},{"key":"station","value":"light_rail","description":"🄳 (deprecated tag) ➜ station=light_rail + light_rail=yes"},{"key":"station","value":"monorail","description":"🄳 (deprecated tag) ➜ station=monorail + monorail=yes"},{"key":"station","value":"subway","description":"🄳 (deprecated tag) ➜ station=subway + subway=yes"},{"key":"station","value":"train","description":"🄳 (deprecated tag) ➜ station=train + train=yes"},{"key":"street_cabinet","value":"broadband","description":"🄳 (deprecated tag) ➜ utility=telecom"},{"key":"street_cabinet","value":"cable_tv","description":"🄳 (deprecated tag) ➜ utility=television"},{"key":"street_cabinet","value":"communications","description":"🄳 (deprecated tag) ➜ utility=telecom"},{"key":"street_cabinet","value":"gas","description":"🄳 (deprecated tag) ➜ utility=gas"},{"key":"street_cabinet","value":"power","description":"🄳 (deprecated tag) ➜ utility=power"},{"key":"street_cabinet","value":"street_lighting","description":"🄳 (deprecated tag) ➜ utility=street_lighting"},{"key":"street_cabinet","value":"telecom","description":"🄳 (deprecated tag) ➜ utility=telecom"},{"key":"survey_date","description":"🄳 (deprecated tag) ➜ survey:date=*"},{"key":"sustenance","value":"bar","description":"🄳 (deprecated tag) ➜ amenity=bar"},{"key":"sustenance","value":"cafe","description":"🄳 (deprecated tag) ➜ amenity=cafe"},{"key":"sustenance","value":"pub","description":"🄳 (deprecated tag) ➜ amenity=pub"},{"key":"sustenance","value":"restaurant","description":"🄳 (deprecated tag) ➜ amenity=restaurant"},{"key":"theatre:type","value":"amphitheatre","description":"🄳 (deprecated tag) ➜ theatre:type=amphi"},{"key":"todo","description":"🄳 (deprecated tag) ➜ fixme=*"},{"key":"TODO","description":"🄳 (deprecated tag) ➜ fixme=*"},{"key":"toilets:disposal","value":"longdrop","description":"🄳 (deprecated tag) ➜ toilets:disposal=pitlatrine"},{"key":"toilets:disposal","value":"pit_latrine","description":"🄳 (deprecated tag) ➜ toilets:disposal=pitlatrine"},{"key":"toilets:type","value":"flush","description":"🄳 (deprecated tag) ➜ toilets:disposal=flush"},{"key":"toilets:type","value":"pit","description":"🄳 (deprecated tag) ➜ toilets:disposal=pitlatrine"},{"key":"toilets:type","value":"pitlatrine","description":"🄳 (deprecated tag) ➜ toilets:disposal=pitlatrine"},{"key":"toilets:type","value":"pit latrine","description":"🄳 (deprecated tag) ➜ toilets:disposal=pitlatrine"},{"key":"tourism","value":"bed_and_breakfast","description":"🄳 (deprecated tag) ➜ tourism=guest_house + guest_house=bed_and_breakfast"},{"key":"tourism","value":"picnic_table","description":"🄳 (deprecated tag) ➜ leisure=picnic_table"},{"key":"tourism","value":"resort","description":"🄳 (deprecated tag) ➜ leisure=resort"},{"key":"tower:type","value":"power","description":"🄳 (deprecated tag) ➜ power=tower"},{"key":"tower:type","value":"anchor","description":"🄳 (deprecated tag) ➜ line_attachment=anchor"},{"key":"tower:type","value":"suspension","description":"🄳 (deprecated tag) ➜ line_attachment=suspension"},{"key":"tower:type","value":"termination","description":"🄳 (deprecated tag) ➜ line_management=termination"},{"key":"tower:type","value":"transposing","description":"🄳 (deprecated tag) ➜ line_management=transpose"},{"key":"townhall:village","value":"yes","description":"🄳 (deprecated tag) ➜ amenity=townhall + townhall:type=village"},{"key":"transformer","value":"auto","description":"🄳 (deprecated tag) ➜ transformer=yes + windings:auto=yes"},{"key":"transformer","value":"minor_distribution","description":"🄳 (deprecated tag) ➜ transformer=distribution"},{"key":"transformer","value":"traction","description":"🄳 (deprecated tag) ➜ transformer=main"},{"key":"tunnel","value":"1","description":"🄳 (deprecated tag) ➜ tunnel=yes"},{"key":"type","value":"broad_leaved","description":"🄳 (deprecated tag) ➜ leaf_type=broadleaved"},{"key":"type","value":"caldera","description":"🄳 (deprecated tag) ➜ volcano:type=caldera"},{"key":"type","value":"conifer","description":"🄳 (deprecated tag) ➜ leaf_type=needleleaved"},{"key":"type","value":"deciduous","description":"🄳 (deprecated tag) ➜ leaf_cycle=deciduous"},{"key":"type","value":"extinct","description":"🄳 (deprecated tag) ➜ volcano:status=extinct"},{"key":"type","value":"scoria","description":"🄳 (deprecated tag) ➜ volcano:type=scoria"},{"key":"type","value":"shield","description":"🄳 (deprecated tag) ➜ volcano:type=shield"},{"key":"type","value":"strato","description":"🄳 (deprecated tag) ➜ volcano:type=stratovolcano"},{"key":"unnamed","description":"🄳 (deprecated tag) ➜ noname=*"},{"key":"vhf_channel","description":"🄳 (deprecated tag) ➜ vhf=*"},{"key":"volcano","value":"extinct","description":"🄳 (deprecated tag) ➜ volcano:status=extinct"},{"key":"voltage-high","description":"🄳 (deprecated tag) ➜ voltage:primary=*"},{"key":"voltage-low","description":"🄳 (deprecated tag) ➜ voltage:secondary=*"},{"key":"wall_type","value":"noise_barrier","description":"🄳 (deprecated tag) ➜ wall=noise_barrier"},{"key":"water","value":"intermittent","description":"🄳 (deprecated tag) ➜ natural=water + intermittent=yes"},{"key":"water","value":"riverbank","description":"🄳 (deprecated tag) ➜ natural=water + water=river"},{"key":"water","value":"salt","description":"🄳 (deprecated tag) ➜ natural=water + salt=yes"},{"key":"water","value":"tidal","description":"🄳 (deprecated tag) ➜ natural=water + tidal=yes"},{"key":"waterway","value":"aqueduct","description":"🄳 (deprecated tag) ➜ waterway=canal + bridge=aqueduct"},{"key":"waterway","value":"lock","description":"🄳 (deprecated tag) ➜ waterway=canal + lock=yes"},{"key":"waterway","value":"riverbank","description":"🄳 (deprecated tag) ➜ natural=water + water=river"},{"key":"waterway:vhf_channel","description":"🄳 (deprecated tag) ➜ vhf=*"},{"key":"wifi","value":"yes","description":"🄳 (deprecated tag) ➜ internet_access=wlan"},{"key":"wifi","value":"free","description":"🄳 (deprecated tag) ➜ internet_access=wlan + internet_access:fee=no"},{"key":"women","description":"🄳 (deprecated tag) ➜ female=*"},{"key":"wood","value":"coniferous","description":"🄳 (deprecated tag) ➜ leaf_type=needleleaved"},{"key":"wood","value":"deciduous","description":"🄳 (deprecated tag) ➜ leaf_cycle=deciduous"},{"key":"wood","value":"evergreen","description":"🄳 (deprecated tag) ➜ leaf_cycle=evergreen"},{"key":"wood","value":"mixed","description":"🄳 (deprecated tag) ➜ leaf_cycle=mixed + leaf_type=mixed"},{"key":"cycleway","value":"none","description":"🄳 (deprecated tag) ➜ cycleway=no"},{"key":"cycleway:left","value":"none","description":"🄳 (deprecated tag) ➜ cycleway:left=no"},{"key":"cycleway:right","value":"none","description":"🄳 (deprecated tag) ➜ cycleway:right=no"},{"key":"cycleway:both","value":"none","description":"🄳 (deprecated tag) ➜ cycleway:both=no"},{"key":"communication","value":"pole","description":"🄳 (deprecated tag) ➜ man_made=utility_pole + utility=telecom"},{"key":"telephone","value":"pole","description":"🄳 (deprecated tag) ➜ man_made=utility_pole + utility=telecom"},{"key":"telecom","value":"pole","description":"🄳 (deprecated tag) ➜ man_made=utility_pole + utility=telecom"},{"key":"pstn","value":"pole","description":"🄳 (deprecated tag) ➜ man_made=utility_pole + utility=telecom"},{"key":"memorial:type","value":"stolperstein","description":"🄳 (deprecated tag) ➜ memorial=stolperstein"},{"key":"memorial:text","description":"🄳 (deprecated tag) ➜ inscription=*"},{"key":"industrial","value":"brickworks","description":"🄳 (deprecated tag) ➜ industrial=brickyard"},{"key":"cycleway","value":"opposite","description":"🄳 (deprecated tag) ➜ oneway:bicycle=no + cycleway:both=no"},{"key":"man_made","value":"torii","description":"🄳 (deprecated tag) ➜ man_made=ceremonial_gate + ceremonial_gate=torii"},{"key":"man_made","value":"paifang","description":"🄳 (deprecated tag) ➜ man_made=ceremonial_gate + ceremonial_gate=paifang"},{"key":"created_by","description":"🄳🄳 (discarded tag)"},{"key":"odbl","description":"🄳🄳 (discarded tag)"},{"key":"odbl:note","description":"🄳🄳 (discarded tag)"},{"key":"tiger:upload_uuid","description":"🄳🄳 (discarded tag)"},{"key":"tiger:tlid","description":"🄳🄳 (discarded tag)"},{"key":"tiger:source","description":"🄳🄳 (discarded tag)"},{"key":"tiger:separated","description":"🄳🄳 (discarded tag)"},{"key":"geobase:datasetName","description":"🄳🄳 (discarded tag)"},{"key":"geobase:uuid","description":"🄳🄳 (discarded tag)"},{"key":"osmarender:nameDirection","description":"🄳🄳 (discarded tag)"},{"key":"osmarender:renderName","description":"🄳🄳 (discarded tag)"},{"key":"osmarender:renderRef","description":"🄳🄳 (discarded tag)"},{"key":"osmarender:rendernames","description":"🄳🄳 (discarded tag)"},{"key":"sub_sea:type","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:ADS","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:ARE","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:AdminArea","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:COP_label","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:DFD","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:INT","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:INT_label","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:LOC","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:LPN","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:OPC","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:PubFacAdmin","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:RAC","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:RAC_label","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:RIC","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:RIN","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:WSC","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:coordinate","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:curve_id","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:curve_type","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:filename","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:lake_id","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:lat","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:long","description":"🄳🄳 (discarded tag)"},{"key":"KSJ2:river_id","description":"🄳🄳 (discarded tag)"},{"key":"SK53_bulk:load","description":"🄳🄳 (discarded tag)"},{"key":"yh:LINE_NAME","description":"🄳🄳 (discarded tag)"},{"key":"yh:LINE_NUM","description":"🄳🄳 (discarded tag)"},{"key":"yh:STRUCTURE","description":"🄳🄳 (discarded tag)"},{"key":"yh:TOTYUMONO","description":"🄳🄳 (discarded tag)"},{"key":"yh:TYPE","description":"🄳🄳 (discarded tag)"},{"key":"yh:WIDTH","description":"🄳🄳 (discarded tag)"},{"key":"yh:WIDTH_RANK","description":"🄳🄳 (discarded tag)"},{"key":"LINZ2OSM:dataset","description":"🄳🄳 (discarded tag)"},{"key":"LINZ2OSM:layer","description":"🄳🄳 (discarded tag)"},{"key":"LINZ2OSM:source_version","description":"🄳🄳 (discarded tag)"},{"key":"LINZ:dataset","description":"🄳🄳 (discarded tag)"},{"key":"LINZ:layer","description":"🄳🄳 (discarded tag)"},{"key":"LINZ:source_version","description":"🄳🄳 (discarded tag)"},{"key":"linz2osm:objectid","description":"🄳🄳 (discarded tag)"},{"key":"fid","description":"🄳🄳 (discarded tag)"},{"key":"import_uuid","description":"🄳🄳 (discarded tag)"},{"key":"gnis:import_uuid","description":"🄳🄳 (discarded tag)"}]}
\ No newline at end of file
diff --git a/dist/translations/af.json b/dist/translations/af.json
index fed6d4c0..42072ee2 100644
--- a/dist/translations/af.json
+++ b/dist/translations/af.json
@@ -57,11 +57,16 @@
"private": {
"title": "Privaat"
},
+ "unknown": {
+ "title": "Onbekend"
+ },
"yes": {
"title": "Toegelaat"
}
},
+ "placeholder": "Ongespesifiseerd",
"types": {
+ "access": "Alles",
"bicycle": "Fietse",
"foot": "Voet",
"horse": "Perde",
@@ -73,11 +78,16 @@
},
"access_simple": {
"options": {
+ "private": "Privaat",
+ "unknown": "Onbekend",
"yes": "Openbaar"
}
},
"addr/interpolation": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "all": "Alles"
+ }
},
"address": {
"label": "Adres",
@@ -99,17 +109,24 @@
"state": "Staat",
"street": "Straat",
"subdistrict": "Subdistrikt",
- "suburb": "Voorstad"
+ "suburb": "Voorstad",
+ "town": "Dorp"
}
},
"admin_level": {
"label": "Administratiewe vlak"
},
+ "advertising": {
+ "label": "Tipe"
+ },
"aerialway": {
"label": "Tipe"
},
"aerialway/access": {
- "label": "Toegang"
+ "label": "Toegang",
+ "options": {
+ "both": "Beide"
+ }
},
"aerialway/capacity": {
"placeholder": "500, 2500, 5000..."
@@ -128,15 +145,29 @@
"aeroway": {
"label": "Tipe"
},
+ "aircraft/type": {
+ "label": "Tipe",
+ "options": {
+ "military": "Militêre"
+ }
+ },
"amenity": {
"label": "Tipe"
},
+ "archaeological_site": {
+ "label": "Tipe"
+ },
"architect": {
"label": "Argitek"
},
"area/highway": {
"label": "Tipe"
},
+ "armrest": {
+ "options": {
+ "undefined": "Onbekend"
+ }
+ },
"artwork_type": {
"label": "Tipe"
},
@@ -150,11 +181,40 @@
"label": "Kroeg"
},
"barrier": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "bollard": "Toupaal",
+ "cattle_grid": "roosterhek",
+ "city_wall": "Stadsmuur",
+ "cycle_barrier": "Fietshinderpaal",
+ "ditch": "Sloot",
+ "entrance": "Deurgang",
+ "fence": "Heining",
+ "gate": "Hek",
+ "hedge": "Laning",
+ "kissing_gate": "Draaihek",
+ "retaining_wall": "Stuwal",
+ "stile": "Steg",
+ "toll_booth": "Tolhek",
+ "wall": "Muur"
+ }
+ },
+ "barrier_planter": {
+ "label": "Versperring",
+ "options": {
+ "planter": "Ja",
+ "undefined": "Nee"
+ }
},
"basin": {
"label": "Tipe"
},
+ "bath/type": {
+ "options": {
+ "hot_spring": "Warmwaterbron",
+ "lake": "Meer"
+ }
+ },
"beauty": {
"label": "Dienste",
"options": {
@@ -167,6 +227,12 @@
"bicycle_parking": {
"label": "Tipe"
},
+ "bicycle_road": {
+ "options": {
+ "undefined": "Nee",
+ "yes": "Ja"
+ }
+ },
"bin": {
"label": "Asblik"
},
@@ -195,20 +261,70 @@
"label": "Tipe"
},
"bridge_combo": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "boardwalk": "Plankenweg"
+ }
},
"building": {
- "label": "Gebou"
+ "label": "Gebou",
+ "options": {
+ "apartments": "Woonstelgebou",
+ "barn": "Skuur",
+ "bungalow": "Kothuis",
+ "bunker": "Bomskuiling",
+ "cabin": "Blokhut",
+ "chapel": "Kapelgebou",
+ "church": "Kerkgebou",
+ "civic": "Openbare gebou",
+ "college": "Kollegegebou",
+ "commercial": "Kommersiële gebou",
+ "construction": "Gebou in aanbou",
+ "detached": "Alleenstaande woning",
+ "dormitory": "Studentehuis",
+ "farm": "Plaashuis",
+ "farm_auxiliary": "Plaasgebou",
+ "garage": "Garage",
+ "garages": "Vulstasies",
+ "greenhouse": "Kweekhuis",
+ "hangar": "Loodsgebou",
+ "hospital": "Hospitaalgebou",
+ "hotel": "Hotelgebou",
+ "house": "Huis",
+ "houseboat": "Huisboot",
+ "hut": "Hut",
+ "industrial": "Industriële gebou",
+ "kindergarten": "Kleuterskoolgebou",
+ "mosque": "Moskeegebou",
+ "office": "Kantoorgebou",
+ "public": "Openbare gebou",
+ "residential": "Residensiële gebou",
+ "retail": "Kleinhandel-gebou",
+ "roof": "Dak",
+ "ruins": "Vervalle gebou",
+ "school": "Skoolgebou",
+ "semidetached_house": "Halfgekoppelde huis",
+ "service": "Diensgebou",
+ "stable": "Stalle",
+ "temple": "Tempelgebou",
+ "train_station": "Spoorwegstasiegebou",
+ "university": "Universiteitgebou",
+ "warehouse": "Pakhuis"
+ }
},
"building/flats": {
"placeholder": "2, 4, 6, 8..."
},
"building/levels": {
+ "label": "Vlakke",
"placeholder": "2, 4, 6..."
},
"building/levels/underground": {
"placeholder": "2, 4, 6..."
},
+ "building/part": {
+ "label": "Geboudeel"
+ },
"bunker_type": {
"label": "Tipe"
},
@@ -218,6 +334,9 @@
"camera/direction": {
"placeholder": "45, 90, 180, 270"
},
+ "camp_site": {
+ "label": "Tipe"
+ },
"capacity": {
"label": "Kapasiteit",
"placeholder": "50, 100, 200..."
@@ -225,6 +344,9 @@
"capacity/disabled_parking": {
"placeholder": "1, 2, 3..."
},
+ "capacity/persons": {
+ "placeholder": "50, 100, 200..."
+ },
"capacity_parking": {
"placeholder": "10, 20, 30..."
},
@@ -232,7 +354,10 @@
"placeholder": "50, 100, 200..."
},
"castle_type": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "manor": "Landhuis"
+ }
},
"club": {
"label": "Tipe"
@@ -243,6 +368,9 @@
"communication_multi": {
"label": "Kommunikasie"
},
+ "community_centre": {
+ "label": "Tipe"
+ },
"construction": {
"label": "Tipe"
},
@@ -255,12 +383,57 @@
"couplings": {
"placeholder": "1, 2, 3..."
},
+ "covered_no": {
+ "options": {
+ "no": "Nee",
+ "yes": "Ja"
+ }
+ },
"craft": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "beekeeper": "Byeboer",
+ "blacksmith": "Smid",
+ "brewery": "Brouery",
+ "carpenter": "Skrynwerker",
+ "caterer": "Spysenier",
+ "dressmaker": "Kleremaker",
+ "electrician": "Elektrisiën",
+ "gardener": "Tuinier",
+ "glaziery": "Glaswerk",
+ "metal_construction": "Metaalwerk",
+ "painter": "Verwer",
+ "photographer": "Fotograaf",
+ "plumber": "Loodgieter",
+ "roofer": "Dakdekker",
+ "sawmill": "Saagmeule",
+ "shoemaker": "Skoenmaker",
+ "stonemason": "Klipkapper",
+ "tailor": "Snyer",
+ "window_construction": "Vensterraamwerk",
+ "winery": "Wynboer"
+ }
+ },
+ "crop": {
+ "options": {
+ "grass": "Gras"
+ }
},
"crossing": {
"label": "Tipe"
},
+ "crossing/barrier": {
+ "options": {
+ "no": "Nee",
+ "yes": "Ja"
+ }
+ },
+ "crossing_raised": {
+ "options": {
+ "table": "Ja",
+ "undefined": "Nee"
+ }
+ },
"cuisine": {
"options": {
"ice_cream": "Roomys",
@@ -270,6 +443,12 @@
"cutting": {
"label": "Tipe"
},
+ "cycle_barrier": {
+ "label": "Tipe"
+ },
+ "cycle_network": {
+ "label": "Netwerk"
+ },
"denomination": {
"label": "Denominasie"
},
@@ -281,6 +460,9 @@
"yes": "Ja"
}
},
+ "depot": {
+ "label": "Tipe"
+ },
"description": {
"label": "Beskrywing"
},
@@ -297,7 +479,10 @@
"placeholder": "1, 2, 3..."
},
"diplomatic": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "embassy": "Ambassade"
+ }
},
"diplomatic/services": {
"label": "Dienste"
@@ -305,6 +490,16 @@
"direction": {
"placeholder": "45, 90, 180, 270"
},
+ "direction_cardinal-US-CA-NZ": {
+ "label": "Rigting"
+ },
+ "direction_clock": {
+ "label": "Rigting",
+ "options": {
+ "anticlockwise": "Antikloksgewys",
+ "clockwise": "Kloksgewys"
+ }
+ },
"direction_point": {
"placeholder": "45, 90, 180, 270"
},
@@ -324,9 +519,17 @@
"dock": {
"label": "Tipe"
},
+ "dog": {
+ "options": {
+ "yes": "Toegelaat"
+ }
+ },
"door_type": {
"label": "Tipe"
},
+ "drive_through": {
+ "label": "Deurry"
+ },
"electrified": {
"options": {
"no": "Nee"
@@ -336,7 +539,10 @@
"label": "Tipe"
},
"embassy": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "yes": "Ambassade"
+ }
},
"emergency": {
"label": "Noodgeval"
@@ -351,7 +557,10 @@
"label": "Tipe"
},
"entrance": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "emergency": "Nooduitgang"
+ }
},
"fax": {
"label": "Faks",
@@ -363,14 +572,40 @@
"fence_type": {
"label": "Tipe"
},
+ "fire_hydrant/position": {
+ "options": {
+ "parking_lot": "Parkering"
+ }
+ },
"fire_hydrant/type": {
"options": {
"wall": "Muur"
}
},
+ "fire_mains": {
+ "options": {
+ "no": "Nee"
+ }
+ },
+ "fire_service_inlet": {
+ "options": {
+ "wall": "Muur"
+ }
+ },
+ "fire_sprinkler": {
+ "options": {
+ "no": "Nee"
+ }
+ },
"fixme": {
"label": "Maak My Reg"
},
+ "flashing_lights": {
+ "options": {
+ "no": "Nee",
+ "yes": "Ja"
+ }
+ },
"ford": {
"label": "Tipe"
},
@@ -386,6 +621,11 @@
"gender": {
"placeholder": "Onbekend"
},
+ "generator/method": {
+ "options": {
+ "water-storage": "Reservoir"
+ }
+ },
"generator/type": {
"label": "Tipe"
},
@@ -399,13 +639,39 @@
"placeholder": "1-18"
},
"healthcare": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "clinic": "Kliniek",
+ "dentist": "Tandarts",
+ "doctor": "Dokter"
+ }
},
"highway": {
"label": "Tipe"
},
+ "highway_cartpath": {
+ "options": {
+ "service": "Diensweg"
+ }
+ },
"historic": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "archaeological_site": "Argeologiese plek",
+ "boundary_stone": "Grenspaal",
+ "building": "Historiese gebou",
+ "castle": "Kasteel",
+ "fort": "Historiese fort",
+ "manor": "Landhuis",
+ "memorial": "Gedenkteken",
+ "monument": "Monument",
+ "railway": "Spoorlyn",
+ "ruins": "Reune",
+ "tomb": "Graf",
+ "wayside_cross": "Wegteken",
+ "wayside_shrine": "Wegaltaar",
+ "wreck": "Wrak"
+ }
},
"holding_position/type": {
"label": "Tipe",
@@ -416,24 +682,12 @@
"hoops": {
"placeholder": "1, 2, 4..."
},
- "horse_dressage": {
- "options": {
- "equestrian": "Ja",
- "undefined": "Nee"
- }
- },
"horse_riding": {
"options": {
"horse_riding": "Ja",
"undefined": "Nee"
}
},
- "horse_stables": {
- "options": {
- "stables": "Ja",
- "undefined": "Nee"
- }
- },
"incline": {
"label": "Steilte"
},
@@ -459,8 +713,11 @@
"yes": "Ja"
}
},
- "internet_access/fee": {
- "label": "Internettoegang"
+ "irrigation_pivot": {
+ "options": {
+ "pivot": "Ja",
+ "undefined": "Nee"
+ }
},
"junction/ref_oneway": {
"label": "Verkeerskruising nummer"
@@ -468,6 +725,19 @@
"junction_line": {
"label": "Verkeerskruising"
},
+ "kerb": {
+ "options": {
+ "no": {
+ "title": "Nee"
+ },
+ "yes": {
+ "title": "Ja"
+ }
+ }
+ },
+ "kerb/kerb_barrier": {
+ "label": "Tipe"
+ },
"kneipp_water_cure_multi": {
"label": "Kom"
},
@@ -487,9 +757,18 @@
"leisure": {
"label": "Tipe"
},
+ "level_semi": {
+ "label": "Vlakke"
+ },
"liaison": {
"label": "Tipe"
},
+ "lifeguard": {
+ "label": "Tipe"
+ },
+ "lift_gate/type": {
+ "label": "Tipe"
+ },
"location": {
"label": "Plek"
},
@@ -511,6 +790,12 @@
"marker": {
"label": "Tipe"
},
+ "material": {
+ "options": {
+ "sand": "Sand",
+ "wood": "Woud"
+ }
+ },
"maxspeed": {
"label": "Spoedlimiet",
"placeholder": "40, 50, 60..."
@@ -518,15 +803,28 @@
"maxspeed/advisory": {
"placeholder": "40, 50, 60..."
},
+ "maxspeed/hgv": {
+ "placeholder": "40, 50, 60..."
+ },
"memorial": {
"label": "Tipe"
},
"minspeed": {
"placeholder": "20, 30, 40..."
},
+ "mobile": {
+ "placeholder": "+27 11 907 1111"
+ },
"monitoring_multi": {
"label": "Monitering"
},
+ "mooring": {
+ "options": {
+ "no": "Nee",
+ "private": "Privaat",
+ "yes": "Ja"
+ }
+ },
"mtb/scale": {
"placeholder": "0, 1, 2, 3..."
},
@@ -548,24 +846,61 @@
},
"network_bicycle": {
"options": {
- "ncn": "Nasionaal"
+ "ncn": "Nasionaal",
+ "rcn": "Streek"
}
},
"network_foot": {
"options": {
- "nwn": "Nasionaal"
+ "nwn": "Nasionaal",
+ "rwn": "Streek"
}
},
"network_horse": {
"options": {
- "nhn": "Nasionaal"
+ "nhn": "Nasionaal",
+ "rhn": "Streek"
}
},
+ "network_road": {
+ "label": "Netwerk"
+ },
"note": {
"label": "Nota"
},
+ "nudism": {
+ "options": {
+ "designated": "Toegewys",
+ "no": "Toegang Verbode",
+ "yes": "Toegelaat"
+ }
+ },
"office": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "accountant": "Boekhouer",
+ "advertising_agency": "Advetensieagentskap",
+ "architect": "Argitek",
+ "charity": "Liefdadigheidskantoor",
+ "diplomatic": "Diplomatiekekantoor",
+ "educational_institution": "Opvoedkundige instelling",
+ "employment_agency": "Werksagentskap",
+ "energy_supplier": "Energieverskafferkantoor",
+ "estate_agent": "Eiendomsagent",
+ "financial": "Finansieële kantoor",
+ "financial_advisor": "Finansieële adviseur",
+ "government": "Regeringskantoor",
+ "insurance": "Versekeringskantoor",
+ "newspaper": "Koerant kantoor",
+ "ngo": "NRO-kantoor",
+ "notary": "Notaris",
+ "quango": "Kwasi NRO-kantoor",
+ "religion": "Godsdienskantoor",
+ "research": "Navorsingskantoor",
+ "tax_advisor": "Belastingadviseur",
+ "telecommunication": "Telekommunikasiekantoor",
+ "travel_agent": "Reisagent"
+ }
},
"oneway": {
"label": "Eenrigting",
@@ -596,15 +931,35 @@
"par": {
"placeholder": "3, 4, 5..."
},
+ "parcel_pickup": {
+ "options": {
+ "no": "Nee",
+ "yes": "Ja"
+ }
+ },
"park_ride": {
"label": "Parkeer en ry"
},
"parking": {
"label": "Tipe",
"options": {
- "garage_boxes": "Vulstasies",
- "rooftop": "Dak",
- "sheds": "Skure"
+ "garage_boxes": {
+ "title": "Vulstasies"
+ },
+ "rooftop": {
+ "title": "Dak"
+ },
+ "sheds": {
+ "title": "Skure"
+ },
+ "surface": {
+ "title": "Oppervlakte"
+ }
+ }
+ },
+ "parking/side/parking": {
+ "options": {
+ "no": "Nee"
}
},
"parking_entrance": {
@@ -617,8 +972,10 @@
"placeholder": "1, 2, 3..."
},
"phone": {
- "label": "Telefoon",
- "placeholder": "+27 11 907 1111"
+ "label": "Telefoon"
+ },
+ "pipeline": {
+ "label": "Tipe"
},
"piste/type": {
"label": "Tipe",
@@ -639,6 +996,9 @@
"plots": {
"placeholder": "10, 20, 30..."
},
+ "post_box/type": {
+ "label": "Tipe"
+ },
"power": {
"label": "Tipe"
},
@@ -657,12 +1017,21 @@
"railway/position": {
"label": "Mylpaal plek"
},
+ "ramp": {
+ "options": {
+ "no": "Nee",
+ "yes": "Ja"
+ }
+ },
"recycling_type": {
"label": "Tipe",
"options": {
"centre": "Sentrum"
}
},
+ "ref_disc_golf_hole": {
+ "placeholder": "1-18"
+ },
"ref_golf_hole": {
"placeholder": "1-18"
},
@@ -695,7 +1064,16 @@
"label": "Tipe"
},
"religion": {
- "label": "Geloof"
+ "label": "Geloof",
+ "options": {
+ "buddhist": "Boeddhis",
+ "christian": "Christen",
+ "hindu": "Hindoe",
+ "jewish": "Joods",
+ "muslim": "Moslem",
+ "shinto": "Sjinto",
+ "taoist": "Taoist"
+ }
},
"residential": {
"label": "Tipe"
@@ -703,9 +1081,17 @@
"resort": {
"label": "Tipe"
},
+ "resource": {
+ "options": {
+ "sand": "Sand"
+ }
+ },
"restriction": {
"label": "Tipe"
},
+ "roller_coaster/track": {
+ "label": "Tipe"
+ },
"room": {
"label": "Tipe"
},
@@ -718,6 +1104,11 @@
"route_master": {
"label": "Tipe"
},
+ "royal_cypher-GB": {
+ "options": {
+ "no": "Nee"
+ }
+ },
"ruins": {
"label": "Tipe"
},
@@ -737,6 +1128,12 @@
"other": "Ander"
}
},
+ "seamark/harbour/category_marina": {
+ "options": {
+ "marina": "Ja",
+ "marina_no_facilities": "Nee"
+ }
+ },
"seamark/type": {
"label": "Seemerker"
},
@@ -752,6 +1149,9 @@
"service": {
"label": "Tipe",
"options": {
+ "alley": "Steeg",
+ "drive-through": "Deurry",
+ "driveway": "Oprit",
"emergency_access": "Noodtoegang",
"parking_aisle": "In parkering"
}
@@ -787,21 +1187,30 @@
"label": "Tipe"
},
"social_facility": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "nursing_home": "Verpleging- en versorgingshuis",
+ "shelter": "Skuiling"
+ }
+ },
+ "source": {
+ "options": {
+ "osm notes": "OpenStreetMap notas"
+ }
},
"sport": {
"label": "Sporte"
},
- "sport_ice": {
+ "sport/sport_ice": {
"label": "Sporte"
},
- "sport_racing_motor": {
- "label": "Sporte",
- "options": {
- "motor": "Motorsport"
- }
+ "sport/sport_pub": {
+ "label": "Sporte"
},
- "sport_racing_nonmotor": {
+ "sport/sport_racing_motor": {
+ "label": "Sporte"
+ },
+ "sport/sport_racing_nonmotor": {
"label": "Sporte"
},
"step_count": {
@@ -835,7 +1244,19 @@
},
"placeholder": "Onbekend"
},
+ "structure_canal": {
+ "label": "Struktuur",
+ "options": {
+ "bridge": "Brug",
+ "tunnel": "Tonnel"
+ },
+ "placeholder": "Onbekend"
+ },
+ "structure_power": {
+ "label": "Struktuur"
+ },
"structure_waterway": {
+ "label": "Struktuur",
"options": {
"tunnel": "Tonnel"
},
@@ -844,8 +1265,23 @@
"studio": {
"label": "Tipe"
},
+ "substance": {
+ "options": {
+ "fuel": "Brandstof",
+ "water": "Drinkwater"
+ }
+ },
"substation": {
- "label": "Tipe"
+ "label": "Tipe",
+ "options": {
+ "industrial": "Industrieel"
+ }
+ },
+ "substation_pipeline": {
+ "label": "Tipe",
+ "options": {
+ "industrial": "Industrieel"
+ }
},
"supervised": {
"label": "Onder toesig"
@@ -854,7 +1290,8 @@
"label": "Oppervlakte",
"options": {
"grass": "Gras",
- "sand": "Sand"
+ "sand": "Sand",
+ "wood": "Woud"
}
},
"surveillance": {
@@ -866,6 +1303,17 @@
"surveillance/zone": {
"label": "Toesiggebied"
},
+ "survey_point/purpose": {
+ "options": {
+ "both": "Beide"
+ }
+ },
+ "survey_point/structure": {
+ "label": "Struktuur",
+ "options": {
+ "block": "Blok"
+ }
+ },
"swimming_pool": {
"label": "Tipe"
},
@@ -881,9 +1329,23 @@
"telecom": {
"label": "Tipe"
},
+ "telescope/type": {
+ "label": "Tipe"
+ },
"toilets": {
"label": "Toilette"
},
+ "toilets/menstrual_products": {
+ "options": {
+ "no": "Nee"
+ }
+ },
+ "toilets/wheelchair": {
+ "options": {
+ "no": "Nee",
+ "yes": "Ja"
+ }
+ },
"tomb": {
"label": "Tipe"
},
@@ -893,6 +1355,9 @@
"tower/construction": {
"label": "In aanbou"
},
+ "tower/platforms": {
+ "placeholder": "1, 2, 3..."
+ },
"tower/type": {
"label": "Tipe"
},
@@ -914,6 +1379,12 @@
"traffic_signals": {
"label": "Tipe"
},
+ "traffic_signals/sound": {
+ "options": {
+ "no": "Nee",
+ "yes": "Ja"
+ }
+ },
"trail_visibility": {
"label": "Sigbaarheid van pad"
},
@@ -932,10 +1403,23 @@
"tunnel_combo": {
"label": "Tipe"
},
+ "two_sided": {
+ "options": {
+ "undefined": "Nee",
+ "yes": "Ja"
+ }
+ },
"usage_rail": {
"options": {
"industrial": "Industrieel",
- "military": "Militêre"
+ "military": "Militêre",
+ "tourism": "Toerisme"
+ }
+ },
+ "utility": {
+ "options": {
+ "power": "Krag",
+ "water": "Water"
}
},
"valve": {
@@ -953,6 +1437,13 @@
"tram": "Trem"
}
},
+ "vending": {
+ "options": {
+ "fuel": "Brandstof",
+ "ice_cream": "Roomys",
+ "water": "Drinkwater"
+ }
+ },
"volcano/type": {
"label": "Vuurspuwende berg"
},
@@ -966,7 +1457,13 @@
"label": "Waterpunt"
},
"water_source": {
- "label": "Waterbron"
+ "label": "Waterbron",
+ "options": {
+ "pond": "Dammetjie",
+ "river": "Rivier",
+ "stream": "Stroom",
+ "water_tank": "Watertenk"
+ }
},
"water_tank/volume": {
"placeholder": "10000, 20000, 30000…"
@@ -975,7 +1472,11 @@
"label": "Tipe"
},
"website": {
- "label": "Webwerf"
+ "label": "Webwerf",
+ "placeholder": "https://voorbeeld.com"
+ },
+ "website/menu": {
+ "placeholder": "https://voorbeeld.com"
},
"wetland": {
"label": "Tipe"
@@ -993,6 +1494,12 @@
"windings": {
"placeholder": "1, 2, 3..."
},
+ "windings/auto": {
+ "options": {
+ "no": "Nee",
+ "yes": "Ja"
+ }
+ },
"windings/configuration": {
"options": {
"open": "Oop"
@@ -1148,9 +1655,6 @@
"amenity/clock": {
"name": "Klok"
},
- "amenity/college": {
- "name": "Kollegegebied"
- },
"amenity/community_centre": {
"name": "Gemeenskapsentrum"
},
@@ -1172,9 +1676,6 @@
"amenity/drinking_water": {
"name": "Drinkwater"
},
- "amenity/driving_school": {
- "name": "Bestuurskool"
- },
"amenity/embassy": {
"name": "Ambassade"
},
@@ -1217,12 +1718,6 @@
"amenity/internet_cafe": {
"name": "Internetkafee"
},
- "amenity/kindergarten": {
- "name": "Kleuterskoolgebied"
- },
- "amenity/language_school": {
- "name": "Taalskool"
- },
"amenity/library": {
"name": "Biblioteek"
},
@@ -1238,9 +1733,6 @@
"amenity/motorcycle_parking": {
"name": "Motorfietsparkering"
},
- "amenity/music_school": {
- "name": "Musiekskool"
- },
"amenity/nightclub": {
"name": "Nagklub"
},
@@ -1269,6 +1761,15 @@
"amenity/place_of_worship/buddhist": {
"name": "Boeddhiste tempel"
},
+ "amenity/place_of_worship/christian": {
+ "name": "Christen Kerk"
+ },
+ "amenity/place_of_worship/jewish": {
+ "name": "Joodse Sinagoge"
+ },
+ "amenity/place_of_worship/muslim": {
+ "name": "Moslem Moskee"
+ },
"amenity/police": {
"name": "Polisie"
},
@@ -1302,9 +1803,6 @@
"amenity/restaurant/seafood": {
"name": "Seekosrestaurant"
},
- "amenity/school": {
- "name": "Skoolgebied"
- },
"amenity/shelter": {
"name": "Skuiling"
},
@@ -1332,30 +1830,24 @@
"amenity/theatre": {
"name": "Teater"
},
+ "amenity/toilets": {
+ "name": "Badkamer"
+ },
"amenity/townhall": {
"name": "Stadsaal"
},
"amenity/townhall/city": {
"name": "Stadsaal"
},
- "amenity/university": {
- "name": "Universiteitgebied"
- },
"amenity/vehicle_inspection": {
"name": "Voertuiginspeksie"
},
"amenity/vending_machine": {
"name": "Verkoopmasjien"
},
- "amenity/vending_machine/fuel": {
- "name": "Gaspomp"
- },
"amenity/veterinary": {
"name": "Veearts"
},
- "amenity/waste_basket": {
- "name": "Snippermandjie"
- },
"amenity/watering_place": {
"name": "Drinkplek"
},
@@ -1539,9 +2031,6 @@
"building/stable": {
"name": "Stalle"
},
- "building/static_caravan": {
- "name": "Karavaan"
- },
"building/temple": {
"name": "Tempelgebou"
},
@@ -1644,6 +2133,9 @@
"disused/shop": {
"name": "Winkel in onbruik"
},
+ "embankment": {
+ "name": "Dyk"
+ },
"emergency": {
"name": "Noodgevalbaken"
},
@@ -1653,12 +2145,6 @@
"emergency/defibrillator": {
"name": "Defibrillator"
},
- "emergency/designated": {
- "name": "Noodtoegang: Toegewys"
- },
- "emergency/destination": {
- "name": "Noodtoegang: Eindbestemming"
- },
"emergency/fire_extinguisher": {
"name": "Brandblusser"
},
@@ -1668,27 +2154,15 @@
"emergency/life_ring": {
"name": "Reddingsboei"
},
- "emergency/no": {
- "name": "Geen noodtoegang"
- },
- "emergency/official": {
- "name": "Noodtoegang: Officieel"
- },
"emergency/phone": {
"name": "Noodtelefoon"
},
- "emergency/private": {
- "name": "Noodtoegang: Privaat"
- },
"emergency/siren": {
"name": "Noodsirene"
},
"emergency/water_tank": {
"name": "Noodwatertenk"
},
- "emergency/yes": {
- "name": "Noodtoegang: Ja"
- },
"entrance": {
"name": "Ingang/Uitgang",
"terms": "ingang,uitgang"
@@ -1744,6 +2218,9 @@
"highway/footway": {
"name": "Voetpad"
},
+ "highway/footway/crossing/unmarked": {
+ "name": "Nie gemerk kruis"
+ },
"highway/give_way": {
"name": "Toegeeteken"
},
@@ -1829,7 +2306,8 @@
"name": "Snelheidskamera"
},
"highway/steps": {
- "name": "Trappe"
+ "name": "Trappe",
+ "terms": "treë"
},
"highway/stop": {
"name": "Stopteken"
@@ -2010,6 +2488,9 @@
"name": "Boord",
"terms": "boord,vrugteboord"
},
+ "landuse/pond": {
+ "name": "Dammetjie"
+ },
"landuse/quarry": {
"name": "Kwarrie",
"terms": "steengroef,klipbreekgat,groef"
@@ -2036,6 +2517,9 @@
"name": "Druiweprieel",
"terms": "wingerd"
},
+ "leisure": {
+ "name": "Gemakseienksap"
+ },
"leisure/dog_park": {
"name": "Hondepark"
},
@@ -2109,6 +2593,9 @@
"name": "Lyn",
"terms": "lyn"
},
+ "man_made": {
+ "name": "Mensgemaakde eienskap"
+ },
"man_made/breakwater": {
"name": "Breekwater",
"terms": "seebreker,golfbreker"
@@ -2116,6 +2603,15 @@
"man_made/bridge": {
"name": "Bruggebied"
},
+ "man_made/cutline": {
+ "name": "snylyn"
+ },
+ "man_made/embankment": {
+ "name": "Dyk"
+ },
+ "man_made/fuel_pump": {
+ "name": "Gaspomp"
+ },
"man_made/lighthouse": {
"name": "Ligtoring",
"terms": "lugtoring"
@@ -2305,7 +2801,8 @@
"terms": "meer"
},
"natural/water/pond": {
- "name": "Dammetjie"
+ "name": "Dammetjie",
+ "terms": "poel,poeletjie,dammetjie"
},
"natural/water/reservoir": {
"name": "Reservoir"
@@ -2454,6 +2951,9 @@
"power": {
"name": "Kragbaken"
},
+ "power/generator": {
+ "name": "kragopwekker"
+ },
"power/line": {
"name": "Kraglyn",
"terms": "kraglyn,kragdraad"
@@ -2468,7 +2968,8 @@
"name": "Kragpaal"
},
"power/substation": {
- "name": "Substasie"
+ "name": "Substasie",
+ "terms": "substasie"
},
"power/tower": {
"name": "Hoogspanningstoring"
@@ -2684,6 +3185,9 @@
"shop/bookmaker": {
"name": "Beroepswedder"
},
+ "shop/books": {
+ "name": "Boekwinkel"
+ },
"shop/boutique": {
"name": "Boetiek"
},
@@ -2708,6 +3212,9 @@
"shop/cheese": {
"name": "Kaaswinkel"
},
+ "shop/chemist": {
+ "name": "Apteek"
+ },
"shop/chocolate": {
"name": "Sjokoladewinkel"
},
@@ -2796,6 +3303,10 @@
"shop/interior_decoration": {
"name": "Binnenshuise versieringwinkel"
},
+ "shop/kiosk": {
+ "name": "Kiosk",
+ "aliases": "kaffee"
+ },
"shop/laundry": {
"name": "Wassery"
},
@@ -2883,11 +3394,15 @@
"tourism/attraction": {
"name": "Toerismeaantreklikheid"
},
+ "tourism/camp_site": {
+ "name": "Kampterrein"
+ },
"tourism/caravan_site": {
"name": "RV Park"
},
"tourism/guest_house": {
- "name": "Gastehuis"
+ "name": "Gastehuis",
+ "terms": "gastehuis,oornag verblyf"
},
"tourism/hostel": {
"name": "Hostel"
@@ -2919,8 +3434,8 @@
"tourism/zoo": {
"name": "Dieretuin"
},
- "traffic_calming/island": {
- "name": "Verkeerseiland"
+ "traffic_sign": {
+ "name": "Verkeersteken"
},
"type/boundary": {
"name": "Grens"
@@ -2986,6 +3501,9 @@
"type/route/tram": {
"name": "Tremroete"
},
+ "type/route_master": {
+ "name": "Roete Meester"
+ },
"type/site": {
"name": "Plek"
},
diff --git a/dist/translations/af.min.json b/dist/translations/af.min.json
index 6bb0a3e1..2a98711e 100644
--- a/dist/translations/af.min.json
+++ b/dist/translations/af.min.json
@@ -1 +1 @@
-{"af":{"presets":{"categories":{"category-barrier":{"name":"Versperringbakens"},"category-building":{"name":"Geboubakens"},"category-golf":{"name":"Golfbakens"},"category-landuse":{"name":"Landgebruikbakens"},"category-natural":{"name":"Natuurlike bakens"},"category-path":{"name":"Pade"},"category-playground":{"name":"Speelgrondtoestel"},"category-rail":{"name":"Spoorweg"},"category-road_major":{"name":"Wege"},"category-road_minor":{"name":"Kleine wege"},"category-road_service":{"name":"Dienswege"},"category-route":{"name":"Roetebakens"},"category-waterway":{"name":"Waterwege"}},"fields":{"access":{"options":{"designated":{"title":"Toegewys"},"destination":{"title":"Eindbestemming"},"no":{"title":"Toegang Verbode"},"private":{"title":"Privaat"},"yes":{"title":"Toegelaat"}},"types":{"bicycle":"Fietse","foot":"Voet","horse":"Perde","motor_vehicle":"Motorvoertuie"}},"access_aisle":{"label":"Tipe"},"access_simple":{"options":{"yes":"Openbaar"}},"addr/interpolation":{"label":"Tipe"},"address":{"label":"Adres","placeholders":{"block_number":"Blokgetal","city":"Stad","city!jp":"Stad/Dorp/Gehug/Tokyo Speciaal Distrikt","city!vn":"Stad/Dorp","conscriptionnumber":"123","country":"Land","county":"Distrik","hamlet":"Gehuggie","housename":"Huisnaam","housenumber":"123","neighbourhood":"Woonbuurt","place":"Plek","postcode":"Poskode","quarter":"Wyk","state":"Staat","street":"Straat","subdistrict":"Subdistrikt","suburb":"Voorstad"}},"admin_level":{"label":"Administratiewe vlak"},"aerialway":{"label":"Tipe"},"aerialway/access":{"label":"Toegang"},"aerialway/capacity":{"placeholder":"500, 2500, 5000..."},"aerialway/duration":{"placeholder":"1, 2, 3..."},"aerialway/occupancy":{"placeholder":"2, 4, 8..."},"aerialway/summer/access":{"options":{"both":"Beide"}},"aeroway":{"label":"Tipe"},"amenity":{"label":"Tipe"},"architect":{"label":"Argitek"},"area/highway":{"label":"Tipe"},"artwork_type":{"label":"Tipe"},"atm":{"label":"OTM"},"attraction":{"label":"Tipe"},"bar":{"label":"Kroeg"},"barrier":{"label":"Tipe"},"basin":{"label":"Tipe"},"beauty":{"label":"Dienste","options":{"cosmetics":"Kosmetiek"}},"bench":{"label":"Bankie"},"bicycle_parking":{"label":"Tipe"},"bin":{"label":"Asblik"},"blind":{"options":{"no":"Nee","yes":"Ja"}},"board_type":{"label":"Tipe"},"bollard":{"label":"Tipe"},"boules":{"label":"Tipe"},"boundary":{"label":"Tipe"},"bridge":{"label":"Tipe"},"bridge/support":{"label":"Tipe"},"bridge_combo":{"label":"Tipe"},"building":{"label":"Gebou"},"building/flats":{"placeholder":"2, 4, 6, 8..."},"building/levels":{"placeholder":"2, 4, 6..."},"building/levels/underground":{"placeholder":"2, 4, 6..."},"bunker_type":{"label":"Tipe"},"cables":{"placeholder":"1, 2, 3..."},"camera/direction":{"placeholder":"45, 90, 180, 270"},"capacity":{"label":"Kapasiteit","placeholder":"50, 100, 200..."},"capacity/disabled_parking":{"placeholder":"1, 2, 3..."},"capacity_parking":{"placeholder":"10, 20, 30..."},"capacity_volume":{"placeholder":"50, 100, 200..."},"castle_type":{"label":"Tipe"},"club":{"label":"Tipe"},"collection_times":{"label":"Afhaal tye"},"communication_multi":{"label":"Kommunikasie"},"construction":{"label":"Tipe"},"consulate":{"label":"Tipe"},"country":{"label":"Land"},"couplings":{"placeholder":"1, 2, 3..."},"craft":{"label":"Tipe"},"crossing":{"label":"Tipe"},"cuisine":{"options":{"ice_cream":"Roomys","regional":"Streek"}},"cutting":{"label":"Tipe"},"denomination":{"label":"Denominasie"},"denotation":{"label":"Aanduiding"},"departures_board":{"options":{"yes":"Ja"}},"description":{"label":"Beskrywing"},"destination":{"label":"Eindbestemminge"},"destination/ref":{"label":"Eindbestemming weg getalle"},"destination_waterway":{"label":"Eindbestemming"},"devices":{"placeholder":"1, 2, 3..."},"diplomatic":{"label":"Tipe"},"diplomatic/services":{"label":"Dienste"},"direction":{"placeholder":"45, 90, 180, 270"},"direction_point":{"placeholder":"45, 90, 180, 270"},"distance":{"label":"Afstand","terms":"distansie"},"disused/amenity":{"label":"Tipe"},"disused/railway":{"label":"Tipe"},"disused/shop":{"label":"Tipe"},"dock":{"label":"Tipe"},"door_type":{"label":"Tipe"},"electrified":{"options":{"no":"Nee"}},"embankment":{"label":"Tipe"},"embassy":{"label":"Tipe"},"emergency":{"label":"Noodgeval"},"emergency_combo":{"label":"Tipe"},"emergency_ward_entrance":{"label":"Tipe"},"enforcement":{"label":"Tipe"},"entrance":{"label":"Tipe"},"fax":{"label":"Faks","placeholder":"+27 11 907 1111"},"fee":{"label":"Fooi"},"fence_type":{"label":"Tipe"},"fire_hydrant/type":{"options":{"wall":"Muur"}},"fixme":{"label":"Maak My Reg"},"ford":{"label":"Tipe"},"fountain":{"label":"Tipe"},"fuel":{"label":"Brandstof"},"garden/type":{"label":"Tuin"},"gender":{"placeholder":"Onbekend"},"generator/type":{"label":"Tipe"},"government":{"label":"Tipe"},"guest_house":{"label":"Tipe"},"handicap":{"placeholder":"1-18"},"healthcare":{"label":"Tipe"},"highway":{"label":"Tipe"},"historic":{"label":"Tipe"},"holding_position/type":{"label":"Tipe","options":{"runway":"Aanloopbaan"}},"hoops":{"placeholder":"1, 2, 4..."},"horse_dressage":{"options":{"equestrian":"Ja","undefined":"Nee"}},"horse_riding":{"options":{"horse_riding":"Ja","undefined":"Nee"}},"horse_stables":{"options":{"stables":"Ja","undefined":"Nee"}},"incline":{"label":"Steilte"},"indoor":{"label":"Binne"},"indoor_type":{"label":"Tipe"},"industrial":{"label":"Tipe"},"information":{"label":"Tipe"},"internet_access":{"label":"Internetverbinding","options":{"no":"Nee","terminal":"Terminaal","wired":"Bedraad","wlan":"Wifi","yes":"Ja"}},"internet_access/fee":{"label":"Internettoegang"},"junction/ref_oneway":{"label":"Verkeerskruising nummer"},"junction_line":{"label":"Verkeerskruising"},"kneipp_water_cure_multi":{"label":"Kom"},"lamp_type":{"label":"Tipe"},"landuse":{"label":"Tipe"},"lanes":{"label":"Lane","placeholder":"1, 2, 3..."},"layer":{"label":"Laag"},"leisure":{"label":"Tipe"},"liaison":{"label":"Tipe"},"location":{"label":"Plek"},"location_pool":{"options":{"indoor":"Binne","roof":"Dak"}},"man_made":{"label":"Tipe"},"manhole":{"label":"Tipe"},"map_type":{"label":"Tipe"},"marker":{"label":"Tipe"},"maxspeed":{"label":"Spoedlimiet","placeholder":"40, 50, 60..."},"maxspeed/advisory":{"placeholder":"40, 50, 60..."},"memorial":{"label":"Tipe"},"minspeed":{"placeholder":"20, 30, 40..."},"monitoring_multi":{"label":"Monitering"},"mtb/scale":{"placeholder":"0, 1, 2, 3..."},"mtb/scale/uphill":{"placeholder":"0, 1, 2, 3..."},"museum":{"label":"Tipe"},"name":{"label":"Naam","placeholder":"Algemene naam (indien enige)"},"natural":{"label":"Natuurlike"},"network":{"label":"Netwerk"},"network_bicycle":{"options":{"ncn":"Nasionaal"}},"network_foot":{"options":{"nwn":"Nasionaal"}},"network_horse":{"options":{"nhn":"Nasionaal"}},"note":{"label":"Nota"},"office":{"label":"Tipe"},"oneway":{"label":"Eenrigting","options":{"no":"Nee","yes":"Ja"}},"oneway_yes":{"options":{"no":"Nee","yes":"Ja"}},"openfire":{"label":"Open vuur toegestaan"},"opening_hours":{"label":"Ure","placeholder":"Onbekend"},"operator":{"label":"Operateur"},"organic":{"label":"Organiesekos"},"par":{"placeholder":"3, 4, 5..."},"park_ride":{"label":"Parkeer en ry"},"parking":{"label":"Tipe","options":{"garage_boxes":"Vulstasies","rooftop":"Dak","sheds":"Skure"}},"parking_entrance":{"label":"Tipe"},"parking_space":{"label":"Tipe"},"phases":{"placeholder":"1, 2, 3..."},"phone":{"label":"Telefoon","placeholder":"+27 11 907 1111"},"piste/type":{"label":"Tipe","options":{"connection":"Verbinding","playground":"Speelgrond"}},"place":{"label":"Tipe"},"plant/source":{"label":"Energiebron"},"playground":{"label":"Tipe"},"plots":{"placeholder":"10, 20, 30..."},"power":{"label":"Tipe"},"public_bookcase/type":{"label":"Tipe"},"pump":{"label":"Pomp","options":{"yes":"Ja"}},"railway":{"label":"Tipe"},"railway/position":{"label":"Mylpaal plek"},"recycling_type":{"label":"Tipe","options":{"centre":"Sentrum"}},"ref_golf_hole":{"placeholder":"1-18"},"ref_highway_junction":{"label":"Verkeerskruising nummer"},"ref_platform":{"label":"Platform nummer"},"ref_road_number":{"label":"Weg getal"},"ref_room_number":{"label":"Kamer getal"},"ref_route":{"label":"Roete getal"},"ref_runway":{"label":"Aanloopbaan getal","placeholder":"bv. 01L/19R"},"ref_stop_position":{"label":"Stop posisie getal"},"ref_taxiway":{"label":"Rybaannaam"},"relation":{"label":"Tipe"},"religion":{"label":"Geloof"},"residential":{"label":"Tipe"},"resort":{"label":"Tipe"},"restriction":{"label":"Tipe"},"room":{"label":"Tipe"},"rooms":{"label":"Kamers"},"route":{"label":"Tipe"},"route_master":{"label":"Tipe"},"ruins":{"label":"Tipe"},"screen":{"placeholder":"1, 4, 8…"},"scuba_diving":{"label":"Dienste"},"seamark/beacon_lateral/system":{"options":{"other":"Ander"}},"seamark/buoy_lateral/system":{"options":{"other":"Ander"}},"seamark/type":{"label":"Seemerker"},"seats":{"placeholder":"2, 4, 6..."},"second_hand":{"options":{"no":"Nee","yes":"Ja"}},"service":{"label":"Tipe","options":{"emergency_access":"Noodtoegang","parking_aisle":"In parkering"}},"service/vehicle":{"label":"Dienste"},"service_rail":{"label":"Diens","options":{"yard":"Werf"}},"shelter":{"label":"Skuiling"},"shelter_type":{"label":"Tipe"},"shop":{"label":"Tipe"},"shower":{"label":"Storte"},"siren/type":{"label":"Tipe","options":{"other":"Ander"}},"site":{"label":"Tipe"},"social_facility":{"label":"Tipe"},"sport":{"label":"Sporte"},"sport_ice":{"label":"Sporte"},"sport_racing_motor":{"label":"Sporte","options":{"motor":"Motorsport"}},"sport_racing_nonmotor":{"label":"Sporte"},"step_count":{"label":"Aantal trappe"},"stile":{"label":"Tipe"},"stop":{"options":{"minor":"Klein weg"}},"street_cabinet":{"label":"Tipe"},"stroller":{"options":{"no":"Nee","yes":"Ja"}},"structure":{"label":"Struktuur","options":{"bridge":"Brug","cutting":"Uitgrawing","embankment":"Dyk","ford":"Drif","tunnel":"Tonnel"},"placeholder":"Onbekend"},"structure_waterway":{"options":{"tunnel":"Tonnel"},"placeholder":"Onbekend"},"studio":{"label":"Tipe"},"substation":{"label":"Tipe"},"supervised":{"label":"Onder toesig"},"surface":{"label":"Oppervlakte","options":{"grass":"Gras","sand":"Sand"}},"surveillance":{"label":"Toesig"},"surveillance/type":{"label":"Toesig"},"surveillance/zone":{"label":"Toesiggebied"},"swimming_pool":{"label":"Tipe"},"switch":{"label":"Tipe"},"takeaway":{"options":{"no":"Nee","yes":"Ja"}},"telecom":{"label":"Tipe"},"toilets":{"label":"Toilette"},"tomb":{"label":"Tipe"},"tourism":{"label":"Tipe"},"tower/construction":{"label":"In aanbou"},"tower/type":{"label":"Tipe"},"townhall/type":{"label":"Tipe"},"tracktype":{"label":"Spoor"},"trade":{"label":"Tipe"},"traffic_calming":{"label":"Tipe"},"traffic_sign":{"label":"Verkeersteken"},"traffic_signals":{"label":"Tipe"},"trail_visibility":{"label":"Sigbaarheid van pad"},"transformer":{"label":"Tipe"},"trees":{"label":"Bome"},"trench":{"label":"Tipe"},"tunnel":{"label":"Tipe"},"tunnel_combo":{"label":"Tipe"},"usage_rail":{"options":{"industrial":"Industrieel","military":"Militêre"}},"valve":{"label":"Tipe"},"vehicles":{"label":"Voertuige","options":{"bus":"Bus","ferry":"Pont","light_rail":"Ligte spoor","monorail":"Monospoor","subway":"Ondergrondse spoorweg","train":"Trein","tram":"Trem"}},"volcano/type":{"label":"Vuurspuwende berg"},"wall":{"label":"Tipe"},"water":{"label":"Tipe"},"water_point":{"label":"Waterpunt"},"water_source":{"label":"Waterbron"},"water_tank/volume":{"placeholder":"10000, 20000, 30000…"},"waterway":{"label":"Tipe"},"website":{"label":"Webwerf"},"wetland":{"label":"Tipe"},"wheelchair":{"label":"Rolstoeltoegang","options":{"no":"Nee","yes":"Ja"}},"wikipedia":{"label":"Wikipedia"},"windings":{"placeholder":"1, 2, 3..."},"windings/configuration":{"options":{"open":"Oop"}}},"presets":{"address":{"name":"Adres"},"aerialway":{"name":"Kabelbaanbaken"},"aerialway/cable_car":{"name":"Sweefspoor"},"aerialway/chair_lift":{"name":"Stoelhyser"},"aerialway/drag_lift":{"name":"Sleephysbak"},"aerialway/gondola":{"name":"Gondel hysbak"},"aerialway/magic_carpet":{"name":"Towertapythyser"},"aerialway/platter":{"name":"Platter hysbak"},"aerialway/pylon":{"name":"Lugwegspantoring"},"aerialway/t-bar":{"name":"T-bar hysbak"},"aeroway":{"name":"Vliegbaanbaken"},"aeroway/aerodrome":{"name":"Lughawe"},"aeroway/apron":{"name":"Laaiblad"},"aeroway/gate":{"name":"Lughawepoort"},"aeroway/hangar":{"name":"Loods"},"aeroway/helipad":{"name":"Helikopterplatform"},"aeroway/holding_position":{"name":"Hou posisie"},"aeroway/parking_position":{"name":"Parkeer posisie"},"aeroway/runway":{"name":"Aanloopbaan"},"aeroway/taxiway":{"name":"Rybaan"},"aeroway/terminal":{"name":"Terminaal"},"aeroway/windsock":{"name":"Windkous"},"amenity":{"name":"Infrastruktuur"},"amenity/animal_boarding":{"name":"Dierehotel"},"amenity/animal_shelter":{"name":"Dierebeskerming"},"amenity/arts_centre":{"name":"Kunssentrum"},"amenity/atm":{"name":"OTM"},"amenity/bank":{"name":"Bank"},"amenity/bar":{"name":"Kroeg"},"amenity/bbq":{"name":"Braai"},"amenity/bench":{"name":"Bankie"},"amenity/bicycle_parking":{"name":"Fietsparkering"},"amenity/bicycle_parking/building":{"name":"Fietsgarage"},"amenity/bicycle_rental":{"name":"Fietshuur"},"amenity/bicycle_repair_station":{"name":"Fietsherstelstasie"},"amenity/biergarten":{"name":"Biertuin"},"amenity/boat_rental":{"name":"Boothuur"},"amenity/bureau_de_change":{"name":"Wisselkantoor"},"amenity/bus_station":{"name":"Busstasie / -terminaal"},"amenity/cafe":{"name":"Kafee"},"amenity/car_rental":{"name":"Motorhuur"},"amenity/car_sharing":{"name":"Saam-ry"},"amenity/car_wash":{"name":"Karwas"},"amenity/casino":{"name":"Dobbelhuis"},"amenity/charging_station":{"name":"Herlaaistasie"},"amenity/childcare":{"name":"Kindersorg"},"amenity/cinema":{"name":"Rolprentteater","terms":"fliek,inry,movie,silverdoek"},"amenity/clinic":{"name":"Kliniek"},"amenity/clock":{"name":"Klok"},"amenity/college":{"name":"Kollegegebied"},"amenity/community_centre":{"name":"Gemeenskapsentrum"},"amenity/conference_centre":{"name":"Konverensiesentrum"},"amenity/courthouse":{"name":"Hof"},"amenity/crematorium":{"name":"Krematorium"},"amenity/dentist":{"name":"Tandarts"},"amenity/doctors":{"name":"Dokter"},"amenity/drinking_water":{"name":"Drinkwater"},"amenity/driving_school":{"name":"Bestuurskool"},"amenity/embassy":{"name":"Ambassade"},"amenity/events_venue":{"name":"Onthaallokaal"},"amenity/fast_food":{"name":"Kitskos"},"amenity/ferry_terminal":{"name":"Pontterminaal"},"amenity/fire_station":{"name":"Brandweerstasie"},"amenity/food_court":{"name":"Kosgebied"},"amenity/fountain":{"name":"Fontein"},"amenity/fuel":{"name":"Brandstofstasie"},"amenity/gambling":{"name":"Dobbelary"},"amenity/grave_yard":{"name":"Begraafplaas"},"amenity/grit_bin":{"name":"Grit bin"},"amenity/hospital":{"name":"Hospitaalgebied"},"amenity/hunting_stand":{"name":"Jagtoring"},"amenity/internet_cafe":{"name":"Internetkafee"},"amenity/kindergarten":{"name":"Kleuterskoolgebied"},"amenity/language_school":{"name":"Taalskool"},"amenity/library":{"name":"Biblioteek"},"amenity/loading_dock":{"name":"Laaistasie"},"amenity/marketplace":{"name":"Markplein"},"amenity/monastery":{"name":"Monnikekloostergebied"},"amenity/motorcycle_parking":{"name":"Motorfietsparkering"},"amenity/music_school":{"name":"Musiekskool"},"amenity/nightclub":{"name":"Nagklub"},"amenity/nursing_home":{"name":"Verpleging- en versorgingshuis"},"amenity/parking":{"name":"Parkering"},"amenity/parking_entrance":{"name":"Parkeeringang","terms":"ingang/uitgang van parkeergarage"},"amenity/parking_space":{"name":"Parkeerplek"},"amenity/payment_terminal":{"name":"Betaalautomaat"},"amenity/pharmacy":{"name":"Apteek"},"amenity/place_of_worship":{"name":"Plek van aanbidding"},"amenity/place_of_worship/buddhist":{"name":"Boeddhiste tempel"},"amenity/police":{"name":"Polisie"},"amenity/post_box":{"name":"Posbus"},"amenity/post_office":{"name":"Poskantoor"},"amenity/prison":{"name":"Tronkgebied"},"amenity/pub":{"name":"Kroeg"},"amenity/public_bath":{"name":"Openbare bad"},"amenity/public_bookcase":{"name":"Ruilboekrak"},"amenity/ranger_station":{"name":"Veldwagtershut"},"amenity/recycling":{"name":"Herwinningspunt"},"amenity/restaurant":{"name":"Restaurant"},"amenity/restaurant/seafood":{"name":"Seekosrestaurant"},"amenity/school":{"name":"Skoolgebied"},"amenity/shelter":{"name":"Skuiling"},"amenity/shower":{"name":"Stort"},"amenity/social_centre":{"name":"Maatskaplike sentrum"},"amenity/social_facility":{"name":"Sosiale fasiliteit"},"amenity/social_facility/nursing_home":{"name":"Verpleging- en versorgingshuis"},"amenity/studio":{"name":"Ateljee"},"amenity/taxi":{"name":"Taxi staanplek"},"amenity/telephone":{"name":"Openbare telefoon"},"amenity/theatre":{"name":"Teater"},"amenity/townhall":{"name":"Stadsaal"},"amenity/townhall/city":{"name":"Stadsaal"},"amenity/university":{"name":"Universiteitgebied"},"amenity/vehicle_inspection":{"name":"Voertuiginspeksie"},"amenity/vending_machine":{"name":"Verkoopmasjien"},"amenity/vending_machine/fuel":{"name":"Gaspomp"},"amenity/veterinary":{"name":"Veearts"},"amenity/waste_basket":{"name":"Snippermandjie"},"amenity/watering_place":{"name":"Drinkplek"},"area":{"name":"Area"},"area/highway":{"name":"Weggebied"},"barrier":{"name":"Versperring"},"barrier/block":{"name":"Blok"},"barrier/bollard":{"name":"Toupaal"},"barrier/cattle_grid":{"name":"roosterhek"},"barrier/city_wall":{"name":"Stadsmuur"},"barrier/cycle_barrier":{"name":"Fietshinderpaal"},"barrier/ditch":{"name":"Droog sloot"},"barrier/entrance":{"name":"Deurgang"},"barrier/fence":{"name":"Heining"},"barrier/gate":{"name":"Hek"},"barrier/hedge":{"name":"Laning"},"barrier/kissing_gate":{"name":"Draaihek"},"barrier/retaining_wall":{"name":"Stuwal"},"barrier/stile":{"name":"Steg"},"barrier/toll_booth":{"name":"Tolhek"},"barrier/wall":{"name":"Muur"},"boundary":{"name":"Grens"},"boundary/administrative":{"name":"Administratiewe grens"},"bridge/support/pier":{"name":"Brugpier"},"building":{"name":"Gebou"},"building/apartments":{"name":"Woonstelgebou"},"building/barn":{"name":"Skuur"},"building/bungalow":{"name":"Kothuis"},"building/bunker":{"name":"Bomskuiling"},"building/cabin":{"name":"Blokhut"},"building/chapel":{"name":"Kapelgebou"},"building/church":{"name":"Kerkgebou"},"building/civic":{"name":"Openbare gebou"},"building/college":{"name":"Kollegegebou"},"building/commercial":{"name":"Kommersiële gebou"},"building/construction":{"name":"Gebou in aanbou"},"building/detached":{"name":"Alleenstaande woning"},"building/dormitory":{"name":"Studentehuis"},"building/entrance":{"name":"Ingang/Uitgang"},"building/farm":{"name":"Plaashuis"},"building/farm_auxiliary":{"name":"Plaasgebou"},"building/garage":{"name":"Garage"},"building/garages":{"name":"Vulstasies"},"building/greenhouse":{"name":"Kweekhuis"},"building/hangar":{"name":"Loodsgebou"},"building/hospital":{"name":"Hospitaalgebou"},"building/hotel":{"name":"Hotelgebou"},"building/house":{"name":"Huis"},"building/houseboat":{"name":"Huisboot"},"building/hut":{"name":"Hut"},"building/industrial":{"name":"Industriële gebou"},"building/kindergarten":{"name":"Kleuterskoolgebou"},"building/mosque":{"name":"Moskeegebou"},"building/office":{"name":"Kantoorgebou"},"building/public":{"name":"Openbare gebou"},"building/residential":{"name":"Residensiële gebou"},"building/retail":{"name":"Kleinhandel-gebou"},"building/roof":{"name":"Dak"},"building/ruins":{"name":"Vervalle gebou"},"building/school":{"name":"Skoolgebou"},"building/semidetached_house":{"name":"Halfgekoppelde huis"},"building/service":{"name":"Diensgebou"},"building/stable":{"name":"Stalle"},"building/static_caravan":{"name":"Karavaan"},"building/temple":{"name":"Tempelgebou"},"building/train_station":{"name":"Spoorwegstasiegebou"},"building/university":{"name":"Universiteitgebou"},"building/warehouse":{"name":"Pakhuis"},"building_part":{"name":"Geboudeel"},"building_point":{"name":"Gebou"},"club":{"name":"Klub"},"club/sport":{"name":"Sportklub"},"craft":{"name":"Handwerk"},"craft/beekeeper":{"name":"Byeboer"},"craft/blacksmith":{"name":"Smid"},"craft/carpenter":{"name":"Skrynwerker"},"craft/caterer":{"name":"Spysenier"},"craft/dressmaker":{"name":"Kleremaker"},"craft/electrician":{"name":"Elektrisiën"},"craft/electronics_repair":{"name":"Elektronieseherstelwinkel"},"craft/gardener":{"name":"Tuinier"},"craft/glaziery":{"name":"Glaswerk"},"craft/handicraft":{"name":"Handwerk"},"craft/hvac":{"name":"Verwarming/ventilasie"},"craft/metal_construction":{"name":"Metaalwerk"},"craft/painter":{"name":"Verwer"},"craft/photographer":{"name":"Fotograaf"},"craft/plumber":{"name":"Loodgieter"},"craft/roofer":{"name":"Dakdekker"},"craft/sawmill":{"name":"Saagmeule"},"craft/shoemaker":{"name":"Skoenmaker"},"craft/stonemason":{"name":"Klipkapper"},"craft/tailor":{"name":"Snyer"},"craft/window_construction":{"name":"Vensterraamwerk"},"craft/winery":{"name":"Wynboer"},"disused/amenity":{"name":"Infrastruktuur in onbruik"},"disused/railway":{"name":"Spoorwegbaken in onbruik"},"disused/shop":{"name":"Winkel in onbruik"},"emergency":{"name":"Noodgevalbaken"},"emergency/ambulance_station":{"name":"Ambulansstasie"},"emergency/defibrillator":{"name":"Defibrillator"},"emergency/designated":{"name":"Noodtoegang: Toegewys"},"emergency/destination":{"name":"Noodtoegang: Eindbestemming"},"emergency/fire_extinguisher":{"name":"Brandblusser"},"emergency/landing_site":{"name":"Noodlandingsplek"},"emergency/life_ring":{"name":"Reddingsboei"},"emergency/no":{"name":"Geen noodtoegang"},"emergency/official":{"name":"Noodtoegang: Officieel"},"emergency/phone":{"name":"Noodtelefoon"},"emergency/private":{"name":"Noodtoegang: Privaat"},"emergency/siren":{"name":"Noodsirene"},"emergency/water_tank":{"name":"Noodwatertenk"},"emergency/yes":{"name":"Noodtoegang: Ja"},"entrance":{"name":"Ingang/Uitgang","terms":"ingang,uitgang"},"entrance/emergency":{"name":"Nooduitgang"},"entrance/emergency_ward_entrance":{"name":"Ingang voor noodgevalle"},"entrance/main":{"name":"Hoofingang"},"ford":{"name":"Drif"},"ford_line":{"name":"Drif"},"highway":{"name":"Wegbaken"},"highway/bridleway":{"name":"Ruiterpad"},"highway/bus_guideway":{"name":"Toegewyde busbaan"},"highway/bus_stop":{"name":"Bushalte"},"highway/corridor":{"name":"Korridor"},"highway/crossing":{"name":"Kruis"},"highway/crossing/unmarked":{"name":"Nie gemerk kruis"},"highway/cycleway":{"name":"Fietspad"},"highway/cycleway/bicycle_foot":{"name":"Fiets & voetpad"},"highway/elevator":{"name":"Hysbak"},"highway/emergency_bay":{"name":"Noodstopplek"},"highway/footway":{"name":"Voetpad"},"highway/give_way":{"name":"Toegeeteken"},"highway/milestone":{"name":"Weg-mylpaal"},"highway/mini_roundabout":{"name":"Mini-sirkel"},"highway/motorway":{"name":"Snelweg"},"highway/motorway_junction":{"name":"Snelwegkruising"},"highway/motorway_link":{"name":"Verbindingsweg van snelweg"},"highway/passing_place":{"name":"Verbygaanplek"},"highway/path":{"name":"Pad"},"highway/path/boardwalk":{"name":"Plankenweg"},"highway/path/informal":{"name":"Informeel pad"},"highway/pedestrian_area":{"name":"Voetgangersgebied"},"highway/pedestrian_line":{"name":"Voetgangersweg"},"highway/primary":{"name":"Primere weg"},"highway/primary_link":{"name":"Verbindingsweg van primêre weg"},"highway/residential":{"name":"Residensiële weg"},"highway/rest_area":{"name":"Rusgebied"},"highway/road":{"name":"Onbekend weg"},"highway/road/bridge":{"name":"Onbekend brug"},"highway/secondary":{"name":"Sekondere weg"},"highway/secondary_link":{"name":"Verbindingsweg van sekondêre weg"},"highway/service":{"name":"Diensweg"},"highway/service/alley":{"name":"Steeg"},"highway/service/drive-through":{"name":"Deurry"},"highway/service/driveway":{"name":"Oprit"},"highway/service/emergency_access":{"name":"Noodtoegang"},"highway/service/parking_aisle":{"name":"Parkeergang"},"highway/services":{"name":"Diensgebied"},"highway/speed_camera":{"name":"Snelheidskamera"},"highway/steps":{"name":"Trappe"},"highway/stop":{"name":"Stopteken"},"highway/street_lamp":{"name":"Straatlig"},"highway/tertiary":{"name":"Tertiere weg"},"highway/tertiary_link":{"name":"Verbindingsweg van tersiêre weg"},"highway/traffic_mirror":{"name":"Verkeerspieël"},"highway/traffic_signals":{"name":"Verkeerstekens"},"highway/trailhead":{"name":"Wandelvertrekpunt"},"highway/trunk":{"name":"Hoofweg"},"highway/trunk_link":{"name":"Verbindingsweg van hoofweg"},"highway/turning_circle":{"name":"Draai Sirkel"},"highway/turning_loop":{"name":"Draailus"},"highway/unclassified":{"name":"Ongeklassifiseerde weg"},"historic":{"name":"Historiese plek"},"historic/archaeological_site":{"name":"Argeologiese plek"},"historic/boundary_stone":{"name":"Grenspaal"},"historic/building":{"name":"Historiese gebou"},"historic/castle":{"name":"Kasteel"},"historic/fort":{"name":"Historiese fort"},"historic/manor":{"name":"Landhuis"},"historic/memorial":{"name":"Gedenkteken"},"historic/monument":{"name":"Monument"},"historic/ruins":{"name":"Reune"},"historic/tomb":{"name":"Graf"},"historic/wayside_cross":{"name":"Wegteken"},"historic/wayside_shrine":{"name":"Wegaltaar"},"historic/wreck":{"name":"Wrak"},"indoor":{"name":"Binnebaken"},"indoor/area":{"name":"Binnegebied"},"indoor/corridor":{"name":"Korridor"},"indoor/corridor_line":{"name":"Korridor"},"indoor/door":{"name":"Binnedeur"},"indoor/elevator":{"name":"Binnehysbak"},"indoor/room":{"name":"Kamer"},"indoor/stairs":{"name":"Binnetrappe"},"indoor/wall":{"name":"Binnemuur"},"junction":{"name":"Verkeerskruising","terms":"kruis"},"landuse":{"name":"Landgebruikbaken"},"landuse/allotments":{"name":"Volkstuine"},"landuse/aquaculture":{"name":"Akwakultuur"},"landuse/basin":{"name":"Kom"},"landuse/cemetery":{"name":"Begraafplaas","terms":"begraafplaas,kerkhof,dodeakker,godsakker"},"landuse/churchyard":{"name":"Kerkgebied"},"landuse/commercial":{"name":"Handelsgebied"},"landuse/construction":{"name":"Bougebied"},"landuse/farm":{"name":"Landbougrond"},"landuse/farmland":{"name":"Landbougrond"},"landuse/farmyard":{"name":"Plaaswerf"},"landuse/forest":{"name":"Woud"},"landuse/garages":{"name":"Vulstasies"},"landuse/grass":{"name":"Gras","terms":"gras,weiveld"},"landuse/greenhouse_horticulture":{"name":"Kweekhuisgebied"},"landuse/industrial":{"name":"Nywerheidsgebied"},"landuse/landfill":{"name":"Stortingsterrein"},"landuse/meadow":{"name":"Weiland","terms":"weiveld,grasland"},"landuse/military":{"name":"Militêre gebied"},"landuse/military/airfield":{"name":"Miliêre vliegveld"},"landuse/military/barracks":{"name":"Barakke"},"landuse/orchard":{"name":"Boord","terms":"boord,vrugteboord"},"landuse/quarry":{"name":"Kwarrie","terms":"steengroef,klipbreekgat,groef"},"landuse/railway":{"name":"Korridor"},"landuse/religious":{"name":"Godsdiensgebied"},"landuse/reservoir":{"name":"Reservoir"},"landuse/residential":{"name":"Residensiële gebied"},"landuse/residential/apartments":{"name":"Woonstelle"},"landuse/retail":{"name":"Kleinhandel-gebied"},"landuse/vineyard":{"name":"Druiweprieel","terms":"wingerd"},"leisure/dog_park":{"name":"Hondepark"},"leisure/firepit":{"name":"Vuurgat"},"leisure/garden":{"name":"Tuin","terms":"tuin,gedenktuin"},"leisure/golf_course":{"name":"Golfbaan","terms":"golfbaan"},"leisure/indoor_play":{"name":"Binnespeelsentrum"},"leisure/marina":{"name":"Vasmeerplek","terms":"marina,jaghawe,waterdorp"},"leisure/miniature_golf":{"name":"Miniatuur golf"},"leisure/park":{"name":"Park"},"leisure/pitch":{"name":"Sportveld"},"leisure/pitch/american_football":{"name":"Amerikaanse Voetbal Veld","terms":"amerikaanse voetbalveld"},"leisure/pitch/basketball":{"name":"Basketbalbaan","terms":"korfbalbaan"},"leisure/pitch/soccer":{"name":"Sokkerveld","terms":"sokkerveld"},"leisure/pitch/tennis":{"name":"Tennisbaan","terms":"tennisbaan"},"leisure/pitch/volleyball":{"name":"Vlugbalbaan","terms":"vlugbalbaan"},"leisure/playground":{"name":"Speelgrond","terms":"speelpark,speelplek,speelterrein"},"leisure/playground/indoor":{"name":"Binnespeelgrond","terms":"speelpark,speelplek,speelterrein"},"leisure/slipway":{"name":"Inglipbaan","terms":"inglipbaan,oprit,afrit"},"leisure/stadium":{"name":"Stadium","terms":"stadion"},"leisure/swimming_pool":{"name":"Swembad"},"line":{"name":"Lyn","terms":"lyn"},"man_made/breakwater":{"name":"Breekwater","terms":"seebreker,golfbreker"},"man_made/bridge":{"name":"Bruggebied"},"man_made/lighthouse":{"name":"Ligtoring","terms":"lugtoring"},"man_made/mineshaft":{"name":"Mynskag"},"man_made/monitoring_station":{"name":"Moniteringstasie"},"man_made/petroleum_well":{"name":"Oliebron"},"man_made/pier":{"name":"Pier","terms":"landingsplek,landingshoof,wandelhoof"},"man_made/pipeline":{"name":"Pyplyn"},"man_made/pumping_station":{"name":"Pompstasie"},"man_made/reservoir_covered":{"name":"Bedekte reservoir"},"man_made/silo":{"name":"Silo"},"man_made/storage_tank":{"name":"Opgaartenk"},"man_made/storage_tank/water":{"name":"Watertenk"},"man_made/surveillance":{"name":"Toesig"},"man_made/surveillance/camera":{"name":"Toesigkamera"},"man_made/survey_point":{"name":"Landmeterspunt"},"man_made/tower":{"name":"Toring"},"man_made/tower/communication":{"name":"Kommunikasietoring"},"man_made/tunnel":{"name":"Tonnelgebied"},"man_made/wastewater_plant":{"name":"Rioolaanleg"},"man_made/water_tap":{"name":"Waterkraan"},"man_made/water_tower":{"name":"Watertoring"},"man_made/water_well":{"name":"Waterbron"},"man_made/water_works":{"name":"Waterwerke"},"man_made/watermill":{"name":"Watermeul"},"man_made/windmill":{"name":"Windmeul"},"man_made/windpump":{"name":"Windpomp"},"man_made/works":{"name":"Fabriek"},"marker":{"name":"Merker"},"marker/utility/power":{"name":"Krag merker"},"military/trench":{"name":"Loopgraaf"},"natural":{"name":"Natuurlike baken"},"natural/bare_rock":{"name":"Kaal rots"},"natural/bay":{"name":"Baai"},"natural/beach":{"name":"Strand"},"natural/cape":{"name":"Kaap"},"natural/cave_entrance":{"name":"Grotingang"},"natural/cliff":{"name":"Krans","terms":"krans"},"natural/coastline":{"name":"Kuslyn","terms":"kuslyn"},"natural/fell":{"name":"Heuwel"},"natural/geyser":{"name":"Geiser"},"natural/glacier":{"name":"Gletser"},"natural/grassland":{"name":"Grasland"},"natural/heath":{"name":"Heide"},"natural/hot_spring":{"name":"Warmwaterbron"},"natural/mud":{"name":"Modder"},"natural/peak":{"name":"Piek"},"natural/reef":{"name":"Rif"},"natural/ridge":{"name":"Bergrif"},"natural/rock":{"name":"Rots"},"natural/saddle":{"name":"Saal"},"natural/sand":{"name":"Sand"},"natural/scree":{"name":"Berghellingspuin"},"natural/scrub":{"name":"Struikgewas"},"natural/spring":{"name":"Bron"},"natural/stone":{"name":"Steen"},"natural/tree":{"name":"Boom"},"natural/tree_row":{"name":"Bomery"},"natural/valley":{"name":"Vallei"},"natural/volcano":{"name":"Vuurspuwende berg"},"natural/water":{"name":"Water"},"natural/water/basin":{"name":"Kom"},"natural/water/lake":{"name":"Meer","terms":"meer"},"natural/water/pond":{"name":"Dammetjie"},"natural/water/reservoir":{"name":"Reservoir"},"natural/water/wastewater":{"name":"Rioolkom"},"natural/wetland":{"name":"Vleiland"},"natural/wood":{"name":"Bos"},"office":{"name":"Kantoor"},"office/accountant":{"name":"Boekhouer"},"office/administrative":{"name":"Administrasie"},"office/advertising_agency":{"name":"Advetensieagentskap"},"office/architect":{"name":"Argitek"},"office/charity":{"name":"Liefdadigheidskantoor"},"office/diplomatic":{"name":"Diplomatiekekantoor"},"office/diplomatic/embassy":{"name":"Ambassade"},"office/educational_institution":{"name":"Opvoedkundige instelling"},"office/employment_agency":{"name":"Werksagentskap"},"office/energy_supplier":{"name":"Energieverskafferkantoor"},"office/estate_agent":{"name":"Eiendomsagent"},"office/financial":{"name":"Finansieële kantoor"},"office/financial_advisor":{"name":"Finansieële adviseur"},"office/government":{"name":"Regeringskantoor"},"office/insurance":{"name":"Versekeringskantoor"},"office/lawyer/notary":{"name":"Notaris"},"office/newspaper":{"name":"Koerant kantoor"},"office/ngo":{"name":"NRO-kantoor"},"office/notary":{"name":"Notaris"},"office/quango":{"name":"Kwasi NRO-kantoor"},"office/religion":{"name":"Godsdienskantoor"},"office/research":{"name":"Navorsingskantoor"},"office/tax_advisor":{"name":"Belastingadviseur"},"office/telecommunication":{"name":"Telekommunikasiekantoor"},"office/travel_agent":{"name":"Reisagent"},"place":{"name":"Plek"},"place/city":{"name":"Stad"},"place/city_block":{"name":"Stadsblok"},"place/farm":{"name":"Plaas"},"place/hamlet":{"name":"Gehuggie","terms":"dorpie"},"place/island":{"name":"Eiland"},"place/islet":{"name":"Eilandjie"},"place/isolated_dwelling":{"name":"Afgeleë blyplek"},"place/locality":{"name":"Ligging"},"place/neighbourhood":{"name":"Woonbuurt"},"place/quarter":{"name":"Wyk"},"place/square":{"name":"Plein"},"place/town":{"name":"Dorp","terms":"dorp"},"place/village":{"name":"Gehug","terms":"dorpie"},"playground":{"name":"Speelgrondtoestel"},"playground/climbingframe":{"name":"Raamwerk"},"point":{"name":"Punt"},"power":{"name":"Kragbaken"},"power/line":{"name":"Kraglyn","terms":"kraglyn,kragdraad"},"power/minor_line":{"name":"Klein kraglyn"},"power/plant":{"name":"Kragstasiegebied"},"power/pole":{"name":"Kragpaal"},"power/substation":{"name":"Substasie"},"power/tower":{"name":"Hoogspanningstoring"},"power/transformer":{"name":"Transformator","terms":"transformator"},"public_transport/platform/bus":{"name":"Busperron","terms":"busplatform"},"public_transport/platform/bus_point":{"name":"Bushalte"},"public_transport/platform/bus_tram_point":{"name":"Trem- & bushalte"},"public_transport/platform/ferry":{"name":"Pontplatform"},"public_transport/platform/ferry_point":{"name":"Ponthalte / -platform"},"public_transport/platform/light_rail":{"name":"Ligte spoorperron"},"public_transport/platform/light_rail_point":{"name":"Ligte spoorhalte / -perron"},"public_transport/platform/monorail":{"name":"Monospoorperron"},"public_transport/platform/monorail_point":{"name":"Monospoorhalte / -perron"},"public_transport/platform/subway":{"name":"Ondergrondse spoorwegperron","terms":"ondergrondse spoorwegplatform"},"public_transport/platform/subway_point":{"name":"Ondergrondse spoorweghalte / -perron"},"public_transport/platform/train":{"name":"Spoorwegperron","terms":"spoorwegplatform"},"public_transport/platform/train_point":{"name":"Spoorweghalte / -perron"},"public_transport/platform/tram":{"name":"Tremperron","terms":"tremplatform"},"public_transport/platform/tram_point":{"name":"Tremhalte / -perron","terms":"tremplatform"},"public_transport/station_aerialway":{"name":"Lugwegstasie"},"public_transport/station_bus":{"name":"Busstasie"},"public_transport/station_ferry":{"name":"Pontterminaal"},"public_transport/station_light_rail":{"name":"Ligte spoorstasie"},"public_transport/station_monorail":{"name":"Monospoorstasie"},"public_transport/station_subway":{"name":"Ondergrondse spoorwegstasie"},"public_transport/station_train":{"name":"Spoorwegstasie"},"public_transport/station_train_halt":{"name":"Spoorwegstasie (op versoek)"},"public_transport/station_tram":{"name":"Tremstasie"},"public_transport/stop_position_light_rail":{"name":"Ligte spoor stop posisie"},"public_transport/stop_position_monorail":{"name":"Monospoor stop posisie"},"public_transport/stop_position_tram":{"name":"Trem stop posisie"},"railway":{"name":"Spoorwegbaken"},"railway/abandoned":{"name":"Verlate spoorweg"},"railway/construction":{"name":"Spoorweg in aanbou"},"railway/crossing":{"name":"Spoorweg-pad kruis"},"railway/disused":{"name":"Spoorweg in onbruik"},"railway/funicular":{"name":"Kabelspoorweg"},"railway/halt":{"name":"Spoorwegstasie (op versoek)"},"railway/level_crossing":{"name":"Spooroorgang"},"railway/light_rail":{"name":"Ligte spoor"},"railway/milestone":{"name":"Spoorweg-mylpaal"},"railway/miniature":{"name":"Miniatuur spoorweg"},"railway/monorail":{"name":"Monospoor"},"railway/narrow_gauge":{"name":"Smalspoorweg"},"railway/platform":{"name":"Spoorwegperron"},"railway/preserved":{"name":"Erfenisspoorweg"},"railway/rail":{"name":"Treinspoor"},"railway/railway_crossing":{"name":"Spoorweg-spoorweg kruis"},"railway/signal":{"name":"Verkeerstekens vir spoorweg"},"railway/station":{"name":"Spoorwegstasiegebou"},"railway/subway":{"name":"Ondergrondse spoorweg"},"railway/subway_entrance":{"name":"Ondergrondse spoorwegingang","terms":"metroingang"},"railway/tram":{"name":"Tremspoor"},"railway/tram_crossing":{"name":"Trem-pad kruis"},"railway/tram_level_crossing":{"name":"Trem-weg kruis"},"railway/tram_stop":{"name":"Trem stop posisie"},"railway/yard":{"name":"Spoorwegterrein"},"relation":{"name":"Verhouding"},"route/ferry":{"name":"Pontroete"},"seamark":{"name":"Seemerker"},"shop":{"name":"Winkel"},"shop/agrarian":{"name":"Landbouwinkel"},"shop/alcohol":{"name":"Drankwinkel"},"shop/appliance":{"name":"Toestelwinkel"},"shop/art":{"name":"Kunswinkel"},"shop/baby_goods":{"name":"Babaware"},"shop/bakery":{"name":"Bakkery"},"shop/beauty":{"name":"Skoonheidswinkel"},"shop/beverages":{"name":"Drankgoedwinkel"},"shop/bicycle":{"name":"Fietswinkel"},"shop/bookmaker":{"name":"Beroepswedder"},"shop/boutique":{"name":"Boetiek"},"shop/butcher":{"name":"Slagter"},"shop/car":{"name":"Voertuighandelaar"},"shop/car_parts":{"name":"Motoronderdelewinkel"},"shop/car_repair":{"name":"Werkswinkel"},"shop/carpet":{"name":"Tapytwinkel"},"shop/charity":{"name":"Liefdadigheidswinkel"},"shop/cheese":{"name":"Kaaswinkel"},"shop/chocolate":{"name":"Sjokoladewinkel"},"shop/clothes":{"name":"Klerewinkel"},"shop/coffee":{"name":"Koffiewinkel"},"shop/computer":{"name":"Rekenaarwinkel"},"shop/confectionery":{"name":"Lekkergoedwinkel"},"shop/convenience":{"name":"Geriefswinkel"},"shop/copyshop":{"name":"Fotostaatwinkel"},"shop/cosmetics":{"name":"Kosmetiekwinkel"},"shop/department_store":{"name":"Afdelingswinkel"},"shop/doityourself":{"name":"Doen-Dit-Self-winkel"},"shop/dry_cleaning":{"name":"Droogskoonmaker"},"shop/electronics":{"name":"Elektronikawinkel"},"shop/erotic":{"name":"Erotiese winkel"},"shop/fabric":{"name":"Lapwinkel"},"shop/farm":{"name":"Wegstal"},"shop/fishing":{"name":"Hengel gereedskapwinkel"},"shop/florist":{"name":"Bloemiste"},"shop/funeral_directors":{"name":"Begrafnisondernemer"},"shop/furniture":{"name":"Meubelwinkel"},"shop/garden_centre":{"name":"Tuinsentrum","terms":"kwekery"},"shop/general":{"name":"Algemene handelaar"},"shop/gift":{"name":"Geskenkwinkel"},"shop/greengrocer":{"name":"Groentewinkel"},"shop/hairdresser":{"name":"Haarkapper"},"shop/hardware":{"name":"Hardewarewinkel"},"shop/hearing_aids":{"name":"Gehoortoestellewinkel"},"shop/hifi":{"name":"Hoëtrouwinkel"},"shop/houseware":{"name":"Huisraadwinkel"},"shop/interior_decoration":{"name":"Binnenshuise versieringwinkel"},"shop/laundry":{"name":"Wassery"},"shop/lottery":{"name":"Loterywinkel"},"shop/mall":{"name":"Winkelsentrum"},"shop/mobile_phone":{"name":"Selfoonwinkel"},"shop/motorcycle":{"name":"Motorfietshandelaar"},"shop/motorcycle_repair":{"name":"Motorfiets werkswinkel"},"shop/music":{"name":"Musiekwinkel"},"shop/optician":{"name":"Oogarts"},"shop/pet":{"name":"Troeteldierwinkel"},"shop/religion":{"name":"Godsdienswinkel"},"shop/repair":{"name":"Herstelwinkel"},"shop/seafood":{"name":"Seekoswinkel"},"shop/shoe_repair":{"name":"Skoenherstelwinkel"},"shop/shoes":{"name":"Skoenwinkel"},"shop/sports":{"name":"Sportwinkel"},"shop/stationery":{"name":"Skryfbehoeftewinkel"},"shop/supermarket":{"name":"Supermark"},"shop/supermarket/organic":{"name":"Organiesekoswinkel"},"shop/tailor":{"name":"Snyer"},"shop/telecommunication":{"name":"Telekommunikasiewinkel"},"shop/toys":{"name":"Speelgoedwinkel"},"shop/travel_agency":{"name":"Reisagent"},"shop/tyres":{"name":"Bandewinkel"},"shop/vacant":{"name":"Leë winkel"},"shop/video":{"name":"Videowinkel"},"shop/water":{"name":"Drinkwaterwinkel"},"telecom":{"name":"Telekommunikasiebaken"},"tourism/artwork":{"name":"Kunswerk"},"tourism/attraction":{"name":"Toerismeaantreklikheid"},"tourism/caravan_site":{"name":"RV Park"},"tourism/guest_house":{"name":"Gastehuis"},"tourism/hostel":{"name":"Hostel"},"tourism/hotel":{"name":"Hotel"},"tourism/information":{"name":"Inligting"},"tourism/information/route_marker":{"name":"Roetemerker"},"tourism/motel":{"name":"Motel"},"tourism/museum":{"name":"Musuem"},"tourism/picnic_site":{"name":"Piekniek plek"},"tourism/theme_park":{"name":"Temapark"},"tourism/viewpoint":{"name":"Uitkykpunt"},"tourism/zoo":{"name":"Dieretuin"},"traffic_calming/island":{"name":"Verkeerseiland"},"type/boundary":{"name":"Grens"},"type/boundary/administrative":{"name":"Administratiewe grens"},"type/destination_sign":{"name":"Eindbestemmingteken"},"type/multipolygon":{"name":"Multi-veelhoek"},"type/restriction":{"name":"Beperking"},"type/route":{"name":"Roete"},"type/route/aerialway":{"name":"Vliegroete"},"type/route/bicycle":{"name":"Fietsroete"},"type/route/bus":{"name":"Busroete"},"type/route/detour":{"name":"Omweg"},"type/route/ferry":{"name":"Pontroete"},"type/route/foot":{"name":"Wandelroete"},"type/route/hiking":{"name":"Hikingroete"},"type/route/light_rail":{"name":"Ligte spoorroete"},"type/route/monorail":{"name":"Monospoorroete"},"type/route/pipeline":{"name":"Pyplynroete"},"type/route/power":{"name":"Kraglynroete"},"type/route/road":{"name":"Wegroete"},"type/route/subway":{"name":"Ondergrondse spoorwegroete","terms":"metroroete"},"type/route/train":{"name":"Treinroete"},"type/route/tram":{"name":"Tremroete"},"type/site":{"name":"Plek"},"type/waterway":{"name":"Waterweg"},"waterway":{"name":"Waterwegbaken"},"waterway/canal":{"name":"Kanaal"},"waterway/dam":{"name":"Dam"},"waterway/ditch":{"name":"Sloot"},"waterway/drain":{"name":"Drein"},"waterway/milestone":{"name":"Waterweg-mylpaal"},"waterway/river":{"name":"Rivier"},"waterway/stream":{"name":"Stroom"},"waterway/weir":{"name":"Studam"}}}}}
\ No newline at end of file
+{"af":{"presets":{"categories":{"category-barrier":{"name":"Versperringbakens"},"category-building":{"name":"Geboubakens"},"category-golf":{"name":"Golfbakens"},"category-landuse":{"name":"Landgebruikbakens"},"category-natural":{"name":"Natuurlike bakens"},"category-path":{"name":"Pade"},"category-playground":{"name":"Speelgrondtoestel"},"category-rail":{"name":"Spoorweg"},"category-road_major":{"name":"Wege"},"category-road_minor":{"name":"Kleine wege"},"category-road_service":{"name":"Dienswege"},"category-route":{"name":"Roetebakens"},"category-waterway":{"name":"Waterwege"}},"fields":{"access":{"options":{"designated":{"title":"Toegewys"},"destination":{"title":"Eindbestemming"},"no":{"title":"Toegang Verbode"},"private":{"title":"Privaat"},"unknown":{"title":"Onbekend"},"yes":{"title":"Toegelaat"}},"placeholder":"Ongespesifiseerd","types":{"access":"Alles","bicycle":"Fietse","foot":"Voet","horse":"Perde","motor_vehicle":"Motorvoertuie"}},"access_aisle":{"label":"Tipe"},"access_simple":{"options":{"private":"Privaat","unknown":"Onbekend","yes":"Openbaar"}},"addr/interpolation":{"label":"Tipe","options":{"all":"Alles"}},"address":{"label":"Adres","placeholders":{"block_number":"Blokgetal","city":"Stad","city!jp":"Stad/Dorp/Gehug/Tokyo Speciaal Distrikt","city!vn":"Stad/Dorp","conscriptionnumber":"123","country":"Land","county":"Distrik","hamlet":"Gehuggie","housename":"Huisnaam","housenumber":"123","neighbourhood":"Woonbuurt","place":"Plek","postcode":"Poskode","quarter":"Wyk","state":"Staat","street":"Straat","subdistrict":"Subdistrikt","suburb":"Voorstad","town":"Dorp"}},"admin_level":{"label":"Administratiewe vlak"},"advertising":{"label":"Tipe"},"aerialway":{"label":"Tipe"},"aerialway/access":{"label":"Toegang","options":{"both":"Beide"}},"aerialway/capacity":{"placeholder":"500, 2500, 5000..."},"aerialway/duration":{"placeholder":"1, 2, 3..."},"aerialway/occupancy":{"placeholder":"2, 4, 8..."},"aerialway/summer/access":{"options":{"both":"Beide"}},"aeroway":{"label":"Tipe"},"aircraft/type":{"label":"Tipe","options":{"military":"Militêre"}},"amenity":{"label":"Tipe"},"archaeological_site":{"label":"Tipe"},"architect":{"label":"Argitek"},"area/highway":{"label":"Tipe"},"armrest":{"options":{"undefined":"Onbekend"}},"artwork_type":{"label":"Tipe"},"atm":{"label":"OTM"},"attraction":{"label":"Tipe"},"bar":{"label":"Kroeg"},"barrier":{"label":"Tipe","options":{"bollard":"Toupaal","cattle_grid":"roosterhek","city_wall":"Stadsmuur","cycle_barrier":"Fietshinderpaal","ditch":"Sloot","entrance":"Deurgang","fence":"Heining","gate":"Hek","hedge":"Laning","kissing_gate":"Draaihek","retaining_wall":"Stuwal","stile":"Steg","toll_booth":"Tolhek","wall":"Muur"}},"barrier_planter":{"label":"Versperring","options":{"planter":"Ja","undefined":"Nee"}},"basin":{"label":"Tipe"},"bath/type":{"options":{"hot_spring":"Warmwaterbron","lake":"Meer"}},"beauty":{"label":"Dienste","options":{"cosmetics":"Kosmetiek"}},"bench":{"label":"Bankie"},"bicycle_parking":{"label":"Tipe"},"bicycle_road":{"options":{"undefined":"Nee","yes":"Ja"}},"bin":{"label":"Asblik"},"blind":{"options":{"no":"Nee","yes":"Ja"}},"board_type":{"label":"Tipe"},"bollard":{"label":"Tipe"},"boules":{"label":"Tipe"},"boundary":{"label":"Tipe"},"bridge":{"label":"Tipe"},"bridge/support":{"label":"Tipe"},"bridge_combo":{"label":"Tipe","options":{"boardwalk":"Plankenweg"}},"building":{"label":"Gebou","options":{"apartments":"Woonstelgebou","barn":"Skuur","bungalow":"Kothuis","bunker":"Bomskuiling","cabin":"Blokhut","chapel":"Kapelgebou","church":"Kerkgebou","civic":"Openbare gebou","college":"Kollegegebou","commercial":"Kommersiële gebou","construction":"Gebou in aanbou","detached":"Alleenstaande woning","dormitory":"Studentehuis","farm":"Plaashuis","farm_auxiliary":"Plaasgebou","garage":"Garage","garages":"Vulstasies","greenhouse":"Kweekhuis","hangar":"Loodsgebou","hospital":"Hospitaalgebou","hotel":"Hotelgebou","house":"Huis","houseboat":"Huisboot","hut":"Hut","industrial":"Industriële gebou","kindergarten":"Kleuterskoolgebou","mosque":"Moskeegebou","office":"Kantoorgebou","public":"Openbare gebou","residential":"Residensiële gebou","retail":"Kleinhandel-gebou","roof":"Dak","ruins":"Vervalle gebou","school":"Skoolgebou","semidetached_house":"Halfgekoppelde huis","service":"Diensgebou","stable":"Stalle","temple":"Tempelgebou","train_station":"Spoorwegstasiegebou","university":"Universiteitgebou","warehouse":"Pakhuis"}},"building/flats":{"placeholder":"2, 4, 6, 8..."},"building/levels":{"label":"Vlakke","placeholder":"2, 4, 6..."},"building/levels/underground":{"placeholder":"2, 4, 6..."},"building/part":{"label":"Geboudeel"},"bunker_type":{"label":"Tipe"},"cables":{"placeholder":"1, 2, 3..."},"camera/direction":{"placeholder":"45, 90, 180, 270"},"camp_site":{"label":"Tipe"},"capacity":{"label":"Kapasiteit","placeholder":"50, 100, 200..."},"capacity/disabled_parking":{"placeholder":"1, 2, 3..."},"capacity/persons":{"placeholder":"50, 100, 200..."},"capacity_parking":{"placeholder":"10, 20, 30..."},"capacity_volume":{"placeholder":"50, 100, 200..."},"castle_type":{"label":"Tipe","options":{"manor":"Landhuis"}},"club":{"label":"Tipe"},"collection_times":{"label":"Afhaal tye"},"communication_multi":{"label":"Kommunikasie"},"community_centre":{"label":"Tipe"},"construction":{"label":"Tipe"},"consulate":{"label":"Tipe"},"country":{"label":"Land"},"couplings":{"placeholder":"1, 2, 3..."},"covered_no":{"options":{"no":"Nee","yes":"Ja"}},"craft":{"label":"Tipe","options":{"beekeeper":"Byeboer","blacksmith":"Smid","brewery":"Brouery","carpenter":"Skrynwerker","caterer":"Spysenier","dressmaker":"Kleremaker","electrician":"Elektrisiën","gardener":"Tuinier","glaziery":"Glaswerk","metal_construction":"Metaalwerk","painter":"Verwer","photographer":"Fotograaf","plumber":"Loodgieter","roofer":"Dakdekker","sawmill":"Saagmeule","shoemaker":"Skoenmaker","stonemason":"Klipkapper","tailor":"Snyer","window_construction":"Vensterraamwerk","winery":"Wynboer"}},"crop":{"options":{"grass":"Gras"}},"crossing":{"label":"Tipe"},"crossing/barrier":{"options":{"no":"Nee","yes":"Ja"}},"crossing_raised":{"options":{"table":"Ja","undefined":"Nee"}},"cuisine":{"options":{"ice_cream":"Roomys","regional":"Streek"}},"cutting":{"label":"Tipe"},"cycle_barrier":{"label":"Tipe"},"cycle_network":{"label":"Netwerk"},"denomination":{"label":"Denominasie"},"denotation":{"label":"Aanduiding"},"departures_board":{"options":{"yes":"Ja"}},"depot":{"label":"Tipe"},"description":{"label":"Beskrywing"},"destination":{"label":"Eindbestemminge"},"destination/ref":{"label":"Eindbestemming weg getalle"},"destination_waterway":{"label":"Eindbestemming"},"devices":{"placeholder":"1, 2, 3..."},"diplomatic":{"label":"Tipe","options":{"embassy":"Ambassade"}},"diplomatic/services":{"label":"Dienste"},"direction":{"placeholder":"45, 90, 180, 270"},"direction_cardinal-US-CA-NZ":{"label":"Rigting"},"direction_clock":{"label":"Rigting","options":{"anticlockwise":"Antikloksgewys","clockwise":"Kloksgewys"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"distance":{"label":"Afstand","terms":"distansie"},"disused/amenity":{"label":"Tipe"},"disused/railway":{"label":"Tipe"},"disused/shop":{"label":"Tipe"},"dock":{"label":"Tipe"},"dog":{"options":{"yes":"Toegelaat"}},"door_type":{"label":"Tipe"},"drive_through":{"label":"Deurry"},"electrified":{"options":{"no":"Nee"}},"embankment":{"label":"Tipe"},"embassy":{"label":"Tipe","options":{"yes":"Ambassade"}},"emergency":{"label":"Noodgeval"},"emergency_combo":{"label":"Tipe"},"emergency_ward_entrance":{"label":"Tipe"},"enforcement":{"label":"Tipe"},"entrance":{"label":"Tipe","options":{"emergency":"Nooduitgang"}},"fax":{"label":"Faks","placeholder":"+27 11 907 1111"},"fee":{"label":"Fooi"},"fence_type":{"label":"Tipe"},"fire_hydrant/position":{"options":{"parking_lot":"Parkering"}},"fire_hydrant/type":{"options":{"wall":"Muur"}},"fire_mains":{"options":{"no":"Nee"}},"fire_service_inlet":{"options":{"wall":"Muur"}},"fire_sprinkler":{"options":{"no":"Nee"}},"fixme":{"label":"Maak My Reg"},"flashing_lights":{"options":{"no":"Nee","yes":"Ja"}},"ford":{"label":"Tipe"},"fountain":{"label":"Tipe"},"fuel":{"label":"Brandstof"},"garden/type":{"label":"Tuin"},"gender":{"placeholder":"Onbekend"},"generator/method":{"options":{"water-storage":"Reservoir"}},"generator/type":{"label":"Tipe"},"government":{"label":"Tipe"},"guest_house":{"label":"Tipe"},"handicap":{"placeholder":"1-18"},"healthcare":{"label":"Tipe","options":{"clinic":"Kliniek","dentist":"Tandarts","doctor":"Dokter"}},"highway":{"label":"Tipe"},"highway_cartpath":{"options":{"service":"Diensweg"}},"historic":{"label":"Tipe","options":{"archaeological_site":"Argeologiese plek","boundary_stone":"Grenspaal","building":"Historiese gebou","castle":"Kasteel","fort":"Historiese fort","manor":"Landhuis","memorial":"Gedenkteken","monument":"Monument","railway":"Spoorlyn","ruins":"Reune","tomb":"Graf","wayside_cross":"Wegteken","wayside_shrine":"Wegaltaar","wreck":"Wrak"}},"holding_position/type":{"label":"Tipe","options":{"runway":"Aanloopbaan"}},"hoops":{"placeholder":"1, 2, 4..."},"horse_riding":{"options":{"horse_riding":"Ja","undefined":"Nee"}},"incline":{"label":"Steilte"},"indoor":{"label":"Binne"},"indoor_type":{"label":"Tipe"},"industrial":{"label":"Tipe"},"information":{"label":"Tipe"},"internet_access":{"label":"Internetverbinding","options":{"no":"Nee","terminal":"Terminaal","wired":"Bedraad","wlan":"Wifi","yes":"Ja"}},"irrigation_pivot":{"options":{"pivot":"Ja","undefined":"Nee"}},"junction/ref_oneway":{"label":"Verkeerskruising nummer"},"junction_line":{"label":"Verkeerskruising"},"kerb":{"options":{"no":{"title":"Nee"},"yes":{"title":"Ja"}}},"kerb/kerb_barrier":{"label":"Tipe"},"kneipp_water_cure_multi":{"label":"Kom"},"lamp_type":{"label":"Tipe"},"landuse":{"label":"Tipe"},"lanes":{"label":"Lane","placeholder":"1, 2, 3..."},"layer":{"label":"Laag"},"leisure":{"label":"Tipe"},"level_semi":{"label":"Vlakke"},"liaison":{"label":"Tipe"},"lifeguard":{"label":"Tipe"},"lift_gate/type":{"label":"Tipe"},"location":{"label":"Plek"},"location_pool":{"options":{"indoor":"Binne","roof":"Dak"}},"man_made":{"label":"Tipe"},"manhole":{"label":"Tipe"},"map_type":{"label":"Tipe"},"marker":{"label":"Tipe"},"material":{"options":{"sand":"Sand","wood":"Woud"}},"maxspeed":{"label":"Spoedlimiet","placeholder":"40, 50, 60..."},"maxspeed/advisory":{"placeholder":"40, 50, 60..."},"maxspeed/hgv":{"placeholder":"40, 50, 60..."},"memorial":{"label":"Tipe"},"minspeed":{"placeholder":"20, 30, 40..."},"mobile":{"placeholder":"+27 11 907 1111"},"monitoring_multi":{"label":"Monitering"},"mooring":{"options":{"no":"Nee","private":"Privaat","yes":"Ja"}},"mtb/scale":{"placeholder":"0, 1, 2, 3..."},"mtb/scale/uphill":{"placeholder":"0, 1, 2, 3..."},"museum":{"label":"Tipe"},"name":{"label":"Naam","placeholder":"Algemene naam (indien enige)"},"natural":{"label":"Natuurlike"},"network":{"label":"Netwerk"},"network_bicycle":{"options":{"ncn":"Nasionaal","rcn":"Streek"}},"network_foot":{"options":{"nwn":"Nasionaal","rwn":"Streek"}},"network_horse":{"options":{"nhn":"Nasionaal","rhn":"Streek"}},"network_road":{"label":"Netwerk"},"note":{"label":"Nota"},"nudism":{"options":{"designated":"Toegewys","no":"Toegang Verbode","yes":"Toegelaat"}},"office":{"label":"Tipe","options":{"accountant":"Boekhouer","advertising_agency":"Advetensieagentskap","architect":"Argitek","charity":"Liefdadigheidskantoor","diplomatic":"Diplomatiekekantoor","educational_institution":"Opvoedkundige instelling","employment_agency":"Werksagentskap","energy_supplier":"Energieverskafferkantoor","estate_agent":"Eiendomsagent","financial":"Finansieële kantoor","financial_advisor":"Finansieële adviseur","government":"Regeringskantoor","insurance":"Versekeringskantoor","newspaper":"Koerant kantoor","ngo":"NRO-kantoor","notary":"Notaris","quango":"Kwasi NRO-kantoor","religion":"Godsdienskantoor","research":"Navorsingskantoor","tax_advisor":"Belastingadviseur","telecommunication":"Telekommunikasiekantoor","travel_agent":"Reisagent"}},"oneway":{"label":"Eenrigting","options":{"no":"Nee","yes":"Ja"}},"oneway_yes":{"options":{"no":"Nee","yes":"Ja"}},"openfire":{"label":"Open vuur toegestaan"},"opening_hours":{"label":"Ure","placeholder":"Onbekend"},"operator":{"label":"Operateur"},"organic":{"label":"Organiesekos"},"par":{"placeholder":"3, 4, 5..."},"parcel_pickup":{"options":{"no":"Nee","yes":"Ja"}},"park_ride":{"label":"Parkeer en ry"},"parking":{"label":"Tipe","options":{"garage_boxes":{"title":"Vulstasies"},"rooftop":{"title":"Dak"},"sheds":{"title":"Skure"},"surface":{"title":"Oppervlakte"}}},"parking/side/parking":{"options":{"no":"Nee"}},"parking_entrance":{"label":"Tipe"},"parking_space":{"label":"Tipe"},"phases":{"placeholder":"1, 2, 3..."},"phone":{"label":"Telefoon"},"pipeline":{"label":"Tipe"},"piste/type":{"label":"Tipe","options":{"connection":"Verbinding","playground":"Speelgrond"}},"place":{"label":"Tipe"},"plant/source":{"label":"Energiebron"},"playground":{"label":"Tipe"},"plots":{"placeholder":"10, 20, 30..."},"post_box/type":{"label":"Tipe"},"power":{"label":"Tipe"},"public_bookcase/type":{"label":"Tipe"},"pump":{"label":"Pomp","options":{"yes":"Ja"}},"railway":{"label":"Tipe"},"railway/position":{"label":"Mylpaal plek"},"ramp":{"options":{"no":"Nee","yes":"Ja"}},"recycling_type":{"label":"Tipe","options":{"centre":"Sentrum"}},"ref_disc_golf_hole":{"placeholder":"1-18"},"ref_golf_hole":{"placeholder":"1-18"},"ref_highway_junction":{"label":"Verkeerskruising nummer"},"ref_platform":{"label":"Platform nummer"},"ref_road_number":{"label":"Weg getal"},"ref_room_number":{"label":"Kamer getal"},"ref_route":{"label":"Roete getal"},"ref_runway":{"label":"Aanloopbaan getal","placeholder":"bv. 01L/19R"},"ref_stop_position":{"label":"Stop posisie getal"},"ref_taxiway":{"label":"Rybaannaam"},"relation":{"label":"Tipe"},"religion":{"label":"Geloof","options":{"buddhist":"Boeddhis","christian":"Christen","hindu":"Hindoe","jewish":"Joods","muslim":"Moslem","shinto":"Sjinto","taoist":"Taoist"}},"residential":{"label":"Tipe"},"resort":{"label":"Tipe"},"resource":{"options":{"sand":"Sand"}},"restriction":{"label":"Tipe"},"roller_coaster/track":{"label":"Tipe"},"room":{"label":"Tipe"},"rooms":{"label":"Kamers"},"route":{"label":"Tipe"},"route_master":{"label":"Tipe"},"royal_cypher-GB":{"options":{"no":"Nee"}},"ruins":{"label":"Tipe"},"screen":{"placeholder":"1, 4, 8…"},"scuba_diving":{"label":"Dienste"},"seamark/beacon_lateral/system":{"options":{"other":"Ander"}},"seamark/buoy_lateral/system":{"options":{"other":"Ander"}},"seamark/harbour/category_marina":{"options":{"marina":"Ja","marina_no_facilities":"Nee"}},"seamark/type":{"label":"Seemerker"},"seats":{"placeholder":"2, 4, 6..."},"second_hand":{"options":{"no":"Nee","yes":"Ja"}},"service":{"label":"Tipe","options":{"alley":"Steeg","drive-through":"Deurry","driveway":"Oprit","emergency_access":"Noodtoegang","parking_aisle":"In parkering"}},"service/vehicle":{"label":"Dienste"},"service_rail":{"label":"Diens","options":{"yard":"Werf"}},"shelter":{"label":"Skuiling"},"shelter_type":{"label":"Tipe"},"shop":{"label":"Tipe"},"shower":{"label":"Storte"},"siren/type":{"label":"Tipe","options":{"other":"Ander"}},"site":{"label":"Tipe"},"social_facility":{"label":"Tipe","options":{"nursing_home":"Verpleging- en versorgingshuis","shelter":"Skuiling"}},"source":{"options":{"osm notes":"OpenStreetMap notas"}},"sport":{"label":"Sporte"},"sport/sport_ice":{"label":"Sporte"},"sport/sport_pub":{"label":"Sporte"},"sport/sport_racing_motor":{"label":"Sporte"},"sport/sport_racing_nonmotor":{"label":"Sporte"},"step_count":{"label":"Aantal trappe"},"stile":{"label":"Tipe"},"stop":{"options":{"minor":"Klein weg"}},"street_cabinet":{"label":"Tipe"},"stroller":{"options":{"no":"Nee","yes":"Ja"}},"structure":{"label":"Struktuur","options":{"bridge":"Brug","cutting":"Uitgrawing","embankment":"Dyk","ford":"Drif","tunnel":"Tonnel"},"placeholder":"Onbekend"},"structure_canal":{"label":"Struktuur","options":{"bridge":"Brug","tunnel":"Tonnel"},"placeholder":"Onbekend"},"structure_power":{"label":"Struktuur"},"structure_waterway":{"label":"Struktuur","options":{"tunnel":"Tonnel"},"placeholder":"Onbekend"},"studio":{"label":"Tipe"},"substance":{"options":{"fuel":"Brandstof","water":"Drinkwater"}},"substation":{"label":"Tipe","options":{"industrial":"Industrieel"}},"substation_pipeline":{"label":"Tipe","options":{"industrial":"Industrieel"}},"supervised":{"label":"Onder toesig"},"surface":{"label":"Oppervlakte","options":{"grass":"Gras","sand":"Sand","wood":"Woud"}},"surveillance":{"label":"Toesig"},"surveillance/type":{"label":"Toesig"},"surveillance/zone":{"label":"Toesiggebied"},"survey_point/purpose":{"options":{"both":"Beide"}},"survey_point/structure":{"label":"Struktuur","options":{"block":"Blok"}},"swimming_pool":{"label":"Tipe"},"switch":{"label":"Tipe"},"takeaway":{"options":{"no":"Nee","yes":"Ja"}},"telecom":{"label":"Tipe"},"telescope/type":{"label":"Tipe"},"toilets":{"label":"Toilette"},"toilets/menstrual_products":{"options":{"no":"Nee"}},"toilets/wheelchair":{"options":{"no":"Nee","yes":"Ja"}},"tomb":{"label":"Tipe"},"tourism":{"label":"Tipe"},"tower/construction":{"label":"In aanbou"},"tower/platforms":{"placeholder":"1, 2, 3..."},"tower/type":{"label":"Tipe"},"townhall/type":{"label":"Tipe"},"tracktype":{"label":"Spoor"},"trade":{"label":"Tipe"},"traffic_calming":{"label":"Tipe"},"traffic_sign":{"label":"Verkeersteken"},"traffic_signals":{"label":"Tipe"},"traffic_signals/sound":{"options":{"no":"Nee","yes":"Ja"}},"trail_visibility":{"label":"Sigbaarheid van pad"},"transformer":{"label":"Tipe"},"trees":{"label":"Bome"},"trench":{"label":"Tipe"},"tunnel":{"label":"Tipe"},"tunnel_combo":{"label":"Tipe"},"two_sided":{"options":{"undefined":"Nee","yes":"Ja"}},"usage_rail":{"options":{"industrial":"Industrieel","military":"Militêre","tourism":"Toerisme"}},"utility":{"options":{"power":"Krag","water":"Water"}},"valve":{"label":"Tipe"},"vehicles":{"label":"Voertuige","options":{"bus":"Bus","ferry":"Pont","light_rail":"Ligte spoor","monorail":"Monospoor","subway":"Ondergrondse spoorweg","train":"Trein","tram":"Trem"}},"vending":{"options":{"fuel":"Brandstof","ice_cream":"Roomys","water":"Drinkwater"}},"volcano/type":{"label":"Vuurspuwende berg"},"wall":{"label":"Tipe"},"water":{"label":"Tipe"},"water_point":{"label":"Waterpunt"},"water_source":{"label":"Waterbron","options":{"pond":"Dammetjie","river":"Rivier","stream":"Stroom","water_tank":"Watertenk"}},"water_tank/volume":{"placeholder":"10000, 20000, 30000…"},"waterway":{"label":"Tipe"},"website":{"label":"Webwerf","placeholder":"https://voorbeeld.com"},"website/menu":{"placeholder":"https://voorbeeld.com"},"wetland":{"label":"Tipe"},"wheelchair":{"label":"Rolstoeltoegang","options":{"no":"Nee","yes":"Ja"}},"wikipedia":{"label":"Wikipedia"},"windings":{"placeholder":"1, 2, 3..."},"windings/auto":{"options":{"no":"Nee","yes":"Ja"}},"windings/configuration":{"options":{"open":"Oop"}}},"presets":{"address":{"name":"Adres"},"aerialway":{"name":"Kabelbaanbaken"},"aerialway/cable_car":{"name":"Sweefspoor"},"aerialway/chair_lift":{"name":"Stoelhyser"},"aerialway/drag_lift":{"name":"Sleephysbak"},"aerialway/gondola":{"name":"Gondel hysbak"},"aerialway/magic_carpet":{"name":"Towertapythyser"},"aerialway/platter":{"name":"Platter hysbak"},"aerialway/pylon":{"name":"Lugwegspantoring"},"aerialway/t-bar":{"name":"T-bar hysbak"},"aeroway":{"name":"Vliegbaanbaken"},"aeroway/aerodrome":{"name":"Lughawe"},"aeroway/apron":{"name":"Laaiblad"},"aeroway/gate":{"name":"Lughawepoort"},"aeroway/hangar":{"name":"Loods"},"aeroway/helipad":{"name":"Helikopterplatform"},"aeroway/holding_position":{"name":"Hou posisie"},"aeroway/parking_position":{"name":"Parkeer posisie"},"aeroway/runway":{"name":"Aanloopbaan"},"aeroway/taxiway":{"name":"Rybaan"},"aeroway/terminal":{"name":"Terminaal"},"aeroway/windsock":{"name":"Windkous"},"amenity":{"name":"Infrastruktuur"},"amenity/animal_boarding":{"name":"Dierehotel"},"amenity/animal_shelter":{"name":"Dierebeskerming"},"amenity/arts_centre":{"name":"Kunssentrum"},"amenity/atm":{"name":"OTM"},"amenity/bank":{"name":"Bank"},"amenity/bar":{"name":"Kroeg"},"amenity/bbq":{"name":"Braai"},"amenity/bench":{"name":"Bankie"},"amenity/bicycle_parking":{"name":"Fietsparkering"},"amenity/bicycle_parking/building":{"name":"Fietsgarage"},"amenity/bicycle_rental":{"name":"Fietshuur"},"amenity/bicycle_repair_station":{"name":"Fietsherstelstasie"},"amenity/biergarten":{"name":"Biertuin"},"amenity/boat_rental":{"name":"Boothuur"},"amenity/bureau_de_change":{"name":"Wisselkantoor"},"amenity/bus_station":{"name":"Busstasie / -terminaal"},"amenity/cafe":{"name":"Kafee"},"amenity/car_rental":{"name":"Motorhuur"},"amenity/car_sharing":{"name":"Saam-ry"},"amenity/car_wash":{"name":"Karwas"},"amenity/casino":{"name":"Dobbelhuis"},"amenity/charging_station":{"name":"Herlaaistasie"},"amenity/childcare":{"name":"Kindersorg"},"amenity/cinema":{"name":"Rolprentteater","terms":"fliek,inry,movie,silverdoek"},"amenity/clinic":{"name":"Kliniek"},"amenity/clock":{"name":"Klok"},"amenity/community_centre":{"name":"Gemeenskapsentrum"},"amenity/conference_centre":{"name":"Konverensiesentrum"},"amenity/courthouse":{"name":"Hof"},"amenity/crematorium":{"name":"Krematorium"},"amenity/dentist":{"name":"Tandarts"},"amenity/doctors":{"name":"Dokter"},"amenity/drinking_water":{"name":"Drinkwater"},"amenity/embassy":{"name":"Ambassade"},"amenity/events_venue":{"name":"Onthaallokaal"},"amenity/fast_food":{"name":"Kitskos"},"amenity/ferry_terminal":{"name":"Pontterminaal"},"amenity/fire_station":{"name":"Brandweerstasie"},"amenity/food_court":{"name":"Kosgebied"},"amenity/fountain":{"name":"Fontein"},"amenity/fuel":{"name":"Brandstofstasie"},"amenity/gambling":{"name":"Dobbelary"},"amenity/grave_yard":{"name":"Begraafplaas"},"amenity/grit_bin":{"name":"Grit bin"},"amenity/hospital":{"name":"Hospitaalgebied"},"amenity/hunting_stand":{"name":"Jagtoring"},"amenity/internet_cafe":{"name":"Internetkafee"},"amenity/library":{"name":"Biblioteek"},"amenity/loading_dock":{"name":"Laaistasie"},"amenity/marketplace":{"name":"Markplein"},"amenity/monastery":{"name":"Monnikekloostergebied"},"amenity/motorcycle_parking":{"name":"Motorfietsparkering"},"amenity/nightclub":{"name":"Nagklub"},"amenity/nursing_home":{"name":"Verpleging- en versorgingshuis"},"amenity/parking":{"name":"Parkering"},"amenity/parking_entrance":{"name":"Parkeeringang","terms":"ingang/uitgang van parkeergarage"},"amenity/parking_space":{"name":"Parkeerplek"},"amenity/payment_terminal":{"name":"Betaalautomaat"},"amenity/pharmacy":{"name":"Apteek"},"amenity/place_of_worship":{"name":"Plek van aanbidding"},"amenity/place_of_worship/buddhist":{"name":"Boeddhiste tempel"},"amenity/place_of_worship/christian":{"name":"Christen Kerk"},"amenity/place_of_worship/jewish":{"name":"Joodse Sinagoge"},"amenity/place_of_worship/muslim":{"name":"Moslem Moskee"},"amenity/police":{"name":"Polisie"},"amenity/post_box":{"name":"Posbus"},"amenity/post_office":{"name":"Poskantoor"},"amenity/prison":{"name":"Tronkgebied"},"amenity/pub":{"name":"Kroeg"},"amenity/public_bath":{"name":"Openbare bad"},"amenity/public_bookcase":{"name":"Ruilboekrak"},"amenity/ranger_station":{"name":"Veldwagtershut"},"amenity/recycling":{"name":"Herwinningspunt"},"amenity/restaurant":{"name":"Restaurant"},"amenity/restaurant/seafood":{"name":"Seekosrestaurant"},"amenity/shelter":{"name":"Skuiling"},"amenity/shower":{"name":"Stort"},"amenity/social_centre":{"name":"Maatskaplike sentrum"},"amenity/social_facility":{"name":"Sosiale fasiliteit"},"amenity/social_facility/nursing_home":{"name":"Verpleging- en versorgingshuis"},"amenity/studio":{"name":"Ateljee"},"amenity/taxi":{"name":"Taxi staanplek"},"amenity/telephone":{"name":"Openbare telefoon"},"amenity/theatre":{"name":"Teater"},"amenity/toilets":{"name":"Badkamer"},"amenity/townhall":{"name":"Stadsaal"},"amenity/townhall/city":{"name":"Stadsaal"},"amenity/vehicle_inspection":{"name":"Voertuiginspeksie"},"amenity/vending_machine":{"name":"Verkoopmasjien"},"amenity/veterinary":{"name":"Veearts"},"amenity/watering_place":{"name":"Drinkplek"},"area":{"name":"Area"},"area/highway":{"name":"Weggebied"},"barrier":{"name":"Versperring"},"barrier/block":{"name":"Blok"},"barrier/bollard":{"name":"Toupaal"},"barrier/cattle_grid":{"name":"roosterhek"},"barrier/city_wall":{"name":"Stadsmuur"},"barrier/cycle_barrier":{"name":"Fietshinderpaal"},"barrier/ditch":{"name":"Droog sloot"},"barrier/entrance":{"name":"Deurgang"},"barrier/fence":{"name":"Heining"},"barrier/gate":{"name":"Hek"},"barrier/hedge":{"name":"Laning"},"barrier/kissing_gate":{"name":"Draaihek"},"barrier/retaining_wall":{"name":"Stuwal"},"barrier/stile":{"name":"Steg"},"barrier/toll_booth":{"name":"Tolhek"},"barrier/wall":{"name":"Muur"},"boundary":{"name":"Grens"},"boundary/administrative":{"name":"Administratiewe grens"},"bridge/support/pier":{"name":"Brugpier"},"building":{"name":"Gebou"},"building/apartments":{"name":"Woonstelgebou"},"building/barn":{"name":"Skuur"},"building/bungalow":{"name":"Kothuis"},"building/bunker":{"name":"Bomskuiling"},"building/cabin":{"name":"Blokhut"},"building/chapel":{"name":"Kapelgebou"},"building/church":{"name":"Kerkgebou"},"building/civic":{"name":"Openbare gebou"},"building/college":{"name":"Kollegegebou"},"building/commercial":{"name":"Kommersiële gebou"},"building/construction":{"name":"Gebou in aanbou"},"building/detached":{"name":"Alleenstaande woning"},"building/dormitory":{"name":"Studentehuis"},"building/entrance":{"name":"Ingang/Uitgang"},"building/farm":{"name":"Plaashuis"},"building/farm_auxiliary":{"name":"Plaasgebou"},"building/garage":{"name":"Garage"},"building/garages":{"name":"Vulstasies"},"building/greenhouse":{"name":"Kweekhuis"},"building/hangar":{"name":"Loodsgebou"},"building/hospital":{"name":"Hospitaalgebou"},"building/hotel":{"name":"Hotelgebou"},"building/house":{"name":"Huis"},"building/houseboat":{"name":"Huisboot"},"building/hut":{"name":"Hut"},"building/industrial":{"name":"Industriële gebou"},"building/kindergarten":{"name":"Kleuterskoolgebou"},"building/mosque":{"name":"Moskeegebou"},"building/office":{"name":"Kantoorgebou"},"building/public":{"name":"Openbare gebou"},"building/residential":{"name":"Residensiële gebou"},"building/retail":{"name":"Kleinhandel-gebou"},"building/roof":{"name":"Dak"},"building/ruins":{"name":"Vervalle gebou"},"building/school":{"name":"Skoolgebou"},"building/semidetached_house":{"name":"Halfgekoppelde huis"},"building/service":{"name":"Diensgebou"},"building/stable":{"name":"Stalle"},"building/temple":{"name":"Tempelgebou"},"building/train_station":{"name":"Spoorwegstasiegebou"},"building/university":{"name":"Universiteitgebou"},"building/warehouse":{"name":"Pakhuis"},"building_part":{"name":"Geboudeel"},"building_point":{"name":"Gebou"},"club":{"name":"Klub"},"club/sport":{"name":"Sportklub"},"craft":{"name":"Handwerk"},"craft/beekeeper":{"name":"Byeboer"},"craft/blacksmith":{"name":"Smid"},"craft/carpenter":{"name":"Skrynwerker"},"craft/caterer":{"name":"Spysenier"},"craft/dressmaker":{"name":"Kleremaker"},"craft/electrician":{"name":"Elektrisiën"},"craft/electronics_repair":{"name":"Elektronieseherstelwinkel"},"craft/gardener":{"name":"Tuinier"},"craft/glaziery":{"name":"Glaswerk"},"craft/handicraft":{"name":"Handwerk"},"craft/hvac":{"name":"Verwarming/ventilasie"},"craft/metal_construction":{"name":"Metaalwerk"},"craft/painter":{"name":"Verwer"},"craft/photographer":{"name":"Fotograaf"},"craft/plumber":{"name":"Loodgieter"},"craft/roofer":{"name":"Dakdekker"},"craft/sawmill":{"name":"Saagmeule"},"craft/shoemaker":{"name":"Skoenmaker"},"craft/stonemason":{"name":"Klipkapper"},"craft/tailor":{"name":"Snyer"},"craft/window_construction":{"name":"Vensterraamwerk"},"craft/winery":{"name":"Wynboer"},"disused/amenity":{"name":"Infrastruktuur in onbruik"},"disused/railway":{"name":"Spoorwegbaken in onbruik"},"disused/shop":{"name":"Winkel in onbruik"},"embankment":{"name":"Dyk"},"emergency":{"name":"Noodgevalbaken"},"emergency/ambulance_station":{"name":"Ambulansstasie"},"emergency/defibrillator":{"name":"Defibrillator"},"emergency/fire_extinguisher":{"name":"Brandblusser"},"emergency/landing_site":{"name":"Noodlandingsplek"},"emergency/life_ring":{"name":"Reddingsboei"},"emergency/phone":{"name":"Noodtelefoon"},"emergency/siren":{"name":"Noodsirene"},"emergency/water_tank":{"name":"Noodwatertenk"},"entrance":{"name":"Ingang/Uitgang","terms":"ingang,uitgang"},"entrance/emergency":{"name":"Nooduitgang"},"entrance/emergency_ward_entrance":{"name":"Ingang voor noodgevalle"},"entrance/main":{"name":"Hoofingang"},"ford":{"name":"Drif"},"ford_line":{"name":"Drif"},"highway":{"name":"Wegbaken"},"highway/bridleway":{"name":"Ruiterpad"},"highway/bus_guideway":{"name":"Toegewyde busbaan"},"highway/bus_stop":{"name":"Bushalte"},"highway/corridor":{"name":"Korridor"},"highway/crossing":{"name":"Kruis"},"highway/crossing/unmarked":{"name":"Nie gemerk kruis"},"highway/cycleway":{"name":"Fietspad"},"highway/cycleway/bicycle_foot":{"name":"Fiets & voetpad"},"highway/elevator":{"name":"Hysbak"},"highway/emergency_bay":{"name":"Noodstopplek"},"highway/footway":{"name":"Voetpad"},"highway/footway/crossing/unmarked":{"name":"Nie gemerk kruis"},"highway/give_way":{"name":"Toegeeteken"},"highway/milestone":{"name":"Weg-mylpaal"},"highway/mini_roundabout":{"name":"Mini-sirkel"},"highway/motorway":{"name":"Snelweg"},"highway/motorway_junction":{"name":"Snelwegkruising"},"highway/motorway_link":{"name":"Verbindingsweg van snelweg"},"highway/passing_place":{"name":"Verbygaanplek"},"highway/path":{"name":"Pad"},"highway/path/boardwalk":{"name":"Plankenweg"},"highway/path/informal":{"name":"Informeel pad"},"highway/pedestrian_area":{"name":"Voetgangersgebied"},"highway/pedestrian_line":{"name":"Voetgangersweg"},"highway/primary":{"name":"Primere weg"},"highway/primary_link":{"name":"Verbindingsweg van primêre weg"},"highway/residential":{"name":"Residensiële weg"},"highway/rest_area":{"name":"Rusgebied"},"highway/road":{"name":"Onbekend weg"},"highway/road/bridge":{"name":"Onbekend brug"},"highway/secondary":{"name":"Sekondere weg"},"highway/secondary_link":{"name":"Verbindingsweg van sekondêre weg"},"highway/service":{"name":"Diensweg"},"highway/service/alley":{"name":"Steeg"},"highway/service/drive-through":{"name":"Deurry"},"highway/service/driveway":{"name":"Oprit"},"highway/service/emergency_access":{"name":"Noodtoegang"},"highway/service/parking_aisle":{"name":"Parkeergang"},"highway/services":{"name":"Diensgebied"},"highway/speed_camera":{"name":"Snelheidskamera"},"highway/steps":{"name":"Trappe","terms":"treë"},"highway/stop":{"name":"Stopteken"},"highway/street_lamp":{"name":"Straatlig"},"highway/tertiary":{"name":"Tertiere weg"},"highway/tertiary_link":{"name":"Verbindingsweg van tersiêre weg"},"highway/traffic_mirror":{"name":"Verkeerspieël"},"highway/traffic_signals":{"name":"Verkeerstekens"},"highway/trailhead":{"name":"Wandelvertrekpunt"},"highway/trunk":{"name":"Hoofweg"},"highway/trunk_link":{"name":"Verbindingsweg van hoofweg"},"highway/turning_circle":{"name":"Draai Sirkel"},"highway/turning_loop":{"name":"Draailus"},"highway/unclassified":{"name":"Ongeklassifiseerde weg"},"historic":{"name":"Historiese plek"},"historic/archaeological_site":{"name":"Argeologiese plek"},"historic/boundary_stone":{"name":"Grenspaal"},"historic/building":{"name":"Historiese gebou"},"historic/castle":{"name":"Kasteel"},"historic/fort":{"name":"Historiese fort"},"historic/manor":{"name":"Landhuis"},"historic/memorial":{"name":"Gedenkteken"},"historic/monument":{"name":"Monument"},"historic/ruins":{"name":"Reune"},"historic/tomb":{"name":"Graf"},"historic/wayside_cross":{"name":"Wegteken"},"historic/wayside_shrine":{"name":"Wegaltaar"},"historic/wreck":{"name":"Wrak"},"indoor":{"name":"Binnebaken"},"indoor/area":{"name":"Binnegebied"},"indoor/corridor":{"name":"Korridor"},"indoor/corridor_line":{"name":"Korridor"},"indoor/door":{"name":"Binnedeur"},"indoor/elevator":{"name":"Binnehysbak"},"indoor/room":{"name":"Kamer"},"indoor/stairs":{"name":"Binnetrappe"},"indoor/wall":{"name":"Binnemuur"},"junction":{"name":"Verkeerskruising","terms":"kruis"},"landuse":{"name":"Landgebruikbaken"},"landuse/allotments":{"name":"Volkstuine"},"landuse/aquaculture":{"name":"Akwakultuur"},"landuse/basin":{"name":"Kom"},"landuse/cemetery":{"name":"Begraafplaas","terms":"begraafplaas,kerkhof,dodeakker,godsakker"},"landuse/churchyard":{"name":"Kerkgebied"},"landuse/commercial":{"name":"Handelsgebied"},"landuse/construction":{"name":"Bougebied"},"landuse/farm":{"name":"Landbougrond"},"landuse/farmland":{"name":"Landbougrond"},"landuse/farmyard":{"name":"Plaaswerf"},"landuse/forest":{"name":"Woud"},"landuse/garages":{"name":"Vulstasies"},"landuse/grass":{"name":"Gras","terms":"gras,weiveld"},"landuse/greenhouse_horticulture":{"name":"Kweekhuisgebied"},"landuse/industrial":{"name":"Nywerheidsgebied"},"landuse/landfill":{"name":"Stortingsterrein"},"landuse/meadow":{"name":"Weiland","terms":"weiveld,grasland"},"landuse/military":{"name":"Militêre gebied"},"landuse/military/airfield":{"name":"Miliêre vliegveld"},"landuse/military/barracks":{"name":"Barakke"},"landuse/orchard":{"name":"Boord","terms":"boord,vrugteboord"},"landuse/pond":{"name":"Dammetjie"},"landuse/quarry":{"name":"Kwarrie","terms":"steengroef,klipbreekgat,groef"},"landuse/railway":{"name":"Korridor"},"landuse/religious":{"name":"Godsdiensgebied"},"landuse/reservoir":{"name":"Reservoir"},"landuse/residential":{"name":"Residensiële gebied"},"landuse/residential/apartments":{"name":"Woonstelle"},"landuse/retail":{"name":"Kleinhandel-gebied"},"landuse/vineyard":{"name":"Druiweprieel","terms":"wingerd"},"leisure":{"name":"Gemakseienksap"},"leisure/dog_park":{"name":"Hondepark"},"leisure/firepit":{"name":"Vuurgat"},"leisure/garden":{"name":"Tuin","terms":"tuin,gedenktuin"},"leisure/golf_course":{"name":"Golfbaan","terms":"golfbaan"},"leisure/indoor_play":{"name":"Binnespeelsentrum"},"leisure/marina":{"name":"Vasmeerplek","terms":"marina,jaghawe,waterdorp"},"leisure/miniature_golf":{"name":"Miniatuur golf"},"leisure/park":{"name":"Park"},"leisure/pitch":{"name":"Sportveld"},"leisure/pitch/american_football":{"name":"Amerikaanse Voetbal Veld","terms":"amerikaanse voetbalveld"},"leisure/pitch/basketball":{"name":"Basketbalbaan","terms":"korfbalbaan"},"leisure/pitch/soccer":{"name":"Sokkerveld","terms":"sokkerveld"},"leisure/pitch/tennis":{"name":"Tennisbaan","terms":"tennisbaan"},"leisure/pitch/volleyball":{"name":"Vlugbalbaan","terms":"vlugbalbaan"},"leisure/playground":{"name":"Speelgrond","terms":"speelpark,speelplek,speelterrein"},"leisure/playground/indoor":{"name":"Binnespeelgrond","terms":"speelpark,speelplek,speelterrein"},"leisure/slipway":{"name":"Inglipbaan","terms":"inglipbaan,oprit,afrit"},"leisure/stadium":{"name":"Stadium","terms":"stadion"},"leisure/swimming_pool":{"name":"Swembad"},"line":{"name":"Lyn","terms":"lyn"},"man_made":{"name":"Mensgemaakde eienskap"},"man_made/breakwater":{"name":"Breekwater","terms":"seebreker,golfbreker"},"man_made/bridge":{"name":"Bruggebied"},"man_made/cutline":{"name":"snylyn"},"man_made/embankment":{"name":"Dyk"},"man_made/fuel_pump":{"name":"Gaspomp"},"man_made/lighthouse":{"name":"Ligtoring","terms":"lugtoring"},"man_made/mineshaft":{"name":"Mynskag"},"man_made/monitoring_station":{"name":"Moniteringstasie"},"man_made/petroleum_well":{"name":"Oliebron"},"man_made/pier":{"name":"Pier","terms":"landingsplek,landingshoof,wandelhoof"},"man_made/pipeline":{"name":"Pyplyn"},"man_made/pumping_station":{"name":"Pompstasie"},"man_made/reservoir_covered":{"name":"Bedekte reservoir"},"man_made/silo":{"name":"Silo"},"man_made/storage_tank":{"name":"Opgaartenk"},"man_made/storage_tank/water":{"name":"Watertenk"},"man_made/surveillance":{"name":"Toesig"},"man_made/surveillance/camera":{"name":"Toesigkamera"},"man_made/survey_point":{"name":"Landmeterspunt"},"man_made/tower":{"name":"Toring"},"man_made/tower/communication":{"name":"Kommunikasietoring"},"man_made/tunnel":{"name":"Tonnelgebied"},"man_made/wastewater_plant":{"name":"Rioolaanleg"},"man_made/water_tap":{"name":"Waterkraan"},"man_made/water_tower":{"name":"Watertoring"},"man_made/water_well":{"name":"Waterbron"},"man_made/water_works":{"name":"Waterwerke"},"man_made/watermill":{"name":"Watermeul"},"man_made/windmill":{"name":"Windmeul"},"man_made/windpump":{"name":"Windpomp"},"man_made/works":{"name":"Fabriek"},"marker":{"name":"Merker"},"marker/utility/power":{"name":"Krag merker"},"military/trench":{"name":"Loopgraaf"},"natural":{"name":"Natuurlike baken"},"natural/bare_rock":{"name":"Kaal rots"},"natural/bay":{"name":"Baai"},"natural/beach":{"name":"Strand"},"natural/cape":{"name":"Kaap"},"natural/cave_entrance":{"name":"Grotingang"},"natural/cliff":{"name":"Krans","terms":"krans"},"natural/coastline":{"name":"Kuslyn","terms":"kuslyn"},"natural/fell":{"name":"Heuwel"},"natural/geyser":{"name":"Geiser"},"natural/glacier":{"name":"Gletser"},"natural/grassland":{"name":"Grasland"},"natural/heath":{"name":"Heide"},"natural/hot_spring":{"name":"Warmwaterbron"},"natural/mud":{"name":"Modder"},"natural/peak":{"name":"Piek"},"natural/reef":{"name":"Rif"},"natural/ridge":{"name":"Bergrif"},"natural/rock":{"name":"Rots"},"natural/saddle":{"name":"Saal"},"natural/sand":{"name":"Sand"},"natural/scree":{"name":"Berghellingspuin"},"natural/scrub":{"name":"Struikgewas"},"natural/spring":{"name":"Bron"},"natural/stone":{"name":"Steen"},"natural/tree":{"name":"Boom"},"natural/tree_row":{"name":"Bomery"},"natural/valley":{"name":"Vallei"},"natural/volcano":{"name":"Vuurspuwende berg"},"natural/water":{"name":"Water"},"natural/water/basin":{"name":"Kom"},"natural/water/lake":{"name":"Meer","terms":"meer"},"natural/water/pond":{"name":"Dammetjie","terms":"poel,poeletjie,dammetjie"},"natural/water/reservoir":{"name":"Reservoir"},"natural/water/wastewater":{"name":"Rioolkom"},"natural/wetland":{"name":"Vleiland"},"natural/wood":{"name":"Bos"},"office":{"name":"Kantoor"},"office/accountant":{"name":"Boekhouer"},"office/administrative":{"name":"Administrasie"},"office/advertising_agency":{"name":"Advetensieagentskap"},"office/architect":{"name":"Argitek"},"office/charity":{"name":"Liefdadigheidskantoor"},"office/diplomatic":{"name":"Diplomatiekekantoor"},"office/diplomatic/embassy":{"name":"Ambassade"},"office/educational_institution":{"name":"Opvoedkundige instelling"},"office/employment_agency":{"name":"Werksagentskap"},"office/energy_supplier":{"name":"Energieverskafferkantoor"},"office/estate_agent":{"name":"Eiendomsagent"},"office/financial":{"name":"Finansieële kantoor"},"office/financial_advisor":{"name":"Finansieële adviseur"},"office/government":{"name":"Regeringskantoor"},"office/insurance":{"name":"Versekeringskantoor"},"office/lawyer/notary":{"name":"Notaris"},"office/newspaper":{"name":"Koerant kantoor"},"office/ngo":{"name":"NRO-kantoor"},"office/notary":{"name":"Notaris"},"office/quango":{"name":"Kwasi NRO-kantoor"},"office/religion":{"name":"Godsdienskantoor"},"office/research":{"name":"Navorsingskantoor"},"office/tax_advisor":{"name":"Belastingadviseur"},"office/telecommunication":{"name":"Telekommunikasiekantoor"},"office/travel_agent":{"name":"Reisagent"},"place":{"name":"Plek"},"place/city":{"name":"Stad"},"place/city_block":{"name":"Stadsblok"},"place/farm":{"name":"Plaas"},"place/hamlet":{"name":"Gehuggie","terms":"dorpie"},"place/island":{"name":"Eiland"},"place/islet":{"name":"Eilandjie"},"place/isolated_dwelling":{"name":"Afgeleë blyplek"},"place/locality":{"name":"Ligging"},"place/neighbourhood":{"name":"Woonbuurt"},"place/quarter":{"name":"Wyk"},"place/square":{"name":"Plein"},"place/town":{"name":"Dorp","terms":"dorp"},"place/village":{"name":"Gehug","terms":"dorpie"},"playground":{"name":"Speelgrondtoestel"},"playground/climbingframe":{"name":"Raamwerk"},"point":{"name":"Punt"},"power":{"name":"Kragbaken"},"power/generator":{"name":"kragopwekker"},"power/line":{"name":"Kraglyn","terms":"kraglyn,kragdraad"},"power/minor_line":{"name":"Klein kraglyn"},"power/plant":{"name":"Kragstasiegebied"},"power/pole":{"name":"Kragpaal"},"power/substation":{"name":"Substasie","terms":"substasie"},"power/tower":{"name":"Hoogspanningstoring"},"power/transformer":{"name":"Transformator","terms":"transformator"},"public_transport/platform/bus":{"name":"Busperron","terms":"busplatform"},"public_transport/platform/bus_point":{"name":"Bushalte"},"public_transport/platform/bus_tram_point":{"name":"Trem- & bushalte"},"public_transport/platform/ferry":{"name":"Pontplatform"},"public_transport/platform/ferry_point":{"name":"Ponthalte / -platform"},"public_transport/platform/light_rail":{"name":"Ligte spoorperron"},"public_transport/platform/light_rail_point":{"name":"Ligte spoorhalte / -perron"},"public_transport/platform/monorail":{"name":"Monospoorperron"},"public_transport/platform/monorail_point":{"name":"Monospoorhalte / -perron"},"public_transport/platform/subway":{"name":"Ondergrondse spoorwegperron","terms":"ondergrondse spoorwegplatform"},"public_transport/platform/subway_point":{"name":"Ondergrondse spoorweghalte / -perron"},"public_transport/platform/train":{"name":"Spoorwegperron","terms":"spoorwegplatform"},"public_transport/platform/train_point":{"name":"Spoorweghalte / -perron"},"public_transport/platform/tram":{"name":"Tremperron","terms":"tremplatform"},"public_transport/platform/tram_point":{"name":"Tremhalte / -perron","terms":"tremplatform"},"public_transport/station_aerialway":{"name":"Lugwegstasie"},"public_transport/station_bus":{"name":"Busstasie"},"public_transport/station_ferry":{"name":"Pontterminaal"},"public_transport/station_light_rail":{"name":"Ligte spoorstasie"},"public_transport/station_monorail":{"name":"Monospoorstasie"},"public_transport/station_subway":{"name":"Ondergrondse spoorwegstasie"},"public_transport/station_train":{"name":"Spoorwegstasie"},"public_transport/station_train_halt":{"name":"Spoorwegstasie (op versoek)"},"public_transport/station_tram":{"name":"Tremstasie"},"public_transport/stop_position_light_rail":{"name":"Ligte spoor stop posisie"},"public_transport/stop_position_monorail":{"name":"Monospoor stop posisie"},"public_transport/stop_position_tram":{"name":"Trem stop posisie"},"railway":{"name":"Spoorwegbaken"},"railway/abandoned":{"name":"Verlate spoorweg"},"railway/construction":{"name":"Spoorweg in aanbou"},"railway/crossing":{"name":"Spoorweg-pad kruis"},"railway/disused":{"name":"Spoorweg in onbruik"},"railway/funicular":{"name":"Kabelspoorweg"},"railway/halt":{"name":"Spoorwegstasie (op versoek)"},"railway/level_crossing":{"name":"Spooroorgang"},"railway/light_rail":{"name":"Ligte spoor"},"railway/milestone":{"name":"Spoorweg-mylpaal"},"railway/miniature":{"name":"Miniatuur spoorweg"},"railway/monorail":{"name":"Monospoor"},"railway/narrow_gauge":{"name":"Smalspoorweg"},"railway/platform":{"name":"Spoorwegperron"},"railway/preserved":{"name":"Erfenisspoorweg"},"railway/rail":{"name":"Treinspoor"},"railway/railway_crossing":{"name":"Spoorweg-spoorweg kruis"},"railway/signal":{"name":"Verkeerstekens vir spoorweg"},"railway/station":{"name":"Spoorwegstasiegebou"},"railway/subway":{"name":"Ondergrondse spoorweg"},"railway/subway_entrance":{"name":"Ondergrondse spoorwegingang","terms":"metroingang"},"railway/tram":{"name":"Tremspoor"},"railway/tram_crossing":{"name":"Trem-pad kruis"},"railway/tram_level_crossing":{"name":"Trem-weg kruis"},"railway/tram_stop":{"name":"Trem stop posisie"},"railway/yard":{"name":"Spoorwegterrein"},"relation":{"name":"Verhouding"},"route/ferry":{"name":"Pontroete"},"seamark":{"name":"Seemerker"},"shop":{"name":"Winkel"},"shop/agrarian":{"name":"Landbouwinkel"},"shop/alcohol":{"name":"Drankwinkel"},"shop/appliance":{"name":"Toestelwinkel"},"shop/art":{"name":"Kunswinkel"},"shop/baby_goods":{"name":"Babaware"},"shop/bakery":{"name":"Bakkery"},"shop/beauty":{"name":"Skoonheidswinkel"},"shop/beverages":{"name":"Drankgoedwinkel"},"shop/bicycle":{"name":"Fietswinkel"},"shop/bookmaker":{"name":"Beroepswedder"},"shop/books":{"name":"Boekwinkel"},"shop/boutique":{"name":"Boetiek"},"shop/butcher":{"name":"Slagter"},"shop/car":{"name":"Voertuighandelaar"},"shop/car_parts":{"name":"Motoronderdelewinkel"},"shop/car_repair":{"name":"Werkswinkel"},"shop/carpet":{"name":"Tapytwinkel"},"shop/charity":{"name":"Liefdadigheidswinkel"},"shop/cheese":{"name":"Kaaswinkel"},"shop/chemist":{"name":"Apteek"},"shop/chocolate":{"name":"Sjokoladewinkel"},"shop/clothes":{"name":"Klerewinkel"},"shop/coffee":{"name":"Koffiewinkel"},"shop/computer":{"name":"Rekenaarwinkel"},"shop/confectionery":{"name":"Lekkergoedwinkel"},"shop/convenience":{"name":"Geriefswinkel"},"shop/copyshop":{"name":"Fotostaatwinkel"},"shop/cosmetics":{"name":"Kosmetiekwinkel"},"shop/department_store":{"name":"Afdelingswinkel"},"shop/doityourself":{"name":"Doen-Dit-Self-winkel"},"shop/dry_cleaning":{"name":"Droogskoonmaker"},"shop/electronics":{"name":"Elektronikawinkel"},"shop/erotic":{"name":"Erotiese winkel"},"shop/fabric":{"name":"Lapwinkel"},"shop/farm":{"name":"Wegstal"},"shop/fishing":{"name":"Hengel gereedskapwinkel"},"shop/florist":{"name":"Bloemiste"},"shop/funeral_directors":{"name":"Begrafnisondernemer"},"shop/furniture":{"name":"Meubelwinkel"},"shop/garden_centre":{"name":"Tuinsentrum","terms":"kwekery"},"shop/general":{"name":"Algemene handelaar"},"shop/gift":{"name":"Geskenkwinkel"},"shop/greengrocer":{"name":"Groentewinkel"},"shop/hairdresser":{"name":"Haarkapper"},"shop/hardware":{"name":"Hardewarewinkel"},"shop/hearing_aids":{"name":"Gehoortoestellewinkel"},"shop/hifi":{"name":"Hoëtrouwinkel"},"shop/houseware":{"name":"Huisraadwinkel"},"shop/interior_decoration":{"name":"Binnenshuise versieringwinkel"},"shop/kiosk":{"name":"Kiosk","aliases":"kaffee"},"shop/laundry":{"name":"Wassery"},"shop/lottery":{"name":"Loterywinkel"},"shop/mall":{"name":"Winkelsentrum"},"shop/mobile_phone":{"name":"Selfoonwinkel"},"shop/motorcycle":{"name":"Motorfietshandelaar"},"shop/motorcycle_repair":{"name":"Motorfiets werkswinkel"},"shop/music":{"name":"Musiekwinkel"},"shop/optician":{"name":"Oogarts"},"shop/pet":{"name":"Troeteldierwinkel"},"shop/religion":{"name":"Godsdienswinkel"},"shop/repair":{"name":"Herstelwinkel"},"shop/seafood":{"name":"Seekoswinkel"},"shop/shoe_repair":{"name":"Skoenherstelwinkel"},"shop/shoes":{"name":"Skoenwinkel"},"shop/sports":{"name":"Sportwinkel"},"shop/stationery":{"name":"Skryfbehoeftewinkel"},"shop/supermarket":{"name":"Supermark"},"shop/supermarket/organic":{"name":"Organiesekoswinkel"},"shop/tailor":{"name":"Snyer"},"shop/telecommunication":{"name":"Telekommunikasiewinkel"},"shop/toys":{"name":"Speelgoedwinkel"},"shop/travel_agency":{"name":"Reisagent"},"shop/tyres":{"name":"Bandewinkel"},"shop/vacant":{"name":"Leë winkel"},"shop/video":{"name":"Videowinkel"},"shop/water":{"name":"Drinkwaterwinkel"},"telecom":{"name":"Telekommunikasiebaken"},"tourism/artwork":{"name":"Kunswerk"},"tourism/attraction":{"name":"Toerismeaantreklikheid"},"tourism/camp_site":{"name":"Kampterrein"},"tourism/caravan_site":{"name":"RV Park"},"tourism/guest_house":{"name":"Gastehuis","terms":"gastehuis,oornag verblyf"},"tourism/hostel":{"name":"Hostel"},"tourism/hotel":{"name":"Hotel"},"tourism/information":{"name":"Inligting"},"tourism/information/route_marker":{"name":"Roetemerker"},"tourism/motel":{"name":"Motel"},"tourism/museum":{"name":"Musuem"},"tourism/picnic_site":{"name":"Piekniek plek"},"tourism/theme_park":{"name":"Temapark"},"tourism/viewpoint":{"name":"Uitkykpunt"},"tourism/zoo":{"name":"Dieretuin"},"traffic_sign":{"name":"Verkeersteken"},"type/boundary":{"name":"Grens"},"type/boundary/administrative":{"name":"Administratiewe grens"},"type/destination_sign":{"name":"Eindbestemmingteken"},"type/multipolygon":{"name":"Multi-veelhoek"},"type/restriction":{"name":"Beperking"},"type/route":{"name":"Roete"},"type/route/aerialway":{"name":"Vliegroete"},"type/route/bicycle":{"name":"Fietsroete"},"type/route/bus":{"name":"Busroete"},"type/route/detour":{"name":"Omweg"},"type/route/ferry":{"name":"Pontroete"},"type/route/foot":{"name":"Wandelroete"},"type/route/hiking":{"name":"Hikingroete"},"type/route/light_rail":{"name":"Ligte spoorroete"},"type/route/monorail":{"name":"Monospoorroete"},"type/route/pipeline":{"name":"Pyplynroete"},"type/route/power":{"name":"Kraglynroete"},"type/route/road":{"name":"Wegroete"},"type/route/subway":{"name":"Ondergrondse spoorwegroete","terms":"metroroete"},"type/route/train":{"name":"Treinroete"},"type/route/tram":{"name":"Tremroete"},"type/route_master":{"name":"Roete Meester"},"type/site":{"name":"Plek"},"type/waterway":{"name":"Waterweg"},"waterway":{"name":"Waterwegbaken"},"waterway/canal":{"name":"Kanaal"},"waterway/dam":{"name":"Dam"},"waterway/ditch":{"name":"Sloot"},"waterway/drain":{"name":"Drein"},"waterway/milestone":{"name":"Waterweg-mylpaal"},"waterway/river":{"name":"Rivier"},"waterway/stream":{"name":"Stroom"},"waterway/weir":{"name":"Studam"}}}}}
\ No newline at end of file
diff --git a/dist/translations/ak.json b/dist/translations/ak.json
deleted file mode 100644
index f78cb5fd..00000000
--- a/dist/translations/ak.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "ak": {}
-}
\ No newline at end of file
diff --git a/dist/translations/ak.min.json b/dist/translations/ak.min.json
deleted file mode 100644
index 9ba56810..00000000
--- a/dist/translations/ak.min.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ak":{}}
\ No newline at end of file
diff --git a/dist/translations/am.json b/dist/translations/am.json
index a20d567d..45ffcf79 100644
--- a/dist/translations/am.json
+++ b/dist/translations/am.json
@@ -2,20 +2,92 @@
"am": {
"presets": {
"fields": {
+ "address": {
+ "placeholders": {
+ "city": "ከተማ",
+ "hamlet": "ከተማ"
+ }
+ },
"atm": {
"label": "ፈጣን የገንዘብ ማሽን"
},
+ "bar": {
+ "label": "ቡና ቤት"
+ },
"building": {
- "label": "ህንፃ"
+ "label": "ህንፃ",
+ "options": {
+ "apartments": "የመኖሪያ ቤት",
+ "commercial": "የንግድ ህንፃ",
+ "house": "የመኖሪያ ቤት",
+ "industrial": "የኢንዱስትሪ ቢሮ",
+ "public": "የህዝብ ህንፃ",
+ "retail": "የችርቻሮ ህንፃ",
+ "warehouse": "የዕቃ ቤት"
+ }
},
"clothes": {
"label": "ልብስ ቤት"
+ },
+ "diplomatic": {
+ "options": {
+ "embassy": "ኤምባሲ"
+ }
+ },
+ "embassy": {
+ "options": {
+ "yes": "ኤምባሲ"
+ }
+ },
+ "healthcare": {
+ "options": {
+ "clinic": "ክሊኒክ",
+ "dentist": "የጥርስ ሃኪም",
+ "doctor": "ክሊኒክ"
+ }
+ },
+ "office": {
+ "options": {
+ "accountant": "ሒሳብ ሠራተኛ",
+ "advertising_agency": "የማስታወቂያ ድርጅት",
+ "architect": "አርኪቴክት",
+ "association": "ማኅበር",
+ "company": "ኩባንያ",
+ "educational_institution": "የትምህርት ተቋም",
+ "employment_agency": "የስራ ቅጥር ኤጀንሲ",
+ "estate_agent": "የሪል እስቴት ወኪል",
+ "foundation": "ተቋም",
+ "government": "የመንግስት ድርጅት",
+ "insurance": "ኢንሹራንስ",
+ "it": "አይ.ቲ.",
+ "lawyer": "ጠበቃ",
+ "newspaper": "ጋዜጣ",
+ "ngo": "መንግስታዊ ያልሆነ ድርጅት",
+ "religion": "ሃይማኖት",
+ "research": "ምርምር ቢሮ",
+ "telecommunication": "ቴሌኮሙኒኬሽን",
+ "travel_agent": "የጉዞ ወኪል"
+ }
+ },
+ "phone": {
+ "label": "የህዝብ ስልክ"
+ },
+ "recycling_accepts": {
+ "options": {
+ "clothes": "ልብስ ቤት"
+ }
+ },
+ "toilets": {
+ "label": "መፀዳጃ ቤት"
}
},
"presets": {
"aeroway/aerodrome": {
"name": "አየር ማረፊያ"
},
+ "amenity/atm": {
+ "name": "ፈጣን የገንዘብ ማሽን"
+ },
"amenity/bank": {
"name": "ባንክ"
},
@@ -46,9 +118,6 @@
"amenity/clinic": {
"name": "ክሊኒክ"
},
- "amenity/college": {
- "name": "ኮሌጅ"
- },
"amenity/community_centre": {
"name": "የማህበረሰብ ማዕከል"
},
@@ -61,9 +130,6 @@
"amenity/doctors": {
"name": "ክሊኒክ"
},
- "amenity/driving_school": {
- "name": "የመኪና ትምህርት ቤት"
- },
"amenity/embassy": {
"name": "ኤምባሲ"
},
@@ -82,18 +148,12 @@
"amenity/ice_cream": {
"name": "አይስ ክሬም"
},
- "amenity/kindergarten": {
- "name": "ሕፃናት መዋያ"
- },
"amenity/library": {
"name": "ቤተ-መፃሕፍት"
},
"amenity/marketplace": {
"name": "የገበያ ቦታ"
},
- "amenity/music_school": {
- "name": "የሙዚቃ ትምህርት ቤት"
- },
"amenity/nightclub": {
"name": "የምሽት ክለብ"
},
@@ -118,9 +178,6 @@
"amenity/restaurant": {
"name": "ምግብ ቤት"
},
- "amenity/school": {
- "name": "ትምህርት ቤት"
- },
"amenity/studio": {
"name": "ስቱዲዮ"
},
@@ -133,12 +190,12 @@
"amenity/theatre": {
"name": "ቲያትር ቤት"
},
- "amenity/university": {
- "name": "ዩኒቨርሲቲ"
- },
"amenity/veterinary": {
"name": "የእንስሳት መድሃኒት ቤት"
},
+ "building": {
+ "name": "ህንፃ"
+ },
"building/apartments": {
"name": "የመኖሪያ ቤት"
},
@@ -160,6 +217,9 @@
"building/warehouse": {
"name": "የዕቃ ቤት"
},
+ "building_point": {
+ "name": "ህንፃ"
+ },
"highway/primary": {
"name": "ዋና መንገድ"
},
@@ -205,6 +265,9 @@
"office/company": {
"name": "ኩባንያ"
},
+ "office/diplomatic/embassy": {
+ "name": "ኤምባሲ"
+ },
"office/educational_institution": {
"name": "የትምህርት ተቋም"
},
@@ -256,6 +319,9 @@
"place/suburb": {
"name": "አካባቢ"
},
+ "public_transport/station_bus": {
+ "name": "አውቶቡስ መናኃሪያ"
+ },
"shop/beauty": {
"name": "ውበት / ስፓ"
},
@@ -319,6 +385,9 @@
"shop/supermarket": {
"name": "የገበያ ማዕከል"
},
+ "shop/travel_agency": {
+ "name": "የጉዞ ወኪል"
+ },
"shop/video": {
"name": "ቪዲዮ"
},
diff --git a/dist/translations/am.min.json b/dist/translations/am.min.json
index ccd81079..2cabda4c 100644
--- a/dist/translations/am.min.json
+++ b/dist/translations/am.min.json
@@ -1 +1 @@
-{"am":{"presets":{"fields":{"atm":{"label":"ፈጣን የገንዘብ ማሽን"},"building":{"label":"ህንፃ"},"clothes":{"label":"ልብስ ቤት"}},"presets":{"aeroway/aerodrome":{"name":"አየር ማረፊያ"},"amenity/bank":{"name":"ባንክ"},"amenity/bar":{"name":"ቡና ቤት"},"amenity/bicycle_repair_station":{"name":"ቢስክሌት ጠጋኝ"},"amenity/bureau_de_change":{"name":"የውጭ ምንዛሬ ቢሮ"},"amenity/bus_station":{"name":"አውቶቡስ መናኃሪያ"},"amenity/cafe":{"name":"ሻይ ቤት"},"amenity/car_rental":{"name":"የመኪና ማከራያ"},"amenity/car_sharing":{"name":"የመኪና ዕቃ መለዋወጫ መሸጫ"},"amenity/cinema":{"name":"ሲኒማ ቤት"},"amenity/clinic":{"name":"ክሊኒክ"},"amenity/college":{"name":"ኮሌጅ"},"amenity/community_centre":{"name":"የማህበረሰብ ማዕከል"},"amenity/courthouse":{"name":"ፍርድ ቤት"},"amenity/dentist":{"name":"የጥርስ ሃኪም"},"amenity/doctors":{"name":"ክሊኒክ"},"amenity/driving_school":{"name":"የመኪና ትምህርት ቤት"},"amenity/embassy":{"name":"ኤምባሲ"},"amenity/fast_food":{"name":"ፈጣን ምግብ"},"amenity/fire_station":{"name":"እሳትና ድንገተኛ አደጋዎች መከላከያ"},"amenity/grave_yard":{"name":"የቀብር ቦታ"},"amenity/hospital":{"name":"ሆስፒታል"},"amenity/ice_cream":{"name":"አይስ ክሬም"},"amenity/kindergarten":{"name":"ሕፃናት መዋያ"},"amenity/library":{"name":"ቤተ-መፃሕፍት"},"amenity/marketplace":{"name":"የገበያ ቦታ"},"amenity/music_school":{"name":"የሙዚቃ ትምህርት ቤት"},"amenity/nightclub":{"name":"የምሽት ክለብ"},"amenity/pharmacy":{"name":"መድሃኒት ቤት"},"amenity/place_of_worship":{"name":"የእምነት ቦታ"},"amenity/police":{"name":"ፖሊስ ጣቢያ"},"amenity/post_office":{"name":"ፖስታ ቤት"},"amenity/prison":{"name":"እስር ቤት"},"amenity/pub":{"name":"ፐብ"},"amenity/restaurant":{"name":"ምግብ ቤት"},"amenity/school":{"name":"ትምህርት ቤት"},"amenity/studio":{"name":"ስቱዲዮ"},"amenity/taxi":{"name":"ታክሲ"},"amenity/telephone":{"name":"የህዝብ ስልክ"},"amenity/theatre":{"name":"ቲያትር ቤት"},"amenity/university":{"name":"ዩኒቨርሲቲ"},"amenity/veterinary":{"name":"የእንስሳት መድሃኒት ቤት"},"building/apartments":{"name":"የመኖሪያ ቤት"},"building/commercial":{"name":"የንግድ ህንፃ"},"building/house":{"name":"የመኖሪያ ቤት"},"building/industrial":{"name":"የኢንዱስትሪ ቢሮ"},"building/public":{"name":"የህዝብ ህንፃ"},"building/retail":{"name":"የችርቻሮ ህንፃ"},"building/warehouse":{"name":"የዕቃ ቤት"},"highway/primary":{"name":"ዋና መንገድ"},"highway/residential":{"name":"የመኖሪያ አካባቢ መንገድ"},"highway/secondary":{"name":"ሁለተኛ መንገድ"},"highway/tertiary":{"name":"ተለዋጭ መንገድ"},"landuse/industrial":{"name":"ኢንዱስትሪ"},"leisure/garden":{"name":"መናፈሻ"},"leisure/golf_course":{"name":"የጎልፍ መጫወቻ"},"leisure/pitch/tennis":{"name":"ቴኒስ"},"leisure/stadium":{"name":"ስታዲዩም"},"office/accountant":{"name":"ሒሳብ ሠራተኛ"},"office/administrative":{"name":"አስተዳደር ቢሮ"},"office/advertising_agency":{"name":"የማስታወቂያ ድርጅት"},"office/architect":{"name":"አርኪቴክት"},"office/association":{"name":"ማኅበር"},"office/company":{"name":"ኩባንያ"},"office/educational_institution":{"name":"የትምህርት ተቋም"},"office/employment_agency":{"name":"የስራ ቅጥር ኤጀንሲ"},"office/estate_agent":{"name":"የሪል እስቴት ወኪል"},"office/foundation":{"name":"ተቋም"},"office/government":{"name":"የመንግስት ድርጅት"},"office/insurance":{"name":"ኢንሹራንስ"},"office/it":{"name":"አይ.ቲ."},"office/lawyer":{"name":"ጠበቃ"},"office/newspaper":{"name":"ጋዜጣ"},"office/ngo":{"name":"መንግስታዊ ያልሆነ ድርጅት"},"office/religion":{"name":"ሃይማኖት"},"office/research":{"name":"ምርምር ቢሮ"},"office/telecommunication":{"name":"ቴሌኮሙኒኬሽን"},"office/travel_agent":{"name":"የጉዞ ወኪል"},"place/city":{"name":"ከተማ"},"place/hamlet":{"name":"ከተማ"},"place/suburb":{"name":"አካባቢ"},"shop/beauty":{"name":"ውበት / ስፓ"},"shop/beverages":{"name":"የለስላሳ መጠጦች ማከፋፈያ"},"shop/butcher":{"name":"ሥጋ ቤት"},"shop/car":{"name":"መኪና መሸጫ"},"shop/computer":{"name":"ኮምፒውተር"},"shop/department_store":{"name":"የተደራጀ ግዙፍ ማከፋፈያ"},"shop/electrical":{"name":"የኤሌትሪክ ዕቃዎች መሸጫ"},"shop/electronics":{"name":"ኤሌክትሮኒክስ መሸጫ ሱቅ"},"shop/florist":{"name":"የአበባ መሸጫ"},"shop/fuel":{"name":"ነዳጅ ማደያ"},"shop/furniture":{"name":"የቤትና የቢሮ ዕቃዎች መሸጫ"},"shop/greengrocer":{"name":"አትክልት መሸጫ ሱቆች"},"shop/hairdresser":{"name":"ፀጉር ቤት"},"shop/hardware":{"name":"ሲኒማ ቤት"},"shop/kiosk":{"name":"አነስተኛ ሱቅ"},"shop/laundry":{"name":"የልብስ ንጽህና መስጫ"},"shop/massage":{"name":"ማሳጅ ቤት"},"shop/optician":{"name":"መነፅር ቤት"},"shop/shoes":{"name":"ጫማ ቤት"},"shop/stationery":{"name":"የጽሕፈት መሳሪያ መሸጫ"},"shop/supermarket":{"name":"የገበያ ማዕከል"},"shop/video":{"name":"ቪዲዮ"},"tourism/guest_house":{"name":"እንግዳ ማረፊያ"},"tourism/hostel":{"name":"ሆስቴል"},"tourism/hotel":{"name":"ሆቴል"},"tourism/motel":{"name":"ሞቴል"},"tourism/museum":{"name":"ሙዚየም"},"tourism/zoo":{"name":"የእንስሳት ግቢ"}}}}}
\ No newline at end of file
+{"am":{"presets":{"fields":{"address":{"placeholders":{"city":"ከተማ","hamlet":"ከተማ"}},"atm":{"label":"ፈጣን የገንዘብ ማሽን"},"bar":{"label":"ቡና ቤት"},"building":{"label":"ህንፃ","options":{"apartments":"የመኖሪያ ቤት","commercial":"የንግድ ህንፃ","house":"የመኖሪያ ቤት","industrial":"የኢንዱስትሪ ቢሮ","public":"የህዝብ ህንፃ","retail":"የችርቻሮ ህንፃ","warehouse":"የዕቃ ቤት"}},"clothes":{"label":"ልብስ ቤት"},"diplomatic":{"options":{"embassy":"ኤምባሲ"}},"embassy":{"options":{"yes":"ኤምባሲ"}},"healthcare":{"options":{"clinic":"ክሊኒክ","dentist":"የጥርስ ሃኪም","doctor":"ክሊኒክ"}},"office":{"options":{"accountant":"ሒሳብ ሠራተኛ","advertising_agency":"የማስታወቂያ ድርጅት","architect":"አርኪቴክት","association":"ማኅበር","company":"ኩባንያ","educational_institution":"የትምህርት ተቋም","employment_agency":"የስራ ቅጥር ኤጀንሲ","estate_agent":"የሪል እስቴት ወኪል","foundation":"ተቋም","government":"የመንግስት ድርጅት","insurance":"ኢንሹራንስ","it":"አይ.ቲ.","lawyer":"ጠበቃ","newspaper":"ጋዜጣ","ngo":"መንግስታዊ ያልሆነ ድርጅት","religion":"ሃይማኖት","research":"ምርምር ቢሮ","telecommunication":"ቴሌኮሙኒኬሽን","travel_agent":"የጉዞ ወኪል"}},"phone":{"label":"የህዝብ ስልክ"},"recycling_accepts":{"options":{"clothes":"ልብስ ቤት"}},"toilets":{"label":"መፀዳጃ ቤት"}},"presets":{"aeroway/aerodrome":{"name":"አየር ማረፊያ"},"amenity/atm":{"name":"ፈጣን የገንዘብ ማሽን"},"amenity/bank":{"name":"ባንክ"},"amenity/bar":{"name":"ቡና ቤት"},"amenity/bicycle_repair_station":{"name":"ቢስክሌት ጠጋኝ"},"amenity/bureau_de_change":{"name":"የውጭ ምንዛሬ ቢሮ"},"amenity/bus_station":{"name":"አውቶቡስ መናኃሪያ"},"amenity/cafe":{"name":"ሻይ ቤት"},"amenity/car_rental":{"name":"የመኪና ማከራያ"},"amenity/car_sharing":{"name":"የመኪና ዕቃ መለዋወጫ መሸጫ"},"amenity/cinema":{"name":"ሲኒማ ቤት"},"amenity/clinic":{"name":"ክሊኒክ"},"amenity/community_centre":{"name":"የማህበረሰብ ማዕከል"},"amenity/courthouse":{"name":"ፍርድ ቤት"},"amenity/dentist":{"name":"የጥርስ ሃኪም"},"amenity/doctors":{"name":"ክሊኒክ"},"amenity/embassy":{"name":"ኤምባሲ"},"amenity/fast_food":{"name":"ፈጣን ምግብ"},"amenity/fire_station":{"name":"እሳትና ድንገተኛ አደጋዎች መከላከያ"},"amenity/grave_yard":{"name":"የቀብር ቦታ"},"amenity/hospital":{"name":"ሆስፒታል"},"amenity/ice_cream":{"name":"አይስ ክሬም"},"amenity/library":{"name":"ቤተ-መፃሕፍት"},"amenity/marketplace":{"name":"የገበያ ቦታ"},"amenity/nightclub":{"name":"የምሽት ክለብ"},"amenity/pharmacy":{"name":"መድሃኒት ቤት"},"amenity/place_of_worship":{"name":"የእምነት ቦታ"},"amenity/police":{"name":"ፖሊስ ጣቢያ"},"amenity/post_office":{"name":"ፖስታ ቤት"},"amenity/prison":{"name":"እስር ቤት"},"amenity/pub":{"name":"ፐብ"},"amenity/restaurant":{"name":"ምግብ ቤት"},"amenity/studio":{"name":"ስቱዲዮ"},"amenity/taxi":{"name":"ታክሲ"},"amenity/telephone":{"name":"የህዝብ ስልክ"},"amenity/theatre":{"name":"ቲያትር ቤት"},"amenity/veterinary":{"name":"የእንስሳት መድሃኒት ቤት"},"building":{"name":"ህንፃ"},"building/apartments":{"name":"የመኖሪያ ቤት"},"building/commercial":{"name":"የንግድ ህንፃ"},"building/house":{"name":"የመኖሪያ ቤት"},"building/industrial":{"name":"የኢንዱስትሪ ቢሮ"},"building/public":{"name":"የህዝብ ህንፃ"},"building/retail":{"name":"የችርቻሮ ህንፃ"},"building/warehouse":{"name":"የዕቃ ቤት"},"building_point":{"name":"ህንፃ"},"highway/primary":{"name":"ዋና መንገድ"},"highway/residential":{"name":"የመኖሪያ አካባቢ መንገድ"},"highway/secondary":{"name":"ሁለተኛ መንገድ"},"highway/tertiary":{"name":"ተለዋጭ መንገድ"},"landuse/industrial":{"name":"ኢንዱስትሪ"},"leisure/garden":{"name":"መናፈሻ"},"leisure/golf_course":{"name":"የጎልፍ መጫወቻ"},"leisure/pitch/tennis":{"name":"ቴኒስ"},"leisure/stadium":{"name":"ስታዲዩም"},"office/accountant":{"name":"ሒሳብ ሠራተኛ"},"office/administrative":{"name":"አስተዳደር ቢሮ"},"office/advertising_agency":{"name":"የማስታወቂያ ድርጅት"},"office/architect":{"name":"አርኪቴክት"},"office/association":{"name":"ማኅበር"},"office/company":{"name":"ኩባንያ"},"office/diplomatic/embassy":{"name":"ኤምባሲ"},"office/educational_institution":{"name":"የትምህርት ተቋም"},"office/employment_agency":{"name":"የስራ ቅጥር ኤጀንሲ"},"office/estate_agent":{"name":"የሪል እስቴት ወኪል"},"office/foundation":{"name":"ተቋም"},"office/government":{"name":"የመንግስት ድርጅት"},"office/insurance":{"name":"ኢንሹራንስ"},"office/it":{"name":"አይ.ቲ."},"office/lawyer":{"name":"ጠበቃ"},"office/newspaper":{"name":"ጋዜጣ"},"office/ngo":{"name":"መንግስታዊ ያልሆነ ድርጅት"},"office/religion":{"name":"ሃይማኖት"},"office/research":{"name":"ምርምር ቢሮ"},"office/telecommunication":{"name":"ቴሌኮሙኒኬሽን"},"office/travel_agent":{"name":"የጉዞ ወኪል"},"place/city":{"name":"ከተማ"},"place/hamlet":{"name":"ከተማ"},"place/suburb":{"name":"አካባቢ"},"public_transport/station_bus":{"name":"አውቶቡስ መናኃሪያ"},"shop/beauty":{"name":"ውበት / ስፓ"},"shop/beverages":{"name":"የለስላሳ መጠጦች ማከፋፈያ"},"shop/butcher":{"name":"ሥጋ ቤት"},"shop/car":{"name":"መኪና መሸጫ"},"shop/computer":{"name":"ኮምፒውተር"},"shop/department_store":{"name":"የተደራጀ ግዙፍ ማከፋፈያ"},"shop/electrical":{"name":"የኤሌትሪክ ዕቃዎች መሸጫ"},"shop/electronics":{"name":"ኤሌክትሮኒክስ መሸጫ ሱቅ"},"shop/florist":{"name":"የአበባ መሸጫ"},"shop/fuel":{"name":"ነዳጅ ማደያ"},"shop/furniture":{"name":"የቤትና የቢሮ ዕቃዎች መሸጫ"},"shop/greengrocer":{"name":"አትክልት መሸጫ ሱቆች"},"shop/hairdresser":{"name":"ፀጉር ቤት"},"shop/hardware":{"name":"ሲኒማ ቤት"},"shop/kiosk":{"name":"አነስተኛ ሱቅ"},"shop/laundry":{"name":"የልብስ ንጽህና መስጫ"},"shop/massage":{"name":"ማሳጅ ቤት"},"shop/optician":{"name":"መነፅር ቤት"},"shop/shoes":{"name":"ጫማ ቤት"},"shop/stationery":{"name":"የጽሕፈት መሳሪያ መሸጫ"},"shop/supermarket":{"name":"የገበያ ማዕከል"},"shop/travel_agency":{"name":"የጉዞ ወኪል"},"shop/video":{"name":"ቪዲዮ"},"tourism/guest_house":{"name":"እንግዳ ማረፊያ"},"tourism/hostel":{"name":"ሆስቴል"},"tourism/hotel":{"name":"ሆቴል"},"tourism/motel":{"name":"ሞቴል"},"tourism/museum":{"name":"ሙዚየም"},"tourism/zoo":{"name":"የእንስሳት ግቢ"}}}}}
\ No newline at end of file
diff --git a/dist/translations/ar-AA.json b/dist/translations/ar-AA.json
index d1d07424..1cc46f08 100644
--- a/dist/translations/ar-AA.json
+++ b/dist/translations/ar-AA.json
@@ -1,3 +1,9606 @@
{
- "ar-AA": {}
+ "ar-AA": {
+ "presets": {
+ "categories": {
+ "category-barrier": {
+ "name": "عناصر الحواجز"
+ },
+ "category-building": {
+ "name": "عناصر المباني"
+ },
+ "category-golf": {
+ "name": "عناصر الجولف"
+ },
+ "category-landuse": {
+ "name": "عناصر الأراضي"
+ },
+ "category-natural": {
+ "name": "عناصر طبيعية"
+ },
+ "category-path": {
+ "name": "مسارات"
+ },
+ "category-playground": {
+ "name": "أجهزة وتركيبات الملعب"
+ },
+ "category-rail": {
+ "name": "سكك حديدية"
+ },
+ "category-restriction": {
+ "name": "عناصر للقيود والمحددات"
+ },
+ "category-road_major": {
+ "name": "طرق رئيسية"
+ },
+ "category-road_minor": {
+ "name": "طرق فرعية"
+ },
+ "category-road_service": {
+ "name": "طرق الخدمة (المؤدية لخدمات)"
+ },
+ "category-route": {
+ "name": "عناصر المسارات"
+ },
+ "category-utility": {
+ "name": "عناصر الخدمات"
+ },
+ "category-water": {
+ "name": "مسطحات مائية"
+ },
+ "category-waterway": {
+ "name": "مجاري مائية"
+ }
+ },
+ "fields": {
+ "access": {
+ "label": "الوصول المسموح به",
+ "options": {
+ "customers": {
+ "description": "مخصص فقط للعملاء المتوجهين إلى المكان",
+ "title": "للعملاء - الزبائن"
+ },
+ "designated": {
+ "description": "يسمح بالوصول حسب الارشادات او القوانين المحلية",
+ "title": "مخصص/محدد"
+ },
+ "destination": {
+ "description": "يسمح بالوصول إلى الوجهة المقصودة والمحددة في المكان دون سائر المكان",
+ "title": "الوجهة"
+ },
+ "dismount": {
+ "description": "يسمح بالوصول ولكن يجب على السائق الترجل",
+ "title": "مترجل"
+ },
+ "no": {
+ "description": "الوصول غير مسموح لعامة الناس",
+ "title": "محظور"
+ },
+ "permissive": {
+ "description": "الوصول مسموح إلى أن يحين الوقت الذي يلغي فيه المالك الإذن بذلك",
+ "title": "مسموح من المالك"
+ },
+ "permit": {
+ "description": "لا يسمح بالوصول إلا برخصة أو تصريح ساري المفعول",
+ "title": "تصريح"
+ },
+ "private": {
+ "description": "لا يسمح بالوصول إلا بإذن من المالك على أساس فردي",
+ "title": "خاص"
+ },
+ "unknown": {
+ "description": "صلاحية السماح بالوصول غير معروفة أو غير واضحة",
+ "title": "غير معروفة"
+ },
+ "yes": {
+ "description": "الوصول مسموح طبقا للقانون ; حق المرور",
+ "title": "مسموح"
+ }
+ },
+ "placeholder": "غير محدد",
+ "terms": "الوصول المسموح به,السماح بالدخول,يسمح بالدخول",
+ "types": {
+ "access": "الكل",
+ "bicycle": "دراجات هوائية",
+ "foot": "بالقدم",
+ "horse": "أحصنة",
+ "motor_vehicle": "سيارات"
+ }
+ },
+ "access_aisle": {
+ "label": "النوع"
+ },
+ "access_simple": {
+ "label": "الوصول المسموح به",
+ "options": {
+ "customers": "للعملاء/الزبائن فقط",
+ "no": "لا شيء",
+ "permissive": "مسموح من المالك",
+ "permit": "بتصريح فقط",
+ "private": "خاص",
+ "unknown": "غير معروفة",
+ "yes": "عام"
+ },
+ "terms": "الوصول المسموح به,السماح بالدخول,يسمح بالدخول"
+ },
+ "activity": {
+ "label": "نشاط",
+ "options": {
+ "bicycle": "ركوب الدراجات",
+ "hiking": "المشي الخلوي (هايكنج)",
+ "horse": "ركوب الخيل",
+ "mtb": "ركوب الدراجات في الجبل",
+ "ski": "التزحلق"
+ }
+ },
+ "addr/interpolation": {
+ "label": "النوع",
+ "options": {
+ "all": "الكل",
+ "alphabetic": "أبجدي",
+ "even": "زوجي",
+ "odd": "فردي"
+ }
+ },
+ "address": {
+ "label": "العنوان",
+ "placeholders": {
+ "block_number": "رقم المربع/البلوك",
+ "block_number!jp": "رقم المربع/البلوك",
+ "city": "المدينة",
+ "city!cn": "المدينة/المحافظة/الأمة أو التحالف",
+ "city!jp": "مدينةكبيرة/مدينة/قرية/جناح طوكيو الخاص",
+ "city!vn": "مدينة /بلدة",
+ "conscriptionnumber": "123",
+ "country": "الدولة",
+ "county": "المقاطعة/الإقليم/المركز",
+ "county!jp": "المحافظة/المديرية",
+ "district": "المحافظة/المديرية",
+ "district!cn": "مديرية/مقاطعة/شعار",
+ "district!vn": "الدائرة/المدينة/المديرية أو المركز",
+ "floor": "الطابق/الدور",
+ "hamlet": "قرية صغيرة / هجرة",
+ "housename": "اسم المنزل",
+ "housenumber": "123",
+ "housenumber!jp": "رقم المبنى/ رقم القطعة",
+ "neighbourhood": "حي",
+ "place": "مكان / موضع",
+ "postcode": "الرمز البريدي",
+ "province": "المحافظة",
+ "province!cn": "المحافظة/البلدية/AR/SAR",
+ "province!jp": "العمالة (تقسيم إداري)",
+ "quarter": "ربع (مجموع مربعات سكنية)",
+ "state": "الحالة",
+ "street": "شارع",
+ "subdistrict": "مديرية فرعية",
+ "subdistrict!vn": "جناح/جمعية/بلدة صغيرة",
+ "suburb": "ضاحية",
+ "town": "مدينة",
+ "unit": "وحدة"
+ },
+ "terms": "العنوان,عنوان"
+ },
+ "admin_level": {
+ "label": "المستوى الإداري"
+ },
+ "advertising": {
+ "label": "النوع"
+ },
+ "aerialway": {
+ "label": "النوع"
+ },
+ "aerialway/access": {
+ "label": "الوصول",
+ "options": {
+ "both": "كليهما",
+ "entry": "مدخل",
+ "exit": "مخرج"
+ }
+ },
+ "aerialway/bubble": {
+ "label": "فقاعة"
+ },
+ "aerialway/capacity": {
+ "label": "السعة (لكل ساعة)",
+ "placeholder": "500، 2500، 5000..."
+ },
+ "aerialway/duration": {
+ "label": "المدة (بالدقائق)",
+ "placeholder": "1 ، 2 ، 3 ..."
+ },
+ "aerialway/heating": {
+ "label": "مسخن"
+ },
+ "aerialway/occupancy": {
+ "label": "عدد المقاعد",
+ "placeholder": "...8 ,4 ,2"
+ },
+ "aerialway/summer/access": {
+ "label": "السماح بالوصول (في الصيف)",
+ "options": {
+ "both": "كليهما",
+ "entry": "مدخل",
+ "exit": "مخرج"
+ }
+ },
+ "aeroway": {
+ "label": "النوع"
+ },
+ "agrarian": {
+ "label": "المنتجات"
+ },
+ "air_conditioning": {
+ "label": "تكييف هواء",
+ "terms": "تكييف الهواء,التكييف,التبريد"
+ },
+ "aircraft/type": {
+ "label": "النوع",
+ "options": {
+ "helicopter": "هليكوبتر",
+ "military": "عسكري"
+ }
+ },
+ "alt_name": {
+ "label": "الاسم البديل"
+ },
+ "amenity": {
+ "label": "النوع"
+ },
+ "animal_boarding": {
+ "label": "للحيوانات"
+ },
+ "animal_breeding": {
+ "label": "للحيوانات"
+ },
+ "animal_shelter": {
+ "label": "للحيوانات"
+ },
+ "archaeological_site": {
+ "label": "النوع",
+ "options": {
+ "baths": "حمامات",
+ "city": "مدينة تاريخية",
+ "enclosure": "سياج",
+ "fortification": "جدران دفاعية للتحصين",
+ "hut_circle": " دائرة الأكواخ",
+ "megalith": "ميغاليث/جندل/مغليطيا (آثار صخرية)",
+ "necropolis": "مقبرة كبيرة قديمة",
+ "petroglyph": "نحت صخري",
+ "roman_circus": "سيرك روماني",
+ "roman_villa": "فيلا رومانية",
+ "settlement": "مستوطنة تاريخية",
+ "tumulus": "جثوة"
+ }
+ },
+ "architect": {
+ "label": "مهندس معماري",
+ "terms": "مهندس معماري,مصمم"
+ },
+ "area/highway": {
+ "label": "النوع"
+ },
+ "armrest": {
+ "label": " مساند الأذرع",
+ "options": {
+ "no": "بدون مساند للذراعين",
+ "undefined": "غير معروفة",
+ "yes": "مسند ذراع واحد أو أكثر"
+ }
+ },
+ "artist": {
+ "label": "فنان/رسام"
+ },
+ "artwork_type": {
+ "label": "النوع",
+ "options": {
+ "bust": "صدر",
+ "graffiti": "جدارية",
+ "installation": "Art Installation",
+ "mosaic": "فسيفساء",
+ "mural": "جدار",
+ "painting": "لوحة",
+ "relief": "نقش بارز، عمل نحت بارز",
+ "sculpture": "منحوتة",
+ "statue": "تمثال",
+ "stone": "حجر معالج فنياً، حجر مزخرف",
+ "tilework": "أعمال البلاط، تزيين بالبلاط"
+ }
+ },
+ "ascent": {
+ "label": "إجمالي الصعود",
+ "terms": "إجمالي الصعود"
+ },
+ "athletics_pitch": {
+ "label": "حدث",
+ "options": {
+ "discus_throw": "نقاش",
+ "hammer_throw": "رمي المطرقة",
+ "high_jump": "الوثب العالي",
+ "javelin_throw": " رمي الرمح",
+ "long_jump": "الوثب الطويل",
+ "pole_vault": "القفز بالزانة",
+ "shot_put": "دفع الجلة",
+ "triple_jump": "الوثب الثلاثي"
+ }
+ },
+ "athletics_track": {
+ "label": "حدث",
+ "options": {
+ "javelin_throw": " رمي الرمح",
+ "long_jump": "الوثب الطويل",
+ "pole_vault": "القفز بالزانة",
+ "running": "جري",
+ "sprint": "العدو السريع",
+ "steeplechase": "سباق الموانع",
+ "triple_jump": "الوثب الثلاثي"
+ }
+ },
+ "atm": {
+ "label": "ماكينة صرافة آلية"
+ },
+ "attraction": {
+ "label": "النوع",
+ "options": {
+ "alpine_coaster": "مزلقة جبلية",
+ "amusement_ride": "Amusement Ride",
+ "animal": "حظيرة حيوانات",
+ "big_wheel": "عجلة فيريس",
+ "bumper_car": "Bumper Cars",
+ "bungee_jumping": "Bungee Jumping",
+ "carousel": "دوامة خيل",
+ "dark_ride": "Dark Ride",
+ "drop_tower": "Drop Tower Ride",
+ "kiddie_ride": "Kiddie Ride",
+ "log_flume": "Log Flume",
+ "maze": "متاهة",
+ "pirate_ship": "Pirate Ship Ride",
+ "river_rafting": "River Rapids Ride",
+ "roller_coaster": "السفينة الدوارة",
+ "summer_toboggan": "Summer Toboggan",
+ "swing_carousel": "Swing Carousel",
+ "train": "Tourist Train",
+ "water_slide": "التزلق على الماء"
+ }
+ },
+ "automated": {
+ "label": "آلية"
+ },
+ "baby_feeding": {
+ "label": "منطقة رضاعة الأطفال",
+ "options": {
+ "no": "لا شيء",
+ "room": "غرفة مخصصة",
+ "yes": "مساحة محددة"
+ },
+ "terms": "منطقة رضاعة الأطفال,منطقة تغيير حفائظ الأطفال,منطقة تلبيس الأطفال,منطقة ترضيع الأطفال"
+ },
+ "baby_seat": {
+ "label": "مقعد طفل"
+ },
+ "backcountry": {
+ "label": "غير معتنى به",
+ "terms": "منطقة تخييم بدون مرافق,مخيمات,تخييم"
+ },
+ "backrest": {
+ "label": "كرسي بمسند للظهر"
+ },
+ "bar": {
+ "label": "حانة"
+ },
+ "barrier": {
+ "label": "النوع",
+ "options": {
+ "block": " كتلة كبيرة",
+ "bollard": "عمود حاجز",
+ "cattle_grid": "شبكة أرضية حاجزة للماشية",
+ "chain": "سلسلة",
+ "city_wall": "جدار المدينة",
+ "cycle_barrier": "حاجز دراجات هوائية",
+ "ditch": "مصرف خندقي",
+ "entrance": "مدخل",
+ "fence": "سياج",
+ "gate": "بوابة",
+ "guard_rail": "حاجز حديدي للحماية من الاصطدام",
+ "hedge": "حاجز نباتي",
+ "height_restrictor": "حاجز لتقييد الارتفاع",
+ "jersey_barrier": "حاجز خرساني - نيوجيرسي",
+ "kerb": "منحدر الرصيف المؤدي للشارع",
+ "kissing_gate": "بوابة لا تسمح بعبور الماشية",
+ "lift_gate": "بوابة حاجز",
+ "retaining_wall": "جدار تثبيت للتربة",
+ "stile": "درج يسمح للبشر بالمرور فوق السياج",
+ "swing_gate": "بوابة عامودية جانبية",
+ "toll_booth": "كشك تحصيل رسوم",
+ "turnstile": "بوابة دوارة لعبور شخص واحد",
+ "wall": "جدار"
+ }
+ },
+ "barrier_planter": {
+ "label": "حاجز",
+ "options": {
+ "planter": "نعم",
+ "undefined": "لا"
+ }
+ },
+ "basin": {
+ "label": "النوع",
+ "options": {
+ "detention": "احتجاز",
+ "evaporation": "تبخر",
+ "infiltration": "تسلل",
+ "retention": "حوض احتجاز مياه الأمطار الصناعي "
+ }
+ },
+ "bath/open_air": {
+ "label": "في الهواء الطلق/خارج البناء"
+ },
+ "bath/type": {
+ "label": "مخصوص",
+ "options": {
+ "hammam": "حمام",
+ "hot_spring": "العين الحمئة / الينبوع الساخن",
+ "lake": "بحيرة",
+ "onsen": "ينابيع ساخنة (يابانية)",
+ "thermal": "حمام حراري"
+ }
+ },
+ "beauty": {
+ "label": "خدمات",
+ "options": {
+ "cosmetics": "مستحضرات التجميل",
+ "hair_removal": "مزيل شعر",
+ "nails": "مانيكير/باديكير",
+ "skin_care": "العناية بالجلد",
+ "spa": "منتجع اليوم",
+ "tanning": "تسمير",
+ "waxing": "إزالة الشعر بالشمع"
+ }
+ },
+ "bench": {
+ "label": "مقعد",
+ "terms": "مقعد,مقعد طويل"
+ },
+ "bicycle_parking": {
+ "label": "النوع",
+ "options": {
+ "building": "في مبنى",
+ "handlebar_holder": "حامل المقود",
+ "lockers": "خزائن فردية",
+ "shed": "سقيفة مغلقة",
+ "stands": "حامل (يدعم إطار الدراجة)",
+ "wall_loops": "مقود العجلات (يدعم العجلة فقط)"
+ }
+ },
+ "bicycle_road": {
+ "label": "شارع الدراجات",
+ "options": {
+ "undefined": "لا",
+ "yes": "نعم"
+ }
+ },
+ "bike_ride": {
+ "label": "اصطفاف وركوب",
+ "terms": "اصطفاف وركوب,ركن الدراجة والركوب"
+ },
+ "bin": {
+ "label": "سلة النفايات",
+ "terms": "سلة المهملات,سلة القمامة,قمامة,مهملات,زبالة"
+ },
+ "blind": {
+ "label": "وصول/دخول المكفوفين",
+ "options": {
+ "limited": "محدودة",
+ "no": "لا",
+ "yes": "نعم"
+ },
+ "terms": "وصول المكفوفين,وصول العميان,دخول المكفوفين,دخول العميان"
+ },
+ "blood_components": {
+ "label": "مكونات الدم",
+ "options": {
+ "plasma": "بلازما",
+ "platelets": "صفائح دموية",
+ "stemcells": "عينات خلايا جذعية",
+ "whole": "كل الدم"
+ }
+ },
+ "board_type": {
+ "label": "النوع",
+ "options": {
+ "art": "فن",
+ "astronomy": "علم الفلك",
+ "geology": "جيولوجيا",
+ "history": "تاريخ",
+ "nature": "الطبيعة",
+ "notice": "لوحة الإعلانات والملصقات",
+ "plants": "النباتات",
+ "welcome_sign": "لافتة ترحيب",
+ "wildlife": "حيوانات برية"
+ }
+ },
+ "bollard": {
+ "label": "النوع",
+ "options": {
+ "fixed": "حاجز ثابت",
+ "flexible": "حاجز مرن",
+ "foldable": "حاجز قابل للطي",
+ "removable": "حاجز قابل للإزالة",
+ "rising": "حاجز قابل للارتفاع"
+ }
+ },
+ "booth": {
+ "label": "كشك/دكان",
+ "terms": "كشك,سقيفة,حجرة صغيرة"
+ },
+ "bottle": {
+ "label": "تعبئة القوارير"
+ },
+ "boules": {
+ "label": "النوع"
+ },
+ "boundary": {
+ "label": "النوع"
+ },
+ "branch_brand": {
+ "label": "اسم الفرع",
+ "terms": "الفرع,الاسم الفرعي"
+ },
+ "brand": {
+ "label": "العلامة التجارية",
+ "terms": "العلامة التجارية,الماركة,البراند"
+ },
+ "bridge": {
+ "label": "النوع",
+ "placeholder": "الافتراضي"
+ },
+ "bridge/support": {
+ "label": "النوع"
+ },
+ "bridge_combo": {
+ "label": "النوع",
+ "options": {
+ "aqueduct": "قناة مياه على جسر",
+ "boardwalk": "ممر خشبي",
+ "movable": "جسر متحرك"
+ }
+ },
+ "building": {
+ "label": "مبنى",
+ "options": {
+ "allotment_house": " الحدائق/المزارع المحصصة",
+ "apartments": "مبنى شقق سكنية",
+ "barn": "حظيرة",
+ "boathouse": "مبنى تخزين القوارب",
+ "bungalow": "منزل بطابق واحد",
+ "bunker": "ملجأ محصّن",
+ "cabin": "كوخ",
+ "carport": "مرآب/مظلة سيارات",
+ "cathedral": "مبنى كاتدرائية",
+ "chapel": "معبد نصراني",
+ "church": "مبنى كنيسة",
+ "civic": "مبنى مرافق مدنية",
+ "college": "مبنى كلية",
+ "commercial": "مبني تجاري",
+ "construction": "مبنى تحت الإنشاء",
+ "cowshed": "سقيفة/مظلة أبقار",
+ "detached": "منزل منفصل",
+ "dormitory": "سكن جامعي",
+ "farm": "بيت ريفي",
+ "farm_auxiliary": "مبنى مزرعة",
+ "garage": "مرآب/جراج",
+ "garages": "جراجات",
+ "ger": "منزل اليورت",
+ "grandstand": "مُدَرج",
+ "greenhouse": "محمية زراعية",
+ "hangar": "حظيرة طائرات",
+ "hospital": "مبنى مستشفى",
+ "hotel": "مبنى فندق",
+ "house": "منزل",
+ "houseboat": "بيت عائم",
+ "hut": "كوخ بدائي/عشة",
+ "industrial": "مبنى صناعي",
+ "kindergarten": "مبنى حضانة / روض",
+ "manufacture": "مبنى إنتاج صناعي",
+ "mosque": "مبنى مسجد",
+ "office": "مبنى مكاتب إدارية",
+ "outbuilding": "ملحق",
+ "pavilion": "مبنى مرافق رياضية",
+ "public": "مبنى عام",
+ "residential": "مبنى سكني",
+ "retail": "مبنى بيع بالتجزئة",
+ "riding_hall": "حلبة ركوب الخيل",
+ "roof": "سقف/سطح",
+ "ruins": "مبنى أثري/مهجور/متهدم",
+ "school": "مبنى مدرسة",
+ "semidetached_house": "مبنى شبه منفصل",
+ "service": "مبنى خدمات (محولات، آلات،مضخات..الخ)",
+ "shed": "سقيفة(مستودع/ورشة عمل صغيرة)",
+ "stable": "إسطبل",
+ "stadium": "مبنى الملعب",
+ "sty": "Pigsty",
+ "synagogue": "Synagogue Building",
+ "temple": "مبنى المعبد",
+ "terrace": "صف منازل متلاصقه",
+ "train_station": "مبنى محطة القطار",
+ "transportation": "مبنى للنقل العام",
+ "university": "مبنى جامعي",
+ "warehouse": "مستودع"
+ },
+ "terms": "المبنى,البناية,العمارة"
+ },
+ "building/flats": {
+ "label": "الوحدات",
+ "placeholder": "2, 4, 6, 8..."
+ },
+ "building/levels": {
+ "label": "المسويات",
+ "placeholder": "2, 4, 6...",
+ "terms": "المستويات,الطوابق,الأدوار"
+ },
+ "building/levels/underground": {
+ "label": "مستويات تحت الأرض",
+ "placeholder": "2, 4, 6...",
+ "terms": "مستويات تحت الأرض,تحت سطح الأرض,جوف الأرض,مدفون"
+ },
+ "building/material": {
+ "label": "مادة البناء",
+ "terms": "المادة,المواد"
+ },
+ "building/part": {
+ "label": "جزء من مبنى"
+ },
+ "building/prefabricated": {
+ "label": "مسبقة الصنع",
+ "terms": "مصنوعة من قبل"
+ },
+ "bunker_type": {
+ "label": "النوع"
+ },
+ "button_operated": {
+ "label": "زر الاتصال"
+ },
+ "cables": {
+ "label": "الكابلات",
+ "placeholder": "1 ، 2 ، 3 ..."
+ },
+ "cai_scale-IT": {
+ "label": "صعوبة مسار المشي لمسافات طويلة (نادي جبال الألب الإيطالي)",
+ "options": {
+ "E": "E: لممارسي رياضة المشي لمسافات طويلة",
+ "EAI": "EAI: المشي لمسافات طويلة في ظروف ثلجية",
+ "EE": "EE: للمتنزهين الخبراء",
+ "EEA": "EEA: للمتنزهين الخبراء بالمعدات",
+ "T": "T: سياحي"
+ },
+ "placeholder": "T, E, EE, …",
+ "terms": "صعوبة مسار المشي لمسافات طويلة (نادي جبال الألب الإيطالي)"
+ },
+ "camera/direction": {
+ "label": "الاتجاهات (بالدرجات في اتجاه عقارب الساعة)",
+ "placeholder": "45, 90, 180, 270"
+ },
+ "camera/mount": {
+ "label": "حامل كاميرا"
+ },
+ "camera/type": {
+ "label": "نوع الكاميرا",
+ "options": {
+ "dome": "قبة",
+ "fixed": "ثابتة",
+ "panning": "ثابتة بمحور للدوران"
+ }
+ },
+ "camp_site": {
+ "label": "النوع"
+ },
+ "capacity": {
+ "label": "السعة",
+ "placeholder": "50، 100، 200...",
+ "terms": "السعة,القدرة الاستيعابية"
+ },
+ "capacity/caravans": {
+ "placeholder": "10، 20، 50..."
+ },
+ "capacity/disabled_parking": {
+ "label": "مساحات للمعاقين/ذوي الاحتياجات الخاصة",
+ "placeholder": "1 ، 2 ، 3 ..."
+ },
+ "capacity/persons": {
+ "label": "السعة (بالأشخاص)",
+ "placeholder": "50، 100، 200..."
+ },
+ "capacity/tents": {
+ "label": "السعة (للخيام)",
+ "placeholder": "10، 20، 50..."
+ },
+ "capacity_parking": {
+ "label": "مجموع المساحات",
+ "placeholder": "10, 20, 30..."
+ },
+ "capacity_volume": {
+ "label": "السعة (متر مكعب)",
+ "placeholder": "50، 100، 200..."
+ },
+ "cash_in": {
+ "label": "ودائع"
+ },
+ "castle_type": {
+ "label": "النوع",
+ "options": {
+ "castrum": "طريق روماني",
+ "defensive": "قلعة دفاعية",
+ "fortress": "حصن تاريخي",
+ "hillfort": "حصن التلال",
+ "kremlin": "الكرملين",
+ "manor": "قصر سكني قديم/تاريخي",
+ "palace": "قصر",
+ "shiro": "شيرو - قلعة يابانية",
+ "stately": "منزل فخم"
+ }
+ },
+ "changing_table": {
+ "label": "طاولة تغيير الحفاضات"
+ },
+ "charge_fee": {
+ "label": "مبلغ الرسوم",
+ "placeholder": "1 EUR, 5 USD, 10 JPY…",
+ "terms": "مبلغ الرسوم"
+ },
+ "charge_toll": {
+ "label": "مبلغ الرسوم",
+ "placeholder": "1 EUR, 5 USD, 10 JPY…",
+ "terms": "مبلغ الرسوم,مبلغ الإتاوة,مبلغ التحصيل"
+ },
+ "check_date": {
+ "label": "تاريخ آخر فحص",
+ "placeholder": "YYYY-MM-DD"
+ },
+ "circumference": {
+ "label": "محيط (على ارتفاع الصدر)",
+ "placeholder": "1 متر, 20 سم, 30\"…",
+ "terms": "محيط الدائرة (على ارتفاع الصدر)"
+ },
+ "climbing/length": {
+ "label": "الطول (بالأمتار)",
+ "terms": "العرض (بالمتر)"
+ },
+ "climbing/trad": {
+ "label": "التسلق التقليدي"
+ },
+ "clothes": {
+ "label": "ملابس",
+ "options": {
+ "hats": "قبعات",
+ "suits": "محل بدل",
+ "swimwear": "ملابس سباحة",
+ "underwear": "الملابس الداخلية",
+ "workwear": "ملابس العمل"
+ },
+ "terms": "ملابس,ثياب,كسوة"
+ },
+ "club": {
+ "label": "النوع"
+ },
+ "collection_times": {
+ "label": "وقت الاستلام"
+ },
+ "collector": {
+ "label": "العناصر",
+ "options": {
+ "coins": "عملات معدنية",
+ "stamps": "طوابع بريدية"
+ }
+ },
+ "colour": {
+ "label": "اللون",
+ "terms": "اللون"
+ },
+ "comment": {
+ "label": "التعليق على التغييرات",
+ "placeholder": "وصف موجز لمساهماتك وتعديلاتك (مطلوب)"
+ },
+ "communication_multi": {
+ "label": "أنواع الاتصال",
+ "terms": "أنواع الاتصال"
+ },
+ "community_centre": {
+ "label": "النوع",
+ "options": {
+ "youth_centre": "مركز الشباب"
+ }
+ },
+ "connectivity": {
+ "label": "الاتصال/الالتقاء"
+ },
+ "construction": {
+ "label": "النوع"
+ },
+ "consulate": {
+ "label": "النوع",
+ "options": {
+ "yes": "قنصلية"
+ }
+ },
+ "consulting": {
+ "label": "خبرات/استشارات"
+ },
+ "contact/webcam": {
+ "label": "رابط كاميرا الويب",
+ "placeholder": "http://example.com"
+ },
+ "content": {
+ "label": "المحتوى"
+ },
+ "conveying": {
+ "label": "اتجاه الحركة",
+ "options": {
+ "backward": "للخلف",
+ "forward": "للأمام",
+ "reversible": "قابل لتغيير الاتجاه حسب الزحام وبشكل منتظم"
+ }
+ },
+ "conveying_escalator": {
+ "label": "سلم كهربائى"
+ },
+ "country": {
+ "label": "الدولة"
+ },
+ "country_flag": {
+ "label": "علم الدولة"
+ },
+ "couplings": {
+ "label": "وصلات",
+ "placeholder": "1 ، 2 ، 3 ..."
+ },
+ "covered": {
+ "label": "مغطى",
+ "terms": "مغطى"
+ },
+ "covered_no": {
+ "options": {
+ "no": "لا",
+ "undefined": "يفترض أن يكون لا",
+ "yes": "نعم"
+ }
+ },
+ "craft": {
+ "label": "النوع",
+ "options": {
+ "agricultural_engines": "ميكانيكي محركات زراعية",
+ "basket_maker": "صناعة وحياكة السِلال",
+ "beekeeper": "مربي النحل",
+ "blacksmith": "حدّاد",
+ "boatbuilder": "بنّاء السفن",
+ "bookbinder": "تغليف وتجليد الكتب",
+ "brewery": "مصنع الجعة",
+ "builder": "منشئ",
+ "carpenter": "نجار",
+ "carpet_layer": "فرش وتركيب المفروشات",
+ "caterer": "تموين أو متعهد إعاشة",
+ "chimney_sweeper": "منظف مداخن",
+ "cleaning": "خدمات التنظيف",
+ "clockmaker": "ساعاتي",
+ "confectionery": "حلواني",
+ "distillery": "Distillery",
+ "dressmaker": "خياط نسائي",
+ "electrician": "كهربائي",
+ "floorer": "مبلط/تبليط/أرضيات",
+ "gardener": "بستاني",
+ "glaziery": "تركيب وإصلاح الزجاج",
+ "handicraft": "حرف يدوية",
+ "insulation": "تركيب عوازل حرارية",
+ "jeweller": "صائغ مجوهرات",
+ "joiner": "نجار",
+ "key_cutter": "قص ونسخ مفاتيح",
+ "locksmith": "محل بيع أقفال ونسخ مفاتيح",
+ "metal_construction": "صناعات المعادن والمواد الصلبة",
+ "painter": "دهّان",
+ "parquet_layer": "تركيب أرضيات خشبية (باركيه)",
+ "photographer": "Photographer",
+ "photographic_laboratory": "مختبر التصوير",
+ "plasterer": "جصاص (أعمال الجبس)",
+ "plumber": "سباكة",
+ "pottery": "صناعة وبيع الفخار",
+ "rigger": "الصواري والحبال والأشرعة",
+ "roofer": "بناء الأسقف والقرميد",
+ "saddler": "صانع سراج",
+ "sailmaker": "صانع أشرعة",
+ "sawmill": "منشرة",
+ "scaffolder": "تركيب وتأجير السقالة",
+ "sculptor": "نحّات",
+ "shoemaker": "إسكافي/ صانع الأحذية",
+ "signmaker": "خطاط ومصمم لوحات تجارية",
+ "stonemason": "قطع ونحت وتشكيل الحجارة",
+ "tailor": "خياط",
+ "tiler": "مبلط",
+ "tinsmith": "سمكري",
+ "upholsterer": "منجد",
+ "watchmaker": "ساعاتي",
+ "window_construction": "تركيب النوافذ",
+ "winery": "Winery"
+ }
+ },
+ "crane/type": {
+ "label": "نوع الرافعة",
+ "options": {
+ "floor-mounted_crane": "رافعة مثبتة على الأرض",
+ "portal_crane": "رافعة جسرية",
+ "travel_lift": "رافعة متحركة"
+ }
+ },
+ "crop": {
+ "label": "محاصيل",
+ "options": {
+ "asparagus": "نبات الهليون",
+ "barley": "شعير",
+ "beet": "بنجر",
+ "cassava": "بفرة",
+ "coffee": "قهوة",
+ "cotton": "قطن",
+ "cranberries": "توت بري",
+ "fast_growing_wood": "تنسيغ قصير الأجل",
+ "flowers": "زهور",
+ "grape": "عنب",
+ "grass": "عشب",
+ "hop": "جنجلة",
+ "lavender": "خزامي",
+ "maize": "ذرة",
+ "potato": "بطاطس",
+ "rape": "لفت",
+ "rice": "أرز",
+ "soy": "فول الصويا",
+ "strawberry": "فراولة",
+ "sugar_beet": "شمندر سكري",
+ "sugarcane": "قصب السكر",
+ "sunflower": "تباع الشمس",
+ "tea": "شاي",
+ "tobacco": "Tobacco",
+ "vegetable": "خضروات",
+ "wheat": "قمح"
+ }
+ },
+ "crossing": {
+ "label": "النوع",
+ "options": {
+ "traffic_signals": "معبر بإشارات مرور",
+ "uncontrolled": "فقط علامات الطريق",
+ "unmarked": "لا توجد علامات طريق أو إشارات مرور"
+ }
+ },
+ "crossing/barrier": {
+ "label": "ذراع الحاجز",
+ "options": {
+ "double_half": "مزدوج لكل نصف",
+ "full": "كامل",
+ "half": "النصف",
+ "no": "لا",
+ "yes": "نعم"
+ }
+ },
+ "crossing/bell": {
+ "label": "جرس"
+ },
+ "crossing/island": {
+ "label": "جزيرة مشاة بين طريقين"
+ },
+ "crossing/light": {
+ "label": "إضاءات"
+ },
+ "crossing/markings": {
+ "label": "علامات المعابر",
+ "options": {
+ "dashes": "خطوط عرضية متقطعة",
+ "dots": "خطوط عرضية منقطة",
+ "ladder": "سلم مع قضبان طولية",
+ "ladder:paired": "سلم مع قضبان طولية مقترنة",
+ "ladder:skewed": "سلم مع قضبان قطرية",
+ "lines": "خطوط عرضية",
+ "lines:paired": "خطوط عرضية مزدوجة",
+ "no": "لايوجد به علامات",
+ "pictograms": "الرسوم التوضيحية المرسومة",
+ "surface": "على السطح فقط",
+ "yes": "توجد علامات بطريقة غير مباشرة",
+ "zebra": "قضبان طولية",
+ "zebra:bicolour": "قضبان طولية بألوان متناوبة",
+ "zebra:double": "الثلاثي الرباعي",
+ "zebra:paired": "قضبان طولية مقترنة"
+ },
+ "terms": "علامات المشاة,علامات المرور"
+ },
+ "crossing_raised": {
+ "label": "مرتفع",
+ "options": {
+ "table": "نعم",
+ "undefined": "لا"
+ }
+ },
+ "cuisine": {
+ "label": "المأكولات",
+ "options": {
+ "african": "إفريقي",
+ "american": "أمريكي",
+ "arab": "عربي",
+ "argentinian": "ارجنتيني",
+ "asian": "آسيوي",
+ "bagel": "كعك بايقل",
+ "balkan": "البلقان",
+ "barbecue": "شواء/مشاوي",
+ "bavarian": "البافاريه",
+ "brazilian": "برازيلي",
+ "bubble_tea": "شاي الفقاعات",
+ "burger": "برجر",
+ "cake": "كيك",
+ "caribbean": "كاريبي",
+ "chicken": "دجاج",
+ "chinese": "صيني",
+ "coffee_shop": "مقهى",
+ "crepe": "كريب (بان كيك رقيق)",
+ "curry": "كاري",
+ "dessert": "حلويات بعد الطعام",
+ "donut": "دونات",
+ "filipino": "فلبيني",
+ "fish": "سمك",
+ "french": "فرنسي",
+ "georgian": "الجورجية",
+ "german": "ألماني",
+ "greek": "يوناني",
+ "hot_dog": "هوت دوج",
+ "ice_cream": "بوظة/آيسكريم",
+ "indian": "هندي",
+ "indonesian": "أندونيسي",
+ "italian": "إيطالي",
+ "japanese": "ياباني",
+ "juice": "عصير",
+ "kebab": "كباب",
+ "korean": "كوري",
+ "lebanese": "لبناني",
+ "malaysian": "ماليزي",
+ "mediterranean": "البحر الابيض المتوسط",
+ "mexican": "مكسيكي",
+ "moroccan": "مغربي",
+ "noodle": "المعكرونة",
+ "pancake": "بان كيك (فطيرة مسطحة)",
+ "pasta": "باستا",
+ "pastry": "متجر المعجنات والحلويات",
+ "persian": "فارسي",
+ "peruvian": "بيروفي",
+ "pizza": "بيتزا",
+ "polish": "بولندي",
+ "portuguese": "برتغالي",
+ "ramen": "رامن",
+ "regional": "إقليمي / محلي",
+ "russian": "روسي",
+ "salad": "سلطة",
+ "sandwich": "خبز / ساندويتش",
+ "sausage": "سجق",
+ "seafood": "مأكولات بحرية",
+ "soba": "سوبا",
+ "spanish": "أسباني",
+ "steak_house": "شرائح لحم (ستيك)",
+ "sushi": "سوشي",
+ "taiwanese": "تايواني",
+ "tapas": "تاباس",
+ "tea": "شاي",
+ "thai": "تيلاندي",
+ "turkish": "تركي",
+ "ukrainian": "الأوكرانية",
+ "vietnamese": "فيتنامي"
+ },
+ "terms": "نوع الطعام,أنواع الطعام,الأطباق,المأكولات,الأطعمة"
+ },
+ "currency_multi": {
+ "label": "أنواع العملات",
+ "terms": "أنواع العملات"
+ },
+ "cutting": {
+ "label": "النوع",
+ "placeholder": "الافتراضي"
+ },
+ "cycle_barrier": {
+ "label": "النوع",
+ "options": {
+ "diagonal": "قطري",
+ "double": "مزدوج",
+ "single": "فردي",
+ "triple": "ثلاثية"
+ }
+ },
+ "cycle_barrier/installation": {
+ "label": "التنصيب",
+ "options": {
+ "fixed": "ثابتة",
+ "removable": "قابل للإزالة"
+ }
+ },
+ "cycle_network": {
+ "label": "الشبكة"
+ },
+ "cycleway": {
+ "label": "مسارات الدراجات",
+ "options": {
+ "lane": {
+ "description": "مسار دراجات مفصول عن السيارات بخط مطبوع"
+ },
+ "no": {
+ "description": "لا يوجد مسار للدراجات",
+ "title": "لا شيء"
+ },
+ "separate": {
+ "description": "للإشارة إلى أنه قد تم تخطيط مسار الدراجات باعتباره شكلًا هندسيًا منفصلاً"
+ },
+ "share_busway": {
+ "description": "مسار درجات مشتركة مع مسار الحافلات"
+ },
+ "shared_lane": {
+ "description": "مسار دراجات غير مفصول عن حركة مرور السيارات"
+ },
+ "track": {
+ "description": "مسار دراجات مفصول عن السيارات بحاجز",
+ "title": "مسار الدراجة"
+ }
+ },
+ "terms": "مسارات الداراجات,مسارات الدراجات الهوائية",
+ "types": {
+ "cycleway:left": "الجانب الأيسر",
+ "cycleway:right": "الجانب الأيمن"
+ }
+ },
+ "dance/style": {
+ "label": "أساليب الرقص"
+ },
+ "date": {
+ "label": "التاريخ"
+ },
+ "defibrillator/location": {
+ "label": "وصف مكانه"
+ },
+ "delivery": {
+ "label": "توصيل طلبات",
+ "terms": "توصيل طلبات,تسليم طلبات"
+ },
+ "denomination": {
+ "label": "المذهب/الطائفة",
+ "terms": "المذهب/الطائفة,المذهب,الطائفة"
+ },
+ "denotation": {
+ "label": "علامة/معلم",
+ "terms": "دلالة"
+ },
+ "departures_board": {
+ "label": "لوحة المغادرين/القادمين",
+ "options": {
+ "no": "لا شيء",
+ "realtime": "الوقت الفعلي",
+ "timetable": "جدول المواعيد",
+ "yes": "نعم"
+ }
+ },
+ "deposit/trolley": {
+ "label": "إيداع"
+ },
+ "depot": {
+ "label": "النوع"
+ },
+ "depth": {
+ "label": "العمق (متر)"
+ },
+ "descent": {
+ "label": "إجمالي النزول",
+ "terms": "إجمالي النزول"
+ },
+ "description": {
+ "label": "الوصف",
+ "terms": "وصف,وصوف,أوصاف,وصف إضافي"
+ },
+ "design": {
+ "label": "التصميم"
+ },
+ "destination": {
+ "label": "الوجهة الرئيسية"
+ },
+ "destination/ref": {
+ "label": "أرقام طُرق الوجهة"
+ },
+ "destination/symbol": {
+ "label": "رموز الوجهة"
+ },
+ "destination_waterway": {
+ "label": "الوجهة"
+ },
+ "devices": {
+ "label": "الأجهزة",
+ "placeholder": "1 ، 2 ، 3 ..."
+ },
+ "diameter": {
+ "label": "القطر",
+ "placeholder": "5مم(mm)، 10سم(cm)، 15 بوصة(in)",
+ "terms": "قطر الدائرة"
+ },
+ "diameter_crown": {
+ "label": "قطر التاج",
+ "placeholder": "4 متر, 9', …",
+ "terms": "قطر التاج"
+ },
+ "diet_multi": {
+ "label": "النمط الغذائي",
+ "options": {
+ "gluten_free": "خالي من الجلوتين (القمح والشعير ..الخ)",
+ "halal": "حلال (مطابق للشريعة الإسلامية)",
+ "kosher": "كوشر (لليهود)",
+ "lactose_free": "خالي من اللاكتوز (الحساسية من الحليب)",
+ "pescetarian": "نباتيو الأسماك",
+ "vegan": "نباتي",
+ "vegetarian": "نباتي ويأكل مشتقات الحيوانات"
+ },
+ "terms": "أنواع النظام الغذائي,النمط الغذائي,الحمية الغذائية,المحظورات الغذائية"
+ },
+ "diplomatic": {
+ "label": "النوع",
+ "options": {
+ "consulate": "قنصلية",
+ "embassy": "سفارة",
+ "liaison": "مكتب اتصال دبلوماسي"
+ }
+ },
+ "diplomatic/services": {
+ "label": "خدمات"
+ },
+ "direction": {
+ "label": "الاتجاهات (بالدرجات في اتجاه عقارب الساعة)",
+ "placeholder": "45, 90, 180, 270",
+ "terms": "الاتجاه (بالدرجات في اتجاه عقارب الساعة)"
+ },
+ "direction_cardinal-US-CA-NZ": {
+ "label": "الاتجاه",
+ "options": {
+ "east": "شرقاً",
+ "north": "شمالاً",
+ "south": "جنوباً",
+ "west": "غرباً"
+ },
+ "terms": "الاتجاه,الوجهة"
+ },
+ "direction_clock": {
+ "label": "الاتجاه",
+ "options": {
+ "anticlockwise": "عكس عقارب الساعة",
+ "clockwise": "باتجاه عقارب الساعة"
+ }
+ },
+ "direction_point": {
+ "placeholder": "45, 90, 180, 270"
+ },
+ "direction_vertex": {
+ "label": "اتجاه علامة الطريق",
+ "options": {
+ "backward": "للخلف",
+ "both": "للاتجاهين",
+ "forward": "للأمام"
+ },
+ "terms": "الاتجاه المتأثر"
+ },
+ "dispensing": {
+ "label": "يصرف أدوية بوصفة طبية"
+ },
+ "display": {
+ "label": "عرض",
+ "options": {
+ "analog": "تناظري",
+ "digital": "رقمي",
+ "sundial": "مزولة",
+ "unorthodox": "غير تقليدي"
+ }
+ },
+ "distance": {
+ "label": "المسافة",
+ "terms": "المسافة,المدى,الطول"
+ },
+ "disused/amenity": {
+ "label": "النوع"
+ },
+ "disused/railway": {
+ "label": "النوع"
+ },
+ "disused/shop": {
+ "label": "النوع"
+ },
+ "dock": {
+ "label": "النوع"
+ },
+ "dog": {
+ "label": "كلاب",
+ "options": {
+ "leashed": "مقيديين فقط",
+ "no": "غير مسموح",
+ "yes": "مسموح"
+ },
+ "terms": "كلاب"
+ },
+ "door": {
+ "label": "باب"
+ },
+ "door_type": {
+ "label": "النوع"
+ },
+ "drink_multi": {
+ "label": "المشروبات"
+ },
+ "drinking_water": {
+ "label": "صالح للشرب",
+ "terms": "صالح للشرب"
+ },
+ "drinking_water_available": {
+ "label": "تتوفر مياه قابلة للشرب",
+ "terms": "تتوفر مياه قابلة للشرب"
+ },
+ "drive_through": {
+ "label": "ممر الطلب بالسيارة",
+ "terms": "ممر الطلب بالسيارة"
+ },
+ "duration": {
+ "label": " المدة",
+ "placeholder": "00:00",
+ "terms": "المدة"
+ },
+ "ele": {
+ "label": "الارتفاع (متر)",
+ "terms": "الارتفاع (متر)"
+ },
+ "electrified": {
+ "label": "الكهربية",
+ "options": {
+ "contact_line": "كيابل معلقة بأبراج",
+ "no": "لا",
+ "rail": "سكة حديد مكهربة",
+ "yes": "نعم (غير محدد)"
+ },
+ "placeholder": "كيابل كهربائية معلقة بأبراج للسكك حديدية...",
+ "terms": "البنية الكهربائية,البنية التحتية للكهرباء,بنية الكهرباء,خطوط الكهرباء"
+ },
+ "email": {
+ "label": "البريد الإلكتروني",
+ "placeholder": "example@example.com",
+ "terms": "البريد الإلكتروني,إيميل"
+ },
+ "embankment": {
+ "label": "النوع",
+ "placeholder": "الافتراضي"
+ },
+ "embassy": {
+ "label": "النوع",
+ "options": {
+ "branch_embassy": "فرع سفارة",
+ "delegation": "تفويض",
+ "high_commission": "اللجنة العليا",
+ "interests_section": "Interests section",
+ "mission": "مكتب دبلوماسي",
+ "nunciature": "Diplomatic Mission of the Holy See",
+ "residence": "الإقامة الرسمية للسفير",
+ "yes": "سفارة"
+ }
+ },
+ "emergency": {
+ "label": "طوارئ"
+ },
+ "emergency_combo": {
+ "label": "النوع"
+ },
+ "emergency_ward_entrance": {
+ "label": "النوع"
+ },
+ "enforcement": {
+ "label": "النوع"
+ },
+ "entrance": {
+ "label": "النوع",
+ "options": {
+ "emergency": "مخرج طوارئ",
+ "entrance": "مدخل فقط",
+ "exit": "مخرج فقط",
+ "garage": "باب المرآب",
+ "home": "منزل خاص أو شقة",
+ "main": "رئيسي",
+ "secondary": "ثانوي",
+ "service": "خدمة",
+ "staircase": "سلم",
+ "yes": "غير محدد"
+ },
+ "terms": "نوع,صنف,نمط"
+ },
+ "except": {
+ "label": "الاستثناءات"
+ },
+ "expected_rcn_route_relations": {
+ "label": "نقاط ركوب الدراجات المجاورة"
+ },
+ "expected_rwn_route_relations": {
+ "label": "نقاط المشي المجاورة"
+ },
+ "expressway-US": {
+ "label": "طريق سريع (US)",
+ "terms": "طريق سريع (الولايات المتحدة)"
+ },
+ "faces": {
+ "label": "الواجهات"
+ },
+ "fax": {
+ "label": "الفاكس",
+ "placeholder": "+966 42 123 4567",
+ "terms": "فاكس,ناسوخ"
+ },
+ "fee": {
+ "label": "رسوم",
+ "terms": "رسوم,تحصيل,أجرة,أتعاب"
+ },
+ "fence_type": {
+ "label": "النوع"
+ },
+ "fire_hydrant/diameter": {
+ "label": "القُطر (مم، بوصة، أو حروف)",
+ "terms": "القُطر (مم، بوصة، أو حروف)"
+ },
+ "fire_hydrant/position": {
+ "label": "الموضع",
+ "options": {
+ "green": "العشب/الزرع",
+ "lane": "مسار الطريق",
+ "parking_lot": "مكان المواقف",
+ "sidewalk": "الرصيف"
+ }
+ },
+ "fire_hydrant/pressure": {
+ "label": "الضغط (بار)",
+ "terms": "الضغط (بار)"
+ },
+ "fire_hydrant/type": {
+ "label": "شكل",
+ "options": {
+ "pillar": "عامود/صنبور فوق الأرض",
+ "pipe": "أنابيب مغطاة",
+ "underground": "تحت الأرض",
+ "wall": "جدار"
+ }
+ },
+ "fire_mains": {
+ "options": {
+ "no": "لا"
+ }
+ },
+ "fire_service_inlet": {
+ "label": "شكل",
+ "options": {
+ "pillar": "عامود/صنبور فوق الأرض",
+ "pipe": "أنابيب مغطاة",
+ "underground": "تحت الأرض",
+ "wall": "جدار"
+ }
+ },
+ "fire_sprinkler": {
+ "options": {
+ "no": "لا"
+ }
+ },
+ "fireplace": {
+ "label": "المستوقد/مدفأة نار"
+ },
+ "fishing": {
+ "label": "صيد الأسماك",
+ "terms": "صيد الأسماك"
+ },
+ "fitness_station": {
+ "label": "نوع المُعدّة"
+ },
+ "fixme": {
+ "label": "أصلحني",
+ "terms": "أصلحني"
+ },
+ "flag/name": {
+ "label": "Flag Name"
+ },
+ "flag/type": {
+ "label": "نوع العلم"
+ },
+ "flag/wikidata": {
+ "label": "Flag Wikidata"
+ },
+ "flashing_lights": {
+ "label": "الأضواء الساطعة",
+ "options": {
+ "always": {
+ "description": "تومض الأضواء دائمًا",
+ "title": "وامض بشكل دائم"
+ },
+ "button": {
+ "description": "يتم تنشيط الأضواء بالضغط على زر",
+ "title": "متاح عبر الضغط على الزر"
+ },
+ "button;sensor": {
+ "description": "يتم تنشيط الأضواء بواسطة جهاز استشعار أو عن طريق الضغط على زر",
+ "title": "متاح عبر الضغط على الزر أو عبر المستشعر"
+ },
+ "no": "لا",
+ "sensor": {
+ "description": "يتم تنشيط الأضواء بواسطة جهاز استشعار",
+ "title": "متاح عبر أجهزة الاستشعار"
+ },
+ "yes": "نعم"
+ },
+ "terms": "الأضواء الساطعة"
+ },
+ "floating": {
+ "label": "عائم"
+ },
+ "flood_prone": {
+ "label": "منطقة معرضة للفيضانات",
+ "terms": "منطقة معرضة للفيضانات"
+ },
+ "ford": {
+ "label": "النوع",
+ "placeholder": "الافتراضي"
+ },
+ "fountain": {
+ "label": "النوع"
+ },
+ "frequency": {
+ "label": "التردد الكهربائي",
+ "terms": "التردد الكهربائي,تردد التشغيل"
+ },
+ "from": {
+ "label": "من"
+ },
+ "fuel": {
+ "label": "وقود"
+ },
+ "fuel/fuel_multi": {
+ "label": "أنواع الوقود",
+ "options": {
+ "GTL_diesel": "ديزل GTL",
+ "HGV_diesel": "ديزل شاحنات",
+ "LH2": "هيدروجين سائل",
+ "adblue": "AdBlue / AUS 32",
+ "adblue:canister": "AdBlue / AUS 32 (في عبوات)",
+ "biodiesel": "ديزل حيوي",
+ "cng": "الغاز الطبيعي المضغوط (CNG)",
+ "diesel": "ديزل",
+ "octane_90": "بنزين (90 أوكتان)",
+ "octane_91": "البنزين (91 أوكتان)",
+ "octane_92": "بنزين (92 أوكتان)",
+ "octane_93": "بنزين (93 أوكتان)",
+ "octane_95": "بنزين (95 أوكتان)",
+ "octane_97": "بنزين (97 أوكتان)",
+ "octane_98": "بنزين (98 أوكتان)"
+ }
+ },
+ "gambling": {
+ "label": "ألعاب"
+ },
+ "garden/type": {
+ "label": "نوع الحديقة"
+ },
+ "gauge": {
+ "label": "عرض السكة الحديدية"
+ },
+ "gender": {
+ "label": "نوع الجنس",
+ "options": {
+ "female": "أنثى",
+ "male": "ذكر",
+ "unisex": "للجنسين"
+ },
+ "placeholder": "غير معروفة",
+ "terms": "الجنس"
+ },
+ "generator/method": {
+ "label": "الطريقة",
+ "options": {
+ "anaerobic_digestion": "الهضم اللاهوائي",
+ "stream": "تيار المد والجزر",
+ "thermal": "طاقة شمسية",
+ "water-storage": "خزان",
+ "wind_turbine": "توربينة رياح"
+ }
+ },
+ "generator/output/electricity": {
+ "label": "الطاقة الناتجة",
+ "placeholder": "50 ميجا وات، 100 ميجا وات، 200 ميجا وات..."
+ },
+ "generator/source": {
+ "label": "المصدر",
+ "options": {
+ "battery": "بطارية",
+ "biofuel": "وقود حيوي",
+ "biogas": "غاز حيوي",
+ "coal": "فحم",
+ "diesel": "ديزل",
+ "gas": "غاز طبيعي",
+ "gasoline": "بنزين",
+ "hydro": "طاقة كهرومائية",
+ "nuclear": "طاقة نووية",
+ "oil": "نفط",
+ "solar": "إشعاع الشمس",
+ "tidal": "طاقة المد والجزر",
+ "waste": "نفايات",
+ "wave": "طاقة الأمواج",
+ "wind": "رياح"
+ }
+ },
+ "generator/type": {
+ "label": "النوع"
+ },
+ "genus": {
+ "label": "الجنس",
+ "placeholder": "أيسر ، بلاتانوس ، Quercus",
+ "terms": "الجنس,النوع,الفصيلة"
+ },
+ "geyser/height": {
+ "label": "ارتفاع الفوران"
+ },
+ "gnis/feature_id-US": {
+ "label": "المعرف حسب GNIS",
+ "terms": "المعرف حسب gnis (نظام معلومات الأسماء الجغرافية)"
+ },
+ "government": {
+ "label": "النوع"
+ },
+ "grades": {
+ "label": "مستوى المراحل التعليمية"
+ },
+ "grape_variety": {
+ "label": "أصناف العنب"
+ },
+ "group_only": {
+ "label": "المجموعات فقط",
+ "terms": "المجموعات فقط"
+ },
+ "guest_house": {
+ "label": "النوع"
+ },
+ "handicap": {
+ "label": "إعاقة (ذوي احتياجات خاصة)",
+ "placeholder": "1-18"
+ },
+ "handrail": {
+ "label": "سياج سلم (درابزين)",
+ "terms": "درابزين,سياج سلم"
+ },
+ "hashtags": {
+ "label": "الوسوم",
+ "placeholder": "#مثال"
+ },
+ "hazard_boundary": {
+ "label": "خطر",
+ "options": {
+ "avalanche": "انهيار ثلجي",
+ "biohazard": "خطر حيوي",
+ "contamination": "تلوث كيميائي",
+ "electricity": "صعقة كهربائية",
+ "hole": "حُفرة",
+ "minefield": "ألغام أرضية",
+ "nuclear": "نووي / إشعاعي",
+ "quicksand": "رمال متحركة",
+ "shooting_range": "إطلاق نار"
+ }
+ },
+ "healthcare": {
+ "label": "النوع",
+ "options": {
+ "alternative": "الطب البديل",
+ "audiologist": "أخصائي السمع",
+ "birthing_centre": "مركز ولادة",
+ "blood_bank": "بنك الدم",
+ "blood_donation": "مركز تبرع بالدم",
+ "clinic": "عيادة طبية",
+ "counselling": "مركز استشارات طبية",
+ "dentist": "طبيب أسنان",
+ "dialysis": "غسيل كلى",
+ "doctor": "طبيب",
+ "hospice": "دار رعاية المسنين وكبار السن",
+ "hospital": "مستشفى",
+ "laboratory": "معمل طبي",
+ "midwife": "مركز قابلات للأمهات والأطفال حديثي الولادة",
+ "nurse": "تمريض",
+ "occupational_therapist": "أخصائي علاج وظيفي",
+ "optometrist": "أخصائي بصريات",
+ "pharmacy": "صيدلانية",
+ "physiotherapist": "علاج طبيعي وتأهيل طبي",
+ "podiatrist": "طبيب الأقدام",
+ "psychotherapist": "معالج نفسي",
+ "rehabilitation": "مركز إعادة التأهيل",
+ "sample_collection": "مرفق جمع العينات",
+ "speech_therapist": "معالج مشاكل النطق"
+ }
+ },
+ "healthcare/speciality": {
+ "label": "التخصصات",
+ "options": {
+ "chiropractic": "العلاج بتقويم العمود الفقري",
+ "orthodontics": "تقويم الأسنان",
+ "osteopathy": "تجبير العظام",
+ "shiatsu": "شياتسو",
+ "stomatology": "أمراض الفم",
+ "surgery": "جراحة عامة",
+ "systemic": "علاج نظامي",
+ "traditional_chinese_medicine": "طب صيني تقليدي",
+ "transplant": "جراحة زراعة الأعضاء",
+ "trauma": "جراحة الصدمة",
+ "tropical": "الطب الاستوائي"
+ }
+ },
+ "heating": {
+ "label": "تدفئة"
+ },
+ "height": {
+ "label": "الارتفاع (بالأمتار)",
+ "terms": "الارتفاع (بالأمتار)"
+ },
+ "height_building": {
+ "label": "ارتفاع المبنى (بالأمتار)",
+ "terms": "ارتفاع المبنى (بالأمتار)"
+ },
+ "highchair": {
+ "label": "كرسي عالي للأطفال",
+ "terms": "كرسي عالي"
+ },
+ "highspeed": {
+ "label": "فائق السرعة",
+ "terms": "فائق السرعة,قطار فائق السرعة"
+ },
+ "highway": {
+ "label": "النوع"
+ },
+ "highway_cartpath": {
+ "label": "نوع المسار",
+ "options": {
+ "path": "مسار عربات",
+ "service": "طريق خدمة"
+ }
+ },
+ "historic": {
+ "label": "النوع",
+ "options": {
+ "archaeological_site": "موقع أثري",
+ "boundary_stone": "حجر/علامة حدودية",
+ "building": "مبنى تاريخي",
+ "castle": "حصن / قلعة",
+ "church": "Church",
+ "city_gate": "بوابة المدينة",
+ "fort": "حصن عسكري",
+ "manor": "قصر سكني قديم/تاريخي",
+ "memorial": "نصب تذكاري",
+ "mine": "الفكرة",
+ "monument": "نصب تذكاري",
+ "pillory": "منصة صلب للتشهير بالمجرمين",
+ "railway": "سكة حديد",
+ "ruins": "أطلال/أنقاض/خرائب",
+ "shieling": "مراعي الجبال المهجورة",
+ "tomb": "قبر / ضريح",
+ "wayside_cross": "تقاطع جانب الطريق",
+ "wayside_shrine": "Wayside Shrine",
+ "wreck": "ركام سفينة"
+ }
+ },
+ "historic/civilization": {
+ "label": "الحضارة التاريخية"
+ },
+ "historic/wreck/date_sunk": {
+ "label": "تاريخ الغرق"
+ },
+ "historic/wreck/visible_at_high_tide": {
+ "label": "مرئية في المد والجزر العالي"
+ },
+ "historic/wreck/visible_at_low_tide": {
+ "label": "مرئية في المد والجزر المنخفض"
+ },
+ "holding_position/type": {
+ "label": "النوع",
+ "options": {
+ "ILS": "جهاز هبوط آلي",
+ "intermediate": "تقاطع ممر سيارات الأجرة",
+ "runway": "مدرج المطار"
+ }
+ },
+ "hoops": {
+ "label": "عدد أطواق كرة السلة",
+ "placeholder": "1، 2، 4..."
+ },
+ "horse_riding": {
+ "label": "مركز ركوب الخيل",
+ "options": {
+ "horse_riding": "نعم",
+ "undefined": "لا"
+ }
+ },
+ "horse_scale": {
+ "label": "صعوبة ركوب الخيل",
+ "options": {
+ "common": "سهلة: لا مشاكل أو صعوبات. (طبيعي)",
+ "critical": "يتجاوز المألوف: مسموح فقط للفرسان والخيول ذوي الخبرة، يوجد عقبات كبيرة، ويجب فحص الجسور بعناية.",
+ "dangerous": "خطيرة: مقبول فقط للراكبين والخيول ذوي الخبرة الكبيرة، وفقط في الطقس الجيد.",
+ "demanding": "بحذر: طريق غير مستوي، عوائق صعبة في بعض الأحيان.",
+ "difficult": "صعبة: طريق ضيق ومكشوف. قد يحتوي على عوائق لتخطيها، وممرات ضيقة."
+ },
+ "placeholder": "صعب، خطير...",
+ "terms": "صعوبة ركوب الخيل"
+ },
+ "hot_water": {
+ "label": "ماء ساخن"
+ },
+ "iata": {
+ "label": "كود المطار من IATA"
+ },
+ "icao": {
+ "label": "كود المطار من ICAO"
+ },
+ "image": {
+ "label": "صورة",
+ "placeholder": "https://example.com/photo.jpg",
+ "terms": "صورة"
+ },
+ "incline": {
+ "label": "درجة الانحدار",
+ "terms": "انحدار الطريق,درجة الانحدار,مستوى الانحدار"
+ },
+ "incline_steps": {
+ "options": {
+ "down": "للأسفل",
+ "up": "فوق"
+ }
+ },
+ "indoor": {
+ "label": "الوضع الداخلي",
+ "terms": "داخل المبنى,داخلي,ضمن المبنى"
+ },
+ "indoor_type": {
+ "label": "النوع"
+ },
+ "industrial": {
+ "label": "النوع"
+ },
+ "informal": {
+ "label": "غير رسمي",
+ "terms": "غير رسمي,شكل غير رسمي"
+ },
+ "information": {
+ "label": "النوع"
+ },
+ "inscription": {
+ "label": "النقوش",
+ "terms": "نقوش,نصوص منقوشة على أشياء"
+ },
+ "intermittent": {
+ "label": "مجرى متقطع ولا يجري بشكل دائم",
+ "terms": "متقطع,لا يحتوي على الماء بشكل دائم"
+ },
+ "internet_access": {
+ "label": "اتصال انترنت",
+ "options": {
+ "no": "لا",
+ "terminal": "محطة / صالة",
+ "wired": "سلكي",
+ "wlan": "لا سلكي",
+ "yes": "نعم"
+ },
+ "terms": "اتصال انترنت"
+ },
+ "internet_access/fee": {
+ "label": "رسوم استخدام خدمة الإنترنت",
+ "options": {
+ "customers": "للعملاء/الزبائن فقط",
+ "no": "مجاني",
+ "yes": "مدفوع"
+ }
+ },
+ "internet_access/ssid": {
+ "label": "اسم شبكة الواي فاي",
+ "terms": "اسم شبكة الواي فاي"
+ },
+ "interval": {
+ "label": "الفترة الزمنية",
+ "terms": "الفترة الزمنية"
+ },
+ "irrigation_pivot": {
+ "options": {
+ "pivot": "نعم",
+ "undefined": "لا"
+ }
+ },
+ "junction/ref_oneway": {
+ "label": "رقم التقاطع",
+ "terms": "رقم التقاطع,الرقم المرجعي للتقاطع"
+ },
+ "junction_line": {
+ "label": "تقاطع",
+ "options": {
+ "circular": "دوار متحكم به بإشارات أو علامات توقف أو أفضلية القادم من طريق آخر",
+ "jughandle": "تقاطع jughandle",
+ "roundabout": "دوار بدون اشارات وأفضلية المسار لمن فيه"
+ },
+ "terms": "دوار بدون اشارات وأفضلية المسار لمن فيه"
+ },
+ "kerb": {
+ "label": "منحدر الرصيف المؤدي للشارع",
+ "options": {
+ "flush": {
+ "title": "شطف/سيفون/ماء متدفق"
+ },
+ "lowered": {
+ "title": "خفضت"
+ },
+ "no": {
+ "title": "لا"
+ },
+ "raised": {
+ "title": "مرتفع"
+ },
+ "rolled": {
+ "title": "رصيف بحواف مطويه (مستديرة)"
+ },
+ "yes": {
+ "title": "نعم"
+ }
+ }
+ },
+ "kerb/height": {
+ "label": "الارتفاع"
+ },
+ "kerb/kerb_barrier": {
+ "label": "النوع"
+ },
+ "kitchen": {
+ "label": "المطبخ",
+ "terms": "المطبخ"
+ },
+ "kneipp_water_cure_multi": {
+ "label": "نوع الحوض"
+ },
+ "label": {
+ "label": "العلامة/المسمى"
+ },
+ "lamp_mount": {
+ "label": "حامل المصباح"
+ },
+ "lamp_type": {
+ "label": "النوع"
+ },
+ "landuse": {
+ "label": "النوع"
+ },
+ "lane_markings": {
+ "label": "رسومات الطريق",
+ "terms": "رسومات الطريق,علامات الطريق,العلامات التي تفصل مسارات السيارات"
+ },
+ "lanes": {
+ "label": "مسارات الطريق",
+ "placeholder": "1 ، 2 ، 3 ...",
+ "terms": "المسارات المرورية"
+ },
+ "language_multi": {
+ "label": "اللغات"
+ },
+ "layer": {
+ "label": "الطبقة/المستوى",
+ "placeholder": "0",
+ "terms": "الطبقات"
+ },
+ "layer_1": {
+ "placeholder": "0"
+ },
+ "leaf_cycle": {
+ "label": "دورة حياة أوراق الشجر",
+ "options": {
+ "deciduous": "المتساقطة",
+ "evergreen": "دائمة الخضرة",
+ "mixed": "مختلط",
+ "semi_deciduous": "شبه متساقطة",
+ "semi_evergreen": "شبه دائمة الخضرة"
+ },
+ "terms": "دورة حياة الورقة"
+ },
+ "leaf_type": {
+ "label": "نوع ورق الشجر",
+ "options": {
+ "broadleaved": "عريضة الأوراق",
+ "leafless": "بلا أوراق",
+ "mixed": "مختلط",
+ "needleleaved": "إبرية"
+ },
+ "terms": "نوع الورقة,نوع ورقة النبات"
+ },
+ "leaf_type_singular": {
+ "label": "نوع ورق الشجر",
+ "terms": "نوع الورقة,نوع ورقة النبات"
+ },
+ "leisure": {
+ "label": "النوع"
+ },
+ "length": {
+ "label": "الطول (بالأمتار)",
+ "terms": "العرض (بالمتر)"
+ },
+ "level": {
+ "label": "المستوى",
+ "terms": "المستوى,الطابق,الدور"
+ },
+ "level_semi": {
+ "label": "المسويات",
+ "terms": "المستويات,الطوابق,الأدوار"
+ },
+ "liaison": {
+ "label": "النوع"
+ },
+ "lifeguard": {
+ "label": "النوع"
+ },
+ "lifeguard_check": {
+ "label": "حارس الشاطئ"
+ },
+ "lift_gate/type": {
+ "label": "النوع"
+ },
+ "line_attachment": {
+ "label": "كيفية ارتباط الكيابل"
+ },
+ "line_management": {
+ "label": "طوبولوجيا الخط",
+ "terms": "طوبولوجيا الخط,إدارة الخط"
+ },
+ "lit": {
+ "label": "مضاء",
+ "terms": "مضاء,منور،له نور"
+ },
+ "loc_name": {
+ "label": "الاسم المحلي",
+ "terms": "الاسم الشعبي"
+ },
+ "location": {
+ "label": "المكان",
+ "terms": "المكان,المكان بالضبط"
+ },
+ "location_pool": {
+ "options": {
+ "indoor": "الوضع الداخلي",
+ "outdoor": "معدات الرحلات - التسلق - التخييم - الملاحة",
+ "roof": "على سطح بناية"
+ }
+ },
+ "lock": {
+ "label": "هويس"
+ },
+ "lockable": {
+ "label": "قابل للقفل",
+ "terms": "قابل للقفل"
+ },
+ "locked": {
+ "label": "حاجز/بوابة"
+ },
+ "man_made": {
+ "label": "النوع"
+ },
+ "manhole": {
+ "label": "النوع"
+ },
+ "manufacturer": {
+ "label": "الشركة المُصنّعة",
+ "terms": "الشركة المُصنّعة"
+ },
+ "map_size": {
+ "label": "التغطية"
+ },
+ "map_type": {
+ "label": "النوع",
+ "options": {
+ "toposcope": "لوح طوبوغرافي"
+ }
+ },
+ "mapillary": {
+ "label": "معرف الصورة في مابيلاري",
+ "terms": "معرف الصورة في مابيلاري,معرف الصورة في mapillary"
+ },
+ "marker": {
+ "label": "النوع",
+ "options": {
+ "ground": {
+ "title": "أرضي"
+ },
+ "stone": {
+ "title": "حجر"
+ }
+ }
+ },
+ "material": {
+ "label": "مادة البناء",
+ "options": {
+ "brick": "طوب",
+ "concrete": "خرسانه/اسمنت",
+ "glass": "زجاج",
+ "granite": "جرانيت",
+ "limestone": "حجر الكلس (الجيري)",
+ "metal": "معدني",
+ "plastic": "بلاستيك",
+ "rock": "صخرة",
+ "sand": "رمال/نفود",
+ "sandstone": "الحجر الرملي",
+ "steel": "فولاذ",
+ "stone": "حجر",
+ "wood": "خشبي"
+ },
+ "terms": "المادة,المواد"
+ },
+ "mattress": {
+ "label": "تتوفر مطارح/مراتب",
+ "terms": "تتوفر مطارح/مراتب"
+ },
+ "max_age": {
+ "label": "الحد الأقصى للعمر",
+ "terms": "الحد الأقصى لسن الشخص,الحد الأعلى لسن الشخص"
+ },
+ "maxspeed": {
+ "label": "حدود السرعة",
+ "placeholder": "40, 50, 60...",
+ "terms": "حدود السرعة,قيود السرعة"
+ },
+ "maxspeed/advisory": {
+ "label": "حدود السرعة المنصوح بها",
+ "placeholder": "40, 50, 60...",
+ "terms": "حدود السرعة المنصوح بها"
+ },
+ "maxspeed/hgv": {
+ "label": "الحد الأقصى لسرعة الشاحنة",
+ "placeholder": "40, 50, 60...",
+ "terms": "سرعة الشاحنات القصوى"
+ },
+ "maxstay": {
+ "label": "المدة الزمنية المحددة"
+ },
+ "memorial": {
+ "label": "النوع",
+ "options": {
+ "bust": "صدر",
+ "obelisk": "Obelisk",
+ "plaque": "Commemorative Plaque",
+ "sculpture": "منحوتة",
+ "statue": "تمثال",
+ "stone": "حجر"
+ }
+ },
+ "message": {
+ "label": "رسالة",
+ "terms": "رسالة"
+ },
+ "microbrewery": {
+ "label": "Microbrewery"
+ },
+ "military_service": {
+ "label": "خدمة عسكرية",
+ "options": {
+ "air_force": "قوات جوية",
+ "army": "جيش",
+ "coast_guard": "خفر سواحل",
+ "marines": "مشاة البحرية",
+ "navy": "قوات بحرية"
+ }
+ },
+ "mimics": {
+ "label": "محاكاة",
+ "terms": "محاكاة,مجاراة"
+ },
+ "min_age": {
+ "label": "الحد الأدنى للعمر",
+ "terms": "الحد الأدنى للعمر"
+ },
+ "min_height": {
+ "label": "ارتفاع القاع (متر)"
+ },
+ "minspeed": {
+ "label": "الحد الأدنى للسرعة",
+ "placeholder": "20, 30, 40...",
+ "terms": "الحد الأدنى للسرعة"
+ },
+ "mobile": {
+ "label": "هاتف محمول",
+ "placeholder": "+966 42 123 4567"
+ },
+ "monitoring_multi": {
+ "label": "الرصد/المراقبة"
+ },
+ "mooring": {
+ "label": "مربط سفن ومراكب بحرية",
+ "options": {
+ "commercial": "تجاري",
+ "no": "لا",
+ "private": "خاص",
+ "yes": "نعم"
+ }
+ },
+ "mtb/scale": {
+ "label": "صعوبة قيادة الدراجة على الجبل",
+ "options": {
+ "0": "0: أسفلت/تربة مدكوكة, دون معوقات, منحنيات واسعة",
+ "1": "1: حصوات مبعثرة قليلا, معوقات صغيرة, منحنيات واسعة",
+ "2": "2: حصوات مبعثرة بكثرة, معوقات كبيرة, إلتفافات متكررة سهلة",
+ "3": "3: سطج زلق, معوقات كبيرة, إلتفافات متكررة ضيقة",
+ "4": "4: حصوات مبعثرة أو صخور, إلتفافات متكررة خطيرة",
+ "5": "5: صعوبة قصوى, حقول صخرية, إنزلاقات أرضية",
+ "6": "6: غير قابل للقيادة إلا من قِبل أفضل سائقي الدراجات الجبلية"
+ },
+ "placeholder": "0, 1, 2, 3...",
+ "terms": "صعوبة قيادة الدراجة على الجبل"
+ },
+ "mtb/scale/imba": {
+ "label": "صعوبة المسارات من الرابطة الدولية لدرجات الجبال IMBA",
+ "options": {
+ "0": "⚪ سهل جدا (دائرة بيضاء)",
+ "1": "🟢 سهل (دائرة خضراء)",
+ "2": "🟦 متوسط (مربع أزرق)",
+ "3": "◆ صعب (الماس الأسود)",
+ "4": "◆◆ صعب للغاية (الماس أسود المزدوج)"
+ },
+ "placeholder": "سهل، متوسط، صعب...",
+ "terms": "صعوبة المسارات من الرابطة الدولية لدرجات الجبال imba"
+ },
+ "mtb/scale/uphill": {
+ "label": "صعوبة صعود الجبل بالدراجة",
+ "options": {
+ "0": "0: معدل الإنحدار <10% ، أسفلت/تربة مدكوكة ، دون معوقات",
+ "1": "1: معدل الإنحدار <15% ، أسفلت/تربة مدكوكة ، مع وجود بعض المعوقات",
+ "2": "2: معدل الإنحدار <20% ، سطح ثابت ، صخور وجذور بحجم قبضة اليد",
+ "3": "3: معدل الإنحدار <25% ، سطح متغير ، صخور وفروع بحجم قبضة اليد",
+ "4": "4: معدل الإنحدار <30% ، حالة السطح سيئة ، صخور وفروع كبيرة",
+ "5": "5: حاد جدًا ، الدراجات في العموم تحتاج لدفعها أو حملها"
+ },
+ "placeholder": "0, 1, 2, 3...",
+ "terms": "صعوبة صعود الجبل بالدراجة"
+ },
+ "museum": {
+ "label": "النوع"
+ },
+ "name": {
+ "label": "الاسم",
+ "placeholder": "الاسم الشائع (إن وجد)",
+ "terms": "الاسم,المسمى"
+ },
+ "nat_name": {
+ "label": "الاسم الوطني",
+ "terms": "الاسم الوطني"
+ },
+ "natural": {
+ "label": "طبيعي"
+ },
+ "network": {
+ "label": "الشبكة",
+ "terms": "الشبكة"
+ },
+ "network/type": {
+ "label": "نوع الشبكة"
+ },
+ "network_bicycle": {
+ "label": "فئة الشبكة",
+ "options": {
+ "icn": "دولي / عالمي",
+ "lcn": "محلي",
+ "ncn": "وطنية",
+ "rcn": "إقليمي / محلي"
+ },
+ "placeholder": "محلية، إقليمية، وطنية، دولية"
+ },
+ "network_foot": {
+ "label": "فئة الشبكة",
+ "options": {
+ "iwn": "دولي / عالمي",
+ "lwn": "محلي",
+ "nwn": "وطنية",
+ "rwn": "إقليمي / محلي"
+ },
+ "placeholder": "محلية، إقليمية، وطنية، دولية"
+ },
+ "network_horse": {
+ "label": "فئة الشبكة",
+ "options": {
+ "ihn": "دولي / عالمي",
+ "lhn": "محلي",
+ "nhn": "وطنية",
+ "rhn": "إقليمي / محلي"
+ },
+ "placeholder": "محلية، إقليمية، وطنية، دولية"
+ },
+ "network_road": {
+ "label": "الشبكة"
+ },
+ "not/name": {
+ "label": "الأسماء غير الصحيحة",
+ "terms": "الأسماء غير الصحيحة"
+ },
+ "note": {
+ "label": "ملاحظة",
+ "terms": "ملاحظة"
+ },
+ "nudism": {
+ "label": "Nudism",
+ "options": {
+ "customary": "عرفي",
+ "designated": "مخصص/محدد",
+ "no": "محظور",
+ "obligatory": "إجباري",
+ "permissive": "مسموح من المالك",
+ "yes": "مسموح"
+ }
+ },
+ "office": {
+ "label": "النوع",
+ "options": {
+ "accountant": " مكتب محاسب",
+ "adoption_agency": "Adoption Agency",
+ "advertising_agency": "وكالة إعلانية",
+ "architect": " مكتب مهندس معماري",
+ "association": "مكتب منظمة غير ربحية",
+ "charity": "مكتب منظمة خيرية",
+ "company": "مكتب شركة / مؤسسة",
+ "consulting": "مكتب شركة استشارية",
+ "coworking": "مساحة عمل مشتركة",
+ "diplomatic": "مكتب دبلوماسي",
+ "educational_institution": "مكتب مؤسسة تعليمية ",
+ "employment_agency": "مكتب وكالة توظيف ",
+ "energy_supplier": "مكتب شركة مرافق الكهرباء",
+ "estate_agent": "مكتب عقاري",
+ "financial": "مكتب مالي",
+ "financial_advisor": "المستشار المالي",
+ "forestry": "مكتب إدارة الغابات",
+ "foundation": "مكتب مؤسسة",
+ "government": "مكتب/دائرة حكومية",
+ "guide": "مكتب الدليل السياحي",
+ "insurance": "مكتب تأمينات",
+ "it": "مكتب متخصصي تكنولوجيا المعلومات",
+ "lawyer": "مكتب قانوني ",
+ "moving_company": "مكتب شركة نقل",
+ "newspaper": "صحيفة",
+ "ngo": "مكتب المنظمات العامة الغير حكومية",
+ "notary": "مكتب كتابة عدل / موثق",
+ "physician": "طبيب",
+ "political_party": "مكتب الحزب السياسي",
+ "private_investigator": "مكتب محقق خاص",
+ "quango": "مكتب منظمة غير حكومية شبه مستقلة",
+ "religion": "مكتب ديني",
+ "research": "مكتب بحوث",
+ "security": "مكتب مؤسسات الحراسات الأمنية",
+ "surveyor": "مكتب مساح أرضي",
+ "tax_advisor": "مستشار الضرائب",
+ "telecommunication": "مكتب شركات اتصالات",
+ "therapist": "المعالج",
+ "travel_agent": "وكالة السفر",
+ "water_utility": "مكتب شركة مياه"
+ }
+ },
+ "official_name": {
+ "label": "الاسم الرسمي",
+ "terms": "الاسم الحكومي"
+ },
+ "oneway": {
+ "label": "هذا الطريق يسير باتجاه واحد",
+ "options": {
+ "alternating": "بالتناوب:يتغير اتجاهه بشكل متغير في اليوم الواحد",
+ "no": "لا",
+ "reversible": "قابل لتغيير الاتجاه حسب الزحام وبشكل منتظم",
+ "undefined": "يفترض أن يكون لا",
+ "yes": "نعم"
+ },
+ "terms": "اتجاه واحد,اتجاه سير واحد"
+ },
+ "oneway/bicycle": {
+ "label": "اتجاه واحد (للدراجات)",
+ "terms": "اتجاه واحد (للدراجات)"
+ },
+ "oneway_yes": {
+ "options": {
+ "alternating": "بالتناوب:يتغير اتجاهه بشكل متغير في اليوم الواحد",
+ "no": "لا",
+ "reversible": "قابل لتغيير الاتجاه حسب الزحام وبشكل منتظم",
+ "undefined": "يفترض أن يكون نعم",
+ "yes": "نعم"
+ }
+ },
+ "openfire": {
+ "label": "اشعال النار مسموح",
+ "terms": "اشعال النار مسموح،شب النار مسموح"
+ },
+ "opening_date": {
+ "label": "تاريخ الافتتاح المتوقع",
+ "placeholder": "YYYY-MM-DD"
+ },
+ "opening_hours": {
+ "label": "ساعات العمل",
+ "placeholder": "غير معروفة",
+ "terms": "ساعات العمل,ساعات الدوام"
+ },
+ "operator": {
+ "label": "المُشغل",
+ "terms": "المُشغل,المتعهد,الشركة المشغلة"
+ },
+ "operator/type": {
+ "label": "التشغيل يتم عبر"
+ },
+ "organic": {
+ "label": "منتجات عضوية",
+ "options": {
+ "no": "لا شيء",
+ "only": "فقط",
+ "yes": "بعض"
+ },
+ "terms": "منتجات عضوية"
+ },
+ "orientation/orientation_parking": {
+ "label": "الاتجاه"
+ },
+ "outdoor_seating": {
+ "label": "مقاعد في الهواء الطلق",
+ "terms": "مقاعد خارجية، مقاعد خارج البناء"
+ },
+ "par": {
+ "label": "بار",
+ "placeholder": "3، 4، 5 ..."
+ },
+ "parcel_dropoff": {
+ "label": "تسليم الطرود"
+ },
+ "parcel_pickup": {
+ "label": "استلام الطرود",
+ "options": {
+ "no": "لا",
+ "undefined": "يفترض أن يكون نعم",
+ "yes": "نعم"
+ }
+ },
+ "park_ride": {
+ "label": "اصطف واركب",
+ "terms": "اوقف واركب,اركن واركب"
+ },
+ "parking": {
+ "label": "النوع",
+ "options": {
+ "carports": {
+ "title": "مظلات سيارات"
+ },
+ "garage_boxes": {
+ "title": "صناديق المرآب"
+ },
+ "lane": {
+ "title": "على جانب الطريق"
+ },
+ "layby": {
+ "title": "جانب الطريق"
+ },
+ "multi-storey": {
+ "title": "متعدد الطوابق"
+ },
+ "rooftop": {
+ "title": "على سطح بناية"
+ },
+ "sheds": {
+ "title": "مظلله"
+ },
+ "shoulder": {
+ "title": "كتف الطريق"
+ },
+ "street_side": {
+ "title": "جانب الشارع"
+ },
+ "surface": {
+ "title": "السطح"
+ },
+ "underground": {
+ "title": "تحت الأرض"
+ }
+ }
+ },
+ "parking/side/orientation": {
+ "options": {
+ "parallel": "موازية للشارع"
+ },
+ "types": {
+ "parking:left:orientation": "جانب أيسر",
+ "parking:right:orientation": "جانب أيمن"
+ }
+ },
+ "parking/side/parking": {
+ "label": "موقف",
+ "options": {
+ "lane": "على جانب الطريق",
+ "no": "لا",
+ "shoulder": "كتف الطريق",
+ "street_side": "جانب الشارع",
+ "yes": "نعم (غير محدد)"
+ },
+ "types": {
+ "parking:left": "جانب أيسر",
+ "parking:right": "جانب أيمن"
+ }
+ },
+ "parking_entrance": {
+ "label": "النوع"
+ },
+ "parking_space": {
+ "label": "النوع"
+ },
+ "payment_multi": {
+ "label": "أنواع الدفع",
+ "options": {
+ "alipay": "خدمة Alipay",
+ "american_express": "بطاقة اميريكان اكسبرس",
+ "apple_pay": "أبل باي",
+ "bancomat": "ماكينة الصراف الآلي",
+ "cash": "نقدي",
+ "cheque": "التحقق",
+ "coins": "عملات معدنية",
+ "diners_club": "داينرز كلوب",
+ "dkv": "DKV",
+ "girocard": "جيروكارد",
+ "google_pay": "جوجل باي",
+ "jcb": "JCB",
+ "maestro": "مايسترو",
+ "mastercard": "بطاقة ماستركارد",
+ "uta": "UTA",
+ "v_pay": "V PAY",
+ "visa": "Visa",
+ "visa_debit": "Visa Debit",
+ "visa_electron": "Visa Electron"
+ },
+ "terms": "أنواع الدفع,أنواع الحساب"
+ },
+ "phases": {
+ "label": "المراحل/الفترات",
+ "placeholder": "1 ، 2 ، 3 ..."
+ },
+ "phone": {
+ "label": "هاتف",
+ "terms": "هاتف,تلفون"
+ },
+ "picnic_table": {
+ "label": "طاولة نزهة"
+ },
+ "pipeline": {
+ "label": "النوع"
+ },
+ "piste/difficulty": {
+ "label": "الصعوبة",
+ "options": {
+ "advanced": "متقدم",
+ "easy": "سهل",
+ "expert": "خبير",
+ "extreme": "أقصى صعوبة",
+ "freeride": "قيادة حُرة",
+ "intermediate": "متوسط",
+ "novice": "مبتدئ"
+ },
+ "placeholder": "سهل، متوسط، متقدم..."
+ },
+ "piste/difficulty_downhill": {
+ "options": {
+ "advanced": "متقدم (جوهرة سوداء)",
+ "easy": "سهل (دائرة خضراء)",
+ "expert": "خبير (جوهرتين سودائتين)",
+ "extreme": "خطير (معدات التسلق مطلوبة)",
+ "freeride": "تزلج حُر (خارج منطقة التزلج)",
+ "intermediate": "متوسط (مربع أزرق)",
+ "novice": "مبتدئ (تعليمي)"
+ },
+ "placeholder": "سهل، متوسط، متقدم..."
+ },
+ "piste/difficulty_nordic": {
+ "options": {
+ "advanced": "متقدم - ضيق، منحدر أو جزء جليدي، إنعطاف حاد",
+ "easy": "سهل - تلال ناعمة، منحدرات صغيرة",
+ "expert": "خبير - محاطة بتضاريس خطرة",
+ "intermediate": "متوسط - جزء منحدر",
+ "novice": "مبتدئ - مسطح، لا يحتاج لجهد"
+ },
+ "placeholder": "سهل، متوسط، متقدم..."
+ },
+ "piste/difficulty_skitour": {
+ "options": {
+ "advanced": "متقدم S:انحدار بدرجة 40-45",
+ "easy": "سهل - WS:انحدار بدرجة 30-35",
+ "expert": "خبير - SS:انحدار بدرجة 45-50",
+ "extreme": "شديد- EX:انحدار بدرجة أعلى من 55",
+ "freeride": "نزول حر - AS:انحدار بدرجة 50-55",
+ "intermediate": "متوسط- ZS:انحدار بدرجة 35-40",
+ "novice": "مبتدئ - L:انحدار بدرجة أقل من 30"
+ },
+ "placeholder": "سهل، متوسط، متقدم..."
+ },
+ "piste/grooming": {
+ "label": "تحضير مسار الزحلقة",
+ "options": {
+ "backcountry": "غير معتنى به",
+ "classic": "تقليدي",
+ "classic+skating": "كلاسيكي وللتزلج",
+ "mogul": "مهيئ للتزلج",
+ "scooter": "سكوتر / عربة ثلجية",
+ "skating": "تزلج"
+ }
+ },
+ "piste/grooming_downhill": {
+ "options": {
+ "backcountry": "غير محضر/معتنى به",
+ "classic": "تقليدي",
+ "mogul": "مهيئ للتزلج"
+ }
+ },
+ "piste/grooming_hike": {
+ "options": {
+ "backcountry": "غير محضر/معتنى به - لابد من وجود حذاء مخصص",
+ "classic": "كلاسيكي وللهايكنك الشتوي"
+ }
+ },
+ "piste/grooming_nordic": {
+ "options": {
+ "backcountry": "غير محضر/معتنى به",
+ "classic": "تقليدي",
+ "classic+skating": "كلاسيكي وللتزلج",
+ "scooter": "سكوتر / عربة ثلجية",
+ "skating": "تزلج"
+ }
+ },
+ "piste/type": {
+ "label": "النوع",
+ "options": {
+ "connection": "وصلة",
+ "downhill": "انحدار",
+ "hike": "رحلة مشيا على الاقدام",
+ "ice_skate": "تزلج على الجليد",
+ "nordic": "شمال أوروبا",
+ "playground": "ساحة لعب",
+ "skitour": "جولة تزلج",
+ "sled": "تزلج",
+ "sleigh": "مزلقة",
+ "snow_park": "حديقة الثلج"
+ }
+ },
+ "place": {
+ "label": "النوع"
+ },
+ "plant": {
+ "label": "مصنع"
+ },
+ "plant/method": {
+ "label": "طريقة التوليد"
+ },
+ "plant/output": {
+ "options": {
+ "cold_air": "هواء بارد",
+ "cold_water": "ماء بارد",
+ "compressed_air": "هواء مضغوط",
+ "electricity": "كهرباء",
+ "hot_air": "هواء ساخن",
+ "hot_water": "ماء ساخن",
+ "steam": "بخار",
+ "vacuum": "فراغ"
+ }
+ },
+ "plant/output/electricity": {
+ "placeholder": "500 ميجا وات، 1000 ميجا وات، 2000 ميجا وات..."
+ },
+ "plant/source": {
+ "label": "مصدر الطاقة"
+ },
+ "playground": {
+ "label": "النوع"
+ },
+ "playground/theme": {
+ "label": "النمط"
+ },
+ "plots": {
+ "label": "قطعة الأرض (المخططة)",
+ "placeholder": "10, 20, 30..."
+ },
+ "polling_station": {
+ "label": "Polling Place"
+ },
+ "population": {
+ "label": "عدد السكان"
+ },
+ "population/date": {
+ "placeholder": "YYYY-MM-DD"
+ },
+ "portable": {
+ "label": "محمول",
+ "terms": "محمول,متنقل"
+ },
+ "post": {
+ "label": "عنوان التوصيل/الاستلام"
+ },
+ "post_box/type": {
+ "label": "النوع",
+ "terms": "نوع,صنف,نمط"
+ },
+ "power": {
+ "label": "النوع"
+ },
+ "power_supply": {
+ "label": "مولد طاقة",
+ "terms": "مولد طاقة,مولد كهربائي"
+ },
+ "preschool": {
+ "label": "حضانة"
+ },
+ "produce": {
+ "label": "ينتج"
+ },
+ "product": {
+ "label": "المنتجات",
+ "terms": "المنتجات"
+ },
+ "public_bookcase/type": {
+ "label": "النوع"
+ },
+ "pump": {
+ "label": "مضخة",
+ "options": {
+ "manual": "مضخة يدوية",
+ "no": "لا شيء",
+ "powered": "مضخة آلية",
+ "yes": "نعم"
+ }
+ },
+ "railway": {
+ "label": "النوع"
+ },
+ "railway/position": {
+ "label": "علامة مسافات",
+ "placeholder": "المسافة إلى رقم عشري واحد (123.4)"
+ },
+ "railway/signal/direction": {
+ "label": "اتجاه علامة الطريق",
+ "options": {
+ "backward": "للخلف",
+ "both": "للاتجاهين",
+ "forward": "للأمام"
+ }
+ },
+ "ramp": {
+ "label": "منحدر متنقل",
+ "options": {
+ "no": "لا",
+ "yes": "نعم"
+ },
+ "terms": "منحدر متنقل,منصة متنقلة للنزول"
+ },
+ "rating": {
+ "label": "معدل الطاقة المولدة"
+ },
+ "rcn_ref": {
+ "label": "كود ركوب الدراجات"
+ },
+ "real_fire-GB-IE": {
+ "label": "حريق حقيقي",
+ "terms": "حريق حقيقي"
+ },
+ "recycling_accepts": {
+ "label": "المواد التي تقبلها المنشأة",
+ "options": {
+ "batteries": "بطاريات",
+ "cans": "علب",
+ "cardboard": "ورق مقوى",
+ "clothes": "ملابس",
+ "cooking_oil": "زيت طهي",
+ "engine_oil": "زيت محركات",
+ "glass": "أي زجاج (زجاج مقسّى/صلب ، نوافذ ، مرايا ، إلخ)",
+ "glass_bottles": "الزجاجات والجرار",
+ "green_waste": "نفايات خضراء",
+ "paper": "ورق",
+ "plastic": "بلاستيك",
+ "plastic_bottles": "عبوات بلاستيكية",
+ "plastic_packaging": "بلاستيك التغليف",
+ "scrap_metal": "خردة المعادن (سكراب)",
+ "shoes": "أحذية"
+ }
+ },
+ "recycling_type": {
+ "label": "النوع",
+ "options": {
+ "centre": "مركز",
+ "container": "حاوية"
+ },
+ "placeholder": "الحاوية ، المركز"
+ },
+ "ref": {
+ "label": "الرمز المرجعي",
+ "terms": "الرمز المرجعي,الرقم المرجعي"
+ },
+ "ref/isil": {
+ "label": "رمز ISIL"
+ },
+ "ref/vatin": {
+ "label": "VAT ID Number",
+ "terms": "vat id number"
+ },
+ "ref_aeroway_gate": {
+ "label": "رقم البوابة"
+ },
+ "ref_disc_golf_hole": {
+ "label": "رقم الثقب",
+ "placeholder": "1-18"
+ },
+ "ref_golf_hole": {
+ "label": "رقم الثقب",
+ "placeholder": "1-18"
+ },
+ "ref_highway_junction": {
+ "label": "رقم التقاطع"
+ },
+ "ref_platform": {
+ "label": "رقم المنصة/الرصيف"
+ },
+ "ref_road_number": {
+ "label": "رقم الطريق",
+ "terms": "رقم الطريق,رقم الشارع"
+ },
+ "ref_room_number": {
+ "label": "رقم الغرفة"
+ },
+ "ref_route": {
+ "label": "رقم المسار",
+ "terms": "رقم المسار"
+ },
+ "ref_runway": {
+ "label": "رقم المدرج",
+ "placeholder": "مثل 01L/19R"
+ },
+ "ref_sector": {
+ "label": "رقم المقطع"
+ },
+ "ref_stop_position": {
+ "label": "رقم الموقف"
+ },
+ "ref_taxiway": {
+ "label": "اسم طريق المناورة",
+ "placeholder": "مثل A5"
+ },
+ "reg_name": {
+ "label": "الاسم الإقليمي",
+ "terms": "الاسم الإقليمي,الاسم المناطقي"
+ },
+ "relation": {
+ "label": "النوع"
+ },
+ "religion": {
+ "label": "الديانة",
+ "options": {
+ "bahai": "Bahá’í",
+ "benzhu": "Benzhu",
+ "buddhist": "Buddhist",
+ "caodaism": "Caodaist",
+ "chinese_folk": "Chinese Folk Religion",
+ "christian": "Christian",
+ "confucian": "Confucian",
+ "hindu": "Hindu",
+ "jain": "Jain",
+ "jewish": "Jewish",
+ "multifaith": "Multifaith",
+ "muslim": "الإسلام",
+ "none": "Nonreligious",
+ "pagan": "Pagan",
+ "shinto": "Shinto",
+ "sikh": "Sikh",
+ "spiritualist": "Spiritualist",
+ "taoist": "Taoist",
+ "tenrikyo": "Tenrikyo",
+ "unitarian_universalist": "Unitarian Universalist",
+ "vietnamese_folk": "Vietnamese Folk Religion",
+ "voodoo": "Voodoo"
+ },
+ "terms": "الديانة,الدين,الملة"
+ },
+ "reservation": {
+ "label": "الحجوزات",
+ "options": {
+ "no": "غير مسموحة",
+ "recommended": "موصى بها",
+ "required": "مطلوبة ولابد منها",
+ "yes": "مقبولة"
+ },
+ "terms": "الحجوزات,الحجز"
+ },
+ "residential": {
+ "label": "النوع"
+ },
+ "resort": {
+ "label": "النوع"
+ },
+ "resource": {
+ "label": "المصادر",
+ "options": {
+ "aggregate": "تجميع",
+ "clay": "الطين",
+ "coal": "فحم",
+ "gold": "ذهبي",
+ "gravel": "حصباء/حصى",
+ "limestone": "حجر الكلس (الجيري)",
+ "sand": "رمال/نفود"
+ }
+ },
+ "restriction": {
+ "label": "النوع"
+ },
+ "restrictions": {
+ "label": "قيود الإنعطاف"
+ },
+ "roller_coaster/track": {
+ "label": "النوع",
+ "options": {
+ "waiting": {
+ "title": "انتظار"
+ }
+ }
+ },
+ "roof/colour": {
+ "label": "لون السقف",
+ "terms": "لون السقف,لون الغما"
+ },
+ "roof/shape": {
+ "options": {
+ "dome": "قبة"
+ }
+ },
+ "room": {
+ "label": "النوع"
+ },
+ "rooms": {
+ "label": "الغرف"
+ },
+ "roundtrip": {
+ "label": "بشكل حلقة/دائري",
+ "terms": "بشكل حلقة,بشكل دائري,يذهب ويعود لنفس المكان,له نفس البداية والنهاية"
+ },
+ "route": {
+ "label": "النوع"
+ },
+ "route_master": {
+ "label": "النوع"
+ },
+ "royal_cypher-GB": {
+ "options": {
+ "no": "لا"
+ }
+ },
+ "ruins": {
+ "label": "النوع"
+ },
+ "rwn_ref": {
+ "label": "الرقم المرجعي لمسار المشي"
+ },
+ "sac_scale": {
+ "label": "صعوبة المشي على الأقدام (الهايكنق)",
+ "options": {
+ "alpine_hiking": "T4: مشي جبال الألب",
+ "demanding_alpine_hiking": "T5: يتطلب مشي جبال الألب",
+ "demanding_mountain_hiking": "T3: يتطلب المشي في الجبال",
+ "difficult_alpine_hiking": "T6: مشي جبال الألب صعب",
+ "hiking": "T1: المشي لمسافات طويلة",
+ "mountain_hiking": "T2: المشي لمسافات طويلة في الجبال"
+ },
+ "placeholder": "المشي لمسافات طويلة في الجبال ، مشي جبال الألب ...",
+ "terms": "صعوبة المشي على الأقدام (الهايكنق)"
+ },
+ "salt": {
+ "label": "ملح",
+ "terms": "ملحية,مياة مالحة"
+ },
+ "sample_collection": {
+ "label": "عينات"
+ },
+ "sanitary_dump_station": {
+ "label": "محطة تصريف خزانات مراحيض السيارات",
+ "terms": "محطة تصريف خزانات مراحيض السيارات,تصريف خزانات مراحيض متنقلة"
+ },
+ "screen": {
+ "label": "الشاشات",
+ "placeholder": "1, 4, 8…"
+ },
+ "scuba_diving": {
+ "label": "خدمات"
+ },
+ "seamark/beacon_isolated_danger/shape": {
+ "label": "شكل"
+ },
+ "seamark/beacon_lateral/category": {
+ "label": "التصنيف",
+ "options": {
+ "danger_left": "خطر على اليسار",
+ "danger_right": "خطر على اليمين",
+ "port": "منفذ",
+ "starboard": "ميمنة",
+ "waterway_left": "المجرى المائي اليسار",
+ "waterway_right": "المجرى المائي اليمين"
+ }
+ },
+ "seamark/beacon_lateral/colour": {
+ "label": "اللون",
+ "options": {
+ "green": "أخضر",
+ "grey": "رمادي",
+ "red": "أحمر"
+ }
+ },
+ "seamark/beacon_lateral/shape": {
+ "label": "شكل"
+ },
+ "seamark/beacon_lateral/system": {
+ "label": "النظام",
+ "options": {
+ "cevni": "CEVNI",
+ "iala-a": "IALA A",
+ "iala-b": "IALA B",
+ "other": "آخر"
+ }
+ },
+ "seamark/buoy_lateral/category": {
+ "label": "التصنيف",
+ "options": {
+ "channel_left": "قناة باليسار",
+ "channel_right": "قناة باليمين",
+ "danger_left": "خطر على اليسار",
+ "danger_right": "خطر على اليمين",
+ "port": "منفذ",
+ "preferred_channel_port": "منفذ القناة المفضل",
+ "preferred_channel_starboard": "قناة الميمنة المفضلة",
+ "starboard": "ميمنة",
+ "waterway_left": "المجرى المائي اليسار",
+ "waterway_right": "المجرى المائي اليمين"
+ }
+ },
+ "seamark/buoy_lateral/colour": {
+ "label": "اللون",
+ "options": {
+ "green": "أخضر",
+ "green;red;green": "أخضر-أحمر-أخضر",
+ "green;white;green;white": "أخضر-أبيض-أخضر-أبيض",
+ "red": "أحمر",
+ "red;green;red": "أحمر-أخضر-أحمر",
+ "red;white;red;white": "أحمر-أبيض-أحمر-أبيض",
+ "white": "أبيض",
+ "yellow": "أصفر"
+ }
+ },
+ "seamark/buoy_lateral/shape": {
+ "label": "شكل"
+ },
+ "seamark/buoy_lateral/system": {
+ "label": "النظام",
+ "options": {
+ "cevni": "CEVNI",
+ "iala-a": "IALA A",
+ "iala-b": "IALA B",
+ "other": "آخر"
+ }
+ },
+ "seamark/harbour/category_marina": {
+ "options": {
+ "marina": "نعم",
+ "marina_no_facilities": "لا"
+ }
+ },
+ "seamark/mooring/category": {
+ "label": "التصنيف"
+ },
+ "seamark/rescue_station/category": {
+ "label": "معدات إنقاذ الحياة",
+ "options": {
+ "aircraft": "الطائرات",
+ "first_aid": "إسعافات أولية",
+ "hovercraft": "الحوامات",
+ "lifeboat": "قارب النجاة (على الأرض)",
+ "lifeboat_on_mooring": "قارب النجاة (في مرسى)",
+ "radio": "محطة إذاعية",
+ "refuge_intertidal": "ملجأ المد والجزر",
+ "refuge_shipwrecked": "ملجأ حطام السفينة",
+ "seaplane": "طائرة مائية",
+ "tug": "ساحبة الإنقاذ"
+ }
+ },
+ "seamark/type": {
+ "label": "علامة بحرية",
+ "terms": "علامة بحرية,علامة البحر,علامة ملاحية بحرية"
+ },
+ "seamark/wreck/category": {
+ "label": "التصنيف"
+ },
+ "seasonal": {
+ "label": "موسمي"
+ },
+ "seats": {
+ "label": "المقاعد",
+ "placeholder": "2, 4, 6..."
+ },
+ "second_hand": {
+ "label": "بيع المستعمل",
+ "options": {
+ "no": "لا",
+ "only": "فقط",
+ "yes": "نعم"
+ },
+ "placeholder": "نعم، لا، فقط",
+ "terms": "بيع المستعمل,حراج مستعمل,بضائع مستعملة،سلع مستعملة"
+ },
+ "segregated": {
+ "label": "الفصل بين المشاة والدراجات"
+ },
+ "self_service": {
+ "label": "خدمة ذاتية"
+ },
+ "service": {
+ "label": "النوع",
+ "options": {
+ "alley": "زقاق / ممر",
+ "drive-through": "ممر الطلب بالسيارة",
+ "driveway": "طريق مؤدي لمسكن",
+ "emergency_access": "ممر/طريق طوارئ",
+ "parking_aisle": "طريق داخل مواقف السيارات"
+ }
+ },
+ "service/bicycle": {
+ "label": "خدمات الدراجات",
+ "terms": "خدمات الدراجات"
+ },
+ "service/vehicle": {
+ "label": "خدمات"
+ },
+ "service_rail": {
+ "label": "نوع الخدمة",
+ "options": {
+ "crossover": "عبور",
+ "siding": "انحياز",
+ "spur": "وصلة قطارات شحن",
+ "yard": "فناء"
+ },
+ "terms": "نوع الخدمة"
+ },
+ "service_times": {
+ "label": "أوقات الخدمة"
+ },
+ "shelter": {
+ "label": "مأوى/عشة"
+ },
+ "shelter_type": {
+ "label": "النوع"
+ },
+ "shoes": {
+ "label": "أحذية"
+ },
+ "shop": {
+ "label": "النوع"
+ },
+ "short_name": {
+ "label": "الاسم المختصر",
+ "terms": "الاسم المختصر"
+ },
+ "shower": {
+ "label": "استحمام",
+ "terms": "استحمام,دش,مسحاح,مشن,مروش"
+ },
+ "siren/purpose": {
+ "label": "الغرض من نقطة الاستطلاع"
+ },
+ "siren/type": {
+ "label": "النوع",
+ "options": {
+ "electronic": "إلكتروني",
+ "other": "آخر",
+ "pneumatic": "هوائي"
+ }
+ },
+ "site": {
+ "label": "النوع"
+ },
+ "smoking": {
+ "label": "التدخين",
+ "options": {
+ "dedicated": "مخصصة للمدخنين (مثلا: نادي للمدخنين)",
+ "isolated": "في مناطق التدخين، معزولة ماديا",
+ "no": "ممنوع التدخين في أي مكان",
+ "outside": "مسموح به في الخارج",
+ "separated": "في مناطق التدخين، غير معزولة ماديا",
+ "yes": "مسموح به في كل مكان"
+ },
+ "placeholder": "لا ، منفصل ، نعم ...",
+ "terms": "دخان,تدخين,تتن,مدخنين,متتن"
+ },
+ "smoothness": {
+ "label": "درجة الوعورة/النعومة",
+ "options": {
+ "bad": "لذوات العجلات المتينة مثل: دراجات الرحلات، والسيارات ، وعربات التوكتوك",
+ "excellent": "لذوات العجلات الرقيقة مثل: أحذية التزحلق ، ألواح التزحلق",
+ "good": "لذوات العجلات النحيلة مثل: دراجة السباق",
+ "horrible": "للمناطق الوعرة مثل: مركبات الطرق الوعرة والمعدات الثقيلة",
+ "impassable": "للمناطق الوعرة التي لا يمكن اجتيازها/غير سالكة / لا تعبرها المركبات",
+ "intermediate": "دراجة المدينة ، الكرسي المتحرك للمعاقين ، السكوتر",
+ "very_bad": "للمركبات المرتفعة :والمركبات التي تعبر الطرق الوعرة",
+ "very_horrible": "للمركبات والمعدات المخصصة للطرق الوعرة مثل: الجرار ،ATV (الدبابات الرباعية العجلات)"
+ },
+ "placeholder": "للعجلات العادية، للعجلات النحيلة، للطرق وعرة ...",
+ "terms": "النعومة,الوعورة,نعومة الطريق,وعورة الطريق,جاهزية الطريق,سلامة سطح الطريق"
+ },
+ "sms": {
+ "label": "للرسائل نصية",
+ "terms": "رسائل نصية,sms,رسالة جوال"
+ },
+ "social_facility": {
+ "label": "النوع",
+ "options": {
+ "ambulatory_care": "الرعاية الإسعافية",
+ "assisted_living": "شارع معيشة بين المساكن",
+ "food_bank": "بنك الطعام",
+ "group_home": "دار جماعية",
+ "nursing_home": "دار التمريض",
+ "outreach": "التوعية",
+ "shelter": "مأوى/عشة"
+ }
+ },
+ "social_facility_for": {
+ "label": "نوع الجمهور (الناس) المستهدفين",
+ "options": {
+ "child": "الأطفال",
+ "drug_addicted": "مدمنوا المخدرات",
+ "homeless": "المشردين",
+ "juvenile": "الاحداث",
+ "migrant": "المهاجرين",
+ "orphan": "الأيتام",
+ "senior": "دار المسنين",
+ "veteran": "Veterans",
+ "woman": "نساء"
+ }
+ },
+ "source": {
+ "label": "المصادر",
+ "options": {
+ "aerial imagery": "من الصور الجوية",
+ "gps": "GPS",
+ "local knowledge": "المعرفة المحلية",
+ "osm notes": "ملاحظات خارطة الشارع المفتوحة",
+ "streetlevel imagery": "صور على مستوى الشارع",
+ "survey": "استقصاء/استبيان/مسح ميداني"
+ }
+ },
+ "species": {
+ "label": "الصنف",
+ "placeholder": "Acer platanoides, Quercus robur, …",
+ "terms": "النوع,الفصيلة"
+ },
+ "species/wikidata": {
+ "label": "أنواع ويكي بيانات",
+ "terms": "أنواع ويكي بيانات"
+ },
+ "sport": {
+ "label": "الرياضات",
+ "options": {
+ "american_football": "كرة القدم الأمريكية",
+ "baseball": "كرة القاعدة",
+ "basketball": "كرة السلة",
+ "beachvolleyball": "ملعب كرة الطائرة الشاطئية",
+ "bmx": "BMX",
+ "chess": "شطرنج",
+ "climbing": "التسلق",
+ "cricket": "كريكت",
+ "curling": "كيرلنغ",
+ "cycling": "ركوب الدراجات",
+ "darts": "رمي الاسهم المريشة",
+ "dog_racing": "سباق الكلاب",
+ "gaelic_games": "ألعاب الغيلية",
+ "golf": "غولف",
+ "gymnastics": "الجمباز",
+ "horse_racing": "سباق خيول",
+ "ice_hockey": "الهوكى الجليدى",
+ "ice_skating": "التزحلق على الجليد",
+ "ice_stock": "مخزون الجليد",
+ "karting": "سباق الكارت",
+ "motocross": "سباق الدرجات النارية الوعر",
+ "pelota": "كرة الباسك",
+ "rugby_union": "اتحاد الرغبي",
+ "running": "جري",
+ "scuba_diving": "رياضة الغطس",
+ "shooting": "الرماية",
+ "skateboard": "لوح التزلج",
+ "skiing": "التزحلق",
+ "soccer": "كرة قدم",
+ "speedway": "طريق سريع للدراجات النارية",
+ "swimming": "سباحة",
+ "tennis": "التنس",
+ "volleyball": "كرة طائرة"
+ }
+ },
+ "sport/sport_ice": {
+ "label": "الرياضات"
+ },
+ "sport/sport_pub": {
+ "label": "الرياضات",
+ "terms": "رياضات"
+ },
+ "sport/sport_racing_motor": {
+ "label": "الرياضات"
+ },
+ "sport/sport_racing_nonmotor": {
+ "label": "الرياضات"
+ },
+ "stars": {
+ "label": "نجوم",
+ "terms": "نجوم"
+ },
+ "start_date": {
+ "label": "تاريخ البدء",
+ "placeholder": "YYYY-MM-DD",
+ "terms": "تاريخ البدء,تاريخ الانطلاق"
+ },
+ "step_count": {
+ "label": "عدد الخطوات",
+ "terms": "عدد الخطوات"
+ },
+ "stile": {
+ "label": "النوع"
+ },
+ "stop": {
+ "label": "نوع التوقف",
+ "options": {
+ "all": "كل الطرق",
+ "minor": "طريق فرعي"
+ }
+ },
+ "street_cabinet": {
+ "label": "النوع",
+ "terms": "نوع,صنف,نمط"
+ },
+ "stroller": {
+ "label": "السماح بدخول عربيات الأطفال",
+ "options": {
+ "limited": "محدودة",
+ "no": "لا",
+ "yes": "نعم"
+ },
+ "terms": "السماح بدخول عربيات الأطفال"
+ },
+ "structure": {
+ "label": "بنية",
+ "options": {
+ "bridge": "جسر",
+ "cutting": "تضاريس مقطوعة ومحفورة ليعبرها ويشقها طريق ما",
+ "embankment": "سطح مرفوع يسير عليه الطريق (قد تكون مردومة)",
+ "ford": "مخاضة -طريق يشق مجرى مائي",
+ "tunnel": "نفق"
+ },
+ "placeholder": "غير معروفة",
+ "terms": "هيكلة,بنية,منظومة"
+ },
+ "structure_canal": {
+ "label": "بنية",
+ "options": {
+ "bridge": "جسر",
+ "tunnel": "نفق"
+ },
+ "placeholder": "غير معروفة"
+ },
+ "structure_power": {
+ "label": "بنية",
+ "options": {
+ "lattice": "شبكة فولاذية",
+ "solid": "صلب",
+ "tubular": "انبوبي"
+ }
+ },
+ "structure_waterway": {
+ "label": "بنية",
+ "options": {
+ "tunnel": "نفق"
+ },
+ "placeholder": "غير معروفة"
+ },
+ "studio": {
+ "label": "النوع"
+ },
+ "subject": {
+ "label": "الموضوع",
+ "terms": "الموضوع"
+ },
+ "subject/wikidata": {
+ "label": "موضوع ويكي بيانات",
+ "terms": "موضوع ويكي بيانات"
+ },
+ "substance": {
+ "label": "مادة",
+ "options": {
+ "fuel": "وقود",
+ "gas": "غاز طبيعي",
+ "hot_water": "ماء ساخن",
+ "sewage": "مياه المجاري",
+ "water": "مياه شرب"
+ }
+ },
+ "substation": {
+ "label": "النوع",
+ "options": {
+ "industrial": "صناعي"
+ }
+ },
+ "substation_pipeline": {
+ "label": "النوع",
+ "options": {
+ "compression": "ضغط",
+ "field_gathering": "ميدان تجمع",
+ "industrial": "صناعي",
+ "measurement": "قياس",
+ "transmission": "مسارات النقل",
+ "valve": "صمام",
+ "valve_group": "مجموعة صمامات"
+ }
+ },
+ "supervised": {
+ "label": "مُشرف عليه",
+ "terms": "يشرف عليها,مراقبة,يوجد شخص يديرها,خاضعة للإشراف"
+ },
+ "support": {
+ "label": "دعم",
+ "terms": "دعم,مساعدة,مساندة"
+ },
+ "surface": {
+ "label": "السطح",
+ "options": {
+ "artificial_turf": "عشب صناعي",
+ "asphalt": "أسفلت",
+ "clay": "الطين",
+ "compacted": "مضغوط",
+ "concrete": "خرسانه/اسمنت",
+ "dirt": "ترابية",
+ "grass": "عشب",
+ "gravel": "حصباء/حصى",
+ "ground": "أرضي",
+ "metal": "معدني",
+ "paved": "مرصوف/معبد",
+ "paving_stones": "مرصوف بالطوب",
+ "pebblestone": "بحص متنوع",
+ "salt": "ملح",
+ "sand": "رمال/نفود",
+ "tartan": "طرطان",
+ "unpaved": "غير مرصوف/معبد",
+ "wood": "خشبي",
+ "woodchips": "رقائق الخشب"
+ },
+ "terms": "السطح,سطح,أديم"
+ },
+ "surveillance": {
+ "label": "نوع المراقبة"
+ },
+ "surveillance/type": {
+ "label": "نوع المراقبة",
+ "options": {
+ "ALPR": "القارئ الآلي للوحات المركبات",
+ "camera": "آلة تصوير",
+ "guard": "حارس"
+ }
+ },
+ "surveillance/zone": {
+ "label": "منطقة مراقبة"
+ },
+ "survey/date": {
+ "label": "تاريخ آخر تحقق واستقصاء شخصي",
+ "terms": "تاريخ آخر تحقق واستقصاء شخصي,تاريخ آخر تحقق واستقصاء واقعي,تاريخ آخر تحقق واستقصاء موثق"
+ },
+ "survey_point/datum_aligned": {
+ "label": "تتماشى مع المسند الجيوديسي المحلي"
+ },
+ "survey_point/purpose": {
+ "label": "الغرض من نقطة الاستطلاع",
+ "options": {
+ "both": "كليهما",
+ "horizontal": "المحاذاة الأفقية",
+ "vertical": "المحاذاة العمودية"
+ }
+ },
+ "survey_point/structure": {
+ "label": "بنية",
+ "options": {
+ "beacon": "كبير مثبت بشكل رباعي",
+ "block": "صبة خرسانية",
+ "bracket": "حامل",
+ "cairn": "رِجم",
+ "cut": "خط مقصوص",
+ "indented_pin": "دبوس بمسافة بادئة",
+ "magnet": "مغناطيس",
+ "medallion": "ميدالية",
+ "pillar": "عمود",
+ "pin": "دبوس",
+ "plaque": "لوح جداري",
+ "pole": "عمود طويل"
+ }
+ },
+ "swimming_pool": {
+ "label": "النوع",
+ "options": {
+ "spa": "منتجع صحي"
+ }
+ },
+ "switch": {
+ "label": "النوع",
+ "options": {
+ "circuit_breaker": "قاطع دائرة كهربية",
+ "disconnector": "فاصل دائرة كهربية",
+ "earthing": "الأرضي",
+ "mechanical": "ميكانيكي"
+ }
+ },
+ "tactile_paving": {
+ "label": "الرصيف البارز (للمكفوفين)",
+ "terms": "الرصيف البارز (للمكفوفين),رصيف المكفوفين,طوب مخصص للمكفوفين,أرضية مشي المكفوفين,الرصيف البارز (للعميان)"
+ },
+ "takeaway": {
+ "label": "سفري/وجبات خارجية",
+ "options": {
+ "no": "لا",
+ "only": "لا يوجد أكل محلي فقط وجبات خارجية/سفري ",
+ "yes": "نعم"
+ },
+ "placeholder": "نعم ، لا ، فقط سفري/طلبات خارجية...",
+ "terms": "سفري,تيك أوي,طلبات خارجية,طلبات جاهزة"
+ },
+ "target": {
+ "label": "Target"
+ },
+ "taxi_vehicle": {
+ "options": {
+ "motorcar": {
+ "title": "سيارة"
+ },
+ "motorcycle": {
+ "title": "دراجة نارية"
+ }
+ }
+ },
+ "taxon": {
+ "label": "الأصنوفة",
+ "placeholder": "Acer platanoides Columnare, Pyrus calleryana Chanticleer …",
+ "terms": "التصنيف"
+ },
+ "tee": {
+ "label": "لون / نوع نقطة الإنطلاق"
+ },
+ "telecom": {
+ "label": "النوع",
+ "options": {
+ "connection_point": "وصلة",
+ "data_center": "مركز بيانات",
+ "service_device": "جهاز الخدمة"
+ }
+ },
+ "telecom/medium": {
+ "label": "وسيط"
+ },
+ "telescope/type": {
+ "label": "النوع"
+ },
+ "tidal": {
+ "label": "المد والجزر",
+ "terms": "مد وجزر"
+ },
+ "to": {
+ "label": "إلى"
+ },
+ "toilets": {
+ "label": "مراحيض",
+ "terms": "مراحيض,دورات مياة,حمامات"
+ },
+ "toilets/disposal": {
+ "label": "طريقة التصريف",
+ "options": {
+ "bucket": "حاوية تفرغ بشكل دوري",
+ "chemical": "حفرة معالجة بمواد كيميائية",
+ "flush": "شطف/سيفون/ماء متدفق",
+ "pitlatrine": "مرحاض ذو حفرة"
+ }
+ },
+ "toilets/handwashing": {
+ "label": "مغاسل يدين",
+ "terms": "مغاسل يدين,مغسلة,ميضأة"
+ },
+ "toilets/menstrual_products": {
+ "options": {
+ "no": "لا"
+ }
+ },
+ "toilets/position": {
+ "label": "أنواع المراحيض",
+ "terms": "المراحيض,وضعيات قضاء الحاجة"
+ },
+ "toilets/wheelchair": {
+ "label": "مرحاض يستقبل الكراسي المتحركة",
+ "options": {
+ "limited": "محدودة",
+ "no": "لا",
+ "yes": "نعم"
+ }
+ },
+ "toll": {
+ "label": "رسوم",
+ "terms": "رسوم"
+ },
+ "tomb": {
+ "label": "النوع",
+ "options": {
+ "columbarium": "أكشاك الجرار (كولومباريوم)",
+ "crypt": "سرداب",
+ "hypogeum": "هيبوجيوم",
+ "mausoleum": "Mausoleum",
+ "pyramid": "هرم",
+ "sarcophagus": "التابوت الحجري",
+ "table": "هضبة المرور",
+ "tumulus": "جثوة",
+ "vault": "خزنة/خزانات"
+ }
+ },
+ "tourism": {
+ "label": "النوع"
+ },
+ "tower/construction": {
+ "label": "تحت الإنشاء",
+ "placeholder": "مشدود ، مبني هيكلياً، مخفي ، ..."
+ },
+ "tower/platforms": {
+ "label": "منصات",
+ "placeholder": "1 ، 2 ، 3 ..."
+ },
+ "tower/type": {
+ "label": "النوع"
+ },
+ "townhall/type": {
+ "label": "النوع"
+ },
+ "tracktype": {
+ "label": "تصنيف المسار",
+ "options": {
+ "grade2": "مستوي في المعظم: وهو مسار عبر الحصى/صخور المختلطة مع بعض المواد اللينة",
+ "grade3": "مسار مختلط بين موارد صلبة ولينة",
+ "grade4": "لين في المعظم: مسار على تربة/رمال/عشب مختلطة مع بعض المواد الصلبة مثل الحصى",
+ "grade5": "لين: مسار يمر عبر التربة /الرمال /العشب ولا يوجد فيه حصى وصخور"
+ },
+ "placeholder": "مستوي، معظمه مستوي، لين..."
+ },
+ "trade": {
+ "label": "النوع"
+ },
+ "traffic_calming": {
+ "label": "النوع",
+ "options": {
+ "bump": "مطب قصير لتخفيف السرعة",
+ "chicane": "منعطفات صناعية لتخفيف السرعة",
+ "choker": "بروز هزاز للتنبية بتهدئة السرعة",
+ "cushion": "مطبات مركبات صغيرة",
+ "dip": "منخفض لتهدئة السرعة ويسمح بعبور المياة",
+ "hump": "مطب طويل لتخفيف السرعة",
+ "mini_bumps": "مطبات تخفيف سرعة صغيرة",
+ "rumble_strip": "مطبات قصيرة ومنخفضة متتالية على شكل شريط",
+ "table": "مطب مرتفع وطويل لتخفيف السرعة بشكل جبري"
+ }
+ },
+ "traffic_calming_road": {
+ "label": "تخفيف السرعة"
+ },
+ "traffic_sign": {
+ "label": "إشارات المرور"
+ },
+ "traffic_sign/direction": {
+ "label": "اتجاه علامة الطريق",
+ "options": {
+ "backward": "للخلف",
+ "both": "للاتجاهين",
+ "forward": "للأمام"
+ }
+ },
+ "traffic_signals": {
+ "label": "النوع"
+ },
+ "traffic_signals/arrow": {
+ "label": "سهم اللمس",
+ "terms": "سهم اللمس"
+ },
+ "traffic_signals/countdown": {
+ "label": "العداد التنازلي",
+ "terms": "العداد التنازلي"
+ },
+ "traffic_signals/direction": {
+ "label": "اتجاه علامة الطريق",
+ "options": {
+ "backward": "للخلف",
+ "both": "للاتجاهين",
+ "forward": "للأمام"
+ }
+ },
+ "traffic_signals/minimap": {
+ "label": "خريطة اللمس",
+ "terms": "خريطة اللمس"
+ },
+ "traffic_signals/sound": {
+ "label": "إشارات بالصوت",
+ "options": {
+ "locate": {
+ "description": "إشارات بالصوت",
+ "title": "محدد موقع زر الاتصال"
+ },
+ "no": "لا",
+ "walk": {
+ "description": "لا يوجد سوى إشارة عند السماح بالمشي",
+ "title": "مؤشر المشي"
+ },
+ "yes": "نعم"
+ }
+ },
+ "traffic_signals/vibration": {
+ "label": "اهتزاز"
+ },
+ "trail_visibility": {
+ "label": "مدى وضوح الدرب/المسار",
+ "options": {
+ "bad": "سيء: لا يوجد علامات إرشادية، المسار غير مرئي أو غير مطروق",
+ "excellent": "ممتاز: مسارات واضحة وعلامات إرشادية في كل مكان",
+ "good": "جيد: علامات واضحة ، قد تحتاج للبحث عن المسار في بعض الأحيان",
+ "horrible": "مخيف: بلا مسار/غير مطروق بالغالب، ولابد من توفر مهارات لاجتياز المسار",
+ "intermediate": "متوسط: علامات إرشادية قليلة: والمسار مرئي في الغالب",
+ "no": "غير واضح أبداً: بلا مسار وغير مطروق، ولابد من مهارات عالية وتوجيه لاجتياز المكان"
+ },
+ "placeholder": "ممتاز، جيد، سيء...",
+ "terms": "مدى وضوح الدرب,مدى وضوح المسار,مدى وضوح الطريق لغير السيارات والمركبات"
+ },
+ "transformer": {
+ "label": "النوع",
+ "options": {
+ "auxiliary": "مساعد: يغذي النظم الداخلية في المحطات الفرعية",
+ "converter": "محول: يغذي محولات الطاقة",
+ "distribution": "موزع : يغذي المستهلكين النهائيين ، ويتم تركيبه خارج المحطات الفرعية",
+ "generator": "مولد: يقوم بتصعيد الجهد في محطات توليد الكهرباء",
+ "main": "رئيسي: لإعادة إرسال الطاقة",
+ "phase_angle_regulator": "الداعم التربيعي",
+ "yes": "يؤدي دور غير معروف"
+ }
+ },
+ "trees": {
+ "label": "أشجار"
+ },
+ "trench": {
+ "label": "النوع"
+ },
+ "trolley_wire": {
+ "label": "كابلات/أسلاك ترولي علوية",
+ "terms": "كابلات/أسلاك ترولي علوية"
+ },
+ "tunnel": {
+ "label": "النوع",
+ "placeholder": "الافتراضي"
+ },
+ "tunnel_combo": {
+ "label": "النوع",
+ "options": {
+ "avalanche_protector": "حامي انهيار ثلجي",
+ "building_passage": "ممر داخل البناء",
+ "culvert": "بربخ"
+ }
+ },
+ "turning_circle": {
+ "label": "شكل"
+ },
+ "two_sided": {
+ "label": "ذو وجهين",
+ "options": {
+ "undefined": "لا",
+ "yes": "نعم"
+ }
+ },
+ "usage_rail": {
+ "label": "نوع الاستخدام",
+ "options": {
+ "branch": "اسم الفرع",
+ "industrial": "صناعي",
+ "main": "رئيسي",
+ "military": "عسكري",
+ "test": "تجريبي",
+ "tourism": "سياحي"
+ },
+ "terms": "نوع الإستخدام"
+ },
+ "usage_waterway": {
+ "label": "نوع الاستخدام",
+ "options": {
+ "headrace": "إنتاج الكهرباء من انصباب الماء من الأنابيب",
+ "irrigation": "مجرى مخصص للري الزراعي",
+ "spillway": "مجرى الانسكاب",
+ "tailrace": "انتاج الكهرباء من مخرجات التوربينات",
+ "transmission": "مسارات النقل",
+ "transportation": "النقل"
+ }
+ },
+ "utility": {
+ "label": "المرفق",
+ "options": {
+ "gas": "غاز",
+ "oil": "نفط",
+ "power": "طاقة",
+ "telecom": "الاتصالات السلكية واللاسلكية",
+ "water": "مياه"
+ }
+ },
+ "utility_semi": {
+ "label": "المرافق"
+ },
+ "valve": {
+ "label": "النوع"
+ },
+ "vehicles": {
+ "label": "مركبات",
+ "options": {
+ "bus": "حافلة",
+ "ferry": "عبّارة (مركب بحري)",
+ "light_rail": "قطار خفيف",
+ "monorail": "سكة حديد أحادية",
+ "subway": "مترو الأنفاق",
+ "train": "قطار",
+ "tram": "ترام",
+ "trolleybus": "حافلات كهربائية (ترولي)"
+ }
+ },
+ "vending": {
+ "label": "أنواع البضائع",
+ "options": {
+ "bread": "خبز",
+ "cigarettes": "Cigarettes",
+ "coffee": "قهوة",
+ "condoms": "Condoms",
+ "drinks": "المشروبات",
+ "eggs": "بيض",
+ "electronics": "الالكترونيات",
+ "excrement_bags": "أكياس البراز",
+ "food": "أغذية",
+ "fuel": "وقود",
+ "ice_cream": "بوظة/آيسكريم",
+ "milk": "حليب",
+ "newspapers": "Newspapers",
+ "pizza": "بيتزا",
+ "sweets": "حلويات",
+ "water": "مياه شرب"
+ }
+ },
+ "vhf": {
+ "label": "رقم موجة VHF",
+ "terms": "رقم موجة vhf,رقم قناة vhf"
+ },
+ "via": {
+ "label": "عبر"
+ },
+ "video_calls": {
+ "label": "Video Calls",
+ "terms": "video calls"
+ },
+ "visibility": {
+ "label": "مجال الرؤية",
+ "options": {
+ "area": "يرى من 20 متر (65 قدم) وأكثر",
+ "house": "يرى من 5 أمتار (16 قدم) فما دون",
+ "street": "يرى من 5 إلى 20 متر (16 إلى 65 قدم)"
+ },
+ "terms": "الوضوح/مدى الرؤية"
+ },
+ "volcano/status": {
+ "label": "حالة البركان",
+ "options": {
+ "active": "نشط",
+ "dormant": "في سبات عميق",
+ "extinct": "خامد"
+ }
+ },
+ "volcano/type": {
+ "label": "نوع البركان",
+ "options": {
+ "scoria": "مخروطي (من جفاء البركان)",
+ "shield": "درعي (شكل درع)",
+ "stratovolcano": "طبقي"
+ }
+ },
+ "voltage": {
+ "label": "الجهد الكهربائي"
+ },
+ "voltage/primary": {
+ "label": "الجهد الكهربائي الأساسي",
+ "terms": "الجهد الكهربائي الأساسي,الفولت الكهربائي الأساسي،الجهد الكهربائي الرئيسي,الفولت الكهربائي الرئيسي"
+ },
+ "voltage/secondary": {
+ "label": "الجهد الكهربائي الثانوي",
+ "terms": "الجهد الكهربائي الثانوي,الفولت الكهربائي الثانوي"
+ },
+ "voltage/tertiary": {
+ "label": "الجهد الكهربائي العالي",
+ "terms": "الجهد الكهربائي العالي,الجهد العالي,الفولت العالي"
+ },
+ "wall": {
+ "label": "النوع"
+ },
+ "waste": {
+ "label": "نفايات",
+ "options": {
+ "cigarettes": "Cigarettes",
+ "trash": "سلة المهملات"
+ }
+ },
+ "water": {
+ "label": "النوع"
+ },
+ "water_point": {
+ "label": "نقطة تعبئة مياة شرب"
+ },
+ "water_source": {
+ "label": "مصدر المياه",
+ "options": {
+ "pond": "بركة ماء",
+ "river": "نهر / مجرى مائي واسع",
+ "stream": "مجرى مائي / شعيب",
+ "water_tank": "خزان ماء"
+ }
+ },
+ "water_tank/volume": {
+ "label": "السعة (لتر)",
+ "placeholder": "10000, 20000, 30000…",
+ "terms": "الحجم (لتر)"
+ },
+ "waterway": {
+ "label": "النوع"
+ },
+ "website": {
+ "label": "الموقع الإلكتروني",
+ "placeholder": "https://example.com",
+ "terms": "الموقع الإلكتروني,الصفحة الإلكترونية"
+ },
+ "website/menu": {
+ "placeholder": "https://example.com"
+ },
+ "wetland": {
+ "label": "النوع",
+ "options": {
+ "bog": "رخاخ",
+ "fen": "مستنقع أعشاب مغذى من المياه الجوفية",
+ "mangrove": "غابات المانغروف",
+ "marsh": "هور/ سبخة",
+ "reedbed": "مقصبة",
+ "saltmarsh": "مستنقع الملح الساحلي",
+ "string_bog": "سلسلة رخاخ",
+ "swamp": "مستنقع",
+ "tidalflat": "المد و الجزر منبسط",
+ "wet_meadow": "مرعى/مرج رطب طوال العام"
+ }
+ },
+ "wheelchair": {
+ "label": "إمكانية دخول/وصول كراسي المعاقين",
+ "options": {
+ "limited": "محدودة",
+ "no": "لا",
+ "yes": "نعم"
+ },
+ "terms": "إمكانية دخول كراسي المعاقين,إمكانية وصول كراسي المعاقين,إمكانية دخول كراسي ذوي الإحتياجات الخاصة,إمكانية وصول ذوي الإحتياجات الخاصة"
+ },
+ "wholesale": {
+ "label": "بيع بالجملة"
+ },
+ "width": {
+ "label": "العرض (بالمتر)",
+ "terms": "العرض (بالمتر)"
+ },
+ "wikidata": {
+ "label": "معرف ويكي بيانات",
+ "terms": "معرف ويكي بيانات,رقم ويكي بيانات"
+ },
+ "wikimedia_commons": {
+ "label": "صفحة ويكيميديا كومنز",
+ "placeholder": "File:Example.jpg",
+ "terms": "صفحة ويكيميديا كومنز"
+ },
+ "wikipedia": {
+ "label": "ويكيبيديا",
+ "terms": "ويكيبيديا"
+ },
+ "windings": {
+ "label": "عدد لفات الملف الكهرومغناطيسي/الوشيعة",
+ "placeholder": "1 ، 2 ، 3 ...",
+ "terms": "الملف الكهرومغناطيسي,الوشيعة"
+ },
+ "windings/auto": {
+ "label": "محول ذاتي",
+ "options": {
+ "no": "لا",
+ "undefined": "يفترض أن يكون لا",
+ "yes": "نعم"
+ },
+ "terms": "محول ذاتي"
+ },
+ "windings/configuration": {
+ "label": "شكل الملف الكهرومغناطيسي/الوشيعة",
+ "options": {
+ "delta": "دلتا",
+ "leblanc": "لوبلان",
+ "open": "مفتوحة",
+ "open-delta": "دلتا مفتوحة",
+ "scott": "سكوت",
+ "star": "ستار / واي",
+ "zigzag": "زيق زاق"
+ },
+ "terms": "الملف الكهرومغناطيسي,الوشيعة"
+ }
+ },
+ "presets": {
+ "addr/interpolation": {
+ "name": "عنوان الاستيفاء"
+ },
+ "address": {
+ "name": "العنوان",
+ "terms": "عنوان,العنوان,الموقع"
+ },
+ "advertising/billboard": {
+ "name": "لوحة إعلانات كبيرة ومرفوعة (على الشارع)",
+ "terms": "لوحة إعلانات شوارع,لوحة إعلانات كبيرة,لوحة إعلانات الطريق,لوحة إعلانات مثبته بعامود كبير"
+ },
+ "advertising/board": {
+ "name": "لوحة الإعلانات والملصقات",
+ "terms": "لوحة إعلانات وملصقات,لوحة إعلانات متعددة,لوحة إعلانات معلقة بدبابيس"
+ },
+ "advertising/column": {
+ "name": "عمود إعلاني",
+ "terms": "عمود دعائي,أعمدة موريس,أعمدة أسطوانية للدعايات والإعلانات"
+ },
+ "advertising/poster_box": {
+ "name": "لوحة دعايات في إطار",
+ "terms": "دعايات في إطار,دعايات في صندوق مربع,دعايات شوارع على مستوى الانسان"
+ },
+ "advertising/totem": {
+ "name": "لوحة إعلان مستطيلة عمودية",
+ "terms": "لوحة إعلان مستطيلة عمودية,لوحة إعلان بشكل طوطم,لوحة دعايات مستطيلة عمودية"
+ },
+ "aerialway": {
+ "name": "عناصر التنقل الجوي بالكابلات"
+ },
+ "aerialway/cable_car": {
+ "name": "القاطرة المعلقة (تلفريك)",
+ "terms": "تلفريك، معبر هوائي، مصعد هوائي,القاطرة المعلقة,التيليفيريك"
+ },
+ "aerialway/chair_lift": {
+ "name": "مصعد تزلج",
+ "terms": "مصعد تزلج، تلسياج"
+ },
+ "aerialway/drag_lift": {
+ "name": "خط سحب المتزلجين",
+ "terms": "خط سحب المتزلجين"
+ },
+ "aerialway/gondola": {
+ "name": "جندول",
+ "terms": "جندول,تيلفريك يدور بشكل دائري"
+ },
+ "aerialway/goods": {
+ "name": "نقل البضائع بالكابلات",
+ "terms": "نقل البضائع بالكابلات,نقل البضائع بالتيلفريك"
+ },
+ "aerialway/j-bar": {
+ "name": "خط سحب نوع جَي",
+ "terms": "خط سحب نوع جَي"
+ },
+ "aerialway/magic_carpet": {
+ "name": "خط سحب للأطفال",
+ "terms": "خط سحب للأطفال"
+ },
+ "aerialway/mixed_lift": {
+ "name": "خط سحب مختلط",
+ "terms": "خط سحب مختلط"
+ },
+ "aerialway/platter": {
+ "name": "خط سحب بشكل طبق",
+ "terms": "خط سحب بشكل طبق"
+ },
+ "aerialway/pylon": {
+ "name": "برج التلفريك / المصعد التزلج",
+ "terms": "برج التلفريك ; المصعد التزلج"
+ },
+ "aerialway/rope_tow": {
+ "name": "حبل سحب الرافعة",
+ "terms": "حبل سحب الرافعة"
+ },
+ "aerialway/t-bar": {
+ "name": "خط سحب بشكل تي",
+ "terms": "خط سحب بشكل تي"
+ },
+ "aerialway/zip_line": {
+ "name": "كابل التنقل المنزلق",
+ "terms": "كابل التنقل"
+ },
+ "aeroway": {
+ "name": "عناصر التنقل الجوي"
+ },
+ "aeroway/aerodrome": {
+ "name": "مطار",
+ "terms": "مطار"
+ },
+ "aeroway/apron": {
+ "name": "مواقف الطائرات",
+ "terms": "مواقف الطائرات,مرابض الطائرات"
+ },
+ "aeroway/gate": {
+ "name": "بوابة مطار",
+ "terms": "بوابة مطار"
+ },
+ "aeroway/hangar": {
+ "name": "حظيرة طائرات",
+ "terms": "حظائر الطائرات,حظيرة الطائرات"
+ },
+ "aeroway/helipad": {
+ "name": "مهبط الهليكوبتر",
+ "terms": "مهبط للطائرات العمودية,مهبط الهليكوبتر"
+ },
+ "aeroway/holding_position": {
+ "name": "مواضع انتظار طائرات",
+ "terms": "مواضع انتظار طائرات,مواقف انتظار طائرات"
+ },
+ "aeroway/jet_bridge": {
+ "name": "جسر إركاب",
+ "terms": "جسر الطائرة,خرطوم الطائرة,جسر بين المبنى والطائرة"
+ },
+ "aeroway/parking_position": {
+ "name": "موضع وقوف الطائرات",
+ "terms": "موضع وقوف الطائرات"
+ },
+ "aeroway/runway": {
+ "name": "مدرج المطار",
+ "terms": "مدرج إقلاع وهبوط,مدرج المطار"
+ },
+ "aeroway/spaceport": {
+ "name": "ميناء فضائي",
+ "terms": "ميناء فضائي,مطار فضائي"
+ },
+ "aeroway/taxiway": {
+ "name": "طريق للمدرج",
+ "terms": "طريق للمدرج,طريق تدريج الطائرات"
+ },
+ "aeroway/terminal": {
+ "name": "صالة مطار",
+ "terms": "صالة مطار,محطة مطار"
+ },
+ "aeroway/windsock": {
+ "name": "كم الريح",
+ "terms": "كُم الريح"
+ },
+ "allotments/plot": {
+ "name": "قطعة حديقة تشاركية",
+ "terms": "قطعة حديقة تشاركية,قطعة حديقة مشتركة,قطعة حديقة اجتماعية,قطعة حديقة عائلية"
+ },
+ "amenity": {
+ "name": "مرفق"
+ },
+ "amenity/animal_boarding": {
+ "name": "منشأة رعاية حيوانات",
+ "terms": "منشأة رعاية حيوانات"
+ },
+ "amenity/animal_breeding": {
+ "name": "منشأة تربية وبيع حيوانات",
+ "terms": "منشأة تربية وبيع حيوانات"
+ },
+ "amenity/animal_shelter": {
+ "name": "مأوى حيوانات",
+ "terms": "مأوى حيوانات; ملجأ حيوانات"
+ },
+ "amenity/arts_centre": {
+ "name": "مركز فنون",
+ "terms": "مركز الفنون، معرض الفن، ساحة عرض، ملتقى فني"
+ },
+ "amenity/atm": {
+ "name": "ماكينة صرافة آلية",
+ "terms": "صراف آلي,ماكينة سحب,صرافة,مكينة صراف آلية"
+ },
+ "amenity/bank": {
+ "name": "بنك",
+ "terms": "بنك,مصرف"
+ },
+ "amenity/bar": {
+ "name": "حانة",
+ "terms": "بار,حانة,خمَّارَة,مَشْرَب"
+ },
+ "amenity/bar/lgbtq": {
+ "name": "LGBTQ+ Bar"
+ },
+ "amenity/bbq": {
+ "name": "مكان مخصص للشواء",
+ "terms": "شواء، باربيكيو"
+ },
+ "amenity/bench": {
+ "name": "مقعد",
+ "terms": "مقعد,مقعد طويل"
+ },
+ "amenity/bicycle_parking": {
+ "name": "موقف دراجات هوائية",
+ "terms": "موقف دراجات هوائية; موقف; دراجة; دراجات"
+ },
+ "amenity/bicycle_parking/building": {
+ "name": "مرآب وقوف دراجات",
+ "terms": "مرآب وقوف دراجات"
+ },
+ "amenity/bicycle_parking/lockers": {
+ "name": "خزائن الدراجات",
+ "terms": "خزائن الدراجات"
+ },
+ "amenity/bicycle_parking/shed": {
+ "name": "سقيفة/مظلة دراجات",
+ "terms": "سقيفة دراجات,مخزن دراجات"
+ },
+ "amenity/bicycle_rental": {
+ "name": "تأجير دراجات",
+ "terms": "تأجير دراجات هوائية; تأجير; دراجة; دراجات; هوائي; هوائية"
+ },
+ "amenity/bicycle_repair_station": {
+ "name": "ورشة إصلاح دراجات هوائية",
+ "terms": "دراجات هوائية; دراجة; اصلاح; تصليح دراجات; تصليح"
+ },
+ "amenity/biergarten": {
+ "name": "Biergarten"
+ },
+ "amenity/binoculars": {
+ "name": "مناظير مثبتة",
+ "terms": "مناظير مثبتة"
+ },
+ "amenity/boat_rental": {
+ "name": "محل استئجار قوارب",
+ "terms": "تأجير القوارب، ساحة الزوارق، تأجير زوارق"
+ },
+ "amenity/boat_storage": {
+ "name": "مخزن القوارب",
+ "terms": "مخزن القوارب,مستودع القوارب"
+ },
+ "amenity/bureau_de_change": {
+ "name": "تحويل أموال",
+ "terms": "تحويل أموال,صرافة"
+ },
+ "amenity/bus_station": {
+ "name": "محطة الحافلات / صالة"
+ },
+ "amenity/cafe": {
+ "name": "مقهى",
+ "terms": "مقهى"
+ },
+ "amenity/cafe/bubble_tea": {
+ "name": "مقهى شاي الفقاعات",
+ "terms": "مقهى شاي الفقاعات"
+ },
+ "amenity/cafe/coffee_shop": {
+ "name": "مقهى",
+ "terms": "مقهى قهوة مختصة,مقهى مفتوح"
+ },
+ "amenity/car_pooling": {
+ "name": "محطة تجميع السيارات",
+ "terms": "محطة تجميع السيارات"
+ },
+ "amenity/car_rental": {
+ "name": "محل إيجار سيارات",
+ "terms": "محل استئجار السيارات"
+ },
+ "amenity/car_sharing": {
+ "name": "محطة مشاركة السيارات",
+ "terms": "محطة مشاركة السيارات"
+ },
+ "amenity/car_wash": {
+ "name": "غسيل سيارات",
+ "terms": "غسيل السيارات"
+ },
+ "amenity/casino": {
+ "name": "Casino",
+ "terms": "كازينو"
+ },
+ "amenity/charging_station": {
+ "name": "محطة شحن",
+ "terms": "محطة شحن"
+ },
+ "amenity/childcare": {
+ "name": "رعاية الأطفال",
+ "terms": "رعاية الأطفال; حضانة"
+ },
+ "amenity/cinema": {
+ "name": "سينما",
+ "terms": "سينما,صالة سينما,دار السينما"
+ },
+ "amenity/clinic": {
+ "name": "عيادة طبية",
+ "terms": "عيادة; مستوصف"
+ },
+ "amenity/clinic/abortion": {
+ "name": "عيادة الإجهاض",
+ "terms": "عيادة الإجهاض"
+ },
+ "amenity/clinic/dialysis": {
+ "name": "غسيل كلى"
+ },
+ "amenity/clinic/fertility": {
+ "name": "عيادة الخصوبة",
+ "terms": "عيادة الخصوبة"
+ },
+ "amenity/clock": {
+ "name": "ساعة",
+ "terms": "ساعة"
+ },
+ "amenity/clock/sundial": {
+ "name": "مزولة",
+ "terms": "المزولة الشمسية"
+ },
+ "amenity/community_centre": {
+ "name": "مركز اجتماعي",
+ "terms": "مركز اجتماعي"
+ },
+ "amenity/community_centre/lgbtq": {
+ "name": "LGBTQ+ Community Center"
+ },
+ "amenity/community_centre/youth_centre": {
+ "name": "مركز الشباب",
+ "terms": "مركز الشباب,بيت الشباب"
+ },
+ "amenity/compressed_air": {
+ "name": "هواء مضغوط",
+ "terms": "بنشر دراجات"
+ },
+ "amenity/conference_centre": {
+ "name": "مركز مؤتمرات",
+ "terms": "مركز مؤتمرات"
+ },
+ "amenity/courthouse": {
+ "name": "محكمة",
+ "terms": "مجمع محاكم,دار عدل,دار قضاء"
+ },
+ "amenity/coworking_space": {
+ "name": "مساحة عمل مشتركة"
+ },
+ "amenity/crematorium": {
+ "name": "محرقة موتى",
+ "terms": "محرقة موتى,محرقة جثث الموتى"
+ },
+ "amenity/dentist": {
+ "name": "طبيب أسنان",
+ "terms": "طبيب أسنان"
+ },
+ "amenity/dive_centre": {
+ "name": "مركز للغوص",
+ "terms": "مركز للغوص"
+ },
+ "amenity/doctors": {
+ "name": "طبيب",
+ "terms": "طبيب"
+ },
+ "amenity/doctors/podiatry": {
+ "name": "طبيب الأقدام",
+ "terms": "طبيب الأقدام; الأرجل"
+ },
+ "amenity/dojo": {
+ "name": "دوجو / أكاديمية الفنون القتالية",
+ "terms": "دوجو,أكاديمية الفنون القتالية"
+ },
+ "amenity/dressing_room": {
+ "name": "غرفة التبديل",
+ "terms": "غرفة التبديل,غرفة تبديل اللاعبين"
+ },
+ "amenity/drinking_water": {
+ "name": "مياه شرب",
+ "terms": "ماء الشرب"
+ },
+ "amenity/driver_training": {
+ "name": "أراضي تعليم السيلقة"
+ },
+ "amenity/embassy": {
+ "name": "سفارة"
+ },
+ "amenity/events_venue": {
+ "name": "صالة مناسبات / قصر أفراح",
+ "terms": "صالة مناسبات,قصر أفراح"
+ },
+ "amenity/exhibition_centre": {
+ "name": "Exposition Center"
+ },
+ "amenity/fast_food": {
+ "name": "وجبات سريعة",
+ "terms": "مأكولات سريعة"
+ },
+ "amenity/fast_food/burger": {
+ "name": "برجر وجبة سريعة",
+ "terms": "إفطار,عشاء,طعام"
+ },
+ "amenity/fast_food/chicken": {
+ "name": "دجاج وجبة سريعة",
+ "terms": "إفطار,مقصف,عشاء,طعام"
+ },
+ "amenity/fast_food/donut": {
+ "name": "دونات وجبة سريعة",
+ "terms": "دونات"
+ },
+ "amenity/fast_food/fish_and_chips": {
+ "name": "سمك ورقائق بطاطس وجبة سريعة",
+ "terms": "إفطار,قهوة,عشاء,طعام"
+ },
+ "amenity/fast_food/hot_dog": {
+ "name": "هوت دوج وجبة سريعة",
+ "terms": "هوت دوج وجبة سريعة"
+ },
+ "amenity/fast_food/ice_cream": {
+ "name": "أيس كريم وجبة سريعة"
+ },
+ "amenity/fast_food/juice": {
+ "name": "عصير وجبة سريعة",
+ "terms": "عصير وجبة سريعة"
+ },
+ "amenity/fast_food/kebab": {
+ "name": "كباب وجبة سريعة",
+ "terms": "إفطار,مقصف,عشاء,طعام"
+ },
+ "amenity/fast_food/mexican": {
+ "name": "طعام مكسيكي وجبة سريعة",
+ "terms": "مكسيكي"
+ },
+ "amenity/fast_food/pizza": {
+ "name": "بيتزا وجبات سريعة",
+ "terms": "إفطار,مقصف,عشاء,طعام"
+ },
+ "amenity/fast_food/sandwich": {
+ "name": "شطيرة وجبات سريعة",
+ "terms": "إفطار,مقصف,عشاء,طعام"
+ },
+ "amenity/ferry_terminal": {
+ "name": "محطة / صالة العبارات"
+ },
+ "amenity/fire_station": {
+ "name": "محطة إطفاء حريق",
+ "terms": "محطة إطفاء"
+ },
+ "amenity/food_court": {
+ "name": "قاعة طعام",
+ "terms": "وجبات سريعة,مطعم,طعام"
+ },
+ "amenity/fountain": {
+ "name": "نافورة",
+ "terms": "نافورة"
+ },
+ "amenity/fuel": {
+ "name": "محطة وقود",
+ "terms": "محطة بترول,محطة غاز"
+ },
+ "amenity/gambling": {
+ "name": "Gambling Hall"
+ },
+ "amenity/give_box": {
+ "name": "صندوق مشاركة الأشياء المجانية",
+ "terms": "صندوق مشاركة الأشياء المجانية"
+ },
+ "amenity/grave_yard": {
+ "name": "مقبرة داخل الكنيسة",
+ "terms": "مقبرة,مدفن"
+ },
+ "amenity/grit_bin": {
+ "name": "صندوق حصى وملح",
+ "terms": "صندوق حصى وملح"
+ },
+ "amenity/hospital": {
+ "name": "أرض مستشفى",
+ "terms": "أرض مستشفى; مستشفى"
+ },
+ "amenity/hunting_stand": {
+ "name": "منصة صيد",
+ "terms": "منصة صيد,برج صيد"
+ },
+ "amenity/ice_cream": {
+ "name": "محل بيع المثلجات",
+ "terms": "مثلجات,ايس كريم"
+ },
+ "amenity/internet_cafe": {
+ "name": "مقهى إنترنت",
+ "terms": "مقهى إنترنت"
+ },
+ "amenity/karaoke_box": {
+ "name": "Karaoke Box"
+ },
+ "amenity/lavoir": {
+ "name": "مكان غسيل الملابس يدوياً",
+ "terms": "مكان غسيل الملابس يدوياً"
+ },
+ "amenity/letter_box": {
+ "name": "صندوق البريد",
+ "terms": "صندوق البريد"
+ },
+ "amenity/library": {
+ "name": "مكتبة عامة",
+ "terms": "مكتبة"
+ },
+ "amenity/loading_dock": {
+ "name": "رصيف التحميل",
+ "terms": "رصيف التحميل"
+ },
+ "amenity/lounger": {
+ "name": "Lounger"
+ },
+ "amenity/love_hotel": {
+ "name": "Love Hotel"
+ },
+ "amenity/marketplace": {
+ "name": "محل تسوق",
+ "terms": "سوق,سوق تجارية,ساحة السوق"
+ },
+ "amenity/monastery": {
+ "name": "Monastery Grounds"
+ },
+ "amenity/money_transfer": {
+ "name": "محل لتحويل الأموال",
+ "terms": "محل لتحويل الأموال"
+ },
+ "amenity/mortuary": {
+ "name": "المشرحة",
+ "terms": "المشرحة"
+ },
+ "amenity/motorcycle_parking": {
+ "name": "موقف دراجات نارية",
+ "terms": "دراجة نارية,دراجة بخارية; موقف; مواقف; ركن"
+ },
+ "amenity/motorcycle_rental": {
+ "name": "إيجار دراجات نارية",
+ "terms": "إيجار دراجات نارية"
+ },
+ "amenity/nightclub": {
+ "name": "ملهى ليلي",
+ "terms": "كباريه"
+ },
+ "amenity/nightclub/lgbtq": {
+ "name": "LGBTQ+ Nightclub"
+ },
+ "amenity/nursing_home": {
+ "name": "دار التمريض"
+ },
+ "amenity/parcel_locker": {
+ "name": "صناديق استلام الشحنات البريدية",
+ "terms": "صناديق استلام البريد"
+ },
+ "amenity/parking": {
+ "name": "مكان المواقف",
+ "terms": "مكان انتظار سيارات"
+ },
+ "amenity/parking/multi-storey": {
+ "name": "مرآب وقوف متعدد الطوابق",
+ "terms": "جراج,مرآب"
+ },
+ "amenity/parking/park_ride": {
+ "name": "مكان الاصطفاف والركوب",
+ "terms": "مكان الاصطفاف والركوب"
+ },
+ "amenity/parking/street-side": {
+ "name": "مواقف بجانب الشارع",
+ "terms": "مواقف بجانب الشارع"
+ },
+ "amenity/parking/underground": {
+ "name": "موقف تحت الأرض",
+ "terms": "جراج"
+ },
+ "amenity/parking_entrance": {
+ "name": "مدخل / مخرج مرآب السيارات",
+ "terms": "مدخل / مخرج موقف سيارات"
+ },
+ "amenity/parking_space": {
+ "name": "مساحة موقوف السيارات",
+ "terms": "موقف سيارات"
+ },
+ "amenity/parking_space/disabled": {
+ "name": "أماكن المواقف المتاحة",
+ "terms": "أماكن المواقف المتاحة,نوع أماكن المواقف المتاحة"
+ },
+ "amenity/payment_centre": {
+ "name": "مركز دفع نقود",
+ "terms": "مركز دفع نقود"
+ },
+ "amenity/payment_terminal": {
+ "name": "محطة دفع نقود",
+ "terms": "محطة دفع نقود"
+ },
+ "amenity/pharmacy": {
+ "name": "صيدلية",
+ "terms": "أدوات النظافة الشخصية والتجميل"
+ },
+ "amenity/photo_booth": {
+ "name": "Photo Booth"
+ },
+ "amenity/place_of_worship": {
+ "name": "مكان عبادة",
+ "terms": "محل عبادة"
+ },
+ "amenity/place_of_worship/buddhist": {
+ "name": "Buddhist Temple",
+ "terms": "معبد بوذي"
+ },
+ "amenity/place_of_worship/christian": {
+ "name": "كنيسية مسيحية"
+ },
+ "amenity/place_of_worship/christian/jehovahs_witness": {
+ "name": "Kingdom Hall of Jehovah's Witnesses"
+ },
+ "amenity/place_of_worship/christian/la_luz_del_mundo": {
+ "name": "La Luz del Mundo Temple"
+ },
+ "amenity/place_of_worship/christian/quaker": {
+ "name": "Quaker Friends Meeting House"
+ },
+ "amenity/place_of_worship/hindu": {
+ "name": "معبد هندوسي"
+ },
+ "amenity/place_of_worship/jewish": {
+ "name": "كنيس يهودي"
+ },
+ "amenity/place_of_worship/muslim": {
+ "name": "مسجد",
+ "terms": "مسجد,جامع,مصلى,صلاة,مسلم,مسلمين"
+ },
+ "amenity/place_of_worship/shinto": {
+ "name": "ضريح شنتو"
+ },
+ "amenity/place_of_worship/sikh": {
+ "name": "معبد السيخ"
+ },
+ "amenity/place_of_worship/taoist": {
+ "name": "معبد طاوي"
+ },
+ "amenity/planetarium": {
+ "name": "قبة فلكية",
+ "terms": "قبة فلكية، قبة سماوية، بلانتاريوم"
+ },
+ "amenity/police": {
+ "name": "شرطة",
+ "terms": "مركز الشرطة,الشرطة"
+ },
+ "amenity/polling_station": {
+ "name": "Permanent Polling Place"
+ },
+ "amenity/post_box": {
+ "name": "صندوق بريد عام",
+ "terms": "صندوق بريد عام"
+ },
+ "amenity/post_depot": {
+ "name": "مكتب الفرز البريدي",
+ "terms": "مكتب الفرز البريدي"
+ },
+ "amenity/post_office": {
+ "name": "مكتب البريد",
+ "terms": "دائرة البريد,مكتب البريد,مكتب بريد"
+ },
+ "amenity/prison": {
+ "name": "مرافق/أراضي سجن",
+ "terms": "مرافق/أراضي سجن"
+ },
+ "amenity/pub": {
+ "name": "Pub",
+ "terms": "مشرب,حانة,خمارة"
+ },
+ "amenity/pub/irish": {
+ "name": "Irish Pub"
+ },
+ "amenity/pub/lgbtq": {
+ "name": "LGBTQ+ Pub"
+ },
+ "amenity/pub/microbrewery": {
+ "name": "Brewpub"
+ },
+ "amenity/public_bath": {
+ "name": "دورة مياة عمومية",
+ "terms": "حمام عام,دورة مياة عمومية"
+ },
+ "amenity/public_bookcase": {
+ "name": "خزانة كتب عامة",
+ "terms": "رف كتب عامة"
+ },
+ "amenity/ranger_station": {
+ "name": "محطة الحراسة",
+ "terms": "محطة الحراسة"
+ },
+ "amenity/recycling": {
+ "name": "إعادة التدوير"
+ },
+ "amenity/recycling/container/electrical_items": {
+ "name": "حاوية نفايات إلكترونية",
+ "terms": "حاوية نفايات إلكترونية"
+ },
+ "amenity/recycling/container/green_waste": {
+ "name": "حاوية نفايات خضراء",
+ "terms": "حاوية نفايات خضراء"
+ },
+ "amenity/recycling_centre": {
+ "name": "مركز إعادة تدوير",
+ "terms": "مركز إعادة تدوير"
+ },
+ "amenity/refugee_site": {
+ "name": "مخيم لاجئين",
+ "terms": "مخيم لاجئين"
+ },
+ "amenity/research_institute": {
+ "name": "أراضي معهد بحوث",
+ "terms": "أراضي معهد بحوث، أرض معهد للبحث العلمي، أرض معهد الأبحاث العلمية، أرض بحث علمي"
+ },
+ "amenity/restaurant": {
+ "name": "مطعم",
+ "terms": "مطعم"
+ },
+ "amenity/restaurant/american": {
+ "name": "مطعم امريكي",
+ "terms": "مطعم امريكي"
+ },
+ "amenity/restaurant/asian": {
+ "name": "مطعم آسيوي",
+ "terms": "مطعم آسيوي"
+ },
+ "amenity/restaurant/chinese": {
+ "name": "مطعم صيني",
+ "terms": "مطعم صيني"
+ },
+ "amenity/restaurant/french": {
+ "name": "مطعم فرنسي",
+ "terms": "مطعم فرنسي"
+ },
+ "amenity/restaurant/german": {
+ "name": "مطعم ألماني",
+ "terms": "مطعم ألماني"
+ },
+ "amenity/restaurant/greek": {
+ "name": "مطعم يوناني",
+ "terms": "مطعم يوناني"
+ },
+ "amenity/restaurant/indian": {
+ "name": "مطعم هندي",
+ "terms": "مطعم هندي"
+ },
+ "amenity/restaurant/italian": {
+ "name": "مطعم إيطالي",
+ "terms": "مطعم إيطالي"
+ },
+ "amenity/restaurant/japanese": {
+ "name": "مطعم ياباني",
+ "terms": "مطعم ياباني"
+ },
+ "amenity/restaurant/mexican": {
+ "name": "مطعم مكسيكي",
+ "terms": "مطعم مكسيكي"
+ },
+ "amenity/restaurant/noodle": {
+ "name": "مطعم مكرونة",
+ "terms": "مطعم مكرونة"
+ },
+ "amenity/restaurant/pizza": {
+ "name": "مطعم بيتزا",
+ "terms": "مطعم بيتزا"
+ },
+ "amenity/restaurant/seafood": {
+ "name": "مطعم مأكولات بحرية",
+ "terms": "مطعم مأكولات بحرية"
+ },
+ "amenity/restaurant/steakhouse": {
+ "name": "مطعم شرائح اللحم",
+ "terms": "مطعم شرائح اللحم"
+ },
+ "amenity/restaurant/sushi": {
+ "name": "مطعم سوشي",
+ "terms": "مطعم سوشي"
+ },
+ "amenity/restaurant/thai": {
+ "name": "مطعم تايلاندي",
+ "terms": "مطعم تايلاندي"
+ },
+ "amenity/restaurant/turkish": {
+ "name": "مطعم تركي",
+ "terms": "مطعم تركي"
+ },
+ "amenity/restaurant/vietnamese": {
+ "name": "مطعم فيتنامي",
+ "terms": "مطعم فيتنامي"
+ },
+ "amenity/sanitary_dump_station": {
+ "name": "مكب صرف صحي للكرفانات",
+ "terms": "مكب دورات مياه الكرفانات"
+ },
+ "amenity/shelter": {
+ "name": "مأوى/عشة",
+ "terms": "مأوى,ملجأ,ملاذ,سقيفة,وقاء,عشة,صندقه"
+ },
+ "amenity/shelter/gazebo": {
+ "name": "شرفة أرضية",
+ "terms": "شرفة أرضية"
+ },
+ "amenity/shelter/lean_to": {
+ "name": "كوخ داخل مبنى",
+ "terms": "كوخ بثلاث جدارن,عجاف,كوخ منحدر السطح,كوخ له جنب منفتح,كوخ ضمن مبنى"
+ },
+ "amenity/shelter/picnic_shelter": {
+ "name": "يحمي من المطر",
+ "terms": "يحمي من المطر"
+ },
+ "amenity/shelter/public_transport": {
+ "name": "مأوى العبور",
+ "terms": "مأوى العبور"
+ },
+ "amenity/shower": {
+ "name": "دش وأدوات استحمام",
+ "terms": "دش استحمام"
+ },
+ "amenity/smoking_area": {
+ "name": "منطقة مخصصة للتدخين",
+ "terms": "منطقة مخصصة للتدخين"
+ },
+ "amenity/social_centre": {
+ "name": "مركز اجتماعي",
+ "terms": "مركز اجتماعي"
+ },
+ "amenity/social_facility": {
+ "name": "مرفق اجتماعي",
+ "terms": "مرفق اجتماعي"
+ },
+ "amenity/social_facility/ambulatory_care": {
+ "name": "الرعاية الإسعافية",
+ "terms": "الرعاية الإسعافية"
+ },
+ "amenity/social_facility/food_bank": {
+ "name": "بنك الطعام",
+ "terms": "بنك الطعام"
+ },
+ "amenity/social_facility/group_home": {
+ "name": "دار المسنين",
+ "terms": "دار المسنين"
+ },
+ "amenity/social_facility/homeless_shelter": {
+ "name": "ملجأ مشردين",
+ "terms": "ملجأ مشردين، مأوى"
+ },
+ "amenity/social_facility/nursing_home": {
+ "name": "دار التمريض",
+ "terms": "دار التمريض"
+ },
+ "amenity/studio": {
+ "name": "Studio",
+ "terms": "أستوديو; إذاعة; راديو; تلفزيون"
+ },
+ "amenity/studio/audio": {
+ "name": "Recording Studio"
+ },
+ "amenity/studio/radio": {
+ "name": "محطة إذاعية"
+ },
+ "amenity/studio/television": {
+ "name": "Television Station"
+ },
+ "amenity/studio/video": {
+ "name": "Film Studio"
+ },
+ "amenity/taxi": {
+ "name": "موقف تاكسي",
+ "terms": "موقف أجرة"
+ },
+ "amenity/telephone": {
+ "name": "هاتف",
+ "terms": "هاتف,تلفون"
+ },
+ "amenity/theatre": {
+ "name": "مسرح",
+ "terms": "مسرح"
+ },
+ "amenity/ticket_validator": {
+ "name": "مدقق التذاكر",
+ "terms": "مدقق التذاكر"
+ },
+ "amenity/toilets": {
+ "name": "غرفة استراحة",
+ "terms": "غرفة استراحة"
+ },
+ "amenity/toilets/disposal/flush": {
+ "name": "مرحاض له نظام شطف",
+ "terms": "مرحاض له سيفون,مرحاض يتخلص من نفاياته بالماء"
+ },
+ "amenity/toilets/disposal/pitlatrine": {
+ "name": "مرحاض ذو حفرة",
+ "terms": "مرحاض له مجرى طويل,مرحاض له حفره من أسفله"
+ },
+ "amenity/toilets/portable": {
+ "name": "مرحاض متنقل",
+ "terms": "مرحاض يصب في مواد كيميائية"
+ },
+ "amenity/townhall": {
+ "name": "مبنى البلدية/المركز الإداري",
+ "terms": "المجلس البلدي,دار البلدية,قاعة المدينة،المركز الإداري"
+ },
+ "amenity/townhall/city": {
+ "name": "مركز المدينة/إمارة المدينة",
+ "terms": "مركز المدينة,قاعة البلدية،مجلس المدينة،مبنى البلدية"
+ },
+ "amenity/toy_library": {
+ "name": "Toy Library"
+ },
+ "amenity/trolley_bay": {
+ "name": "عربة كورال",
+ "terms": "عربة كورال"
+ },
+ "amenity/vacuum_cleaner": {
+ "name": "محطة مكنسة سيارات",
+ "terms": "محطة كنس وتنظيف داخلي السيارة"
+ },
+ "amenity/vehicle_inspection": {
+ "name": "فحص مركبات/الفحص الدوري",
+ "terms": "الفحص الدوري,فحص السيارات"
+ },
+ "amenity/vending_machine": {
+ "name": "آلة بيع آلية",
+ "terms": "آلة بيع،ماكينة بيع آلي"
+ },
+ "amenity/vending_machine/bicycle_tube": {
+ "name": "آلة بيع الأنبوب الداخلي للدراجة",
+ "terms": "آلة بيع الأنبوب الداخلي للدراجة"
+ },
+ "amenity/vending_machine/bottle_return": {
+ "name": "آلة تدوير قوارير بمقابل مالي",
+ "terms": "آلة بيع عكسي,آلة تدوير قوارير,آلة تدوير قوارير علب,آلة تدوير عبوات زجاجية"
+ },
+ "amenity/vending_machine/bread": {
+ "name": "آلة بيع آلي للخبز",
+ "terms": "آلة بيع ذاتي للخبز"
+ },
+ "amenity/vending_machine/cigarettes": {
+ "name": "آلة بيع سجائر",
+ "terms": "سجائر"
+ },
+ "amenity/vending_machine/coffee": {
+ "name": "آلة بيع قهوة",
+ "terms": "قهوة"
+ },
+ "amenity/vending_machine/condoms": {
+ "name": "آلة بيع واقي ذكري"
+ },
+ "amenity/vending_machine/drinks": {
+ "name": "آلة بيع مشروبات",
+ "terms": "مشروبات"
+ },
+ "amenity/vending_machine/eggs": {
+ "name": "آلة بيع آلي للبيض",
+ "terms": "آلة بيع للبيض"
+ },
+ "amenity/vending_machine/electronics": {
+ "name": "آلة بيع إلكترونيات",
+ "terms": "بيع إلكترونيات"
+ },
+ "amenity/vending_machine/elongated_coin": {
+ "name": "آلة صرف عملات معدينة",
+ "terms": "آلة صرف عملات مسطحة"
+ },
+ "amenity/vending_machine/excrement_bags": {
+ "name": "موزع أكياس فضلات",
+ "terms": "موزع أكياس براز حيوانات"
+ },
+ "amenity/vending_machine/feminine_hygiene": {
+ "name": "آلة بيع أغراض نظافة نسائية",
+ "terms": "آلة بيع أغراض صحية نسائية"
+ },
+ "amenity/vending_machine/food": {
+ "name": "آلة بيع مواد غذائية",
+ "terms": "آلة بيع مواد غذائية"
+ },
+ "amenity/vending_machine/food/snacks": {
+ "name": "آلة بيع الوجبات الخفيفة",
+ "terms": "آلة بيع الوجبات الخفيفة"
+ },
+ "amenity/vending_machine/ice_cream": {
+ "name": "آلة بيع آيس كريم",
+ "terms": "آلة بيع آيس كريم,آلة بيع مثلجات"
+ },
+ "amenity/vending_machine/ice_cubes": {
+ "name": "آلة بيع ثلج",
+ "terms": "آلة بيع ثلج"
+ },
+ "amenity/vending_machine/newspapers": {
+ "name": "آلة بيع صحف يومية",
+ "terms": "آلة بيع جرائد"
+ },
+ "amenity/vending_machine/parking_tickets": {
+ "name": "ماكينة بيع تذاكر وقوف",
+ "terms": "ماكينة تذاكر"
+ },
+ "amenity/vending_machine/pizza": {
+ "name": "آلة بيع البيتزا",
+ "terms": "آلة بيع البيتزا الذاتية"
+ },
+ "amenity/vending_machine/public_transport_tickets": {
+ "name": "آلة بيع تذاكر مواصلات عامة",
+ "terms": "آلة بيع تذاكر مواصلات عامة"
+ },
+ "amenity/vending_machine/stamps": {
+ "name": "آلة بيع طوابع بريدية",
+ "terms": "آلة بيع طوابع بريدية"
+ },
+ "amenity/veterinary": {
+ "name": "عيادة بيطرية",
+ "terms": "بيطري، طبيب حيوانات"
+ },
+ "amenity/waste/dog_excrement": {
+ "name": "قمامة لبراز الكلاب",
+ "terms": "حاوية براز الكلاب"
+ },
+ "amenity/waste_disposal": {
+ "name": "حاوية قمامة متحركة",
+ "terms": "حاوية قمامة قابل للنقل"
+ },
+ "amenity/waste_transfer_station": {
+ "name": "محطة نقل النفايات",
+ "terms": "نفايات,قمامة,مهملات"
+ },
+ "amenity/water_point": {
+ "name": "تعبئة مياه شرب بكميات (لمقطورات السفر والتخييم)",
+ "terms": "مياه شرب للكارفانات"
+ },
+ "amenity/watering_place": {
+ "name": "حوض تروية للحيوانات",
+ "terms": "حوض تروية للحيوانات،مكان شرب للحيوانات،حوض سقاية للحيوانات،مورد ماء للحيوانات"
+ },
+ "amenity/weighbridge": {
+ "name": "ميزان شاحانات",
+ "terms": "ميزان شاحانات،ميزان،ميزان تريلات،ميزان مركبات ثقيلة"
+ },
+ "area": {
+ "name": "مساحة",
+ "terms": "المساحة; مساحة; منطقة; المنطقة"
+ },
+ "area/footway": {
+ "name": "منطقة طريق المشاة",
+ "terms": "منطقة طريق المشاة"
+ },
+ "area/highway": {
+ "name": "مساحة شارع/طريق",
+ "terms": "مساحة شارع/طريق،منطقة شارع/طريق،أرض الشارع/الطريق"
+ },
+ "attraction": {
+ "name": "Attraction"
+ },
+ "attraction/amusement_ride": {
+ "name": "Amusement Ride"
+ },
+ "attraction/animal": {
+ "name": "حظيرة حيوانات",
+ "terms": "حظيرة حيوانات،محجر حيوانات،حوش حيوانات،حوز حيوانات،ضميمة حيوانات"
+ },
+ "attraction/big_wheel": {
+ "name": "عجلة فيريس"
+ },
+ "attraction/bumper_car": {
+ "name": "Bumper Cars"
+ },
+ "attraction/bungee_jumping": {
+ "name": "Bungee Jumping"
+ },
+ "attraction/carousel": {
+ "name": "دوامة خيل",
+ "terms": "دوامة خيل"
+ },
+ "attraction/dark_ride": {
+ "name": "Dark Ride"
+ },
+ "attraction/drop_tower": {
+ "name": "Drop Tower Ride"
+ },
+ "attraction/kiddie_ride": {
+ "name": "Kiddie Ride"
+ },
+ "attraction/log_flume": {
+ "name": "Log Flume"
+ },
+ "attraction/maze": {
+ "name": "متاهة",
+ "terms": "متاهة"
+ },
+ "attraction/pirate_ship": {
+ "name": "Pirate Ship Ride"
+ },
+ "attraction/river_rafting": {
+ "name": "River Rapids Ride"
+ },
+ "attraction/roller_coaster": {
+ "name": "السفينة الدوارة",
+ "terms": "سفينة دوارة"
+ },
+ "attraction/summer_toboggan": {
+ "name": "Summer Toboggan"
+ },
+ "attraction/swing_carousel": {
+ "name": "Swing Carousel"
+ },
+ "attraction/train": {
+ "name": "Tourist Train"
+ },
+ "attraction/water_slide": {
+ "name": "التزلق على الماء"
+ },
+ "barrier": {
+ "name": "حاجز",
+ "terms": "حاجز,عائق,تخم,قلعة محصنة,مدينة محصنة,مزلقان"
+ },
+ "barrier/block": {
+ "name": "صبة خرسانية",
+ "terms": "صبات,صبات خرسانية"
+ },
+ "barrier/bollard": {
+ "name": "عمود حاجز",
+ "terms": "عمود صلب,عمود حاجز"
+ },
+ "barrier/bollard_line": {
+ "name": "صف أعمدة حاجزة",
+ "terms": "صف أعمدة صلبة,صف أعمدة مرورية"
+ },
+ "barrier/border_control": {
+ "name": "مركز حدودي",
+ "terms": "معبر حدودي,منفذ حدودي"
+ },
+ "barrier/bump_gate": {
+ "name": "بوابة مركبات تمنع مرور الماشية",
+ "terms": "بوابة مركبات تمنع مرور الماشية"
+ },
+ "barrier/bus_trap": {
+ "name": "حاجز حافلات",
+ "terms": "حاجز حافلات"
+ },
+ "barrier/cable_barrier": {
+ "name": "حاجز الكابلات",
+ "terms": "حاجز الكابلات,حاجز الكابل"
+ },
+ "barrier/cattle_grid": {
+ "name": "شبكة أرضية حاجزة للماشية",
+ "terms": "شبكة الماشية,شبكة لمنع الماشية"
+ },
+ "barrier/chain": {
+ "name": "سلسلة",
+ "terms": "سلسلة"
+ },
+ "barrier/city_wall": {
+ "name": "جدار المدينة",
+ "terms": "جدار المدينة; سور المدينة,حائط المدينة"
+ },
+ "barrier/cycle_barrier": {
+ "name": "حاجز دراجات هوائية",
+ "terms": "حاجز دراجات هوائية; حاجز; ممر; حاجز مرور; حاجز دراجات"
+ },
+ "barrier/ditch": {
+ "name": "خندق",
+ "terms": "خندق"
+ },
+ "barrier/entrance": {
+ "name": "مدخل"
+ },
+ "barrier/fence": {
+ "name": "سياج",
+ "terms": "سياج"
+ },
+ "barrier/fence/railing": {
+ "name": "حديدي",
+ "terms": "حديدي"
+ },
+ "barrier/full-height_turnstile": {
+ "name": "باب دوار كامل الارتفاع",
+ "terms": "باب دوار كامل الارتفاع"
+ },
+ "barrier/gate": {
+ "name": "بوابة",
+ "terms": "بوابة"
+ },
+ "barrier/guard_rail": {
+ "name": "حاجز حديدي للحماية من الاصطدام",
+ "terms": "حاجز حديدي مانع للاصطدام"
+ },
+ "barrier/hampshire_gate": {
+ "name": "بوابة الأسلاك",
+ "terms": "بوابة الأسلاك"
+ },
+ "barrier/handrail": {
+ "name": "سياج سلم (درابزين)"
+ },
+ "barrier/hedge": {
+ "name": "حاجز نباتي",
+ "terms": "سياج نباتي"
+ },
+ "barrier/height_restrictor": {
+ "name": "حاجز لتقييد الارتفاع",
+ "terms": "حاجز لتقييد ارتفاع المركبات"
+ },
+ "barrier/jersey_barrier": {
+ "name": "حاجز خرساني - نيوجيرسي",
+ "terms": "حاجز خرساني - نيوجيرسي"
+ },
+ "barrier/kerb": {
+ "name": "منحدر الرصيف المؤدي للشارع",
+ "terms": "رصيف اسمنتي صلب"
+ },
+ "barrier/kerb/flush": {
+ "name": "رصيف مسواي لطبقة الأرض",
+ "terms": "رصيف مسواي تقريباً لطبقة الأرض"
+ },
+ "barrier/kerb/lowered": {
+ "name": "رصيف منخفض",
+ "terms": "رصيف منخفض،منحدر رصيف"
+ },
+ "barrier/kerb/raised": {
+ "name": "رصيف مرتفع",
+ "terms": "رصيف مرتفع,رصيف حافلات"
+ },
+ "barrier/kerb/rolled": {
+ "name": "رصيف بحواف مطويه (مستديرة)",
+ "terms": "رصيف بحواف مطويه (مستديرة)"
+ },
+ "barrier/kissing_gate": {
+ "name": "بوابة لا تسمح بعبور الماشية",
+ "terms": "بوابة منع الماشية"
+ },
+ "barrier/motorcycle_barrier": {
+ "name": "حاجز منع مرور الدراجات النارية",
+ "terms": "حاجز منع مرور الدراجات النارية,عائق لمنع مرور الدراجات النارية"
+ },
+ "barrier/planter": {
+ "name": "حاجز أصيصي"
+ },
+ "barrier/retaining_wall": {
+ "name": "جدار تثبيت للتربة",
+ "terms": "جدار استنادي,جدار ساند,جدار اسناد لمنع انزلاق التربة"
+ },
+ "barrier/rope": {
+ "name": "سياج مصنوع من حبال",
+ "terms": "سياج مصنوع من حبال,سياج حبلي"
+ },
+ "barrier/sally_port": {
+ "name": "مدخل آمن للحصن",
+ "terms": "مدخل آمن للحصن,منفذ الهجوم,مدخل آمن متحكم به إلى حصن أو سجن"
+ },
+ "barrier/spikes": {
+ "name": "حاجز اطارات شوكي",
+ "terms": "حاجز اطارات شوكي,حاجز اطارات,حاجز اطارات مسنن,حاجز اطارات مروري,ممزق اطارات السيارات,حاجز أرضي مسنن"
+ },
+ "barrier/stile": {
+ "name": "درج يسمح للبشر بالمرور فوق السياج",
+ "terms": "درج يسمح للبشر بعبور السياج,عضادة"
+ },
+ "barrier/swing_gate": {
+ "name": "بوابة عامودية جانبية",
+ "terms": "بوابة عامودية تدور بشكل أفقي"
+ },
+ "barrier/toll_booth": {
+ "name": "كشك تحصيل رسوم",
+ "terms": "كشك التحصيل,مكتب رسوم العبور"
+ },
+ "barrier/turnstile": {
+ "name": "بوابة دوارة لعبور شخص واحد",
+ "terms": "بوابة دوارة لعبور شخص واحد"
+ },
+ "barrier/wall": {
+ "name": "جدار",
+ "terms": "جدار"
+ },
+ "barrier/wall/noise_barrier": {
+ "name": "حاجز ضوضاء",
+ "terms": "حاجز ضوضاء,حاجز صوتي"
+ },
+ "barrier/wicket_gate": {
+ "name": "باب خوخة",
+ "terms": "باب خوخة,باب فرعي"
+ },
+ "barrier/yes": {
+ "name": "حاجز (من نوع غير محدد)"
+ },
+ "boundary": {
+ "name": "حدود"
+ },
+ "boundary/administrative": {
+ "name": "حدود إدارية",
+ "terms": "حدود إدارية,تقسيمات إدارية"
+ },
+ "boundary/hazard": {
+ "name": "منطقة خطرة"
+ },
+ "bridge/support": {
+ "name": "دعامات جسر",
+ "terms": "دعامات جسر,صبات جسر,صبات حاملة للجسر"
+ },
+ "bridge/support/pier": {
+ "name": "دعامات جسر وسيطة أسفل الجسر",
+ "terms": "دعامات جسر وسيطة أسفل الجسر,حاملات للجسر"
+ },
+ "building": {
+ "name": "مبنى",
+ "terms": "مبنى,بناية,عمارة,بناء,منشأة"
+ },
+ "building/allotment_house": {
+ "name": "الحدائق/المزارع المحصصة",
+ "terms": "الحدائق/المزارع المحصصة"
+ },
+ "building/apartments": {
+ "name": "مبنى شقق سكنية",
+ "terms": "مبنى شقق,مبنى عمارة سكنية,مبنى شقق مفروشة"
+ },
+ "building/barn": {
+ "name": "حظيرة",
+ "terms": "مخزن,اسطبل"
+ },
+ "building/boathouse": {
+ "name": "مبنى تخزين القوارب",
+ "terms": "تخزين القوارب,منزل القوارب,مرفأ مغطى,مبنى يظلل القوارب"
+ },
+ "building/bungalow": {
+ "name": "منزل بطابق واحد",
+ "terms": "منزل صغير,كوخ,منزل بطابق واحد"
+ },
+ "building/bunker": {
+ "name": "ملجأ محصّن"
+ },
+ "building/cabin": {
+ "name": "كوخ",
+ "terms": "كوخ,حجرة,منزل صغير جدا,كوخ مؤثث,كوخ بمدخنة"
+ },
+ "building/carport": {
+ "name": "مرآب/مظلة سيارات",
+ "terms": "مرآب,مظلة سيارات"
+ },
+ "building/cathedral": {
+ "name": "مبنى كاتدرائية"
+ },
+ "building/chapel": {
+ "name": "معبد نصراني"
+ },
+ "building/church": {
+ "name": "مبنى كنيسة",
+ "terms": "كنيسة,معبد"
+ },
+ "building/civic": {
+ "name": "مبنى مرافق مدنية"
+ },
+ "building/college": {
+ "name": "مبنى كلية",
+ "terms": "كلية,جامعة"
+ },
+ "building/commercial": {
+ "name": "مبني تجاري",
+ "terms": "مبنى تجاري"
+ },
+ "building/construction": {
+ "name": "مبنى تحت الإنشاء",
+ "terms": "تحت الانشاء,تحت التشييد,جاري بنائه"
+ },
+ "building/cowshed": {
+ "name": "سقيفة/مظلة أبقار",
+ "terms": "سقيفة أبقار,حضائر أبقار,مظلات أبقار"
+ },
+ "building/detached": {
+ "name": "منزل منفصل",
+ "terms": "مستقل,منفصل,مبنى مستقل"
+ },
+ "building/dormitory": {
+ "name": "سكن جامعي",
+ "terms": "مهجع,سكن,سكن جامعي,سكن طلابي,سكن الكلية,سكن الجامعة,سكن مجمع"
+ },
+ "building/entrance": {
+ "name": "مدخل ومخرج"
+ },
+ "building/farm": {
+ "name": "بيت ريفي",
+ "terms": "ريف,مزرعة,زرع,بيت مزرعة"
+ },
+ "building/farm_auxiliary": {
+ "name": "مبنى مزرعة",
+ "terms": "مزرعة,ريف,مبنى ريفي"
+ },
+ "building/garage": {
+ "name": "مرآب/جراج",
+ "terms": "مَرْأب,كراج"
+ },
+ "building/garages": {
+ "name": "جراجات",
+ "terms": "جراج; جراج سيارات; موقف; موقف سيارات; ركن; ركنة"
+ },
+ "building/ger": {
+ "name": "منزل اليورت",
+ "terms": "منزل اليورت,خيمة"
+ },
+ "building/grandstand": {
+ "name": "مُدَرج",
+ "terms": "مدرج رياضي،مدرج سباق خيول,مدرج ملعب"
+ },
+ "building/greenhouse": {
+ "name": "محمية زراعية",
+ "terms": "دفيئة زراعية,بيت بلاستيكي,بيت زجاجي"
+ },
+ "building/hangar": {
+ "name": "حظيرة طائرات",
+ "terms": "حظيرة طائرات,حظيرة هيلكوبترات"
+ },
+ "building/hospital": {
+ "name": "مبنى مستشفى",
+ "terms": "مستشفى; مبنى مستشفى"
+ },
+ "building/hotel": {
+ "name": "مبنى فندق",
+ "terms": "مبنى فندق"
+ },
+ "building/house": {
+ "name": "منزل",
+ "terms": "منزل,بيت,فلة,دبلكس"
+ },
+ "building/houseboat": {
+ "name": "بيت عائم",
+ "terms": "بيت عائم,بيت القارب,قارب أعيد بنائه كمنزل ثابت"
+ },
+ "building/hut": {
+ "name": "كوخ بدائي/عشة",
+ "terms": "كوخ,قش,كوخ بدائي,عشة,صندقه,سقيفة,عريش,عرزال,خص,عرزيل"
+ },
+ "building/industrial": {
+ "name": "مبنى صناعي",
+ "terms": "مبنى صناعي,مبنى الانتاج,مبنى المعالجة"
+ },
+ "building/kindergarten": {
+ "name": "مبنى حضانة / روض",
+ "terms": "مبنى الحضانة,رياض الأطفال ، روض ، حضانة ، طفل ، أطفال"
+ },
+ "building/manufacture": {
+ "name": "مبنى إنتاج صناعي"
+ },
+ "building/mosque": {
+ "name": "مبنى مسجد",
+ "terms": "مبنى المسجد,مبنى جامع,مبنى مصلى,مبنى صلاة"
+ },
+ "building/office": {
+ "name": "مبنى مكاتب إدارية",
+ "terms": "مبنى مكاتب,مبنى إداري"
+ },
+ "building/outbuilding": {
+ "name": "ملحق"
+ },
+ "building/pavilion": {
+ "name": "مبنى مرافق رياضية",
+ "terms": "مبنى أدوات رياضة,مبنى مرافق رياضية,مبنى مرافق رياضة"
+ },
+ "building/public": {
+ "name": "مبنى عام",
+ "terms": "مبنى عمومي,مبنى قطاع عام,مبنى رسمي,مبنى جهة رسمية"
+ },
+ "building/residential": {
+ "name": "مبنى سكني",
+ "terms": "مبنى سكني"
+ },
+ "building/retail": {
+ "name": "مبنى بيع بالتجزئة",
+ "terms": "مبنى بيع بالتجزئة,مبنى بيع قطاعي,مبنى بيع مفرق"
+ },
+ "building/roof": {
+ "name": "سقف/سطح",
+ "terms": "غطاء,سطح,أعلى المبنى,سقف"
+ },
+ "building/ruins": {
+ "name": "مبنى أثري/مهجور/متهدم",
+ "terms": "مبنى أثري,مبنى مهجور,مبنى متهدم,مبنى أنقاض,مبنى خرابة,خرابة,مبنى أطلال,أطلال,دمنة,طلل,أنقاض,خراب,خرائب,حطام,مبنى متحطم"
+ },
+ "building/school": {
+ "name": "مبنى مدرسة",
+ "terms": "مبنى مدرسة,مبنى تعليمي ، ثانوية ، اعدادية ، تعليم أولي ، ابتدائي ، ابتدائية"
+ },
+ "building/semidetached_house": {
+ "name": "مبنى شبه منفصل",
+ "terms": "مبنى شبه منفصل,مبنى شبه منعزل,مبنى شبه مستقل"
+ },
+ "building/service": {
+ "name": "مبنى خدمات (محولات، آلات،مضخات..الخ)",
+ "terms": "مبنى محولات,مبنى آلات,مبنى مضخات"
+ },
+ "building/shed": {
+ "name": "سقيفة(مستودع/ورشة عمل صغيرة)",
+ "terms": "سقيفة,مستودع صغير"
+ },
+ "building/stable": {
+ "name": "إسطبل",
+ "terms": "إسطبل.إصطبل,طوالة الخيل,حظيرة الخيل,مأوى الخيل"
+ },
+ "building/stadium": {
+ "name": "مبنى الملعب",
+ "terms": "مبنى الملعب"
+ },
+ "building/sty": {
+ "name": "Pigsty"
+ },
+ "building/synagogue": {
+ "name": "Synagogue Building",
+ "terms": "synagogue building"
+ },
+ "building/temple": {
+ "name": "مبنى المعبد",
+ "terms": "مبنى المعبد"
+ },
+ "building/train_station": {
+ "name": "مبنى محطة القطار"
+ },
+ "building/transportation": {
+ "name": "مبنى للنقل العام",
+ "terms": "مبنى للنقل العام"
+ },
+ "building/university": {
+ "name": "مبنى جامعي",
+ "terms": "جامعة; كلية"
+ },
+ "building/warehouse": {
+ "name": "مستودع",
+ "terms": "مستودع,مخزن"
+ },
+ "building_part": {
+ "name": "جزء من مبنى",
+ "terms": "جزء مختلف من مبنى"
+ },
+ "building_point": {
+ "name": "مبنى"
+ },
+ "cemetery/grave": {
+ "name": "قبر",
+ "terms": "قبر"
+ },
+ "cemetery/sector": {
+ "name": "قسم المقبرة",
+ "terms": "قسم المقبرة"
+ },
+ "club": {
+ "name": "نادي",
+ "terms": "نادي"
+ },
+ "club/sport": {
+ "name": "نادي رياضي",
+ "terms": "نادي رياضي"
+ },
+ "craft": {
+ "name": "حِرف ومهن",
+ "terms": "حرفة,حرف,مهن,تصنيع,صناعة"
+ },
+ "craft/agricultural_engines": {
+ "name": "ميكانيكي محركات زراعية",
+ "terms": "ميكانيكي محركات زراعية"
+ },
+ "craft/basket_maker": {
+ "name": "صناعة وحياكة السِلال",
+ "terms": "صانع السلال"
+ },
+ "craft/beekeeper": {
+ "name": "مربي النحل",
+ "terms": "مربي النحل,نحال"
+ },
+ "craft/blacksmith": {
+ "name": "حدّاد",
+ "terms": "حدّاد"
+ },
+ "craft/boatbuilder": {
+ "name": "بنّاء السفن",
+ "terms": "بنّاء السفن"
+ },
+ "craft/bookbinder": {
+ "name": "تغليف وتجليد الكتب",
+ "terms": "مجلد الكتب"
+ },
+ "craft/carpenter": {
+ "name": "نجار",
+ "terms": "نجار"
+ },
+ "craft/carpet_layer": {
+ "name": "فرش وتركيب المفروشات",
+ "terms": "فرش وتركيب المفروشات"
+ },
+ "craft/caterer": {
+ "name": "تموين أو متعهد إعاشة",
+ "terms": "منظم حفلات; متعهد حفلات;حفلة;حفلات"
+ },
+ "craft/chimney_sweeper": {
+ "name": "منظف مداخن",
+ "terms": "منظف مداخن"
+ },
+ "craft/cleaning": {
+ "name": "خدمات التنظيف",
+ "terms": "خدمات التنظيف"
+ },
+ "craft/clockmaker": {
+ "name": "ساعاتي",
+ "terms": "ساعاتي"
+ },
+ "craft/confectionery": {
+ "name": "حلواني",
+ "terms": "حلواني,صانع الحلوى"
+ },
+ "craft/distillery": {
+ "name": "Distillery"
+ },
+ "craft/dressmaker": {
+ "name": "خياط نسائي",
+ "terms": "خياط نسائي"
+ },
+ "craft/electrician": {
+ "name": "كهربائي",
+ "terms": "كهربائي"
+ },
+ "craft/electronics_repair": {
+ "name": "خدمة إصلاح الالكترونيات",
+ "terms": "خدمة تصليح الأجهزة الإلكترونية"
+ },
+ "craft/floorer": {
+ "name": "مبلط/تبليط/أرضيات",
+ "terms": "أرضيات,باركيه,سيراميك,بلاط,رخام"
+ },
+ "craft/gardener": {
+ "name": "بستاني",
+ "terms": "بستاني"
+ },
+ "craft/glaziery": {
+ "name": "تركيب وإصلاح الزجاج",
+ "terms": "زجاج"
+ },
+ "craft/handicraft": {
+ "name": "نحت وزخرفة يدوية",
+ "terms": "نحت,زخرفة,نقش,كتابة,حفر"
+ },
+ "craft/hvac": {
+ "name": "ورشة/محل تبريد وتكييف",
+ "terms": "صيانة تبريد وتكييف,التدفئة,والتهوية,تكييف الهواء"
+ },
+ "craft/insulator": {
+ "name": "تركيب عوازل حرارية",
+ "terms": "عازل,عوازل,تركيب"
+ },
+ "craft/joiner": {
+ "name": "نجار",
+ "terms": "نجارة,نجار,صناعة أثاث خشبي,خشب"
+ },
+ "craft/key_cutter": {
+ "name": "قص ونسخ مفاتيح",
+ "terms": "قص مفاتيح,نسخ مفاتيح,ناسخ مفاتيح,كيلونات,أقفال"
+ },
+ "craft/locksmith": {
+ "name": "محل بيع أقفال ونسخ مفاتيح"
+ },
+ "craft/metal_construction": {
+ "name": "صناعات المعادن والمواد الصلبة",
+ "terms": "حديد,ألمنويم,معدن,معادن,فولاذ,صلب,صلبة,مواد البناء المعدنية,صناعات حديدية,زخرفة حديد,إصلاح"
+ },
+ "craft/painter": {
+ "name": "دهّان",
+ "terms": "دهّان,دهان,أصباغ,بوية"
+ },
+ "craft/parquet_layer": {
+ "name": "تركيب أرضيات خشبية (باركيه)",
+ "terms": "باركيه,أرضيات خشبية"
+ },
+ "craft/photographer": {
+ "name": "Photographer",
+ "terms": "مصور"
+ },
+ "craft/photographic_laboratory": {
+ "name": "مختبر التصوير",
+ "terms": "مختبر التصوير"
+ },
+ "craft/plasterer": {
+ "name": "جصاص (أعمال الجبس)",
+ "terms": "جبس,جبس بورد,جص,جصاص,ديكور"
+ },
+ "craft/plumber": {
+ "name": "سباكة",
+ "terms": "سباك; سمكري"
+ },
+ "craft/pottery": {
+ "name": "صناعة وبيع الفخار",
+ "terms": "فخار,طين,طاجن"
+ },
+ "craft/rigger": {
+ "name": "الصواري والحبال والأشرعة",
+ "terms": "صواري,حبال,أشرعة"
+ },
+ "craft/roofer": {
+ "name": "بناء الأسقف والقرميد",
+ "terms": "بنّاء السقف,أسقف,قرميد"
+ },
+ "craft/saddler": {
+ "name": "صانع سراج",
+ "terms": "صانع سراج,صناعة وبيع السروج,تنجيد السيارات,تنجيد القوارب"
+ },
+ "craft/sailmaker": {
+ "name": "صانع أشرعة",
+ "terms": "صانع أشرعة"
+ },
+ "craft/sawmill": {
+ "name": "منشرة",
+ "terms": "منشرة,تطيع الجذوع,تقطيع الحطب,قص الأخشاب,قص الحطب"
+ },
+ "craft/scaffolder": {
+ "name": "تركيب وتأجير السقالة",
+ "terms": "مركب السقالة,سقالة"
+ },
+ "craft/sculptor": {
+ "name": "نحّات",
+ "terms": "نحّات"
+ },
+ "craft/shoemaker": {
+ "name": "إسكافي/ صانع الأحذية",
+ "terms": "إسكافي.حَذّاء.حذاء,مصلح الأحذية,جزمجي,إسكاف"
+ },
+ "craft/signmaker": {
+ "name": "خطاط ومصمم لوحات تجارية",
+ "terms": "خطاط,خطاط لوحات تجارية,مصمم لوحات,صانع لوحات تجارية,رسام,علامات تجارية"
+ },
+ "craft/stonemason": {
+ "name": "قطع ونحت وتشكيل الحجارة",
+ "terms": "نحت الحجارة"
+ },
+ "craft/tailor": {
+ "name": "خياط"
+ },
+ "craft/tiler": {
+ "name": "مبلط",
+ "terms": "مركِّب البلاط"
+ },
+ "craft/tinsmith": {
+ "name": "سمكري",
+ "terms": "سمكري"
+ },
+ "craft/upholsterer": {
+ "name": "منجد",
+ "terms": "منجد,تنجيد,أثاث"
+ },
+ "craft/watchmaker": {
+ "name": "ساعاتي",
+ "terms": "ساعاتي"
+ },
+ "craft/window_construction": {
+ "name": "تركيب النوافذ",
+ "terms": "تركيب النوافذ,صناعة النوافذ,صيانة النوافذ"
+ },
+ "craft/winery": {
+ "name": "Winery"
+ },
+ "cycleway/asl": {
+ "name": "خط السير المتقدم",
+ "terms": "خط السير المتقدم حسب الأفضلية,خط التوقف الأولي,خط السيار الأمامي عند الإشارات,باصات,حافلات,سيكل,دراجات,سيارات"
+ },
+ "demolished/building": {
+ "name": "مبنى تم هدمه مؤخرًا"
+ },
+ "disc_golf/basket": {
+ "name": "سلة أقراص الجولف",
+ "terms": "سلة أقراص الجولف"
+ },
+ "disc_golf/hole": {
+ "name": "ثقب أقراص الجولف",
+ "terms": "ثقب أقراص الجولف"
+ },
+ "disc_golf/tee": {
+ "name": "نقطة انطلاق قرص الجولف",
+ "terms": "نقطة انطلاق قرص الجولف"
+ },
+ "disused/amenity": {
+ "name": "مرافق وأماكن عامة مهجورة"
+ },
+ "disused/railway": {
+ "name": "عناصر سكك حديدية مهجورة"
+ },
+ "disused/shop": {
+ "name": "متاجر مهجورة"
+ },
+ "embankment": {
+ "name": "سطح مرفوع يسير عليه الطريق (قد تكون مردومة)"
+ },
+ "emergency": {
+ "name": "عناصر الطوارئ"
+ },
+ "emergency/ambulance_station": {
+ "name": "محطة إسعاف",
+ "terms": "محطة إسعاف,محطة اسعاف"
+ },
+ "emergency/assembly_point": {
+ "name": "نقطة التجمع في حالات الطوارئ",
+ "terms": "نقطة تجمع طوارئ"
+ },
+ "emergency/defibrillator": {
+ "name": "مزيل الرجفان (جهاز الصدمات الكهربائية)",
+ "terms": "مزيل الرجفان,جهاز الصدمات الكهربائية"
+ },
+ "emergency/fire_alarm": {
+ "name": "صندوق إنذار الحريق",
+ "terms": "صندوق ابلاغ عن الحريق"
+ },
+ "emergency/fire_extinguisher": {
+ "name": "طفاية حريق",
+ "terms": "مطفأة حريق,طفاية حريق"
+ },
+ "emergency/fire_hose": {
+ "name": "خرطوم إطفاء الحريق",
+ "terms": "خرطوم إطفاء الحريق,خرطوم الحريق"
+ },
+ "emergency/fire_hydrant": {
+ "name": "صنبور الاطفاء",
+ "terms": "خرطوم,مطافئ,إطفاء,اطفاء"
+ },
+ "emergency/first_aid_kit": {
+ "name": "حقيبة إسعافات أولية",
+ "terms": "حقيبة إسعاف أولي"
+ },
+ "emergency/landing_site": {
+ "name": "موقع هبوط الطوارئ",
+ "terms": "موقع هبوط الطوارئ"
+ },
+ "emergency/life_ring": {
+ "name": "طوق النجاة",
+ "terms": "طوق النجاة,لستك للانقاذ"
+ },
+ "emergency/lifeboat_station": {
+ "name": "محطة قارب النجاة",
+ "terms": "محطة قارب الانقاذ"
+ },
+ "emergency/lifeguard": {
+ "name": "حارس الشاطئ",
+ "terms": "منقذ بحري,منقذ الشاطئ,منقذ,غرق"
+ },
+ "emergency/mountain_rescue": {
+ "name": "منقذ جبلي",
+ "terms": "منقذ متسلقي الجبال,منقذ للمناطق الوعرة,منقذ متسلقين,منقذ"
+ },
+ "emergency/phone": {
+ "name": "هاتف طوارئ",
+ "terms": "هاتف طوارئ,هاتف حالات طارئة"
+ },
+ "emergency/siren": {
+ "name": "صفاّرة إنذار",
+ "terms": "صفاّرة إنذار الطوارئ,زمارة,صفارة"
+ },
+ "emergency/water_reservoir": {
+ "name": "خزان مياه الطوارئ",
+ "terms": "خزان مياه الطوارئ"
+ },
+ "emergency/water_reservoir_covered": {
+ "name": "خزان مياه للطوارئ (تحت الأرض)",
+ "terms": "خزان مياه للطوارئ (تحت الأرض)"
+ },
+ "emergency/water_tank": {
+ "name": "خزان مياه الطوارئ",
+ "terms": "خزان مياه الطوارئ,حوض مياه الطوارئ,بركة مياه الطوارئ"
+ },
+ "entrance": {
+ "name": "مدخل / مخرج",
+ "terms": "مدخل/مخرج,دخول/خروج,مخرج,مدخل,خروج"
+ },
+ "entrance/emergency": {
+ "name": "مخرج طوارئ",
+ "terms": "مخرج طوارئ,مخرج الطوارئ"
+ },
+ "entrance/emergency_ward_entrance": {
+ "name": "مدخل غرفة الطوارئ",
+ "terms": "مدخل غرفة الطوارئ"
+ },
+ "entrance/main": {
+ "name": "المدخل الرئيسي",
+ "terms": "المدخل الرئيسي,مدخل رئيسي,المدخل الأساسي,مدخل أساسي"
+ },
+ "ford": {
+ "name": "مخاضة -طريق يشق مجرى مائي",
+ "terms": "ممر مائي; ممر; مائي; ماء,مخاضة,مجرى الماء فوق الطريق"
+ },
+ "ford_line": {
+ "name": "مخاضة -طريق يشق مجرى مائي"
+ },
+ "golf/bunker": {
+ "name": "مصيدة الرمال (غولف)",
+ "terms": "مصيدة الرمال (غولف)"
+ },
+ "golf/cartpath": {
+ "name": "مسار العربة (غولف)",
+ "terms": "مسار العربة (غولف)"
+ },
+ "golf/clubhouse": {
+ "name": "المبنى الرئيسي (غولف)",
+ "terms": "المبنى الرئيسي (غولف)"
+ },
+ "golf/driving_range": {
+ "name": "نطاق القيادة (غولف)",
+ "terms": "نطاق القيادة"
+ },
+ "golf/fairway": {
+ "name": "فاصل المساحات الزراعية (غولف)",
+ "terms": "فاصل المساحات الزراعية (غولف)"
+ },
+ "golf/green": {
+ "name": "النبات الأخضر حول المرمى (غولف)",
+ "terms": "النبات الأخضر حول المرمى (غولف)"
+ },
+ "golf/hole": {
+ "name": "ثقب الغولف",
+ "terms": "ثقب الغولف"
+ },
+ "golf/lateral_water_hazard": {
+ "name": "علامة تحذير المياة (غولف)",
+ "terms": "علامة تحذير المياة (غولف)"
+ },
+ "golf/path": {
+ "name": "مسار مشي الغولف",
+ "terms": "مسار مشي الغولف"
+ },
+ "golf/rough": {
+ "name": "منطقة خشنة (غولف)",
+ "terms": "منطقة خشنة (غولف)"
+ },
+ "golf/tee": {
+ "name": "مربع الإنطلاق (غولف)",
+ "terms": "مربع الإنطلاق (غولف)"
+ },
+ "golf/water_hazard": {
+ "name": "تحذير مياه (غولف)",
+ "terms": "تحذير مياه (غولف)"
+ },
+ "healthcare": {
+ "name": "مرافق الرعاية الصحية",
+ "terms": "مرفق الرعاية الصحية,مرافق الرعاية الصحية"
+ },
+ "healthcare/alternative": {
+ "name": "الطب البديل",
+ "terms": "العلاج بالطب البديل,شعبي,طبيعي,حجامة,إبر صينية"
+ },
+ "healthcare/alternative/chiropractic": {
+ "name": "تقويم العظام",
+ "terms": "المعالج للأمراض يدويا; مقوم العظام"
+ },
+ "healthcare/audiologist": {
+ "name": "أخصائي السمع",
+ "terms": "أخصائي السمع,أخصائي أذن"
+ },
+ "healthcare/birthing_center": {
+ "name": "مركز ولادة",
+ "terms": "مركز ولادة"
+ },
+ "healthcare/blood_donation": {
+ "name": "مركز التبرع بالدم",
+ "terms": "تبرع بالدم"
+ },
+ "healthcare/counselling": {
+ "name": "مركز استشارات طبية",
+ "terms": "مركز استشارات طبية"
+ },
+ "healthcare/dentist/orthodontics": {
+ "name": "أخصائي تقويم الأسنان",
+ "terms": "أخصائي تقويم الأسنان"
+ },
+ "healthcare/hospice": {
+ "name": "دار رعاية المسنين وكبار السن",
+ "terms": "دار رعاية المسنين وكبار السن"
+ },
+ "healthcare/laboratory": {
+ "name": "معمل طبي",
+ "terms": "مختبر طبي; مخبر التحاليل الطبية"
+ },
+ "healthcare/midwife": {
+ "name": "مركز قابلات للأمهات والأطفال حديثي الولادة",
+ "terms": "مركز قابلات للأمهات والأطفال حديثي الولادة"
+ },
+ "healthcare/occupational_therapist": {
+ "name": "أخصائي علاج وظيفي",
+ "terms": "أخصائي العلاج الوظيفي,أخصائي العلاج المهني"
+ },
+ "healthcare/optometrist": {
+ "name": "أخصائي بصريات",
+ "terms": "أخصائي البصريات,نظارات,محل نظارات,نظارات وعدسات,عدسات,عدسات طبية,فحص نظر"
+ },
+ "healthcare/physiotherapist": {
+ "name": "علاج طبيعي وتأهيل طبي",
+ "terms": "أخصائي العلاج الطبيعي,علاج طبيعي,تأهيل طبي"
+ },
+ "healthcare/podiatrist": {
+ "name": "طبيب الأقدام",
+ "terms": "طبيب الأقدام; الأرجل"
+ },
+ "healthcare/psychotherapist": {
+ "name": "معالج نفسي",
+ "terms": "معالج نفسي,طبيب نفسي,أخصائي نفسي"
+ },
+ "healthcare/rehabilitation": {
+ "name": "مركز إعادة التأهيل",
+ "terms": "مركز إعادة التأهيل"
+ },
+ "healthcare/sample_collection": {
+ "name": "مرفق جمع العينات",
+ "terms": "جمع عينات الدم,جمع عينات البول,جمع عينات"
+ },
+ "healthcare/speech_therapist": {
+ "name": "معالج مشاكل النطق",
+ "terms": "معالج النطق، نطق,معالج مشاكل النطق,علاج صعوبات التواصل,صعوبات التواصل,اللغة والنطق,النطق,اللغة"
+ },
+ "healthcare/yes": {
+ "name": "منشأة صحية (نوع غير محدد)"
+ },
+ "highway": {
+ "name": "عناصر الطرق"
+ },
+ "highway/bridleway": {
+ "name": "طريق الخيول",
+ "terms": "طريق الخيول,ممر للخيول,طريق الجياد,ممر الجياد,مسار الخيول,مسار الفروسية"
+ },
+ "highway/bus_guideway": {
+ "name": "مسار الحافلة الموجهة",
+ "terms": "مسار الحافلة الموجهة,الحافلة الموجهة"
+ },
+ "highway/bus_stop": {
+ "name": "محطة توقف حافلات"
+ },
+ "highway/construction": {
+ "name": "الطريق قيد الإنشاء",
+ "terms": "الطريق قيد الإنشاء"
+ },
+ "highway/corridor": {
+ "name": "ممر داخل المبنى",
+ "terms": "ممر داخل المبنى"
+ },
+ "highway/crossing": {
+ "name": "معبر/خط مشاة",
+ "terms": "تقاطع,معبر"
+ },
+ "highway/crossing/traffic_signals": {
+ "name": "معبر مشاة بإشارات",
+ "terms": "معبر مشاة بإشارات"
+ },
+ "highway/crossing/unmarked": {
+ "name": "معبر مشاة بدون علامات أو إشارة مرورية",
+ "terms": "معبر مشاة بدون علامات أو إشارة مرورية"
+ },
+ "highway/cycleway": {
+ "name": "مسار دراجات",
+ "terms": "طريق دراجات; مسار دراجات"
+ },
+ "highway/cycleway/bicycle_foot": {
+ "name": "مسار مشاة و دراجات هوائية",
+ "terms": "مسار مشاة و دراجات هوائية"
+ },
+ "highway/cycleway/crossing": {
+ "name": "معبر دراجات هوائية"
+ },
+ "highway/cycleway/crossing/bicycle_foot": {
+ "name": "معبر مشاة ودراجات هوائية",
+ "terms": "معبر مشاة ودراجات هوائية"
+ },
+ "highway/cycleway/crossing/uncontrolled": {
+ "name": "معبر دراجات هوائية بعلامات مرورية",
+ "terms": "معبر دراجات هوائية بعلامات مرورية"
+ },
+ "highway/cycleway/crossing/unmarked": {
+ "name": "معبر دراجات هوائية بدون علامات مرورية",
+ "terms": "معبر دراجات هوائية بدون علامات مرورية"
+ },
+ "highway/cycleway/moped_link-NL": {
+ "name": "وصلة لدراجة نارية صغيرة",
+ "terms": "وصلة لدراجة نارية صغيرة,رابط لدراجة نارية صغيرة"
+ },
+ "highway/elevator": {
+ "name": "مصعد",
+ "terms": "مصعد,لفت,اصنصيل,أصنصير,مِرْقَاة"
+ },
+ "highway/elevator_line": {
+ "name": "مصعد مائل",
+ "terms": "مصعد مائل,مصعد مائل على منحدر,مِرْقَاة,مصعد"
+ },
+ "highway/emergency_access_point": {
+ "name": "نقطة وصول الطوارئ",
+ "terms": "نقطة وصول الطوارئ"
+ },
+ "highway/emergency_bay": {
+ "name": "منطقة توقف لحالات طوارئ الطريق",
+ "terms": "منطقة توقف لحالات طوارئ الطريق,استراحة طوارئ الطريق"
+ },
+ "highway/footway": {
+ "name": "طريق مشي بالأقدام",
+ "terms": "ممشى بالأقدام"
+ },
+ "highway/footway/access_aisle": {
+ "name": "مساحة جانب مواقف مركبات المعاقين للنزول والركوب",
+ "terms": "مساحة جانب مواقف مركبات المعاقين للنزول والركوب"
+ },
+ "highway/footway/conveying": {
+ "name": "سلم متحرك/بساط متحرك",
+ "terms": "سلم متحرك,بساط متحرك,سلالم كهربائية,بساط متحرك للمشاة"
+ },
+ "highway/footway/crossing": {
+ "name": "معبر مشاة"
+ },
+ "highway/footway/crossing/traffic_signals": {
+ "name": "معبر مشاة بإشارات",
+ "terms": "معبر مشاة بإشارات"
+ },
+ "highway/footway/crossing/unmarked": {
+ "name": "معبر مشاة بدون علامات أو إشارة مرورية",
+ "terms": "معبر مشاة بدون علامات أو إشارة مرورية"
+ },
+ "highway/footway/informal": {
+ "name": "مسار للمشاة غير رسمي"
+ },
+ "highway/footway/sidewalk": {
+ "name": "الرصيف",
+ "terms": "رصيف مشاة,رصيف المشاة,رصيف جانب الطريق للمشاة"
+ },
+ "highway/footway/traffic_island": {
+ "name": "جزيرة مشاة بين طريقين"
+ },
+ "highway/give_way": {
+ "name": "علامة \"أعط أفضلية المرور لمن هم في الطريق الآخر\"",
+ "terms": "علامة \"أعط أفضلية المرور لمن هم في الطريق الآخر\",علامة \"أعط الأفضلية\",علامة \"أفضلية المرور لمن هم في الدور\",علامة \"أعط أفضلية المرور لمن هم في الطريق السريع\""
+ },
+ "highway/ladder": {
+ "name": "سلم"
+ },
+ "highway/living_street": {
+ "name": "شارع معيشة بين المساكن",
+ "terms": "شارع معيشة,شارع سكني حي,شارع سكني ينخفض فيه مرور المركبات,شارع سكني للمشاة الأفضلية فيه,شارع سكني محدود السرعة,شارع سكني الأفضلية فيه للمشاة"
+ },
+ "highway/milestone": {
+ "name": "لوحة/علامة مسافات الطريق",
+ "terms": "علامة مسافات الطريق,لوحة مسافات الطريق"
+ },
+ "highway/mini_roundabout": {
+ "name": "دوار صغير",
+ "terms": "دوار صغير"
+ },
+ "highway/motorway": {
+ "name": "طريق سريع",
+ "terms": "طريق سريع"
+ },
+ "highway/motorway_junction": {
+ "name": "مخرج / مفرق طريق سريع",
+ "terms": "مفرق طريق سريع,مخرج طريق سريع"
+ },
+ "highway/motorway_link": {
+ "name": "وصلة لطريق سريع",
+ "terms": "رابط لطريق سريع,وصلة طريق سريع,طرق مرتبطة بالطريق السريع"
+ },
+ "highway/passing_place": {
+ "name": "مساحة للتجاوز للطرق",
+ "terms": "مساحة للتجاوز للطرق ذات المسار الواحد,مساحة للتجاوز للطرق الضيقة"
+ },
+ "highway/path": {
+ "name": "درب/ممر",
+ "terms": "طريق,ممر,مسلك,درب"
+ },
+ "highway/path/boardwalk": {
+ "name": "ممر خشبي",
+ "terms": "ممر خشبي,درب خشبي,مسار على ألواح خشب"
+ },
+ "highway/path/crossing": {
+ "name": "معبر مشاة ودراجات هوائية"
+ },
+ "highway/path/informal": {
+ "name": "مسار غير رسمي",
+ "terms": "مسار غير رسمي"
+ },
+ "highway/pedestrian_area": {
+ "name": "منطقة للمشاة",
+ "terms": "منطقة للمشاة,طريق للمشاة,للمشاة فقط"
+ },
+ "highway/pedestrian_line": {
+ "name": "شارع للمشاة",
+ "terms": "شارع للمشاة,شارع للمرور على الأرجل,شارع للمشاة فقط,شارع للراجلين"
+ },
+ "highway/primary": {
+ "name": "طريق أولي",
+ "terms": "شارع أولي"
+ },
+ "highway/primary_link": {
+ "name": "وصلة طريق أولي",
+ "terms": "رابط لطريق أولي,وصلة طريق أولي"
+ },
+ "highway/raceway": {
+ "name": "مضمار سباق السيارات",
+ "terms": "مضمار سباق السيارات"
+ },
+ "highway/raceway/karting": {
+ "name": "مضمار سباق كارتينغ",
+ "terms": "مضمار سباق كارتينغ"
+ },
+ "highway/raceway/motocross": {
+ "name": "مسار سباق الموتوكروس",
+ "terms": "مسار سباق الموتوكروس"
+ },
+ "highway/residential": {
+ "name": "شارع سكني/حارة",
+ "terms": "شارع سكني,شارع حارة,شارع حواري"
+ },
+ "highway/rest_area": {
+ "name": "منطقة استراحة",
+ "terms": "استراحة طريق سريع,خدمات طريق سريع"
+ },
+ "highway/road": {
+ "name": "طريق/شارع غير معروف تصنيفه",
+ "terms": "طريق غير معروف"
+ },
+ "highway/road/bridge": {
+ "name": "جسر غير معروف تصنيفه",
+ "terms": "جسر غير معروف تصنيفه"
+ },
+ "highway/secondary": {
+ "name": "طريق ثانوي",
+ "terms": "شارع ثانوي"
+ },
+ "highway/secondary_link": {
+ "name": "وصلة لطريق ثانوي",
+ "terms": "رابط لشارع ثانوي"
+ },
+ "highway/service": {
+ "name": "طريق خدمة",
+ "terms": "شارع خدمي,طريق خدمة,طريق مؤدي لمكان خدمة,طريق مؤدي لمكان خدمات"
+ },
+ "highway/service/alley": {
+ "name": "زقاق / ممر",
+ "terms": "زقاق,ممر"
+ },
+ "highway/service/drive-through": {
+ "name": "ممر الطلب بالسيارة",
+ "terms": "ممر الطلب بالسيارة"
+ },
+ "highway/service/driveway": {
+ "name": "طريق مؤدي لمسكن",
+ "terms": "ممر السكن,طريق مؤدية لمسكن,طريق لمسكن"
+ },
+ "highway/service/emergency_access": {
+ "name": "ممر/طريق طوارئ",
+ "terms": "ممر الطوارئ"
+ },
+ "highway/service/parking_aisle": {
+ "name": "طريق داخل مواقف السيارات",
+ "terms": "ممر مواقف السيارات,طريق داخل مواقف السيارات,طريق بين مواقف السيارات,طريق يمر من خلال مواقف السيارات"
+ },
+ "highway/services": {
+ "name": "منطقة خدمة",
+ "terms": "خدمة سيارات; منطقة خدمة سيارات; منطقة خدمية"
+ },
+ "highway/speed_camera": {
+ "name": "كاميرا مراقبة السرعة",
+ "terms": "كاميرا مراقبة السرعة"
+ },
+ "highway/speed_display": {
+ "name": "إشارة تظهر سرعتك عبر الرادار",
+ "terms": "إشارة تظهر سرعتك عبر الرادار,علامة تظهر سرعتك عبر الرادار"
+ },
+ "highway/steps": {
+ "name": "درج/سلم",
+ "terms": "درج,سلم"
+ },
+ "highway/steps/conveying": {
+ "name": "سلم كهربائى",
+ "terms": "سلم متحرك,سلم كهرابائي,سلم آلي,درج آلي"
+ },
+ "highway/stop": {
+ "name": "إشارة توقف",
+ "terms": "إشارة توقف، ممنوع الوقوف، قف"
+ },
+ "highway/street_lamp": {
+ "name": "عمود إنارة شارع",
+ "terms": "مصباح الشارع"
+ },
+ "highway/tertiary": {
+ "name": "طريق ثالثي",
+ "terms": "شارع ثالثي"
+ },
+ "highway/tertiary_link": {
+ "name": "وصلة لطريق ثالثي",
+ "terms": "رابط لشارع ثالثي"
+ },
+ "highway/toll_gantry": {
+ "name": "بوابة تحصيل الرسوم آلياً",
+ "terms": "بوابة تحصيل الرسوم آلياً"
+ },
+ "highway/track": {
+ "name": "طريق غير معبد/ردمية",
+ "terms": "غير معبد,دمية,طريق وعر,دفع رباعي,طريق زراعي,زراعي,درب"
+ },
+ "highway/traffic_mirror": {
+ "name": "مرآة مرور",
+ "terms": "مرآة; مرور; مراية"
+ },
+ "highway/traffic_signals": {
+ "name": "إشارات مرور",
+ "terms": "اشارة; اشارات; اشارة مرور"
+ },
+ "highway/trailhead": {
+ "name": "نقطة بداية مسارات المشي",
+ "terms": "نقطة بداية مسارات المشي,بداية مسار الهايكنج,بداية مسار الراجلة"
+ },
+ "highway/trunk": {
+ "name": "طريق رئيسي",
+ "terms": "شارع أساسي,شارع رئيسي"
+ },
+ "highway/trunk_link": {
+ "name": "وصلة لطريق رئيسي",
+ "terms": "رابط لشارع رئيسي"
+ },
+ "highway/turning_circle": {
+ "name": "دائرة للرجوع للخلف",
+ "terms": "دائرة رجوع في نهاية طريق"
+ },
+ "highway/turning_loop": {
+ "name": "دائرة رجوع (جزيرة)",
+ "terms": "دائرة رجوع (جزيرة)"
+ },
+ "highway/unclassified": {
+ "name": "طريق غير مصنف",
+ "terms": "طريق غير مصنف"
+ },
+ "historic": {
+ "name": "موقع تاريخي/قديم",
+ "terms": "موقع تأريخي"
+ },
+ "historic/archaeological_site": {
+ "name": "موقع أثري",
+ "terms": "موقع أثري"
+ },
+ "historic/boundary_stone": {
+ "name": "حجر/علامة حدودية",
+ "terms": "صخرة حدودية,حجر الحدود التاريخي,حجر/علامة حدودية"
+ },
+ "historic/building": {
+ "name": "مبنى تاريخي",
+ "terms": "مبنى تاريخي"
+ },
+ "historic/castle": {
+ "name": "حصن / قلعة",
+ "terms": "حصن; قلعة; قصر"
+ },
+ "historic/castle/fortress": {
+ "name": "حصن تاريخي",
+ "terms": "حصن تاريخي"
+ },
+ "historic/castle/palace": {
+ "name": "قصر",
+ "terms": "قصر"
+ },
+ "historic/castle/stately": {
+ "name": "قصر فاخر",
+ "terms": "قصر فاخر"
+ },
+ "historic/city_gate": {
+ "name": "بوابة المدينة",
+ "terms": "بوابة المدينة"
+ },
+ "historic/fort": {
+ "name": "حصن عسكري",
+ "terms": "حصن عسكري"
+ },
+ "historic/manor": {
+ "name": "قصر سكني قديم/تاريخي",
+ "terms": "قصر سكني,المقر الرئيسي لسيد القصر"
+ },
+ "historic/memorial": {
+ "name": "نصب تذكاري",
+ "terms": "نصب تذكاري"
+ },
+ "historic/memorial/plaque": {
+ "name": "Commemorative Plaque"
+ },
+ "historic/monument": {
+ "name": "نصب تذكاري",
+ "terms": "نصب تذكاري,مبنى تذكاري"
+ },
+ "historic/pillory": {
+ "name": "منصة صلب للتشهير بالمجرمين",
+ "terms": "منصة صلب للتشهير بالمجرمين"
+ },
+ "historic/ruins": {
+ "name": "أطلال/أنقاض/خرائب",
+ "terms": "أطلال,أنقاض,خرائب"
+ },
+ "historic/tomb": {
+ "name": "قبر / ضريح",
+ "terms": "قبر، ضريح"
+ },
+ "historic/wayside_cross": {
+ "name": "تقاطع جانب الطريق"
+ },
+ "historic/wayside_shrine": {
+ "name": "Wayside Shrine",
+ "terms": "مقام نصراني على الطريق"
+ },
+ "historic/wreck": {
+ "name": "ركام سفينة",
+ "terms": "ركام سفينة,ركام قارب,ركام مركب بحري"
+ },
+ "indoor": {
+ "name": "عناصر داخل المباني"
+ },
+ "indoor/area": {
+ "name": "مساحة داخل مبنى",
+ "terms": "مساحة داخل مبنى,مساحة داخلية,مساحة داخل المبنى,مساحة في المبنى"
+ },
+ "indoor/corridor": {
+ "name": "ممر داخل المبنى",
+ "terms": "ممر داخل المبنى"
+ },
+ "indoor/corridor_line": {
+ "name": "ممر داخل المبنى"
+ },
+ "indoor/door": {
+ "name": "باب داخل المبنى",
+ "terms": "باب داخل المبنى,باب داخلي"
+ },
+ "indoor/elevator": {
+ "name": "غرفة للمصعد داخل المبنى",
+ "terms": "غرفة للمصعد داخل المبنى,منور للمصعد داخل المبنى"
+ },
+ "indoor/room": {
+ "name": "غرفة",
+ "terms": "غرفة,حجرة,أوضة,غرف,الغرفة"
+ },
+ "indoor/stairs": {
+ "name": "درج داخل المبنى",
+ "terms": "درج داخل المبنى"
+ },
+ "indoor/wall": {
+ "name": "جدار داخل المبنى",
+ "terms": "جدار داخل المبنى,جدار داخلي"
+ },
+ "internet_access/wlan": {
+ "name": "نقطة Wi-Fi",
+ "terms": "نقطة wi-fi"
+ },
+ "junction": {
+ "name": "تقاطع",
+ "terms": "مفترق طرق,تقاطع"
+ },
+ "landuse": {
+ "name": "عناصر استخدامات الأراض"
+ },
+ "landuse/allotments": {
+ "name": "الحدائق/المزارع المحصصة",
+ "terms": "المزارع المحصصة,الحدائق المحصصة"
+ },
+ "landuse/aquaculture": {
+ "name": "مزرعة سمكية",
+ "terms": "مزرعة سمكية"
+ },
+ "landuse/basin": {
+ "name": "أرض حوضية طبيعية تحتوي الماء"
+ },
+ "landuse/brownfield": {
+ "name": "أرض صناعية سابقة",
+ "terms": "أرض صناعية سابقة"
+ },
+ "landuse/cemetery": {
+ "name": "مقبرة",
+ "terms": "مقبرة,مدفن,جبانة"
+ },
+ "landuse/churchyard": {
+ "name": "Churchyard"
+ },
+ "landuse/commercial": {
+ "name": "منطقة تجارية",
+ "terms": "تجارية; تجاري; منطقة تجارة"
+ },
+ "landuse/construction": {
+ "name": "منطقة بناء تحت الإنشاء",
+ "terms": "تحت الإنشاء"
+ },
+ "landuse/education": {
+ "name": "الحرم الجامعي التعليمي",
+ "terms": "الحرم الجامعي"
+ },
+ "landuse/farm": {
+ "name": "أرض زراعية"
+ },
+ "landuse/farmland": {
+ "name": "أرض زراعية",
+ "terms": "أرض زراعية، فلاحة"
+ },
+ "landuse/farmyard": {
+ "name": "مرافق مزرعة",
+ "terms": "مرافق مزرعة,بنايات مزرعة,منشاءات مزرعة"
+ },
+ "landuse/flowerbed": {
+ "name": "مساحة زهور زينة",
+ "terms": "مساحة زهور زينة"
+ },
+ "landuse/forest": {
+ "name": "الغابات المُدارة",
+ "terms": "الغابات المُدارة"
+ },
+ "landuse/garages": {
+ "name": "مرائب/كراجات",
+ "terms": "مرائب,كراجات,جراجات,أراضي مرئاب"
+ },
+ "landuse/grass": {
+ "name": "عشب",
+ "terms": "عشب,غطاء أخضر"
+ },
+ "landuse/greenfield": {
+ "name": "حقول خضراء ستتحول لمباني",
+ "terms": "حقل أخضر,أرض لم تطور,أرض زراعية لم يبنى عليها,قطعة أرض (خضراء),أرض فضاء,أرض بيضاء"
+ },
+ "landuse/greenhouse_horticulture": {
+ "name": "محمية زراعية",
+ "terms": "الدفيئات الزراعية,محمية زراعية,بيت محمي زراعي"
+ },
+ "landuse/harbour": {
+ "name": "ميناء/مرفأ",
+ "terms": "مرفأ، ميناء"
+ },
+ "landuse/industrial": {
+ "name": "منطقة صناعية",
+ "terms": "صناعية; صناعي; صناعات; منطقة صناعات; منطقة صناعة; صناعة; صنع"
+ },
+ "landuse/industrial/scrap_yard": {
+ "name": "تشليح/خردة سيارات",
+ "terms": "تشليح سيارات,خردة سيارات"
+ },
+ "landuse/industrial/slaughterhouse": {
+ "name": "مسلخ",
+ "terms": "مسلخ"
+ },
+ "landuse/landfill": {
+ "name": "مكب نفايات",
+ "terms": "مكب نفايات"
+ },
+ "landuse/meadow": {
+ "name": "مرعى/مرج/روضة",
+ "terms": "مرج,روضة,مخضرة,مرعى"
+ },
+ "landuse/military": {
+ "name": "منطقة عسكرية",
+ "terms": "جيش,قوات مسلحة,عسكرية"
+ },
+ "landuse/military/airfield": {
+ "name": "قاعدة طيران جوية",
+ "terms": "قاعدة جوية، مطار عسكري"
+ },
+ "landuse/military/barracks": {
+ "name": "ثكنة عسكرية",
+ "terms": "ثكنة عسكرية"
+ },
+ "landuse/military/base": {
+ "name": "قاعدة عسكرية",
+ "terms": "قاعدة عسركية,قاعدة تابعة للجيش"
+ },
+ "landuse/military/base/navy": {
+ "name": "قاعدة بحرية",
+ "terms": "قاعدة بحرية,قاعدة مائية"
+ },
+ "landuse/military/obstacle_course": {
+ "name": "تدريب عسكري لتجاوز العقبات",
+ "terms": "تدريب عسكري لتجاوز العقبات"
+ },
+ "landuse/military/range": {
+ "name": "ميدان الرماية العسكرية",
+ "terms": "ميدان الرماية العسكرية"
+ },
+ "landuse/military/training_area": {
+ "name": "منطقة تدريب عسكري",
+ "terms": "منطقة تدريب عسكري"
+ },
+ "landuse/orchard": {
+ "name": "بستان",
+ "terms": "بستان,بيارة,أشجار البستان"
+ },
+ "landuse/plant_nursery": {
+ "name": "مشتل",
+ "terms": "مشتل"
+ },
+ "landuse/pond": {
+ "name": "بركة ماء"
+ },
+ "landuse/quarry": {
+ "name": "كسّارة، مقلع حجارة",
+ "terms": "محجر,مقلع"
+ },
+ "landuse/railway": {
+ "name": "منطقة السكك الحديدية",
+ "terms": "منطقة السكك الحديدية"
+ },
+ "landuse/recreation_ground": {
+ "name": "ميدان الألعاب",
+ "terms": "ميدان الألعاب"
+ },
+ "landuse/religious": {
+ "name": "منطقة دينية",
+ "terms": "منطقة دينية"
+ },
+ "landuse/reservoir": {
+ "name": "خزان"
+ },
+ "landuse/residential": {
+ "name": "منطقة سكنية",
+ "terms": "منطقة سكانية; سكان; سكنية; سكن; منطقة سكن"
+ },
+ "landuse/residential/apartments": {
+ "name": "مجمع شقق سكنية",
+ "terms": "مجمع شقق سكنية,مجمع سكني,مجمع شقق"
+ },
+ "landuse/retail": {
+ "name": "منطقة بيع بالتجزئة",
+ "terms": "بيع قطاعي,بيع بالتجزئة"
+ },
+ "landuse/salt_pond": {
+ "name": "ملاحات",
+ "terms": "برك تبخير الماء لاستخراج الملح,ملح,سباخ,تبخير"
+ },
+ "landuse/vineyard": {
+ "name": "حقل عنب",
+ "terms": "مزرعة عنب,حقل عنب"
+ },
+ "landuse/winter_sports": {
+ "name": "منطقة الرياضات الشتوية",
+ "terms": "منطقة الرياضات الشتوية"
+ },
+ "leisure": {
+ "name": "عناصر الترفيه"
+ },
+ "leisure/adult_gaming_centre": {
+ "name": "Adult Gaming Center"
+ },
+ "leisure/amusement_arcade": {
+ "name": "Amusement Arcade"
+ },
+ "leisure/bandstand": {
+ "name": "Bandstand"
+ },
+ "leisure/beach_resort": {
+ "name": "منتجع الشاطئ",
+ "terms": "منتجع الشاطئ"
+ },
+ "leisure/bird_hide": {
+ "name": "مكان لمراقبة الطيور",
+ "terms": "مكان لمراقبة الطيور"
+ },
+ "leisure/bleachers": {
+ "name": "Bleachers"
+ },
+ "leisure/bowling_alley": {
+ "name": "بولينغ",
+ "terms": "بولينغ، بولينج"
+ },
+ "leisure/common": {
+ "name": "أرض مشتركة",
+ "terms": "مشّاع، متعارف عليه، شعبي، شائع"
+ },
+ "leisure/dance": {
+ "name": "قاعة الرقص",
+ "terms": "قاعة الرقص"
+ },
+ "leisure/disc_golf_course": {
+ "name": "مكان للعب قرص الجولف",
+ "terms": "مكان للعب قرص الجولف"
+ },
+ "leisure/dog_park": {
+ "name": "حديقة كلاب",
+ "terms": "حديقة كلاب"
+ },
+ "leisure/escape_game": {
+ "name": "غرفة الهروب",
+ "terms": "غرفة الهروب"
+ },
+ "leisure/firepit": {
+ "name": "حفرة لإشعال نار",
+ "terms": "حفرة لإشعال نار"
+ },
+ "leisure/fishing": {
+ "name": "منطقة صيد سمك",
+ "terms": "منطقة صيد سمك"
+ },
+ "leisure/fitness_centre": {
+ "name": "مركز لياقة بدنية",
+ "terms": "مركز اللياقة البدنية، نادي صحي"
+ },
+ "leisure/fitness_centre/yoga": {
+ "name": "استوديو يوجا",
+ "terms": "استديو"
+ },
+ "leisure/fitness_station": {
+ "name": "مكان اللياقة البدنية خارج المباني",
+ "terms": "مكان اللياقة البدنية خارج المباني"
+ },
+ "leisure/fitness_station/balance_beam": {
+ "name": "تمرين عارضة التوازن",
+ "terms": "تمرين عارضة التوازن"
+ },
+ "leisure/fitness_station/box": {
+ "name": "صندوق للتمرين",
+ "terms": "صندوق للتمرين"
+ },
+ "leisure/fitness_station/horizontal_bar": {
+ "name": "تمرين العارضة الأفقية",
+ "terms": "تمرين العارضة الأفقية"
+ },
+ "leisure/fitness_station/horizontal_ladder": {
+ "name": "تمرين القضبان الأفقية",
+ "terms": "تمرين القضبان الأفقية"
+ },
+ "leisure/fitness_station/hyperextension": {
+ "name": "مكان تمرين تمديد الظهر",
+ "terms": "مكان تمرين تمديد الظهر"
+ },
+ "leisure/fitness_station/parallel_bars": {
+ "name": "قضبان متوازية",
+ "terms": "قضبان متوازية"
+ },
+ "leisure/fitness_station/push-up": {
+ "name": "مكان تمرين الضغط",
+ "terms": "مكان تمرين الضغط"
+ },
+ "leisure/fitness_station/rings": {
+ "name": "حلقات التمرين",
+ "terms": "حلقات التمرين"
+ },
+ "leisure/fitness_station/sign": {
+ "name": "لافتة ارشادات التمرين",
+ "terms": "لافتة تعليمات التمرين"
+ },
+ "leisure/fitness_station/sit-up": {
+ "name": "مكان تمرين عضلات البطن",
+ "terms": "مكان تمرين عضلات البطن"
+ },
+ "leisure/fitness_station/stairs": {
+ "name": "تمرين الدرج",
+ "terms": "تمرين الدرج"
+ },
+ "leisure/garden": {
+ "name": "حديقة",
+ "terms": "حديقة"
+ },
+ "leisure/garden/botanical": {
+ "name": "حديقة نباتية",
+ "terms": "حديقة نباتية"
+ },
+ "leisure/garden/community": {
+ "name": "حديقة مجتمعية",
+ "terms": "حديقة مجتمعية"
+ },
+ "leisure/golf_course": {
+ "name": "معلب جولف",
+ "terms": "معلب جولف، غولف"
+ },
+ "leisure/hackerspace": {
+ "name": "معمل هاكر",
+ "terms": "معمل هاكر"
+ },
+ "leisure/horse_riding": {
+ "name": "مركز ركوب الخيل",
+ "terms": "مركز ركوب الخيل"
+ },
+ "leisure/ice_rink": {
+ "name": "حلبة تزلج",
+ "terms": "جليد,تزلج,حلبة"
+ },
+ "leisure/indoor_play": {
+ "name": "Indoor Play Center"
+ },
+ "leisure/marina": {
+ "name": "مرسى لليخوت والقوارب الصغيرة",
+ "terms": "حوض سفن,رصيف سفن,مرسى سفن"
+ },
+ "leisure/miniature_golf": {
+ "name": "ملعب الجولف المصغرة",
+ "terms": "ملعب الجولف المصغرة، غولف"
+ },
+ "leisure/nature_reserve": {
+ "name": "محمية طبيعية",
+ "terms": "محمية طبيعية"
+ },
+ "leisure/outdoor_seating": {
+ "name": "منطقة جلوس خارجية",
+ "terms": "منطقة جلوس خارجية"
+ },
+ "leisure/park": {
+ "name": "منتزه",
+ "terms": "منتزه، حديقة"
+ },
+ "leisure/picnic_table": {
+ "name": "طاولة نزهة",
+ "terms": "طاولة نزهة"
+ },
+ "leisure/picnic_table/chess": {
+ "name": "طاولة الشطرنج",
+ "terms": "طاولة الشطرنج"
+ },
+ "leisure/pitch": {
+ "name": "ملعب رياضي",
+ "terms": "ملعب رياضي"
+ },
+ "leisure/pitch/american_football": {
+ "name": "ملعب كرة قدم أمريكية",
+ "terms": "ملعب كرة قدم أمريكية"
+ },
+ "leisure/pitch/archery": {
+ "name": "ميدان الرماية (بالأسهم)",
+ "terms": "أسهم,نبل,رمي,تصويب,ميدان"
+ },
+ "leisure/pitch/australian_football": {
+ "name": "ملعب كرة قدم استرالية",
+ "terms": "ملعب كرة قدم استرالية"
+ },
+ "leisure/pitch/badminton": {
+ "name": "تنس الريشة",
+ "terms": "تنس,كرة,ريشة"
+ },
+ "leisure/pitch/baseball": {
+ "name": "ملعب البيسبول",
+ "terms": "ملعب البيسبول"
+ },
+ "leisure/pitch/basketball": {
+ "name": "ملعب كرة السلة",
+ "terms": "ملعب كرة السلة"
+ },
+ "leisure/pitch/beachvolleyball": {
+ "name": "ملعب كرة الطائرة الشاطئية",
+ "terms": "ملعب"
+ },
+ "leisure/pitch/boules": {
+ "name": "ملعب كرة حديدية",
+ "terms": "ملعب كرة حديدية"
+ },
+ "leisure/pitch/bowls": {
+ "name": "بولينج جرين",
+ "terms": "بولينج جرين"
+ },
+ "leisure/pitch/chess": {
+ "name": "قطعة شطرنج كبيرة",
+ "terms": "قطعة شطرنج كبيرة"
+ },
+ "leisure/pitch/cricket": {
+ "name": "ملعب كريكت",
+ "terms": "ملعب كريكت"
+ },
+ "leisure/pitch/field_hockey": {
+ "name": "مساحة ملعب الهوكى",
+ "terms": "مساحة ملعب الهوكى"
+ },
+ "leisure/pitch/four_square": {
+ "name": "ساحة أربعة مربعات",
+ "terms": "ساحة أربعة مربعات"
+ },
+ "leisure/pitch/funnel_ball": {
+ "name": "قمع الكرة المحكمة",
+ "terms": "قمع الكرة المحكمة"
+ },
+ "leisure/pitch/futsal": {
+ "name": "كرة الصالات",
+ "terms": "كرة الصالات"
+ },
+ "leisure/pitch/gaga": {
+ "name": "غاغا بيت",
+ "terms": "غاغا بيت"
+ },
+ "leisure/pitch/horseshoes": {
+ "name": "حفرة حدوة الحصان",
+ "terms": "حفرة حدوة الحصان"
+ },
+ "leisure/pitch/netball": {
+ "name": "كرة السلة",
+ "terms": "تنس,كرة,سلة,شبكة"
+ },
+ "leisure/pitch/padel": {
+ "name": "ملعب باديل",
+ "terms": "ملعب باديل"
+ },
+ "leisure/pitch/paintball": {
+ "name": "ملعب لعبة كرات الطلاء",
+ "terms": "ملعب لعبة بينتبول"
+ },
+ "leisure/pitch/pickleball": {
+ "name": "ملعب كرة الطائرة",
+ "terms": "ملعب"
+ },
+ "leisure/pitch/rugby_league": {
+ "name": "ملعب اتحاد الرغبي",
+ "terms": "ملعب اتحاد الرغبي، رجبي"
+ },
+ "leisure/pitch/rugby_union": {
+ "name": "ملعب دوري الرغبي",
+ "terms": "ملعب دوري الرغبي، رجبي"
+ },
+ "leisure/pitch/shooting": {
+ "name": "حقل رماية",
+ "terms": "ميدان رماية"
+ },
+ "leisure/pitch/shuffleboard": {
+ "name": "شفلبورد",
+ "terms": "شفلبورد"
+ },
+ "leisure/pitch/skateboard": {
+ "name": "حديقة تزلج",
+ "terms": "حديقة تزلج، ساحة تزلج"
+ },
+ "leisure/pitch/soccer": {
+ "name": "ملعب كرة القدم",
+ "terms": "ملعب كرة القدم"
+ },
+ "leisure/pitch/softball": {
+ "name": "ملعب سوفتبول",
+ "terms": "ملعب سوفتبول"
+ },
+ "leisure/pitch/table_soccer": {
+ "name": "طاولة كرة قدم الطاولة",
+ "terms": "طاولة كرة قدم الطاولة,طاولة فوسبول,طاولة فيشة"
+ },
+ "leisure/pitch/table_tennis": {
+ "name": "طاولة كرة المضرب",
+ "terms": "طاولة كرة المضرب"
+ },
+ "leisure/pitch/tennis": {
+ "name": "ملعب تنس",
+ "terms": "معلب كرة التنس"
+ },
+ "leisure/pitch/tetherball": {
+ "name": "ملعب كرة الحبل",
+ "terms": "ملعب كرة الحبل"
+ },
+ "leisure/pitch/volleyball": {
+ "name": "ملعب كرة الطائرة",
+ "terms": "ملعب"
+ },
+ "leisure/playground": {
+ "name": "ساحة لعب",
+ "terms": "ساحة ألعاب للأطفال"
+ },
+ "leisure/playground/indoor": {
+ "name": "ملعب داخلي",
+ "terms": "ملعب داخلي"
+ },
+ "leisure/resort": {
+ "name": "منتجع",
+ "terms": "منتجع"
+ },
+ "leisure/sauna": {
+ "name": "ساونا",
+ "terms": "سونا"
+ },
+ "leisure/slipway": {
+ "name": "مزلقة سفن",
+ "terms": "مزلقة سفن"
+ },
+ "leisure/slipway_drivable": {
+ "name": "منزلق سفن وقوارب (قابل للقيادة)",
+ "terms": "منزلق سفن وقوارب (قابل للقيادة)"
+ },
+ "leisure/sports_centre": {
+ "name": "مركز/مجمع رياضي",
+ "terms": "مركز رياضي; نادي رياضي; مجمع رياضي"
+ },
+ "leisure/sports_centre/climbing": {
+ "name": "مركز رياضة التسلق",
+ "terms": "مركز رياضة التسلق"
+ },
+ "leisure/sports_centre/horse_racing": {
+ "name": "مضمار سباق الخيل",
+ "terms": "مضمار سباق الخيل"
+ },
+ "leisure/sports_centre/shooting": {
+ "name": "مرفق ميدان الرماية",
+ "terms": "مرفق ميدان الرماية"
+ },
+ "leisure/sports_centre/swimming": {
+ "name": "مرفق بركة سباحة",
+ "terms": "حمام سباحة; حوض سباحة; حمام; حوض; سباحة; مسبح"
+ },
+ "leisure/sports_hall": {
+ "name": "قاعة رياضية",
+ "terms": "قاعة رياضية"
+ },
+ "leisure/stadium": {
+ "name": "استاد رياضي",
+ "terms": "مدرج; مدرج للألعاب الرياضية; استاد رياضي; استاد"
+ },
+ "leisure/swimming_area": {
+ "name": "منطقة سباحة طبيعية",
+ "terms": "منطقة سباحة طبيعية"
+ },
+ "leisure/swimming_pool": {
+ "name": "بركة سباحة",
+ "terms": "حمام سباحة; حوض سباحة; حمام; حوض; سباحة; مسبح"
+ },
+ "leisure/track": {
+ "name": "مضمار السباق (غير رياضة السيارات)",
+ "terms": "مضمار السباق (غير رياضة السيارات)"
+ },
+ "leisure/track/athletics/running": {
+ "name": "مسار جري"
+ },
+ "leisure/track/cycling": {
+ "name": "مسار دراجات هوائية",
+ "terms": "مسار دراجات هوائية"
+ },
+ "leisure/track/horse_racing": {
+ "name": "مضمار سباق الخيل",
+ "terms": "مضمار سباق الخيل"
+ },
+ "leisure/track/running": {
+ "name": "مسار جري",
+ "terms": "مسار جري"
+ },
+ "leisure/trampoline_park": {
+ "name": "منتزه النُطيطة (الترامبولين)",
+ "terms": "منتزه النُطيطة (الترامبولين)"
+ },
+ "leisure/water_park": {
+ "name": "Water Park",
+ "terms": "ملاهي مائية; حديقة مائية; منتزه مائي"
+ },
+ "line": {
+ "name": "خط",
+ "terms": "خط"
+ },
+ "man_made": {
+ "name": "عنصر من صنع الانسان"
+ },
+ "man_made/adit": {
+ "name": "مدخل منجم",
+ "terms": "مدخل; منجم; كهف;"
+ },
+ "man_made/antenna": {
+ "name": "هوائي (أنتنا)",
+ "terms": "هوائي,أنتنا,أنتل,انتل,ايريال,اريال,هوائي بث,جهاز بث,إريال,إيريال"
+ },
+ "man_made/beacon": {
+ "name": "كبير مثبت بشكل رباعي",
+ "terms": "منارة"
+ },
+ "man_made/beehive": {
+ "name": "منحلة",
+ "terms": "منحلة,خلية نحل"
+ },
+ "man_made/breakwater": {
+ "name": "كاسر الأمواج",
+ "terms": "كاسر الأمواج"
+ },
+ "man_made/bridge": {
+ "name": "منطقة جسر",
+ "terms": "منطقة جسر,مساحة جسر"
+ },
+ "man_made/bunker_silo": {
+ "name": "خنادق وأماكن تخزين الصوامع",
+ "terms": "خنادق وأماكن تخزين الصوامع"
+ },
+ "man_made/cairn": {
+ "name": "رِجم",
+ "terms": "رِجْم,رجوم,صخور مركومة"
+ },
+ "man_made/carpet_hanger": {
+ "name": "منشر سجاد",
+ "terms": "منشر سجاد,منشر موكيت"
+ },
+ "man_made/chimney": {
+ "name": "مدخنة",
+ "terms": "مدخنة"
+ },
+ "man_made/clearcut": {
+ "name": "غابة تم قطع أشجارها",
+ "terms": "غابة مقطوعة أشجارها"
+ },
+ "man_made/compass_rose": {
+ "name": "وردة البوصلة",
+ "terms": "وردة الريح"
+ },
+ "man_made/courtyard": {
+ "name": "فناء"
+ },
+ "man_made/crane": {
+ "name": "رافعة ثابتة",
+ "terms": "رافعة"
+ },
+ "man_made/crane/portal_crane": {
+ "name": "رافعة جسرية"
+ },
+ "man_made/cross": {
+ "name": "Cross"
+ },
+ "man_made/cutline": {
+ "name": "خط مستقيم مقطوع في غابة",
+ "terms": "خط مستقيم مقطوع في غابة"
+ },
+ "man_made/dovecote": {
+ "name": "برج حمام",
+ "terms": "برج حمام"
+ },
+ "man_made/dyke": {
+ "name": "حاجز/عقم لمنع تدفق المياه",
+ "terms": "عقم لمنع تدفق المياه,حاجز لمنع تدفق المياه"
+ },
+ "man_made/embankment": {
+ "name": "سطح مرفوع يسير عليه الطريق (قد تكون مردومة)",
+ "terms": "منحدر اصطناعي,منحدر حاد,نزلة من طريق مرفوع,انحدار بسيط,انحدار مستوى الأرض"
+ },
+ "man_made/flagpole": {
+ "name": "سارية العلم",
+ "terms": "سارية العلم"
+ },
+ "man_made/fuel_pump": {
+ "name": "مضخة وقود",
+ "terms": "مضخة وقود,مضخة غاز,مضخة بترول,مضخة جاز,مضخة سولار"
+ },
+ "man_made/gasometer": {
+ "name": "خزان غاز كبير فوق الأرض",
+ "terms": "خزان غاز كبير فوق الأرض,خزان غاز كبير,خزان غاز,مستودع غاز,حاوية غاز كبيرة"
+ },
+ "man_made/goods_conveyor": {
+ "name": "مسار ناقل للمواد على خط إنتاج",
+ "terms": "مسار ناقل للمواد على خط إنتاج"
+ },
+ "man_made/groyne": {
+ "name": "حاجز للرواسب البحرية",
+ "terms": "حاجز للرواسب البحرية,سد للرواسب البحرية,سد طولي يمنع انتقال الرواسب على الجوانب"
+ },
+ "man_made/lighthouse": {
+ "name": "منارة/فنار",
+ "terms": "منارة,فنارة,فنار"
+ },
+ "man_made/manhole": {
+ "name": "غطاء غرفة التفتيش",
+ "terms": "غطاء غرفة التفتيش"
+ },
+ "man_made/manhole/drain": {
+ "name": "فتحة تصريف مياه الأمطار",
+ "terms": "فتحة تصريف مياه الأمطار"
+ },
+ "man_made/manhole/gas": {
+ "name": "فتحة تفتيش خدمات الغاز",
+ "terms": "فتحة تفتيش خدمات الغاز"
+ },
+ "man_made/manhole/power": {
+ "name": "فتحة تفتيش خدمات الطاقة",
+ "terms": "فتحة تفتيش خدمات الطاقة"
+ },
+ "man_made/manhole/sewer": {
+ "name": "فتحة تفتيش الصرف الصحي",
+ "terms": "فتحة تفتيش الصرف الصحي"
+ },
+ "man_made/manhole/telecom": {
+ "name": "فتحة تفتيش خدمة الاتصالات",
+ "terms": "فتحة تفتيش خدمة الاتصالات"
+ },
+ "man_made/manhole/water": {
+ "name": "فتحة تفتيش خدمة المياه",
+ "terms": "فتحة تفتيش خدمة المياه"
+ },
+ "man_made/mast": {
+ "name": "عمود/برج عمودي",
+ "terms": "عمود,برج"
+ },
+ "man_made/mast/communication": {
+ "name": "برج اتصالات",
+ "terms": "برج اتصالات"
+ },
+ "man_made/mast/communication/mobile_phone": {
+ "name": "برج اتصالات هواتف محمولة",
+ "terms": "برج اتصالات هواتف محمولة"
+ },
+ "man_made/mast/communication/radio": {
+ "name": "برج بث موجات الراديو",
+ "terms": "برج بث موجات الراديو"
+ },
+ "man_made/mast/communication/television": {
+ "name": "برج بث التلفاز",
+ "terms": "برج بث التلفاز"
+ },
+ "man_made/mast/lighting": {
+ "name": "صاري الإضاءة",
+ "terms": "صاري الإضاءة"
+ },
+ "man_made/mineshaft": {
+ "name": "نفق تعدين/منجم",
+ "terms": "برج منجم,نفق تعدين/منجم"
+ },
+ "man_made/monitoring_station": {
+ "name": "محطة رصد",
+ "terms": "محطة الرصد"
+ },
+ "man_made/obelisk": {
+ "name": "Obelisk"
+ },
+ "man_made/observatory": {
+ "name": "مرصد",
+ "terms": "مرصد"
+ },
+ "man_made/petroleum_well": {
+ "name": "بئر نفط",
+ "terms": "بئر نفط، بترول"
+ },
+ "man_made/pier": {
+ "name": "رصيف بحري",
+ "terms": "رصيف بحري"
+ },
+ "man_made/pier/floating": {
+ "name": "رصيف عائم",
+ "terms": "رصيف عائم"
+ },
+ "man_made/pipeline": {
+ "name": "خط أنابيب",
+ "terms": "خط أنابيب"
+ },
+ "man_made/pipeline/underground": {
+ "name": "خط أنابيب تحت الأرض",
+ "terms": "خط أنابيب تحت الأرض"
+ },
+ "man_made/planter": {
+ "name": "أصيص",
+ "terms": "أصيص,قصرية,محبق,إناء زراعي"
+ },
+ "man_made/pumping_station": {
+ "name": "محطة ضخ",
+ "terms": "محطة ضخ"
+ },
+ "man_made/reservoir_covered": {
+ "name": "خزان مياه مغطى",
+ "terms": "خزان مياه مغطى"
+ },
+ "man_made/silo": {
+ "name": "صومعة/صوامع الغلال",
+ "terms": "صومعة; صومعة غلال"
+ },
+ "man_made/storage_tank": {
+ "name": "خزان سوائل أو غاز (فوق الأرض)",
+ "terms": "خزان سوائل أو غاز مضغوط"
+ },
+ "man_made/storage_tank/water": {
+ "name": "خزان ماء",
+ "terms": "خزان مياه,خزان ماء"
+ },
+ "man_made/street_cabinet": {
+ "name": "كبينة مرافق وخدمات في الشارع",
+ "terms": "كبينة مرافق وخدمات في الشارع,خزنة مرافق وخدمات في الشارع"
+ },
+ "man_made/surveillance": {
+ "name": "مراقبة ورصد",
+ "terms": "مراقبة"
+ },
+ "man_made/surveillance/camera": {
+ "name": "كاميرة مراقبة",
+ "terms": "كاميرة مراقبة"
+ },
+ "man_made/survey_point": {
+ "name": "نقطة استكشاف",
+ "terms": "نقطة مسح"
+ },
+ "man_made/tower": {
+ "name": "برج",
+ "terms": "برج"
+ },
+ "man_made/tower/bell_tower": {
+ "name": "Bell Tower"
+ },
+ "man_made/tower/communication": {
+ "name": "برج اتصالات",
+ "terms": "برج اتصالات"
+ },
+ "man_made/tower/cooling": {
+ "name": "برج تبريد",
+ "terms": "برج تبريد"
+ },
+ "man_made/tower/defensive": {
+ "name": "برج محصن",
+ "terms": "برج محصن"
+ },
+ "man_made/tower/diving": {
+ "name": "منصة غطس"
+ },
+ "man_made/tower/minaret": {
+ "name": "منارة مسجد (مئذنة)",
+ "terms": "مِئْذَنَةُ,مئذنة,منارة,منارة مسجد,منارة جامعة"
+ },
+ "man_made/tower/observation": {
+ "name": "برج مراقبة",
+ "terms": "برج مراقبة"
+ },
+ "man_made/tower/pagoda": {
+ "name": "Pagoda"
+ },
+ "man_made/tunnel": {
+ "name": "مساحة نفق",
+ "terms": "مساحة نفق"
+ },
+ "man_made/utility_pole": {
+ "name": "عمود توصيل كيابل طاقة/اتصالات",
+ "terms": "عمود توصيل خدمات (كهرباء،اتصالات..الخ)"
+ },
+ "man_made/video_wall": {
+ "name": "شاشة رقمية",
+ "terms": "شاشة رقمية"
+ },
+ "man_made/wastewater_plant": {
+ "name": "محطة صرف صحي",
+ "terms": "محطة صرف صحي"
+ },
+ "man_made/water_tap": {
+ "name": "صنبور ماء",
+ "terms": "صنبور ماء"
+ },
+ "man_made/water_tower": {
+ "name": "برج خزان مياه",
+ "terms": "برج خزان مياه"
+ },
+ "man_made/water_well": {
+ "name": "بئر ماء",
+ "terms": "بئر ماء"
+ },
+ "man_made/water_works": {
+ "name": "محطة معالجة المياه",
+ "terms": "محطة معالجة المياه"
+ },
+ "man_made/watermill": {
+ "name": "طاحونة مائية",
+ "terms": "طاحونة مائية"
+ },
+ "man_made/windmill": {
+ "name": "طاحونة هوائية",
+ "terms": "طاحونة هوائية"
+ },
+ "man_made/windpump": {
+ "name": "مضخة هوائية",
+ "terms": "مضخة هوائية"
+ },
+ "man_made/works": {
+ "name": "مصنع",
+ "terms": "مصنع"
+ },
+ "man_made/yes": {
+ "name": "عنصر من صنع الإنسان (نوع غير محدد)"
+ },
+ "marker": {
+ "name": "علامات (لافتات)",
+ "terms": "علامات,لافتات"
+ },
+ "marker/utility": {
+ "name": "علامة مرفق أو خدمة",
+ "terms": "علامة مرفق أو خدمة"
+ },
+ "marker/utility/power": {
+ "name": "علامة الطاقة/الكهرباء",
+ "terms": "علامة الطاقة/الكهرباء"
+ },
+ "military/bunker": {
+ "name": "مخبأ أو مستودع عسكري محصن",
+ "terms": "مخبأ أو مستودع عسكري محصن"
+ },
+ "military/checkpoint": {
+ "name": "نقطة تفتيش أو حاجز عسكري",
+ "terms": "نقطة تفتيش عسكرية,حاجز عسكري"
+ },
+ "military/nuclear_explosion_site": {
+ "name": "موقع انفجار نووي",
+ "terms": "موقع انفجار نووي"
+ },
+ "military/office": {
+ "name": "دائرة/مفوضية عسكرية",
+ "terms": "دائرة/مفوضية عسكرية"
+ },
+ "military/trench": {
+ "name": "خندق عسكري",
+ "terms": "خندق عسكري"
+ },
+ "natural": {
+ "name": "عنصر طبيعية"
+ },
+ "natural/bare_rock": {
+ "name": "مساحة لصخر أساس (القاعدة الصخرية) - حرة",
+ "terms": "صخر,صخور,صخر عاري,صخر الأديم,صخر أساس,القاعدة الصخرية,حرة,حلاة"
+ },
+ "natural/bay": {
+ "name": "خليج",
+ "terms": "خليج"
+ },
+ "natural/beach": {
+ "name": "شاطئ",
+ "terms": "شاطئ"
+ },
+ "natural/cape": {
+ "name": "رأس (بحري)",
+ "terms": "رأس بحري"
+ },
+ "natural/cave_entrance": {
+ "name": "مدخل كهف / غار",
+ "terms": "مدخل كهفي; كهف"
+ },
+ "natural/cliff": {
+ "name": "جُرف",
+ "terms": "جرف صخري"
+ },
+ "natural/coastline": {
+ "name": "ساحل",
+ "terms": "ساحل"
+ },
+ "natural/fell": {
+ "name": "هضبة",
+ "terms": "هضبة، تلة، مرتفع"
+ },
+ "natural/geyser": {
+ "name": "نبع المياه الفوار والحار",
+ "terms": "فوارة حارة"
+ },
+ "natural/glacier": {
+ "name": "نهر جليدي",
+ "terms": "نهر جليدي"
+ },
+ "natural/grassland": {
+ "name": "أراض عشبية/مرعى",
+ "terms": "مرعى,مرج,أرض معشوشبة,أراض عشبية"
+ },
+ "natural/heath": {
+ "name": "براح/قفار ( أراضي الأشجار القمئية)",
+ "terms": "براح,قفار ( أراضي الأشجار القمئية)"
+ },
+ "natural/hot_spring": {
+ "name": "العين الحمئة / الينبوع الساخن",
+ "terms": "العين الحمئة,الينبوع الساخن,ينبوع,عين,عيون,نبع,الحمئة"
+ },
+ "natural/mud": {
+ "name": "وحل",
+ "terms": "وحل,طين"
+ },
+ "natural/peak": {
+ "name": "قمة جبلية",
+ "terms": "قمة,ذروة,قمة جبل"
+ },
+ "natural/reef": {
+ "name": "شعاب مرجانية",
+ "terms": "شعاب"
+ },
+ "natural/ridge": {
+ "name": "سلسلة من القمم الجبلية",
+ "terms": "سلسلة من التلال الجبلية,سلاسل القمم الجبلية المتصلة"
+ },
+ "natural/rock": {
+ "name": "صخرة كبيرة متصلة بالأرض / صخرة بارزة عن الأرض",
+ "terms": "صخرة كبيرة متصلة بالأرض,صخرة بارزة عن الأرض"
+ },
+ "natural/saddle": {
+ "name": "السرج الجبلي (ممر جبلي)",
+ "terms": "ممر جبلي,سرج الجبلي"
+ },
+ "natural/sand": {
+ "name": "رمال/نفود",
+ "terms": "رمال,نفود"
+ },
+ "natural/scree": {
+ "name": "حصى / ركام حجارة",
+ "terms": "ركام حجارة، تلة، مجموعة صخور، تلة حصاة"
+ },
+ "natural/scrub": {
+ "name": "فيضة / روضة",
+ "terms": "فيضة,روضة,أراضي الأشجار القمئية"
+ },
+ "natural/shingle": {
+ "name": "حصى الشواطئ",
+ "terms": "حصى الشواطئ,حصى مياه الشواطئ,حصى السواحل"
+ },
+ "natural/shrub": {
+ "name": "شجيرة",
+ "terms": "شجيرة"
+ },
+ "natural/sinkhole": {
+ "name": "دِحل/خفس/هبوط أرضي"
+ },
+ "natural/spring": {
+ "name": "عين / نبع / ينبوع",
+ "terms": "نبع,منبع,عين,ينبوع,عيون"
+ },
+ "natural/stone": {
+ "name": "صخرة كبيرة غير متصلة بالأرض",
+ "terms": "صخرة كبيرة غير متصلة بالأرض"
+ },
+ "natural/strait": {
+ "name": "مضيق"
+ },
+ "natural/tree": {
+ "name": "شجرة",
+ "terms": "شجرة"
+ },
+ "natural/tree_row": {
+ "name": "صف أشجار",
+ "terms": "صف أشجار"
+ },
+ "natural/valley": {
+ "name": "وادي",
+ "terms": "وادي"
+ },
+ "natural/volcano": {
+ "name": "بركان",
+ "terms": "بركان"
+ },
+ "natural/water": {
+ "name": "مياه",
+ "terms": "ماء"
+ },
+ "natural/water/basin": {
+ "name": "أرض حوضية طبيعية تحتوي الماء",
+ "terms": "أرض حوضية تحتوي الماء,قلته,مَجمع مياه,أرض تجمع المياه,أرض تحتوي المياه,وقر,جلته,وقبه"
+ },
+ "natural/water/canal": {
+ "name": "مساحة قناة مائية",
+ "terms": "مساحة قناة مائية"
+ },
+ "natural/water/lake": {
+ "name": "بحيرة",
+ "terms": "بحيرة"
+ },
+ "natural/water/moat": {
+ "name": "خندق مائي",
+ "terms": "خندق مائي,خندق مملوء بالماء"
+ },
+ "natural/water/pond": {
+ "name": "بركة ماء",
+ "terms": "بركة"
+ },
+ "natural/water/reservoir": {
+ "name": "خزان",
+ "terms": "بحيرة اصطناعية,خزان مياه"
+ },
+ "natural/water/river": {
+ "name": "مساحة النهر / الوادي / المجرى المائي الواسع",
+ "terms": "مساحة النهر,مساحة الوادي,مساحة المجرى المائي الواسع"
+ },
+ "natural/water/stream": {
+ "name": "مساحة المجرى المائي",
+ "terms": "مساحة المجرى المائي"
+ },
+ "natural/water/wastewater": {
+ "name": "حوض تخزين الصرف الصحي",
+ "terms": "حوض تخزين الصرف الصحي"
+ },
+ "natural/wetland": {
+ "name": "أرض رطبة",
+ "terms": "أرض رطبة,مستنقع,هور"
+ },
+ "natural/wetland/bog": {
+ "name": "رخاخ",
+ "terms": "رخاخ"
+ },
+ "natural/wetland/fen": {
+ "name": "مستنقع أعشاب مغذى من المياه الجوفية",
+ "terms": "مستنقع أعشاب مغذى من المياه الجوفية"
+ },
+ "natural/wetland/mangrove": {
+ "name": "غابات المانغروف",
+ "terms": "غابات المانغروف"
+ },
+ "natural/wetland/marsh": {
+ "name": "هور/ سبخة",
+ "terms": "هور,سبخة"
+ },
+ "natural/wetland/reedbed": {
+ "name": "مقصبة",
+ "terms": "مقصبة"
+ },
+ "natural/wetland/saltmarsh": {
+ "name": "مستنقع الملح الساحلي",
+ "terms": "مستنقع الملح الساحلي"
+ },
+ "natural/wetland/string_bog": {
+ "name": "سلسلة رخاخ",
+ "terms": "سلسلة رخاخ"
+ },
+ "natural/wetland/swamp": {
+ "name": "مستنقع",
+ "terms": "مستنقع"
+ },
+ "natural/wetland/tidalflat": {
+ "name": "المد و الجزر منبسط",
+ "terms": "المد و الجزر منبسط"
+ },
+ "natural/wetland/wet_meadow": {
+ "name": "مرعى/مرج رطب طوال العام",
+ "terms": "مرعى/مرج رطب"
+ },
+ "natural/wood": {
+ "name": "خشب طبيعي",
+ "terms": "خشب طبيعي"
+ },
+ "network/type/node_network-DE-NL-BE-LU": {
+ "name": "عقدة الشبكة الترفيهية",
+ "terms": "عقدة الشبكة الترفيهية"
+ },
+ "noexit/yes": {
+ "name": "لا يوجد مخرج",
+ "terms": "لا يوجد مخرج"
+ },
+ "office": {
+ "name": "مكتب",
+ "terms": "مكتب,دائرة,مفوضية,إدارة"
+ },
+ "office/accountant": {
+ "name": "مكتب محاسب",
+ "terms": "المحاسب القانوني,المدقق,الحسابات,مراجع,محاسب قانوني"
+ },
+ "office/administrative": {
+ "name": "مكتب إداري"
+ },
+ "office/adoption_agency": {
+ "name": "Adoption Agency"
+ },
+ "office/advertising_agency": {
+ "name": "وكالة إعلانية",
+ "terms": "وكالة الإشهار، وكالة إعلانية"
+ },
+ "office/architect": {
+ "name": "مكتب مهندس معماري",
+ "terms": "بناء,مباني,مدينة,تعمير,مهندس معماري,هندسة,هندسة معمارية,هندسي,مكتب هندسي"
+ },
+ "office/association": {
+ "name": "مكتب منظمة غير ربحية",
+ "terms": "جمعية,منظمة غير ربحية"
+ },
+ "office/bail_bond_agent-US-PH": {
+ "name": "مكتب وكيل سند الكفالة",
+ "terms": "مكتب وكيل سند الكفالة"
+ },
+ "office/charity": {
+ "name": "مكتب منظمة خيرية",
+ "terms": "مكتب منظمة خيرية,جمعية خيرية,صدقات,احسان,مبرة,مبرة خيرية,جمعية بر,زكاة,زكوات,صدقة"
+ },
+ "office/company": {
+ "name": "مكتب شركة / مؤسسة",
+ "terms": "مكتب شركة,مكتب مؤسسة,مؤسسة,شركة"
+ },
+ "office/consulting": {
+ "name": "مكتب شركة استشارية",
+ "terms": "مكتب شركة استشارية"
+ },
+ "office/coworking": {
+ "name": "مساحة عمل مشتركة",
+ "terms": "مساحة عمل مشتركة"
+ },
+ "office/diplomatic": {
+ "name": "مكتب دبلوماسي",
+ "terms": "مكتب دبلوماسي"
+ },
+ "office/diplomatic/consulate": {
+ "name": "قنصلية",
+ "terms": "قنصلية"
+ },
+ "office/diplomatic/embassy": {
+ "name": "سفارة",
+ "terms": "سفارة"
+ },
+ "office/diplomatic/liaison": {
+ "name": "مكتب اتصال دبلوماسي",
+ "terms": "مكتب اتصال دبلوماسي"
+ },
+ "office/educational_institution": {
+ "name": "مكتب مؤسسة تعليمية",
+ "terms": "مؤسسة تعليمية، جامعة، كلية، مدرسة"
+ },
+ "office/employment_agency": {
+ "name": "مكتب وكالة توظيف",
+ "terms": "إدارة شؤون الموظفين,مكتب العمل"
+ },
+ "office/energy_supplier": {
+ "name": "مكتب شركة مرافق الكهرباء",
+ "terms": "شركة مرافق الكهرباء"
+ },
+ "office/estate_agent": {
+ "name": "مكتب عقاري",
+ "terms": "الطابو، دائرة السجل العقاري، إدارة تسجيل الممتلكات"
+ },
+ "office/financial": {
+ "name": "مكتب مالي",
+ "terms": "المكتب المالي والضريبي"
+ },
+ "office/financial_advisor": {
+ "name": "المستشار المالي",
+ "terms": "المستشار المالي"
+ },
+ "office/forestry": {
+ "name": "مكتب إدارة الغابات",
+ "terms": "إدارة الغابات"
+ },
+ "office/foundation": {
+ "name": "مكتب مؤسسة",
+ "terms": "مؤسسة"
+ },
+ "office/government": {
+ "name": "مكتب/دائرة حكومية",
+ "terms": "رئاسة الوزراء,إدارة الدولة,المكتب العام,دائرة حكومية,إدارة حكومية,قسم حكومي,مؤسسة حكومية,وكالة حكومية"
+ },
+ "office/government/prosecutor": {
+ "name": "مكتب النيابة العامة",
+ "terms": "مكتب النائب العام"
+ },
+ "office/government/register_office": {
+ "name": "مكتب السجل المدني",
+ "terms": "مكتب السجل المدني"
+ },
+ "office/government/tax": {
+ "name": "مكتب الضرائب",
+ "terms": "مكتب الضرائب"
+ },
+ "office/guide": {
+ "name": "مكتب الدليل السياحي",
+ "terms": "مكتب الدليل السياحي; مكتب المرشد السياحي"
+ },
+ "office/insurance": {
+ "name": "مكتب تأمينات",
+ "terms": "مديرية المعاشات، دائرة التأمينات الاجتماعية، إدارة التأمين"
+ },
+ "office/it": {
+ "name": "مكتب متخصصي تكنولوجيا المعلومات",
+ "terms": "متخصص في تكنولوجيا المعلومات; معلوماتية"
+ },
+ "office/lawyer": {
+ "name": "مكتب قانوني",
+ "terms": "مكتب محاماة، اﻹدارة القانونية، المحكمة،"
+ },
+ "office/lawyer/notary": {
+ "name": "مكتب كتابة عدل / موثق"
+ },
+ "office/moving_company": {
+ "name": "مكتب شركة نقل",
+ "terms": "مكتب شركة نقل"
+ },
+ "office/newspaper": {
+ "name": "صحيفة",
+ "terms": "جريدة، صفحة أخبار، يومية"
+ },
+ "office/ngo": {
+ "name": "مكتب المنظمات العامة الغير حكومية",
+ "terms": "مكتب الجمعيات الخيرية، هيئات العمل اﻹغائي،"
+ },
+ "office/notary": {
+ "name": "مكتب كتابة عدل / موثق",
+ "terms": "كاتب عدل، موثق"
+ },
+ "office/physician": {
+ "name": "طبيب"
+ },
+ "office/political_party": {
+ "name": "مكتب الحزب السياسي",
+ "terms": "مكتب الحزب السياسي"
+ },
+ "office/private_investigator": {
+ "name": "مكتب محقق خاص",
+ "terms": "مكتب محقق"
+ },
+ "office/quango": {
+ "name": "مكتب منظمة غير حكومية شبه مستقلة",
+ "terms": "مكتب منظمة غير حكومية شبه مستقلة"
+ },
+ "office/religion": {
+ "name": "مكتب ديني",
+ "terms": "مكتب ديني"
+ },
+ "office/research": {
+ "name": "مكتب بحوث",
+ "terms": "مكتب البحوث، مكتب اﻷبحاث، هيئة اﻷبحاث، مكتب بحث علمي، مركز للبحث العلمي"
+ },
+ "office/security": {
+ "name": "مكتب مؤسسات الحراسات الأمنية",
+ "terms": "مكتب مؤسسات الحراسات الأمنية"
+ },
+ "office/surveyor": {
+ "name": "مكتب مساح أرضي",
+ "terms": "مساح"
+ },
+ "office/tax_advisor": {
+ "name": "مستشار الضرائب",
+ "terms": "مستشار الضرائب"
+ },
+ "office/telecommunication": {
+ "name": "مكتب شركات اتصالات",
+ "terms": "مكتب الاتصالات، إدارة الاتصال، هيئة الاتصالات العامة"
+ },
+ "office/therapist": {
+ "name": "المعالج",
+ "terms": "معالج، معالج فيزيائي، طبيب، مُمرض"
+ },
+ "office/travel_agent": {
+ "name": "وكالة السفر"
+ },
+ "office/water_utility": {
+ "name": "مكتب شركة مياه",
+ "terms": "شركة المياه"
+ },
+ "office/yes": {
+ "name": "مكتب (نوع غير محدد)"
+ },
+ "pipeline/substation": {
+ "name": "محطة فرعية لخطوط الأنابيب"
+ },
+ "pipeline/valve": {
+ "name": "صمام خط أنابيب",
+ "terms": "صمام خط أنابيب"
+ },
+ "piste/downhill": {
+ "name": "سباق التزلج على المنحدرات",
+ "terms": "سباق التزلج على المنحدرات"
+ },
+ "piste/downhill/halfpipe": {
+ "name": "نصف أنبوب رياضة الثلج",
+ "terms": "نصف أنبوب رياضة الثلج"
+ },
+ "piste/hike": {
+ "name": "ممر المشي بالأحذية الثلجية",
+ "terms": "ممر المشي بالأحذية الثلجية"
+ },
+ "piste/ice_skate": {
+ "name": "مسار التزلج على الجليد",
+ "terms": "مسار التزلج على الجليد"
+ },
+ "piste/nordic": {
+ "name": "مسار تزلج عبر الريف",
+ "terms": "مسار تزلج عبر الريف"
+ },
+ "piste/skitour": {
+ "name": "مسار للتزلج على الجليد",
+ "terms": "مسار للتزلج على الجليد"
+ },
+ "piste/sled": {
+ "name": "تشغيل الزلاجات",
+ "terms": "تشغيل الزلاجات"
+ },
+ "piste/sleigh": {
+ "name": "ممر الزلاجة",
+ "terms": "ممر الزلاجة"
+ },
+ "place": {
+ "name": "مكان / موضع"
+ },
+ "place/city": {
+ "name": "المدينة",
+ "terms": "مدينة كبيرة,مدينة,مدينة كبرى"
+ },
+ "place/city_block": {
+ "name": "مربع سكني",
+ "terms": "بلك,بلوك,مربع,مربع سكني,حاره"
+ },
+ "place/farm": {
+ "name": "مزرعة"
+ },
+ "place/hamlet": {
+ "name": "قرية صغيرة / هجرة",
+ "terms": "قرية صغيرة,هجرة"
+ },
+ "place/island": {
+ "name": "جزيرة",
+ "terms": "جزيرة"
+ },
+ "place/islet": {
+ "name": "جزيرة صغيرة",
+ "terms": "جزيرة صغيرة"
+ },
+ "place/isolated_dwelling": {
+ "name": "مساكن متفرقة ومنعزلة",
+ "terms": "مساكن متفرقة"
+ },
+ "place/locality": {
+ "name": "موضع لمكان غير مأهول",
+ "terms": "موقع,موضع"
+ },
+ "place/neighbourhood": {
+ "name": "حي سكني",
+ "terms": "حي سكني"
+ },
+ "place/plot": {
+ "name": "قطعة الأرض",
+ "terms": "قطعة الأرض"
+ },
+ "place/quarter": {
+ "name": "منطقة فرعية / ربع",
+ "terms": "منطقة فرعية / ربع"
+ },
+ "place/square": {
+ "name": "مربع",
+ "terms": "ساحة,باحة,ممشى"
+ },
+ "place/suburb": {
+ "name": "ضاحية",
+ "terms": "ضاحية"
+ },
+ "place/town": {
+ "name": "مدينة",
+ "terms": "مدينة صغيرة,مدينة,مدينة صغرى,بلده"
+ },
+ "place/village": {
+ "name": "قرية",
+ "terms": "قرية"
+ },
+ "playground": {
+ "name": "أجهزة وتركيبات الملعب"
+ },
+ "playground/activitypanel": {
+ "name": "تشغيل لوحة النشاط",
+ "terms": "تشغيل لوحة النشاط"
+ },
+ "playground/aerialrotator": {
+ "name": "معلقة سبينر",
+ "terms": "معلقة سبينر"
+ },
+ "playground/balancebeam": {
+ "name": "لعبة التوازن على الجذع",
+ "terms": "لعبة التوازن على الجذع"
+ },
+ "playground/basketrotator": {
+ "name": "سلة دوارة",
+ "terms": "سلة دوارة"
+ },
+ "playground/basketswing": {
+ "name": "السلة المتأرجحة",
+ "terms": "السلة المتأرجحة"
+ },
+ "playground/bridge": {
+ "name": "لعبة الجسر",
+ "terms": "لعبة الجسر"
+ },
+ "playground/climbingframe": {
+ "name": "لعب تسلق الإطار",
+ "terms": "لعب تسلق الإطار"
+ },
+ "playground/climbingwall": {
+ "name": "لعب جدار التسلق",
+ "terms": "لعب جدار التسلق"
+ },
+ "playground/cushion": {
+ "name": "وسادة نطاطه",
+ "terms": "وسادة نطاطه"
+ },
+ "playground/funnel_ball": {
+ "name": "لعبة قِمع الكرة",
+ "terms": "لعبة قِمع الكرة"
+ },
+ "playground/hopscotch": {
+ "name": "الحجلة",
+ "terms": "الحجلة"
+ },
+ "playground/horizontal_bar": {
+ "name": "لعبة العارضة الأفقية",
+ "terms": "لعبة العارضة الأفقية"
+ },
+ "playground/map": {
+ "name": "خريطة ملعب مرسومة",
+ "terms": "خريطة ملعب مرسومة"
+ },
+ "playground/playhouse": {
+ "name": "بيت اللعب",
+ "terms": "بيت اللعب"
+ },
+ "playground/roundabout": {
+ "name": "لعبة الصحن الدوار",
+ "terms": "لعبة الصحن الدوار"
+ },
+ "playground/sandpit": {
+ "name": "مكان اللعب بالرمل",
+ "terms": "مكان اللعب بالرمل"
+ },
+ "playground/seesaw": {
+ "name": "أرجوحة",
+ "terms": "مرجيحة,أرجوحة"
+ },
+ "playground/sledding": {
+ "name": "لعبة الانزلاق من التل",
+ "terms": "لعبة الانزلاق من التل"
+ },
+ "playground/slide": {
+ "name": "زحليقة",
+ "terms": "زحليقة"
+ },
+ "playground/splash_pad": {
+ "name": "لعبة بركة الرذاذ",
+ "terms": "لعبة بركة الرذاذ"
+ },
+ "playground/springy": {
+ "name": "نطاطه على سبرينق",
+ "terms": "نطاطه على سبرينق"
+ },
+ "playground/structure": {
+ "name": "هيكل لعبة كبيرة",
+ "terms": "هيكل لعبة كبيرة"
+ },
+ "playground/swing": {
+ "name": "مرجيحة",
+ "terms": "مرجيحة,أرجوحة,مراجيح"
+ },
+ "playground/teenshelter": {
+ "name": "مأوى المراهقين",
+ "terms": "مأوى المراهقين"
+ },
+ "playground/tetherball": {
+ "name": "ملعب كرة الحبل",
+ "terms": "ملعب كرة الحبل"
+ },
+ "playground/trampoline": {
+ "name": "النُطيطة (الترامبولين)",
+ "terms": "النُطيطة (الترامبولين)"
+ },
+ "playground/tunnel_tube": {
+ "name": "لعبة النفق",
+ "terms": "لعبة النفق"
+ },
+ "playground/water": {
+ "name": "لعبة تشغيل المضخة",
+ "terms": "لعبة تشغيل المضخة"
+ },
+ "playground/zipwire": {
+ "name": "الانزلاق على حبل",
+ "terms": "الانزلاق على حبل"
+ },
+ "point": {
+ "name": "نقطة",
+ "terms": "نقطة"
+ },
+ "police/checkpoint": {
+ "name": "نقطة تفتيش أو حاجز عسكري",
+ "terms": "نقطة تفتيش,حاجز عسكري"
+ },
+ "polling_station": {
+ "name": "Temporary Polling Place"
+ },
+ "power": {
+ "name": "عنصر طاقة/كهرباء"
+ },
+ "power/cable": {
+ "name": "كابل كهرباء"
+ },
+ "power/cable/underground": {
+ "name": "كابل كهرباء تحت الأرض",
+ "terms": "كابل كهرباء تحت الأرض"
+ },
+ "power/generator": {
+ "name": "مولد كهرباء",
+ "terms": "مولد الطاقة,طاقة,كهرباء,مولد كهرباء"
+ },
+ "power/generator/method/photovoltaic": {
+ "name": "لوحة شمسية",
+ "terms": "لوحات شمسية,طاقة شمسية,طاقة,شمس"
+ },
+ "power/generator/method/photovoltaic/building/roof": {
+ "name": "مظلة الألواح الشمسية",
+ "terms": "مظلة الألواح الشمسية"
+ },
+ "power/generator/method/photovoltaic/location/roof": {
+ "name": "لوحة شمسية على السطح",
+ "terms": "لوحة شمسية على السطح"
+ },
+ "power/generator/source/hydro": {
+ "name": "توربينات مائية",
+ "terms": "توربينات مائية"
+ },
+ "power/generator/source/nuclear": {
+ "name": "مفاعل نووي",
+ "terms": "نووي,مفاعل,طاقة,كهرباء"
+ },
+ "power/generator/source/wind": {
+ "name": "توربينة رياح",
+ "terms": "رياح,توليد كهرباء,كهرباء,توربينات,توربينة,توربين,طاقة"
+ },
+ "power/line": {
+ "name": "خط كهرباء",
+ "terms": "خط كهرباء,خط طاقة"
+ },
+ "power/minor_line": {
+ "name": "خط كهربائي ثانوي",
+ "terms": "خط كهربائي صغير،,خط طاقة صغير"
+ },
+ "power/plant": {
+ "name": "محطة توليد كهرباء",
+ "terms": "محطة توليد الكهرباء,الطاقة الكهربائية"
+ },
+ "power/plant/source/coal": {
+ "name": "محطة لتوليد الكهرباء تعمل بالفحم",
+ "terms": "محطة لتوليد الكهرباء تعمل بالفحم"
+ },
+ "power/plant/source/gas": {
+ "name": "محطة لتوليد الكهرباء تعمل بالغاز",
+ "terms": "محطة لتوليد الكهرباء تعمل بالغاز"
+ },
+ "power/plant/source/hydro": {
+ "name": "محطة كهرباء كهرومائية",
+ "terms": "محطة كهرباء كهرومائية"
+ },
+ "power/plant/source/method/photovoltaic": {
+ "name": "مزرعة شمسية",
+ "terms": "محطة الطاقة الشمسية ، محطة توليد الطاقة الشمسية ، الطاقات المتجددة",
+ "aliases": "محطة للطاقة الشمسية"
+ },
+ "power/plant/source/nuclear": {
+ "name": "محطة كهرباء نووية",
+ "terms": "محطة كهرباء نووية"
+ },
+ "power/plant/source/oil": {
+ "name": "محطة كهرباء تعمل بالنفط",
+ "terms": "محطة كهرباء تعمل بالنفط"
+ },
+ "power/plant/source/solar": {
+ "name": "محطة للطاقة الشمسية",
+ "terms": "محطة توليد الطاقة الشمسية ، الطاقات المتجددة"
+ },
+ "power/plant/source/waste": {
+ "name": "مولد طاقة يعمل عن طريق حرق النفايات",
+ "terms": "مولد طاقة يعمل عن طريق حرق النفايات"
+ },
+ "power/plant/source/wind": {
+ "name": "مزرعة طاقة عبر الرياح",
+ "terms": "مزرعة طاقة عبر الرياح"
+ },
+ "power/pole": {
+ "name": "عمود كهرباء",
+ "terms": "عمود كهرباء,برج كهرباء.أعمدة طاقة,عمود طاقة,عمود نقل الطاقة,عمود نقل الكهرباء"
+ },
+ "power/substation": {
+ "name": "محطة فرعية",
+ "terms": "محطة فرعية"
+ },
+ "power/switch": {
+ "name": "معدة وصل وفصل كهربائية",
+ "terms": "معدة وصل وفصل,مفتاح,فصل,وصل"
+ },
+ "power/tower": {
+ "name": "برج كهرباء ضغط عالي",
+ "terms": "برج عالي الجهد,برج تيار عالي الجهد,تيار عالي الجهد,برج كهرباء,أبراج كهرباء,برج طاقة,برج توصيل طاقة"
+ },
+ "power/transformer": {
+ "name": "محول كهربائي",
+ "terms": "محول الكهربائي"
+ },
+ "public_transport/platform": {
+ "name": "منصة انتظار وسائل النقل العام",
+ "terms": "منصة انتظار وسائل النقل العام,منصةانتظار وسائل النقل العام,مكان لركوب الباص,رصيف انتظار النقل العام"
+ },
+ "public_transport/platform/aerialway": {
+ "name": "منصة انتظار وسائل النقل بالكابلات",
+ "terms": "منصة انتظار وسائل النقل بالكابلات"
+ },
+ "public_transport/platform/aerialway_point": {
+ "name": "منصة توقف لوسائل النقل بالكابلات"
+ },
+ "public_transport/platform/bus": {
+ "name": "منصة انتظار ركوب الحافلات",
+ "terms": "منصة انتظار ركوب الحافلات"
+ },
+ "public_transport/platform/bus_point": {
+ "name": "محطة توقف حافلات",
+ "terms": "محطة توقف حافلات"
+ },
+ "public_transport/platform/bus_tram_point": {
+ "name": "محطة توقف الترام و الحافلات",
+ "terms": "محطة توقف الترام و الحافلات"
+ },
+ "public_transport/platform/ferry": {
+ "name": "منصة انتظار ركوب العبارات البحرية",
+ "terms": "منصة انتظار ركوب العبارات البحرية"
+ },
+ "public_transport/platform/ferry_point": {
+ "name": "منصة توقف عبارات بحرية"
+ },
+ "public_transport/platform/light_rail": {
+ "name": "منصة انتظار ركوب السكة الحديدية الخفيفة",
+ "terms": "منصة انتظار ركوب السكة الحديدية الخفيفة"
+ },
+ "public_transport/platform/light_rail_point": {
+ "name": "منصة توقف السكة الحديدية الخفيفة"
+ },
+ "public_transport/platform/monorail": {
+ "name": "منصة انتظار ركوب القطار الكهربائي",
+ "terms": "منصة انتظار ركوب القطار الكهربائي"
+ },
+ "public_transport/platform/monorail_point": {
+ "name": "منصة توقف القطار الكهربائي"
+ },
+ "public_transport/platform/subway": {
+ "name": "منصة انتظار و ركوب مترو الانفاق",
+ "terms": "منصة انتظار و ركوب مترو الانفاق"
+ },
+ "public_transport/platform/subway_point": {
+ "name": "منصة توقف مترو الانفاق"
+ },
+ "public_transport/platform/train": {
+ "name": "منصة انتظار وركوب القطار",
+ "terms": "منصة انتظار وركوب القطار"
+ },
+ "public_transport/platform/train_point": {
+ "name": "منصة توقف القطار"
+ },
+ "public_transport/platform/tram": {
+ "name": "منصة انتظار وركوب الترام",
+ "terms": "منصة انتظار وركوب الترام"
+ },
+ "public_transport/platform/tram_point": {
+ "name": "منصة توقف الترام",
+ "terms": "منصة توقف الترام"
+ },
+ "public_transport/platform/trolleybus": {
+ "name": "منصة انتظار وركوب حافلة ترولي",
+ "terms": "منصة انتظار وركوب حافلة ترولي"
+ },
+ "public_transport/platform/trolleybus_point": {
+ "name": "محطة توقف حافلة كهربائية",
+ "terms": "محطة توقف حافلة كهربائية"
+ },
+ "public_transport/platform_point": {
+ "name": "منصة ركوب وتوقف وسائل النقل العام",
+ "terms": "منصة ركوب وتوقف وسائل النقل العام"
+ },
+ "public_transport/station": {
+ "name": "محطة نقل عام",
+ "terms": "محطة نقل عام"
+ },
+ "public_transport/station_aerialway": {
+ "name": "محطة النقل بالكابلات",
+ "terms": "محطة النقل بالكابلات; محطة تلفريك"
+ },
+ "public_transport/station_bus": {
+ "name": "محطة الحافلات / صالة",
+ "terms": "محطة الحافلات"
+ },
+ "public_transport/station_ferry": {
+ "name": "محطة / صالة العبارات",
+ "terms": "محطة / صالة العبارات"
+ },
+ "public_transport/station_light_rail": {
+ "name": "محطة سكة حديد خفيفة",
+ "terms": "محطة سكة حديد خفيفة"
+ },
+ "public_transport/station_monorail": {
+ "name": "محطة سكة حديد أحادية",
+ "terms": "محطة سكة حديد أحادية"
+ },
+ "public_transport/station_subway": {
+ "name": "محطة مترو",
+ "terms": "محطة مترو"
+ },
+ "public_transport/station_train": {
+ "name": "محطة قطار",
+ "terms": "محطة القطار"
+ },
+ "public_transport/station_train_halt": {
+ "name": "محطة قطار صغيرة (يتوقف عندها القطار عند الطلب)",
+ "terms": "محطة القطار (توقف/ طلب)"
+ },
+ "public_transport/station_tram": {
+ "name": "محطة ترام",
+ "terms": "محطة ترام"
+ },
+ "public_transport/station_trolleybus": {
+ "name": "صالة محطة حافلات كهربائية",
+ "terms": "صالة محطة حافلات كهربائية"
+ },
+ "public_transport/stop_area": {
+ "name": "منطقة توقف وسائل نقل عام",
+ "terms": "منطقة توقف وسائل نقل عام"
+ },
+ "public_transport/stop_position": {
+ "name": "موقع توقف وسائل نقل عام",
+ "terms": "موقع توقف وسائل نقل عام"
+ },
+ "public_transport/stop_position_aerialway": {
+ "name": "موقع توقف وسائل نقل بالكابلات",
+ "terms": "موقع توقف وسائل نقل بالكابلات"
+ },
+ "public_transport/stop_position_bus": {
+ "name": "موقع وقوف حافلات",
+ "terms": "موقع وقوف حافلات"
+ },
+ "public_transport/stop_position_ferry": {
+ "name": "موقع وقوف عبّارات",
+ "terms": "موقع وقوف عبّارات"
+ },
+ "public_transport/stop_position_light_rail": {
+ "name": "موقع وقوف سكك حديد خفيفة",
+ "terms": "موقع وقوف سكك حديد خفيفة"
+ },
+ "public_transport/stop_position_monorail": {
+ "name": "موقع وقوف سكك حديد أحادية",
+ "terms": "موقع وقوف سكك حديد أحادية"
+ },
+ "public_transport/stop_position_subway": {
+ "name": "موقع وقوف مترو الأنفاق",
+ "terms": "موقع وقوف مترو الأنفاق"
+ },
+ "public_transport/stop_position_train": {
+ "name": "مكان موقف القطار",
+ "terms": "مكان موقف القطار"
+ },
+ "public_transport/stop_position_tram": {
+ "name": "موقع وقوف الترام",
+ "terms": "موقع وقوف الترام"
+ },
+ "public_transport/stop_position_trolleybus": {
+ "name": "موقع وقوف حافلات كهربائية",
+ "terms": "موقع وقوف حافلات كهربائية"
+ },
+ "railway": {
+ "name": "عنصر سكك الحديد"
+ },
+ "railway/abandoned": {
+ "name": "سكة حديدية مهجورة",
+ "terms": "سكة حديد مهجورة"
+ },
+ "railway/buffer_stop": {
+ "name": "مصد قطارات",
+ "terms": "مصد,قطار"
+ },
+ "railway/construction": {
+ "name": "سكة حديدية تحت الإنشاء",
+ "terms": "سكة حديدية تحت الإنشاء"
+ },
+ "railway/crossing": {
+ "name": "معبر مشاه على الخطوط الحديدية",
+ "terms": "معبر مشاه على الخطوط الحديدية"
+ },
+ "railway/derail": {
+ "name": "معدة حماية تخرج القطار عن المسار",
+ "terms": "معدة حماية تخرج القطار عن المسار"
+ },
+ "railway/disused": {
+ "name": "سكة حديدة مهجورة",
+ "terms": "سكة حديد غير مستعملة"
+ },
+ "railway/funicular": {
+ "name": "مسار قطار جبلي مائل",
+ "terms": "مسار قطار جبلي مائل"
+ },
+ "railway/halt": {
+ "name": "محطة قطار صغيرة (يتوقف عندها القطار عند الطلب)"
+ },
+ "railway/level_crossing": {
+ "name": "معبر سيارات على السكة الحديدية",
+ "terms": "تقاطع سكة حديدية,تقاطع طريق سيارات مع سكة حديدية,مزلقان"
+ },
+ "railway/light_rail": {
+ "name": "مسار سكة حديد خفيف",
+ "terms": "مسار سكة حديد خفيف"
+ },
+ "railway/milestone": {
+ "name": "لوحة/علامة مسافات السكة الحديدية",
+ "terms": "لوحة/علامة مسافات السكة الحديدية"
+ },
+ "railway/miniature": {
+ "name": "مسار القطار المصغر",
+ "terms": "مسار القطار المصغر"
+ },
+ "railway/monorail": {
+ "name": "مسار سكة حديدية أحادية",
+ "terms": "مسار سكة حديدية أحادية"
+ },
+ "railway/monorail/hanging": {
+ "name": "مسار سكة حديدية أحادية معلقة",
+ "terms": "مسار سكة حديدية معلقة و أحادية"
+ },
+ "railway/narrow_gauge": {
+ "name": "مسار قطار ضيق",
+ "terms": "مسار قطار ضيق"
+ },
+ "railway/platform": {
+ "name": "منصة انتظار وركوب القطار"
+ },
+ "railway/preserved": {
+ "name": "مسار سكة حديد قديمة/تراثية",
+ "terms": "مسار سكة حديد قديمة/تراثية"
+ },
+ "railway/rail": {
+ "name": "مسار القطار",
+ "terms": "مسار القطار"
+ },
+ "railway/rail/highspeed": {
+ "name": "مسار قطار عالي السرعة",
+ "terms": "مسار قطار عالي السرعة"
+ },
+ "railway/railway_crossing": {
+ "name": "تقاطع مسار قطارات مع مسار قطارات آخر",
+ "terms": "تقاطع مسار قطارات مع مسار قطارات آخر"
+ },
+ "railway/signal": {
+ "name": "إشارة مرور السكك الحديدية",
+ "terms": "إشارة مرور السكك الحديدية"
+ },
+ "railway/station": {
+ "name": "محطة قطار"
+ },
+ "railway/subway": {
+ "name": "مسار مترو الانفاق",
+ "terms": "مسار مترو الانفاق"
+ },
+ "railway/subway_entrance": {
+ "name": "مدخل مترو الأنفاق",
+ "terms": "مدخل مترو الأنفاق"
+ },
+ "railway/switch": {
+ "name": "محول مسار القطار على السكة الحديدة",
+ "terms": "محول مسار القطار على السكة الحديدة"
+ },
+ "railway/train_wash": {
+ "name": "مغسلة قطارات",
+ "terms": "مغسلة قطارات"
+ },
+ "railway/tram": {
+ "name": "مسار الترام",
+ "terms": "مسار الترام"
+ },
+ "railway/tram_crossing": {
+ "name": "معبر مشاة على مسار الترام",
+ "terms": "معبر مشاة على مسار الترام"
+ },
+ "railway/tram_level_crossing": {
+ "name": "تقاطع بين مسار ترام ومسار سيارات",
+ "terms": "تقاطع بين مسار ترام ومسار سيارات"
+ },
+ "railway/tram_stop": {
+ "name": "مكان توقف الترام"
+ },
+ "railway/yard": {
+ "name": "ساحة السكة الحديدية",
+ "terms": "ساحة السكة الحديدية"
+ },
+ "relation": {
+ "name": "علاقة",
+ "terms": "علاقة"
+ },
+ "route/ferry": {
+ "name": "مسار عبّارة",
+ "terms": "مسار سفن,مسار عبارات"
+ },
+ "seamark": {
+ "name": "علامة بحرية"
+ },
+ "seamark/beacon_isolated_danger": {
+ "name": "منارة الخطر",
+ "terms": "منارة الخطر"
+ },
+ "seamark/beacon_lateral": {
+ "name": "منارة القناة",
+ "terms": "منارة القناة"
+ },
+ "seamark/buoy_lateral": {
+ "name": "عوامة تشير للقناة",
+ "terms": "عوامة تشير للقناة"
+ },
+ "seamark/buoy_lateral/green": {
+ "name": "عوامة خضراء",
+ "terms": "العوامة الخضراء"
+ },
+ "seamark/buoy_lateral/red": {
+ "name": "عوامة حمراء",
+ "terms": "عوامة حمراء"
+ },
+ "seamark/mooring": {
+ "name": "مربط سفن ومراكب بحرية",
+ "terms": "مربط سفن ومركبات بحرية"
+ },
+ "shop": {
+ "name": "متجر",
+ "terms": "محل. متجر,دكان"
+ },
+ "shop/agrarian": {
+ "name": "متجر المنتجات والمستلزمات الزراعية",
+ "terms": "متجر المنتجات والمستلزمات الزراعية"
+ },
+ "shop/alcohol": {
+ "name": "متجر خمور",
+ "terms": "محل خمور,خمور,متجر خمور"
+ },
+ "shop/anime": {
+ "name": "متجر أنيمي / مانغا",
+ "terms": "متجر أنيمي / مانغا"
+ },
+ "shop/antiques": {
+ "name": "متجر تحف",
+ "terms": "متجر تحف ، متجر أشياء قديمة ، تذكارات"
+ },
+ "shop/appliance": {
+ "name": "متجر الأجهزة المنزلية",
+ "terms": "متجر الأجهزة المنزلية,متجر ثلاجات,ثلاجات,غسالات,مكيفات"
+ },
+ "shop/art": {
+ "name": "متجر الفنون",
+ "terms": "متجر فنون"
+ },
+ "shop/baby_goods": {
+ "name": "متجر مستلزمات الأطفال",
+ "terms": "متجر مستلزمات الأطفال,متجر سلع الأطفال"
+ },
+ "shop/bag": {
+ "name": "متجر حقائب وأمتعة",
+ "terms": "شنطة,حقيبة"
+ },
+ "shop/bakery": {
+ "name": "مخبز",
+ "terms": "مخبز"
+ },
+ "shop/bathroom_furnishing": {
+ "name": "متجر أثاث واكسسوارات الحمامات",
+ "terms": "متجر أثاث واكسسوارات الحمامات"
+ },
+ "shop/beauty": {
+ "name": "محل تجميل",
+ "terms": "محل تجميل"
+ },
+ "shop/beauty/nails": {
+ "name": "صالون أظافر",
+ "terms": "صالون أظافر"
+ },
+ "shop/beauty/tanning": {
+ "name": "صالون تسمير",
+ "terms": "صالون تسمير"
+ },
+ "shop/bed": {
+ "name": "متجر مراتب ولوازم الفراش",
+ "terms": "متجر مراتب ولوازم الفراش"
+ },
+ "shop/beverages": {
+ "name": "محل بيع مشروبات ومرطبات",
+ "terms": "محل مشروبات"
+ },
+ "shop/bicycle": {
+ "name": "متجر دراجات هوائية",
+ "terms": "محل دراجات هوائية; متجر دراجات; محل دراجات; بائع دراجات"
+ },
+ "shop/boat": {
+ "name": "متجر بيع قوارب ومستلزماتها",
+ "terms": "متجر بيع قوارب ومستلزماتها"
+ },
+ "shop/bookmaker": {
+ "name": "مكتب رهانات"
+ },
+ "shop/books": {
+ "name": "بائع كتب",
+ "terms": "متجر كتب ، مكتبة ، محل بيع كتب",
+ "aliases": "متجر كتب\nمكتبة\nمحل بيع كتب"
+ },
+ "shop/boutique": {
+ "name": "بوتيك"
+ },
+ "shop/brewing_supplies": {
+ "name": "Brewing Supply Store"
+ },
+ "shop/butcher": {
+ "name": "جزار",
+ "terms": "جزار,محل بيع لحوم. محل جزارة,لحوم"
+ },
+ "shop/camera": {
+ "name": "Camera Equipment Store"
+ },
+ "shop/candles": {
+ "name": "متجر الشموع",
+ "terms": "متجر الشموع"
+ },
+ "shop/cannabis": {
+ "name": "Cannabis Shop"
+ },
+ "shop/car": {
+ "name": "وكالة/معرض سيارات",
+ "terms": "وكالة سيارات"
+ },
+ "shop/car/second_hand": {
+ "name": "وكالة/معرض بيع السيارات المستعملة",
+ "terms": "وكالة/معرض بيع السيارات المستعملة"
+ },
+ "shop/car_parts": {
+ "name": "محل قطع غيار السيارة",
+ "terms": "محل بيع قطع السيارات"
+ },
+ "shop/car_repair": {
+ "name": "ورشة إصلاح سيارات",
+ "terms": "محل تصليح سيارات; ورشة تصليح; ورشة; ميكانيكي"
+ },
+ "shop/caravan": {
+ "name": "متجر بيع كرفانات ومنازل متنقلة",
+ "terms": "متجر بيع كرفانات ومنازل متنقلة"
+ },
+ "shop/carpet": {
+ "name": "متجر سجاد ومفروشات",
+ "terms": "متجر سجاد; زرابي,سجاد,مفروشات"
+ },
+ "shop/catalogue": {
+ "name": "Catalog Shop"
+ },
+ "shop/charity": {
+ "name": "متجر خيري",
+ "terms": "متجر خيري,متجر جمعية خيرية,متجر بيع البضائع المستعملة للجمعية الخيرية"
+ },
+ "shop/cheese": {
+ "name": "متجر أجبان",
+ "terms": "متجر أجبان"
+ },
+ "shop/chemist": {
+ "name": "متجر أدوات النظافة الشخصية والتجميل",
+ "terms": "متجر أدوات النظافة الشخصية والتجميل"
+ },
+ "shop/chocolate": {
+ "name": "متجر شوكولاتة",
+ "terms": "متجر شوكولاتة"
+ },
+ "shop/clothes": {
+ "name": "محل ملابس",
+ "terms": "محل بيع ملابس"
+ },
+ "shop/clothes/second_hand": {
+ "name": "متجر لبيع الملابس المستعملة",
+ "terms": "متجر لبيع الملابس المستعملة"
+ },
+ "shop/clothes/suits": {
+ "name": "متجر بيع بذلات",
+ "terms": "متجر بيع بذلات,متجر بيع أطقم"
+ },
+ "shop/clothes/underwear": {
+ "name": "متجر بيع الملابس الداخلية",
+ "terms": "متجر بيع الملابس الداخلية"
+ },
+ "shop/clothes/wedding": {
+ "name": "محل بيع وتفصيل ملابس الزفاف",
+ "terms": "محل بيع وتفصيل ملابس الزفاف"
+ },
+ "shop/clothes/workwear": {
+ "name": "متجر بيع ملابس مخصصة للعمل",
+ "terms": "متجر بيع ملابس مخصصة للعمل,متجر بيع ملابس أعمال"
+ },
+ "shop/coffee": {
+ "name": "متجر القهوة",
+ "terms": "متجر القهوة"
+ },
+ "shop/collector": {
+ "name": "متجر المقتنيات والتجميعات",
+ "terms": "متجر المقتنيات والتجميعات"
+ },
+ "shop/computer": {
+ "name": "محل حاسب آلي",
+ "terms": "محل حاسوب,محل حاسب آلي,محل حاسب,محل كمبيوتر,متجر للكمبيوتر,كمبيوتر"
+ },
+ "shop/confectionery": {
+ "name": "متجر حلويات",
+ "terms": "حلويات,حلوى,سكاكر"
+ },
+ "shop/convenience": {
+ "name": "بقالة - متجر صغير",
+ "terms": "بقالة,متجر صغير,تموينات"
+ },
+ "shop/copyshop": {
+ "name": "متجر نسخ وتصوير",
+ "terms": "متجر نسخ وتصوير"
+ },
+ "shop/cosmetics": {
+ "name": "متجر مستحضرات التجميل",
+ "terms": "متجر مستحضرات التجميل"
+ },
+ "shop/craft": {
+ "name": "متجر الفنون والحرف",
+ "terms": "متجر الفنون والحرف"
+ },
+ "shop/curtain": {
+ "name": "محل بيع الستائر",
+ "terms": "ستائر"
+ },
+ "shop/dairy": {
+ "name": "متجر الألبان",
+ "terms": "متجر الألبان، الألبان"
+ },
+ "shop/deli": {
+ "name": "محل أطعمة لذيذة",
+ "terms": "محل أطعمة راقية ، متجر أطعمة لذيذة"
+ },
+ "shop/department_store": {
+ "name": "محل متعدد الأقسام",
+ "terms": "محل متعدد الأقسام"
+ },
+ "shop/doityourself": {
+ "name": "محل عدد وأدوات وأجهزة صيانة وتحسين المنزل",
+ "terms": "محل افعلها بنفسك,محل عدد وأدوات وأجهزة صيانة وتحسين المنزل"
+ },
+ "shop/doors": {
+ "name": "متجر بيع أبواب",
+ "terms": "متجر بيع أبواب,باب,بيبان"
+ },
+ "shop/dry_cleaning": {
+ "name": "مغسلة ملابس بالبخار",
+ "terms": "مغسلة ملابس بالبخار"
+ },
+ "shop/e-cigarette": {
+ "name": "متجر سجائر إلكترونية",
+ "terms": "متجر سجائر إلكترونية"
+ },
+ "shop/electrical": {
+ "name": "متجر المستلزمات الإلكترونية",
+ "terms": "متجر المستلزمات الإلكترونية"
+ },
+ "shop/electronics": {
+ "name": "محل إلكترونيات",
+ "terms": "محل إلكترونيات"
+ },
+ "shop/erotic": {
+ "name": "Erotic Store"
+ },
+ "shop/erotic/lgbtq": {
+ "name": "LGBTQ+ Erotic Store"
+ },
+ "shop/fabric": {
+ "name": "محل بيع الأقمشة",
+ "terms": "الأقمشة,قماش,كلف"
+ },
+ "shop/farm": {
+ "name": "متجر مزرعة ليبيع منتجاتها",
+ "terms": "المنتج"
+ },
+ "shop/fashion": {
+ "name": "متجر موضة"
+ },
+ "shop/fashion_accessories": {
+ "name": "محل اكسسوارات الموضة",
+ "terms": "محل اكسسوارات الموضة"
+ },
+ "shop/fireplace": {
+ "name": "متجر بيع المواقد والدفايات",
+ "terms": "متجر بيع المواقد والدفايات"
+ },
+ "shop/fishing": {
+ "name": "محل معدات الصيد البحري",
+ "terms": "محل معدات الصيد"
+ },
+ "shop/flooring": {
+ "name": "محل بيع أرضيات",
+ "terms": "أرضيات,باركيه"
+ },
+ "shop/florist": {
+ "name": "ورد وزهور",
+ "terms": "محل بيع زهور,محل بيع ورود"
+ },
+ "shop/frame": {
+ "name": "محل تأطير (بيع إطارات صور)",
+ "terms": "محل تأطير (بيع إطارات صور)"
+ },
+ "shop/frozen_food": {
+ "name": "متجر أغذية مجمدة",
+ "terms": "متجر أغذية مجمدة"
+ },
+ "shop/fuel": {
+ "name": "متجر بيع الوقود",
+ "terms": "متجر بيع الوقود"
+ },
+ "shop/funeral_directors": {
+ "name": "محل بيع أكفان ومستلزمات الجنائز",
+ "terms": "محل بيع أكفان ومستلزمات الجنائز"
+ },
+ "shop/furniture": {
+ "name": "محل بيع أثاث",
+ "terms": "محل أثاث"
+ },
+ "shop/games": {
+ "name": "متجر ألعاب الطاولة",
+ "terms": "متجر ألعاب الطاولة"
+ },
+ "shop/garden_centre": {
+ "name": "مشتل",
+ "terms": "مشتل"
+ },
+ "shop/gas": {
+ "name": "محل بيع الغاز المعبأ",
+ "terms": "محل غاز,غاز"
+ },
+ "shop/general": {
+ "name": "متجر عام",
+ "terms": "متجر عام"
+ },
+ "shop/gift": {
+ "name": "محل بيع هدايا",
+ "terms": "محل بيع هدايا"
+ },
+ "shop/greengrocer": {
+ "name": "متجر خضروات",
+ "terms": "متجر خضروات"
+ },
+ "shop/hairdresser": {
+ "name": "حلاق",
+ "terms": "حلاق,مصفف الشعر"
+ },
+ "shop/hairdresser_supply": {
+ "name": "متجر مستلزمات حلاقين",
+ "terms": "متجر مستلزمات حلاقين"
+ },
+ "shop/hardware": {
+ "name": "محل مواد بناء",
+ "terms": "محل بيع عتاد,سباكة,مواد بناء,لوازم حديقة,عدد,مسامير,حديد,مفكات"
+ },
+ "shop/health_food": {
+ "name": "متجر أغذية صحية",
+ "terms": "متجر أغذية صحية ، محل أغذية صحية"
+ },
+ "shop/hearing_aids": {
+ "name": "متجر سماعات الأذن الطبية",
+ "terms": "سماعات الأذن الطبية; معينات سمعية; أجهزة تقوية السمع; مساعدات السمع"
+ },
+ "shop/herbalist": {
+ "name": "محل بيع الأعشاب الطبية / عطار",
+ "terms": "محل بيع الأعشاب الطبية,عطار"
+ },
+ "shop/hifi": {
+ "name": "محل بيع أجهزة عالية الدقة",
+ "terms": "محل بيع أجهزة عالية الدقة"
+ },
+ "shop/hobby": {
+ "name": "متاجر الهوايات"
+ },
+ "shop/household_linen": {
+ "name": "محل المفروشات والأغطية المنزلية",
+ "terms": "محل المفروشات والأغطية المنزلية"
+ },
+ "shop/houseware": {
+ "name": "متجر بيع الأدوات المنزلية الصغيرة",
+ "terms": "متجر الأدوات المنزلية"
+ },
+ "shop/hunting": {
+ "name": "متجر بيع أسلحة ومعدات الصيد",
+ "terms": "متجر بيع أسلحة ومعدات الصيد"
+ },
+ "shop/interior_decoration": {
+ "name": "متجر الديكور الداخلي",
+ "terms": "متجر الديكور الداخلي"
+ },
+ "shop/jewelry": {
+ "name": "محل بيع مجوهرات",
+ "terms": "محل مجوهرات,ذهب,فضة"
+ },
+ "shop/kiosk": {
+ "name": "كشك",
+ "terms": "كشك"
+ },
+ "shop/kitchen": {
+ "name": "متجر ديكور وتصميم المطابخ",
+ "terms": "ديكور,مطابخ,تصميم"
+ },
+ "shop/laundry": {
+ "name": "محل غسيل ملابس",
+ "terms": "غسيل ملابس,مغسلة ملابس"
+ },
+ "shop/laundry/self_service": {
+ "name": "مغسلة ملابس - خدمة ذاتية",
+ "terms": "مغسلة ملابس - خدمة ذاتية,مغسلة اخدم نفسك بنفسك"
+ },
+ "shop/leather": {
+ "name": "متجر المنتجات الجلدية",
+ "terms": "متجر المنتجات الجلدية"
+ },
+ "shop/lighting": {
+ "name": "متجر إنارة ولمبات",
+ "terms": "متجر إنارة ولمبات"
+ },
+ "shop/locksmith": {
+ "name": "محل بيع أقفال ونسخ مفاتيح",
+ "terms": "صانع اﻷقفال، أقفال، حداد،"
+ },
+ "shop/lottery": {
+ "name": "متجر اليانصيب"
+ },
+ "shop/mall": {
+ "name": "مركز تسوق تجاري (مول)",
+ "terms": "مركز تسوق,مول"
+ },
+ "shop/massage": {
+ "name": "صالون التدليك",
+ "terms": "صالون التدليك"
+ },
+ "shop/medical_supply": {
+ "name": "متجر مستلزمات وأجهزة طبية",
+ "terms": "متجر مستلزمات طبية"
+ },
+ "shop/military_surplus": {
+ "name": "متجر بيع المعدات والمستلزمات العسكرية المستعملة",
+ "terms": "متجر بيع المعدات والمستلزمات العسكرية المستعملة"
+ },
+ "shop/mobile_phone": {
+ "name": "محل بيع هواتف",
+ "terms": "محل بيع هواتف"
+ },
+ "shop/model": {
+ "name": "متجر بيع النماذج المصغرة للأشياء",
+ "terms": "متجر بيع النماذج المصغرة للأشياء"
+ },
+ "shop/money_lender": {
+ "name": "مُقرض المال",
+ "terms": "مُقرض المال"
+ },
+ "shop/motorcycle": {
+ "name": "بائع دراجات نارية",
+ "terms": "وكالة دراجات هوائية; توكيل; بائع; توكيل دراجات; بائع دراجات; بيع دراجات; بيع"
+ },
+ "shop/motorcycle_repair": {
+ "name": "ورشة تصليح الدراجات النارية",
+ "terms": "ورشة تصليح الدراجات النارية"
+ },
+ "shop/music": {
+ "name": "متجر بيع موسيقى",
+ "terms": "محل بيع الموسيقى"
+ },
+ "shop/musical_instrument": {
+ "name": "متجر آلات موسيقية"
+ },
+ "shop/newsagent": {
+ "name": "كشك",
+ "terms": "كشك جرائد ، كشك جرائد ومجلات ، محل بيع الجرائد ، محل بيع صحف",
+ "aliases": "كشك جرائد\nكشك جرائد ومجلات\nمحل بيع الجرائد\nمحل بيع صحف"
+ },
+ "shop/nutrition_supplements": {
+ "name": "متجر المكملات الغذائية",
+ "terms": "متجر المكملات الغذائية، مكملات غذائية"
+ },
+ "shop/nuts": {
+ "name": "متجر المكسرات"
+ },
+ "shop/optician": {
+ "name": "محل نظارات/بصريات",
+ "terms": "محل بيع نظارات,عدسات"
+ },
+ "shop/outdoor": {
+ "name": "متجر معدات الرحلات والتسلق والتخييم",
+ "terms": "متجر ملابس ومعدات الأنشطة في الهواء الطلق"
+ },
+ "shop/outpost": {
+ "name": "محل استلام شحنات مطلوبة من الانترنت",
+ "terms": "محل استلام شحنات مطلوبة من الانترنت"
+ },
+ "shop/paint": {
+ "name": "متجر دهانات وطلاء",
+ "terms": "طلاء"
+ },
+ "shop/party": {
+ "name": "متجر مستلزمات حفلات",
+ "terms": "متجر مستلزمات حفلات"
+ },
+ "shop/pastry": {
+ "name": "متجر حلويات",
+ "terms": "متجر الحلويات"
+ },
+ "shop/pawnbroker": {
+ "name": "متجر رهن",
+ "terms": "متجر رهن"
+ },
+ "shop/perfumery": {
+ "name": "متجر عطور",
+ "terms": "عطور"
+ },
+ "shop/pet": {
+ "name": "محل بيع حيوانات أليفة",
+ "terms": "محل حيوانات أليفة"
+ },
+ "shop/photo": {
+ "name": "محل تصوير",
+ "terms": "متجر تظّهير الصور، محل تصوير، مصور"
+ },
+ "shop/pottery": {
+ "name": "متجر فخار",
+ "terms": "متجر فخار"
+ },
+ "shop/printer_ink": {
+ "name": "متجر أحبار طابعة",
+ "terms": "متجر أحبار طابعة"
+ },
+ "shop/psychic": {
+ "name": "Psychic"
+ },
+ "shop/pyrotechnics": {
+ "name": "متجر ألعاب نارية",
+ "terms": "ألعاب نارية"
+ },
+ "shop/radiotechnics": {
+ "name": "متجر بيع قطع الراديو / الإلكترونية",
+ "terms": "متجر المكونات الإلكترونية"
+ },
+ "shop/religion": {
+ "name": "متجر ديني",
+ "terms": "دين,متجر"
+ },
+ "shop/rental": {
+ "name": "محل تأجير",
+ "terms": "محل تأجير"
+ },
+ "shop/repair": {
+ "name": "محل تصليح",
+ "terms": "محل تصليح"
+ },
+ "shop/scuba_diving": {
+ "name": "متجر معدات الغوص تحت الماء",
+ "terms": "متجر معدات الغوص تحت الماء"
+ },
+ "shop/seafood": {
+ "name": "متجر مأكولات بحرية",
+ "terms": "مأكولات بحرية,مسمكة,سمك"
+ },
+ "shop/second_hand": {
+ "name": "متجر التوفير",
+ "terms": "محل لبيع البضائع المستعملة ، محل التوفير ، البال ، البالي ، قديم ، أشياء قديمة ، مستعمل ، بال"
+ },
+ "shop/sewing": {
+ "name": "متجر مستلزمات خياطة",
+ "terms": "خياطة,ترزي,خياط"
+ },
+ "shop/shoe_repair": {
+ "name": "محل تصليح الأحذية",
+ "terms": "محل تصليح الأحذية"
+ },
+ "shop/shoes": {
+ "name": "متجر أحذية",
+ "terms": "محل بيع أحذية,حذاء,احذية"
+ },
+ "shop/spices": {
+ "name": "محل بيع بهارات",
+ "terms": "محل بيع بهارات"
+ },
+ "shop/sports": {
+ "name": "متجر بيع أدوات رياضية",
+ "terms": "محل بيع أدوات رياضية"
+ },
+ "shop/stationery": {
+ "name": "متجر قرطاسية و أدوات مكتبية",
+ "terms": "محل بيع أدوات مكتبية,قرطاسية,مكتبة"
+ },
+ "shop/storage_rental": {
+ "name": "محل تأجير أماكن التخزين",
+ "terms": "محل تأجير أماكن التخزين"
+ },
+ "shop/supermarket": {
+ "name": "سوبر ماركت",
+ "terms": "سوبرماركت,متجر كبير"
+ },
+ "shop/supermarket/organic": {
+ "name": "سوبر ماركت عضوي",
+ "terms": "سوبر ماركت عضوي"
+ },
+ "shop/swimming_pool": {
+ "name": "متجر مستلزمات حمامات السباحة",
+ "terms": "متجر مستلزمات حمامات السباحة"
+ },
+ "shop/tailor": {
+ "name": "خياط",
+ "terms": "خياط,ترزي"
+ },
+ "shop/tattoo": {
+ "name": "صالون الوشم"
+ },
+ "shop/tea": {
+ "name": "متجر شاي",
+ "terms": "محل بيع الشاي، شاي"
+ },
+ "shop/telecommunication": {
+ "name": "متجر بيع بالتجزئة لشركة اتصالات",
+ "terms": "متجر بيع بالتجزئة لشركة اتصالات"
+ },
+ "shop/ticket": {
+ "name": "بائع تذاكر",
+ "terms": "بائع التذاكر; تذاكر"
+ },
+ "shop/tiles": {
+ "name": "متجر بلاط",
+ "terms": "محل بيع البلاط، بلاط، خزف,سيراميك"
+ },
+ "shop/tobacco": {
+ "name": "محل بيع التبغ",
+ "terms": "تبغ، سيجارة"
+ },
+ "shop/tool_hire": {
+ "name": "محل تأجير معدات",
+ "terms": "محل تأجير معدات"
+ },
+ "shop/toys": {
+ "name": "متجر ألعاب",
+ "terms": "محل ألعاب"
+ },
+ "shop/trade": {
+ "name": "محلات بيع مواد بالجملة",
+ "terms": "محلات البيع بالجملة,مبسط,مواد بناء"
+ },
+ "shop/travel_agency": {
+ "name": "وكالة السفر",
+ "terms": "وكالة سفر"
+ },
+ "shop/trophy": {
+ "name": "محل بيع جوائز ودروع ولوحات تذكارية",
+ "terms": "محل بيع جوائز ودروع ولوحات تذكارية"
+ },
+ "shop/tyres": {
+ "name": "محل بيع إطارات",
+ "terms": "محل بيع إطارات,كفرات,بيع كفرات"
+ },
+ "shop/vacant": {
+ "name": "محل شاغر",
+ "terms": "محل شاغر,محل فاضي"
+ },
+ "shop/vacuum_cleaner": {
+ "name": "متجر المكنسات الكهربائية",
+ "terms": "متجر المكنسات الكهربائية; مكنسات كهربائية"
+ },
+ "shop/variety_store": {
+ "name": "متجر التخفيضات",
+ "terms": "متجر التخفيضات ، متجر الخصم ، متجر الخصومات ، محلات كماليات رخيصة (أبو خمسة) ، منوعات وكماليات رخيصة ، محل كل شيء ، محل كماليات رخيصة",
+ "aliases": "متجر الخصم\nمتجر الخصومات\nمحلات كماليات رخيصة (أبو خمسة)\nمنوعات وكماليات رخيصة\nمحل كل شيء\nمحل كماليات رخيصة"
+ },
+ "shop/video": {
+ "name": "محل بيع وتأجير الأفلام",
+ "terms": "محل بيع وتأجير الأفلام"
+ },
+ "shop/video_games": {
+ "name": "متجر العاب الفيديو",
+ "terms": "متجر العاب الفيديو"
+ },
+ "shop/watches": {
+ "name": "متجر الساعات اليدوية",
+ "terms": "متجر الساعات اليدوية"
+ },
+ "shop/water": {
+ "name": "متجر مياه شرب",
+ "terms": "مياه صحية,مياه,ماء"
+ },
+ "shop/water_sports": {
+ "name": "متجر رياضة مائية/سباحة",
+ "terms": "متجر رياضة مائية/سباحة"
+ },
+ "shop/weapons": {
+ "name": "متجر أسلحة",
+ "terms": "متجر الأسلحة"
+ },
+ "shop/wholesale": {
+ "name": "متجر بيع بالجملة",
+ "terms": "محل بيع بالجملة"
+ },
+ "shop/wigs": {
+ "name": "متجر بيع الباروكات",
+ "terms": "متجر بيع الباروكات"
+ },
+ "shop/window_blind": {
+ "name": "محل لبيع ستائر النوافذ",
+ "terms": "محل لبيع ستائر النوافذ"
+ },
+ "shop/wine": {
+ "name": "متجر نبيذ"
+ },
+ "shop/yes": {
+ "name": "متجر (نوع غير محدد)"
+ },
+ "telecom": {
+ "name": "عنصر اتصالات"
+ },
+ "telecom/data_center": {
+ "name": "مركز بيانات",
+ "terms": "مركز بيانات"
+ },
+ "telecom/exchange": {
+ "name": "مقسم الاتصالات",
+ "terms": "مقسم الاتصالات"
+ },
+ "tourism": {
+ "name": "عنصر سياحي"
+ },
+ "tourism/alpine_hut": {
+ "name": "كوخ جبلي",
+ "terms": "كوخ جبلي,لودج جبلي"
+ },
+ "tourism/apartment": {
+ "name": "شقة سياحية",
+ "terms": "شقة سياحية"
+ },
+ "tourism/aquarium": {
+ "name": "حوض سمك",
+ "terms": "حوض سمك"
+ },
+ "tourism/artwork": {
+ "name": "عمل فني",
+ "terms": "عمل فني"
+ },
+ "tourism/artwork/bust": {
+ "name": "صدر"
+ },
+ "tourism/artwork/graffiti": {
+ "name": "جدارية"
+ },
+ "tourism/artwork/installation": {
+ "name": "Art Installation"
+ },
+ "tourism/artwork/mural": {
+ "name": "جدار"
+ },
+ "tourism/artwork/sculpture": {
+ "name": "منحوتة"
+ },
+ "tourism/artwork/statue": {
+ "name": "تمثال"
+ },
+ "tourism/attraction": {
+ "name": "معلم سياحي",
+ "terms": "معلم سياحي,مكان سياحي"
+ },
+ "tourism/camp_pitch": {
+ "name": "Camp Pitch"
+ },
+ "tourism/camp_site": {
+ "name": "مكان التخييم",
+ "terms": "مكان التخييم"
+ },
+ "tourism/camp_site/backcountry": {
+ "name": "منطقة تخييم ريفية",
+ "terms": "منطقة تخييم ريفية"
+ },
+ "tourism/camp_site/group_only": {
+ "name": "منطقة تخييم جماعي",
+ "terms": "منطقة تخييم جماعي"
+ },
+ "tourism/caravan_site": {
+ "name": "موقف عربات كبيرة",
+ "terms": "موقف عربات كبيرة"
+ },
+ "tourism/chalet": {
+ "name": "منتجع - شاليه",
+ "terms": "كوخ لقضاء العطلة,منتجع,شاليه,شالية"
+ },
+ "tourism/gallery": {
+ "name": "رواق الفنون",
+ "terms": "رواق الفنون، متحف الفنون"
+ },
+ "tourism/guest_house": {
+ "name": "دار الضيافة",
+ "terms": "دار الضيافة"
+ },
+ "tourism/hostel": {
+ "name": "نزل / شقة مفروشة",
+ "terms": "نزل"
+ },
+ "tourism/hotel": {
+ "name": "فندق",
+ "terms": "فندق"
+ },
+ "tourism/information": {
+ "name": "معلومات سياحية",
+ "terms": "معلومات سياحية"
+ },
+ "tourism/information/board": {
+ "name": "لوحة المعلومات",
+ "terms": "لوحة المعلومات"
+ },
+ "tourism/information/board/welcome_sign": {
+ "name": "لافتة ترحيب",
+ "terms": "لافتة ترحيب"
+ },
+ "tourism/information/guidepost": {
+ "name": "لافتة إرشادية",
+ "terms": "لافتة إرشادية,لوحة إرشادية,علامة إرشادية"
+ },
+ "tourism/information/map": {
+ "name": "خريطة",
+ "terms": "خريطة"
+ },
+ "tourism/information/office": {
+ "name": "مركز الزوار",
+ "terms": "مركز الزوار"
+ },
+ "tourism/information/route_marker": {
+ "name": "لافتة مسار سياحي",
+ "terms": "لافتة مسار سياحي"
+ },
+ "tourism/information/terminal": {
+ "name": "محطة معلومات",
+ "terms": "محطة معلومات"
+ },
+ "tourism/motel": {
+ "name": "فندق صغير",
+ "terms": "فندق صغير"
+ },
+ "tourism/museum": {
+ "name": "Museum",
+ "terms": "متحف,معرض"
+ },
+ "tourism/museum/history": {
+ "name": "متحف تاريخي",
+ "terms": "متحف تاريخي"
+ },
+ "tourism/picnic_site": {
+ "name": "موقع تنزه",
+ "terms": "موقع نزهة"
+ },
+ "tourism/theme_park": {
+ "name": "حديقة ترفيه",
+ "terms": "حديقة ترفيه"
+ },
+ "tourism/trail_riding_station": {
+ "name": "Trail Riding Station"
+ },
+ "tourism/viewpoint": {
+ "name": "منظر سياحي",
+ "terms": "منظر سياحي"
+ },
+ "tourism/wilderness_hut": {
+ "name": "Wilderness Hut"
+ },
+ "tourism/zoo": {
+ "name": "حديقة حيوانات",
+ "terms": "حديقة الحيوانات"
+ },
+ "tourism/zoo/petting": {
+ "name": "حديقة حيوان أليفة",
+ "terms": "حديقة حيوان أليفة"
+ },
+ "tourism/zoo/safari": {
+ "name": "Safari Park"
+ },
+ "tourism/zoo/wildlife": {
+ "name": "حديقة حيوانات برية",
+ "terms": "حديقة حيوانات برية"
+ },
+ "traffic_calming": {
+ "name": "تخفيف السرعة",
+ "terms": "مطب; مخفف; مهديء; مهدئ; ممهل; تخفيف; تمهيل; مطب صناعي"
+ },
+ "traffic_calming/bump": {
+ "name": "مطب قصير لتخفيف السرعة",
+ "terms": "مطب صغير لتخفيف السرعة"
+ },
+ "traffic_calming/chicane": {
+ "name": "منعطفات صناعية لتخفيف السرعة",
+ "terms": "منعطفات صناعية لتخفيف السرعة"
+ },
+ "traffic_calming/choker": {
+ "name": "بروز هزاز للتنبية بتهدئة السرعة",
+ "terms": "بروز هزاز للتنبية بتهدئة السرعة"
+ },
+ "traffic_calming/cushion": {
+ "name": "مطبات مركبات صغيرة",
+ "terms": "مطبات مركبات صغيرة"
+ },
+ "traffic_calming/dip": {
+ "name": "منخفض لتهدئة السرعة ويسمح بعبور المياة",
+ "terms": "منخفض لتهدئة السرعة ويسمح بعبور المياة"
+ },
+ "traffic_calming/hump": {
+ "name": "مطب طويل لتخفيف السرعة",
+ "terms": "مطب لتخفيف السرعة"
+ },
+ "traffic_calming/mini_bumps": {
+ "name": "مطبات تخفيف سرعة صغيرة",
+ "terms": "مطبات تخفيف سرعة صغيرة"
+ },
+ "traffic_calming/rumble_strip": {
+ "name": "مطبات قصيرة ومنخفضة متتالية على شكل شريط",
+ "terms": "مطبات قصيرة ومنخفضة متتالية على شكل شريط"
+ },
+ "traffic_calming/table": {
+ "name": "مطب مرتفع وطويل لتخفيف السرعة بشكل جبري",
+ "terms": "مطب مرتفع وطويل لتخفيف السرعة بشكل جبري"
+ },
+ "traffic_calming/yes": {
+ "name": "مخفف لحركة المرور (من نوع غير محدد)"
+ },
+ "traffic_sign": {
+ "name": "إشارات المرور",
+ "terms": "إشارة مرورية,علامات المرور"
+ },
+ "traffic_sign/city_limit": {
+ "name": "علامة حدود المدينة/البنيان",
+ "terms": "علامة حدود المدينة,علامة حدود البنيان"
+ },
+ "traffic_sign/maxspeed": {
+ "name": "علامة الحد الأعلى لسرعة الطريق",
+ "terms": "علامة الحد الأعلى لسرعة الطريق"
+ },
+ "traffic_sign/variable_message": {
+ "name": "علامة رسالة متغيرة",
+ "terms": "علامة رسالة متغيرة ، علامة ذات رسالة متغيرة ، علامة مرور ذات رسالة متغيرة"
+ },
+ "type/boundary": {
+ "name": "حدود",
+ "terms": "حدود"
+ },
+ "type/boundary/administrative": {
+ "name": "حدود إدارية",
+ "terms": "حدود إدارية,تقسيمات إدارية"
+ },
+ "type/connectivity": {
+ "name": "ربط طرق ببعضها",
+ "terms": "ربط طرق ببعضها,اتصال طرق ببعضها"
+ },
+ "type/destination_sign": {
+ "name": "لوحات ولافتات الوجهات",
+ "terms": "لوحات ولافتات الوجهات"
+ },
+ "type/enforcement": {
+ "name": "إنفاذ ورصد تطبيق النظام (أجهزة توثيق مخالفات المرور)",
+ "terms": "إنفاذ النظام,أجهزة توثيق مخالفات المرور"
+ },
+ "type/enforcement/maxspeed": {
+ "name": "إنفاذ ورصد حدود السرعة",
+ "terms": "إنفاذ ورصد حدود السرعة"
+ },
+ "type/multipolygon": {
+ "name": "المضلعات المتعددة",
+ "terms": "متعدد الأضلاع"
+ },
+ "type/public_transport/stop_area_group": {
+ "name": "مجموعة منطقة مواقف النقل العام",
+ "terms": "مجموعة منطقة مواقف النقل العام"
+ },
+ "type/restriction": {
+ "name": "قيود الانعطاف",
+ "terms": "قيود"
+ },
+ "type/restriction/no_left_turn": {
+ "name": "ممنوع الإنعطاف لليسار",
+ "terms": "ممنوع الإنعطاف لليسار"
+ },
+ "type/restriction/no_right_turn": {
+ "name": "ممنوع الإنعطاف لليمين",
+ "terms": "ممنوع الإنعطاف لليمين"
+ },
+ "type/restriction/no_straight_on": {
+ "name": "غير مسموح بالذهاب للأمام",
+ "terms": "غير مسموح بالذهاب للأمام"
+ },
+ "type/restriction/no_u_turn": {
+ "name": "ممنوع الدوران (اليوترن)",
+ "terms": "ممنوع الدوران (اليوترن)"
+ },
+ "type/restriction/only_left_turn": {
+ "name": "يسمح بالانعطاف لليسار فقط",
+ "terms": "يسمح بالانعطاف لليسار فقط"
+ },
+ "type/restriction/only_right_turn": {
+ "name": "يسمح بالانعطاف لليمين فقط",
+ "terms": "يسمح بالانعطاف لليمين فقط"
+ },
+ "type/restriction/only_straight_on": {
+ "name": "للأمام فقط",
+ "terms": "للأمام فقط"
+ },
+ "type/restriction/only_u_turn": {
+ "name": "يسمح بالدوران فقط (اليوتيرن)",
+ "terms": "يسمح بالدوران فقط (اليوتيرن)"
+ },
+ "type/route": {
+ "name": "مسار",
+ "terms": "مسار"
+ },
+ "type/route/aerialway": {
+ "name": "طريق جوي",
+ "terms": "طريق جوي"
+ },
+ "type/route/bicycle": {
+ "name": "مسار الدراجات",
+ "terms": "مسار الدراجات,مسارات الدراجات"
+ },
+ "type/route/bus": {
+ "name": "مسار الحافلات",
+ "terms": "مسار باصات، حافلات"
+ },
+ "type/route/detour": {
+ "name": "مسار طريق جانبي",
+ "terms": "مسار طريق جانبي"
+ },
+ "type/route/ferry": {
+ "name": "مسار عبّارة",
+ "terms": "مسار سفن,مسار عبارات"
+ },
+ "type/route/foot": {
+ "name": "مسار مشي",
+ "terms": "مسار مشي"
+ },
+ "type/route/hiking": {
+ "name": "مسارات المشي الخلوي (الهايكنق)",
+ "terms": "مسار المشاة، طريق للمشي,مسارات المشي الخلوي,مسار الهايكنق"
+ },
+ "type/route/horse": {
+ "name": "مسار ركوب الخيل",
+ "terms": "مسار ركوب الخيل"
+ },
+ "type/route/light_rail": {
+ "name": "مسار القطار الخفيف",
+ "terms": "قطار خفيف، ترام"
+ },
+ "type/route/monorail": {
+ "name": "مسار سكة حديد أحادية",
+ "terms": "مسار سكة حديد أحادية"
+ },
+ "type/route/mtb": {
+ "name": "مسار ركوب الدراجات الجبلية",
+ "terms": "مسار ركوب الدراجات الجبلية"
+ },
+ "type/route/pipeline": {
+ "name": "مسار خط أنابيب",
+ "terms": "مسار خط أنابيب"
+ },
+ "type/route/piste": {
+ "name": "مسار التزلج",
+ "terms": "تزلج"
+ },
+ "type/route/power": {
+ "name": "مسار خط كهربائي",
+ "terms": "مسار الطاقة,مسار الكهرباء"
+ },
+ "type/route/railway": {
+ "name": "مسار السكة الحديدية",
+ "terms": "مسار السكة الحديدية,مسار سكة القطار"
+ },
+ "type/route/road": {
+ "name": "مسار طريق",
+ "terms": "مسار الطريق"
+ },
+ "type/route/subway": {
+ "name": "مسار مترو",
+ "terms": "مسار مترو"
+ },
+ "type/route/train": {
+ "name": "مسار قطار",
+ "terms": "مسار القطار"
+ },
+ "type/route/tram": {
+ "name": "مسار ترام",
+ "terms": "مسار ترام"
+ },
+ "type/route/trolleybus": {
+ "name": "مسار حافلات كهربائية",
+ "terms": "مسار حافلات كهربائية"
+ },
+ "type/route_master": {
+ "name": "مسار رئيسي",
+ "terms": "مسار رئيسي"
+ },
+ "type/site": {
+ "name": "موضع",
+ "terms": "موقع"
+ },
+ "type/waterway": {
+ "name": "مجرى مائي",
+ "terms": "مجرى مائي، ممر مائي"
+ },
+ "waterway": {
+ "name": "عنصر مجري مائي"
+ },
+ "waterway/boatyard": {
+ "name": "حوض بناء السفن",
+ "terms": "حوض بناء سفن; ورشة"
+ },
+ "waterway/canal": {
+ "name": "قناة",
+ "terms": "قناة"
+ },
+ "waterway/canal/lock": {
+ "name": "هويس القناة",
+ "terms": "هويس القناة"
+ },
+ "waterway/dam": {
+ "name": "سد",
+ "terms": "سد"
+ },
+ "waterway/ditch": {
+ "name": "مصرف خندقي"
+ },
+ "waterway/dock": {
+ "name": "رصيف بحري رطب/رصيف بحري جاف",
+ "terms": "رصيف بحري رطب/رصيف بحري جاف"
+ },
+ "waterway/drain": {
+ "name": "مصرف مياه",
+ "terms": "مصرف مياه"
+ },
+ "waterway/fish_pass": {
+ "name": "مجرى مائي لمرور الأسماك",
+ "terms": "مجرى مائي لمرور الأسماك"
+ },
+ "waterway/fuel": {
+ "name": "محطة وقود بحري",
+ "terms": "وقود بحري"
+ },
+ "waterway/lock_gate": {
+ "name": "هويس (حوض نقل السفن من مستوى لمستوى)",
+ "terms": "هويس (حوض نقل السفن من مستوى لمستوى)"
+ },
+ "waterway/milestone": {
+ "name": "علامة مسافة المجرى المائي",
+ "terms": "علامة مسافة المجرى المائي"
+ },
+ "waterway/river": {
+ "name": "نهر / مجرى مائي واسع",
+ "terms": "نهر"
+ },
+ "waterway/sanitary_dump_station": {
+ "name": "للتخلص من مخلفات مرحاض السفن",
+ "terms": "التخلص من مرحاض البحر"
+ },
+ "waterway/stream": {
+ "name": "مجرى مائي / شعيب",
+ "terms": "مجرى، جدول مائي,شعيب,وادي"
+ },
+ "waterway/stream_intermittent": {
+ "name": "مجرى متقطع ولا يجري بشكل دائم",
+ "terms": "مجرى متقطع"
+ },
+ "waterway/tidal_channel": {
+ "name": "مجرى مائي طبيعي للمد والجزر",
+ "terms": "مجرى مائي طبيعي للمد والجزر"
+ },
+ "waterway/water_point": {
+ "name": "مياه الشرب البحرية",
+ "terms": "مياه الشرب البحرية"
+ },
+ "waterway/waterfall": {
+ "name": "شلال",
+ "terms": "شلال"
+ },
+ "waterway/weir": {
+ "name": "هدار - سد صغير",
+ "terms": "هدار، سد صغير"
+ }
+ }
+ }
+ }
}
\ No newline at end of file
diff --git a/dist/translations/ar-AA.min.json b/dist/translations/ar-AA.min.json
index 5bec9b9a..f2bc5337 100644
--- a/dist/translations/ar-AA.min.json
+++ b/dist/translations/ar-AA.min.json
@@ -1 +1 @@
-{"ar-AA":{}}
\ No newline at end of file
+{"ar-AA":{"presets":{"categories":{"category-barrier":{"name":"عناصر الحواجز"},"category-building":{"name":"عناصر المباني"},"category-golf":{"name":"عناصر الجولف"},"category-landuse":{"name":"عناصر الأراضي"},"category-natural":{"name":"عناصر طبيعية"},"category-path":{"name":"مسارات"},"category-playground":{"name":"أجهزة وتركيبات الملعب"},"category-rail":{"name":"سكك حديدية"},"category-restriction":{"name":"عناصر للقيود والمحددات"},"category-road_major":{"name":"طرق رئيسية"},"category-road_minor":{"name":"طرق فرعية"},"category-road_service":{"name":"طرق الخدمة (المؤدية لخدمات)"},"category-route":{"name":"عناصر المسارات"},"category-utility":{"name":"عناصر الخدمات"},"category-water":{"name":"مسطحات مائية"},"category-waterway":{"name":"مجاري مائية"}},"fields":{"access":{"label":"الوصول المسموح به","options":{"customers":{"description":"مخصص فقط للعملاء المتوجهين إلى المكان","title":"للعملاء - الزبائن"},"designated":{"description":"يسمح بالوصول حسب الارشادات او القوانين المحلية","title":"مخصص/محدد"},"destination":{"description":"يسمح بالوصول إلى الوجهة المقصودة والمحددة في المكان دون سائر المكان","title":"الوجهة"},"dismount":{"description":"يسمح بالوصول ولكن يجب على السائق الترجل","title":"مترجل"},"no":{"description":"الوصول غير مسموح لعامة الناس","title":"محظور"},"permissive":{"description":"الوصول مسموح إلى أن يحين الوقت الذي يلغي فيه المالك الإذن بذلك","title":"مسموح من المالك"},"permit":{"description":"لا يسمح بالوصول إلا برخصة أو تصريح ساري المفعول","title":"تصريح"},"private":{"description":"لا يسمح بالوصول إلا بإذن من المالك على أساس فردي","title":"خاص"},"unknown":{"description":"صلاحية السماح بالوصول غير معروفة أو غير واضحة","title":"غير معروفة"},"yes":{"description":"الوصول مسموح طبقا للقانون ; حق المرور","title":"مسموح"}},"placeholder":"غير محدد","terms":"الوصول المسموح به,السماح بالدخول,يسمح بالدخول","types":{"access":"الكل","bicycle":"دراجات هوائية","foot":"بالقدم","horse":"أحصنة","motor_vehicle":"سيارات"}},"access_aisle":{"label":"النوع"},"access_simple":{"label":"الوصول المسموح به","options":{"customers":"للعملاء/الزبائن فقط","no":"لا شيء","permissive":"مسموح من المالك","permit":"بتصريح فقط","private":"خاص","unknown":"غير معروفة","yes":"عام"},"terms":"الوصول المسموح به,السماح بالدخول,يسمح بالدخول"},"activity":{"label":"نشاط","options":{"bicycle":"ركوب الدراجات","hiking":"المشي الخلوي (هايكنج)","horse":"ركوب الخيل","mtb":"ركوب الدراجات في الجبل","ski":"التزحلق"}},"addr/interpolation":{"label":"النوع","options":{"all":"الكل","alphabetic":"أبجدي","even":"زوجي","odd":"فردي"}},"address":{"label":"العنوان","placeholders":{"block_number":"رقم المربع/البلوك","block_number!jp":"رقم المربع/البلوك","city":"المدينة","city!cn":"المدينة/المحافظة/الأمة أو التحالف","city!jp":"مدينةكبيرة/مدينة/قرية/جناح طوكيو الخاص","city!vn":"مدينة /بلدة","conscriptionnumber":"123","country":"الدولة","county":"المقاطعة/الإقليم/المركز","county!jp":"المحافظة/المديرية","district":"المحافظة/المديرية","district!cn":"مديرية/مقاطعة/شعار","district!vn":"الدائرة/المدينة/المديرية أو المركز","floor":"الطابق/الدور","hamlet":"قرية صغيرة / هجرة","housename":"اسم المنزل","housenumber":"123","housenumber!jp":"رقم المبنى/ رقم القطعة","neighbourhood":"حي","place":"مكان / موضع","postcode":"الرمز البريدي","province":"المحافظة","province!cn":"المحافظة/البلدية/AR/SAR","province!jp":"العمالة (تقسيم إداري)","quarter":"ربع (مجموع مربعات سكنية)","state":"الحالة","street":"شارع","subdistrict":"مديرية فرعية","subdistrict!vn":"جناح/جمعية/بلدة صغيرة","suburb":"ضاحية","town":"مدينة","unit":"وحدة"},"terms":"العنوان,عنوان"},"admin_level":{"label":"المستوى الإداري"},"advertising":{"label":"النوع"},"aerialway":{"label":"النوع"},"aerialway/access":{"label":"الوصول","options":{"both":"كليهما","entry":"مدخل","exit":"مخرج"}},"aerialway/bubble":{"label":"فقاعة"},"aerialway/capacity":{"label":"السعة (لكل ساعة)","placeholder":"500، 2500، 5000..."},"aerialway/duration":{"label":"المدة (بالدقائق)","placeholder":"1 ، 2 ، 3 ..."},"aerialway/heating":{"label":"مسخن"},"aerialway/occupancy":{"label":"عدد المقاعد","placeholder":"...8 ,4 ,2"},"aerialway/summer/access":{"label":"السماح بالوصول (في الصيف)","options":{"both":"كليهما","entry":"مدخل","exit":"مخرج"}},"aeroway":{"label":"النوع"},"agrarian":{"label":"المنتجات"},"air_conditioning":{"label":"تكييف هواء","terms":"تكييف الهواء,التكييف,التبريد"},"aircraft/type":{"label":"النوع","options":{"helicopter":"هليكوبتر","military":"عسكري"}},"alt_name":{"label":"الاسم البديل"},"amenity":{"label":"النوع"},"animal_boarding":{"label":"للحيوانات"},"animal_breeding":{"label":"للحيوانات"},"animal_shelter":{"label":"للحيوانات"},"archaeological_site":{"label":"النوع","options":{"baths":"حمامات","city":"مدينة تاريخية","enclosure":"سياج","fortification":"جدران دفاعية للتحصين","hut_circle":" دائرة الأكواخ","megalith":"ميغاليث/جندل/مغليطيا (آثار صخرية)","necropolis":"مقبرة كبيرة قديمة","petroglyph":"نحت صخري","roman_circus":"سيرك روماني","roman_villa":"فيلا رومانية","settlement":"مستوطنة تاريخية","tumulus":"جثوة"}},"architect":{"label":"مهندس معماري","terms":"مهندس معماري,مصمم"},"area/highway":{"label":"النوع"},"armrest":{"label":" مساند الأذرع","options":{"no":"بدون مساند للذراعين","undefined":"غير معروفة","yes":"مسند ذراع واحد أو أكثر"}},"artist":{"label":"فنان/رسام"},"artwork_type":{"label":"النوع","options":{"bust":"صدر","graffiti":"جدارية","installation":"Art Installation","mosaic":"فسيفساء","mural":"جدار","painting":"لوحة","relief":"نقش بارز، عمل نحت بارز","sculpture":"منحوتة","statue":"تمثال","stone":"حجر معالج فنياً، حجر مزخرف","tilework":"أعمال البلاط، تزيين بالبلاط"}},"ascent":{"label":"إجمالي الصعود","terms":"إجمالي الصعود"},"athletics_pitch":{"label":"حدث","options":{"discus_throw":"نقاش","hammer_throw":"رمي المطرقة","high_jump":"الوثب العالي","javelin_throw":" رمي الرمح","long_jump":"الوثب الطويل","pole_vault":"القفز بالزانة","shot_put":"دفع الجلة","triple_jump":"الوثب الثلاثي"}},"athletics_track":{"label":"حدث","options":{"javelin_throw":" رمي الرمح","long_jump":"الوثب الطويل","pole_vault":"القفز بالزانة","running":"جري","sprint":"العدو السريع","steeplechase":"سباق الموانع","triple_jump":"الوثب الثلاثي"}},"atm":{"label":"ماكينة صرافة آلية"},"attraction":{"label":"النوع","options":{"alpine_coaster":"مزلقة جبلية","amusement_ride":"Amusement Ride","animal":"حظيرة حيوانات","big_wheel":"عجلة فيريس","bumper_car":"Bumper Cars","bungee_jumping":"Bungee Jumping","carousel":"دوامة خيل","dark_ride":"Dark Ride","drop_tower":"Drop Tower Ride","kiddie_ride":"Kiddie Ride","log_flume":"Log Flume","maze":"متاهة","pirate_ship":"Pirate Ship Ride","river_rafting":"River Rapids Ride","roller_coaster":"السفينة الدوارة","summer_toboggan":"Summer Toboggan","swing_carousel":"Swing Carousel","train":"Tourist Train","water_slide":"التزلق على الماء"}},"automated":{"label":"آلية"},"baby_feeding":{"label":"منطقة رضاعة الأطفال","options":{"no":"لا شيء","room":"غرفة مخصصة","yes":"مساحة محددة"},"terms":"منطقة رضاعة الأطفال,منطقة تغيير حفائظ الأطفال,منطقة تلبيس الأطفال,منطقة ترضيع الأطفال"},"baby_seat":{"label":"مقعد طفل"},"backcountry":{"label":"غير معتنى به","terms":"منطقة تخييم بدون مرافق,مخيمات,تخييم"},"backrest":{"label":"كرسي بمسند للظهر"},"bar":{"label":"حانة"},"barrier":{"label":"النوع","options":{"block":" كتلة كبيرة","bollard":"عمود حاجز","cattle_grid":"شبكة أرضية حاجزة للماشية","chain":"سلسلة","city_wall":"جدار المدينة","cycle_barrier":"حاجز دراجات هوائية","ditch":"مصرف خندقي","entrance":"مدخل","fence":"سياج","gate":"بوابة","guard_rail":"حاجز حديدي للحماية من الاصطدام","hedge":"حاجز نباتي","height_restrictor":"حاجز لتقييد الارتفاع","jersey_barrier":"حاجز خرساني - نيوجيرسي","kerb":"منحدر الرصيف المؤدي للشارع","kissing_gate":"بوابة لا تسمح بعبور الماشية","lift_gate":"بوابة حاجز","retaining_wall":"جدار تثبيت للتربة","stile":"درج يسمح للبشر بالمرور فوق السياج","swing_gate":"بوابة عامودية جانبية","toll_booth":"كشك تحصيل رسوم","turnstile":"بوابة دوارة لعبور شخص واحد","wall":"جدار"}},"barrier_planter":{"label":"حاجز","options":{"planter":"نعم","undefined":"لا"}},"basin":{"label":"النوع","options":{"detention":"احتجاز","evaporation":"تبخر","infiltration":"تسلل","retention":"حوض احتجاز مياه الأمطار الصناعي "}},"bath/open_air":{"label":"في الهواء الطلق/خارج البناء"},"bath/type":{"label":"مخصوص","options":{"hammam":"حمام","hot_spring":"العين الحمئة / الينبوع الساخن","lake":"بحيرة","onsen":"ينابيع ساخنة (يابانية)","thermal":"حمام حراري"}},"beauty":{"label":"خدمات","options":{"cosmetics":"مستحضرات التجميل","hair_removal":"مزيل شعر","nails":"مانيكير/باديكير","skin_care":"العناية بالجلد","spa":"منتجع اليوم","tanning":"تسمير","waxing":"إزالة الشعر بالشمع"}},"bench":{"label":"مقعد","terms":"مقعد,مقعد طويل"},"bicycle_parking":{"label":"النوع","options":{"building":"في مبنى","handlebar_holder":"حامل المقود","lockers":"خزائن فردية","shed":"سقيفة مغلقة","stands":"حامل (يدعم إطار الدراجة)","wall_loops":"مقود العجلات (يدعم العجلة فقط)"}},"bicycle_road":{"label":"شارع الدراجات","options":{"undefined":"لا","yes":"نعم"}},"bike_ride":{"label":"اصطفاف وركوب","terms":"اصطفاف وركوب,ركن الدراجة والركوب"},"bin":{"label":"سلة النفايات","terms":"سلة المهملات,سلة القمامة,قمامة,مهملات,زبالة"},"blind":{"label":"وصول/دخول المكفوفين","options":{"limited":"محدودة","no":"لا","yes":"نعم"},"terms":"وصول المكفوفين,وصول العميان,دخول المكفوفين,دخول العميان"},"blood_components":{"label":"مكونات الدم","options":{"plasma":"بلازما","platelets":"صفائح دموية","stemcells":"عينات خلايا جذعية","whole":"كل الدم"}},"board_type":{"label":"النوع","options":{"art":"فن","astronomy":"علم الفلك","geology":"جيولوجيا","history":"تاريخ","nature":"الطبيعة","notice":"لوحة الإعلانات والملصقات","plants":"النباتات","welcome_sign":"لافتة ترحيب","wildlife":"حيوانات برية"}},"bollard":{"label":"النوع","options":{"fixed":"حاجز ثابت","flexible":"حاجز مرن","foldable":"حاجز قابل للطي","removable":"حاجز قابل للإزالة","rising":"حاجز قابل للارتفاع"}},"booth":{"label":"كشك/دكان","terms":"كشك,سقيفة,حجرة صغيرة"},"bottle":{"label":"تعبئة القوارير"},"boules":{"label":"النوع"},"boundary":{"label":"النوع"},"branch_brand":{"label":"اسم الفرع","terms":"الفرع,الاسم الفرعي"},"brand":{"label":"العلامة التجارية","terms":"العلامة التجارية,الماركة,البراند"},"bridge":{"label":"النوع","placeholder":"الافتراضي"},"bridge/support":{"label":"النوع"},"bridge_combo":{"label":"النوع","options":{"aqueduct":"قناة مياه على جسر","boardwalk":"ممر خشبي","movable":"جسر متحرك"}},"building":{"label":"مبنى","options":{"allotment_house":" الحدائق/المزارع المحصصة","apartments":"مبنى شقق سكنية","barn":"حظيرة","boathouse":"مبنى تخزين القوارب","bungalow":"منزل بطابق واحد","bunker":"ملجأ محصّن","cabin":"كوخ","carport":"مرآب/مظلة سيارات","cathedral":"مبنى كاتدرائية","chapel":"معبد نصراني","church":"مبنى كنيسة","civic":"مبنى مرافق مدنية","college":"مبنى كلية","commercial":"مبني تجاري","construction":"مبنى تحت الإنشاء","cowshed":"سقيفة/مظلة أبقار","detached":"منزل منفصل","dormitory":"سكن جامعي","farm":"بيت ريفي","farm_auxiliary":"مبنى مزرعة","garage":"مرآب/جراج","garages":"جراجات","ger":"منزل اليورت","grandstand":"مُدَرج","greenhouse":"محمية زراعية","hangar":"حظيرة طائرات","hospital":"مبنى مستشفى","hotel":"مبنى فندق","house":"منزل","houseboat":"بيت عائم","hut":"كوخ بدائي/عشة","industrial":"مبنى صناعي","kindergarten":"مبنى حضانة / روض","manufacture":"مبنى إنتاج صناعي","mosque":"مبنى مسجد","office":"مبنى مكاتب إدارية","outbuilding":"ملحق","pavilion":"مبنى مرافق رياضية","public":"مبنى عام","residential":"مبنى سكني","retail":"مبنى بيع بالتجزئة","riding_hall":"حلبة ركوب الخيل","roof":"سقف/سطح","ruins":"مبنى أثري/مهجور/متهدم","school":"مبنى مدرسة","semidetached_house":"مبنى شبه منفصل","service":"مبنى خدمات (محولات، آلات،مضخات..الخ)","shed":"سقيفة(مستودع/ورشة عمل صغيرة)","stable":"إسطبل","stadium":"مبنى الملعب","sty":"Pigsty","synagogue":"Synagogue Building","temple":"مبنى المعبد","terrace":"صف منازل متلاصقه","train_station":"مبنى محطة القطار","transportation":"مبنى للنقل العام","university":"مبنى جامعي","warehouse":"مستودع"},"terms":"المبنى,البناية,العمارة"},"building/flats":{"label":"الوحدات","placeholder":"2, 4, 6, 8..."},"building/levels":{"label":"المسويات","placeholder":"2, 4, 6...","terms":"المستويات,الطوابق,الأدوار"},"building/levels/underground":{"label":"مستويات تحت الأرض","placeholder":"2, 4, 6...","terms":"مستويات تحت الأرض,تحت سطح الأرض,جوف الأرض,مدفون"},"building/material":{"label":"مادة البناء","terms":"المادة,المواد"},"building/part":{"label":"جزء من مبنى"},"building/prefabricated":{"label":"مسبقة الصنع","terms":"مصنوعة من قبل"},"bunker_type":{"label":"النوع"},"button_operated":{"label":"زر الاتصال"},"cables":{"label":"الكابلات","placeholder":"1 ، 2 ، 3 ..."},"cai_scale-IT":{"label":"صعوبة مسار المشي لمسافات طويلة (نادي جبال الألب الإيطالي)","options":{"E":"E: لممارسي رياضة المشي لمسافات طويلة","EAI":"EAI: المشي لمسافات طويلة في ظروف ثلجية","EE":"EE: للمتنزهين الخبراء","EEA":"EEA: للمتنزهين الخبراء بالمعدات","T":"T: سياحي"},"placeholder":"T, E, EE, …","terms":"صعوبة مسار المشي لمسافات طويلة (نادي جبال الألب الإيطالي)"},"camera/direction":{"label":"الاتجاهات (بالدرجات في اتجاه عقارب الساعة)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"حامل كاميرا"},"camera/type":{"label":"نوع الكاميرا","options":{"dome":"قبة","fixed":"ثابتة","panning":"ثابتة بمحور للدوران"}},"camp_site":{"label":"النوع"},"capacity":{"label":"السعة","placeholder":"50، 100، 200...","terms":"السعة,القدرة الاستيعابية"},"capacity/caravans":{"placeholder":"10، 20، 50..."},"capacity/disabled_parking":{"label":"مساحات للمعاقين/ذوي الاحتياجات الخاصة","placeholder":"1 ، 2 ، 3 ..."},"capacity/persons":{"label":"السعة (بالأشخاص)","placeholder":"50، 100، 200..."},"capacity/tents":{"label":"السعة (للخيام)","placeholder":"10، 20، 50..."},"capacity_parking":{"label":"مجموع المساحات","placeholder":"10, 20, 30..."},"capacity_volume":{"label":"السعة (متر مكعب)","placeholder":"50، 100، 200..."},"cash_in":{"label":"ودائع"},"castle_type":{"label":"النوع","options":{"castrum":"طريق روماني","defensive":"قلعة دفاعية","fortress":"حصن تاريخي","hillfort":"حصن التلال","kremlin":"الكرملين","manor":"قصر سكني قديم/تاريخي","palace":"قصر","shiro":"شيرو - قلعة يابانية","stately":"منزل فخم"}},"changing_table":{"label":"طاولة تغيير الحفاضات"},"charge_fee":{"label":"مبلغ الرسوم","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"مبلغ الرسوم"},"charge_toll":{"label":"مبلغ الرسوم","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"مبلغ الرسوم,مبلغ الإتاوة,مبلغ التحصيل"},"check_date":{"label":"تاريخ آخر فحص","placeholder":"YYYY-MM-DD"},"circumference":{"label":"محيط (على ارتفاع الصدر)","placeholder":"1 متر, 20 سم, 30\"…","terms":"محيط الدائرة (على ارتفاع الصدر)"},"climbing/length":{"label":"الطول (بالأمتار)","terms":"العرض (بالمتر)"},"climbing/trad":{"label":"التسلق التقليدي"},"clothes":{"label":"ملابس","options":{"hats":"قبعات","suits":"محل بدل","swimwear":"ملابس سباحة","underwear":"الملابس الداخلية","workwear":"ملابس العمل"},"terms":"ملابس,ثياب,كسوة"},"club":{"label":"النوع"},"collection_times":{"label":"وقت الاستلام"},"collector":{"label":"العناصر","options":{"coins":"عملات معدنية","stamps":"طوابع بريدية"}},"colour":{"label":"اللون","terms":"اللون"},"comment":{"label":"التعليق على التغييرات","placeholder":"وصف موجز لمساهماتك وتعديلاتك (مطلوب)"},"communication_multi":{"label":"أنواع الاتصال","terms":"أنواع الاتصال"},"community_centre":{"label":"النوع","options":{"youth_centre":"مركز الشباب"}},"connectivity":{"label":"الاتصال/الالتقاء"},"construction":{"label":"النوع"},"consulate":{"label":"النوع","options":{"yes":"قنصلية"}},"consulting":{"label":"خبرات/استشارات"},"contact/webcam":{"label":"رابط كاميرا الويب","placeholder":"http://example.com"},"content":{"label":"المحتوى"},"conveying":{"label":"اتجاه الحركة","options":{"backward":"للخلف","forward":"للأمام","reversible":"قابل لتغيير الاتجاه حسب الزحام وبشكل منتظم"}},"conveying_escalator":{"label":"سلم كهربائى"},"country":{"label":"الدولة"},"country_flag":{"label":"علم الدولة"},"couplings":{"label":"وصلات","placeholder":"1 ، 2 ، 3 ..."},"covered":{"label":"مغطى","terms":"مغطى"},"covered_no":{"options":{"no":"لا","undefined":"يفترض أن يكون لا","yes":"نعم"}},"craft":{"label":"النوع","options":{"agricultural_engines":"ميكانيكي محركات زراعية","basket_maker":"صناعة وحياكة السِلال","beekeeper":"مربي النحل","blacksmith":"حدّاد","boatbuilder":"بنّاء السفن","bookbinder":"تغليف وتجليد الكتب","brewery":"مصنع الجعة","builder":"منشئ","carpenter":"نجار","carpet_layer":"فرش وتركيب المفروشات","caterer":"تموين أو متعهد إعاشة","chimney_sweeper":"منظف مداخن","cleaning":"خدمات التنظيف","clockmaker":"ساعاتي","confectionery":"حلواني","distillery":"Distillery","dressmaker":"خياط نسائي","electrician":"كهربائي","floorer":"مبلط/تبليط/أرضيات","gardener":"بستاني","glaziery":"تركيب وإصلاح الزجاج","handicraft":"حرف يدوية","insulation":"تركيب عوازل حرارية","jeweller":"صائغ مجوهرات","joiner":"نجار","key_cutter":"قص ونسخ مفاتيح","locksmith":"محل بيع أقفال ونسخ مفاتيح","metal_construction":"صناعات المعادن والمواد الصلبة","painter":"دهّان","parquet_layer":"تركيب أرضيات خشبية (باركيه)","photographer":"Photographer","photographic_laboratory":"مختبر التصوير","plasterer":"جصاص (أعمال الجبس)","plumber":"سباكة","pottery":"صناعة وبيع الفخار","rigger":"الصواري والحبال والأشرعة","roofer":"بناء الأسقف والقرميد","saddler":"صانع سراج","sailmaker":"صانع أشرعة","sawmill":"منشرة","scaffolder":"تركيب وتأجير السقالة","sculptor":"نحّات","shoemaker":"إسكافي/ صانع الأحذية","signmaker":"خطاط ومصمم لوحات تجارية","stonemason":"قطع ونحت وتشكيل الحجارة","tailor":"خياط","tiler":"مبلط","tinsmith":"سمكري","upholsterer":"منجد","watchmaker":"ساعاتي","window_construction":"تركيب النوافذ","winery":"Winery"}},"crane/type":{"label":"نوع الرافعة","options":{"floor-mounted_crane":"رافعة مثبتة على الأرض","portal_crane":"رافعة جسرية","travel_lift":"رافعة متحركة"}},"crop":{"label":"محاصيل","options":{"asparagus":"نبات الهليون","barley":"شعير","beet":"بنجر","cassava":"بفرة","coffee":"قهوة","cotton":"قطن","cranberries":"توت بري","fast_growing_wood":"تنسيغ قصير الأجل","flowers":"زهور","grape":"عنب","grass":"عشب","hop":"جنجلة","lavender":"خزامي","maize":"ذرة","potato":"بطاطس","rape":"لفت","rice":"أرز","soy":"فول الصويا","strawberry":"فراولة","sugar_beet":"شمندر سكري","sugarcane":"قصب السكر","sunflower":"تباع الشمس","tea":"شاي","tobacco":"Tobacco","vegetable":"خضروات","wheat":"قمح"}},"crossing":{"label":"النوع","options":{"traffic_signals":"معبر بإشارات مرور","uncontrolled":"فقط علامات الطريق","unmarked":"لا توجد علامات طريق أو إشارات مرور"}},"crossing/barrier":{"label":"ذراع الحاجز","options":{"double_half":"مزدوج لكل نصف","full":"كامل","half":"النصف","no":"لا","yes":"نعم"}},"crossing/bell":{"label":"جرس"},"crossing/island":{"label":"جزيرة مشاة بين طريقين"},"crossing/light":{"label":"إضاءات"},"crossing/markings":{"label":"علامات المعابر","options":{"dashes":"خطوط عرضية متقطعة","dots":"خطوط عرضية منقطة","ladder":"سلم مع قضبان طولية","ladder:paired":"سلم مع قضبان طولية مقترنة","ladder:skewed":"سلم مع قضبان قطرية","lines":"خطوط عرضية","lines:paired":"خطوط عرضية مزدوجة","no":"لايوجد به علامات","pictograms":"الرسوم التوضيحية المرسومة","surface":"على السطح فقط","yes":"توجد علامات بطريقة غير مباشرة","zebra":"قضبان طولية","zebra:bicolour":"قضبان طولية بألوان متناوبة","zebra:double":"الثلاثي الرباعي","zebra:paired":"قضبان طولية مقترنة"},"terms":"علامات المشاة,علامات المرور"},"crossing_raised":{"label":"مرتفع","options":{"table":"نعم","undefined":"لا"}},"cuisine":{"label":"المأكولات","options":{"african":"إفريقي","american":"أمريكي","arab":"عربي","argentinian":"ارجنتيني","asian":"آسيوي","bagel":"كعك بايقل","balkan":"البلقان","barbecue":"شواء/مشاوي","bavarian":"البافاريه","brazilian":"برازيلي","bubble_tea":"شاي الفقاعات","burger":"برجر","cake":"كيك","caribbean":"كاريبي","chicken":"دجاج","chinese":"صيني","coffee_shop":"مقهى","crepe":"كريب (بان كيك رقيق)","curry":"كاري","dessert":"حلويات بعد الطعام","donut":"دونات","filipino":"فلبيني","fish":"سمك","french":"فرنسي","georgian":"الجورجية","german":"ألماني","greek":"يوناني","hot_dog":"هوت دوج","ice_cream":"بوظة/آيسكريم","indian":"هندي","indonesian":"أندونيسي","italian":"إيطالي","japanese":"ياباني","juice":"عصير","kebab":"كباب","korean":"كوري","lebanese":"لبناني","malaysian":"ماليزي","mediterranean":"البحر الابيض المتوسط","mexican":"مكسيكي","moroccan":"مغربي","noodle":"المعكرونة","pancake":"بان كيك (فطيرة مسطحة)","pasta":"باستا","pastry":"متجر المعجنات والحلويات","persian":"فارسي","peruvian":"بيروفي","pizza":"بيتزا","polish":"بولندي","portuguese":"برتغالي","ramen":"رامن","regional":"إقليمي / محلي","russian":"روسي","salad":"سلطة","sandwich":"خبز / ساندويتش","sausage":"سجق","seafood":"مأكولات بحرية","soba":"سوبا","spanish":"أسباني","steak_house":"شرائح لحم (ستيك)","sushi":"سوشي","taiwanese":"تايواني","tapas":"تاباس","tea":"شاي","thai":"تيلاندي","turkish":"تركي","ukrainian":"الأوكرانية","vietnamese":"فيتنامي"},"terms":"نوع الطعام,أنواع الطعام,الأطباق,المأكولات,الأطعمة"},"currency_multi":{"label":"أنواع العملات","terms":"أنواع العملات"},"cutting":{"label":"النوع","placeholder":"الافتراضي"},"cycle_barrier":{"label":"النوع","options":{"diagonal":"قطري","double":"مزدوج","single":"فردي","triple":"ثلاثية"}},"cycle_barrier/installation":{"label":"التنصيب","options":{"fixed":"ثابتة","removable":"قابل للإزالة"}},"cycle_network":{"label":"الشبكة"},"cycleway":{"label":"مسارات الدراجات","options":{"lane":{"description":"مسار دراجات مفصول عن السيارات بخط مطبوع"},"no":{"description":"لا يوجد مسار للدراجات","title":"لا شيء"},"separate":{"description":"للإشارة إلى أنه قد تم تخطيط مسار الدراجات باعتباره شكلًا هندسيًا منفصلاً"},"share_busway":{"description":"مسار درجات مشتركة مع مسار الحافلات"},"shared_lane":{"description":"مسار دراجات غير مفصول عن حركة مرور السيارات"},"track":{"description":"مسار دراجات مفصول عن السيارات بحاجز","title":"مسار الدراجة"}},"terms":"مسارات الداراجات,مسارات الدراجات الهوائية","types":{"cycleway:left":"الجانب الأيسر","cycleway:right":"الجانب الأيمن"}},"dance/style":{"label":"أساليب الرقص"},"date":{"label":"التاريخ"},"defibrillator/location":{"label":"وصف مكانه"},"delivery":{"label":"توصيل طلبات","terms":"توصيل طلبات,تسليم طلبات"},"denomination":{"label":"المذهب/الطائفة","terms":"المذهب/الطائفة,المذهب,الطائفة"},"denotation":{"label":"علامة/معلم","terms":"دلالة"},"departures_board":{"label":"لوحة المغادرين/القادمين","options":{"no":"لا شيء","realtime":"الوقت الفعلي","timetable":"جدول المواعيد","yes":"نعم"}},"deposit/trolley":{"label":"إيداع"},"depot":{"label":"النوع"},"depth":{"label":"العمق (متر)"},"descent":{"label":"إجمالي النزول","terms":"إجمالي النزول"},"description":{"label":"الوصف","terms":"وصف,وصوف,أوصاف,وصف إضافي"},"design":{"label":"التصميم"},"destination":{"label":"الوجهة الرئيسية"},"destination/ref":{"label":"أرقام طُرق الوجهة"},"destination/symbol":{"label":"رموز الوجهة"},"destination_waterway":{"label":"الوجهة"},"devices":{"label":"الأجهزة","placeholder":"1 ، 2 ، 3 ..."},"diameter":{"label":"القطر","placeholder":"5مم(mm)، 10سم(cm)، 15 بوصة(in)","terms":"قطر الدائرة"},"diameter_crown":{"label":"قطر التاج","placeholder":"4 متر, 9', …","terms":"قطر التاج"},"diet_multi":{"label":"النمط الغذائي","options":{"gluten_free":"خالي من الجلوتين (القمح والشعير ..الخ)","halal":"حلال (مطابق للشريعة الإسلامية)","kosher":"كوشر (لليهود)","lactose_free":"خالي من اللاكتوز (الحساسية من الحليب)","pescetarian":"نباتيو الأسماك","vegan":"نباتي","vegetarian":"نباتي ويأكل مشتقات الحيوانات"},"terms":"أنواع النظام الغذائي,النمط الغذائي,الحمية الغذائية,المحظورات الغذائية"},"diplomatic":{"label":"النوع","options":{"consulate":"قنصلية","embassy":"سفارة","liaison":"مكتب اتصال دبلوماسي"}},"diplomatic/services":{"label":"خدمات"},"direction":{"label":"الاتجاهات (بالدرجات في اتجاه عقارب الساعة)","placeholder":"45, 90, 180, 270","terms":"الاتجاه (بالدرجات في اتجاه عقارب الساعة)"},"direction_cardinal-US-CA-NZ":{"label":"الاتجاه","options":{"east":"شرقاً","north":"شمالاً","south":"جنوباً","west":"غرباً"},"terms":"الاتجاه,الوجهة"},"direction_clock":{"label":"الاتجاه","options":{"anticlockwise":"عكس عقارب الساعة","clockwise":"باتجاه عقارب الساعة"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"label":"اتجاه علامة الطريق","options":{"backward":"للخلف","both":"للاتجاهين","forward":"للأمام"},"terms":"الاتجاه المتأثر"},"dispensing":{"label":"يصرف أدوية بوصفة طبية"},"display":{"label":"عرض","options":{"analog":"تناظري","digital":"رقمي","sundial":"مزولة","unorthodox":"غير تقليدي"}},"distance":{"label":"المسافة","terms":"المسافة,المدى,الطول"},"disused/amenity":{"label":"النوع"},"disused/railway":{"label":"النوع"},"disused/shop":{"label":"النوع"},"dock":{"label":"النوع"},"dog":{"label":"كلاب","options":{"leashed":"مقيديين فقط","no":"غير مسموح","yes":"مسموح"},"terms":"كلاب"},"door":{"label":"باب"},"door_type":{"label":"النوع"},"drink_multi":{"label":"المشروبات"},"drinking_water":{"label":"صالح للشرب","terms":"صالح للشرب"},"drinking_water_available":{"label":"تتوفر مياه قابلة للشرب","terms":"تتوفر مياه قابلة للشرب"},"drive_through":{"label":"ممر الطلب بالسيارة","terms":"ممر الطلب بالسيارة"},"duration":{"label":" المدة","placeholder":"00:00","terms":"المدة"},"ele":{"label":"الارتفاع (متر)","terms":"الارتفاع (متر)"},"electrified":{"label":"الكهربية","options":{"contact_line":"كيابل معلقة بأبراج","no":"لا","rail":"سكة حديد مكهربة","yes":"نعم (غير محدد)"},"placeholder":"كيابل كهربائية معلقة بأبراج للسكك حديدية...","terms":"البنية الكهربائية,البنية التحتية للكهرباء,بنية الكهرباء,خطوط الكهرباء"},"email":{"label":"البريد الإلكتروني","placeholder":"example@example.com","terms":"البريد الإلكتروني,إيميل"},"embankment":{"label":"النوع","placeholder":"الافتراضي"},"embassy":{"label":"النوع","options":{"branch_embassy":"فرع سفارة","delegation":"تفويض","high_commission":"اللجنة العليا","interests_section":"Interests section","mission":"مكتب دبلوماسي","nunciature":"Diplomatic Mission of the Holy See","residence":"الإقامة الرسمية للسفير","yes":"سفارة"}},"emergency":{"label":"طوارئ"},"emergency_combo":{"label":"النوع"},"emergency_ward_entrance":{"label":"النوع"},"enforcement":{"label":"النوع"},"entrance":{"label":"النوع","options":{"emergency":"مخرج طوارئ","entrance":"مدخل فقط","exit":"مخرج فقط","garage":"باب المرآب","home":"منزل خاص أو شقة","main":"رئيسي","secondary":"ثانوي","service":"خدمة","staircase":"سلم","yes":"غير محدد"},"terms":"نوع,صنف,نمط"},"except":{"label":"الاستثناءات"},"expected_rcn_route_relations":{"label":"نقاط ركوب الدراجات المجاورة"},"expected_rwn_route_relations":{"label":"نقاط المشي المجاورة"},"expressway-US":{"label":"طريق سريع (US)","terms":"طريق سريع (الولايات المتحدة)"},"faces":{"label":"الواجهات"},"fax":{"label":"الفاكس","placeholder":"+966 42 123 4567","terms":"فاكس,ناسوخ"},"fee":{"label":"رسوم","terms":"رسوم,تحصيل,أجرة,أتعاب"},"fence_type":{"label":"النوع"},"fire_hydrant/diameter":{"label":"القُطر (مم، بوصة، أو حروف)","terms":"القُطر (مم، بوصة، أو حروف)"},"fire_hydrant/position":{"label":"الموضع","options":{"green":"العشب/الزرع","lane":"مسار الطريق","parking_lot":"مكان المواقف","sidewalk":"الرصيف"}},"fire_hydrant/pressure":{"label":"الضغط (بار)","terms":"الضغط (بار)"},"fire_hydrant/type":{"label":"شكل","options":{"pillar":"عامود/صنبور فوق الأرض","pipe":"أنابيب مغطاة","underground":"تحت الأرض","wall":"جدار"}},"fire_mains":{"options":{"no":"لا"}},"fire_service_inlet":{"label":"شكل","options":{"pillar":"عامود/صنبور فوق الأرض","pipe":"أنابيب مغطاة","underground":"تحت الأرض","wall":"جدار"}},"fire_sprinkler":{"options":{"no":"لا"}},"fireplace":{"label":"المستوقد/مدفأة نار"},"fishing":{"label":"صيد الأسماك","terms":"صيد الأسماك"},"fitness_station":{"label":"نوع المُعدّة"},"fixme":{"label":"أصلحني","terms":"أصلحني"},"flag/name":{"label":"Flag Name"},"flag/type":{"label":"نوع العلم"},"flag/wikidata":{"label":"Flag Wikidata"},"flashing_lights":{"label":"الأضواء الساطعة","options":{"always":{"description":"تومض الأضواء دائمًا","title":"وامض بشكل دائم"},"button":{"description":"يتم تنشيط الأضواء بالضغط على زر","title":"متاح عبر الضغط على الزر"},"button;sensor":{"description":"يتم تنشيط الأضواء بواسطة جهاز استشعار أو عن طريق الضغط على زر","title":"متاح عبر الضغط على الزر أو عبر المستشعر"},"no":"لا","sensor":{"description":"يتم تنشيط الأضواء بواسطة جهاز استشعار","title":"متاح عبر أجهزة الاستشعار"},"yes":"نعم"},"terms":"الأضواء الساطعة"},"floating":{"label":"عائم"},"flood_prone":{"label":"منطقة معرضة للفيضانات","terms":"منطقة معرضة للفيضانات"},"ford":{"label":"النوع","placeholder":"الافتراضي"},"fountain":{"label":"النوع"},"frequency":{"label":"التردد الكهربائي","terms":"التردد الكهربائي,تردد التشغيل"},"from":{"label":"من"},"fuel":{"label":"وقود"},"fuel/fuel_multi":{"label":"أنواع الوقود","options":{"GTL_diesel":"ديزل GTL","HGV_diesel":"ديزل شاحنات","LH2":"هيدروجين سائل","adblue":"AdBlue / AUS 32","adblue:canister":"AdBlue / AUS 32 (في عبوات)","biodiesel":"ديزل حيوي","cng":"الغاز الطبيعي المضغوط (CNG)","diesel":"ديزل","octane_90":"بنزين (90 أوكتان)","octane_91":"البنزين (91 أوكتان)","octane_92":"بنزين (92 أوكتان)","octane_93":"بنزين (93 أوكتان)","octane_95":"بنزين (95 أوكتان)","octane_97":"بنزين (97 أوكتان)","octane_98":"بنزين (98 أوكتان)"}},"gambling":{"label":"ألعاب"},"garden/type":{"label":"نوع الحديقة"},"gauge":{"label":"عرض السكة الحديدية"},"gender":{"label":"نوع الجنس","options":{"female":"أنثى","male":"ذكر","unisex":"للجنسين"},"placeholder":"غير معروفة","terms":"الجنس"},"generator/method":{"label":"الطريقة","options":{"anaerobic_digestion":"الهضم اللاهوائي","stream":"تيار المد والجزر","thermal":"طاقة شمسية","water-storage":"خزان","wind_turbine":"توربينة رياح"}},"generator/output/electricity":{"label":"الطاقة الناتجة","placeholder":"50 ميجا وات، 100 ميجا وات، 200 ميجا وات..."},"generator/source":{"label":"المصدر","options":{"battery":"بطارية","biofuel":"وقود حيوي","biogas":"غاز حيوي","coal":"فحم","diesel":"ديزل","gas":"غاز طبيعي","gasoline":"بنزين","hydro":"طاقة كهرومائية","nuclear":"طاقة نووية","oil":"نفط","solar":"إشعاع الشمس","tidal":"طاقة المد والجزر","waste":"نفايات","wave":"طاقة الأمواج","wind":"رياح"}},"generator/type":{"label":"النوع"},"genus":{"label":"الجنس","placeholder":"أيسر ، بلاتانوس ، Quercus","terms":"الجنس,النوع,الفصيلة"},"geyser/height":{"label":"ارتفاع الفوران"},"gnis/feature_id-US":{"label":"المعرف حسب GNIS","terms":"المعرف حسب gnis (نظام معلومات الأسماء الجغرافية)"},"government":{"label":"النوع"},"grades":{"label":"مستوى المراحل التعليمية"},"grape_variety":{"label":"أصناف العنب"},"group_only":{"label":"المجموعات فقط","terms":"المجموعات فقط"},"guest_house":{"label":"النوع"},"handicap":{"label":"إعاقة (ذوي احتياجات خاصة)","placeholder":"1-18"},"handrail":{"label":"سياج سلم (درابزين)","terms":"درابزين,سياج سلم"},"hashtags":{"label":"الوسوم","placeholder":"#مثال"},"hazard_boundary":{"label":"خطر","options":{"avalanche":"انهيار ثلجي","biohazard":"خطر حيوي","contamination":"تلوث كيميائي","electricity":"صعقة كهربائية","hole":"حُفرة","minefield":"ألغام أرضية","nuclear":"نووي / إشعاعي","quicksand":"رمال متحركة","shooting_range":"إطلاق نار"}},"healthcare":{"label":"النوع","options":{"alternative":"الطب البديل","audiologist":"أخصائي السمع","birthing_centre":"مركز ولادة","blood_bank":"بنك الدم","blood_donation":"مركز تبرع بالدم","clinic":"عيادة طبية","counselling":"مركز استشارات طبية","dentist":"طبيب أسنان","dialysis":"غسيل كلى","doctor":"طبيب","hospice":"دار رعاية المسنين وكبار السن","hospital":"مستشفى","laboratory":"معمل طبي","midwife":"مركز قابلات للأمهات والأطفال حديثي الولادة","nurse":"تمريض","occupational_therapist":"أخصائي علاج وظيفي","optometrist":"أخصائي بصريات","pharmacy":"صيدلانية","physiotherapist":"علاج طبيعي وتأهيل طبي","podiatrist":"طبيب الأقدام","psychotherapist":"معالج نفسي","rehabilitation":"مركز إعادة التأهيل","sample_collection":"مرفق جمع العينات","speech_therapist":"معالج مشاكل النطق"}},"healthcare/speciality":{"label":"التخصصات","options":{"chiropractic":"العلاج بتقويم العمود الفقري","orthodontics":"تقويم الأسنان","osteopathy":"تجبير العظام","shiatsu":"شياتسو","stomatology":"أمراض الفم","surgery":"جراحة عامة","systemic":"علاج نظامي","traditional_chinese_medicine":"طب صيني تقليدي","transplant":"جراحة زراعة الأعضاء","trauma":"جراحة الصدمة","tropical":"الطب الاستوائي"}},"heating":{"label":"تدفئة"},"height":{"label":"الارتفاع (بالأمتار)","terms":"الارتفاع (بالأمتار)"},"height_building":{"label":"ارتفاع المبنى (بالأمتار)","terms":"ارتفاع المبنى (بالأمتار)"},"highchair":{"label":"كرسي عالي للأطفال","terms":"كرسي عالي"},"highspeed":{"label":"فائق السرعة","terms":"فائق السرعة,قطار فائق السرعة"},"highway":{"label":"النوع"},"highway_cartpath":{"label":"نوع المسار","options":{"path":"مسار عربات","service":"طريق خدمة"}},"historic":{"label":"النوع","options":{"archaeological_site":"موقع أثري","boundary_stone":"حجر/علامة حدودية","building":"مبنى تاريخي","castle":"حصن / قلعة","church":"Church","city_gate":"بوابة المدينة","fort":"حصن عسكري","manor":"قصر سكني قديم/تاريخي","memorial":"نصب تذكاري","mine":"الفكرة","monument":"نصب تذكاري","pillory":"منصة صلب للتشهير بالمجرمين","railway":"سكة حديد","ruins":"أطلال/أنقاض/خرائب","shieling":"مراعي الجبال المهجورة","tomb":"قبر / ضريح","wayside_cross":"تقاطع جانب الطريق","wayside_shrine":"Wayside Shrine","wreck":"ركام سفينة"}},"historic/civilization":{"label":"الحضارة التاريخية"},"historic/wreck/date_sunk":{"label":"تاريخ الغرق"},"historic/wreck/visible_at_high_tide":{"label":"مرئية في المد والجزر العالي"},"historic/wreck/visible_at_low_tide":{"label":"مرئية في المد والجزر المنخفض"},"holding_position/type":{"label":"النوع","options":{"ILS":"جهاز هبوط آلي","intermediate":"تقاطع ممر سيارات الأجرة","runway":"مدرج المطار"}},"hoops":{"label":"عدد أطواق كرة السلة","placeholder":"1، 2، 4..."},"horse_riding":{"label":"مركز ركوب الخيل","options":{"horse_riding":"نعم","undefined":"لا"}},"horse_scale":{"label":"صعوبة ركوب الخيل","options":{"common":"سهلة: لا مشاكل أو صعوبات. (طبيعي)","critical":"يتجاوز المألوف: مسموح فقط للفرسان والخيول ذوي الخبرة، يوجد عقبات كبيرة، ويجب فحص الجسور بعناية.","dangerous":"خطيرة: مقبول فقط للراكبين والخيول ذوي الخبرة الكبيرة، وفقط في الطقس الجيد.","demanding":"بحذر: طريق غير مستوي، عوائق صعبة في بعض الأحيان.","difficult":"صعبة: طريق ضيق ومكشوف. قد يحتوي على عوائق لتخطيها، وممرات ضيقة."},"placeholder":"صعب، خطير...","terms":"صعوبة ركوب الخيل"},"hot_water":{"label":"ماء ساخن"},"iata":{"label":"كود المطار من IATA"},"icao":{"label":"كود المطار من ICAO"},"image":{"label":"صورة","placeholder":"https://example.com/photo.jpg","terms":"صورة"},"incline":{"label":"درجة الانحدار","terms":"انحدار الطريق,درجة الانحدار,مستوى الانحدار"},"incline_steps":{"options":{"down":"للأسفل","up":"فوق"}},"indoor":{"label":"الوضع الداخلي","terms":"داخل المبنى,داخلي,ضمن المبنى"},"indoor_type":{"label":"النوع"},"industrial":{"label":"النوع"},"informal":{"label":"غير رسمي","terms":"غير رسمي,شكل غير رسمي"},"information":{"label":"النوع"},"inscription":{"label":"النقوش","terms":"نقوش,نصوص منقوشة على أشياء"},"intermittent":{"label":"مجرى متقطع ولا يجري بشكل دائم","terms":"متقطع,لا يحتوي على الماء بشكل دائم"},"internet_access":{"label":"اتصال انترنت","options":{"no":"لا","terminal":"محطة / صالة","wired":"سلكي","wlan":"لا سلكي","yes":"نعم"},"terms":"اتصال انترنت"},"internet_access/fee":{"label":"رسوم استخدام خدمة الإنترنت","options":{"customers":"للعملاء/الزبائن فقط","no":"مجاني","yes":"مدفوع"}},"internet_access/ssid":{"label":"اسم شبكة الواي فاي","terms":"اسم شبكة الواي فاي"},"interval":{"label":"الفترة الزمنية","terms":"الفترة الزمنية"},"irrigation_pivot":{"options":{"pivot":"نعم","undefined":"لا"}},"junction/ref_oneway":{"label":"رقم التقاطع","terms":"رقم التقاطع,الرقم المرجعي للتقاطع"},"junction_line":{"label":"تقاطع","options":{"circular":"دوار متحكم به بإشارات أو علامات توقف أو أفضلية القادم من طريق آخر","jughandle":"تقاطع jughandle","roundabout":"دوار بدون اشارات وأفضلية المسار لمن فيه"},"terms":"دوار بدون اشارات وأفضلية المسار لمن فيه"},"kerb":{"label":"منحدر الرصيف المؤدي للشارع","options":{"flush":{"title":"شطف/سيفون/ماء متدفق"},"lowered":{"title":"خفضت"},"no":{"title":"لا"},"raised":{"title":"مرتفع"},"rolled":{"title":"رصيف بحواف مطويه (مستديرة)"},"yes":{"title":"نعم"}}},"kerb/height":{"label":"الارتفاع"},"kerb/kerb_barrier":{"label":"النوع"},"kitchen":{"label":"المطبخ","terms":"المطبخ"},"kneipp_water_cure_multi":{"label":"نوع الحوض"},"label":{"label":"العلامة/المسمى"},"lamp_mount":{"label":"حامل المصباح"},"lamp_type":{"label":"النوع"},"landuse":{"label":"النوع"},"lane_markings":{"label":"رسومات الطريق","terms":"رسومات الطريق,علامات الطريق,العلامات التي تفصل مسارات السيارات"},"lanes":{"label":"مسارات الطريق","placeholder":"1 ، 2 ، 3 ...","terms":"المسارات المرورية"},"language_multi":{"label":"اللغات"},"layer":{"label":"الطبقة/المستوى","placeholder":"0","terms":"الطبقات"},"layer_1":{"placeholder":"0"},"leaf_cycle":{"label":"دورة حياة أوراق الشجر","options":{"deciduous":"المتساقطة","evergreen":"دائمة الخضرة","mixed":"مختلط","semi_deciduous":"شبه متساقطة","semi_evergreen":"شبه دائمة الخضرة"},"terms":"دورة حياة الورقة"},"leaf_type":{"label":"نوع ورق الشجر","options":{"broadleaved":"عريضة الأوراق","leafless":"بلا أوراق","mixed":"مختلط","needleleaved":"إبرية"},"terms":"نوع الورقة,نوع ورقة النبات"},"leaf_type_singular":{"label":"نوع ورق الشجر","terms":"نوع الورقة,نوع ورقة النبات"},"leisure":{"label":"النوع"},"length":{"label":"الطول (بالأمتار)","terms":"العرض (بالمتر)"},"level":{"label":"المستوى","terms":"المستوى,الطابق,الدور"},"level_semi":{"label":"المسويات","terms":"المستويات,الطوابق,الأدوار"},"liaison":{"label":"النوع"},"lifeguard":{"label":"النوع"},"lifeguard_check":{"label":"حارس الشاطئ"},"lift_gate/type":{"label":"النوع"},"line_attachment":{"label":"كيفية ارتباط الكيابل"},"line_management":{"label":"طوبولوجيا الخط","terms":"طوبولوجيا الخط,إدارة الخط"},"lit":{"label":"مضاء","terms":"مضاء,منور،له نور"},"loc_name":{"label":"الاسم المحلي","terms":"الاسم الشعبي"},"location":{"label":"المكان","terms":"المكان,المكان بالضبط"},"location_pool":{"options":{"indoor":"الوضع الداخلي","outdoor":"معدات الرحلات - التسلق - التخييم - الملاحة","roof":"على سطح بناية"}},"lock":{"label":"هويس"},"lockable":{"label":"قابل للقفل","terms":"قابل للقفل"},"locked":{"label":"حاجز/بوابة"},"man_made":{"label":"النوع"},"manhole":{"label":"النوع"},"manufacturer":{"label":"الشركة المُصنّعة","terms":"الشركة المُصنّعة"},"map_size":{"label":"التغطية"},"map_type":{"label":"النوع","options":{"toposcope":"لوح طوبوغرافي"}},"mapillary":{"label":"معرف الصورة في مابيلاري","terms":"معرف الصورة في مابيلاري,معرف الصورة في mapillary"},"marker":{"label":"النوع","options":{"ground":{"title":"أرضي"},"stone":{"title":"حجر"}}},"material":{"label":"مادة البناء","options":{"brick":"طوب","concrete":"خرسانه/اسمنت","glass":"زجاج","granite":"جرانيت","limestone":"حجر الكلس (الجيري)","metal":"معدني","plastic":"بلاستيك","rock":"صخرة","sand":"رمال/نفود","sandstone":"الحجر الرملي","steel":"فولاذ","stone":"حجر","wood":"خشبي"},"terms":"المادة,المواد"},"mattress":{"label":"تتوفر مطارح/مراتب","terms":"تتوفر مطارح/مراتب"},"max_age":{"label":"الحد الأقصى للعمر","terms":"الحد الأقصى لسن الشخص,الحد الأعلى لسن الشخص"},"maxspeed":{"label":"حدود السرعة","placeholder":"40, 50, 60...","terms":"حدود السرعة,قيود السرعة"},"maxspeed/advisory":{"label":"حدود السرعة المنصوح بها","placeholder":"40, 50, 60...","terms":"حدود السرعة المنصوح بها"},"maxspeed/hgv":{"label":"الحد الأقصى لسرعة الشاحنة","placeholder":"40, 50, 60...","terms":"سرعة الشاحنات القصوى"},"maxstay":{"label":"المدة الزمنية المحددة"},"memorial":{"label":"النوع","options":{"bust":"صدر","obelisk":"Obelisk","plaque":"Commemorative Plaque","sculpture":"منحوتة","statue":"تمثال","stone":"حجر"}},"message":{"label":"رسالة","terms":"رسالة"},"microbrewery":{"label":"Microbrewery"},"military_service":{"label":"خدمة عسكرية","options":{"air_force":"قوات جوية","army":"جيش","coast_guard":"خفر سواحل","marines":"مشاة البحرية","navy":"قوات بحرية"}},"mimics":{"label":"محاكاة","terms":"محاكاة,مجاراة"},"min_age":{"label":"الحد الأدنى للعمر","terms":"الحد الأدنى للعمر"},"min_height":{"label":"ارتفاع القاع (متر)"},"minspeed":{"label":"الحد الأدنى للسرعة","placeholder":"20, 30, 40...","terms":"الحد الأدنى للسرعة"},"mobile":{"label":"هاتف محمول","placeholder":"+966 42 123 4567"},"monitoring_multi":{"label":"الرصد/المراقبة"},"mooring":{"label":"مربط سفن ومراكب بحرية","options":{"commercial":"تجاري","no":"لا","private":"خاص","yes":"نعم"}},"mtb/scale":{"label":"صعوبة قيادة الدراجة على الجبل","options":{"0":"0: أسفلت/تربة مدكوكة, دون معوقات, منحنيات واسعة","1":"1: حصوات مبعثرة قليلا, معوقات صغيرة, منحنيات واسعة","2":"2: حصوات مبعثرة بكثرة, معوقات كبيرة, إلتفافات متكررة سهلة","3":"3: سطج زلق, معوقات كبيرة, إلتفافات متكررة ضيقة","4":"4: حصوات مبعثرة أو صخور, إلتفافات متكررة خطيرة","5":"5: صعوبة قصوى, حقول صخرية, إنزلاقات أرضية","6":"6: غير قابل للقيادة إلا من قِبل أفضل سائقي الدراجات الجبلية"},"placeholder":"0, 1, 2, 3...","terms":"صعوبة قيادة الدراجة على الجبل"},"mtb/scale/imba":{"label":"صعوبة المسارات من الرابطة الدولية لدرجات الجبال IMBA","options":{"0":"⚪ سهل جدا (دائرة بيضاء)","1":"🟢 سهل (دائرة خضراء)","2":"🟦 متوسط (مربع أزرق)","3":"◆ صعب (الماس الأسود)","4":"◆◆ صعب للغاية (الماس أسود المزدوج)"},"placeholder":"سهل، متوسط، صعب...","terms":"صعوبة المسارات من الرابطة الدولية لدرجات الجبال imba"},"mtb/scale/uphill":{"label":"صعوبة صعود الجبل بالدراجة","options":{"0":"0: معدل الإنحدار <10% ، أسفلت/تربة مدكوكة ، دون معوقات","1":"1: معدل الإنحدار <15% ، أسفلت/تربة مدكوكة ، مع وجود بعض المعوقات","2":"2: معدل الإنحدار <20% ، سطح ثابت ، صخور وجذور بحجم قبضة اليد","3":"3: معدل الإنحدار <25% ، سطح متغير ، صخور وفروع بحجم قبضة اليد","4":"4: معدل الإنحدار <30% ، حالة السطح سيئة ، صخور وفروع كبيرة","5":"5: حاد جدًا ، الدراجات في العموم تحتاج لدفعها أو حملها"},"placeholder":"0, 1, 2, 3...","terms":"صعوبة صعود الجبل بالدراجة"},"museum":{"label":"النوع"},"name":{"label":"الاسم","placeholder":"الاسم الشائع (إن وجد)","terms":"الاسم,المسمى"},"nat_name":{"label":"الاسم الوطني","terms":"الاسم الوطني"},"natural":{"label":"طبيعي"},"network":{"label":"الشبكة","terms":"الشبكة"},"network/type":{"label":"نوع الشبكة"},"network_bicycle":{"label":"فئة الشبكة","options":{"icn":"دولي / عالمي","lcn":"محلي","ncn":"وطنية","rcn":"إقليمي / محلي"},"placeholder":"محلية، إقليمية، وطنية، دولية"},"network_foot":{"label":"فئة الشبكة","options":{"iwn":"دولي / عالمي","lwn":"محلي","nwn":"وطنية","rwn":"إقليمي / محلي"},"placeholder":"محلية، إقليمية، وطنية، دولية"},"network_horse":{"label":"فئة الشبكة","options":{"ihn":"دولي / عالمي","lhn":"محلي","nhn":"وطنية","rhn":"إقليمي / محلي"},"placeholder":"محلية، إقليمية، وطنية، دولية"},"network_road":{"label":"الشبكة"},"not/name":{"label":"الأسماء غير الصحيحة","terms":"الأسماء غير الصحيحة"},"note":{"label":"ملاحظة","terms":"ملاحظة"},"nudism":{"label":"Nudism","options":{"customary":"عرفي","designated":"مخصص/محدد","no":"محظور","obligatory":"إجباري","permissive":"مسموح من المالك","yes":"مسموح"}},"office":{"label":"النوع","options":{"accountant":" مكتب محاسب","adoption_agency":"Adoption Agency","advertising_agency":"وكالة إعلانية","architect":" مكتب مهندس معماري","association":"مكتب منظمة غير ربحية","charity":"مكتب منظمة خيرية","company":"مكتب شركة / مؤسسة","consulting":"مكتب شركة استشارية","coworking":"مساحة عمل مشتركة","diplomatic":"مكتب دبلوماسي","educational_institution":"مكتب مؤسسة تعليمية ","employment_agency":"مكتب وكالة توظيف ","energy_supplier":"مكتب شركة مرافق الكهرباء","estate_agent":"مكتب عقاري","financial":"مكتب مالي","financial_advisor":"المستشار المالي","forestry":"مكتب إدارة الغابات","foundation":"مكتب مؤسسة","government":"مكتب/دائرة حكومية","guide":"مكتب الدليل السياحي","insurance":"مكتب تأمينات","it":"مكتب متخصصي تكنولوجيا المعلومات","lawyer":"مكتب قانوني ","moving_company":"مكتب شركة نقل","newspaper":"صحيفة","ngo":"مكتب المنظمات العامة الغير حكومية","notary":"مكتب كتابة عدل / موثق","physician":"طبيب","political_party":"مكتب الحزب السياسي","private_investigator":"مكتب محقق خاص","quango":"مكتب منظمة غير حكومية شبه مستقلة","religion":"مكتب ديني","research":"مكتب بحوث","security":"مكتب مؤسسات الحراسات الأمنية","surveyor":"مكتب مساح أرضي","tax_advisor":"مستشار الضرائب","telecommunication":"مكتب شركات اتصالات","therapist":"المعالج","travel_agent":"وكالة السفر","water_utility":"مكتب شركة مياه"}},"official_name":{"label":"الاسم الرسمي","terms":"الاسم الحكومي"},"oneway":{"label":"هذا الطريق يسير باتجاه واحد","options":{"alternating":"بالتناوب:يتغير اتجاهه بشكل متغير في اليوم الواحد","no":"لا","reversible":"قابل لتغيير الاتجاه حسب الزحام وبشكل منتظم","undefined":"يفترض أن يكون لا","yes":"نعم"},"terms":"اتجاه واحد,اتجاه سير واحد"},"oneway/bicycle":{"label":"اتجاه واحد (للدراجات)","terms":"اتجاه واحد (للدراجات)"},"oneway_yes":{"options":{"alternating":"بالتناوب:يتغير اتجاهه بشكل متغير في اليوم الواحد","no":"لا","reversible":"قابل لتغيير الاتجاه حسب الزحام وبشكل منتظم","undefined":"يفترض أن يكون نعم","yes":"نعم"}},"openfire":{"label":"اشعال النار مسموح","terms":"اشعال النار مسموح،شب النار مسموح"},"opening_date":{"label":"تاريخ الافتتاح المتوقع","placeholder":"YYYY-MM-DD"},"opening_hours":{"label":"ساعات العمل","placeholder":"غير معروفة","terms":"ساعات العمل,ساعات الدوام"},"operator":{"label":"المُشغل","terms":"المُشغل,المتعهد,الشركة المشغلة"},"operator/type":{"label":"التشغيل يتم عبر"},"organic":{"label":"منتجات عضوية","options":{"no":"لا شيء","only":"فقط","yes":"بعض"},"terms":"منتجات عضوية"},"orientation/orientation_parking":{"label":"الاتجاه"},"outdoor_seating":{"label":"مقاعد في الهواء الطلق","terms":"مقاعد خارجية، مقاعد خارج البناء"},"par":{"label":"بار","placeholder":"3، 4، 5 ..."},"parcel_dropoff":{"label":"تسليم الطرود"},"parcel_pickup":{"label":"استلام الطرود","options":{"no":"لا","undefined":"يفترض أن يكون نعم","yes":"نعم"}},"park_ride":{"label":"اصطف واركب","terms":"اوقف واركب,اركن واركب"},"parking":{"label":"النوع","options":{"carports":{"title":"مظلات سيارات"},"garage_boxes":{"title":"صناديق المرآب"},"lane":{"title":"على جانب الطريق"},"layby":{"title":"جانب الطريق"},"multi-storey":{"title":"متعدد الطوابق"},"rooftop":{"title":"على سطح بناية"},"sheds":{"title":"مظلله"},"shoulder":{"title":"كتف الطريق"},"street_side":{"title":"جانب الشارع"},"surface":{"title":"السطح"},"underground":{"title":"تحت الأرض"}}},"parking/side/orientation":{"options":{"parallel":"موازية للشارع"},"types":{"parking:left:orientation":"جانب أيسر","parking:right:orientation":"جانب أيمن"}},"parking/side/parking":{"label":"موقف","options":{"lane":"على جانب الطريق","no":"لا","shoulder":"كتف الطريق","street_side":"جانب الشارع","yes":"نعم (غير محدد)"},"types":{"parking:left":"جانب أيسر","parking:right":"جانب أيمن"}},"parking_entrance":{"label":"النوع"},"parking_space":{"label":"النوع"},"payment_multi":{"label":"أنواع الدفع","options":{"alipay":"خدمة Alipay","american_express":"بطاقة اميريكان اكسبرس","apple_pay":"أبل باي","bancomat":"ماكينة الصراف الآلي","cash":"نقدي","cheque":"التحقق","coins":"عملات معدنية","diners_club":"داينرز كلوب","dkv":"DKV","girocard":"جيروكارد","google_pay":"جوجل باي","jcb":"JCB","maestro":"مايسترو","mastercard":"بطاقة ماستركارد","uta":"UTA","v_pay":"V PAY","visa":"Visa","visa_debit":"Visa Debit","visa_electron":"Visa Electron"},"terms":"أنواع الدفع,أنواع الحساب"},"phases":{"label":"المراحل/الفترات","placeholder":"1 ، 2 ، 3 ..."},"phone":{"label":"هاتف","terms":"هاتف,تلفون"},"picnic_table":{"label":"طاولة نزهة"},"pipeline":{"label":"النوع"},"piste/difficulty":{"label":"الصعوبة","options":{"advanced":"متقدم","easy":"سهل","expert":"خبير","extreme":"أقصى صعوبة","freeride":"قيادة حُرة","intermediate":"متوسط","novice":"مبتدئ"},"placeholder":"سهل، متوسط، متقدم..."},"piste/difficulty_downhill":{"options":{"advanced":"متقدم (جوهرة سوداء)","easy":"سهل (دائرة خضراء)","expert":"خبير (جوهرتين سودائتين)","extreme":"خطير (معدات التسلق مطلوبة)","freeride":"تزلج حُر (خارج منطقة التزلج)","intermediate":"متوسط (مربع أزرق)","novice":"مبتدئ (تعليمي)"},"placeholder":"سهل، متوسط، متقدم..."},"piste/difficulty_nordic":{"options":{"advanced":"متقدم - ضيق، منحدر أو جزء جليدي، إنعطاف حاد","easy":"سهل - تلال ناعمة، منحدرات صغيرة","expert":"خبير - محاطة بتضاريس خطرة","intermediate":"متوسط - جزء منحدر","novice":"مبتدئ - مسطح، لا يحتاج لجهد"},"placeholder":"سهل، متوسط، متقدم..."},"piste/difficulty_skitour":{"options":{"advanced":"متقدم S:انحدار بدرجة 40-45","easy":"سهل - WS:انحدار بدرجة 30-35","expert":"خبير - SS:انحدار بدرجة 45-50","extreme":"شديد- EX:انحدار بدرجة أعلى من 55","freeride":"نزول حر - AS:انحدار بدرجة 50-55","intermediate":"متوسط- ZS:انحدار بدرجة 35-40","novice":"مبتدئ - L:انحدار بدرجة أقل من 30"},"placeholder":"سهل، متوسط، متقدم..."},"piste/grooming":{"label":"تحضير مسار الزحلقة","options":{"backcountry":"غير معتنى به","classic":"تقليدي","classic+skating":"كلاسيكي وللتزلج","mogul":"مهيئ للتزلج","scooter":"سكوتر / عربة ثلجية","skating":"تزلج"}},"piste/grooming_downhill":{"options":{"backcountry":"غير محضر/معتنى به","classic":"تقليدي","mogul":"مهيئ للتزلج"}},"piste/grooming_hike":{"options":{"backcountry":"غير محضر/معتنى به - لابد من وجود حذاء مخصص","classic":"كلاسيكي وللهايكنك الشتوي"}},"piste/grooming_nordic":{"options":{"backcountry":"غير محضر/معتنى به","classic":"تقليدي","classic+skating":"كلاسيكي وللتزلج","scooter":"سكوتر / عربة ثلجية","skating":"تزلج"}},"piste/type":{"label":"النوع","options":{"connection":"وصلة","downhill":"انحدار","hike":"رحلة مشيا على الاقدام","ice_skate":"تزلج على الجليد","nordic":"شمال أوروبا","playground":"ساحة لعب","skitour":"جولة تزلج","sled":"تزلج","sleigh":"مزلقة","snow_park":"حديقة الثلج"}},"place":{"label":"النوع"},"plant":{"label":"مصنع"},"plant/method":{"label":"طريقة التوليد"},"plant/output":{"options":{"cold_air":"هواء بارد","cold_water":"ماء بارد","compressed_air":"هواء مضغوط","electricity":"كهرباء","hot_air":"هواء ساخن","hot_water":"ماء ساخن","steam":"بخار","vacuum":"فراغ"}},"plant/output/electricity":{"placeholder":"500 ميجا وات، 1000 ميجا وات، 2000 ميجا وات..."},"plant/source":{"label":"مصدر الطاقة"},"playground":{"label":"النوع"},"playground/theme":{"label":"النمط"},"plots":{"label":"قطعة الأرض (المخططة)","placeholder":"10, 20, 30..."},"polling_station":{"label":"Polling Place"},"population":{"label":"عدد السكان"},"population/date":{"placeholder":"YYYY-MM-DD"},"portable":{"label":"محمول","terms":"محمول,متنقل"},"post":{"label":"عنوان التوصيل/الاستلام"},"post_box/type":{"label":"النوع","terms":"نوع,صنف,نمط"},"power":{"label":"النوع"},"power_supply":{"label":"مولد طاقة","terms":"مولد طاقة,مولد كهربائي"},"preschool":{"label":"حضانة"},"produce":{"label":"ينتج"},"product":{"label":"المنتجات","terms":"المنتجات"},"public_bookcase/type":{"label":"النوع"},"pump":{"label":"مضخة","options":{"manual":"مضخة يدوية","no":"لا شيء","powered":"مضخة آلية","yes":"نعم"}},"railway":{"label":"النوع"},"railway/position":{"label":"علامة مسافات","placeholder":"المسافة إلى رقم عشري واحد (123.4)"},"railway/signal/direction":{"label":"اتجاه علامة الطريق","options":{"backward":"للخلف","both":"للاتجاهين","forward":"للأمام"}},"ramp":{"label":"منحدر متنقل","options":{"no":"لا","yes":"نعم"},"terms":"منحدر متنقل,منصة متنقلة للنزول"},"rating":{"label":"معدل الطاقة المولدة"},"rcn_ref":{"label":"كود ركوب الدراجات"},"real_fire-GB-IE":{"label":"حريق حقيقي","terms":"حريق حقيقي"},"recycling_accepts":{"label":"المواد التي تقبلها المنشأة","options":{"batteries":"بطاريات","cans":"علب","cardboard":"ورق مقوى","clothes":"ملابس","cooking_oil":"زيت طهي","engine_oil":"زيت محركات","glass":"أي زجاج (زجاج مقسّى/صلب ، نوافذ ، مرايا ، إلخ)","glass_bottles":"الزجاجات والجرار","green_waste":"نفايات خضراء","paper":"ورق","plastic":"بلاستيك","plastic_bottles":"عبوات بلاستيكية","plastic_packaging":"بلاستيك التغليف","scrap_metal":"خردة المعادن (سكراب)","shoes":"أحذية"}},"recycling_type":{"label":"النوع","options":{"centre":"مركز","container":"حاوية"},"placeholder":"الحاوية ، المركز"},"ref":{"label":"الرمز المرجعي","terms":"الرمز المرجعي,الرقم المرجعي"},"ref/isil":{"label":"رمز ISIL"},"ref/vatin":{"label":"VAT ID Number","terms":"vat id number"},"ref_aeroway_gate":{"label":"رقم البوابة"},"ref_disc_golf_hole":{"label":"رقم الثقب","placeholder":"1-18"},"ref_golf_hole":{"label":"رقم الثقب","placeholder":"1-18"},"ref_highway_junction":{"label":"رقم التقاطع"},"ref_platform":{"label":"رقم المنصة/الرصيف"},"ref_road_number":{"label":"رقم الطريق","terms":"رقم الطريق,رقم الشارع"},"ref_room_number":{"label":"رقم الغرفة"},"ref_route":{"label":"رقم المسار","terms":"رقم المسار"},"ref_runway":{"label":"رقم المدرج","placeholder":"مثل 01L/19R"},"ref_sector":{"label":"رقم المقطع"},"ref_stop_position":{"label":"رقم الموقف"},"ref_taxiway":{"label":"اسم طريق المناورة","placeholder":"مثل A5"},"reg_name":{"label":"الاسم الإقليمي","terms":"الاسم الإقليمي,الاسم المناطقي"},"relation":{"label":"النوع"},"religion":{"label":"الديانة","options":{"bahai":"Bahá’í","benzhu":"Benzhu","buddhist":"Buddhist","caodaism":"Caodaist","chinese_folk":"Chinese Folk Religion","christian":"Christian","confucian":"Confucian","hindu":"Hindu","jain":"Jain","jewish":"Jewish","multifaith":"Multifaith","muslim":"الإسلام","none":"Nonreligious","pagan":"Pagan","shinto":"Shinto","sikh":"Sikh","spiritualist":"Spiritualist","taoist":"Taoist","tenrikyo":"Tenrikyo","unitarian_universalist":"Unitarian Universalist","vietnamese_folk":"Vietnamese Folk Religion","voodoo":"Voodoo"},"terms":"الديانة,الدين,الملة"},"reservation":{"label":"الحجوزات","options":{"no":"غير مسموحة","recommended":"موصى بها","required":"مطلوبة ولابد منها","yes":"مقبولة"},"terms":"الحجوزات,الحجز"},"residential":{"label":"النوع"},"resort":{"label":"النوع"},"resource":{"label":"المصادر","options":{"aggregate":"تجميع","clay":"الطين","coal":"فحم","gold":"ذهبي","gravel":"حصباء/حصى","limestone":"حجر الكلس (الجيري)","sand":"رمال/نفود"}},"restriction":{"label":"النوع"},"restrictions":{"label":"قيود الإنعطاف"},"roller_coaster/track":{"label":"النوع","options":{"waiting":{"title":"انتظار"}}},"roof/colour":{"label":"لون السقف","terms":"لون السقف,لون الغما"},"roof/shape":{"options":{"dome":"قبة"}},"room":{"label":"النوع"},"rooms":{"label":"الغرف"},"roundtrip":{"label":"بشكل حلقة/دائري","terms":"بشكل حلقة,بشكل دائري,يذهب ويعود لنفس المكان,له نفس البداية والنهاية"},"route":{"label":"النوع"},"route_master":{"label":"النوع"},"royal_cypher-GB":{"options":{"no":"لا"}},"ruins":{"label":"النوع"},"rwn_ref":{"label":"الرقم المرجعي لمسار المشي"},"sac_scale":{"label":"صعوبة المشي على الأقدام (الهايكنق)","options":{"alpine_hiking":"T4: مشي جبال الألب","demanding_alpine_hiking":"T5: يتطلب مشي جبال الألب","demanding_mountain_hiking":"T3: يتطلب المشي في الجبال","difficult_alpine_hiking":"T6: مشي جبال الألب صعب","hiking":"T1: المشي لمسافات طويلة","mountain_hiking":"T2: المشي لمسافات طويلة في الجبال"},"placeholder":"المشي لمسافات طويلة في الجبال ، مشي جبال الألب ...","terms":"صعوبة المشي على الأقدام (الهايكنق)"},"salt":{"label":"ملح","terms":"ملحية,مياة مالحة"},"sample_collection":{"label":"عينات"},"sanitary_dump_station":{"label":"محطة تصريف خزانات مراحيض السيارات","terms":"محطة تصريف خزانات مراحيض السيارات,تصريف خزانات مراحيض متنقلة"},"screen":{"label":"الشاشات","placeholder":"1, 4, 8…"},"scuba_diving":{"label":"خدمات"},"seamark/beacon_isolated_danger/shape":{"label":"شكل"},"seamark/beacon_lateral/category":{"label":"التصنيف","options":{"danger_left":"خطر على اليسار","danger_right":"خطر على اليمين","port":"منفذ","starboard":"ميمنة","waterway_left":"المجرى المائي اليسار","waterway_right":"المجرى المائي اليمين"}},"seamark/beacon_lateral/colour":{"label":"اللون","options":{"green":"أخضر","grey":"رمادي","red":"أحمر"}},"seamark/beacon_lateral/shape":{"label":"شكل"},"seamark/beacon_lateral/system":{"label":"النظام","options":{"cevni":"CEVNI","iala-a":"IALA A","iala-b":"IALA B","other":"آخر"}},"seamark/buoy_lateral/category":{"label":"التصنيف","options":{"channel_left":"قناة باليسار","channel_right":"قناة باليمين","danger_left":"خطر على اليسار","danger_right":"خطر على اليمين","port":"منفذ","preferred_channel_port":"منفذ القناة المفضل","preferred_channel_starboard":"قناة الميمنة المفضلة","starboard":"ميمنة","waterway_left":"المجرى المائي اليسار","waterway_right":"المجرى المائي اليمين"}},"seamark/buoy_lateral/colour":{"label":"اللون","options":{"green":"أخضر","green;red;green":"أخضر-أحمر-أخضر","green;white;green;white":"أخضر-أبيض-أخضر-أبيض","red":"أحمر","red;green;red":"أحمر-أخضر-أحمر","red;white;red;white":"أحمر-أبيض-أحمر-أبيض","white":"أبيض","yellow":"أصفر"}},"seamark/buoy_lateral/shape":{"label":"شكل"},"seamark/buoy_lateral/system":{"label":"النظام","options":{"cevni":"CEVNI","iala-a":"IALA A","iala-b":"IALA B","other":"آخر"}},"seamark/harbour/category_marina":{"options":{"marina":"نعم","marina_no_facilities":"لا"}},"seamark/mooring/category":{"label":"التصنيف"},"seamark/rescue_station/category":{"label":"معدات إنقاذ الحياة","options":{"aircraft":"الطائرات","first_aid":"إسعافات أولية","hovercraft":"الحوامات","lifeboat":"قارب النجاة (على الأرض)","lifeboat_on_mooring":"قارب النجاة (في مرسى)","radio":"محطة إذاعية","refuge_intertidal":"ملجأ المد والجزر","refuge_shipwrecked":"ملجأ حطام السفينة","seaplane":"طائرة مائية","tug":"ساحبة الإنقاذ"}},"seamark/type":{"label":"علامة بحرية","terms":"علامة بحرية,علامة البحر,علامة ملاحية بحرية"},"seamark/wreck/category":{"label":"التصنيف"},"seasonal":{"label":"موسمي"},"seats":{"label":"المقاعد","placeholder":"2, 4, 6..."},"second_hand":{"label":"بيع المستعمل","options":{"no":"لا","only":"فقط","yes":"نعم"},"placeholder":"نعم، لا، فقط","terms":"بيع المستعمل,حراج مستعمل,بضائع مستعملة،سلع مستعملة"},"segregated":{"label":"الفصل بين المشاة والدراجات"},"self_service":{"label":"خدمة ذاتية"},"service":{"label":"النوع","options":{"alley":"زقاق / ممر","drive-through":"ممر الطلب بالسيارة","driveway":"طريق مؤدي لمسكن","emergency_access":"ممر/طريق طوارئ","parking_aisle":"طريق داخل مواقف السيارات"}},"service/bicycle":{"label":"خدمات الدراجات","terms":"خدمات الدراجات"},"service/vehicle":{"label":"خدمات"},"service_rail":{"label":"نوع الخدمة","options":{"crossover":"عبور","siding":"انحياز","spur":"وصلة قطارات شحن","yard":"فناء"},"terms":"نوع الخدمة"},"service_times":{"label":"أوقات الخدمة"},"shelter":{"label":"مأوى/عشة"},"shelter_type":{"label":"النوع"},"shoes":{"label":"أحذية"},"shop":{"label":"النوع"},"short_name":{"label":"الاسم المختصر","terms":"الاسم المختصر"},"shower":{"label":"استحمام","terms":"استحمام,دش,مسحاح,مشن,مروش"},"siren/purpose":{"label":"الغرض من نقطة الاستطلاع"},"siren/type":{"label":"النوع","options":{"electronic":"إلكتروني","other":"آخر","pneumatic":"هوائي"}},"site":{"label":"النوع"},"smoking":{"label":"التدخين","options":{"dedicated":"مخصصة للمدخنين (مثلا: نادي للمدخنين)","isolated":"في مناطق التدخين، معزولة ماديا","no":"ممنوع التدخين في أي مكان","outside":"مسموح به في الخارج","separated":"في مناطق التدخين، غير معزولة ماديا","yes":"مسموح به في كل مكان"},"placeholder":"لا ، منفصل ، نعم ...","terms":"دخان,تدخين,تتن,مدخنين,متتن"},"smoothness":{"label":"درجة الوعورة/النعومة","options":{"bad":"لذوات العجلات المتينة مثل: دراجات الرحلات، والسيارات ، وعربات التوكتوك","excellent":"لذوات العجلات الرقيقة مثل: أحذية التزحلق ، ألواح التزحلق","good":"لذوات العجلات النحيلة مثل: دراجة السباق","horrible":"للمناطق الوعرة مثل: مركبات الطرق الوعرة والمعدات الثقيلة","impassable":"للمناطق الوعرة التي لا يمكن اجتيازها/غير سالكة / لا تعبرها المركبات","intermediate":"دراجة المدينة ، الكرسي المتحرك للمعاقين ، السكوتر","very_bad":"للمركبات المرتفعة :والمركبات التي تعبر الطرق الوعرة","very_horrible":"للمركبات والمعدات المخصصة للطرق الوعرة مثل: الجرار ،ATV (الدبابات الرباعية العجلات)"},"placeholder":"للعجلات العادية، للعجلات النحيلة، للطرق وعرة ...","terms":"النعومة,الوعورة,نعومة الطريق,وعورة الطريق,جاهزية الطريق,سلامة سطح الطريق"},"sms":{"label":"للرسائل نصية","terms":"رسائل نصية,sms,رسالة جوال"},"social_facility":{"label":"النوع","options":{"ambulatory_care":"الرعاية الإسعافية","assisted_living":"شارع معيشة بين المساكن","food_bank":"بنك الطعام","group_home":"دار جماعية","nursing_home":"دار التمريض","outreach":"التوعية","shelter":"مأوى/عشة"}},"social_facility_for":{"label":"نوع الجمهور (الناس) المستهدفين","options":{"child":"الأطفال","drug_addicted":"مدمنوا المخدرات","homeless":"المشردين","juvenile":"الاحداث","migrant":"المهاجرين","orphan":"الأيتام","senior":"دار المسنين","veteran":"Veterans","woman":"نساء"}},"source":{"label":"المصادر","options":{"aerial imagery":"من الصور الجوية","gps":"GPS","local knowledge":"المعرفة المحلية","osm notes":"ملاحظات خارطة الشارع المفتوحة","streetlevel imagery":"صور على مستوى الشارع","survey":"استقصاء/استبيان/مسح ميداني"}},"species":{"label":"الصنف","placeholder":"Acer platanoides, Quercus robur, …","terms":"النوع,الفصيلة"},"species/wikidata":{"label":"أنواع ويكي بيانات","terms":"أنواع ويكي بيانات"},"sport":{"label":"الرياضات","options":{"american_football":"كرة القدم الأمريكية","baseball":"كرة القاعدة","basketball":"كرة السلة","beachvolleyball":"ملعب كرة الطائرة الشاطئية","bmx":"BMX","chess":"شطرنج","climbing":"التسلق","cricket":"كريكت","curling":"كيرلنغ","cycling":"ركوب الدراجات","darts":"رمي الاسهم المريشة","dog_racing":"سباق الكلاب","gaelic_games":"ألعاب الغيلية","golf":"غولف","gymnastics":"الجمباز","horse_racing":"سباق خيول","ice_hockey":"الهوكى الجليدى","ice_skating":"التزحلق على الجليد","ice_stock":"مخزون الجليد","karting":"سباق الكارت","motocross":"سباق الدرجات النارية الوعر","pelota":"كرة الباسك","rugby_union":"اتحاد الرغبي","running":"جري","scuba_diving":"رياضة الغطس","shooting":"الرماية","skateboard":"لوح التزلج","skiing":"التزحلق","soccer":"كرة قدم","speedway":"طريق سريع للدراجات النارية","swimming":"سباحة","tennis":"التنس","volleyball":"كرة طائرة"}},"sport/sport_ice":{"label":"الرياضات"},"sport/sport_pub":{"label":"الرياضات","terms":"رياضات"},"sport/sport_racing_motor":{"label":"الرياضات"},"sport/sport_racing_nonmotor":{"label":"الرياضات"},"stars":{"label":"نجوم","terms":"نجوم"},"start_date":{"label":"تاريخ البدء","placeholder":"YYYY-MM-DD","terms":"تاريخ البدء,تاريخ الانطلاق"},"step_count":{"label":"عدد الخطوات","terms":"عدد الخطوات"},"stile":{"label":"النوع"},"stop":{"label":"نوع التوقف","options":{"all":"كل الطرق","minor":"طريق فرعي"}},"street_cabinet":{"label":"النوع","terms":"نوع,صنف,نمط"},"stroller":{"label":"السماح بدخول عربيات الأطفال","options":{"limited":"محدودة","no":"لا","yes":"نعم"},"terms":"السماح بدخول عربيات الأطفال"},"structure":{"label":"بنية","options":{"bridge":"جسر","cutting":"تضاريس مقطوعة ومحفورة ليعبرها ويشقها طريق ما","embankment":"سطح مرفوع يسير عليه الطريق (قد تكون مردومة)","ford":"مخاضة -طريق يشق مجرى مائي","tunnel":"نفق"},"placeholder":"غير معروفة","terms":"هيكلة,بنية,منظومة"},"structure_canal":{"label":"بنية","options":{"bridge":"جسر","tunnel":"نفق"},"placeholder":"غير معروفة"},"structure_power":{"label":"بنية","options":{"lattice":"شبكة فولاذية","solid":"صلب","tubular":"انبوبي"}},"structure_waterway":{"label":"بنية","options":{"tunnel":"نفق"},"placeholder":"غير معروفة"},"studio":{"label":"النوع"},"subject":{"label":"الموضوع","terms":"الموضوع"},"subject/wikidata":{"label":"موضوع ويكي بيانات","terms":"موضوع ويكي بيانات"},"substance":{"label":"مادة","options":{"fuel":"وقود","gas":"غاز طبيعي","hot_water":"ماء ساخن","sewage":"مياه المجاري","water":"مياه شرب"}},"substation":{"label":"النوع","options":{"industrial":"صناعي"}},"substation_pipeline":{"label":"النوع","options":{"compression":"ضغط","field_gathering":"ميدان تجمع","industrial":"صناعي","measurement":"قياس","transmission":"مسارات النقل","valve":"صمام","valve_group":"مجموعة صمامات"}},"supervised":{"label":"مُشرف عليه","terms":"يشرف عليها,مراقبة,يوجد شخص يديرها,خاضعة للإشراف"},"support":{"label":"دعم","terms":"دعم,مساعدة,مساندة"},"surface":{"label":"السطح","options":{"artificial_turf":"عشب صناعي","asphalt":"أسفلت","clay":"الطين","compacted":"مضغوط","concrete":"خرسانه/اسمنت","dirt":"ترابية","grass":"عشب","gravel":"حصباء/حصى","ground":"أرضي","metal":"معدني","paved":"مرصوف/معبد","paving_stones":"مرصوف بالطوب","pebblestone":"بحص متنوع","salt":"ملح","sand":"رمال/نفود","tartan":"طرطان","unpaved":"غير مرصوف/معبد","wood":"خشبي","woodchips":"رقائق الخشب"},"terms":"السطح,سطح,أديم"},"surveillance":{"label":"نوع المراقبة"},"surveillance/type":{"label":"نوع المراقبة","options":{"ALPR":"القارئ الآلي للوحات المركبات","camera":"آلة تصوير","guard":"حارس"}},"surveillance/zone":{"label":"منطقة مراقبة"},"survey/date":{"label":"تاريخ آخر تحقق واستقصاء شخصي","terms":"تاريخ آخر تحقق واستقصاء شخصي,تاريخ آخر تحقق واستقصاء واقعي,تاريخ آخر تحقق واستقصاء موثق"},"survey_point/datum_aligned":{"label":"تتماشى مع المسند الجيوديسي المحلي"},"survey_point/purpose":{"label":"الغرض من نقطة الاستطلاع","options":{"both":"كليهما","horizontal":"المحاذاة الأفقية","vertical":"المحاذاة العمودية"}},"survey_point/structure":{"label":"بنية","options":{"beacon":"كبير مثبت بشكل رباعي","block":"صبة خرسانية","bracket":"حامل","cairn":"رِجم","cut":"خط مقصوص","indented_pin":"دبوس بمسافة بادئة","magnet":"مغناطيس","medallion":"ميدالية","pillar":"عمود","pin":"دبوس","plaque":"لوح جداري","pole":"عمود طويل"}},"swimming_pool":{"label":"النوع","options":{"spa":"منتجع صحي"}},"switch":{"label":"النوع","options":{"circuit_breaker":"قاطع دائرة كهربية","disconnector":"فاصل دائرة كهربية","earthing":"الأرضي","mechanical":"ميكانيكي"}},"tactile_paving":{"label":"الرصيف البارز (للمكفوفين)","terms":"الرصيف البارز (للمكفوفين),رصيف المكفوفين,طوب مخصص للمكفوفين,أرضية مشي المكفوفين,الرصيف البارز (للعميان)"},"takeaway":{"label":"سفري/وجبات خارجية","options":{"no":"لا","only":"لا يوجد أكل محلي فقط وجبات خارجية/سفري ","yes":"نعم"},"placeholder":"نعم ، لا ، فقط سفري/طلبات خارجية...","terms":"سفري,تيك أوي,طلبات خارجية,طلبات جاهزة"},"target":{"label":"Target"},"taxi_vehicle":{"options":{"motorcar":{"title":"سيارة"},"motorcycle":{"title":"دراجة نارية"}}},"taxon":{"label":"الأصنوفة","placeholder":"Acer platanoides Columnare, Pyrus calleryana Chanticleer …","terms":"التصنيف"},"tee":{"label":"لون / نوع نقطة الإنطلاق"},"telecom":{"label":"النوع","options":{"connection_point":"وصلة","data_center":"مركز بيانات","service_device":"جهاز الخدمة"}},"telecom/medium":{"label":"وسيط"},"telescope/type":{"label":"النوع"},"tidal":{"label":"المد والجزر","terms":"مد وجزر"},"to":{"label":"إلى"},"toilets":{"label":"مراحيض","terms":"مراحيض,دورات مياة,حمامات"},"toilets/disposal":{"label":"طريقة التصريف","options":{"bucket":"حاوية تفرغ بشكل دوري","chemical":"حفرة معالجة بمواد كيميائية","flush":"شطف/سيفون/ماء متدفق","pitlatrine":"مرحاض ذو حفرة"}},"toilets/handwashing":{"label":"مغاسل يدين","terms":"مغاسل يدين,مغسلة,ميضأة"},"toilets/menstrual_products":{"options":{"no":"لا"}},"toilets/position":{"label":"أنواع المراحيض","terms":"المراحيض,وضعيات قضاء الحاجة"},"toilets/wheelchair":{"label":"مرحاض يستقبل الكراسي المتحركة","options":{"limited":"محدودة","no":"لا","yes":"نعم"}},"toll":{"label":"رسوم","terms":"رسوم"},"tomb":{"label":"النوع","options":{"columbarium":"أكشاك الجرار (كولومباريوم)","crypt":"سرداب","hypogeum":"هيبوجيوم","mausoleum":"Mausoleum","pyramid":"هرم","sarcophagus":"التابوت الحجري","table":"هضبة المرور","tumulus":"جثوة","vault":"خزنة/خزانات"}},"tourism":{"label":"النوع"},"tower/construction":{"label":"تحت الإنشاء","placeholder":"مشدود ، مبني هيكلياً، مخفي ، ..."},"tower/platforms":{"label":"منصات","placeholder":"1 ، 2 ، 3 ..."},"tower/type":{"label":"النوع"},"townhall/type":{"label":"النوع"},"tracktype":{"label":"تصنيف المسار","options":{"grade2":"مستوي في المعظم: وهو مسار عبر الحصى/صخور المختلطة مع بعض المواد اللينة","grade3":"مسار مختلط بين موارد صلبة ولينة","grade4":"لين في المعظم: مسار على تربة/رمال/عشب مختلطة مع بعض المواد الصلبة مثل الحصى","grade5":"لين: مسار يمر عبر التربة /الرمال /العشب ولا يوجد فيه حصى وصخور"},"placeholder":"مستوي، معظمه مستوي، لين..."},"trade":{"label":"النوع"},"traffic_calming":{"label":"النوع","options":{"bump":"مطب قصير لتخفيف السرعة","chicane":"منعطفات صناعية لتخفيف السرعة","choker":"بروز هزاز للتنبية بتهدئة السرعة","cushion":"مطبات مركبات صغيرة","dip":"منخفض لتهدئة السرعة ويسمح بعبور المياة","hump":"مطب طويل لتخفيف السرعة","mini_bumps":"مطبات تخفيف سرعة صغيرة","rumble_strip":"مطبات قصيرة ومنخفضة متتالية على شكل شريط","table":"مطب مرتفع وطويل لتخفيف السرعة بشكل جبري"}},"traffic_calming_road":{"label":"تخفيف السرعة"},"traffic_sign":{"label":"إشارات المرور"},"traffic_sign/direction":{"label":"اتجاه علامة الطريق","options":{"backward":"للخلف","both":"للاتجاهين","forward":"للأمام"}},"traffic_signals":{"label":"النوع"},"traffic_signals/arrow":{"label":"سهم اللمس","terms":"سهم اللمس"},"traffic_signals/countdown":{"label":"العداد التنازلي","terms":"العداد التنازلي"},"traffic_signals/direction":{"label":"اتجاه علامة الطريق","options":{"backward":"للخلف","both":"للاتجاهين","forward":"للأمام"}},"traffic_signals/minimap":{"label":"خريطة اللمس","terms":"خريطة اللمس"},"traffic_signals/sound":{"label":"إشارات بالصوت","options":{"locate":{"description":"إشارات بالصوت","title":"محدد موقع زر الاتصال"},"no":"لا","walk":{"description":"لا يوجد سوى إشارة عند السماح بالمشي","title":"مؤشر المشي"},"yes":"نعم"}},"traffic_signals/vibration":{"label":"اهتزاز"},"trail_visibility":{"label":"مدى وضوح الدرب/المسار","options":{"bad":"سيء: لا يوجد علامات إرشادية، المسار غير مرئي أو غير مطروق","excellent":"ممتاز: مسارات واضحة وعلامات إرشادية في كل مكان","good":"جيد: علامات واضحة ، قد تحتاج للبحث عن المسار في بعض الأحيان","horrible":"مخيف: بلا مسار/غير مطروق بالغالب، ولابد من توفر مهارات لاجتياز المسار","intermediate":"متوسط: علامات إرشادية قليلة: والمسار مرئي في الغالب","no":"غير واضح أبداً: بلا مسار وغير مطروق، ولابد من مهارات عالية وتوجيه لاجتياز المكان"},"placeholder":"ممتاز، جيد، سيء...","terms":"مدى وضوح الدرب,مدى وضوح المسار,مدى وضوح الطريق لغير السيارات والمركبات"},"transformer":{"label":"النوع","options":{"auxiliary":"مساعد: يغذي النظم الداخلية في المحطات الفرعية","converter":"محول: يغذي محولات الطاقة","distribution":"موزع : يغذي المستهلكين النهائيين ، ويتم تركيبه خارج المحطات الفرعية","generator":"مولد: يقوم بتصعيد الجهد في محطات توليد الكهرباء","main":"رئيسي: لإعادة إرسال الطاقة","phase_angle_regulator":"الداعم التربيعي","yes":"يؤدي دور غير معروف"}},"trees":{"label":"أشجار"},"trench":{"label":"النوع"},"trolley_wire":{"label":"كابلات/أسلاك ترولي علوية","terms":"كابلات/أسلاك ترولي علوية"},"tunnel":{"label":"النوع","placeholder":"الافتراضي"},"tunnel_combo":{"label":"النوع","options":{"avalanche_protector":"حامي انهيار ثلجي","building_passage":"ممر داخل البناء","culvert":"بربخ"}},"turning_circle":{"label":"شكل"},"two_sided":{"label":"ذو وجهين","options":{"undefined":"لا","yes":"نعم"}},"usage_rail":{"label":"نوع الاستخدام","options":{"branch":"اسم الفرع","industrial":"صناعي","main":"رئيسي","military":"عسكري","test":"تجريبي","tourism":"سياحي"},"terms":"نوع الإستخدام"},"usage_waterway":{"label":"نوع الاستخدام","options":{"headrace":"إنتاج الكهرباء من انصباب الماء من الأنابيب","irrigation":"مجرى مخصص للري الزراعي","spillway":"مجرى الانسكاب","tailrace":"انتاج الكهرباء من مخرجات التوربينات","transmission":"مسارات النقل","transportation":"النقل"}},"utility":{"label":"المرفق","options":{"gas":"غاز","oil":"نفط","power":"طاقة","telecom":"الاتصالات السلكية واللاسلكية","water":"مياه"}},"utility_semi":{"label":"المرافق"},"valve":{"label":"النوع"},"vehicles":{"label":"مركبات","options":{"bus":"حافلة","ferry":"عبّارة (مركب بحري)","light_rail":"قطار خفيف","monorail":"سكة حديد أحادية","subway":"مترو الأنفاق","train":"قطار","tram":"ترام","trolleybus":"حافلات كهربائية (ترولي)"}},"vending":{"label":"أنواع البضائع","options":{"bread":"خبز","cigarettes":"Cigarettes","coffee":"قهوة","condoms":"Condoms","drinks":"المشروبات","eggs":"بيض","electronics":"الالكترونيات","excrement_bags":"أكياس البراز","food":"أغذية","fuel":"وقود","ice_cream":"بوظة/آيسكريم","milk":"حليب","newspapers":"Newspapers","pizza":"بيتزا","sweets":"حلويات","water":"مياه شرب"}},"vhf":{"label":"رقم موجة VHF","terms":"رقم موجة vhf,رقم قناة vhf"},"via":{"label":"عبر"},"video_calls":{"label":"Video Calls","terms":"video calls"},"visibility":{"label":"مجال الرؤية","options":{"area":"يرى من 20 متر (65 قدم) وأكثر","house":"يرى من 5 أمتار (16 قدم) فما دون","street":"يرى من 5 إلى 20 متر (16 إلى 65 قدم)"},"terms":"الوضوح/مدى الرؤية"},"volcano/status":{"label":"حالة البركان","options":{"active":"نشط","dormant":"في سبات عميق","extinct":"خامد"}},"volcano/type":{"label":"نوع البركان","options":{"scoria":"مخروطي (من جفاء البركان)","shield":"درعي (شكل درع)","stratovolcano":"طبقي"}},"voltage":{"label":"الجهد الكهربائي"},"voltage/primary":{"label":"الجهد الكهربائي الأساسي","terms":"الجهد الكهربائي الأساسي,الفولت الكهربائي الأساسي،الجهد الكهربائي الرئيسي,الفولت الكهربائي الرئيسي"},"voltage/secondary":{"label":"الجهد الكهربائي الثانوي","terms":"الجهد الكهربائي الثانوي,الفولت الكهربائي الثانوي"},"voltage/tertiary":{"label":"الجهد الكهربائي العالي","terms":"الجهد الكهربائي العالي,الجهد العالي,الفولت العالي"},"wall":{"label":"النوع"},"waste":{"label":"نفايات","options":{"cigarettes":"Cigarettes","trash":"سلة المهملات"}},"water":{"label":"النوع"},"water_point":{"label":"نقطة تعبئة مياة شرب"},"water_source":{"label":"مصدر المياه","options":{"pond":"بركة ماء","river":"نهر / مجرى مائي واسع","stream":"مجرى مائي / شعيب","water_tank":"خزان ماء"}},"water_tank/volume":{"label":"السعة (لتر)","placeholder":"10000, 20000, 30000…","terms":"الحجم (لتر)"},"waterway":{"label":"النوع"},"website":{"label":"الموقع الإلكتروني","placeholder":"https://example.com","terms":"الموقع الإلكتروني,الصفحة الإلكترونية"},"website/menu":{"placeholder":"https://example.com"},"wetland":{"label":"النوع","options":{"bog":"رخاخ","fen":"مستنقع أعشاب مغذى من المياه الجوفية","mangrove":"غابات المانغروف","marsh":"هور/ سبخة","reedbed":"مقصبة","saltmarsh":"مستنقع الملح الساحلي","string_bog":"سلسلة رخاخ","swamp":"مستنقع","tidalflat":"المد و الجزر منبسط","wet_meadow":"مرعى/مرج رطب طوال العام"}},"wheelchair":{"label":"إمكانية دخول/وصول كراسي المعاقين","options":{"limited":"محدودة","no":"لا","yes":"نعم"},"terms":"إمكانية دخول كراسي المعاقين,إمكانية وصول كراسي المعاقين,إمكانية دخول كراسي ذوي الإحتياجات الخاصة,إمكانية وصول ذوي الإحتياجات الخاصة"},"wholesale":{"label":"بيع بالجملة"},"width":{"label":"العرض (بالمتر)","terms":"العرض (بالمتر)"},"wikidata":{"label":"معرف ويكي بيانات","terms":"معرف ويكي بيانات,رقم ويكي بيانات"},"wikimedia_commons":{"label":"صفحة ويكيميديا كومنز","placeholder":"File:Example.jpg","terms":"صفحة ويكيميديا كومنز"},"wikipedia":{"label":"ويكيبيديا","terms":"ويكيبيديا"},"windings":{"label":"عدد لفات الملف الكهرومغناطيسي/الوشيعة","placeholder":"1 ، 2 ، 3 ...","terms":"الملف الكهرومغناطيسي,الوشيعة"},"windings/auto":{"label":"محول ذاتي","options":{"no":"لا","undefined":"يفترض أن يكون لا","yes":"نعم"},"terms":"محول ذاتي"},"windings/configuration":{"label":"شكل الملف الكهرومغناطيسي/الوشيعة","options":{"delta":"دلتا","leblanc":"لوبلان","open":"مفتوحة","open-delta":"دلتا مفتوحة","scott":"سكوت","star":"ستار / واي","zigzag":"زيق زاق"},"terms":"الملف الكهرومغناطيسي,الوشيعة"}},"presets":{"addr/interpolation":{"name":"عنوان الاستيفاء"},"address":{"name":"العنوان","terms":"عنوان,العنوان,الموقع"},"advertising/billboard":{"name":"لوحة إعلانات كبيرة ومرفوعة (على الشارع)","terms":"لوحة إعلانات شوارع,لوحة إعلانات كبيرة,لوحة إعلانات الطريق,لوحة إعلانات مثبته بعامود كبير"},"advertising/board":{"name":"لوحة الإعلانات والملصقات","terms":"لوحة إعلانات وملصقات,لوحة إعلانات متعددة,لوحة إعلانات معلقة بدبابيس"},"advertising/column":{"name":"عمود إعلاني","terms":"عمود دعائي,أعمدة موريس,أعمدة أسطوانية للدعايات والإعلانات"},"advertising/poster_box":{"name":"لوحة دعايات في إطار","terms":"دعايات في إطار,دعايات في صندوق مربع,دعايات شوارع على مستوى الانسان"},"advertising/totem":{"name":"لوحة إعلان مستطيلة عمودية","terms":"لوحة إعلان مستطيلة عمودية,لوحة إعلان بشكل طوطم,لوحة دعايات مستطيلة عمودية"},"aerialway":{"name":"عناصر التنقل الجوي بالكابلات"},"aerialway/cable_car":{"name":"القاطرة المعلقة (تلفريك)","terms":"تلفريك، معبر هوائي، مصعد هوائي,القاطرة المعلقة,التيليفيريك"},"aerialway/chair_lift":{"name":"مصعد تزلج","terms":"مصعد تزلج، تلسياج"},"aerialway/drag_lift":{"name":"خط سحب المتزلجين","terms":"خط سحب المتزلجين"},"aerialway/gondola":{"name":"جندول","terms":"جندول,تيلفريك يدور بشكل دائري"},"aerialway/goods":{"name":"نقل البضائع بالكابلات","terms":"نقل البضائع بالكابلات,نقل البضائع بالتيلفريك"},"aerialway/j-bar":{"name":"خط سحب نوع جَي","terms":"خط سحب نوع جَي"},"aerialway/magic_carpet":{"name":"خط سحب للأطفال","terms":"خط سحب للأطفال"},"aerialway/mixed_lift":{"name":"خط سحب مختلط","terms":"خط سحب مختلط"},"aerialway/platter":{"name":"خط سحب بشكل طبق","terms":"خط سحب بشكل طبق"},"aerialway/pylon":{"name":"برج التلفريك / المصعد التزلج","terms":"برج التلفريك ; المصعد التزلج"},"aerialway/rope_tow":{"name":"حبل سحب الرافعة","terms":"حبل سحب الرافعة"},"aerialway/t-bar":{"name":"خط سحب بشكل تي","terms":"خط سحب بشكل تي"},"aerialway/zip_line":{"name":"كابل التنقل المنزلق","terms":"كابل التنقل"},"aeroway":{"name":"عناصر التنقل الجوي"},"aeroway/aerodrome":{"name":"مطار","terms":"مطار"},"aeroway/apron":{"name":"مواقف الطائرات","terms":"مواقف الطائرات,مرابض الطائرات"},"aeroway/gate":{"name":"بوابة مطار","terms":"بوابة مطار"},"aeroway/hangar":{"name":"حظيرة طائرات","terms":"حظائر الطائرات,حظيرة الطائرات"},"aeroway/helipad":{"name":"مهبط الهليكوبتر","terms":"مهبط للطائرات العمودية,مهبط الهليكوبتر"},"aeroway/holding_position":{"name":"مواضع انتظار طائرات","terms":"مواضع انتظار طائرات,مواقف انتظار طائرات"},"aeroway/jet_bridge":{"name":"جسر إركاب","terms":"جسر الطائرة,خرطوم الطائرة,جسر بين المبنى والطائرة"},"aeroway/parking_position":{"name":"موضع وقوف الطائرات","terms":"موضع وقوف الطائرات"},"aeroway/runway":{"name":"مدرج المطار","terms":"مدرج إقلاع وهبوط,مدرج المطار"},"aeroway/spaceport":{"name":"ميناء فضائي","terms":"ميناء فضائي,مطار فضائي"},"aeroway/taxiway":{"name":"طريق للمدرج","terms":"طريق للمدرج,طريق تدريج الطائرات"},"aeroway/terminal":{"name":"صالة مطار","terms":"صالة مطار,محطة مطار"},"aeroway/windsock":{"name":"كم الريح","terms":"كُم الريح"},"allotments/plot":{"name":"قطعة حديقة تشاركية","terms":"قطعة حديقة تشاركية,قطعة حديقة مشتركة,قطعة حديقة اجتماعية,قطعة حديقة عائلية"},"amenity":{"name":"مرفق"},"amenity/animal_boarding":{"name":"منشأة رعاية حيوانات","terms":"منشأة رعاية حيوانات"},"amenity/animal_breeding":{"name":"منشأة تربية وبيع حيوانات","terms":"منشأة تربية وبيع حيوانات"},"amenity/animal_shelter":{"name":"مأوى حيوانات","terms":"مأوى حيوانات; ملجأ حيوانات"},"amenity/arts_centre":{"name":"مركز فنون","terms":"مركز الفنون، معرض الفن، ساحة عرض، ملتقى فني"},"amenity/atm":{"name":"ماكينة صرافة آلية","terms":"صراف آلي,ماكينة سحب,صرافة,مكينة صراف آلية"},"amenity/bank":{"name":"بنك","terms":"بنك,مصرف"},"amenity/bar":{"name":"حانة","terms":"بار,حانة,خمَّارَة,مَشْرَب"},"amenity/bar/lgbtq":{"name":"LGBTQ+ Bar"},"amenity/bbq":{"name":"مكان مخصص للشواء","terms":"شواء، باربيكيو"},"amenity/bench":{"name":"مقعد","terms":"مقعد,مقعد طويل"},"amenity/bicycle_parking":{"name":"موقف دراجات هوائية","terms":"موقف دراجات هوائية; موقف; دراجة; دراجات"},"amenity/bicycle_parking/building":{"name":"مرآب وقوف دراجات","terms":"مرآب وقوف دراجات"},"amenity/bicycle_parking/lockers":{"name":"خزائن الدراجات","terms":"خزائن الدراجات"},"amenity/bicycle_parking/shed":{"name":"سقيفة/مظلة دراجات","terms":"سقيفة دراجات,مخزن دراجات"},"amenity/bicycle_rental":{"name":"تأجير دراجات","terms":"تأجير دراجات هوائية; تأجير; دراجة; دراجات; هوائي; هوائية"},"amenity/bicycle_repair_station":{"name":"ورشة إصلاح دراجات هوائية","terms":"دراجات هوائية; دراجة; اصلاح; تصليح دراجات; تصليح"},"amenity/biergarten":{"name":"Biergarten"},"amenity/binoculars":{"name":"مناظير مثبتة","terms":"مناظير مثبتة"},"amenity/boat_rental":{"name":"محل استئجار قوارب","terms":"تأجير القوارب، ساحة الزوارق، تأجير زوارق"},"amenity/boat_storage":{"name":"مخزن القوارب","terms":"مخزن القوارب,مستودع القوارب"},"amenity/bureau_de_change":{"name":"تحويل أموال","terms":"تحويل أموال,صرافة"},"amenity/bus_station":{"name":"محطة الحافلات / صالة"},"amenity/cafe":{"name":"مقهى","terms":"مقهى"},"amenity/cafe/bubble_tea":{"name":"مقهى شاي الفقاعات","terms":"مقهى شاي الفقاعات"},"amenity/cafe/coffee_shop":{"name":"مقهى","terms":"مقهى قهوة مختصة,مقهى مفتوح"},"amenity/car_pooling":{"name":"محطة تجميع السيارات","terms":"محطة تجميع السيارات"},"amenity/car_rental":{"name":"محل إيجار سيارات","terms":"محل استئجار السيارات"},"amenity/car_sharing":{"name":"محطة مشاركة السيارات","terms":"محطة مشاركة السيارات"},"amenity/car_wash":{"name":"غسيل سيارات","terms":"غسيل السيارات"},"amenity/casino":{"name":"Casino","terms":"كازينو"},"amenity/charging_station":{"name":"محطة شحن","terms":"محطة شحن"},"amenity/childcare":{"name":"رعاية الأطفال","terms":"رعاية الأطفال; حضانة"},"amenity/cinema":{"name":"سينما","terms":"سينما,صالة سينما,دار السينما"},"amenity/clinic":{"name":"عيادة طبية","terms":"عيادة; مستوصف"},"amenity/clinic/abortion":{"name":"عيادة الإجهاض","terms":"عيادة الإجهاض"},"amenity/clinic/dialysis":{"name":"غسيل كلى"},"amenity/clinic/fertility":{"name":"عيادة الخصوبة","terms":"عيادة الخصوبة"},"amenity/clock":{"name":"ساعة","terms":"ساعة"},"amenity/clock/sundial":{"name":"مزولة","terms":"المزولة الشمسية"},"amenity/community_centre":{"name":"مركز اجتماعي","terms":"مركز اجتماعي"},"amenity/community_centre/lgbtq":{"name":"LGBTQ+ Community Center"},"amenity/community_centre/youth_centre":{"name":"مركز الشباب","terms":"مركز الشباب,بيت الشباب"},"amenity/compressed_air":{"name":"هواء مضغوط","terms":"بنشر دراجات"},"amenity/conference_centre":{"name":"مركز مؤتمرات","terms":"مركز مؤتمرات"},"amenity/courthouse":{"name":"محكمة","terms":"مجمع محاكم,دار عدل,دار قضاء"},"amenity/coworking_space":{"name":"مساحة عمل مشتركة"},"amenity/crematorium":{"name":"محرقة موتى","terms":"محرقة موتى,محرقة جثث الموتى"},"amenity/dentist":{"name":"طبيب أسنان","terms":"طبيب أسنان"},"amenity/dive_centre":{"name":"مركز للغوص","terms":"مركز للغوص"},"amenity/doctors":{"name":"طبيب","terms":"طبيب"},"amenity/doctors/podiatry":{"name":"طبيب الأقدام","terms":"طبيب الأقدام; الأرجل"},"amenity/dojo":{"name":"دوجو / أكاديمية الفنون القتالية","terms":"دوجو,أكاديمية الفنون القتالية"},"amenity/dressing_room":{"name":"غرفة التبديل","terms":"غرفة التبديل,غرفة تبديل اللاعبين"},"amenity/drinking_water":{"name":"مياه شرب","terms":"ماء الشرب"},"amenity/driver_training":{"name":"أراضي تعليم السيلقة"},"amenity/embassy":{"name":"سفارة"},"amenity/events_venue":{"name":"صالة مناسبات / قصر أفراح","terms":"صالة مناسبات,قصر أفراح"},"amenity/exhibition_centre":{"name":"Exposition Center"},"amenity/fast_food":{"name":"وجبات سريعة","terms":"مأكولات سريعة"},"amenity/fast_food/burger":{"name":"برجر وجبة سريعة","terms":"إفطار,عشاء,طعام"},"amenity/fast_food/chicken":{"name":"دجاج وجبة سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/fast_food/donut":{"name":"دونات وجبة سريعة","terms":"دونات"},"amenity/fast_food/fish_and_chips":{"name":"سمك ورقائق بطاطس وجبة سريعة","terms":"إفطار,قهوة,عشاء,طعام"},"amenity/fast_food/hot_dog":{"name":"هوت دوج وجبة سريعة","terms":"هوت دوج وجبة سريعة"},"amenity/fast_food/ice_cream":{"name":"أيس كريم وجبة سريعة"},"amenity/fast_food/juice":{"name":"عصير وجبة سريعة","terms":"عصير وجبة سريعة"},"amenity/fast_food/kebab":{"name":"كباب وجبة سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/fast_food/mexican":{"name":"طعام مكسيكي وجبة سريعة","terms":"مكسيكي"},"amenity/fast_food/pizza":{"name":"بيتزا وجبات سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/fast_food/sandwich":{"name":"شطيرة وجبات سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/ferry_terminal":{"name":"محطة / صالة العبارات"},"amenity/fire_station":{"name":"محطة إطفاء حريق","terms":"محطة إطفاء"},"amenity/food_court":{"name":"قاعة طعام","terms":"وجبات سريعة,مطعم,طعام"},"amenity/fountain":{"name":"نافورة","terms":"نافورة"},"amenity/fuel":{"name":"محطة وقود","terms":"محطة بترول,محطة غاز"},"amenity/gambling":{"name":"Gambling Hall"},"amenity/give_box":{"name":"صندوق مشاركة الأشياء المجانية","terms":"صندوق مشاركة الأشياء المجانية"},"amenity/grave_yard":{"name":"مقبرة داخل الكنيسة","terms":"مقبرة,مدفن"},"amenity/grit_bin":{"name":"صندوق حصى وملح","terms":"صندوق حصى وملح"},"amenity/hospital":{"name":"أرض مستشفى","terms":"أرض مستشفى; مستشفى"},"amenity/hunting_stand":{"name":"منصة صيد","terms":"منصة صيد,برج صيد"},"amenity/ice_cream":{"name":"محل بيع المثلجات","terms":"مثلجات,ايس كريم"},"amenity/internet_cafe":{"name":"مقهى إنترنت","terms":"مقهى إنترنت"},"amenity/karaoke_box":{"name":"Karaoke Box"},"amenity/lavoir":{"name":"مكان غسيل الملابس يدوياً","terms":"مكان غسيل الملابس يدوياً"},"amenity/letter_box":{"name":"صندوق البريد","terms":"صندوق البريد"},"amenity/library":{"name":"مكتبة عامة","terms":"مكتبة"},"amenity/loading_dock":{"name":"رصيف التحميل","terms":"رصيف التحميل"},"amenity/lounger":{"name":"Lounger"},"amenity/love_hotel":{"name":"Love Hotel"},"amenity/marketplace":{"name":"محل تسوق","terms":"سوق,سوق تجارية,ساحة السوق"},"amenity/monastery":{"name":"Monastery Grounds"},"amenity/money_transfer":{"name":"محل لتحويل الأموال","terms":"محل لتحويل الأموال"},"amenity/mortuary":{"name":"المشرحة","terms":"المشرحة"},"amenity/motorcycle_parking":{"name":"موقف دراجات نارية","terms":"دراجة نارية,دراجة بخارية; موقف; مواقف; ركن"},"amenity/motorcycle_rental":{"name":"إيجار دراجات نارية","terms":"إيجار دراجات نارية"},"amenity/nightclub":{"name":"ملهى ليلي","terms":"كباريه"},"amenity/nightclub/lgbtq":{"name":"LGBTQ+ Nightclub"},"amenity/nursing_home":{"name":"دار التمريض"},"amenity/parcel_locker":{"name":"صناديق استلام الشحنات البريدية","terms":"صناديق استلام البريد"},"amenity/parking":{"name":"مكان المواقف","terms":"مكان انتظار سيارات"},"amenity/parking/multi-storey":{"name":"مرآب وقوف متعدد الطوابق","terms":"جراج,مرآب"},"amenity/parking/park_ride":{"name":"مكان الاصطفاف والركوب","terms":"مكان الاصطفاف والركوب"},"amenity/parking/street-side":{"name":"مواقف بجانب الشارع","terms":"مواقف بجانب الشارع"},"amenity/parking/underground":{"name":"موقف تحت الأرض","terms":"جراج"},"amenity/parking_entrance":{"name":"مدخل / مخرج مرآب السيارات","terms":"مدخل / مخرج موقف سيارات"},"amenity/parking_space":{"name":"مساحة موقوف السيارات","terms":"موقف سيارات"},"amenity/parking_space/disabled":{"name":"أماكن المواقف المتاحة","terms":"أماكن المواقف المتاحة,نوع أماكن المواقف المتاحة"},"amenity/payment_centre":{"name":"مركز دفع نقود","terms":"مركز دفع نقود"},"amenity/payment_terminal":{"name":"محطة دفع نقود","terms":"محطة دفع نقود"},"amenity/pharmacy":{"name":"صيدلية","terms":"أدوات النظافة الشخصية والتجميل"},"amenity/photo_booth":{"name":"Photo Booth"},"amenity/place_of_worship":{"name":"مكان عبادة","terms":"محل عبادة"},"amenity/place_of_worship/buddhist":{"name":"Buddhist Temple","terms":"معبد بوذي"},"amenity/place_of_worship/christian":{"name":"كنيسية مسيحية"},"amenity/place_of_worship/christian/jehovahs_witness":{"name":"Kingdom Hall of Jehovah's Witnesses"},"amenity/place_of_worship/christian/la_luz_del_mundo":{"name":"La Luz del Mundo Temple"},"amenity/place_of_worship/christian/quaker":{"name":"Quaker Friends Meeting House"},"amenity/place_of_worship/hindu":{"name":"معبد هندوسي"},"amenity/place_of_worship/jewish":{"name":"كنيس يهودي"},"amenity/place_of_worship/muslim":{"name":"مسجد","terms":"مسجد,جامع,مصلى,صلاة,مسلم,مسلمين"},"amenity/place_of_worship/shinto":{"name":"ضريح شنتو"},"amenity/place_of_worship/sikh":{"name":"معبد السيخ"},"amenity/place_of_worship/taoist":{"name":"معبد طاوي"},"amenity/planetarium":{"name":"قبة فلكية","terms":"قبة فلكية، قبة سماوية، بلانتاريوم"},"amenity/police":{"name":"شرطة","terms":"مركز الشرطة,الشرطة"},"amenity/polling_station":{"name":"Permanent Polling Place"},"amenity/post_box":{"name":"صندوق بريد عام","terms":"صندوق بريد عام"},"amenity/post_depot":{"name":"مكتب الفرز البريدي","terms":"مكتب الفرز البريدي"},"amenity/post_office":{"name":"مكتب البريد","terms":"دائرة البريد,مكتب البريد,مكتب بريد"},"amenity/prison":{"name":"مرافق/أراضي سجن","terms":"مرافق/أراضي سجن"},"amenity/pub":{"name":"Pub","terms":"مشرب,حانة,خمارة"},"amenity/pub/irish":{"name":"Irish Pub"},"amenity/pub/lgbtq":{"name":"LGBTQ+ Pub"},"amenity/pub/microbrewery":{"name":"Brewpub"},"amenity/public_bath":{"name":"دورة مياة عمومية","terms":"حمام عام,دورة مياة عمومية"},"amenity/public_bookcase":{"name":"خزانة كتب عامة","terms":"رف كتب عامة"},"amenity/ranger_station":{"name":"محطة الحراسة","terms":"محطة الحراسة"},"amenity/recycling":{"name":"إعادة التدوير"},"amenity/recycling/container/electrical_items":{"name":"حاوية نفايات إلكترونية","terms":"حاوية نفايات إلكترونية"},"amenity/recycling/container/green_waste":{"name":"حاوية نفايات خضراء","terms":"حاوية نفايات خضراء"},"amenity/recycling_centre":{"name":"مركز إعادة تدوير","terms":"مركز إعادة تدوير"},"amenity/refugee_site":{"name":"مخيم لاجئين","terms":"مخيم لاجئين"},"amenity/research_institute":{"name":"أراضي معهد بحوث","terms":"أراضي معهد بحوث، أرض معهد للبحث العلمي، أرض معهد الأبحاث العلمية، أرض بحث علمي"},"amenity/restaurant":{"name":"مطعم","terms":"مطعم"},"amenity/restaurant/american":{"name":"مطعم امريكي","terms":"مطعم امريكي"},"amenity/restaurant/asian":{"name":"مطعم آسيوي","terms":"مطعم آسيوي"},"amenity/restaurant/chinese":{"name":"مطعم صيني","terms":"مطعم صيني"},"amenity/restaurant/french":{"name":"مطعم فرنسي","terms":"مطعم فرنسي"},"amenity/restaurant/german":{"name":"مطعم ألماني","terms":"مطعم ألماني"},"amenity/restaurant/greek":{"name":"مطعم يوناني","terms":"مطعم يوناني"},"amenity/restaurant/indian":{"name":"مطعم هندي","terms":"مطعم هندي"},"amenity/restaurant/italian":{"name":"مطعم إيطالي","terms":"مطعم إيطالي"},"amenity/restaurant/japanese":{"name":"مطعم ياباني","terms":"مطعم ياباني"},"amenity/restaurant/mexican":{"name":"مطعم مكسيكي","terms":"مطعم مكسيكي"},"amenity/restaurant/noodle":{"name":"مطعم مكرونة","terms":"مطعم مكرونة"},"amenity/restaurant/pizza":{"name":"مطعم بيتزا","terms":"مطعم بيتزا"},"amenity/restaurant/seafood":{"name":"مطعم مأكولات بحرية","terms":"مطعم مأكولات بحرية"},"amenity/restaurant/steakhouse":{"name":"مطعم شرائح اللحم","terms":"مطعم شرائح اللحم"},"amenity/restaurant/sushi":{"name":"مطعم سوشي","terms":"مطعم سوشي"},"amenity/restaurant/thai":{"name":"مطعم تايلاندي","terms":"مطعم تايلاندي"},"amenity/restaurant/turkish":{"name":"مطعم تركي","terms":"مطعم تركي"},"amenity/restaurant/vietnamese":{"name":"مطعم فيتنامي","terms":"مطعم فيتنامي"},"amenity/sanitary_dump_station":{"name":"مكب صرف صحي للكرفانات","terms":"مكب دورات مياه الكرفانات"},"amenity/shelter":{"name":"مأوى/عشة","terms":"مأوى,ملجأ,ملاذ,سقيفة,وقاء,عشة,صندقه"},"amenity/shelter/gazebo":{"name":"شرفة أرضية","terms":"شرفة أرضية"},"amenity/shelter/lean_to":{"name":"كوخ داخل مبنى","terms":"كوخ بثلاث جدارن,عجاف,كوخ منحدر السطح,كوخ له جنب منفتح,كوخ ضمن مبنى"},"amenity/shelter/picnic_shelter":{"name":"يحمي من المطر","terms":"يحمي من المطر"},"amenity/shelter/public_transport":{"name":"مأوى العبور","terms":"مأوى العبور"},"amenity/shower":{"name":"دش وأدوات استحمام","terms":"دش استحمام"},"amenity/smoking_area":{"name":"منطقة مخصصة للتدخين","terms":"منطقة مخصصة للتدخين"},"amenity/social_centre":{"name":"مركز اجتماعي","terms":"مركز اجتماعي"},"amenity/social_facility":{"name":"مرفق اجتماعي","terms":"مرفق اجتماعي"},"amenity/social_facility/ambulatory_care":{"name":"الرعاية الإسعافية","terms":"الرعاية الإسعافية"},"amenity/social_facility/food_bank":{"name":"بنك الطعام","terms":"بنك الطعام"},"amenity/social_facility/group_home":{"name":"دار المسنين","terms":"دار المسنين"},"amenity/social_facility/homeless_shelter":{"name":"ملجأ مشردين","terms":"ملجأ مشردين، مأوى"},"amenity/social_facility/nursing_home":{"name":"دار التمريض","terms":"دار التمريض"},"amenity/studio":{"name":"Studio","terms":"أستوديو; إذاعة; راديو; تلفزيون"},"amenity/studio/audio":{"name":"Recording Studio"},"amenity/studio/radio":{"name":"محطة إذاعية"},"amenity/studio/television":{"name":"Television Station"},"amenity/studio/video":{"name":"Film Studio"},"amenity/taxi":{"name":"موقف تاكسي","terms":"موقف أجرة"},"amenity/telephone":{"name":"هاتف","terms":"هاتف,تلفون"},"amenity/theatre":{"name":"مسرح","terms":"مسرح"},"amenity/ticket_validator":{"name":"مدقق التذاكر","terms":"مدقق التذاكر"},"amenity/toilets":{"name":"غرفة استراحة","terms":"غرفة استراحة"},"amenity/toilets/disposal/flush":{"name":"مرحاض له نظام شطف","terms":"مرحاض له سيفون,مرحاض يتخلص من نفاياته بالماء"},"amenity/toilets/disposal/pitlatrine":{"name":"مرحاض ذو حفرة","terms":"مرحاض له مجرى طويل,مرحاض له حفره من أسفله"},"amenity/toilets/portable":{"name":"مرحاض متنقل","terms":"مرحاض يصب في مواد كيميائية"},"amenity/townhall":{"name":"مبنى البلدية/المركز الإداري","terms":"المجلس البلدي,دار البلدية,قاعة المدينة،المركز الإداري"},"amenity/townhall/city":{"name":"مركز المدينة/إمارة المدينة","terms":"مركز المدينة,قاعة البلدية،مجلس المدينة،مبنى البلدية"},"amenity/toy_library":{"name":"Toy Library"},"amenity/trolley_bay":{"name":"عربة كورال","terms":"عربة كورال"},"amenity/vacuum_cleaner":{"name":"محطة مكنسة سيارات","terms":"محطة كنس وتنظيف داخلي السيارة"},"amenity/vehicle_inspection":{"name":"فحص مركبات/الفحص الدوري","terms":"الفحص الدوري,فحص السيارات"},"amenity/vending_machine":{"name":"آلة بيع آلية","terms":"آلة بيع،ماكينة بيع آلي"},"amenity/vending_machine/bicycle_tube":{"name":"آلة بيع الأنبوب الداخلي للدراجة","terms":"آلة بيع الأنبوب الداخلي للدراجة"},"amenity/vending_machine/bottle_return":{"name":"آلة تدوير قوارير بمقابل مالي","terms":"آلة بيع عكسي,آلة تدوير قوارير,آلة تدوير قوارير علب,آلة تدوير عبوات زجاجية"},"amenity/vending_machine/bread":{"name":"آلة بيع آلي للخبز","terms":"آلة بيع ذاتي للخبز"},"amenity/vending_machine/cigarettes":{"name":"آلة بيع سجائر","terms":"سجائر"},"amenity/vending_machine/coffee":{"name":"آلة بيع قهوة","terms":"قهوة"},"amenity/vending_machine/condoms":{"name":"آلة بيع واقي ذكري"},"amenity/vending_machine/drinks":{"name":"آلة بيع مشروبات","terms":"مشروبات"},"amenity/vending_machine/eggs":{"name":"آلة بيع آلي للبيض","terms":"آلة بيع للبيض"},"amenity/vending_machine/electronics":{"name":"آلة بيع إلكترونيات","terms":"بيع إلكترونيات"},"amenity/vending_machine/elongated_coin":{"name":"آلة صرف عملات معدينة","terms":"آلة صرف عملات مسطحة"},"amenity/vending_machine/excrement_bags":{"name":"موزع أكياس فضلات","terms":"موزع أكياس براز حيوانات"},"amenity/vending_machine/feminine_hygiene":{"name":"آلة بيع أغراض نظافة نسائية","terms":"آلة بيع أغراض صحية نسائية"},"amenity/vending_machine/food":{"name":"آلة بيع مواد غذائية","terms":"آلة بيع مواد غذائية"},"amenity/vending_machine/food/snacks":{"name":"آلة بيع الوجبات الخفيفة","terms":"آلة بيع الوجبات الخفيفة"},"amenity/vending_machine/ice_cream":{"name":"آلة بيع آيس كريم","terms":"آلة بيع آيس كريم,آلة بيع مثلجات"},"amenity/vending_machine/ice_cubes":{"name":"آلة بيع ثلج","terms":"آلة بيع ثلج"},"amenity/vending_machine/newspapers":{"name":"آلة بيع صحف يومية","terms":"آلة بيع جرائد"},"amenity/vending_machine/parking_tickets":{"name":"ماكينة بيع تذاكر وقوف","terms":"ماكينة تذاكر"},"amenity/vending_machine/pizza":{"name":"آلة بيع البيتزا","terms":"آلة بيع البيتزا الذاتية"},"amenity/vending_machine/public_transport_tickets":{"name":"آلة بيع تذاكر مواصلات عامة","terms":"آلة بيع تذاكر مواصلات عامة"},"amenity/vending_machine/stamps":{"name":"آلة بيع طوابع بريدية","terms":"آلة بيع طوابع بريدية"},"amenity/veterinary":{"name":"عيادة بيطرية","terms":"بيطري، طبيب حيوانات"},"amenity/waste/dog_excrement":{"name":"قمامة لبراز الكلاب","terms":"حاوية براز الكلاب"},"amenity/waste_disposal":{"name":"حاوية قمامة متحركة","terms":"حاوية قمامة قابل للنقل"},"amenity/waste_transfer_station":{"name":"محطة نقل النفايات","terms":"نفايات,قمامة,مهملات"},"amenity/water_point":{"name":"تعبئة مياه شرب بكميات (لمقطورات السفر والتخييم)","terms":"مياه شرب للكارفانات"},"amenity/watering_place":{"name":"حوض تروية للحيوانات","terms":"حوض تروية للحيوانات،مكان شرب للحيوانات،حوض سقاية للحيوانات،مورد ماء للحيوانات"},"amenity/weighbridge":{"name":"ميزان شاحانات","terms":"ميزان شاحانات،ميزان،ميزان تريلات،ميزان مركبات ثقيلة"},"area":{"name":"مساحة","terms":"المساحة; مساحة; منطقة; المنطقة"},"area/footway":{"name":"منطقة طريق المشاة","terms":"منطقة طريق المشاة"},"area/highway":{"name":"مساحة شارع/طريق","terms":"مساحة شارع/طريق،منطقة شارع/طريق،أرض الشارع/الطريق"},"attraction":{"name":"Attraction"},"attraction/amusement_ride":{"name":"Amusement Ride"},"attraction/animal":{"name":"حظيرة حيوانات","terms":"حظيرة حيوانات،محجر حيوانات،حوش حيوانات،حوز حيوانات،ضميمة حيوانات"},"attraction/big_wheel":{"name":"عجلة فيريس"},"attraction/bumper_car":{"name":"Bumper Cars"},"attraction/bungee_jumping":{"name":"Bungee Jumping"},"attraction/carousel":{"name":"دوامة خيل","terms":"دوامة خيل"},"attraction/dark_ride":{"name":"Dark Ride"},"attraction/drop_tower":{"name":"Drop Tower Ride"},"attraction/kiddie_ride":{"name":"Kiddie Ride"},"attraction/log_flume":{"name":"Log Flume"},"attraction/maze":{"name":"متاهة","terms":"متاهة"},"attraction/pirate_ship":{"name":"Pirate Ship Ride"},"attraction/river_rafting":{"name":"River Rapids Ride"},"attraction/roller_coaster":{"name":"السفينة الدوارة","terms":"سفينة دوارة"},"attraction/summer_toboggan":{"name":"Summer Toboggan"},"attraction/swing_carousel":{"name":"Swing Carousel"},"attraction/train":{"name":"Tourist Train"},"attraction/water_slide":{"name":"التزلق على الماء"},"barrier":{"name":"حاجز","terms":"حاجز,عائق,تخم,قلعة محصنة,مدينة محصنة,مزلقان"},"barrier/block":{"name":"صبة خرسانية","terms":"صبات,صبات خرسانية"},"barrier/bollard":{"name":"عمود حاجز","terms":"عمود صلب,عمود حاجز"},"barrier/bollard_line":{"name":"صف أعمدة حاجزة","terms":"صف أعمدة صلبة,صف أعمدة مرورية"},"barrier/border_control":{"name":"مركز حدودي","terms":"معبر حدودي,منفذ حدودي"},"barrier/bump_gate":{"name":"بوابة مركبات تمنع مرور الماشية","terms":"بوابة مركبات تمنع مرور الماشية"},"barrier/bus_trap":{"name":"حاجز حافلات","terms":"حاجز حافلات"},"barrier/cable_barrier":{"name":"حاجز الكابلات","terms":"حاجز الكابلات,حاجز الكابل"},"barrier/cattle_grid":{"name":"شبكة أرضية حاجزة للماشية","terms":"شبكة الماشية,شبكة لمنع الماشية"},"barrier/chain":{"name":"سلسلة","terms":"سلسلة"},"barrier/city_wall":{"name":"جدار المدينة","terms":"جدار المدينة; سور المدينة,حائط المدينة"},"barrier/cycle_barrier":{"name":"حاجز دراجات هوائية","terms":"حاجز دراجات هوائية; حاجز; ممر; حاجز مرور; حاجز دراجات"},"barrier/ditch":{"name":"خندق","terms":"خندق"},"barrier/entrance":{"name":"مدخل"},"barrier/fence":{"name":"سياج","terms":"سياج"},"barrier/fence/railing":{"name":"حديدي","terms":"حديدي"},"barrier/full-height_turnstile":{"name":"باب دوار كامل الارتفاع","terms":"باب دوار كامل الارتفاع"},"barrier/gate":{"name":"بوابة","terms":"بوابة"},"barrier/guard_rail":{"name":"حاجز حديدي للحماية من الاصطدام","terms":"حاجز حديدي مانع للاصطدام"},"barrier/hampshire_gate":{"name":"بوابة الأسلاك","terms":"بوابة الأسلاك"},"barrier/handrail":{"name":"سياج سلم (درابزين)"},"barrier/hedge":{"name":"حاجز نباتي","terms":"سياج نباتي"},"barrier/height_restrictor":{"name":"حاجز لتقييد الارتفاع","terms":"حاجز لتقييد ارتفاع المركبات"},"barrier/jersey_barrier":{"name":"حاجز خرساني - نيوجيرسي","terms":"حاجز خرساني - نيوجيرسي"},"barrier/kerb":{"name":"منحدر الرصيف المؤدي للشارع","terms":"رصيف اسمنتي صلب"},"barrier/kerb/flush":{"name":"رصيف مسواي لطبقة الأرض","terms":"رصيف مسواي تقريباً لطبقة الأرض"},"barrier/kerb/lowered":{"name":"رصيف منخفض","terms":"رصيف منخفض،منحدر رصيف"},"barrier/kerb/raised":{"name":"رصيف مرتفع","terms":"رصيف مرتفع,رصيف حافلات"},"barrier/kerb/rolled":{"name":"رصيف بحواف مطويه (مستديرة)","terms":"رصيف بحواف مطويه (مستديرة)"},"barrier/kissing_gate":{"name":"بوابة لا تسمح بعبور الماشية","terms":"بوابة منع الماشية"},"barrier/motorcycle_barrier":{"name":"حاجز منع مرور الدراجات النارية","terms":"حاجز منع مرور الدراجات النارية,عائق لمنع مرور الدراجات النارية"},"barrier/planter":{"name":"حاجز أصيصي"},"barrier/retaining_wall":{"name":"جدار تثبيت للتربة","terms":"جدار استنادي,جدار ساند,جدار اسناد لمنع انزلاق التربة"},"barrier/rope":{"name":"سياج مصنوع من حبال","terms":"سياج مصنوع من حبال,سياج حبلي"},"barrier/sally_port":{"name":"مدخل آمن للحصن","terms":"مدخل آمن للحصن,منفذ الهجوم,مدخل آمن متحكم به إلى حصن أو سجن"},"barrier/spikes":{"name":"حاجز اطارات شوكي","terms":"حاجز اطارات شوكي,حاجز اطارات,حاجز اطارات مسنن,حاجز اطارات مروري,ممزق اطارات السيارات,حاجز أرضي مسنن"},"barrier/stile":{"name":"درج يسمح للبشر بالمرور فوق السياج","terms":"درج يسمح للبشر بعبور السياج,عضادة"},"barrier/swing_gate":{"name":"بوابة عامودية جانبية","terms":"بوابة عامودية تدور بشكل أفقي"},"barrier/toll_booth":{"name":"كشك تحصيل رسوم","terms":"كشك التحصيل,مكتب رسوم العبور"},"barrier/turnstile":{"name":"بوابة دوارة لعبور شخص واحد","terms":"بوابة دوارة لعبور شخص واحد"},"barrier/wall":{"name":"جدار","terms":"جدار"},"barrier/wall/noise_barrier":{"name":"حاجز ضوضاء","terms":"حاجز ضوضاء,حاجز صوتي"},"barrier/wicket_gate":{"name":"باب خوخة","terms":"باب خوخة,باب فرعي"},"barrier/yes":{"name":"حاجز (من نوع غير محدد)"},"boundary":{"name":"حدود"},"boundary/administrative":{"name":"حدود إدارية","terms":"حدود إدارية,تقسيمات إدارية"},"boundary/hazard":{"name":"منطقة خطرة"},"bridge/support":{"name":"دعامات جسر","terms":"دعامات جسر,صبات جسر,صبات حاملة للجسر"},"bridge/support/pier":{"name":"دعامات جسر وسيطة أسفل الجسر","terms":"دعامات جسر وسيطة أسفل الجسر,حاملات للجسر"},"building":{"name":"مبنى","terms":"مبنى,بناية,عمارة,بناء,منشأة"},"building/allotment_house":{"name":"الحدائق/المزارع المحصصة","terms":"الحدائق/المزارع المحصصة"},"building/apartments":{"name":"مبنى شقق سكنية","terms":"مبنى شقق,مبنى عمارة سكنية,مبنى شقق مفروشة"},"building/barn":{"name":"حظيرة","terms":"مخزن,اسطبل"},"building/boathouse":{"name":"مبنى تخزين القوارب","terms":"تخزين القوارب,منزل القوارب,مرفأ مغطى,مبنى يظلل القوارب"},"building/bungalow":{"name":"منزل بطابق واحد","terms":"منزل صغير,كوخ,منزل بطابق واحد"},"building/bunker":{"name":"ملجأ محصّن"},"building/cabin":{"name":"كوخ","terms":"كوخ,حجرة,منزل صغير جدا,كوخ مؤثث,كوخ بمدخنة"},"building/carport":{"name":"مرآب/مظلة سيارات","terms":"مرآب,مظلة سيارات"},"building/cathedral":{"name":"مبنى كاتدرائية"},"building/chapel":{"name":"معبد نصراني"},"building/church":{"name":"مبنى كنيسة","terms":"كنيسة,معبد"},"building/civic":{"name":"مبنى مرافق مدنية"},"building/college":{"name":"مبنى كلية","terms":"كلية,جامعة"},"building/commercial":{"name":"مبني تجاري","terms":"مبنى تجاري"},"building/construction":{"name":"مبنى تحت الإنشاء","terms":"تحت الانشاء,تحت التشييد,جاري بنائه"},"building/cowshed":{"name":"سقيفة/مظلة أبقار","terms":"سقيفة أبقار,حضائر أبقار,مظلات أبقار"},"building/detached":{"name":"منزل منفصل","terms":"مستقل,منفصل,مبنى مستقل"},"building/dormitory":{"name":"سكن جامعي","terms":"مهجع,سكن,سكن جامعي,سكن طلابي,سكن الكلية,سكن الجامعة,سكن مجمع"},"building/entrance":{"name":"مدخل ومخرج"},"building/farm":{"name":"بيت ريفي","terms":"ريف,مزرعة,زرع,بيت مزرعة"},"building/farm_auxiliary":{"name":"مبنى مزرعة","terms":"مزرعة,ريف,مبنى ريفي"},"building/garage":{"name":"مرآب/جراج","terms":"مَرْأب,كراج"},"building/garages":{"name":"جراجات","terms":"جراج; جراج سيارات; موقف; موقف سيارات; ركن; ركنة"},"building/ger":{"name":"منزل اليورت","terms":"منزل اليورت,خيمة"},"building/grandstand":{"name":"مُدَرج","terms":"مدرج رياضي،مدرج سباق خيول,مدرج ملعب"},"building/greenhouse":{"name":"محمية زراعية","terms":"دفيئة زراعية,بيت بلاستيكي,بيت زجاجي"},"building/hangar":{"name":"حظيرة طائرات","terms":"حظيرة طائرات,حظيرة هيلكوبترات"},"building/hospital":{"name":"مبنى مستشفى","terms":"مستشفى; مبنى مستشفى"},"building/hotel":{"name":"مبنى فندق","terms":"مبنى فندق"},"building/house":{"name":"منزل","terms":"منزل,بيت,فلة,دبلكس"},"building/houseboat":{"name":"بيت عائم","terms":"بيت عائم,بيت القارب,قارب أعيد بنائه كمنزل ثابت"},"building/hut":{"name":"كوخ بدائي/عشة","terms":"كوخ,قش,كوخ بدائي,عشة,صندقه,سقيفة,عريش,عرزال,خص,عرزيل"},"building/industrial":{"name":"مبنى صناعي","terms":"مبنى صناعي,مبنى الانتاج,مبنى المعالجة"},"building/kindergarten":{"name":"مبنى حضانة / روض","terms":"مبنى الحضانة,رياض الأطفال ، روض ، حضانة ، طفل ، أطفال"},"building/manufacture":{"name":"مبنى إنتاج صناعي"},"building/mosque":{"name":"مبنى مسجد","terms":"مبنى المسجد,مبنى جامع,مبنى مصلى,مبنى صلاة"},"building/office":{"name":"مبنى مكاتب إدارية","terms":"مبنى مكاتب,مبنى إداري"},"building/outbuilding":{"name":"ملحق"},"building/pavilion":{"name":"مبنى مرافق رياضية","terms":"مبنى أدوات رياضة,مبنى مرافق رياضية,مبنى مرافق رياضة"},"building/public":{"name":"مبنى عام","terms":"مبنى عمومي,مبنى قطاع عام,مبنى رسمي,مبنى جهة رسمية"},"building/residential":{"name":"مبنى سكني","terms":"مبنى سكني"},"building/retail":{"name":"مبنى بيع بالتجزئة","terms":"مبنى بيع بالتجزئة,مبنى بيع قطاعي,مبنى بيع مفرق"},"building/roof":{"name":"سقف/سطح","terms":"غطاء,سطح,أعلى المبنى,سقف"},"building/ruins":{"name":"مبنى أثري/مهجور/متهدم","terms":"مبنى أثري,مبنى مهجور,مبنى متهدم,مبنى أنقاض,مبنى خرابة,خرابة,مبنى أطلال,أطلال,دمنة,طلل,أنقاض,خراب,خرائب,حطام,مبنى متحطم"},"building/school":{"name":"مبنى مدرسة","terms":"مبنى مدرسة,مبنى تعليمي ، ثانوية ، اعدادية ، تعليم أولي ، ابتدائي ، ابتدائية"},"building/semidetached_house":{"name":"مبنى شبه منفصل","terms":"مبنى شبه منفصل,مبنى شبه منعزل,مبنى شبه مستقل"},"building/service":{"name":"مبنى خدمات (محولات، آلات،مضخات..الخ)","terms":"مبنى محولات,مبنى آلات,مبنى مضخات"},"building/shed":{"name":"سقيفة(مستودع/ورشة عمل صغيرة)","terms":"سقيفة,مستودع صغير"},"building/stable":{"name":"إسطبل","terms":"إسطبل.إصطبل,طوالة الخيل,حظيرة الخيل,مأوى الخيل"},"building/stadium":{"name":"مبنى الملعب","terms":"مبنى الملعب"},"building/sty":{"name":"Pigsty"},"building/synagogue":{"name":"Synagogue Building","terms":"synagogue building"},"building/temple":{"name":"مبنى المعبد","terms":"مبنى المعبد"},"building/train_station":{"name":"مبنى محطة القطار"},"building/transportation":{"name":"مبنى للنقل العام","terms":"مبنى للنقل العام"},"building/university":{"name":"مبنى جامعي","terms":"جامعة; كلية"},"building/warehouse":{"name":"مستودع","terms":"مستودع,مخزن"},"building_part":{"name":"جزء من مبنى","terms":"جزء مختلف من مبنى"},"building_point":{"name":"مبنى"},"cemetery/grave":{"name":"قبر","terms":"قبر"},"cemetery/sector":{"name":"قسم المقبرة","terms":"قسم المقبرة"},"club":{"name":"نادي","terms":"نادي"},"club/sport":{"name":"نادي رياضي","terms":"نادي رياضي"},"craft":{"name":"حِرف ومهن","terms":"حرفة,حرف,مهن,تصنيع,صناعة"},"craft/agricultural_engines":{"name":"ميكانيكي محركات زراعية","terms":"ميكانيكي محركات زراعية"},"craft/basket_maker":{"name":"صناعة وحياكة السِلال","terms":"صانع السلال"},"craft/beekeeper":{"name":"مربي النحل","terms":"مربي النحل,نحال"},"craft/blacksmith":{"name":"حدّاد","terms":"حدّاد"},"craft/boatbuilder":{"name":"بنّاء السفن","terms":"بنّاء السفن"},"craft/bookbinder":{"name":"تغليف وتجليد الكتب","terms":"مجلد الكتب"},"craft/carpenter":{"name":"نجار","terms":"نجار"},"craft/carpet_layer":{"name":"فرش وتركيب المفروشات","terms":"فرش وتركيب المفروشات"},"craft/caterer":{"name":"تموين أو متعهد إعاشة","terms":"منظم حفلات; متعهد حفلات;حفلة;حفلات"},"craft/chimney_sweeper":{"name":"منظف مداخن","terms":"منظف مداخن"},"craft/cleaning":{"name":"خدمات التنظيف","terms":"خدمات التنظيف"},"craft/clockmaker":{"name":"ساعاتي","terms":"ساعاتي"},"craft/confectionery":{"name":"حلواني","terms":"حلواني,صانع الحلوى"},"craft/distillery":{"name":"Distillery"},"craft/dressmaker":{"name":"خياط نسائي","terms":"خياط نسائي"},"craft/electrician":{"name":"كهربائي","terms":"كهربائي"},"craft/electronics_repair":{"name":"خدمة إصلاح الالكترونيات","terms":"خدمة تصليح الأجهزة الإلكترونية"},"craft/floorer":{"name":"مبلط/تبليط/أرضيات","terms":"أرضيات,باركيه,سيراميك,بلاط,رخام"},"craft/gardener":{"name":"بستاني","terms":"بستاني"},"craft/glaziery":{"name":"تركيب وإصلاح الزجاج","terms":"زجاج"},"craft/handicraft":{"name":"نحت وزخرفة يدوية","terms":"نحت,زخرفة,نقش,كتابة,حفر"},"craft/hvac":{"name":"ورشة/محل تبريد وتكييف","terms":"صيانة تبريد وتكييف,التدفئة,والتهوية,تكييف الهواء"},"craft/insulator":{"name":"تركيب عوازل حرارية","terms":"عازل,عوازل,تركيب"},"craft/joiner":{"name":"نجار","terms":"نجارة,نجار,صناعة أثاث خشبي,خشب"},"craft/key_cutter":{"name":"قص ونسخ مفاتيح","terms":"قص مفاتيح,نسخ مفاتيح,ناسخ مفاتيح,كيلونات,أقفال"},"craft/locksmith":{"name":"محل بيع أقفال ونسخ مفاتيح"},"craft/metal_construction":{"name":"صناعات المعادن والمواد الصلبة","terms":"حديد,ألمنويم,معدن,معادن,فولاذ,صلب,صلبة,مواد البناء المعدنية,صناعات حديدية,زخرفة حديد,إصلاح"},"craft/painter":{"name":"دهّان","terms":"دهّان,دهان,أصباغ,بوية"},"craft/parquet_layer":{"name":"تركيب أرضيات خشبية (باركيه)","terms":"باركيه,أرضيات خشبية"},"craft/photographer":{"name":"Photographer","terms":"مصور"},"craft/photographic_laboratory":{"name":"مختبر التصوير","terms":"مختبر التصوير"},"craft/plasterer":{"name":"جصاص (أعمال الجبس)","terms":"جبس,جبس بورد,جص,جصاص,ديكور"},"craft/plumber":{"name":"سباكة","terms":"سباك; سمكري"},"craft/pottery":{"name":"صناعة وبيع الفخار","terms":"فخار,طين,طاجن"},"craft/rigger":{"name":"الصواري والحبال والأشرعة","terms":"صواري,حبال,أشرعة"},"craft/roofer":{"name":"بناء الأسقف والقرميد","terms":"بنّاء السقف,أسقف,قرميد"},"craft/saddler":{"name":"صانع سراج","terms":"صانع سراج,صناعة وبيع السروج,تنجيد السيارات,تنجيد القوارب"},"craft/sailmaker":{"name":"صانع أشرعة","terms":"صانع أشرعة"},"craft/sawmill":{"name":"منشرة","terms":"منشرة,تطيع الجذوع,تقطيع الحطب,قص الأخشاب,قص الحطب"},"craft/scaffolder":{"name":"تركيب وتأجير السقالة","terms":"مركب السقالة,سقالة"},"craft/sculptor":{"name":"نحّات","terms":"نحّات"},"craft/shoemaker":{"name":"إسكافي/ صانع الأحذية","terms":"إسكافي.حَذّاء.حذاء,مصلح الأحذية,جزمجي,إسكاف"},"craft/signmaker":{"name":"خطاط ومصمم لوحات تجارية","terms":"خطاط,خطاط لوحات تجارية,مصمم لوحات,صانع لوحات تجارية,رسام,علامات تجارية"},"craft/stonemason":{"name":"قطع ونحت وتشكيل الحجارة","terms":"نحت الحجارة"},"craft/tailor":{"name":"خياط"},"craft/tiler":{"name":"مبلط","terms":"مركِّب البلاط"},"craft/tinsmith":{"name":"سمكري","terms":"سمكري"},"craft/upholsterer":{"name":"منجد","terms":"منجد,تنجيد,أثاث"},"craft/watchmaker":{"name":"ساعاتي","terms":"ساعاتي"},"craft/window_construction":{"name":"تركيب النوافذ","terms":"تركيب النوافذ,صناعة النوافذ,صيانة النوافذ"},"craft/winery":{"name":"Winery"},"cycleway/asl":{"name":"خط السير المتقدم","terms":"خط السير المتقدم حسب الأفضلية,خط التوقف الأولي,خط السيار الأمامي عند الإشارات,باصات,حافلات,سيكل,دراجات,سيارات"},"demolished/building":{"name":"مبنى تم هدمه مؤخرًا"},"disc_golf/basket":{"name":"سلة أقراص الجولف","terms":"سلة أقراص الجولف"},"disc_golf/hole":{"name":"ثقب أقراص الجولف","terms":"ثقب أقراص الجولف"},"disc_golf/tee":{"name":"نقطة انطلاق قرص الجولف","terms":"نقطة انطلاق قرص الجولف"},"disused/amenity":{"name":"مرافق وأماكن عامة مهجورة"},"disused/railway":{"name":"عناصر سكك حديدية مهجورة"},"disused/shop":{"name":"متاجر مهجورة"},"embankment":{"name":"سطح مرفوع يسير عليه الطريق (قد تكون مردومة)"},"emergency":{"name":"عناصر الطوارئ"},"emergency/ambulance_station":{"name":"محطة إسعاف","terms":"محطة إسعاف,محطة اسعاف"},"emergency/assembly_point":{"name":"نقطة التجمع في حالات الطوارئ","terms":"نقطة تجمع طوارئ"},"emergency/defibrillator":{"name":"مزيل الرجفان (جهاز الصدمات الكهربائية)","terms":"مزيل الرجفان,جهاز الصدمات الكهربائية"},"emergency/fire_alarm":{"name":"صندوق إنذار الحريق","terms":"صندوق ابلاغ عن الحريق"},"emergency/fire_extinguisher":{"name":"طفاية حريق","terms":"مطفأة حريق,طفاية حريق"},"emergency/fire_hose":{"name":"خرطوم إطفاء الحريق","terms":"خرطوم إطفاء الحريق,خرطوم الحريق"},"emergency/fire_hydrant":{"name":"صنبور الاطفاء","terms":"خرطوم,مطافئ,إطفاء,اطفاء"},"emergency/first_aid_kit":{"name":"حقيبة إسعافات أولية","terms":"حقيبة إسعاف أولي"},"emergency/landing_site":{"name":"موقع هبوط الطوارئ","terms":"موقع هبوط الطوارئ"},"emergency/life_ring":{"name":"طوق النجاة","terms":"طوق النجاة,لستك للانقاذ"},"emergency/lifeboat_station":{"name":"محطة قارب النجاة","terms":"محطة قارب الانقاذ"},"emergency/lifeguard":{"name":"حارس الشاطئ","terms":"منقذ بحري,منقذ الشاطئ,منقذ,غرق"},"emergency/mountain_rescue":{"name":"منقذ جبلي","terms":"منقذ متسلقي الجبال,منقذ للمناطق الوعرة,منقذ متسلقين,منقذ"},"emergency/phone":{"name":"هاتف طوارئ","terms":"هاتف طوارئ,هاتف حالات طارئة"},"emergency/siren":{"name":"صفاّرة إنذار","terms":"صفاّرة إنذار الطوارئ,زمارة,صفارة"},"emergency/water_reservoir":{"name":"خزان مياه الطوارئ","terms":"خزان مياه الطوارئ"},"emergency/water_reservoir_covered":{"name":"خزان مياه للطوارئ (تحت الأرض)","terms":"خزان مياه للطوارئ (تحت الأرض)"},"emergency/water_tank":{"name":"خزان مياه الطوارئ","terms":"خزان مياه الطوارئ,حوض مياه الطوارئ,بركة مياه الطوارئ"},"entrance":{"name":"مدخل / مخرج","terms":"مدخل/مخرج,دخول/خروج,مخرج,مدخل,خروج"},"entrance/emergency":{"name":"مخرج طوارئ","terms":"مخرج طوارئ,مخرج الطوارئ"},"entrance/emergency_ward_entrance":{"name":"مدخل غرفة الطوارئ","terms":"مدخل غرفة الطوارئ"},"entrance/main":{"name":"المدخل الرئيسي","terms":"المدخل الرئيسي,مدخل رئيسي,المدخل الأساسي,مدخل أساسي"},"ford":{"name":"مخاضة -طريق يشق مجرى مائي","terms":"ممر مائي; ممر; مائي; ماء,مخاضة,مجرى الماء فوق الطريق"},"ford_line":{"name":"مخاضة -طريق يشق مجرى مائي"},"golf/bunker":{"name":"مصيدة الرمال (غولف)","terms":"مصيدة الرمال (غولف)"},"golf/cartpath":{"name":"مسار العربة (غولف)","terms":"مسار العربة (غولف)"},"golf/clubhouse":{"name":"المبنى الرئيسي (غولف)","terms":"المبنى الرئيسي (غولف)"},"golf/driving_range":{"name":"نطاق القيادة (غولف)","terms":"نطاق القيادة"},"golf/fairway":{"name":"فاصل المساحات الزراعية (غولف)","terms":"فاصل المساحات الزراعية (غولف)"},"golf/green":{"name":"النبات الأخضر حول المرمى (غولف)","terms":"النبات الأخضر حول المرمى (غولف)"},"golf/hole":{"name":"ثقب الغولف","terms":"ثقب الغولف"},"golf/lateral_water_hazard":{"name":"علامة تحذير المياة (غولف)","terms":"علامة تحذير المياة (غولف)"},"golf/path":{"name":"مسار مشي الغولف","terms":"مسار مشي الغولف"},"golf/rough":{"name":"منطقة خشنة (غولف)","terms":"منطقة خشنة (غولف)"},"golf/tee":{"name":"مربع الإنطلاق (غولف)","terms":"مربع الإنطلاق (غولف)"},"golf/water_hazard":{"name":"تحذير مياه (غولف)","terms":"تحذير مياه (غولف)"},"healthcare":{"name":"مرافق الرعاية الصحية","terms":"مرفق الرعاية الصحية,مرافق الرعاية الصحية"},"healthcare/alternative":{"name":"الطب البديل","terms":"العلاج بالطب البديل,شعبي,طبيعي,حجامة,إبر صينية"},"healthcare/alternative/chiropractic":{"name":"تقويم العظام","terms":"المعالج للأمراض يدويا; مقوم العظام"},"healthcare/audiologist":{"name":"أخصائي السمع","terms":"أخصائي السمع,أخصائي أذن"},"healthcare/birthing_center":{"name":"مركز ولادة","terms":"مركز ولادة"},"healthcare/blood_donation":{"name":"مركز التبرع بالدم","terms":"تبرع بالدم"},"healthcare/counselling":{"name":"مركز استشارات طبية","terms":"مركز استشارات طبية"},"healthcare/dentist/orthodontics":{"name":"أخصائي تقويم الأسنان","terms":"أخصائي تقويم الأسنان"},"healthcare/hospice":{"name":"دار رعاية المسنين وكبار السن","terms":"دار رعاية المسنين وكبار السن"},"healthcare/laboratory":{"name":"معمل طبي","terms":"مختبر طبي; مخبر التحاليل الطبية"},"healthcare/midwife":{"name":"مركز قابلات للأمهات والأطفال حديثي الولادة","terms":"مركز قابلات للأمهات والأطفال حديثي الولادة"},"healthcare/occupational_therapist":{"name":"أخصائي علاج وظيفي","terms":"أخصائي العلاج الوظيفي,أخصائي العلاج المهني"},"healthcare/optometrist":{"name":"أخصائي بصريات","terms":"أخصائي البصريات,نظارات,محل نظارات,نظارات وعدسات,عدسات,عدسات طبية,فحص نظر"},"healthcare/physiotherapist":{"name":"علاج طبيعي وتأهيل طبي","terms":"أخصائي العلاج الطبيعي,علاج طبيعي,تأهيل طبي"},"healthcare/podiatrist":{"name":"طبيب الأقدام","terms":"طبيب الأقدام; الأرجل"},"healthcare/psychotherapist":{"name":"معالج نفسي","terms":"معالج نفسي,طبيب نفسي,أخصائي نفسي"},"healthcare/rehabilitation":{"name":"مركز إعادة التأهيل","terms":"مركز إعادة التأهيل"},"healthcare/sample_collection":{"name":"مرفق جمع العينات","terms":"جمع عينات الدم,جمع عينات البول,جمع عينات"},"healthcare/speech_therapist":{"name":"معالج مشاكل النطق","terms":"معالج النطق، نطق,معالج مشاكل النطق,علاج صعوبات التواصل,صعوبات التواصل,اللغة والنطق,النطق,اللغة"},"healthcare/yes":{"name":"منشأة صحية (نوع غير محدد)"},"highway":{"name":"عناصر الطرق"},"highway/bridleway":{"name":"طريق الخيول","terms":"طريق الخيول,ممر للخيول,طريق الجياد,ممر الجياد,مسار الخيول,مسار الفروسية"},"highway/bus_guideway":{"name":"مسار الحافلة الموجهة","terms":"مسار الحافلة الموجهة,الحافلة الموجهة"},"highway/bus_stop":{"name":"محطة توقف حافلات"},"highway/construction":{"name":"الطريق قيد الإنشاء","terms":"الطريق قيد الإنشاء"},"highway/corridor":{"name":"ممر داخل المبنى","terms":"ممر داخل المبنى"},"highway/crossing":{"name":"معبر/خط مشاة","terms":"تقاطع,معبر"},"highway/crossing/traffic_signals":{"name":"معبر مشاة بإشارات","terms":"معبر مشاة بإشارات"},"highway/crossing/unmarked":{"name":"معبر مشاة بدون علامات أو إشارة مرورية","terms":"معبر مشاة بدون علامات أو إشارة مرورية"},"highway/cycleway":{"name":"مسار دراجات","terms":"طريق دراجات; مسار دراجات"},"highway/cycleway/bicycle_foot":{"name":"مسار مشاة و دراجات هوائية","terms":"مسار مشاة و دراجات هوائية"},"highway/cycleway/crossing":{"name":"معبر دراجات هوائية"},"highway/cycleway/crossing/bicycle_foot":{"name":"معبر مشاة ودراجات هوائية","terms":"معبر مشاة ودراجات هوائية"},"highway/cycleway/crossing/uncontrolled":{"name":"معبر دراجات هوائية بعلامات مرورية","terms":"معبر دراجات هوائية بعلامات مرورية"},"highway/cycleway/crossing/unmarked":{"name":"معبر دراجات هوائية بدون علامات مرورية","terms":"معبر دراجات هوائية بدون علامات مرورية"},"highway/cycleway/moped_link-NL":{"name":"وصلة لدراجة نارية صغيرة","terms":"وصلة لدراجة نارية صغيرة,رابط لدراجة نارية صغيرة"},"highway/elevator":{"name":"مصعد","terms":"مصعد,لفت,اصنصيل,أصنصير,مِرْقَاة"},"highway/elevator_line":{"name":"مصعد مائل","terms":"مصعد مائل,مصعد مائل على منحدر,مِرْقَاة,مصعد"},"highway/emergency_access_point":{"name":"نقطة وصول الطوارئ","terms":"نقطة وصول الطوارئ"},"highway/emergency_bay":{"name":"منطقة توقف لحالات طوارئ الطريق","terms":"منطقة توقف لحالات طوارئ الطريق,استراحة طوارئ الطريق"},"highway/footway":{"name":"طريق مشي بالأقدام","terms":"ممشى بالأقدام"},"highway/footway/access_aisle":{"name":"مساحة جانب مواقف مركبات المعاقين للنزول والركوب","terms":"مساحة جانب مواقف مركبات المعاقين للنزول والركوب"},"highway/footway/conveying":{"name":"سلم متحرك/بساط متحرك","terms":"سلم متحرك,بساط متحرك,سلالم كهربائية,بساط متحرك للمشاة"},"highway/footway/crossing":{"name":"معبر مشاة"},"highway/footway/crossing/traffic_signals":{"name":"معبر مشاة بإشارات","terms":"معبر مشاة بإشارات"},"highway/footway/crossing/unmarked":{"name":"معبر مشاة بدون علامات أو إشارة مرورية","terms":"معبر مشاة بدون علامات أو إشارة مرورية"},"highway/footway/informal":{"name":"مسار للمشاة غير رسمي"},"highway/footway/sidewalk":{"name":"الرصيف","terms":"رصيف مشاة,رصيف المشاة,رصيف جانب الطريق للمشاة"},"highway/footway/traffic_island":{"name":"جزيرة مشاة بين طريقين"},"highway/give_way":{"name":"علامة \"أعط أفضلية المرور لمن هم في الطريق الآخر\"","terms":"علامة \"أعط أفضلية المرور لمن هم في الطريق الآخر\",علامة \"أعط الأفضلية\",علامة \"أفضلية المرور لمن هم في الدور\",علامة \"أعط أفضلية المرور لمن هم في الطريق السريع\""},"highway/ladder":{"name":"سلم"},"highway/living_street":{"name":"شارع معيشة بين المساكن","terms":"شارع معيشة,شارع سكني حي,شارع سكني ينخفض فيه مرور المركبات,شارع سكني للمشاة الأفضلية فيه,شارع سكني محدود السرعة,شارع سكني الأفضلية فيه للمشاة"},"highway/milestone":{"name":"لوحة/علامة مسافات الطريق","terms":"علامة مسافات الطريق,لوحة مسافات الطريق"},"highway/mini_roundabout":{"name":"دوار صغير","terms":"دوار صغير"},"highway/motorway":{"name":"طريق سريع","terms":"طريق سريع"},"highway/motorway_junction":{"name":"مخرج / مفرق طريق سريع","terms":"مفرق طريق سريع,مخرج طريق سريع"},"highway/motorway_link":{"name":"وصلة لطريق سريع","terms":"رابط لطريق سريع,وصلة طريق سريع,طرق مرتبطة بالطريق السريع"},"highway/passing_place":{"name":"مساحة للتجاوز للطرق","terms":"مساحة للتجاوز للطرق ذات المسار الواحد,مساحة للتجاوز للطرق الضيقة"},"highway/path":{"name":"درب/ممر","terms":"طريق,ممر,مسلك,درب"},"highway/path/boardwalk":{"name":"ممر خشبي","terms":"ممر خشبي,درب خشبي,مسار على ألواح خشب"},"highway/path/crossing":{"name":"معبر مشاة ودراجات هوائية"},"highway/path/informal":{"name":"مسار غير رسمي","terms":"مسار غير رسمي"},"highway/pedestrian_area":{"name":"منطقة للمشاة","terms":"منطقة للمشاة,طريق للمشاة,للمشاة فقط"},"highway/pedestrian_line":{"name":"شارع للمشاة","terms":"شارع للمشاة,شارع للمرور على الأرجل,شارع للمشاة فقط,شارع للراجلين"},"highway/primary":{"name":"طريق أولي","terms":"شارع أولي"},"highway/primary_link":{"name":"وصلة طريق أولي","terms":"رابط لطريق أولي,وصلة طريق أولي"},"highway/raceway":{"name":"مضمار سباق السيارات","terms":"مضمار سباق السيارات"},"highway/raceway/karting":{"name":"مضمار سباق كارتينغ","terms":"مضمار سباق كارتينغ"},"highway/raceway/motocross":{"name":"مسار سباق الموتوكروس","terms":"مسار سباق الموتوكروس"},"highway/residential":{"name":"شارع سكني/حارة","terms":"شارع سكني,شارع حارة,شارع حواري"},"highway/rest_area":{"name":"منطقة استراحة","terms":"استراحة طريق سريع,خدمات طريق سريع"},"highway/road":{"name":"طريق/شارع غير معروف تصنيفه","terms":"طريق غير معروف"},"highway/road/bridge":{"name":"جسر غير معروف تصنيفه","terms":"جسر غير معروف تصنيفه"},"highway/secondary":{"name":"طريق ثانوي","terms":"شارع ثانوي"},"highway/secondary_link":{"name":"وصلة لطريق ثانوي","terms":"رابط لشارع ثانوي"},"highway/service":{"name":"طريق خدمة","terms":"شارع خدمي,طريق خدمة,طريق مؤدي لمكان خدمة,طريق مؤدي لمكان خدمات"},"highway/service/alley":{"name":"زقاق / ممر","terms":"زقاق,ممر"},"highway/service/drive-through":{"name":"ممر الطلب بالسيارة","terms":"ممر الطلب بالسيارة"},"highway/service/driveway":{"name":"طريق مؤدي لمسكن","terms":"ممر السكن,طريق مؤدية لمسكن,طريق لمسكن"},"highway/service/emergency_access":{"name":"ممر/طريق طوارئ","terms":"ممر الطوارئ"},"highway/service/parking_aisle":{"name":"طريق داخل مواقف السيارات","terms":"ممر مواقف السيارات,طريق داخل مواقف السيارات,طريق بين مواقف السيارات,طريق يمر من خلال مواقف السيارات"},"highway/services":{"name":"منطقة خدمة","terms":"خدمة سيارات; منطقة خدمة سيارات; منطقة خدمية"},"highway/speed_camera":{"name":"كاميرا مراقبة السرعة","terms":"كاميرا مراقبة السرعة"},"highway/speed_display":{"name":"إشارة تظهر سرعتك عبر الرادار","terms":"إشارة تظهر سرعتك عبر الرادار,علامة تظهر سرعتك عبر الرادار"},"highway/steps":{"name":"درج/سلم","terms":"درج,سلم"},"highway/steps/conveying":{"name":"سلم كهربائى","terms":"سلم متحرك,سلم كهرابائي,سلم آلي,درج آلي"},"highway/stop":{"name":"إشارة توقف","terms":"إشارة توقف، ممنوع الوقوف، قف"},"highway/street_lamp":{"name":"عمود إنارة شارع","terms":"مصباح الشارع"},"highway/tertiary":{"name":"طريق ثالثي","terms":"شارع ثالثي"},"highway/tertiary_link":{"name":"وصلة لطريق ثالثي","terms":"رابط لشارع ثالثي"},"highway/toll_gantry":{"name":"بوابة تحصيل الرسوم آلياً","terms":"بوابة تحصيل الرسوم آلياً"},"highway/track":{"name":"طريق غير معبد/ردمية","terms":"غير معبد,دمية,طريق وعر,دفع رباعي,طريق زراعي,زراعي,درب"},"highway/traffic_mirror":{"name":"مرآة مرور","terms":"مرآة; مرور; مراية"},"highway/traffic_signals":{"name":"إشارات مرور","terms":"اشارة; اشارات; اشارة مرور"},"highway/trailhead":{"name":"نقطة بداية مسارات المشي","terms":"نقطة بداية مسارات المشي,بداية مسار الهايكنج,بداية مسار الراجلة"},"highway/trunk":{"name":"طريق رئيسي","terms":"شارع أساسي,شارع رئيسي"},"highway/trunk_link":{"name":"وصلة لطريق رئيسي","terms":"رابط لشارع رئيسي"},"highway/turning_circle":{"name":"دائرة للرجوع للخلف","terms":"دائرة رجوع في نهاية طريق"},"highway/turning_loop":{"name":"دائرة رجوع (جزيرة)","terms":"دائرة رجوع (جزيرة)"},"highway/unclassified":{"name":"طريق غير مصنف","terms":"طريق غير مصنف"},"historic":{"name":"موقع تاريخي/قديم","terms":"موقع تأريخي"},"historic/archaeological_site":{"name":"موقع أثري","terms":"موقع أثري"},"historic/boundary_stone":{"name":"حجر/علامة حدودية","terms":"صخرة حدودية,حجر الحدود التاريخي,حجر/علامة حدودية"},"historic/building":{"name":"مبنى تاريخي","terms":"مبنى تاريخي"},"historic/castle":{"name":"حصن / قلعة","terms":"حصن; قلعة; قصر"},"historic/castle/fortress":{"name":"حصن تاريخي","terms":"حصن تاريخي"},"historic/castle/palace":{"name":"قصر","terms":"قصر"},"historic/castle/stately":{"name":"قصر فاخر","terms":"قصر فاخر"},"historic/city_gate":{"name":"بوابة المدينة","terms":"بوابة المدينة"},"historic/fort":{"name":"حصن عسكري","terms":"حصن عسكري"},"historic/manor":{"name":"قصر سكني قديم/تاريخي","terms":"قصر سكني,المقر الرئيسي لسيد القصر"},"historic/memorial":{"name":"نصب تذكاري","terms":"نصب تذكاري"},"historic/memorial/plaque":{"name":"Commemorative Plaque"},"historic/monument":{"name":"نصب تذكاري","terms":"نصب تذكاري,مبنى تذكاري"},"historic/pillory":{"name":"منصة صلب للتشهير بالمجرمين","terms":"منصة صلب للتشهير بالمجرمين"},"historic/ruins":{"name":"أطلال/أنقاض/خرائب","terms":"أطلال,أنقاض,خرائب"},"historic/tomb":{"name":"قبر / ضريح","terms":"قبر، ضريح"},"historic/wayside_cross":{"name":"تقاطع جانب الطريق"},"historic/wayside_shrine":{"name":"Wayside Shrine","terms":"مقام نصراني على الطريق"},"historic/wreck":{"name":"ركام سفينة","terms":"ركام سفينة,ركام قارب,ركام مركب بحري"},"indoor":{"name":"عناصر داخل المباني"},"indoor/area":{"name":"مساحة داخل مبنى","terms":"مساحة داخل مبنى,مساحة داخلية,مساحة داخل المبنى,مساحة في المبنى"},"indoor/corridor":{"name":"ممر داخل المبنى","terms":"ممر داخل المبنى"},"indoor/corridor_line":{"name":"ممر داخل المبنى"},"indoor/door":{"name":"باب داخل المبنى","terms":"باب داخل المبنى,باب داخلي"},"indoor/elevator":{"name":"غرفة للمصعد داخل المبنى","terms":"غرفة للمصعد داخل المبنى,منور للمصعد داخل المبنى"},"indoor/room":{"name":"غرفة","terms":"غرفة,حجرة,أوضة,غرف,الغرفة"},"indoor/stairs":{"name":"درج داخل المبنى","terms":"درج داخل المبنى"},"indoor/wall":{"name":"جدار داخل المبنى","terms":"جدار داخل المبنى,جدار داخلي"},"internet_access/wlan":{"name":"نقطة Wi-Fi","terms":"نقطة wi-fi"},"junction":{"name":"تقاطع","terms":"مفترق طرق,تقاطع"},"landuse":{"name":"عناصر استخدامات الأراض"},"landuse/allotments":{"name":"الحدائق/المزارع المحصصة","terms":"المزارع المحصصة,الحدائق المحصصة"},"landuse/aquaculture":{"name":"مزرعة سمكية","terms":"مزرعة سمكية"},"landuse/basin":{"name":"أرض حوضية طبيعية تحتوي الماء"},"landuse/brownfield":{"name":"أرض صناعية سابقة","terms":"أرض صناعية سابقة"},"landuse/cemetery":{"name":"مقبرة","terms":"مقبرة,مدفن,جبانة"},"landuse/churchyard":{"name":"Churchyard"},"landuse/commercial":{"name":"منطقة تجارية","terms":"تجارية; تجاري; منطقة تجارة"},"landuse/construction":{"name":"منطقة بناء تحت الإنشاء","terms":"تحت الإنشاء"},"landuse/education":{"name":"الحرم الجامعي التعليمي","terms":"الحرم الجامعي"},"landuse/farm":{"name":"أرض زراعية"},"landuse/farmland":{"name":"أرض زراعية","terms":"أرض زراعية، فلاحة"},"landuse/farmyard":{"name":"مرافق مزرعة","terms":"مرافق مزرعة,بنايات مزرعة,منشاءات مزرعة"},"landuse/flowerbed":{"name":"مساحة زهور زينة","terms":"مساحة زهور زينة"},"landuse/forest":{"name":"الغابات المُدارة","terms":"الغابات المُدارة"},"landuse/garages":{"name":"مرائب/كراجات","terms":"مرائب,كراجات,جراجات,أراضي مرئاب"},"landuse/grass":{"name":"عشب","terms":"عشب,غطاء أخضر"},"landuse/greenfield":{"name":"حقول خضراء ستتحول لمباني","terms":"حقل أخضر,أرض لم تطور,أرض زراعية لم يبنى عليها,قطعة أرض (خضراء),أرض فضاء,أرض بيضاء"},"landuse/greenhouse_horticulture":{"name":"محمية زراعية","terms":"الدفيئات الزراعية,محمية زراعية,بيت محمي زراعي"},"landuse/harbour":{"name":"ميناء/مرفأ","terms":"مرفأ، ميناء"},"landuse/industrial":{"name":"منطقة صناعية","terms":"صناعية; صناعي; صناعات; منطقة صناعات; منطقة صناعة; صناعة; صنع"},"landuse/industrial/scrap_yard":{"name":"تشليح/خردة سيارات","terms":"تشليح سيارات,خردة سيارات"},"landuse/industrial/slaughterhouse":{"name":"مسلخ","terms":"مسلخ"},"landuse/landfill":{"name":"مكب نفايات","terms":"مكب نفايات"},"landuse/meadow":{"name":"مرعى/مرج/روضة","terms":"مرج,روضة,مخضرة,مرعى"},"landuse/military":{"name":"منطقة عسكرية","terms":"جيش,قوات مسلحة,عسكرية"},"landuse/military/airfield":{"name":"قاعدة طيران جوية","terms":"قاعدة جوية، مطار عسكري"},"landuse/military/barracks":{"name":"ثكنة عسكرية","terms":"ثكنة عسكرية"},"landuse/military/base":{"name":"قاعدة عسكرية","terms":"قاعدة عسركية,قاعدة تابعة للجيش"},"landuse/military/base/navy":{"name":"قاعدة بحرية","terms":"قاعدة بحرية,قاعدة مائية"},"landuse/military/obstacle_course":{"name":"تدريب عسكري لتجاوز العقبات","terms":"تدريب عسكري لتجاوز العقبات"},"landuse/military/range":{"name":"ميدان الرماية العسكرية","terms":"ميدان الرماية العسكرية"},"landuse/military/training_area":{"name":"منطقة تدريب عسكري","terms":"منطقة تدريب عسكري"},"landuse/orchard":{"name":"بستان","terms":"بستان,بيارة,أشجار البستان"},"landuse/plant_nursery":{"name":"مشتل","terms":"مشتل"},"landuse/pond":{"name":"بركة ماء"},"landuse/quarry":{"name":"كسّارة، مقلع حجارة","terms":"محجر,مقلع"},"landuse/railway":{"name":"منطقة السكك الحديدية","terms":"منطقة السكك الحديدية"},"landuse/recreation_ground":{"name":"ميدان الألعاب","terms":"ميدان الألعاب"},"landuse/religious":{"name":"منطقة دينية","terms":"منطقة دينية"},"landuse/reservoir":{"name":"خزان"},"landuse/residential":{"name":"منطقة سكنية","terms":"منطقة سكانية; سكان; سكنية; سكن; منطقة سكن"},"landuse/residential/apartments":{"name":"مجمع شقق سكنية","terms":"مجمع شقق سكنية,مجمع سكني,مجمع شقق"},"landuse/retail":{"name":"منطقة بيع بالتجزئة","terms":"بيع قطاعي,بيع بالتجزئة"},"landuse/salt_pond":{"name":"ملاحات","terms":"برك تبخير الماء لاستخراج الملح,ملح,سباخ,تبخير"},"landuse/vineyard":{"name":"حقل عنب","terms":"مزرعة عنب,حقل عنب"},"landuse/winter_sports":{"name":"منطقة الرياضات الشتوية","terms":"منطقة الرياضات الشتوية"},"leisure":{"name":"عناصر الترفيه"},"leisure/adult_gaming_centre":{"name":"Adult Gaming Center"},"leisure/amusement_arcade":{"name":"Amusement Arcade"},"leisure/bandstand":{"name":"Bandstand"},"leisure/beach_resort":{"name":"منتجع الشاطئ","terms":"منتجع الشاطئ"},"leisure/bird_hide":{"name":"مكان لمراقبة الطيور","terms":"مكان لمراقبة الطيور"},"leisure/bleachers":{"name":"Bleachers"},"leisure/bowling_alley":{"name":"بولينغ","terms":"بولينغ، بولينج"},"leisure/common":{"name":"أرض مشتركة","terms":"مشّاع، متعارف عليه، شعبي، شائع"},"leisure/dance":{"name":"قاعة الرقص","terms":"قاعة الرقص"},"leisure/disc_golf_course":{"name":"مكان للعب قرص الجولف","terms":"مكان للعب قرص الجولف"},"leisure/dog_park":{"name":"حديقة كلاب","terms":"حديقة كلاب"},"leisure/escape_game":{"name":"غرفة الهروب","terms":"غرفة الهروب"},"leisure/firepit":{"name":"حفرة لإشعال نار","terms":"حفرة لإشعال نار"},"leisure/fishing":{"name":"منطقة صيد سمك","terms":"منطقة صيد سمك"},"leisure/fitness_centre":{"name":"مركز لياقة بدنية","terms":"مركز اللياقة البدنية، نادي صحي"},"leisure/fitness_centre/yoga":{"name":"استوديو يوجا","terms":"استديو"},"leisure/fitness_station":{"name":"مكان اللياقة البدنية خارج المباني","terms":"مكان اللياقة البدنية خارج المباني"},"leisure/fitness_station/balance_beam":{"name":"تمرين عارضة التوازن","terms":"تمرين عارضة التوازن"},"leisure/fitness_station/box":{"name":"صندوق للتمرين","terms":"صندوق للتمرين"},"leisure/fitness_station/horizontal_bar":{"name":"تمرين العارضة الأفقية","terms":"تمرين العارضة الأفقية"},"leisure/fitness_station/horizontal_ladder":{"name":"تمرين القضبان الأفقية","terms":"تمرين القضبان الأفقية"},"leisure/fitness_station/hyperextension":{"name":"مكان تمرين تمديد الظهر","terms":"مكان تمرين تمديد الظهر"},"leisure/fitness_station/parallel_bars":{"name":"قضبان متوازية","terms":"قضبان متوازية"},"leisure/fitness_station/push-up":{"name":"مكان تمرين الضغط","terms":"مكان تمرين الضغط"},"leisure/fitness_station/rings":{"name":"حلقات التمرين","terms":"حلقات التمرين"},"leisure/fitness_station/sign":{"name":"لافتة ارشادات التمرين","terms":"لافتة تعليمات التمرين"},"leisure/fitness_station/sit-up":{"name":"مكان تمرين عضلات البطن","terms":"مكان تمرين عضلات البطن"},"leisure/fitness_station/stairs":{"name":"تمرين الدرج","terms":"تمرين الدرج"},"leisure/garden":{"name":"حديقة","terms":"حديقة"},"leisure/garden/botanical":{"name":"حديقة نباتية","terms":"حديقة نباتية"},"leisure/garden/community":{"name":"حديقة مجتمعية","terms":"حديقة مجتمعية"},"leisure/golf_course":{"name":"معلب جولف","terms":"معلب جولف، غولف"},"leisure/hackerspace":{"name":"معمل هاكر","terms":"معمل هاكر"},"leisure/horse_riding":{"name":"مركز ركوب الخيل","terms":"مركز ركوب الخيل"},"leisure/ice_rink":{"name":"حلبة تزلج","terms":"جليد,تزلج,حلبة"},"leisure/indoor_play":{"name":"Indoor Play Center"},"leisure/marina":{"name":"مرسى لليخوت والقوارب الصغيرة","terms":"حوض سفن,رصيف سفن,مرسى سفن"},"leisure/miniature_golf":{"name":"ملعب الجولف المصغرة","terms":"ملعب الجولف المصغرة، غولف"},"leisure/nature_reserve":{"name":"محمية طبيعية","terms":"محمية طبيعية"},"leisure/outdoor_seating":{"name":"منطقة جلوس خارجية","terms":"منطقة جلوس خارجية"},"leisure/park":{"name":"منتزه","terms":"منتزه، حديقة"},"leisure/picnic_table":{"name":"طاولة نزهة","terms":"طاولة نزهة"},"leisure/picnic_table/chess":{"name":"طاولة الشطرنج","terms":"طاولة الشطرنج"},"leisure/pitch":{"name":"ملعب رياضي","terms":"ملعب رياضي"},"leisure/pitch/american_football":{"name":"ملعب كرة قدم أمريكية","terms":"ملعب كرة قدم أمريكية"},"leisure/pitch/archery":{"name":"ميدان الرماية (بالأسهم)","terms":"أسهم,نبل,رمي,تصويب,ميدان"},"leisure/pitch/australian_football":{"name":"ملعب كرة قدم استرالية","terms":"ملعب كرة قدم استرالية"},"leisure/pitch/badminton":{"name":"تنس الريشة","terms":"تنس,كرة,ريشة"},"leisure/pitch/baseball":{"name":"ملعب البيسبول","terms":"ملعب البيسبول"},"leisure/pitch/basketball":{"name":"ملعب كرة السلة","terms":"ملعب كرة السلة"},"leisure/pitch/beachvolleyball":{"name":"ملعب كرة الطائرة الشاطئية","terms":"ملعب"},"leisure/pitch/boules":{"name":"ملعب كرة حديدية","terms":"ملعب كرة حديدية"},"leisure/pitch/bowls":{"name":"بولينج جرين","terms":"بولينج جرين"},"leisure/pitch/chess":{"name":"قطعة شطرنج كبيرة","terms":"قطعة شطرنج كبيرة"},"leisure/pitch/cricket":{"name":"ملعب كريكت","terms":"ملعب كريكت"},"leisure/pitch/field_hockey":{"name":"مساحة ملعب الهوكى","terms":"مساحة ملعب الهوكى"},"leisure/pitch/four_square":{"name":"ساحة أربعة مربعات","terms":"ساحة أربعة مربعات"},"leisure/pitch/funnel_ball":{"name":"قمع الكرة المحكمة","terms":"قمع الكرة المحكمة"},"leisure/pitch/futsal":{"name":"كرة الصالات","terms":"كرة الصالات"},"leisure/pitch/gaga":{"name":"غاغا بيت","terms":"غاغا بيت"},"leisure/pitch/horseshoes":{"name":"حفرة حدوة الحصان","terms":"حفرة حدوة الحصان"},"leisure/pitch/netball":{"name":"كرة السلة","terms":"تنس,كرة,سلة,شبكة"},"leisure/pitch/padel":{"name":"ملعب باديل","terms":"ملعب باديل"},"leisure/pitch/paintball":{"name":"ملعب لعبة كرات الطلاء","terms":"ملعب لعبة بينتبول"},"leisure/pitch/pickleball":{"name":"ملعب كرة الطائرة","terms":"ملعب"},"leisure/pitch/rugby_league":{"name":"ملعب اتحاد الرغبي","terms":"ملعب اتحاد الرغبي، رجبي"},"leisure/pitch/rugby_union":{"name":"ملعب دوري الرغبي","terms":"ملعب دوري الرغبي، رجبي"},"leisure/pitch/shooting":{"name":"حقل رماية","terms":"ميدان رماية"},"leisure/pitch/shuffleboard":{"name":"شفلبورد","terms":"شفلبورد"},"leisure/pitch/skateboard":{"name":"حديقة تزلج","terms":"حديقة تزلج، ساحة تزلج"},"leisure/pitch/soccer":{"name":"ملعب كرة القدم","terms":"ملعب كرة القدم"},"leisure/pitch/softball":{"name":"ملعب سوفتبول","terms":"ملعب سوفتبول"},"leisure/pitch/table_soccer":{"name":"طاولة كرة قدم الطاولة","terms":"طاولة كرة قدم الطاولة,طاولة فوسبول,طاولة فيشة"},"leisure/pitch/table_tennis":{"name":"طاولة كرة المضرب","terms":"طاولة كرة المضرب"},"leisure/pitch/tennis":{"name":"ملعب تنس","terms":"معلب كرة التنس"},"leisure/pitch/tetherball":{"name":"ملعب كرة الحبل","terms":"ملعب كرة الحبل"},"leisure/pitch/volleyball":{"name":"ملعب كرة الطائرة","terms":"ملعب"},"leisure/playground":{"name":"ساحة لعب","terms":"ساحة ألعاب للأطفال"},"leisure/playground/indoor":{"name":"ملعب داخلي","terms":"ملعب داخلي"},"leisure/resort":{"name":"منتجع","terms":"منتجع"},"leisure/sauna":{"name":"ساونا","terms":"سونا"},"leisure/slipway":{"name":"مزلقة سفن","terms":"مزلقة سفن"},"leisure/slipway_drivable":{"name":"منزلق سفن وقوارب (قابل للقيادة)","terms":"منزلق سفن وقوارب (قابل للقيادة)"},"leisure/sports_centre":{"name":"مركز/مجمع رياضي","terms":"مركز رياضي; نادي رياضي; مجمع رياضي"},"leisure/sports_centre/climbing":{"name":"مركز رياضة التسلق","terms":"مركز رياضة التسلق"},"leisure/sports_centre/horse_racing":{"name":"مضمار سباق الخيل","terms":"مضمار سباق الخيل"},"leisure/sports_centre/shooting":{"name":"مرفق ميدان الرماية","terms":"مرفق ميدان الرماية"},"leisure/sports_centre/swimming":{"name":"مرفق بركة سباحة","terms":"حمام سباحة; حوض سباحة; حمام; حوض; سباحة; مسبح"},"leisure/sports_hall":{"name":"قاعة رياضية","terms":"قاعة رياضية"},"leisure/stadium":{"name":"استاد رياضي","terms":"مدرج; مدرج للألعاب الرياضية; استاد رياضي; استاد"},"leisure/swimming_area":{"name":"منطقة سباحة طبيعية","terms":"منطقة سباحة طبيعية"},"leisure/swimming_pool":{"name":"بركة سباحة","terms":"حمام سباحة; حوض سباحة; حمام; حوض; سباحة; مسبح"},"leisure/track":{"name":"مضمار السباق (غير رياضة السيارات)","terms":"مضمار السباق (غير رياضة السيارات)"},"leisure/track/athletics/running":{"name":"مسار جري"},"leisure/track/cycling":{"name":"مسار دراجات هوائية","terms":"مسار دراجات هوائية"},"leisure/track/horse_racing":{"name":"مضمار سباق الخيل","terms":"مضمار سباق الخيل"},"leisure/track/running":{"name":"مسار جري","terms":"مسار جري"},"leisure/trampoline_park":{"name":"منتزه النُطيطة (الترامبولين)","terms":"منتزه النُطيطة (الترامبولين)"},"leisure/water_park":{"name":"Water Park","terms":"ملاهي مائية; حديقة مائية; منتزه مائي"},"line":{"name":"خط","terms":"خط"},"man_made":{"name":"عنصر من صنع الانسان"},"man_made/adit":{"name":"مدخل منجم","terms":"مدخل; منجم; كهف;"},"man_made/antenna":{"name":"هوائي (أنتنا)","terms":"هوائي,أنتنا,أنتل,انتل,ايريال,اريال,هوائي بث,جهاز بث,إريال,إيريال"},"man_made/beacon":{"name":"كبير مثبت بشكل رباعي","terms":"منارة"},"man_made/beehive":{"name":"منحلة","terms":"منحلة,خلية نحل"},"man_made/breakwater":{"name":"كاسر الأمواج","terms":"كاسر الأمواج"},"man_made/bridge":{"name":"منطقة جسر","terms":"منطقة جسر,مساحة جسر"},"man_made/bunker_silo":{"name":"خنادق وأماكن تخزين الصوامع","terms":"خنادق وأماكن تخزين الصوامع"},"man_made/cairn":{"name":"رِجم","terms":"رِجْم,رجوم,صخور مركومة"},"man_made/carpet_hanger":{"name":"منشر سجاد","terms":"منشر سجاد,منشر موكيت"},"man_made/chimney":{"name":"مدخنة","terms":"مدخنة"},"man_made/clearcut":{"name":"غابة تم قطع أشجارها","terms":"غابة مقطوعة أشجارها"},"man_made/compass_rose":{"name":"وردة البوصلة","terms":"وردة الريح"},"man_made/courtyard":{"name":"فناء"},"man_made/crane":{"name":"رافعة ثابتة","terms":"رافعة"},"man_made/crane/portal_crane":{"name":"رافعة جسرية"},"man_made/cross":{"name":"Cross"},"man_made/cutline":{"name":"خط مستقيم مقطوع في غابة","terms":"خط مستقيم مقطوع في غابة"},"man_made/dovecote":{"name":"برج حمام","terms":"برج حمام"},"man_made/dyke":{"name":"حاجز/عقم لمنع تدفق المياه","terms":"عقم لمنع تدفق المياه,حاجز لمنع تدفق المياه"},"man_made/embankment":{"name":"سطح مرفوع يسير عليه الطريق (قد تكون مردومة)","terms":"منحدر اصطناعي,منحدر حاد,نزلة من طريق مرفوع,انحدار بسيط,انحدار مستوى الأرض"},"man_made/flagpole":{"name":"سارية العلم","terms":"سارية العلم"},"man_made/fuel_pump":{"name":"مضخة وقود","terms":"مضخة وقود,مضخة غاز,مضخة بترول,مضخة جاز,مضخة سولار"},"man_made/gasometer":{"name":"خزان غاز كبير فوق الأرض","terms":"خزان غاز كبير فوق الأرض,خزان غاز كبير,خزان غاز,مستودع غاز,حاوية غاز كبيرة"},"man_made/goods_conveyor":{"name":"مسار ناقل للمواد على خط إنتاج","terms":"مسار ناقل للمواد على خط إنتاج"},"man_made/groyne":{"name":"حاجز للرواسب البحرية","terms":"حاجز للرواسب البحرية,سد للرواسب البحرية,سد طولي يمنع انتقال الرواسب على الجوانب"},"man_made/lighthouse":{"name":"منارة/فنار","terms":"منارة,فنارة,فنار"},"man_made/manhole":{"name":"غطاء غرفة التفتيش","terms":"غطاء غرفة التفتيش"},"man_made/manhole/drain":{"name":"فتحة تصريف مياه الأمطار","terms":"فتحة تصريف مياه الأمطار"},"man_made/manhole/gas":{"name":"فتحة تفتيش خدمات الغاز","terms":"فتحة تفتيش خدمات الغاز"},"man_made/manhole/power":{"name":"فتحة تفتيش خدمات الطاقة","terms":"فتحة تفتيش خدمات الطاقة"},"man_made/manhole/sewer":{"name":"فتحة تفتيش الصرف الصحي","terms":"فتحة تفتيش الصرف الصحي"},"man_made/manhole/telecom":{"name":"فتحة تفتيش خدمة الاتصالات","terms":"فتحة تفتيش خدمة الاتصالات"},"man_made/manhole/water":{"name":"فتحة تفتيش خدمة المياه","terms":"فتحة تفتيش خدمة المياه"},"man_made/mast":{"name":"عمود/برج عمودي","terms":"عمود,برج"},"man_made/mast/communication":{"name":"برج اتصالات","terms":"برج اتصالات"},"man_made/mast/communication/mobile_phone":{"name":"برج اتصالات هواتف محمولة","terms":"برج اتصالات هواتف محمولة"},"man_made/mast/communication/radio":{"name":"برج بث موجات الراديو","terms":"برج بث موجات الراديو"},"man_made/mast/communication/television":{"name":"برج بث التلفاز","terms":"برج بث التلفاز"},"man_made/mast/lighting":{"name":"صاري الإضاءة","terms":"صاري الإضاءة"},"man_made/mineshaft":{"name":"نفق تعدين/منجم","terms":"برج منجم,نفق تعدين/منجم"},"man_made/monitoring_station":{"name":"محطة رصد","terms":"محطة الرصد"},"man_made/obelisk":{"name":"Obelisk"},"man_made/observatory":{"name":"مرصد","terms":"مرصد"},"man_made/petroleum_well":{"name":"بئر نفط","terms":"بئر نفط، بترول"},"man_made/pier":{"name":"رصيف بحري","terms":"رصيف بحري"},"man_made/pier/floating":{"name":"رصيف عائم","terms":"رصيف عائم"},"man_made/pipeline":{"name":"خط أنابيب","terms":"خط أنابيب"},"man_made/pipeline/underground":{"name":"خط أنابيب تحت الأرض","terms":"خط أنابيب تحت الأرض"},"man_made/planter":{"name":"أصيص","terms":"أصيص,قصرية,محبق,إناء زراعي"},"man_made/pumping_station":{"name":"محطة ضخ","terms":"محطة ضخ"},"man_made/reservoir_covered":{"name":"خزان مياه مغطى","terms":"خزان مياه مغطى"},"man_made/silo":{"name":"صومعة/صوامع الغلال","terms":"صومعة; صومعة غلال"},"man_made/storage_tank":{"name":"خزان سوائل أو غاز (فوق الأرض)","terms":"خزان سوائل أو غاز مضغوط"},"man_made/storage_tank/water":{"name":"خزان ماء","terms":"خزان مياه,خزان ماء"},"man_made/street_cabinet":{"name":"كبينة مرافق وخدمات في الشارع","terms":"كبينة مرافق وخدمات في الشارع,خزنة مرافق وخدمات في الشارع"},"man_made/surveillance":{"name":"مراقبة ورصد","terms":"مراقبة"},"man_made/surveillance/camera":{"name":"كاميرة مراقبة","terms":"كاميرة مراقبة"},"man_made/survey_point":{"name":"نقطة استكشاف","terms":"نقطة مسح"},"man_made/tower":{"name":"برج","terms":"برج"},"man_made/tower/bell_tower":{"name":"Bell Tower"},"man_made/tower/communication":{"name":"برج اتصالات","terms":"برج اتصالات"},"man_made/tower/cooling":{"name":"برج تبريد","terms":"برج تبريد"},"man_made/tower/defensive":{"name":"برج محصن","terms":"برج محصن"},"man_made/tower/diving":{"name":"منصة غطس"},"man_made/tower/minaret":{"name":"منارة مسجد (مئذنة)","terms":"مِئْذَنَةُ,مئذنة,منارة,منارة مسجد,منارة جامعة"},"man_made/tower/observation":{"name":"برج مراقبة","terms":"برج مراقبة"},"man_made/tower/pagoda":{"name":"Pagoda"},"man_made/tunnel":{"name":"مساحة نفق","terms":"مساحة نفق"},"man_made/utility_pole":{"name":"عمود توصيل كيابل طاقة/اتصالات","terms":"عمود توصيل خدمات (كهرباء،اتصالات..الخ)"},"man_made/video_wall":{"name":"شاشة رقمية","terms":"شاشة رقمية"},"man_made/wastewater_plant":{"name":"محطة صرف صحي","terms":"محطة صرف صحي"},"man_made/water_tap":{"name":"صنبور ماء","terms":"صنبور ماء"},"man_made/water_tower":{"name":"برج خزان مياه","terms":"برج خزان مياه"},"man_made/water_well":{"name":"بئر ماء","terms":"بئر ماء"},"man_made/water_works":{"name":"محطة معالجة المياه","terms":"محطة معالجة المياه"},"man_made/watermill":{"name":"طاحونة مائية","terms":"طاحونة مائية"},"man_made/windmill":{"name":"طاحونة هوائية","terms":"طاحونة هوائية"},"man_made/windpump":{"name":"مضخة هوائية","terms":"مضخة هوائية"},"man_made/works":{"name":"مصنع","terms":"مصنع"},"man_made/yes":{"name":"عنصر من صنع الإنسان (نوع غير محدد)"},"marker":{"name":"علامات (لافتات)","terms":"علامات,لافتات"},"marker/utility":{"name":"علامة مرفق أو خدمة","terms":"علامة مرفق أو خدمة"},"marker/utility/power":{"name":"علامة الطاقة/الكهرباء","terms":"علامة الطاقة/الكهرباء"},"military/bunker":{"name":"مخبأ أو مستودع عسكري محصن","terms":"مخبأ أو مستودع عسكري محصن"},"military/checkpoint":{"name":"نقطة تفتيش أو حاجز عسكري","terms":"نقطة تفتيش عسكرية,حاجز عسكري"},"military/nuclear_explosion_site":{"name":"موقع انفجار نووي","terms":"موقع انفجار نووي"},"military/office":{"name":"دائرة/مفوضية عسكرية","terms":"دائرة/مفوضية عسكرية"},"military/trench":{"name":"خندق عسكري","terms":"خندق عسكري"},"natural":{"name":"عنصر طبيعية"},"natural/bare_rock":{"name":"مساحة لصخر أساس (القاعدة الصخرية) - حرة","terms":"صخر,صخور,صخر عاري,صخر الأديم,صخر أساس,القاعدة الصخرية,حرة,حلاة"},"natural/bay":{"name":"خليج","terms":"خليج"},"natural/beach":{"name":"شاطئ","terms":"شاطئ"},"natural/cape":{"name":"رأس (بحري)","terms":"رأس بحري"},"natural/cave_entrance":{"name":"مدخل كهف / غار","terms":"مدخل كهفي; كهف"},"natural/cliff":{"name":"جُرف","terms":"جرف صخري"},"natural/coastline":{"name":"ساحل","terms":"ساحل"},"natural/fell":{"name":"هضبة","terms":"هضبة، تلة، مرتفع"},"natural/geyser":{"name":"نبع المياه الفوار والحار","terms":"فوارة حارة"},"natural/glacier":{"name":"نهر جليدي","terms":"نهر جليدي"},"natural/grassland":{"name":"أراض عشبية/مرعى","terms":"مرعى,مرج,أرض معشوشبة,أراض عشبية"},"natural/heath":{"name":"براح/قفار ( أراضي الأشجار القمئية)","terms":"براح,قفار ( أراضي الأشجار القمئية)"},"natural/hot_spring":{"name":"العين الحمئة / الينبوع الساخن","terms":"العين الحمئة,الينبوع الساخن,ينبوع,عين,عيون,نبع,الحمئة"},"natural/mud":{"name":"وحل","terms":"وحل,طين"},"natural/peak":{"name":"قمة جبلية","terms":"قمة,ذروة,قمة جبل"},"natural/reef":{"name":"شعاب مرجانية","terms":"شعاب"},"natural/ridge":{"name":"سلسلة من القمم الجبلية","terms":"سلسلة من التلال الجبلية,سلاسل القمم الجبلية المتصلة"},"natural/rock":{"name":"صخرة كبيرة متصلة بالأرض / صخرة بارزة عن الأرض","terms":"صخرة كبيرة متصلة بالأرض,صخرة بارزة عن الأرض"},"natural/saddle":{"name":"السرج الجبلي (ممر جبلي)","terms":"ممر جبلي,سرج الجبلي"},"natural/sand":{"name":"رمال/نفود","terms":"رمال,نفود"},"natural/scree":{"name":"حصى / ركام حجارة","terms":"ركام حجارة، تلة، مجموعة صخور، تلة حصاة"},"natural/scrub":{"name":"فيضة / روضة","terms":"فيضة,روضة,أراضي الأشجار القمئية"},"natural/shingle":{"name":"حصى الشواطئ","terms":"حصى الشواطئ,حصى مياه الشواطئ,حصى السواحل"},"natural/shrub":{"name":"شجيرة","terms":"شجيرة"},"natural/sinkhole":{"name":"دِحل/خفس/هبوط أرضي"},"natural/spring":{"name":"عين / نبع / ينبوع","terms":"نبع,منبع,عين,ينبوع,عيون"},"natural/stone":{"name":"صخرة كبيرة غير متصلة بالأرض","terms":"صخرة كبيرة غير متصلة بالأرض"},"natural/strait":{"name":"مضيق"},"natural/tree":{"name":"شجرة","terms":"شجرة"},"natural/tree_row":{"name":"صف أشجار","terms":"صف أشجار"},"natural/valley":{"name":"وادي","terms":"وادي"},"natural/volcano":{"name":"بركان","terms":"بركان"},"natural/water":{"name":"مياه","terms":"ماء"},"natural/water/basin":{"name":"أرض حوضية طبيعية تحتوي الماء","terms":"أرض حوضية تحتوي الماء,قلته,مَجمع مياه,أرض تجمع المياه,أرض تحتوي المياه,وقر,جلته,وقبه"},"natural/water/canal":{"name":"مساحة قناة مائية","terms":"مساحة قناة مائية"},"natural/water/lake":{"name":"بحيرة","terms":"بحيرة"},"natural/water/moat":{"name":"خندق مائي","terms":"خندق مائي,خندق مملوء بالماء"},"natural/water/pond":{"name":"بركة ماء","terms":"بركة"},"natural/water/reservoir":{"name":"خزان","terms":"بحيرة اصطناعية,خزان مياه"},"natural/water/river":{"name":"مساحة النهر / الوادي / المجرى المائي الواسع","terms":"مساحة النهر,مساحة الوادي,مساحة المجرى المائي الواسع"},"natural/water/stream":{"name":"مساحة المجرى المائي","terms":"مساحة المجرى المائي"},"natural/water/wastewater":{"name":"حوض تخزين الصرف الصحي","terms":"حوض تخزين الصرف الصحي"},"natural/wetland":{"name":"أرض رطبة","terms":"أرض رطبة,مستنقع,هور"},"natural/wetland/bog":{"name":"رخاخ","terms":"رخاخ"},"natural/wetland/fen":{"name":"مستنقع أعشاب مغذى من المياه الجوفية","terms":"مستنقع أعشاب مغذى من المياه الجوفية"},"natural/wetland/mangrove":{"name":"غابات المانغروف","terms":"غابات المانغروف"},"natural/wetland/marsh":{"name":"هور/ سبخة","terms":"هور,سبخة"},"natural/wetland/reedbed":{"name":"مقصبة","terms":"مقصبة"},"natural/wetland/saltmarsh":{"name":"مستنقع الملح الساحلي","terms":"مستنقع الملح الساحلي"},"natural/wetland/string_bog":{"name":"سلسلة رخاخ","terms":"سلسلة رخاخ"},"natural/wetland/swamp":{"name":"مستنقع","terms":"مستنقع"},"natural/wetland/tidalflat":{"name":"المد و الجزر منبسط","terms":"المد و الجزر منبسط"},"natural/wetland/wet_meadow":{"name":"مرعى/مرج رطب طوال العام","terms":"مرعى/مرج رطب"},"natural/wood":{"name":"خشب طبيعي","terms":"خشب طبيعي"},"network/type/node_network-DE-NL-BE-LU":{"name":"عقدة الشبكة الترفيهية","terms":"عقدة الشبكة الترفيهية"},"noexit/yes":{"name":"لا يوجد مخرج","terms":"لا يوجد مخرج"},"office":{"name":"مكتب","terms":"مكتب,دائرة,مفوضية,إدارة"},"office/accountant":{"name":"مكتب محاسب","terms":"المحاسب القانوني,المدقق,الحسابات,مراجع,محاسب قانوني"},"office/administrative":{"name":"مكتب إداري"},"office/adoption_agency":{"name":"Adoption Agency"},"office/advertising_agency":{"name":"وكالة إعلانية","terms":"وكالة الإشهار، وكالة إعلانية"},"office/architect":{"name":"مكتب مهندس معماري","terms":"بناء,مباني,مدينة,تعمير,مهندس معماري,هندسة,هندسة معمارية,هندسي,مكتب هندسي"},"office/association":{"name":"مكتب منظمة غير ربحية","terms":"جمعية,منظمة غير ربحية"},"office/bail_bond_agent-US-PH":{"name":"مكتب وكيل سند الكفالة","terms":"مكتب وكيل سند الكفالة"},"office/charity":{"name":"مكتب منظمة خيرية","terms":"مكتب منظمة خيرية,جمعية خيرية,صدقات,احسان,مبرة,مبرة خيرية,جمعية بر,زكاة,زكوات,صدقة"},"office/company":{"name":"مكتب شركة / مؤسسة","terms":"مكتب شركة,مكتب مؤسسة,مؤسسة,شركة"},"office/consulting":{"name":"مكتب شركة استشارية","terms":"مكتب شركة استشارية"},"office/coworking":{"name":"مساحة عمل مشتركة","terms":"مساحة عمل مشتركة"},"office/diplomatic":{"name":"مكتب دبلوماسي","terms":"مكتب دبلوماسي"},"office/diplomatic/consulate":{"name":"قنصلية","terms":"قنصلية"},"office/diplomatic/embassy":{"name":"سفارة","terms":"سفارة"},"office/diplomatic/liaison":{"name":"مكتب اتصال دبلوماسي","terms":"مكتب اتصال دبلوماسي"},"office/educational_institution":{"name":"مكتب مؤسسة تعليمية","terms":"مؤسسة تعليمية، جامعة، كلية، مدرسة"},"office/employment_agency":{"name":"مكتب وكالة توظيف","terms":"إدارة شؤون الموظفين,مكتب العمل"},"office/energy_supplier":{"name":"مكتب شركة مرافق الكهرباء","terms":"شركة مرافق الكهرباء"},"office/estate_agent":{"name":"مكتب عقاري","terms":"الطابو، دائرة السجل العقاري، إدارة تسجيل الممتلكات"},"office/financial":{"name":"مكتب مالي","terms":"المكتب المالي والضريبي"},"office/financial_advisor":{"name":"المستشار المالي","terms":"المستشار المالي"},"office/forestry":{"name":"مكتب إدارة الغابات","terms":"إدارة الغابات"},"office/foundation":{"name":"مكتب مؤسسة","terms":"مؤسسة"},"office/government":{"name":"مكتب/دائرة حكومية","terms":"رئاسة الوزراء,إدارة الدولة,المكتب العام,دائرة حكومية,إدارة حكومية,قسم حكومي,مؤسسة حكومية,وكالة حكومية"},"office/government/prosecutor":{"name":"مكتب النيابة العامة","terms":"مكتب النائب العام"},"office/government/register_office":{"name":"مكتب السجل المدني","terms":"مكتب السجل المدني"},"office/government/tax":{"name":"مكتب الضرائب","terms":"مكتب الضرائب"},"office/guide":{"name":"مكتب الدليل السياحي","terms":"مكتب الدليل السياحي; مكتب المرشد السياحي"},"office/insurance":{"name":"مكتب تأمينات","terms":"مديرية المعاشات، دائرة التأمينات الاجتماعية، إدارة التأمين"},"office/it":{"name":"مكتب متخصصي تكنولوجيا المعلومات","terms":"متخصص في تكنولوجيا المعلومات; معلوماتية"},"office/lawyer":{"name":"مكتب قانوني","terms":"مكتب محاماة، اﻹدارة القانونية، المحكمة،"},"office/lawyer/notary":{"name":"مكتب كتابة عدل / موثق"},"office/moving_company":{"name":"مكتب شركة نقل","terms":"مكتب شركة نقل"},"office/newspaper":{"name":"صحيفة","terms":"جريدة، صفحة أخبار، يومية"},"office/ngo":{"name":"مكتب المنظمات العامة الغير حكومية","terms":"مكتب الجمعيات الخيرية، هيئات العمل اﻹغائي،"},"office/notary":{"name":"مكتب كتابة عدل / موثق","terms":"كاتب عدل، موثق"},"office/physician":{"name":"طبيب"},"office/political_party":{"name":"مكتب الحزب السياسي","terms":"مكتب الحزب السياسي"},"office/private_investigator":{"name":"مكتب محقق خاص","terms":"مكتب محقق"},"office/quango":{"name":"مكتب منظمة غير حكومية شبه مستقلة","terms":"مكتب منظمة غير حكومية شبه مستقلة"},"office/religion":{"name":"مكتب ديني","terms":"مكتب ديني"},"office/research":{"name":"مكتب بحوث","terms":"مكتب البحوث، مكتب اﻷبحاث، هيئة اﻷبحاث، مكتب بحث علمي، مركز للبحث العلمي"},"office/security":{"name":"مكتب مؤسسات الحراسات الأمنية","terms":"مكتب مؤسسات الحراسات الأمنية"},"office/surveyor":{"name":"مكتب مساح أرضي","terms":"مساح"},"office/tax_advisor":{"name":"مستشار الضرائب","terms":"مستشار الضرائب"},"office/telecommunication":{"name":"مكتب شركات اتصالات","terms":"مكتب الاتصالات، إدارة الاتصال، هيئة الاتصالات العامة"},"office/therapist":{"name":"المعالج","terms":"معالج، معالج فيزيائي، طبيب، مُمرض"},"office/travel_agent":{"name":"وكالة السفر"},"office/water_utility":{"name":"مكتب شركة مياه","terms":"شركة المياه"},"office/yes":{"name":"مكتب (نوع غير محدد)"},"pipeline/substation":{"name":"محطة فرعية لخطوط الأنابيب"},"pipeline/valve":{"name":"صمام خط أنابيب","terms":"صمام خط أنابيب"},"piste/downhill":{"name":"سباق التزلج على المنحدرات","terms":"سباق التزلج على المنحدرات"},"piste/downhill/halfpipe":{"name":"نصف أنبوب رياضة الثلج","terms":"نصف أنبوب رياضة الثلج"},"piste/hike":{"name":"ممر المشي بالأحذية الثلجية","terms":"ممر المشي بالأحذية الثلجية"},"piste/ice_skate":{"name":"مسار التزلج على الجليد","terms":"مسار التزلج على الجليد"},"piste/nordic":{"name":"مسار تزلج عبر الريف","terms":"مسار تزلج عبر الريف"},"piste/skitour":{"name":"مسار للتزلج على الجليد","terms":"مسار للتزلج على الجليد"},"piste/sled":{"name":"تشغيل الزلاجات","terms":"تشغيل الزلاجات"},"piste/sleigh":{"name":"ممر الزلاجة","terms":"ممر الزلاجة"},"place":{"name":"مكان / موضع"},"place/city":{"name":"المدينة","terms":"مدينة كبيرة,مدينة,مدينة كبرى"},"place/city_block":{"name":"مربع سكني","terms":"بلك,بلوك,مربع,مربع سكني,حاره"},"place/farm":{"name":"مزرعة"},"place/hamlet":{"name":"قرية صغيرة / هجرة","terms":"قرية صغيرة,هجرة"},"place/island":{"name":"جزيرة","terms":"جزيرة"},"place/islet":{"name":"جزيرة صغيرة","terms":"جزيرة صغيرة"},"place/isolated_dwelling":{"name":"مساكن متفرقة ومنعزلة","terms":"مساكن متفرقة"},"place/locality":{"name":"موضع لمكان غير مأهول","terms":"موقع,موضع"},"place/neighbourhood":{"name":"حي سكني","terms":"حي سكني"},"place/plot":{"name":"قطعة الأرض","terms":"قطعة الأرض"},"place/quarter":{"name":"منطقة فرعية / ربع","terms":"منطقة فرعية / ربع"},"place/square":{"name":"مربع","terms":"ساحة,باحة,ممشى"},"place/suburb":{"name":"ضاحية","terms":"ضاحية"},"place/town":{"name":"مدينة","terms":"مدينة صغيرة,مدينة,مدينة صغرى,بلده"},"place/village":{"name":"قرية","terms":"قرية"},"playground":{"name":"أجهزة وتركيبات الملعب"},"playground/activitypanel":{"name":"تشغيل لوحة النشاط","terms":"تشغيل لوحة النشاط"},"playground/aerialrotator":{"name":"معلقة سبينر","terms":"معلقة سبينر"},"playground/balancebeam":{"name":"لعبة التوازن على الجذع","terms":"لعبة التوازن على الجذع"},"playground/basketrotator":{"name":"سلة دوارة","terms":"سلة دوارة"},"playground/basketswing":{"name":"السلة المتأرجحة","terms":"السلة المتأرجحة"},"playground/bridge":{"name":"لعبة الجسر","terms":"لعبة الجسر"},"playground/climbingframe":{"name":"لعب تسلق الإطار","terms":"لعب تسلق الإطار"},"playground/climbingwall":{"name":"لعب جدار التسلق","terms":"لعب جدار التسلق"},"playground/cushion":{"name":"وسادة نطاطه","terms":"وسادة نطاطه"},"playground/funnel_ball":{"name":"لعبة قِمع الكرة","terms":"لعبة قِمع الكرة"},"playground/hopscotch":{"name":"الحجلة","terms":"الحجلة"},"playground/horizontal_bar":{"name":"لعبة العارضة الأفقية","terms":"لعبة العارضة الأفقية"},"playground/map":{"name":"خريطة ملعب مرسومة","terms":"خريطة ملعب مرسومة"},"playground/playhouse":{"name":"بيت اللعب","terms":"بيت اللعب"},"playground/roundabout":{"name":"لعبة الصحن الدوار","terms":"لعبة الصحن الدوار"},"playground/sandpit":{"name":"مكان اللعب بالرمل","terms":"مكان اللعب بالرمل"},"playground/seesaw":{"name":"أرجوحة","terms":"مرجيحة,أرجوحة"},"playground/sledding":{"name":"لعبة الانزلاق من التل","terms":"لعبة الانزلاق من التل"},"playground/slide":{"name":"زحليقة","terms":"زحليقة"},"playground/splash_pad":{"name":"لعبة بركة الرذاذ","terms":"لعبة بركة الرذاذ"},"playground/springy":{"name":"نطاطه على سبرينق","terms":"نطاطه على سبرينق"},"playground/structure":{"name":"هيكل لعبة كبيرة","terms":"هيكل لعبة كبيرة"},"playground/swing":{"name":"مرجيحة","terms":"مرجيحة,أرجوحة,مراجيح"},"playground/teenshelter":{"name":"مأوى المراهقين","terms":"مأوى المراهقين"},"playground/tetherball":{"name":"ملعب كرة الحبل","terms":"ملعب كرة الحبل"},"playground/trampoline":{"name":"النُطيطة (الترامبولين)","terms":"النُطيطة (الترامبولين)"},"playground/tunnel_tube":{"name":"لعبة النفق","terms":"لعبة النفق"},"playground/water":{"name":"لعبة تشغيل المضخة","terms":"لعبة تشغيل المضخة"},"playground/zipwire":{"name":"الانزلاق على حبل","terms":"الانزلاق على حبل"},"point":{"name":"نقطة","terms":"نقطة"},"police/checkpoint":{"name":"نقطة تفتيش أو حاجز عسكري","terms":"نقطة تفتيش,حاجز عسكري"},"polling_station":{"name":"Temporary Polling Place"},"power":{"name":"عنصر طاقة/كهرباء"},"power/cable":{"name":"كابل كهرباء"},"power/cable/underground":{"name":"كابل كهرباء تحت الأرض","terms":"كابل كهرباء تحت الأرض"},"power/generator":{"name":"مولد كهرباء","terms":"مولد الطاقة,طاقة,كهرباء,مولد كهرباء"},"power/generator/method/photovoltaic":{"name":"لوحة شمسية","terms":"لوحات شمسية,طاقة شمسية,طاقة,شمس"},"power/generator/method/photovoltaic/building/roof":{"name":"مظلة الألواح الشمسية","terms":"مظلة الألواح الشمسية"},"power/generator/method/photovoltaic/location/roof":{"name":"لوحة شمسية على السطح","terms":"لوحة شمسية على السطح"},"power/generator/source/hydro":{"name":"توربينات مائية","terms":"توربينات مائية"},"power/generator/source/nuclear":{"name":"مفاعل نووي","terms":"نووي,مفاعل,طاقة,كهرباء"},"power/generator/source/wind":{"name":"توربينة رياح","terms":"رياح,توليد كهرباء,كهرباء,توربينات,توربينة,توربين,طاقة"},"power/line":{"name":"خط كهرباء","terms":"خط كهرباء,خط طاقة"},"power/minor_line":{"name":"خط كهربائي ثانوي","terms":"خط كهربائي صغير،,خط طاقة صغير"},"power/plant":{"name":"محطة توليد كهرباء","terms":"محطة توليد الكهرباء,الطاقة الكهربائية"},"power/plant/source/coal":{"name":"محطة لتوليد الكهرباء تعمل بالفحم","terms":"محطة لتوليد الكهرباء تعمل بالفحم"},"power/plant/source/gas":{"name":"محطة لتوليد الكهرباء تعمل بالغاز","terms":"محطة لتوليد الكهرباء تعمل بالغاز"},"power/plant/source/hydro":{"name":"محطة كهرباء كهرومائية","terms":"محطة كهرباء كهرومائية"},"power/plant/source/method/photovoltaic":{"name":"مزرعة شمسية","terms":"محطة الطاقة الشمسية ، محطة توليد الطاقة الشمسية ، الطاقات المتجددة","aliases":"محطة للطاقة الشمسية"},"power/plant/source/nuclear":{"name":"محطة كهرباء نووية","terms":"محطة كهرباء نووية"},"power/plant/source/oil":{"name":"محطة كهرباء تعمل بالنفط","terms":"محطة كهرباء تعمل بالنفط"},"power/plant/source/solar":{"name":"محطة للطاقة الشمسية","terms":"محطة توليد الطاقة الشمسية ، الطاقات المتجددة"},"power/plant/source/waste":{"name":"مولد طاقة يعمل عن طريق حرق النفايات","terms":"مولد طاقة يعمل عن طريق حرق النفايات"},"power/plant/source/wind":{"name":"مزرعة طاقة عبر الرياح","terms":"مزرعة طاقة عبر الرياح"},"power/pole":{"name":"عمود كهرباء","terms":"عمود كهرباء,برج كهرباء.أعمدة طاقة,عمود طاقة,عمود نقل الطاقة,عمود نقل الكهرباء"},"power/substation":{"name":"محطة فرعية","terms":"محطة فرعية"},"power/switch":{"name":"معدة وصل وفصل كهربائية","terms":"معدة وصل وفصل,مفتاح,فصل,وصل"},"power/tower":{"name":"برج كهرباء ضغط عالي","terms":"برج عالي الجهد,برج تيار عالي الجهد,تيار عالي الجهد,برج كهرباء,أبراج كهرباء,برج طاقة,برج توصيل طاقة"},"power/transformer":{"name":"محول كهربائي","terms":"محول الكهربائي"},"public_transport/platform":{"name":"منصة انتظار وسائل النقل العام","terms":"منصة انتظار وسائل النقل العام,منصةانتظار وسائل النقل العام,مكان لركوب الباص,رصيف انتظار النقل العام"},"public_transport/platform/aerialway":{"name":"منصة انتظار وسائل النقل بالكابلات","terms":"منصة انتظار وسائل النقل بالكابلات"},"public_transport/platform/aerialway_point":{"name":"منصة توقف لوسائل النقل بالكابلات"},"public_transport/platform/bus":{"name":"منصة انتظار ركوب الحافلات","terms":"منصة انتظار ركوب الحافلات"},"public_transport/platform/bus_point":{"name":"محطة توقف حافلات","terms":"محطة توقف حافلات"},"public_transport/platform/bus_tram_point":{"name":"محطة توقف الترام و الحافلات","terms":"محطة توقف الترام و الحافلات"},"public_transport/platform/ferry":{"name":"منصة انتظار ركوب العبارات البحرية","terms":"منصة انتظار ركوب العبارات البحرية"},"public_transport/platform/ferry_point":{"name":"منصة توقف عبارات بحرية"},"public_transport/platform/light_rail":{"name":"منصة انتظار ركوب السكة الحديدية الخفيفة","terms":"منصة انتظار ركوب السكة الحديدية الخفيفة"},"public_transport/platform/light_rail_point":{"name":"منصة توقف السكة الحديدية الخفيفة"},"public_transport/platform/monorail":{"name":"منصة انتظار ركوب القطار الكهربائي","terms":"منصة انتظار ركوب القطار الكهربائي"},"public_transport/platform/monorail_point":{"name":"منصة توقف القطار الكهربائي"},"public_transport/platform/subway":{"name":"منصة انتظار و ركوب مترو الانفاق","terms":"منصة انتظار و ركوب مترو الانفاق"},"public_transport/platform/subway_point":{"name":"منصة توقف مترو الانفاق"},"public_transport/platform/train":{"name":"منصة انتظار وركوب القطار","terms":"منصة انتظار وركوب القطار"},"public_transport/platform/train_point":{"name":"منصة توقف القطار"},"public_transport/platform/tram":{"name":"منصة انتظار وركوب الترام","terms":"منصة انتظار وركوب الترام"},"public_transport/platform/tram_point":{"name":"منصة توقف الترام","terms":"منصة توقف الترام"},"public_transport/platform/trolleybus":{"name":"منصة انتظار وركوب حافلة ترولي","terms":"منصة انتظار وركوب حافلة ترولي"},"public_transport/platform/trolleybus_point":{"name":"محطة توقف حافلة كهربائية","terms":"محطة توقف حافلة كهربائية"},"public_transport/platform_point":{"name":"منصة ركوب وتوقف وسائل النقل العام","terms":"منصة ركوب وتوقف وسائل النقل العام"},"public_transport/station":{"name":"محطة نقل عام","terms":"محطة نقل عام"},"public_transport/station_aerialway":{"name":"محطة النقل بالكابلات","terms":"محطة النقل بالكابلات; محطة تلفريك"},"public_transport/station_bus":{"name":"محطة الحافلات / صالة","terms":"محطة الحافلات"},"public_transport/station_ferry":{"name":"محطة / صالة العبارات","terms":"محطة / صالة العبارات"},"public_transport/station_light_rail":{"name":"محطة سكة حديد خفيفة","terms":"محطة سكة حديد خفيفة"},"public_transport/station_monorail":{"name":"محطة سكة حديد أحادية","terms":"محطة سكة حديد أحادية"},"public_transport/station_subway":{"name":"محطة مترو","terms":"محطة مترو"},"public_transport/station_train":{"name":"محطة قطار","terms":"محطة القطار"},"public_transport/station_train_halt":{"name":"محطة قطار صغيرة (يتوقف عندها القطار عند الطلب)","terms":"محطة القطار (توقف/ طلب)"},"public_transport/station_tram":{"name":"محطة ترام","terms":"محطة ترام"},"public_transport/station_trolleybus":{"name":"صالة محطة حافلات كهربائية","terms":"صالة محطة حافلات كهربائية"},"public_transport/stop_area":{"name":"منطقة توقف وسائل نقل عام","terms":"منطقة توقف وسائل نقل عام"},"public_transport/stop_position":{"name":"موقع توقف وسائل نقل عام","terms":"موقع توقف وسائل نقل عام"},"public_transport/stop_position_aerialway":{"name":"موقع توقف وسائل نقل بالكابلات","terms":"موقع توقف وسائل نقل بالكابلات"},"public_transport/stop_position_bus":{"name":"موقع وقوف حافلات","terms":"موقع وقوف حافلات"},"public_transport/stop_position_ferry":{"name":"موقع وقوف عبّارات","terms":"موقع وقوف عبّارات"},"public_transport/stop_position_light_rail":{"name":"موقع وقوف سكك حديد خفيفة","terms":"موقع وقوف سكك حديد خفيفة"},"public_transport/stop_position_monorail":{"name":"موقع وقوف سكك حديد أحادية","terms":"موقع وقوف سكك حديد أحادية"},"public_transport/stop_position_subway":{"name":"موقع وقوف مترو الأنفاق","terms":"موقع وقوف مترو الأنفاق"},"public_transport/stop_position_train":{"name":"مكان موقف القطار","terms":"مكان موقف القطار"},"public_transport/stop_position_tram":{"name":"موقع وقوف الترام","terms":"موقع وقوف الترام"},"public_transport/stop_position_trolleybus":{"name":"موقع وقوف حافلات كهربائية","terms":"موقع وقوف حافلات كهربائية"},"railway":{"name":"عنصر سكك الحديد"},"railway/abandoned":{"name":"سكة حديدية مهجورة","terms":"سكة حديد مهجورة"},"railway/buffer_stop":{"name":"مصد قطارات","terms":"مصد,قطار"},"railway/construction":{"name":"سكة حديدية تحت الإنشاء","terms":"سكة حديدية تحت الإنشاء"},"railway/crossing":{"name":"معبر مشاه على الخطوط الحديدية","terms":"معبر مشاه على الخطوط الحديدية"},"railway/derail":{"name":"معدة حماية تخرج القطار عن المسار","terms":"معدة حماية تخرج القطار عن المسار"},"railway/disused":{"name":"سكة حديدة مهجورة","terms":"سكة حديد غير مستعملة"},"railway/funicular":{"name":"مسار قطار جبلي مائل","terms":"مسار قطار جبلي مائل"},"railway/halt":{"name":"محطة قطار صغيرة (يتوقف عندها القطار عند الطلب)"},"railway/level_crossing":{"name":"معبر سيارات على السكة الحديدية","terms":"تقاطع سكة حديدية,تقاطع طريق سيارات مع سكة حديدية,مزلقان"},"railway/light_rail":{"name":"مسار سكة حديد خفيف","terms":"مسار سكة حديد خفيف"},"railway/milestone":{"name":"لوحة/علامة مسافات السكة الحديدية","terms":"لوحة/علامة مسافات السكة الحديدية"},"railway/miniature":{"name":"مسار القطار المصغر","terms":"مسار القطار المصغر"},"railway/monorail":{"name":"مسار سكة حديدية أحادية","terms":"مسار سكة حديدية أحادية"},"railway/monorail/hanging":{"name":"مسار سكة حديدية أحادية معلقة","terms":"مسار سكة حديدية معلقة و أحادية"},"railway/narrow_gauge":{"name":"مسار قطار ضيق","terms":"مسار قطار ضيق"},"railway/platform":{"name":"منصة انتظار وركوب القطار"},"railway/preserved":{"name":"مسار سكة حديد قديمة/تراثية","terms":"مسار سكة حديد قديمة/تراثية"},"railway/rail":{"name":"مسار القطار","terms":"مسار القطار"},"railway/rail/highspeed":{"name":"مسار قطار عالي السرعة","terms":"مسار قطار عالي السرعة"},"railway/railway_crossing":{"name":"تقاطع مسار قطارات مع مسار قطارات آخر","terms":"تقاطع مسار قطارات مع مسار قطارات آخر"},"railway/signal":{"name":"إشارة مرور السكك الحديدية","terms":"إشارة مرور السكك الحديدية"},"railway/station":{"name":"محطة قطار"},"railway/subway":{"name":"مسار مترو الانفاق","terms":"مسار مترو الانفاق"},"railway/subway_entrance":{"name":"مدخل مترو الأنفاق","terms":"مدخل مترو الأنفاق"},"railway/switch":{"name":"محول مسار القطار على السكة الحديدة","terms":"محول مسار القطار على السكة الحديدة"},"railway/train_wash":{"name":"مغسلة قطارات","terms":"مغسلة قطارات"},"railway/tram":{"name":"مسار الترام","terms":"مسار الترام"},"railway/tram_crossing":{"name":"معبر مشاة على مسار الترام","terms":"معبر مشاة على مسار الترام"},"railway/tram_level_crossing":{"name":"تقاطع بين مسار ترام ومسار سيارات","terms":"تقاطع بين مسار ترام ومسار سيارات"},"railway/tram_stop":{"name":"مكان توقف الترام"},"railway/yard":{"name":"ساحة السكة الحديدية","terms":"ساحة السكة الحديدية"},"relation":{"name":"علاقة","terms":"علاقة"},"route/ferry":{"name":"مسار عبّارة","terms":"مسار سفن,مسار عبارات"},"seamark":{"name":"علامة بحرية"},"seamark/beacon_isolated_danger":{"name":"منارة الخطر","terms":"منارة الخطر"},"seamark/beacon_lateral":{"name":"منارة القناة","terms":"منارة القناة"},"seamark/buoy_lateral":{"name":"عوامة تشير للقناة","terms":"عوامة تشير للقناة"},"seamark/buoy_lateral/green":{"name":"عوامة خضراء","terms":"العوامة الخضراء"},"seamark/buoy_lateral/red":{"name":"عوامة حمراء","terms":"عوامة حمراء"},"seamark/mooring":{"name":"مربط سفن ومراكب بحرية","terms":"مربط سفن ومركبات بحرية"},"shop":{"name":"متجر","terms":"محل. متجر,دكان"},"shop/agrarian":{"name":"متجر المنتجات والمستلزمات الزراعية","terms":"متجر المنتجات والمستلزمات الزراعية"},"shop/alcohol":{"name":"متجر خمور","terms":"محل خمور,خمور,متجر خمور"},"shop/anime":{"name":"متجر أنيمي / مانغا","terms":"متجر أنيمي / مانغا"},"shop/antiques":{"name":"متجر تحف","terms":"متجر تحف ، متجر أشياء قديمة ، تذكارات"},"shop/appliance":{"name":"متجر الأجهزة المنزلية","terms":"متجر الأجهزة المنزلية,متجر ثلاجات,ثلاجات,غسالات,مكيفات"},"shop/art":{"name":"متجر الفنون","terms":"متجر فنون"},"shop/baby_goods":{"name":"متجر مستلزمات الأطفال","terms":"متجر مستلزمات الأطفال,متجر سلع الأطفال"},"shop/bag":{"name":"متجر حقائب وأمتعة","terms":"شنطة,حقيبة"},"shop/bakery":{"name":"مخبز","terms":"مخبز"},"shop/bathroom_furnishing":{"name":"متجر أثاث واكسسوارات الحمامات","terms":"متجر أثاث واكسسوارات الحمامات"},"shop/beauty":{"name":"محل تجميل","terms":"محل تجميل"},"shop/beauty/nails":{"name":"صالون أظافر","terms":"صالون أظافر"},"shop/beauty/tanning":{"name":"صالون تسمير","terms":"صالون تسمير"},"shop/bed":{"name":"متجر مراتب ولوازم الفراش","terms":"متجر مراتب ولوازم الفراش"},"shop/beverages":{"name":"محل بيع مشروبات ومرطبات","terms":"محل مشروبات"},"shop/bicycle":{"name":"متجر دراجات هوائية","terms":"محل دراجات هوائية; متجر دراجات; محل دراجات; بائع دراجات"},"shop/boat":{"name":"متجر بيع قوارب ومستلزماتها","terms":"متجر بيع قوارب ومستلزماتها"},"shop/bookmaker":{"name":"مكتب رهانات"},"shop/books":{"name":"بائع كتب","terms":"متجر كتب ، مكتبة ، محل بيع كتب","aliases":"متجر كتب\nمكتبة\nمحل بيع كتب"},"shop/boutique":{"name":"بوتيك"},"shop/brewing_supplies":{"name":"Brewing Supply Store"},"shop/butcher":{"name":"جزار","terms":"جزار,محل بيع لحوم. محل جزارة,لحوم"},"shop/camera":{"name":"Camera Equipment Store"},"shop/candles":{"name":"متجر الشموع","terms":"متجر الشموع"},"shop/cannabis":{"name":"Cannabis Shop"},"shop/car":{"name":"وكالة/معرض سيارات","terms":"وكالة سيارات"},"shop/car/second_hand":{"name":"وكالة/معرض بيع السيارات المستعملة","terms":"وكالة/معرض بيع السيارات المستعملة"},"shop/car_parts":{"name":"محل قطع غيار السيارة","terms":"محل بيع قطع السيارات"},"shop/car_repair":{"name":"ورشة إصلاح سيارات","terms":"محل تصليح سيارات; ورشة تصليح; ورشة; ميكانيكي"},"shop/caravan":{"name":"متجر بيع كرفانات ومنازل متنقلة","terms":"متجر بيع كرفانات ومنازل متنقلة"},"shop/carpet":{"name":"متجر سجاد ومفروشات","terms":"متجر سجاد; زرابي,سجاد,مفروشات"},"shop/catalogue":{"name":"Catalog Shop"},"shop/charity":{"name":"متجر خيري","terms":"متجر خيري,متجر جمعية خيرية,متجر بيع البضائع المستعملة للجمعية الخيرية"},"shop/cheese":{"name":"متجر أجبان","terms":"متجر أجبان"},"shop/chemist":{"name":"متجر أدوات النظافة الشخصية والتجميل","terms":"متجر أدوات النظافة الشخصية والتجميل"},"shop/chocolate":{"name":"متجر شوكولاتة","terms":"متجر شوكولاتة"},"shop/clothes":{"name":"محل ملابس","terms":"محل بيع ملابس"},"shop/clothes/second_hand":{"name":"متجر لبيع الملابس المستعملة","terms":"متجر لبيع الملابس المستعملة"},"shop/clothes/suits":{"name":"متجر بيع بذلات","terms":"متجر بيع بذلات,متجر بيع أطقم"},"shop/clothes/underwear":{"name":"متجر بيع الملابس الداخلية","terms":"متجر بيع الملابس الداخلية"},"shop/clothes/wedding":{"name":"محل بيع وتفصيل ملابس الزفاف","terms":"محل بيع وتفصيل ملابس الزفاف"},"shop/clothes/workwear":{"name":"متجر بيع ملابس مخصصة للعمل","terms":"متجر بيع ملابس مخصصة للعمل,متجر بيع ملابس أعمال"},"shop/coffee":{"name":"متجر القهوة","terms":"متجر القهوة"},"shop/collector":{"name":"متجر المقتنيات والتجميعات","terms":"متجر المقتنيات والتجميعات"},"shop/computer":{"name":"محل حاسب آلي","terms":"محل حاسوب,محل حاسب آلي,محل حاسب,محل كمبيوتر,متجر للكمبيوتر,كمبيوتر"},"shop/confectionery":{"name":"متجر حلويات","terms":"حلويات,حلوى,سكاكر"},"shop/convenience":{"name":"بقالة - متجر صغير","terms":"بقالة,متجر صغير,تموينات"},"shop/copyshop":{"name":"متجر نسخ وتصوير","terms":"متجر نسخ وتصوير"},"shop/cosmetics":{"name":"متجر مستحضرات التجميل","terms":"متجر مستحضرات التجميل"},"shop/craft":{"name":"متجر الفنون والحرف","terms":"متجر الفنون والحرف"},"shop/curtain":{"name":"محل بيع الستائر","terms":"ستائر"},"shop/dairy":{"name":"متجر الألبان","terms":"متجر الألبان، الألبان"},"shop/deli":{"name":"محل أطعمة لذيذة","terms":"محل أطعمة راقية ، متجر أطعمة لذيذة"},"shop/department_store":{"name":"محل متعدد الأقسام","terms":"محل متعدد الأقسام"},"shop/doityourself":{"name":"محل عدد وأدوات وأجهزة صيانة وتحسين المنزل","terms":"محل افعلها بنفسك,محل عدد وأدوات وأجهزة صيانة وتحسين المنزل"},"shop/doors":{"name":"متجر بيع أبواب","terms":"متجر بيع أبواب,باب,بيبان"},"shop/dry_cleaning":{"name":"مغسلة ملابس بالبخار","terms":"مغسلة ملابس بالبخار"},"shop/e-cigarette":{"name":"متجر سجائر إلكترونية","terms":"متجر سجائر إلكترونية"},"shop/electrical":{"name":"متجر المستلزمات الإلكترونية","terms":"متجر المستلزمات الإلكترونية"},"shop/electronics":{"name":"محل إلكترونيات","terms":"محل إلكترونيات"},"shop/erotic":{"name":"Erotic Store"},"shop/erotic/lgbtq":{"name":"LGBTQ+ Erotic Store"},"shop/fabric":{"name":"محل بيع الأقمشة","terms":"الأقمشة,قماش,كلف"},"shop/farm":{"name":"متجر مزرعة ليبيع منتجاتها","terms":"المنتج"},"shop/fashion":{"name":"متجر موضة"},"shop/fashion_accessories":{"name":"محل اكسسوارات الموضة","terms":"محل اكسسوارات الموضة"},"shop/fireplace":{"name":"متجر بيع المواقد والدفايات","terms":"متجر بيع المواقد والدفايات"},"shop/fishing":{"name":"محل معدات الصيد البحري","terms":"محل معدات الصيد"},"shop/flooring":{"name":"محل بيع أرضيات","terms":"أرضيات,باركيه"},"shop/florist":{"name":"ورد وزهور","terms":"محل بيع زهور,محل بيع ورود"},"shop/frame":{"name":"محل تأطير (بيع إطارات صور)","terms":"محل تأطير (بيع إطارات صور)"},"shop/frozen_food":{"name":"متجر أغذية مجمدة","terms":"متجر أغذية مجمدة"},"shop/fuel":{"name":"متجر بيع الوقود","terms":"متجر بيع الوقود"},"shop/funeral_directors":{"name":"محل بيع أكفان ومستلزمات الجنائز","terms":"محل بيع أكفان ومستلزمات الجنائز"},"shop/furniture":{"name":"محل بيع أثاث","terms":"محل أثاث"},"shop/games":{"name":"متجر ألعاب الطاولة","terms":"متجر ألعاب الطاولة"},"shop/garden_centre":{"name":"مشتل","terms":"مشتل"},"shop/gas":{"name":"محل بيع الغاز المعبأ","terms":"محل غاز,غاز"},"shop/general":{"name":"متجر عام","terms":"متجر عام"},"shop/gift":{"name":"محل بيع هدايا","terms":"محل بيع هدايا"},"shop/greengrocer":{"name":"متجر خضروات","terms":"متجر خضروات"},"shop/hairdresser":{"name":"حلاق","terms":"حلاق,مصفف الشعر"},"shop/hairdresser_supply":{"name":"متجر مستلزمات حلاقين","terms":"متجر مستلزمات حلاقين"},"shop/hardware":{"name":"محل مواد بناء","terms":"محل بيع عتاد,سباكة,مواد بناء,لوازم حديقة,عدد,مسامير,حديد,مفكات"},"shop/health_food":{"name":"متجر أغذية صحية","terms":"متجر أغذية صحية ، محل أغذية صحية"},"shop/hearing_aids":{"name":"متجر سماعات الأذن الطبية","terms":"سماعات الأذن الطبية; معينات سمعية; أجهزة تقوية السمع; مساعدات السمع"},"shop/herbalist":{"name":"محل بيع الأعشاب الطبية / عطار","terms":"محل بيع الأعشاب الطبية,عطار"},"shop/hifi":{"name":"محل بيع أجهزة عالية الدقة","terms":"محل بيع أجهزة عالية الدقة"},"shop/hobby":{"name":"متاجر الهوايات"},"shop/household_linen":{"name":"محل المفروشات والأغطية المنزلية","terms":"محل المفروشات والأغطية المنزلية"},"shop/houseware":{"name":"متجر بيع الأدوات المنزلية الصغيرة","terms":"متجر الأدوات المنزلية"},"shop/hunting":{"name":"متجر بيع أسلحة ومعدات الصيد","terms":"متجر بيع أسلحة ومعدات الصيد"},"shop/interior_decoration":{"name":"متجر الديكور الداخلي","terms":"متجر الديكور الداخلي"},"shop/jewelry":{"name":"محل بيع مجوهرات","terms":"محل مجوهرات,ذهب,فضة"},"shop/kiosk":{"name":"كشك","terms":"كشك"},"shop/kitchen":{"name":"متجر ديكور وتصميم المطابخ","terms":"ديكور,مطابخ,تصميم"},"shop/laundry":{"name":"محل غسيل ملابس","terms":"غسيل ملابس,مغسلة ملابس"},"shop/laundry/self_service":{"name":"مغسلة ملابس - خدمة ذاتية","terms":"مغسلة ملابس - خدمة ذاتية,مغسلة اخدم نفسك بنفسك"},"shop/leather":{"name":"متجر المنتجات الجلدية","terms":"متجر المنتجات الجلدية"},"shop/lighting":{"name":"متجر إنارة ولمبات","terms":"متجر إنارة ولمبات"},"shop/locksmith":{"name":"محل بيع أقفال ونسخ مفاتيح","terms":"صانع اﻷقفال، أقفال، حداد،"},"shop/lottery":{"name":"متجر اليانصيب"},"shop/mall":{"name":"مركز تسوق تجاري (مول)","terms":"مركز تسوق,مول"},"shop/massage":{"name":"صالون التدليك","terms":"صالون التدليك"},"shop/medical_supply":{"name":"متجر مستلزمات وأجهزة طبية","terms":"متجر مستلزمات طبية"},"shop/military_surplus":{"name":"متجر بيع المعدات والمستلزمات العسكرية المستعملة","terms":"متجر بيع المعدات والمستلزمات العسكرية المستعملة"},"shop/mobile_phone":{"name":"محل بيع هواتف","terms":"محل بيع هواتف"},"shop/model":{"name":"متجر بيع النماذج المصغرة للأشياء","terms":"متجر بيع النماذج المصغرة للأشياء"},"shop/money_lender":{"name":"مُقرض المال","terms":"مُقرض المال"},"shop/motorcycle":{"name":"بائع دراجات نارية","terms":"وكالة دراجات هوائية; توكيل; بائع; توكيل دراجات; بائع دراجات; بيع دراجات; بيع"},"shop/motorcycle_repair":{"name":"ورشة تصليح الدراجات النارية","terms":"ورشة تصليح الدراجات النارية"},"shop/music":{"name":"متجر بيع موسيقى","terms":"محل بيع الموسيقى"},"shop/musical_instrument":{"name":"متجر آلات موسيقية"},"shop/newsagent":{"name":"كشك","terms":"كشك جرائد ، كشك جرائد ومجلات ، محل بيع الجرائد ، محل بيع صحف","aliases":"كشك جرائد\nكشك جرائد ومجلات\nمحل بيع الجرائد\nمحل بيع صحف"},"shop/nutrition_supplements":{"name":"متجر المكملات الغذائية","terms":"متجر المكملات الغذائية، مكملات غذائية"},"shop/nuts":{"name":"متجر المكسرات"},"shop/optician":{"name":"محل نظارات/بصريات","terms":"محل بيع نظارات,عدسات"},"shop/outdoor":{"name":"متجر معدات الرحلات والتسلق والتخييم","terms":"متجر ملابس ومعدات الأنشطة في الهواء الطلق"},"shop/outpost":{"name":"محل استلام شحنات مطلوبة من الانترنت","terms":"محل استلام شحنات مطلوبة من الانترنت"},"shop/paint":{"name":"متجر دهانات وطلاء","terms":"طلاء"},"shop/party":{"name":"متجر مستلزمات حفلات","terms":"متجر مستلزمات حفلات"},"shop/pastry":{"name":"متجر حلويات","terms":"متجر الحلويات"},"shop/pawnbroker":{"name":"متجر رهن","terms":"متجر رهن"},"shop/perfumery":{"name":"متجر عطور","terms":"عطور"},"shop/pet":{"name":"محل بيع حيوانات أليفة","terms":"محل حيوانات أليفة"},"shop/photo":{"name":"محل تصوير","terms":"متجر تظّهير الصور، محل تصوير، مصور"},"shop/pottery":{"name":"متجر فخار","terms":"متجر فخار"},"shop/printer_ink":{"name":"متجر أحبار طابعة","terms":"متجر أحبار طابعة"},"shop/psychic":{"name":"Psychic"},"shop/pyrotechnics":{"name":"متجر ألعاب نارية","terms":"ألعاب نارية"},"shop/radiotechnics":{"name":"متجر بيع قطع الراديو / الإلكترونية","terms":"متجر المكونات الإلكترونية"},"shop/religion":{"name":"متجر ديني","terms":"دين,متجر"},"shop/rental":{"name":"محل تأجير","terms":"محل تأجير"},"shop/repair":{"name":"محل تصليح","terms":"محل تصليح"},"shop/scuba_diving":{"name":"متجر معدات الغوص تحت الماء","terms":"متجر معدات الغوص تحت الماء"},"shop/seafood":{"name":"متجر مأكولات بحرية","terms":"مأكولات بحرية,مسمكة,سمك"},"shop/second_hand":{"name":"متجر التوفير","terms":"محل لبيع البضائع المستعملة ، محل التوفير ، البال ، البالي ، قديم ، أشياء قديمة ، مستعمل ، بال"},"shop/sewing":{"name":"متجر مستلزمات خياطة","terms":"خياطة,ترزي,خياط"},"shop/shoe_repair":{"name":"محل تصليح الأحذية","terms":"محل تصليح الأحذية"},"shop/shoes":{"name":"متجر أحذية","terms":"محل بيع أحذية,حذاء,احذية"},"shop/spices":{"name":"محل بيع بهارات","terms":"محل بيع بهارات"},"shop/sports":{"name":"متجر بيع أدوات رياضية","terms":"محل بيع أدوات رياضية"},"shop/stationery":{"name":"متجر قرطاسية و أدوات مكتبية","terms":"محل بيع أدوات مكتبية,قرطاسية,مكتبة"},"shop/storage_rental":{"name":"محل تأجير أماكن التخزين","terms":"محل تأجير أماكن التخزين"},"shop/supermarket":{"name":"سوبر ماركت","terms":"سوبرماركت,متجر كبير"},"shop/supermarket/organic":{"name":"سوبر ماركت عضوي","terms":"سوبر ماركت عضوي"},"shop/swimming_pool":{"name":"متجر مستلزمات حمامات السباحة","terms":"متجر مستلزمات حمامات السباحة"},"shop/tailor":{"name":"خياط","terms":"خياط,ترزي"},"shop/tattoo":{"name":"صالون الوشم"},"shop/tea":{"name":"متجر شاي","terms":"محل بيع الشاي، شاي"},"shop/telecommunication":{"name":"متجر بيع بالتجزئة لشركة اتصالات","terms":"متجر بيع بالتجزئة لشركة اتصالات"},"shop/ticket":{"name":"بائع تذاكر","terms":"بائع التذاكر; تذاكر"},"shop/tiles":{"name":"متجر بلاط","terms":"محل بيع البلاط، بلاط، خزف,سيراميك"},"shop/tobacco":{"name":"محل بيع التبغ","terms":"تبغ، سيجارة"},"shop/tool_hire":{"name":"محل تأجير معدات","terms":"محل تأجير معدات"},"shop/toys":{"name":"متجر ألعاب","terms":"محل ألعاب"},"shop/trade":{"name":"محلات بيع مواد بالجملة","terms":"محلات البيع بالجملة,مبسط,مواد بناء"},"shop/travel_agency":{"name":"وكالة السفر","terms":"وكالة سفر"},"shop/trophy":{"name":"محل بيع جوائز ودروع ولوحات تذكارية","terms":"محل بيع جوائز ودروع ولوحات تذكارية"},"shop/tyres":{"name":"محل بيع إطارات","terms":"محل بيع إطارات,كفرات,بيع كفرات"},"shop/vacant":{"name":"محل شاغر","terms":"محل شاغر,محل فاضي"},"shop/vacuum_cleaner":{"name":"متجر المكنسات الكهربائية","terms":"متجر المكنسات الكهربائية; مكنسات كهربائية"},"shop/variety_store":{"name":"متجر التخفيضات","terms":"متجر التخفيضات ، متجر الخصم ، متجر الخصومات ، محلات كماليات رخيصة (أبو خمسة) ، منوعات وكماليات رخيصة ، محل كل شيء ، محل كماليات رخيصة","aliases":"متجر الخصم\nمتجر الخصومات\nمحلات كماليات رخيصة (أبو خمسة)\nمنوعات وكماليات رخيصة\nمحل كل شيء\nمحل كماليات رخيصة"},"shop/video":{"name":"محل بيع وتأجير الأفلام","terms":"محل بيع وتأجير الأفلام"},"shop/video_games":{"name":"متجر العاب الفيديو","terms":"متجر العاب الفيديو"},"shop/watches":{"name":"متجر الساعات اليدوية","terms":"متجر الساعات اليدوية"},"shop/water":{"name":"متجر مياه شرب","terms":"مياه صحية,مياه,ماء"},"shop/water_sports":{"name":"متجر رياضة مائية/سباحة","terms":"متجر رياضة مائية/سباحة"},"shop/weapons":{"name":"متجر أسلحة","terms":"متجر الأسلحة"},"shop/wholesale":{"name":"متجر بيع بالجملة","terms":"محل بيع بالجملة"},"shop/wigs":{"name":"متجر بيع الباروكات","terms":"متجر بيع الباروكات"},"shop/window_blind":{"name":"محل لبيع ستائر النوافذ","terms":"محل لبيع ستائر النوافذ"},"shop/wine":{"name":"متجر نبيذ"},"shop/yes":{"name":"متجر (نوع غير محدد)"},"telecom":{"name":"عنصر اتصالات"},"telecom/data_center":{"name":"مركز بيانات","terms":"مركز بيانات"},"telecom/exchange":{"name":"مقسم الاتصالات","terms":"مقسم الاتصالات"},"tourism":{"name":"عنصر سياحي"},"tourism/alpine_hut":{"name":"كوخ جبلي","terms":"كوخ جبلي,لودج جبلي"},"tourism/apartment":{"name":"شقة سياحية","terms":"شقة سياحية"},"tourism/aquarium":{"name":"حوض سمك","terms":"حوض سمك"},"tourism/artwork":{"name":"عمل فني","terms":"عمل فني"},"tourism/artwork/bust":{"name":"صدر"},"tourism/artwork/graffiti":{"name":"جدارية"},"tourism/artwork/installation":{"name":"Art Installation"},"tourism/artwork/mural":{"name":"جدار"},"tourism/artwork/sculpture":{"name":"منحوتة"},"tourism/artwork/statue":{"name":"تمثال"},"tourism/attraction":{"name":"معلم سياحي","terms":"معلم سياحي,مكان سياحي"},"tourism/camp_pitch":{"name":"Camp Pitch"},"tourism/camp_site":{"name":"مكان التخييم","terms":"مكان التخييم"},"tourism/camp_site/backcountry":{"name":"منطقة تخييم ريفية","terms":"منطقة تخييم ريفية"},"tourism/camp_site/group_only":{"name":"منطقة تخييم جماعي","terms":"منطقة تخييم جماعي"},"tourism/caravan_site":{"name":"موقف عربات كبيرة","terms":"موقف عربات كبيرة"},"tourism/chalet":{"name":"منتجع - شاليه","terms":"كوخ لقضاء العطلة,منتجع,شاليه,شالية"},"tourism/gallery":{"name":"رواق الفنون","terms":"رواق الفنون، متحف الفنون"},"tourism/guest_house":{"name":"دار الضيافة","terms":"دار الضيافة"},"tourism/hostel":{"name":"نزل / شقة مفروشة","terms":"نزل"},"tourism/hotel":{"name":"فندق","terms":"فندق"},"tourism/information":{"name":"معلومات سياحية","terms":"معلومات سياحية"},"tourism/information/board":{"name":"لوحة المعلومات","terms":"لوحة المعلومات"},"tourism/information/board/welcome_sign":{"name":"لافتة ترحيب","terms":"لافتة ترحيب"},"tourism/information/guidepost":{"name":"لافتة إرشادية","terms":"لافتة إرشادية,لوحة إرشادية,علامة إرشادية"},"tourism/information/map":{"name":"خريطة","terms":"خريطة"},"tourism/information/office":{"name":"مركز الزوار","terms":"مركز الزوار"},"tourism/information/route_marker":{"name":"لافتة مسار سياحي","terms":"لافتة مسار سياحي"},"tourism/information/terminal":{"name":"محطة معلومات","terms":"محطة معلومات"},"tourism/motel":{"name":"فندق صغير","terms":"فندق صغير"},"tourism/museum":{"name":"Museum","terms":"متحف,معرض"},"tourism/museum/history":{"name":"متحف تاريخي","terms":"متحف تاريخي"},"tourism/picnic_site":{"name":"موقع تنزه","terms":"موقع نزهة"},"tourism/theme_park":{"name":"حديقة ترفيه","terms":"حديقة ترفيه"},"tourism/trail_riding_station":{"name":"Trail Riding Station"},"tourism/viewpoint":{"name":"منظر سياحي","terms":"منظر سياحي"},"tourism/wilderness_hut":{"name":"Wilderness Hut"},"tourism/zoo":{"name":"حديقة حيوانات","terms":"حديقة الحيوانات"},"tourism/zoo/petting":{"name":"حديقة حيوان أليفة","terms":"حديقة حيوان أليفة"},"tourism/zoo/safari":{"name":"Safari Park"},"tourism/zoo/wildlife":{"name":"حديقة حيوانات برية","terms":"حديقة حيوانات برية"},"traffic_calming":{"name":"تخفيف السرعة","terms":"مطب; مخفف; مهديء; مهدئ; ممهل; تخفيف; تمهيل; مطب صناعي"},"traffic_calming/bump":{"name":"مطب قصير لتخفيف السرعة","terms":"مطب صغير لتخفيف السرعة"},"traffic_calming/chicane":{"name":"منعطفات صناعية لتخفيف السرعة","terms":"منعطفات صناعية لتخفيف السرعة"},"traffic_calming/choker":{"name":"بروز هزاز للتنبية بتهدئة السرعة","terms":"بروز هزاز للتنبية بتهدئة السرعة"},"traffic_calming/cushion":{"name":"مطبات مركبات صغيرة","terms":"مطبات مركبات صغيرة"},"traffic_calming/dip":{"name":"منخفض لتهدئة السرعة ويسمح بعبور المياة","terms":"منخفض لتهدئة السرعة ويسمح بعبور المياة"},"traffic_calming/hump":{"name":"مطب طويل لتخفيف السرعة","terms":"مطب لتخفيف السرعة"},"traffic_calming/mini_bumps":{"name":"مطبات تخفيف سرعة صغيرة","terms":"مطبات تخفيف سرعة صغيرة"},"traffic_calming/rumble_strip":{"name":"مطبات قصيرة ومنخفضة متتالية على شكل شريط","terms":"مطبات قصيرة ومنخفضة متتالية على شكل شريط"},"traffic_calming/table":{"name":"مطب مرتفع وطويل لتخفيف السرعة بشكل جبري","terms":"مطب مرتفع وطويل لتخفيف السرعة بشكل جبري"},"traffic_calming/yes":{"name":"مخفف لحركة المرور (من نوع غير محدد)"},"traffic_sign":{"name":"إشارات المرور","terms":"إشارة مرورية,علامات المرور"},"traffic_sign/city_limit":{"name":"علامة حدود المدينة/البنيان","terms":"علامة حدود المدينة,علامة حدود البنيان"},"traffic_sign/maxspeed":{"name":"علامة الحد الأعلى لسرعة الطريق","terms":"علامة الحد الأعلى لسرعة الطريق"},"traffic_sign/variable_message":{"name":"علامة رسالة متغيرة","terms":"علامة رسالة متغيرة ، علامة ذات رسالة متغيرة ، علامة مرور ذات رسالة متغيرة"},"type/boundary":{"name":"حدود","terms":"حدود"},"type/boundary/administrative":{"name":"حدود إدارية","terms":"حدود إدارية,تقسيمات إدارية"},"type/connectivity":{"name":"ربط طرق ببعضها","terms":"ربط طرق ببعضها,اتصال طرق ببعضها"},"type/destination_sign":{"name":"لوحات ولافتات الوجهات","terms":"لوحات ولافتات الوجهات"},"type/enforcement":{"name":"إنفاذ ورصد تطبيق النظام (أجهزة توثيق مخالفات المرور)","terms":"إنفاذ النظام,أجهزة توثيق مخالفات المرور"},"type/enforcement/maxspeed":{"name":"إنفاذ ورصد حدود السرعة","terms":"إنفاذ ورصد حدود السرعة"},"type/multipolygon":{"name":"المضلعات المتعددة","terms":"متعدد الأضلاع"},"type/public_transport/stop_area_group":{"name":"مجموعة منطقة مواقف النقل العام","terms":"مجموعة منطقة مواقف النقل العام"},"type/restriction":{"name":"قيود الانعطاف","terms":"قيود"},"type/restriction/no_left_turn":{"name":"ممنوع الإنعطاف لليسار","terms":"ممنوع الإنعطاف لليسار"},"type/restriction/no_right_turn":{"name":"ممنوع الإنعطاف لليمين","terms":"ممنوع الإنعطاف لليمين"},"type/restriction/no_straight_on":{"name":"غير مسموح بالذهاب للأمام","terms":"غير مسموح بالذهاب للأمام"},"type/restriction/no_u_turn":{"name":"ممنوع الدوران (اليوترن)","terms":"ممنوع الدوران (اليوترن)"},"type/restriction/only_left_turn":{"name":"يسمح بالانعطاف لليسار فقط","terms":"يسمح بالانعطاف لليسار فقط"},"type/restriction/only_right_turn":{"name":"يسمح بالانعطاف لليمين فقط","terms":"يسمح بالانعطاف لليمين فقط"},"type/restriction/only_straight_on":{"name":"للأمام فقط","terms":"للأمام فقط"},"type/restriction/only_u_turn":{"name":"يسمح بالدوران فقط (اليوتيرن)","terms":"يسمح بالدوران فقط (اليوتيرن)"},"type/route":{"name":"مسار","terms":"مسار"},"type/route/aerialway":{"name":"طريق جوي","terms":"طريق جوي"},"type/route/bicycle":{"name":"مسار الدراجات","terms":"مسار الدراجات,مسارات الدراجات"},"type/route/bus":{"name":"مسار الحافلات","terms":"مسار باصات، حافلات"},"type/route/detour":{"name":"مسار طريق جانبي","terms":"مسار طريق جانبي"},"type/route/ferry":{"name":"مسار عبّارة","terms":"مسار سفن,مسار عبارات"},"type/route/foot":{"name":"مسار مشي","terms":"مسار مشي"},"type/route/hiking":{"name":"مسارات المشي الخلوي (الهايكنق)","terms":"مسار المشاة، طريق للمشي,مسارات المشي الخلوي,مسار الهايكنق"},"type/route/horse":{"name":"مسار ركوب الخيل","terms":"مسار ركوب الخيل"},"type/route/light_rail":{"name":"مسار القطار الخفيف","terms":"قطار خفيف، ترام"},"type/route/monorail":{"name":"مسار سكة حديد أحادية","terms":"مسار سكة حديد أحادية"},"type/route/mtb":{"name":"مسار ركوب الدراجات الجبلية","terms":"مسار ركوب الدراجات الجبلية"},"type/route/pipeline":{"name":"مسار خط أنابيب","terms":"مسار خط أنابيب"},"type/route/piste":{"name":"مسار التزلج","terms":"تزلج"},"type/route/power":{"name":"مسار خط كهربائي","terms":"مسار الطاقة,مسار الكهرباء"},"type/route/railway":{"name":"مسار السكة الحديدية","terms":"مسار السكة الحديدية,مسار سكة القطار"},"type/route/road":{"name":"مسار طريق","terms":"مسار الطريق"},"type/route/subway":{"name":"مسار مترو","terms":"مسار مترو"},"type/route/train":{"name":"مسار قطار","terms":"مسار القطار"},"type/route/tram":{"name":"مسار ترام","terms":"مسار ترام"},"type/route/trolleybus":{"name":"مسار حافلات كهربائية","terms":"مسار حافلات كهربائية"},"type/route_master":{"name":"مسار رئيسي","terms":"مسار رئيسي"},"type/site":{"name":"موضع","terms":"موقع"},"type/waterway":{"name":"مجرى مائي","terms":"مجرى مائي، ممر مائي"},"waterway":{"name":"عنصر مجري مائي"},"waterway/boatyard":{"name":"حوض بناء السفن","terms":"حوض بناء سفن; ورشة"},"waterway/canal":{"name":"قناة","terms":"قناة"},"waterway/canal/lock":{"name":"هويس القناة","terms":"هويس القناة"},"waterway/dam":{"name":"سد","terms":"سد"},"waterway/ditch":{"name":"مصرف خندقي"},"waterway/dock":{"name":"رصيف بحري رطب/رصيف بحري جاف","terms":"رصيف بحري رطب/رصيف بحري جاف"},"waterway/drain":{"name":"مصرف مياه","terms":"مصرف مياه"},"waterway/fish_pass":{"name":"مجرى مائي لمرور الأسماك","terms":"مجرى مائي لمرور الأسماك"},"waterway/fuel":{"name":"محطة وقود بحري","terms":"وقود بحري"},"waterway/lock_gate":{"name":"هويس (حوض نقل السفن من مستوى لمستوى)","terms":"هويس (حوض نقل السفن من مستوى لمستوى)"},"waterway/milestone":{"name":"علامة مسافة المجرى المائي","terms":"علامة مسافة المجرى المائي"},"waterway/river":{"name":"نهر / مجرى مائي واسع","terms":"نهر"},"waterway/sanitary_dump_station":{"name":"للتخلص من مخلفات مرحاض السفن","terms":"التخلص من مرحاض البحر"},"waterway/stream":{"name":"مجرى مائي / شعيب","terms":"مجرى، جدول مائي,شعيب,وادي"},"waterway/stream_intermittent":{"name":"مجرى متقطع ولا يجري بشكل دائم","terms":"مجرى متقطع"},"waterway/tidal_channel":{"name":"مجرى مائي طبيعي للمد والجزر","terms":"مجرى مائي طبيعي للمد والجزر"},"waterway/water_point":{"name":"مياه الشرب البحرية","terms":"مياه الشرب البحرية"},"waterway/waterfall":{"name":"شلال","terms":"شلال"},"waterway/weir":{"name":"هدار - سد صغير","terms":"هدار، سد صغير"}}}}}
\ No newline at end of file
diff --git a/dist/translations/ar.json b/dist/translations/ar.json
index 8b600317..2b99fd7b 100644
--- a/dist/translations/ar.json
+++ b/dist/translations/ar.json
@@ -9,7 +9,7 @@
"name": "عناصر المباني"
},
"category-golf": {
- "name": "عناصر ملعب الجولف"
+ "name": "عناصر الجولف"
},
"category-landuse": {
"name": "عناصر الأراضي"
@@ -163,20 +163,18 @@
"housenumber": "123",
"housenumber!jp": "رقم المبنى/ رقم القطعة",
"neighbourhood": "حي",
- "neighbourhood!jp": "تشومي / عزة / كوازا",
"place": "المكان",
"postcode": "الرمز البريدي",
"province": "المحافظة",
"province!cn": "المحافظة/البلدية/AR/SAR",
"province!jp": "العمالة (تقسيم إداري)",
"quarter": "مربع",
- "quarter!jp": "أزا / ماشي",
"state": "ولاية",
"street": "شارع",
"subdistrict": "مديرية فرعية",
"subdistrict!vn": "جناح/جمعية/بلدة صغيرة",
"suburb": "ضاحية",
- "suburb!jp": "جناح",
+ "town": "مدينة",
"unit": "وحدة"
},
"terms": "العنوان,عنوان"
@@ -184,6 +182,9 @@
"admin_level": {
"label": "المستوى الإداري"
},
+ "advertising": {
+ "label": "النوع"
+ },
"aerialway": {
"label": "النوع"
},
@@ -231,6 +232,16 @@
"label": "تكييف هواء",
"terms": "تكييف الهواء,التكييف,التبريد"
},
+ "aircraft/type": {
+ "label": "النوع",
+ "options": {
+ "helicopter": "هليكوبتر",
+ "military": "عسكري"
+ }
+ },
+ "alt_name": {
+ "label": "الاسم البديل"
+ },
"amenity": {
"label": "النوع"
},
@@ -244,7 +255,21 @@
"label": "للحيوانات"
},
"archaeological_site": {
- "label": "نوع"
+ "label": "نوع",
+ "options": {
+ "baths": "حمامات",
+ "city": "مدينة تاريخية",
+ "enclosure": "سياج",
+ "fortification": "جدران دفاعية للتحصين",
+ "hut_circle": " دائرة الأكواخ",
+ "megalith": "ميغاليث/جندل/مغليطيا (آثار صخرية)",
+ "necropolis": "مقبرة كبيرة قديمة",
+ "petroglyph": "نحت صخري",
+ "roman_circus": "سيرك روماني",
+ "roman_villa": "فيلا رومانية",
+ "settlement": "مستوطنة تاريخية",
+ "tumulus": "جثوة"
+ }
},
"architect": {
"label": "مهندس معماري",
@@ -253,6 +278,14 @@
"area/highway": {
"label": "النوع"
},
+ "armrest": {
+ "label": " مساند الأذرع",
+ "options": {
+ "no": "بدون مساند للذراعين",
+ "undefined": "غير معروفة",
+ "yes": "مسند ذراع واحد أو أكثر"
+ }
+ },
"artist": {
"label": "فنان/رسام"
},
@@ -261,22 +294,72 @@
"options": {
"bust": "صدر",
"graffiti": "جدارية",
+ "installation": "Art Installation",
"mosaic": "فسيفساء",
"mural": "جدار",
"painting": "لوحة",
+ "relief": "نقش بارز، عمل نحت بارز",
"sculpture": "منحوتة",
- "statue": "تمثال"
+ "statue": "تمثال",
+ "stone": "حجر معالج فنياً، حجر مزخرف",
+ "tilework": "أعمال البلاط، تزيين بالبلاط"
}
},
"ascent": {
"label": "إجمالي الصعود",
"terms": "إجمالي الصعود"
},
+ "athletics_pitch": {
+ "label": "حدث",
+ "options": {
+ "discus_throw": "نقاش",
+ "hammer_throw": "رمي المطرقة",
+ "high_jump": "الوثب العالي",
+ "javelin_throw": " رمي الرمح",
+ "long_jump": "الوثب الطويل",
+ "pole_vault": "القفز بالزانة",
+ "shot_put": "دفع الجلة",
+ "triple_jump": "الوثب الثلاثي"
+ }
+ },
+ "athletics_track": {
+ "label": "حدث",
+ "options": {
+ "javelin_throw": " رمي الرمح",
+ "long_jump": "الوثب الطويل",
+ "pole_vault": "القفز بالزانة",
+ "running": "جري",
+ "sprint": "العدو السريع",
+ "steeplechase": "سباق الموانع",
+ "triple_jump": "الوثب الثلاثي"
+ }
+ },
"atm": {
"label": "ماكينة صرافة آلية"
},
"attraction": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "alpine_coaster": "مزلقة جبلية",
+ "amusement_ride": "Amusement Ride",
+ "animal": "حظيرة حيوانات",
+ "big_wheel": "عجلة فيريس",
+ "bumper_car": "Bumper Cars",
+ "bungee_jumping": "Bungee Jumping",
+ "carousel": "دوامة خيل",
+ "dark_ride": "Dark Ride",
+ "drop_tower": "Drop Tower Ride",
+ "kiddie_ride": "Kiddie Ride",
+ "log_flume": "Log Flume",
+ "maze": "متاهة",
+ "pirate_ship": "Pirate Ship Ride",
+ "river_rafting": "River Rapids Ride",
+ "roller_coaster": "السفينة الدوارة",
+ "summer_toboggan": "Summer Toboggan",
+ "swing_carousel": "Swing Carousel",
+ "train": "Tourist Train",
+ "water_slide": "التزلق على الماء"
+ }
},
"automated": {
"label": "آلي"
@@ -304,7 +387,32 @@
"label": "بار"
},
"barrier": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "block": " كتلة كبيرة",
+ "bollard": "عمود حاجز",
+ "cattle_grid": "شبكة أرضية حاجزة للماشية",
+ "chain": "سلسلة",
+ "city_wall": "جدار المدينة",
+ "cycle_barrier": "حاجز دراجات هوائية",
+ "ditch": "مصرف خندقي",
+ "entrance": "مدخل",
+ "fence": "سياج",
+ "gate": "بوابة",
+ "guard_rail": "حاجز حديدي للحماية من الاصطدام",
+ "hedge": "حاجز نباتي",
+ "height_restrictor": "حاجز لتقييد الارتفاع",
+ "jersey_barrier": "حاجز خرساني - نيوجيرسي",
+ "kerb": "منحدر الرصيف المؤدي للشارع",
+ "kissing_gate": "بوابة لا تسمح بعبور الماشية",
+ "lift_gate": "بوابة حاجز",
+ "retaining_wall": "جدار تثبيت للتربة",
+ "stile": "درج يسمح للبشر بالمرور فوق السياج",
+ "swing_gate": "بوابة عامودية جانبية",
+ "toll_booth": "كشك تحصيل رسوم",
+ "turnstile": "بوابة دوارة لعبور شخص واحد",
+ "wall": "جدار"
+ }
},
"barrier_planter": {
"label": "حاجز",
@@ -314,16 +422,26 @@
}
},
"basin": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "detention": "احتجاز",
+ "evaporation": "تبخر",
+ "infiltration": "تسلل",
+ "retention": "حوض احتجاز مياه الأمطار الصناعي "
+ }
},
"bath/open_air": {
"label": "في الهواء الطلق/خارج البناء"
},
- "bath/sand_bath": {
- "label": "حمام رملي"
- },
"bath/type": {
- "label": "مخصوص"
+ "label": "مخصوص",
+ "options": {
+ "hammam": "حمام",
+ "hot_spring": "العين الحمئة / الينبوع الساخن",
+ "lake": "بحيرة",
+ "onsen": "ينابيع ساخنة (يابانية)",
+ "thermal": "حمام حراري"
+ }
},
"beauty": {
"label": "خدمات",
@@ -352,6 +470,13 @@
"wall_loops": "مقود العجلات (يدعم العجلة فقط)"
}
},
+ "bicycle_road": {
+ "label": "شارع الدراجات",
+ "options": {
+ "undefined": "لا",
+ "yes": "نعم"
+ }
+ },
"bike_ride": {
"label": "اصطفاف وركوب",
"terms": "اصطفاف وركوب,ركن الدراجة والركوب"
@@ -384,11 +509,23 @@
"art": "فن",
"astronomy": "علم الفلك",
"geology": "جيولوجيا",
- "history": "تاريخ"
+ "history": "تاريخ",
+ "nature": "الطبيعة",
+ "notice": "لوحة الإعلانات والملصقات",
+ "plants": "النباتات",
+ "welcome_sign": "لافتة ترحيب",
+ "wildlife": "حيوانات برية"
}
},
"bollard": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "fixed": "حاجز ثابت",
+ "flexible": "حاجز مرن",
+ "foldable": "حاجز قابل للطي",
+ "removable": "حاجز قابل للإزالة",
+ "rising": "حاجز قابل للارتفاع"
+ }
},
"booth": {
"label": "كشك/دكان",
@@ -411,9 +548,6 @@
"label": "العلامة التجارية",
"terms": "العلامة التجارية,الماركة,البراند"
},
- "brewery": {
- "label": "بيرة برميل"
- },
"bridge": {
"label": "النوع",
"placeholder": "الافتراضي"
@@ -422,10 +556,75 @@
"label": "النوع"
},
"bridge_combo": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "aqueduct": "قناة مياه على جسر",
+ "boardwalk": "ممر خشبي",
+ "movable": "جسر متحرك"
+ }
},
"building": {
"label": "المبنى",
+ "options": {
+ "allotment_house": " الحدائق/المزارع المحصصة",
+ "apartments": "مبنى شقق سكنية",
+ "barn": "حظيرة",
+ "boathouse": "مبنى تخزين القوارب",
+ "bungalow": "منزل بطابق واحد",
+ "bunker": "ملجأ محصّن",
+ "cabin": "كوخ",
+ "carport": "مرآب/مظلة سيارات",
+ "cathedral": "مبنى كاتدرائية",
+ "chapel": "معبد نصراني",
+ "church": "مبنى كنيسة",
+ "civic": "مبنى مرافق مدنية",
+ "college": "مبنى كلية",
+ "commercial": "مبني تجاري",
+ "construction": "مبنى تحت الإنشاء",
+ "cowshed": "سقيفة/مظلة أبقار",
+ "detached": "منزل منفصل",
+ "dormitory": "سكن جامعي",
+ "farm": "بيت ريفي",
+ "farm_auxiliary": "مبنى مزرعة",
+ "garage": "مرآب/جراج",
+ "garages": "جراجات",
+ "ger": "منزل اليورت",
+ "grandstand": "مُدَرج",
+ "greenhouse": "محمية زراعية",
+ "hangar": "حظيرة طائرات",
+ "hospital": "مبنى مستشفى",
+ "hotel": "مبنى فندق",
+ "house": "منزل",
+ "houseboat": "بيت عائم",
+ "hut": "كوخ بدائي/عشة",
+ "industrial": "مبنى صناعي",
+ "kindergarten": "مبنى حضانة / روض",
+ "manufacture": "مبنى إنتاج صناعي",
+ "mosque": "مبنى مسجد",
+ "office": "مبنى مكاتب إدارية",
+ "outbuilding": "ملحق",
+ "pavilion": "مبنى مرافق رياضية",
+ "public": "مبنى عام",
+ "residential": "مبنى سكني",
+ "retail": "مبنى بيع بالتجزئة",
+ "riding_hall": "حلبة ركوب الخيل",
+ "roof": "سقف/سطح",
+ "ruins": "مبنى أثري/مهجور/متهدم",
+ "school": "مبنى مدرسة",
+ "semidetached_house": "مبنى شبه منفصل",
+ "service": "مبنى خدمات (محولات، آلات،مضخات..الخ)",
+ "shed": "سقيفة(مستودع/ورشة عمل صغيرة)",
+ "stable": "إسطبل",
+ "stadium": "مبنى الملعب",
+ "sty": "Pigsty",
+ "synagogue": "Synagogue Building",
+ "temple": "مبنى المعبد",
+ "terrace": "صف منازل متلاصقه",
+ "train_station": "مبنى محطة القطار",
+ "transportation": "مبنى للنقل العام",
+ "university": "مبنى جامعي",
+ "warehouse": "مستودع"
+ },
"terms": "المبنى,البناية,العمارة,مبنى"
},
"building/flats": {
@@ -490,13 +689,15 @@
"panning": "ثابتة بمحور للدوران"
}
},
+ "camp_site": {
+ "label": "النوع"
+ },
"capacity": {
"label": "السعة",
"placeholder": "50, 100, 200...",
"terms": "السعة,القدرة الاستيعابية"
},
"capacity/caravans": {
- "label": "السعة (للكرفانات)",
"placeholder": "10، 20، 50..."
},
"capacity/disabled_parking": {
@@ -558,8 +759,22 @@
"placeholder": "1 متر, 20 سم, 30\"…",
"terms": "محيط الدائرة (على ارتفاع الصدر)"
},
+ "climbing/length": {
+ "label": "الطول (بالأمتار)",
+ "terms": "العرض (بالمتر)"
+ },
+ "climbing/trad": {
+ "label": "التسلق التقليدي"
+ },
"clothes": {
"label": "ملابس",
+ "options": {
+ "hats": "قبعات",
+ "suits": "محل بدل",
+ "swimwear": "ملابس سباحة",
+ "underwear": "الملابس الداخلية",
+ "workwear": "ملابس العمل"
+ },
"terms": "ملابس,ثياب,كسوة"
},
"club": {
@@ -569,7 +784,11 @@
"label": "وقت الاستلام"
},
"collector": {
- "label": "العناصر"
+ "label": "العناصر",
+ "options": {
+ "coins": "عملات معدنية",
+ "stamps": "طوابع بريدية"
+ }
},
"colour": {
"label": "اللون",
@@ -583,6 +802,12 @@
"label": "أنواع الاتصال",
"terms": "أنواع الاتصال"
},
+ "community_centre": {
+ "label": "النوع",
+ "options": {
+ "youth_centre": "مركز الشباب"
+ }
+ },
"connectivity": {
"label": "الاتصال/الالتقاء"
},
@@ -590,7 +815,10 @@
"label": "النوع"
},
"consulate": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "yes": "قنصلية"
+ }
},
"consulting": {
"label": "خبرات/استشارات"
@@ -635,7 +863,61 @@
}
},
"craft": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "agricultural_engines": "ميكانيكي محركات زراعية",
+ "basket_maker": "صناعة وحياكة السِلال",
+ "beekeeper": "مربي النحل",
+ "blacksmith": "حدّاد",
+ "boatbuilder": "بنّاء السفن",
+ "bookbinder": "تغليف وتجليد الكتب",
+ "brewery": "مصنع الجعة",
+ "builder": "منشئ",
+ "carpenter": "نجار",
+ "carpet_layer": "فرش وتركيب المفروشات",
+ "caterer": "تموين أو متعهد إعاشة",
+ "chimney_sweeper": "منظف مداخن",
+ "cleaning": "خدمات التنظيف",
+ "clockmaker": "ساعاتي",
+ "confectionery": "حلواني",
+ "distillery": "Distillery",
+ "dressmaker": "خياط نسائي",
+ "electrician": "كهربائي",
+ "floorer": "مبلط/تبليط/أرضيات",
+ "gardener": "بستاني",
+ "glaziery": "تركيب وإصلاح الزجاج",
+ "handicraft": "حرف يدوية",
+ "insulation": "تركيب عوازل حرارية",
+ "jeweller": "صائغ مجوهرات",
+ "joiner": "نجار",
+ "key_cutter": "قص ونسخ مفاتيح",
+ "locksmith": "محل بيع أقفال ونسخ مفاتيح",
+ "metal_construction": "صناعات المعادن والمواد الصلبة",
+ "painter": "دهّان",
+ "parquet_layer": "تركيب أرضيات خشبية (باركيه)",
+ "photographer": "Photographer",
+ "photographic_laboratory": "مختبر التصوير",
+ "plasterer": "جصاص (أعمال الجبس)",
+ "plumber": "سباكة",
+ "pottery": "صناعة وبيع الفخار",
+ "rigger": "الصواري والحبال والأشرعة",
+ "roofer": "بناء الأسقف والقرميد",
+ "saddler": "صانع سراج",
+ "sailmaker": "صانع أشرعة",
+ "sawmill": "منشرة",
+ "scaffolder": "تركيب وتأجير السقالة",
+ "sculptor": "نحّات",
+ "shoemaker": "إسكافي/ صانع الأحذية",
+ "signmaker": "خطاط ومصمم لوحات تجارية",
+ "stonemason": "قطع ونحت وتشكيل الحجارة",
+ "tailor": "خياط",
+ "tiler": "مبلط",
+ "tinsmith": "سمكري",
+ "upholsterer": "منجد",
+ "watchmaker": "ساعاتي",
+ "window_construction": "تركيب النوافذ",
+ "winery": "Winery"
+ }
},
"crane/type": {
"label": "نوع الرافعة",
@@ -734,19 +1016,31 @@
"cuisine": {
"label": "المأكولات",
"options": {
+ "african": "إفريقي",
"american": "أمريكي",
+ "arab": "عربي",
+ "argentinian": "ارجنتيني",
"asian": "آسيوي",
+ "bagel": "كعك بايقل",
+ "balkan": "البلقان",
+ "barbecue": "شواء/مشاوي",
+ "bavarian": "البافاريه",
+ "brazilian": "برازيلي",
"bubble_tea": "شاي الفقاعات",
"burger": "برجر",
"cake": "كيك",
+ "caribbean": "كاريبي",
"chicken": "دجاج",
"chinese": "صيني",
- "chocolate": "شوكولاتة",
"coffee_shop": "مقهى",
+ "crepe": "كريب (بان كيك رقيق)",
+ "curry": "كاري",
"dessert": "حلويات بعد الطعام",
"donut": "دونات",
+ "filipino": "فلبيني",
"fish": "سمك",
"french": "فرنسي",
+ "georgian": "الجورجية",
"german": "ألماني",
"greek": "يوناني",
"hot_dog": "هوت دوج",
@@ -760,23 +1054,35 @@
"korean": "كوري",
"lebanese": "لبناني",
"malaysian": "ماليزي",
+ "mediterranean": "البحر الابيض المتوسط",
"mexican": "مكسيكي",
- "pankcake": "بان كيك (فطيرة مسطحة)",
+ "moroccan": "مغربي",
+ "noodle": "المعكرونة",
+ "pancake": "بان كيك (فطيرة مسطحة)",
"pasta": "باستا",
+ "pastry": "متجر المعجنات والحلويات",
+ "persian": "فارسي",
+ "peruvian": "بيروفي",
"pizza": "بيتزا",
"polish": "بولندي",
"portuguese": "برتغالي",
+ "ramen": "رامن",
"regional": "شعبي/محلي",
"russian": "روسي",
"salad": "سلطة",
"sandwich": "خبز/ساندويتش",
+ "sausage": "سجق",
"seafood": "مأكولات بحرية",
+ "soba": "سوبا",
"spanish": "أسباني",
"steak_house": "شرائح لحم (ستيك)",
"sushi": "سوشي",
"taiwanese": "تايواني",
+ "tapas": "تاباس",
+ "tea": "شاي",
"thai": "تيلاندي",
"turkish": "تركي",
+ "ukrainian": "الأوكرانية",
"vietnamese": "فيتنامي"
},
"terms": "نوع الطعام,أنواع الطعام,الأطباق,المأكولات,الأطعمة"
@@ -789,6 +1095,22 @@
"label": "النوع",
"placeholder": "الافتراضي"
},
+ "cycle_barrier": {
+ "label": "النوع",
+ "options": {
+ "diagonal": "قطري",
+ "double": "مزدوج",
+ "single": "فردي",
+ "triple": "ثلاثية"
+ }
+ },
+ "cycle_barrier/installation": {
+ "label": "التنصيب",
+ "options": {
+ "fixed": "ثابتة",
+ "removable": "قابل للإزالة"
+ }
+ },
"cycle_network": {
"label": "الشبكة"
},
@@ -799,14 +1121,9 @@
"description": "مسار دراجات مفصول عن السيارات بخط مطبوع"
},
"no": {
+ "description": "لا يوجد مسار للدراجات",
"title": "لا شيء"
},
- "opposite": {
- "description": "مسار دراجات للسير في كلا الاتجاهين على طريق باتجاه واحد"
- },
- "opposite_lane": {
- "description": "مسار دراجات يسير في الاتجاه المعاكس لحركة مرور السيارات"
- },
"separate": {
"description": "للإشارة إلى أنه قد تم تخطيط مسار الدراجات باعتباره شكلًا هندسيًا منفصلاً"
},
@@ -860,6 +1177,9 @@
"deposit/trolley": {
"label": "إيداع"
},
+ "depot": {
+ "label": "النوع"
+ },
"depth": {
"label": "العمق (متر)"
},
@@ -914,7 +1234,12 @@
"terms": "أنواع النظام الغذائي,النمط الغذائي,الحمية الغذائية,المحظورات الغذائية"
},
"diplomatic": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "consulate": "قنصلية",
+ "embassy": "سفارة",
+ "liaison": "مكتب اتصال دبلوماسي"
+ }
},
"diplomatic/services": {
"label": "الخدمات"
@@ -1120,8 +1445,7 @@
"lane": "مسار الطريق",
"parking_lot": "مكان المواقف",
"sidewalk": "الرصيف"
- },
- "terms": "موضع,مكان"
+ }
},
"fire_hydrant/pressure": {
"label": "الضغط (بار)",
@@ -1136,6 +1460,25 @@
"wall": "جداري"
}
},
+ "fire_mains": {
+ "options": {
+ "no": "لا"
+ }
+ },
+ "fire_service_inlet": {
+ "label": "شكل",
+ "options": {
+ "pillar": "عامود/صنبور فوق الأرض",
+ "pipe": "أنابيب مغطاة",
+ "underground": "تحت الأرض",
+ "wall": "جدار"
+ }
+ },
+ "fire_sprinkler": {
+ "options": {
+ "no": "لا"
+ }
+ },
"fireplace": {
"label": "المستوقد/مدفأة نار"
},
@@ -1217,7 +1560,14 @@
"adblue:canister": "AdBlue / AUS 32 (في عبوات)",
"biodiesel": "ديزل حيوي",
"cng": "الغاز الطبيعي المضغوط (CNG)",
- "diesel": "ديزل"
+ "diesel": "ديزل",
+ "octane_90": "بنزين (90 أوكتان)",
+ "octane_91": "بنزين (91 أوكتان)",
+ "octane_92": "بنزين (92 أوكتان)",
+ "octane_93": "بنزين (93 أوكتان)",
+ "octane_95": "بنزين (95 أوكتان)",
+ "octane_97": "بنزين (97 أوكتان)",
+ "octane_98": "بنزين (98 أوكتان)"
}
},
"gambling": {
@@ -1242,7 +1592,11 @@
"generator/method": {
"label": "الطريقة",
"options": {
- "anaerobic_digestion": "الهضم اللاهوائي"
+ "anaerobic_digestion": "الهضم اللاهوائي",
+ "stream": "تيار المد والجزر",
+ "thermal": "طاقة شمسية",
+ "water-storage": "خزان",
+ "wind_turbine": "توربينة رياح"
}
},
"generator/output/electricity": {
@@ -1252,12 +1606,21 @@
"generator/source": {
"label": "المصدر",
"options": {
+ "battery": "بطارية",
+ "biofuel": "وقود حيوي",
+ "biogas": "غاز حيوي",
+ "coal": "فحم",
+ "diesel": "ديزل",
+ "gas": "غاز طبيعي",
+ "gasoline": "بنزين",
+ "hydro": "طاقة كهرومائية",
"nuclear": "طاقة نووية",
"oil": "نفط",
"solar": "إشعاع الشمس",
"tidal": "طاقة المد والجزر",
"waste": "نفايات",
- "wave": "طاقة الأمواج"
+ "wave": "طاقة الأمواج",
+ "wind": "رياح"
}
},
"generator/type": {
@@ -1303,11 +1666,64 @@
"label": "الوسوم",
"placeholder": "#مثال"
},
+ "hazard_boundary": {
+ "label": "خطر",
+ "options": {
+ "avalanche": "انهيار ثلجي",
+ "biohazard": "خطر حيوي",
+ "contamination": "تلوث كيميائي",
+ "electricity": "صعقة كهربائية",
+ "hole": "حُفرة",
+ "minefield": "ألغام أرضية",
+ "nuclear": "نووي / إشعاعي",
+ "quicksand": "رمال متحركة",
+ "shooting_range": "إطلاق نار"
+ }
+ },
"healthcare": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "alternative": "الطب البديل",
+ "audiologist": "أخصائي السمع",
+ "birthing_centre": "مركز ولادة",
+ "blood_bank": "بنك الدم",
+ "blood_donation": "مركز تبرع بالدم",
+ "clinic": "عيادة طبية",
+ "counselling": "مركز استشارات طبية",
+ "dentist": "طبيب أسنان",
+ "dialysis": "غسيل كلى",
+ "doctor": "طبيب",
+ "hospice": "دار رعاية المسنين وكبار السن",
+ "hospital": "مستشفى",
+ "laboratory": "معمل طبي",
+ "midwife": "مركز قابلات للأمهات والأطفال حديثي الولادة",
+ "nurse": "تمريض",
+ "occupational_therapist": "أخصائي علاج وظيفي",
+ "optometrist": "أخصائي بصريات",
+ "pharmacy": "صيدلانية",
+ "physiotherapist": "علاج طبيعي وتأهيل طبي",
+ "podiatrist": "طبيب الأقدام",
+ "psychotherapist": "معالج نفسي",
+ "rehabilitation": "مركز إعادة التأهيل",
+ "sample_collection": "مرفق جمع العينات",
+ "speech_therapist": "معالج مشاكل النطق"
+ }
},
"healthcare/speciality": {
- "label": "التخصصات"
+ "label": "التخصصات",
+ "options": {
+ "chiropractic": "العلاج بتقويم العمود الفقري",
+ "orthodontics": "تقويم الأسنان",
+ "osteopathy": "تجبير العظام",
+ "shiatsu": "شياتسو",
+ "stomatology": "أمراض الفم",
+ "surgery": "جراحة عامة",
+ "systemic": "علاج نظامي",
+ "traditional_chinese_medicine": "طب صيني تقليدي",
+ "transplant": "جراحة زراعة الأعضاء",
+ "trauma": "جراحة الصدمة",
+ "tropical": "الطب الاستوائي"
+ }
},
"heating": {
"label": "تدفئة"
@@ -1339,7 +1755,28 @@
}
},
"historic": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "archaeological_site": "موقع أثري",
+ "boundary_stone": "حجر/علامة حدودية",
+ "building": "مبنى تاريخي",
+ "castle": "حصن / قلعة",
+ "church": "Church",
+ "city_gate": "بوابة المدينة",
+ "fort": "حصن عسكري",
+ "manor": "قصر سكني قديم/تاريخي",
+ "memorial": "نصب تذكاري",
+ "mine": "الفكرة",
+ "monument": "نصب تذكاري",
+ "pillory": "منصة صلب للتشهير بالمجرمين",
+ "railway": "سكة حديد",
+ "ruins": "أطلال/أنقاض/خرائب",
+ "shieling": "مراعي الجبال المهجورة",
+ "tomb": "قبر / ضريح",
+ "wayside_cross": "تقاطع جانب الطريق",
+ "wayside_shrine": "Wayside Shrine",
+ "wreck": "ركام سفينة"
+ }
},
"historic/civilization": {
"label": "الحضارة التاريخية"
@@ -1365,15 +1802,8 @@
"label": "عدد أطواق كرة السلة",
"placeholder": "1، 2، 4..."
},
- "horse_dressage": {
- "label": "ترويض الخيول",
- "options": {
- "equestrian": "نعم",
- "undefined": "لا"
- }
- },
"horse_riding": {
- "label": "ركوب الخيل",
+ "label": "مركز ركوب الخيل",
"options": {
"horse_riding": "نعم",
"undefined": "لا"
@@ -1386,19 +1816,11 @@
"critical": "يتجاوز المألوف: مسموح فقط للفرسان والخيول ذوي الخبرة، يوجد عقبات كبيرة، ويجب فحص الجسور بعناية.",
"dangerous": "خطيرة: مقبول فقط للراكبين والخيول ذوي الخبرة الكبيرة، وفقط في الطقس الجيد.",
"demanding": "بحذر: طريق غير مستوي، عوائق صعبة في بعض الأحيان.",
- "difficult": "صعبة: طريق ضيق ومكشوف. قد يحتوي على عوائق لتخطيها، وممرات ضيقة.",
- "impossible": "وعرة: الطرق والجسور غير مقبولة للخيول. ضيق جدا، ودعم غير كاف، وعوائق كالسلالم. خطر على الحياة."
+ "difficult": "صعبة: طريق ضيق ومكشوف. قد يحتوي على عوائق لتخطيها، وممرات ضيقة."
},
"placeholder": "صعب، خطير...",
"terms": "صعوبة ركوب الخيل"
},
- "horse_stables": {
- "label": "ركوب مستقر",
- "options": {
- "stables": "نعم",
- "undefined": "لا"
- }
- },
"hot_water": {
"label": "المياة الساخنة"
},
@@ -1460,13 +1882,12 @@
"terms": "اتصال انترنت"
},
"internet_access/fee": {
- "label": "الوصول للانترنت",
+ "label": "رسوم استخدام خدمة الإنترنت",
"options": {
"customers": "للعملاء/الزبائن فقط",
"no": "مجاني",
"yes": "مدفوع"
- },
- "terms": "الوصول للانترنت"
+ }
},
"internet_access/ssid": {
"label": "اسم شبكة الواي فاي",
@@ -1476,6 +1897,12 @@
"label": "الفترة الزمنية",
"terms": "الفترة الزمنية"
},
+ "irrigation_pivot": {
+ "options": {
+ "pivot": "نعم",
+ "undefined": "لا"
+ }
+ },
"junction/ref_oneway": {
"label": "رقم التقاطع",
"terms": "رقم التقاطع,الرقم المرجعي للتقاطع"
@@ -1490,11 +1917,34 @@
"terms": "دوار بدون اشارات وأفضلية المسار لمن فيه"
},
"kerb": {
- "label": "منحدر الرصيف المؤدي للشارع"
+ "label": "منحدر الرصيف المؤدي للشارع",
+ "options": {
+ "flush": {
+ "title": "شطف/سيفون/ماء متدفق"
+ },
+ "lowered": {
+ "title": "خفضت"
+ },
+ "no": {
+ "title": "لا"
+ },
+ "raised": {
+ "title": "مرتفع"
+ },
+ "rolled": {
+ "title": "رصيف بحواف مطويه (مستديرة)"
+ },
+ "yes": {
+ "title": "نعم"
+ }
+ }
},
"kerb/height": {
"label": "الارتفاع"
},
+ "kerb/kerb_barrier": {
+ "label": "النوع"
+ },
"kitchen": {
"label": "المطبخ",
"terms": "المطبخ"
@@ -1531,6 +1981,9 @@
"placeholder": "0",
"terms": "الطبقات"
},
+ "layer_1": {
+ "placeholder": "0"
+ },
"leaf_cycle": {
"label": "دورة حياة أوراق الشجر",
"options": {
@@ -1553,7 +2006,8 @@
"terms": "نوع الورقة,نوع ورقة النبات"
},
"leaf_type_singular": {
- "label": "نوع ورق الشجر"
+ "label": "نوع ورق الشجر",
+ "terms": "نوع الورقة,نوع ورقة النبات"
},
"leisure": {
"label": "النوع"
@@ -1574,8 +2028,14 @@
"label": "النوع"
},
"lifeguard": {
+ "label": "النوع"
+ },
+ "lifeguard_check": {
"label": "حارس الشاطئ"
},
+ "lift_gate/type": {
+ "label": "النوع"
+ },
"line_attachment": {
"label": "كيفية ارتباط الكيابل"
},
@@ -1587,6 +2047,10 @@
"label": "مضاء",
"terms": "مضاء,منور،له نور"
},
+ "loc_name": {
+ "label": "الاسم المحلي",
+ "terms": "الاسم الشعبي"
+ },
"location": {
"label": "المكان",
"terms": "المكان,المكان بالضبط"
@@ -1622,17 +2086,43 @@
"label": "التغطية"
},
"map_type": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "toposcope": "لوح طوبوغرافي"
+ }
},
"mapillary": {
"label": "معرف الصورة في مابيلاري",
"terms": "معرف الصورة في مابيلاري,معرف الصورة في mapillary"
},
"marker": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "ground": {
+ "title": "أرضي"
+ },
+ "stone": {
+ "title": "حجر"
+ }
+ }
},
"material": {
"label": "المادة",
+ "options": {
+ "brick": "طوب",
+ "concrete": "خرسانه/اسمنت",
+ "glass": "زجاج",
+ "granite": "جرانيت",
+ "limestone": "حجر الكلس (الجيري)",
+ "metal": "معدني",
+ "plastic": "بلاستيك",
+ "rock": "صخرة",
+ "sand": "رمال/نفود",
+ "sandstone": "الحجر الرملي",
+ "steel": "فولاذ",
+ "stone": "حجر",
+ "wood": "خشبي"
+ },
"terms": "المادة,المواد"
},
"mattress": {
@@ -1643,10 +2133,6 @@
"label": "الحد الأقصى للعمر",
"terms": "الحد الأقصى لسن الشخص,الحد الأعلى لسن الشخص"
},
- "maxheight": {
- "label": "أقصى ارتفاع",
- "terms": "أقصى ارتفاع"
- },
"maxspeed": {
"label": "حدود السرعة",
"placeholder": "40, 50, 60...",
@@ -1663,25 +2149,35 @@
"terms": "سرعة الشاحنات القصوى"
},
"maxstay": {
- "label": "أقصى فترة بقاء",
- "terms": "أقصى فترة بقاء,أقصى فترة مكوث"
- },
- "maxweight": {
- "label": "أقصى وزن",
- "terms": "أقصى وزن,الوزن الأقصى"
- },
- "maxwidth": {
- "label": "العرض الأعظمي",
- "terms": "العرض الأعظمي,العرض الأقصى,أعظم عرض,أقصى عرض"
+ "label": "المدة الزمنية المحددة"
},
"memorial": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "bust": "صدر",
+ "obelisk": "Obelisk",
+ "plaque": "Commemorative Plaque",
+ "sculpture": "منحوتة",
+ "statue": "تمثال",
+ "stone": "حجر"
+ }
+ },
+ "message": {
+ "label": "رسالة",
+ "terms": "رسالة"
},
"microbrewery": {
"label": "Microbrewery"
},
"military_service": {
- "label": "خدمة عسكرية"
+ "label": "خدمة عسكرية",
+ "options": {
+ "air_force": "قوات جوية",
+ "army": "جيش",
+ "coast_guard": "خفر سواحل",
+ "marines": "مشاة البحرية",
+ "navy": "قوات بحرية"
+ }
},
"mimics": {
"label": "محاكاة",
@@ -1699,9 +2195,22 @@
"placeholder": "20, 30, 40...",
"terms": "الحد الأدنى للسرعة"
},
+ "mobile": {
+ "label": "هاتف محمول",
+ "placeholder": "+966 42 123 4567"
+ },
"monitoring_multi": {
"label": "الرصد/المراقبة"
},
+ "mooring": {
+ "label": "مربط سفن ومراكب بحرية",
+ "options": {
+ "commercial": "تجاري",
+ "no": "لا",
+ "private": "خاص",
+ "yes": "نعم"
+ }
+ },
"mtb/scale": {
"label": "صعوبة قيادة الدراجة على الجبل",
"options": {
@@ -1749,6 +2258,10 @@
"placeholder": "الاسم الشائع (إن وجد)",
"terms": "الاسم,المسمى"
},
+ "nat_name": {
+ "label": "الاسم الوطني",
+ "terms": "الاسم الوطني"
+ },
"natural": {
"label": "طبيعي"
},
@@ -1800,8 +2313,65 @@
"label": "ملاحظة",
"terms": "ملاحظة"
},
+ "nudism": {
+ "label": "Nudism",
+ "options": {
+ "customary": "عرفي",
+ "designated": "مخصص/محدد",
+ "no": "محظور",
+ "obligatory": "إجباري",
+ "permissive": "مسموح من المالك",
+ "yes": "مسموح"
+ }
+ },
"office": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "accountant": " مكتب محاسب",
+ "adoption_agency": "Adoption Agency",
+ "advertising_agency": "وكالة إعلانية",
+ "architect": " مكتب مهندس معماري",
+ "association": "مكتب منظمة غير ربحية",
+ "charity": "مكتب منظمة خيرية",
+ "company": "مكتب شركة / مؤسسة",
+ "consulting": "مكتب شركة استشارية",
+ "coworking": "مساحة عمل مشتركة",
+ "diplomatic": "مكتب دبلوماسي",
+ "educational_institution": "مكتب مؤسسة تعليمية ",
+ "employment_agency": "مكتب وكالة توظيف ",
+ "energy_supplier": "مكتب شركة مرافق الكهرباء",
+ "estate_agent": "مكتب عقاري",
+ "financial": "مكتب مالي",
+ "financial_advisor": "المستشار المالي",
+ "forestry": "مكتب إدارة الغابات",
+ "foundation": "مكتب مؤسسة",
+ "government": "مكتب/دائرة حكومية",
+ "guide": "مكتب الدليل السياحي",
+ "insurance": "مكتب تأمينات",
+ "it": "مكتب متخصصي تكنولوجيا المعلومات",
+ "lawyer": "مكتب قانوني ",
+ "moving_company": "مكتب شركة نقل",
+ "newspaper": "صحيفة",
+ "ngo": "مكتب المنظمات العامة الغير حكومية",
+ "notary": "مكتب كتابة عدل / موثق",
+ "physician": "طبيب",
+ "political_party": "مكتب الحزب السياسي",
+ "private_investigator": "مكتب محقق خاص",
+ "quango": "مكتب منظمة غير حكومية شبه مستقلة",
+ "religion": "مكتب ديني",
+ "research": "مكتب بحوث",
+ "security": "مكتب مؤسسات الحراسات الأمنية",
+ "surveyor": "مكتب مساح أرضي",
+ "tax_advisor": "مستشار الضرائب",
+ "telecommunication": "مكتب شركات اتصالات",
+ "therapist": "المعالج",
+ "travel_agent": "وكالة السفر",
+ "water_utility": "مكتب شركة مياه"
+ }
+ },
+ "official_name": {
+ "label": "الاسم الرسمي",
+ "terms": "الاسم الحكومي"
},
"oneway": {
"label": "هذا الطريق يسير باتجاه واحد",
@@ -1840,10 +2410,6 @@
"placeholder": "غير معروف",
"terms": "ساعات العمل,ساعات الدوام"
},
- "opening_hours/covid19": {
- "label": "ساعات العمل خلال أزمة كورونا",
- "terms": "ساعات العمل خلال أزمة كورونا"
- },
"operator": {
"label": "المُشغل",
"terms": "المُشغل,المتعهد,الشركة المشغلة"
@@ -1860,6 +2426,9 @@
},
"terms": "منتجات عضوية"
},
+ "orientation/orientation_parking": {
+ "label": "الاتجاه"
+ },
"outdoor_seating": {
"label": "مقاعد في الهواء الطلق",
"terms": "مقاعد خارجية، مقاعد خارج البناء"
@@ -1886,24 +2455,62 @@
"parking": {
"label": "النوع",
"options": {
- "carports": "مظلات سيارات",
- "garage_boxes": "صناديق المرآب",
- "lane": "على جانب الطريق",
- "layby": "جانب الطريق",
- "multi-storey": "متعدد الطوابق",
- "rooftop": "على سطح بناية",
- "sheds": "مظلله",
- "street_side": "جانب الشارع",
- "surface": "أرضية",
- "underground": "تحت الأرض"
+ "carports": {
+ "title": "مظلات سيارات"
+ },
+ "garage_boxes": {
+ "title": "صناديق المرآب"
+ },
+ "lane": {
+ "title": "على جانب الطريق"
+ },
+ "layby": {
+ "title": "جانب الطريق"
+ },
+ "multi-storey": {
+ "title": "متعدد الطوابق"
+ },
+ "rooftop": {
+ "title": "على سطح بناية"
+ },
+ "sheds": {
+ "title": "مظلله"
+ },
+ "shoulder": {
+ "title": "كتف الطريق"
+ },
+ "street_side": {
+ "title": "جانب الشارع"
+ },
+ "surface": {
+ "title": "السطح"
+ },
+ "underground": {
+ "title": "تحت الأرض"
+ }
}
},
- "parking/orientation": {
- "label": "الاتجاه",
+ "parking/side/orientation": {
"options": {
- "diagonal": "قطري بالنسبة للشارع",
- "parallel": "موازية للشارع",
- "perpendicular": "يلتقي مع الشارع بزاوية مستقيمة"
+ "parallel": "موازية للشارع"
+ },
+ "types": {
+ "parking:left:orientation": "جانب أيسر",
+ "parking:right:orientation": "جانب أيمن"
+ }
+ },
+ "parking/side/parking": {
+ "label": "موقف",
+ "options": {
+ "lane": "على جانب الطريق",
+ "no": "لا",
+ "shoulder": "كتف الطريق",
+ "street_side": "جانب الشارع",
+ "yes": "نعم (غير محدد)"
+ },
+ "types": {
+ "parking:left": "جانب أيسر",
+ "parking:right": "جانب أيمن"
}
},
"parking_entrance": {
@@ -1915,7 +2522,25 @@
"payment_multi": {
"label": "طرق الدفع",
"options": {
- "apple_pay": "أبل باي"
+ "alipay": "خدمة Alipay",
+ "american_express": "بطاقة اميريكان اكسبرس",
+ "apple_pay": "أبل باي",
+ "bancomat": "ماكينة الصراف الآلي",
+ "cash": "نقدي",
+ "cheque": "التحقق",
+ "coins": "عملات معدنية",
+ "diners_club": "داينرز كلوب",
+ "dkv": "DKV",
+ "girocard": "جيروكارد",
+ "google_pay": "جوجل باي",
+ "jcb": "JCB",
+ "maestro": "مايسترو",
+ "mastercard": "بطاقة ماستركارد",
+ "uta": "UTA",
+ "v_pay": "V PAY",
+ "visa": "Visa",
+ "visa_debit": "Visa Debit",
+ "visa_electron": "Visa Electron"
},
"terms": "طرق الدفع,طرق الحساب"
},
@@ -1925,9 +2550,11 @@
},
"phone": {
"label": "هاتف",
- "placeholder": "+966 42 123 4567",
"terms": "هاتف,تلفون"
},
+ "picnic_table": {
+ "label": "طاولة نزهة"
+ },
"pipeline": {
"label": "نوع"
},
@@ -2079,6 +2706,10 @@
"post": {
"label": "عنوان التوصيل/الاستلام"
},
+ "post_box/type": {
+ "label": "النوع",
+ "terms": "نوع,صنف,نمط"
+ },
"power": {
"label": "النوع"
},
@@ -2125,6 +2756,10 @@
},
"ramp": {
"label": "منحدر متنقل",
+ "options": {
+ "no": "لا",
+ "yes": "نعم"
+ },
"terms": "منحدر متنقل,منصة متنقلة للنزول"
},
"rating": {
@@ -2218,6 +2853,10 @@
"label": "اسم طريق المناورة",
"placeholder": "مثل A5"
},
+ "reg_name": {
+ "label": "الاسم الإقليمي",
+ "terms": "الاسم الإقليمي,الاسم المناطقي"
+ },
"relation": {
"label": "النوع"
},
@@ -2266,7 +2905,16 @@
"label": "النوع"
},
"resource": {
- "label": "المصادر"
+ "label": "المصادر",
+ "options": {
+ "aggregate": "تجميع",
+ "clay": "الطين",
+ "coal": "فحم",
+ "gold": "ذهبي",
+ "gravel": "حصباء/حصى",
+ "limestone": "حجر الكلس (الجيري)",
+ "sand": "رمال/نفود"
+ }
},
"restriction": {
"label": "النوع"
@@ -2274,10 +2922,23 @@
"restrictions": {
"label": "قيود الإنعطاف"
},
+ "roller_coaster/track": {
+ "label": "النوع",
+ "options": {
+ "waiting": {
+ "title": "انتظار"
+ }
+ }
+ },
"roof/colour": {
"label": "لون السقف",
"terms": "لون السقف,لون الغما"
},
+ "roof/shape": {
+ "options": {
+ "dome": "قبة"
+ }
+ },
"room": {
"label": "النوع"
},
@@ -2294,6 +2955,11 @@
"route_master": {
"label": "النوع"
},
+ "royal_cypher-GB": {
+ "options": {
+ "no": "لا"
+ }
+ },
"ruins": {
"label": "النوع"
},
@@ -2405,6 +3071,12 @@
"other": "أخرى"
}
},
+ "seamark/harbour/category_marina": {
+ "options": {
+ "marina": "نعم",
+ "marina_no_facilities": "لا"
+ }
+ },
"seamark/mooring/category": {
"label": "التصنيف"
},
@@ -2495,6 +3167,10 @@
"shop": {
"label": "النوع"
},
+ "short_name": {
+ "label": "الاسم المختصر",
+ "terms": "الاسم المختصر"
+ },
"shower": {
"label": "استحمام",
"terms": "استحمام,دش,مسحاح,مشن,مروش"
@@ -2546,10 +3222,30 @@
"terms": "رسائل نصية,sms,رسالة جوال"
},
"social_facility": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "ambulatory_care": "الرعاية الإسعافية",
+ "assisted_living": "شارع معيشة بين المساكن",
+ "food_bank": "بنك الطعام",
+ "group_home": "دار جماعية",
+ "nursing_home": "دار التمريض",
+ "outreach": "التوعية",
+ "shelter": "مأوى/عشة"
+ }
},
"social_facility_for": {
- "label": "نوع الجمهور (الناس) المستهدفين"
+ "label": "نوع الجمهور (الناس) المستهدفين",
+ "options": {
+ "child": "الأطفال",
+ "drug_addicted": "مدمنوا المخدرات",
+ "homeless": "المشردين",
+ "juvenile": "الاحداث",
+ "migrant": "المهاجرين",
+ "orphan": "الأيتام",
+ "senior": "دار المسنين",
+ "veteran": "Veterans",
+ "woman": "نساء"
+ }
},
"source": {
"label": "المصادر",
@@ -2560,8 +3256,7 @@
"osm notes": "ملاحظات خارطة الشارع المفتوحة",
"streetlevel imagery": "صور على مستوى الشارع",
"survey": "استقصاء/استبيان/مسح ميداني"
- },
- "terms": "مصادر,مراجع,موارد"
+ }
},
"species": {
"label": "الصنف",
@@ -2573,45 +3268,55 @@
"terms": "أنواع ويكي بيانات"
},
"sport": {
- "label": "الرياضات"
- },
- "sport_ice": {
"label": "الرياضات",
"options": {
+ "american_football": "كرة القدم الأمريكية",
+ "baseball": "كرة القاعدة",
+ "basketball": "كرة السلة",
+ "beachvolleyball": "ملعب كرة الطائرة الشاطئية",
+ "bmx": "BMX",
+ "chess": "شطرنج",
+ "climbing": "التسلق",
+ "cricket": "كريكت",
"curling": "كيرلنغ",
+ "cycling": "ركوب الدراجات",
+ "darts": "رمي الاسهم المريشة",
+ "dog_racing": "سباق الكلاب",
+ "gaelic_games": "ألعاب الغيلية",
+ "golf": "غولف",
+ "gymnastics": "الجمباز",
+ "horse_racing": "سباق خيول",
"ice_hockey": "الهوكى الجليدى",
"ice_skating": "التزحلق على الجليد",
"ice_stock": "مخزون الجليد",
- "multi": "متعددة"
+ "karting": "سباق الكارت",
+ "motocross": "سباق الدرجات النارية الوعر",
+ "pelota": "كرة الباسك",
+ "rugby_union": "اتحاد الرغبي",
+ "running": "جري",
+ "scuba_diving": "رياضة الغطس",
+ "shooting": "الرماية",
+ "skateboard": "لوح التزلج",
+ "skiing": "التزحلق",
+ "soccer": "كرة قدم",
+ "speedway": "طريق سريع للدراجات النارية",
+ "swimming": "سباحة",
+ "tennis": "التنس",
+ "volleyball": "كرة طائرة"
}
},
- "sport_pub": {
+ "sport/sport_ice": {
+ "label": "الرياضات"
+ },
+ "sport/sport_pub": {
"label": "الرياضات",
- "options": {
- "billiards": "البلياردو",
- "darts": "رمي الاسهم المريشة",
- "table_soccer": "كرة قدم الطاولة"
- },
"terms": "رياضات"
},
- "sport_racing_motor": {
- "label": "الرياضات",
- "options": {
- "karting": "الكارتينج",
- "motocross": "موتوكروس",
- "motor": "رياضة السيارات",
- "speedway": "طريق سريع للدراجات النارية"
- }
+ "sport/sport_racing_motor": {
+ "label": "الرياضات"
},
- "sport_racing_nonmotor": {
- "label": "الرياضة",
- "options": {
- "bmx": "BMX",
- "cycling": "ركوب الدراجات",
- "dog_racing": "سباق الكلاب",
- "horse_racing": "سباق خيول",
- "running": "جري"
- }
+ "sport/sport_racing_nonmotor": {
+ "label": "الرياضات"
},
"stars": {
"label": "نجوم",
@@ -2637,7 +3342,8 @@
}
},
"street_cabinet": {
- "label": "النوع"
+ "label": "النوع",
+ "terms": "نوع,صنف,نمط"
},
"stroller": {
"label": "السماح بدخول عربيات الأطفال",
@@ -2660,10 +3366,20 @@
"placeholder": "غير معروف",
"terms": "هيكلة,بنية,منظومة"
},
+ "structure_canal": {
+ "label": "بنية",
+ "options": {
+ "bridge": "جسر",
+ "tunnel": "نفق"
+ },
+ "placeholder": "غير معروفة"
+ },
"structure_power": {
"label": "بنية",
"options": {
- "solid": "صلب"
+ "lattice": "شبكة فولاذية",
+ "solid": "صلب",
+ "tubular": "انبوبي"
}
},
"structure_waterway": {
@@ -2685,7 +3401,14 @@
"terms": "موضوع ويكي بيانات"
},
"substance": {
- "label": "مادة"
+ "label": "مادة",
+ "options": {
+ "fuel": "وقود",
+ "gas": "غاز طبيعي",
+ "hot_water": "ماء ساخن",
+ "sewage": "مياه المجاري",
+ "water": "مياه شرب"
+ }
},
"substation": {
"label": "النوع",
@@ -2700,6 +3423,7 @@
"field_gathering": "ميدان تجمع",
"industrial": "صناعي",
"measurement": "قياس",
+ "transmission": "مسارات النقل",
"valve": "صمام",
"valve_group": "مجموعة صمامات"
}
@@ -2717,16 +3441,20 @@
"options": {
"artificial_turf": "عشب صناعي",
"asphalt": "أسفلت",
+ "clay": "الطين",
"compacted": "مضغوط",
"concrete": "خرسانه/اسمنت",
"dirt": "ترابية",
"grass": "عشب",
"gravel": "حصباء/حصى",
"ground": "أرضي",
+ "metal": "معدني",
"paved": "مرصوف/معبد",
"paving_stones": "مرصوف بالطوب",
+ "pebblestone": "بحص متنوع",
"salt": "ملح",
"sand": "رمل",
+ "tartan": "طرطان",
"unpaved": "غير مرصوف/معبد",
"wood": "خشبي",
"woodchips": "رقائق الخشب"
@@ -2780,7 +3508,10 @@
}
},
"swimming_pool": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "spa": "منتجع صحي"
+ }
},
"switch": {
"label": "النوع",
@@ -2808,6 +3539,16 @@
"target": {
"label": "Target"
},
+ "taxi_vehicle": {
+ "options": {
+ "motorcar": {
+ "title": "سيارة"
+ },
+ "motorcycle": {
+ "title": "دراجة نارية"
+ }
+ }
+ },
"taxon": {
"label": "الأصنوفة",
"placeholder": "Acer platanoides Columnare, Pyrus calleryana Chanticleer …",
@@ -2817,11 +3558,19 @@
"label": "لون / نوع نقطة الإنطلاق"
},
"telecom": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "connection_point": "وصلة",
+ "data_center": "مركز بيانات",
+ "service_device": "جهاز الخدمة"
+ }
},
"telecom/medium": {
"label": "وسيط"
},
+ "telescope/type": {
+ "label": "النوع"
+ },
"tidal": {
"label": "المد والجزر",
"terms": "مد وجزر"
@@ -2846,6 +3595,11 @@
"label": "مغاسل يدين",
"terms": "مغاسل يدين,مغسلة,ميضأة"
},
+ "toilets/menstrual_products": {
+ "options": {
+ "no": "لا"
+ }
+ },
"toilets/position": {
"label": "أنواع المراحيض",
"terms": "المراحيض,وضعيات قضاء الحاجة"
@@ -2863,7 +3617,18 @@
"terms": "رسوم"
},
"tomb": {
- "label": "النوع"
+ "label": "النوع",
+ "options": {
+ "columbarium": "أكشاك الجرار (كولومباريوم)",
+ "crypt": "سرداب",
+ "hypogeum": "هيبوجيوم",
+ "mausoleum": "Mausoleum",
+ "pyramid": "هرم",
+ "sarcophagus": "التابوت الحجري",
+ "table": "هضبة المرور",
+ "tumulus": "جثوة",
+ "vault": "خزنة/خزانات"
+ }
},
"tourism": {
"label": "النوع"
@@ -2897,7 +3662,20 @@
},
"traffic_calming": {
"label": "النوع",
- "terms": "نوع,صنف,نمط"
+ "options": {
+ "bump": "مطب قصير لتخفيف السرعة",
+ "chicane": "منعطفات صناعية لتخفيف السرعة",
+ "choker": "بروز هزاز للتنبية بتهدئة السرعة",
+ "cushion": "مطبات مركبات صغيرة",
+ "dip": "منخفض لتهدئة السرعة ويسمح بعبور المياة",
+ "hump": "مطب طويل لتخفيف السرعة",
+ "mini_bumps": "مطبات تخفيف سرعة صغيرة",
+ "rumble_strip": "مطبات قصيرة ومنخفضة متتالية على شكل شريط",
+ "table": "مطب مرتفع وطويل لتخفيف السرعة بشكل جبري"
+ }
+ },
+ "traffic_calming_road": {
+ "label": "تخفيف السرعة"
},
"traffic_sign": {
"label": "علامة مرورية"
@@ -3032,7 +3810,14 @@
}
},
"utility": {
- "label": "المرفق"
+ "label": "المرفق",
+ "options": {
+ "gas": "غاز",
+ "oil": "نفط",
+ "power": "طاقة",
+ "telecom": "الاتصالات السلكية واللاسلكية",
+ "water": "مياه"
+ }
},
"utility_semi": {
"label": "المرافق"
@@ -3054,7 +3839,25 @@
}
},
"vending": {
- "label": "أنواع البضائع"
+ "label": "أنواع البضائع",
+ "options": {
+ "bread": "خبز",
+ "cigarettes": "Cigarettes",
+ "coffee": "قهوة",
+ "condoms": "Condoms",
+ "drinks": "المشروبات",
+ "eggs": "بيض",
+ "electronics": "الالكترونيات",
+ "excrement_bags": "أكياس البراز",
+ "food": "أغذية",
+ "fuel": "وقود",
+ "ice_cream": "بوظة/آيسكريم",
+ "milk": "حليب",
+ "newspapers": "Newspapers",
+ "pizza": "بيتزا",
+ "sweets": "حلويات",
+ "water": "مياه شرب"
+ }
},
"vhf": {
"label": "رقم موجة VHF",
@@ -3111,7 +3914,11 @@
"label": "النوع"
},
"waste": {
- "label": "نفايات"
+ "label": "نفايات",
+ "options": {
+ "cigarettes": "Cigarettes",
+ "trash": "سلة المهملات"
+ }
},
"water": {
"label": "النوع"
@@ -3122,6 +3929,9 @@
"water_source": {
"label": "مصدر المياه",
"options": {
+ "pond": "بركة ماء",
+ "river": "نهر / مجرى مائي واسع",
+ "stream": "مجرى مائي / شعيب",
"water_tank": "خزان ماء"
}
},
@@ -3138,6 +3948,9 @@
"placeholder": "https://example.com",
"terms": "الموقع الإلكتروني,الصفحة الإلكترونية"
},
+ "website/menu": {
+ "placeholder": "https://example.com"
+ },
"wetland": {
"label": "النوع",
"options": {
@@ -3492,6 +4305,9 @@
"name": "عيادة الإجهاض",
"terms": "عيادة الإجهاض"
},
+ "amenity/clinic/dialysis": {
+ "name": "غسيل كلى"
+ },
"amenity/clinic/fertility": {
"name": "عيادة الخصوبة",
"terms": "عيادة الخصوبة"
@@ -3504,10 +4320,6 @@
"name": "مزولة",
"terms": "المزولة الشمسية"
},
- "amenity/college": {
- "name": "أرض كلية",
- "terms": "أرض كلية,أرض جامعية,الحرم الجامعي"
- },
"amenity/community_centre": {
"name": "مركز اجتماعي",
"terms": "مركز اجتماعي"
@@ -3550,9 +4362,9 @@
"name": "طبيب",
"terms": "طبيب"
},
- "amenity/doctors/gynaecology": {
- "name": "طبيب أمراض نساء",
- "terms": "طبيب أمراض نساء"
+ "amenity/doctors/podiatry": {
+ "name": "طبيب الأقدام",
+ "terms": "طبيب الأقدام; الأرجل"
},
"amenity/dojo": {
"name": "دوجو / أكاديمية الفنون القتالية",
@@ -3569,10 +4381,6 @@
"amenity/driver_training": {
"name": "أراضي تعليم السيلقة"
},
- "amenity/driving_school": {
- "name": "مدرسة تعليم القيادة",
- "terms": "مدرسة تعليم القيادة"
- },
"amenity/embassy": {
"name": "سفارة"
},
@@ -3683,18 +4491,6 @@
"amenity/karaoke_box": {
"name": "Karaoke Box"
},
- "amenity/kindergarten": {
- "name": "أرض حضانة / روض",
- "terms": "روضة,رياض أطفال,تمهيدي ، حضانة ، روض"
- },
- "amenity/kneipp_water_cure": {
- "name": "بركة علاج القدم بالماء",
- "terms": "بركة علاج القدم بالماء"
- },
- "amenity/language_school": {
- "name": "مدرسة لغات",
- "terms": "مدرسة لغات"
- },
"amenity/lavoir": {
"name": "مكان غسيل الملابس يدوياً",
"terms": "مكان غسيل الملابس يدوياً"
@@ -3740,10 +4536,6 @@
"name": "إيجار دراجات نارية",
"terms": "إيجار دراجات نارية"
},
- "amenity/music_school": {
- "name": "مدرسة موسيقى",
- "terms": "مدرسة موسيقى"
- },
"amenity/nightclub": {
"name": "ملهى ليلي",
"terms": "كباريه"
@@ -3867,10 +4659,6 @@
"name": "مكتب البريد",
"terms": "دائرة البريد,مكتب البريد,مكتب بريد"
},
- "amenity/prep_school": {
- "name": "مدرسة إعداد للاختبارات/دروس خصوصية",
- "terms": "مدرسة إعداد للاختبارات/دروس خصوصية ، ساعات اضافية"
- },
"amenity/prison": {
"name": "مرافق/أراضي سجن",
"terms": "مرافق/أراضي سجن"
@@ -3915,10 +4703,6 @@
"name": "مركز إعادة تدوير",
"terms": "مركز إعادة تدوير"
},
- "amenity/recycling_container": {
- "name": "حاوية إعادة التدوير",
- "terms": "حاوية إعادة التدوير"
- },
"amenity/refugee_site": {
"name": "مخيم لاجئين",
"terms": "مخيم لاجئين"
@@ -3939,10 +4723,6 @@
"name": "مطعم آسيوي",
"terms": "مطعم آسيوي"
},
- "amenity/restaurant/barbeque": {
- "name": "مطعم باربيكيو",
- "terms": "مطعم باربيكيو"
- },
"amenity/restaurant/chinese": {
"name": "مطعم صيني",
"terms": "مطعم صيني"
@@ -4011,10 +4791,6 @@
"name": "مكب صرف صحي للكرفانات",
"terms": "مكب دورات مياه الكرفانات"
},
- "amenity/school": {
- "name": "أرض مدرسة",
- "terms": "مدرسة"
- },
"amenity/shelter": {
"name": "مأوى/عشة",
"terms": "مأوى,ملجأ,ملاذ,سقيفة,وقاء,عشة,صندقه"
@@ -4099,9 +4875,6 @@
"name": "مسرح",
"terms": "مسرح"
},
- "amenity/theatre/type/amphi": {
- "name": "مسرح روماني"
- },
"amenity/ticket_validator": {
"name": "مدقق التذاكر",
"terms": "مدقق التذاكر"
@@ -4137,10 +4910,6 @@
"name": "عربة كورال",
"terms": "عربة كورال"
},
- "amenity/university": {
- "name": "أرض الجامعة",
- "terms": "أرض جامعة,حرم جامعي"
- },
"amenity/vacuum_cleaner": {
"name": "محطة مكنسة سيارات",
"terms": "محطة كنس وتنظيف داخلي السيارة"
@@ -4204,9 +4973,9 @@
"name": "آلة بيع مواد غذائية",
"terms": "آلة بيع مواد غذائية"
},
- "amenity/vending_machine/fuel": {
- "name": "مضخة وقود",
- "terms": "مضخة وقود,مضخة غاز,مضخة بترول,مضخة جاز,مضخة سولار"
+ "amenity/vending_machine/food/snacks": {
+ "name": "آلة بيع الوجبات الخفيفة",
+ "terms": "آلة بيع الوجبات الخفيفة"
},
"amenity/vending_machine/ice_cream": {
"name": "آلة بيع آيس كريم",
@@ -4236,10 +5005,6 @@
"name": "آلة بيع طوابع بريدية",
"terms": "آلة بيع طوابع بريدية"
},
- "amenity/vending_machine/sweets": {
- "name": "آلة بيع الوجبات الخفيفة",
- "terms": "آلة بيع الوجبات الخفيفة"
- },
"amenity/veterinary": {
"name": "عيادة بيطرية",
"terms": "بيطري، طبيب حيوانات"
@@ -4248,10 +5013,6 @@
"name": "قمامة لبراز الكلاب",
"terms": "حاوية براز الكلاب"
},
- "amenity/waste_basket": {
- "name": "سلة مهملات",
- "terms": "سلة المهملات,سلة القمامة,قمامة,مهملات,زبالة"
- },
"amenity/waste_disposal": {
"name": "حاوية قمامة متحركة",
"terms": "حاوية قمامة قابل للنقل"
@@ -4295,8 +5056,7 @@
"terms": "حظيرة حيوانات،محجر حيوانات،حوش حيوانات،حوز حيوانات،ضميمة حيوانات"
},
"attraction/big_wheel": {
- "name": "دولاب هواء",
- "terms": "دولاب هواء; العجلة الكبيرة"
+ "name": "عجلة فيريس"
},
"attraction/bumper_car": {
"name": "Bumper Cars"
@@ -4464,14 +5224,6 @@
"name": "بوابة لا تسمح بعبور الماشية",
"terms": "بوابة منع الماشية"
},
- "barrier/lift_gate": {
- "name": "حاجز عمودي يرتفع وينخفض",
- "terms": "بوابة الرافعة,حاجز عمودي,حاجز عمودي يرتفع وينخفض,بوابة عامودية,بوابة مواقف عامودية"
- },
- "barrier/log": {
- "name": "شجرة ساقطة",
- "aliases": "شجرة واقعة"
- },
"barrier/motorcycle_barrier": {
"name": "حاجز منع مرور الدراجات النارية",
"terms": "حاجز منع مرور الدراجات النارية,عائق لمنع مرور الدراجات النارية"
@@ -4533,6 +5285,9 @@
"name": "حدود إدارية",
"terms": "حدود إدارية"
},
+ "boundary/hazard": {
+ "name": "منطقة خطرة"
+ },
"bridge/support": {
"name": "دعامات جسر",
"terms": "دعامات جسر,صبات جسر,صبات حاملة للجسر"
@@ -4738,10 +5493,6 @@
"name": "مبنى الملعب",
"terms": "مبنى الملعب"
},
- "building/static_caravan": {
- "name": "منزل متحرك موجود في مكانه لفترة",
- "terms": "مقطورة متحركة ثابتة في مكانها لفترة"
- },
"building/sty": {
"name": "Pigsty"
},
@@ -4753,10 +5504,6 @@
"name": "مبنى المعبد",
"terms": "مبنى المعبد"
},
- "building/terrace": {
- "name": "صف منازل متلاصقه",
- "terms": "صف منازل"
- },
"building/train_station": {
"name": "مبنى محطة القطار"
},
@@ -5045,12 +5792,6 @@
"name": "مزيل الرجفان (جهاز الصدمات الكهربائية)",
"terms": "مزيل الرجفان,جهاز الصدمات الكهربائية"
},
- "emergency/designated": {
- "name": "محدد لدخول الطوارئ فقط"
- },
- "emergency/destination": {
- "name": "وجهة وصول للطوارئ فقط"
- },
"emergency/fire_alarm": {
"name": "صندوق إنذار الحريق",
"terms": "صندوق ابلاغ عن الحريق"
@@ -5091,19 +5832,10 @@
"name": "منقذ جبلي",
"terms": "منقذ متسلقي الجبال,منقذ للمناطق الوعرة,منقذ متسلقين,منقذ"
},
- "emergency/no": {
- "name": "لا يسمح بالوصول في حالات الطوارئ"
- },
- "emergency/official": {
- "name": "يسمح رسميا بالوصول في حالات الطوارئ"
- },
"emergency/phone": {
"name": "هاتف طوارئ",
"terms": "هاتف طوارئ,هاتف حالات طارئة"
},
- "emergency/private": {
- "name": "يسمح بشكل خاص بالوصول في الحالات الطارئة"
- },
"emergency/siren": {
"name": "صفاّرة إنذار",
"terms": "صفاّرة إنذار الطوارئ,زمارة,صفارة"
@@ -5120,9 +5852,6 @@
"name": "خزان مياه الطوارئ",
"terms": "خزان مياه الطوارئ,حوض مياه الطوارئ,بركة مياه الطوارئ"
},
- "emergency/yes": {
- "name": "يسمح بالوصول في حالات الطوارئ"
- },
"entrance": {
"name": "مدخل / مخرج",
"terms": "مدخل/مخرج,دخول/خروج,مخرج,مدخل,خروج"
@@ -5296,25 +6025,17 @@
"terms": "ممر داخلي; رواق"
},
"highway/crossing": {
- "name": "معبر/خط مشاة"
- },
- "highway/crossing/marked": {
- "name": "معبر مشاة بعلامات مرورية"
+ "name": "معبر/خط مشاة",
+ "terms": "تقاطع,معبر"
},
"highway/crossing/traffic_signals": {
"name": "معبر مشاة بإشارات",
"terms": "معبر مشاة بإشارات"
},
- "highway/crossing/uncontrolled": {
- "name": "معبر مشاة بعلامات مرورية"
- },
"highway/crossing/unmarked": {
"name": "معبر مشاة بدون علامات أو إشارة مرورية",
"terms": "معبر مشاة بدون علامات مرورية أو إشارة مرورية"
},
- "highway/crossing/zebra": {
- "name": "معبر مشاة بعلامات مرورية"
- },
"highway/cycleway": {
"name": "مسار دراجات",
"terms": "طريق دراجات; مسار دراجات"
@@ -5330,8 +6051,9 @@
"name": "معبر مشاة ودراجات هوائية",
"terms": "معبر مشاة ودراجات هوائية"
},
- "highway/cycleway/crossing/marked": {
- "name": "معبر دراجات هوائية بعلامات مرورية"
+ "highway/cycleway/crossing/uncontrolled": {
+ "name": "معبر دراجات هوائية بعلامات مرورية",
+ "terms": "معبر دراجات هوائية بعلامات مرورية"
},
"highway/cycleway/crossing/unmarked": {
"name": "معبر دراجات هوائية بدون علامات مرورية",
@@ -5372,6 +6094,14 @@
"highway/footway/crossing": {
"name": "معبر مشاة"
},
+ "highway/footway/crossing/traffic_signals": {
+ "name": "معبر مشاة بإشارات",
+ "terms": "معبر مشاة بإشارات"
+ },
+ "highway/footway/crossing/unmarked": {
+ "name": "معبر مشاة بدون علامات أو إشارة مرورية",
+ "terms": "معبر مشاة بدون علامات أو إشارة مرورية"
+ },
"highway/footway/informal": {
"name": "مسار للمشاة غير رسمي"
},
@@ -5379,10 +6109,16 @@
"name": "رصيف مشاة",
"terms": "رصيف مشاة,رصيف المشاة,رصيف جانب الطريق للمشاة"
},
+ "highway/footway/traffic_island": {
+ "name": "جزيرة مشاة بين طريقين"
+ },
"highway/give_way": {
"name": "علامة \"أعط أفضلية المرور لمن هم في الطريق الآخر\"",
"terms": "علامة \"أعط أفضلية المرور لمن هم في الطريق الآخر\",علامة \"أعط الأفضلية\",علامة \"أفضلية المرور لمن هم في الدور\",علامة \"أعط أفضلية المرور لمن هم في الطريق السريع\""
},
+ "highway/ladder": {
+ "name": "سلم"
+ },
"highway/living_street": {
"name": "شارع معيشة بين المساكن",
"terms": "شارع معيشة,شارع سكني حي,شارع سكني ينخفض فيه مرور المركبات,شارع سكني للمشاة الأفضلية فيه,شارع سكني محدود السرعة,شارع سكني الأفضلية فيه للمشاة"
@@ -5419,6 +6155,9 @@
"name": "ممر خشبي",
"terms": "ممر خشبي,درب خشبي,مسار على ألواح خشب"
},
+ "highway/path/crossing": {
+ "name": "معبر مشاة ودراجات هوائية"
+ },
"highway/path/informal": {
"name": "مسار غير رسمي",
"terms": "مسار غير رسمي"
@@ -5811,10 +6550,6 @@
"name": "قاعدة بحرية",
"terms": "قاعدة بحرية,قاعدة مائية"
},
- "landuse/military/danger_area": {
- "name": "منطقة خطرة",
- "terms": "منطقة خطر; خطر"
- },
"landuse/military/obstacle_course": {
"name": "تدريب عسكري لتجاوز العقبات",
"terms": "تدريب عسكري لتجاوز العقبات"
@@ -5916,10 +6651,6 @@
"name": "قاعة الرقص",
"terms": "قاعة الرقص"
},
- "leisure/dancing_school": {
- "name": "مدرسة رقص",
- "terms": "مدرسة الرقص"
- },
"leisure/disc_golf_course": {
"name": "مكان للعب قرص الجولف",
"terms": "مكان للعب قرص الجولف"
@@ -6103,10 +6834,6 @@
"name": "ملعب كريكت",
"terms": "ملعب كريكت"
},
- "leisure/pitch/equestrian": {
- "name": "حلبة ركوب الخيل",
- "terms": "حلبة ركوب الخيل"
- },
"leisure/pitch/field_hockey": {
"name": "مساحة ملعب الهوكى",
"terms": "مساحة ملعب الهوكى"
@@ -6259,6 +6986,9 @@
"name": "مضمار السباق (غير رياضة السيارات)",
"terms": "مضمار السباق (غير رياضة السيارات)"
},
+ "leisure/track/athletics/running": {
+ "name": "مسار جري"
+ },
"leisure/track/cycling": {
"name": "مسار دراجات هوائية",
"terms": "مسار دراجات هوائية"
@@ -6341,6 +7071,9 @@
"name": "رافعة ثابتة",
"terms": "رافعة"
},
+ "man_made/crane/portal_crane": {
+ "name": "رافعة جسرية"
+ },
"man_made/cross": {
"name": "Cross"
},
@@ -6364,6 +7097,10 @@
"name": "سارية العلم",
"terms": "سارية العلم"
},
+ "man_made/fuel_pump": {
+ "name": "مضخة وقود",
+ "terms": "مضخة وقود,مضخة غاز,مضخة بترول,مضخة جاز,مضخة سولار"
+ },
"man_made/gasometer": {
"name": "خزان غاز كبير فوق الأرض",
"terms": "خزان غاز كبير فوق الأرض,خزان غاز كبير,خزان غاز,مستودع غاز,حاوية غاز كبيرة"
@@ -6507,9 +7244,6 @@
"name": "نقطة مسح",
"terms": "نقطة مسح"
},
- "man_made/torii": {
- "name": "Torii"
- },
"man_made/tower": {
"name": "برج",
"terms": "برج"
@@ -6725,6 +7459,9 @@
"name": "شجيرة",
"terms": "شجيرة"
},
+ "natural/sinkhole": {
+ "name": "دِحل/خفس/هبوط أرضي"
+ },
"natural/spring": {
"name": "عين / نبع / ينبوع",
"terms": "نبع,منبع,عين,ينبوع,عيون"
@@ -6733,6 +7470,9 @@
"name": "صخرة كبيرة غير متصلة بالأرض",
"terms": "صخرة كبيرة غير متصلة بالأرض"
},
+ "natural/strait": {
+ "name": "مضيق"
+ },
"natural/tree": {
"name": "شجرة",
"terms": "شجرة"
@@ -7043,6 +7783,13 @@
"office/yes": {
"name": "مكتب (نوع غير محدد)"
},
+ "pipeline/substation": {
+ "name": "محطة فرعية لخطوط الأنابيب"
+ },
+ "pipeline/valve": {
+ "name": "صمام خط أنابيب",
+ "terms": "صمام خط أنابيب"
+ },
"piste/downhill": {
"name": "سباق التزلج على المنحدرات",
"terms": "سباق التزلج على المنحدرات"
@@ -7063,10 +7810,6 @@
"name": "مسار تزلج عبر الريف",
"terms": "مسار تزلج عبر الريف"
},
- "piste/piste": {
- "name": "ممر رياضة الثلوج / الزحلقة",
- "terms": "ممر رياضة الثلوج / الزحلقة"
- },
"piste/skitour": {
"name": "مسار للتزلج على الجليد",
"terms": "مسار للتزلج على الجليد"
@@ -8051,8 +8794,7 @@
"terms": "محل بيع أجهزة عالية الدقة"
},
"shop/hobby": {
- "name": "متاجر الهوايات",
- "terms": "متاجر الهوايات"
+ "name": "متاجر الهوايات"
},
"shop/household_linen": {
"name": "محل المفروشات والأغطية المنزلية",
@@ -8158,6 +8900,9 @@
"name": "متجر المكملات الغذائية",
"terms": "متجر المكملات الغذائية، مكملات غذائية"
},
+ "shop/nuts": {
+ "name": "متجر المكسرات"
+ },
"shop/optician": {
"name": "متجر نظارات",
"terms": "محل بيع نظارات,عدسات"
@@ -8194,10 +8939,6 @@
"name": "محل بيع حيوانات أليفة",
"terms": "محل حيوانات أليفة"
},
- "shop/pet_grooming": {
- "name": "متجر العناية بالحيوانات الأليفة",
- "terms": "متجر العناية بالحيوانات الأليفة"
- },
"shop/photo": {
"name": "محل تصوير",
"terms": "متجر تظّهير الصور، محل تصوير، مصور"
@@ -8337,7 +9078,8 @@
"terms": "محل بيع إطارات,كفرات,بيع كفرات"
},
"shop/vacant": {
- "name": "محل شاغر"
+ "name": "محل شاغر",
+ "terms": "محل شاغر,محل فاضي"
},
"shop/vacuum_cleaner": {
"name": "متجر المكنسات الكهربائية",
@@ -8586,10 +9328,6 @@
"name": "مطب طويل لتخفيف السرعة",
"terms": "مطب لتخفيف السرعة"
},
- "traffic_calming/island": {
- "name": "جزيرة فاصلة بين مسارين طريق",
- "terms": "جزيرة فاصلة بين مسارين طريق"
- },
"traffic_calming/mini_bumps": {
"name": "مطبات تخفيف سرعة صغيرة",
"terms": "مطبات تخفيف سرعة صغيرة"
diff --git a/dist/translations/ar.min.json b/dist/translations/ar.min.json
index 0fca9697..c04fbe34 100644
--- a/dist/translations/ar.min.json
+++ b/dist/translations/ar.min.json
@@ -1 +1 @@
-{"ar":{"presets":{"categories":{"category-barrier":{"name":"عناصر الحواجز"},"category-building":{"name":"عناصر المباني"},"category-golf":{"name":"عناصر ملعب الجولف"},"category-landuse":{"name":"عناصر الأراضي"},"category-natural":{"name":"عناصر طبيعية"},"category-path":{"name":"مسارات"},"category-playground":{"name":"معدات/أدوات ملاعب الأطفال"},"category-rail":{"name":"سكك حديدية"},"category-restriction":{"name":"عناصر للقيود والمحددات"},"category-road_major":{"name":"طرق رئيسية"},"category-road_minor":{"name":"طرق فرعية"},"category-road_service":{"name":"طرق خدمة"},"category-route":{"name":"عناصر المسارات"},"category-utility":{"name":"عناصر الخدمات"},"category-water":{"name":"مسطحات مائية"},"category-waterway":{"name":"مجاري مائية"}},"fields":{"access":{"label":"وصول مسموح","options":{"customers":{"description":"مخصص فقط للعملاء المتوجهين إلى المكان","title":"للعملاء - الزبائن"},"designated":{"description":"يسمح بالوصول حسب الارشادات او القوانين المحلية","title":"مخصص/محدد"},"destination":{"description":"يسمح بالوصول إلى الوجهة المقصودة والمحددة في المكان دون سائر المكان","title":"الوجهة"},"dismount":{"description":"يسمح بالوصول ولكن يجب على السائق الترجل","title":"مترجل"},"no":{"description":"الوصول غير مسموح لعامة الناس","title":"محظور"},"permissive":{"description":"الوصول مسموح إلى أن يحين الوقت الذي يلغي فيه المالك الإذن بذلك","title":"مرخص"},"permit":{"description":"لا يسمح بالوصول إلا برخصة أو تصريح ساري المفعول","title":"تصريح"},"private":{"description":"لا يسمح بالوصول إلا بإذن من المالك على أساس فردي","title":"خاص"},"unknown":{"description":"صلاحية السماح بالوصول غير معروفة أو غير واضحة","title":"غير معروفة"},"yes":{"description":"الوصول مسموح طبقا للقانون ; حق المرور","title":"مسموح"}},"placeholder":"غير محدد","terms":"الوصول المسموح به,السماح بالدخول,يسمح بالدخول","types":{"access":"الكل","bicycle":"دراجات هوائية","foot":"بالقدم","horse":"أحصنة","motor_vehicle":"سيارات"}},"access_aisle":{"label":"النوع"},"access_simple":{"label":"الوصول المسموح به","options":{"customers":"للعملاء فقط","no":"لا شيء","permissive":"مسموح من المالك","permit":"بتصريح فقط","private":"خاص","unknown":"غير معروفة","yes":"عام"},"terms":"الوصول المسموح به,السماح بالدخول,يسمح بالدخول"},"activity":{"label":"نشاط","options":{"bicycle":"ركوب الدراجات","hiking":"المشي الخلوي (هايكنج)","horse":"ركوب الخيل","mtb":"ركوب الدراجات في الجبل","ski":"التزحلق"}},"addr/interpolation":{"label":"النوع","options":{"all":"الكل","alphabetic":"أبجدي","even":"زوجي","odd":"فردي"}},"address":{"label":"العنوان","placeholders":{"block_number":"رقم المربع/البلوك","block_number!jp":"رقم المربع/البلوك","city":"المدينة","city!cn":"المدينة/المحافظة/الأمة أو التحالف","city!jp":"مدينةكبيرة/مدينة/قرية/جناح طوكيو الخاص","city!vn":"مدينة /بلدة","conscriptionnumber":"123","country":"الدولة","county":"المقاطعة/الإقليم","county!jp":"المديرية/المركز","district":"المديرية/المركز","district!cn":"مديرية/مقاطعة/شعار","district!vn":"الدائرة/المدينة/المديرية أو المركز","floor":"الطابق/الدور","hamlet":"قرية صغيرة/هجرة","housename":"اسم المنزل","housenumber":"123","housenumber!jp":"رقم المبنى/ رقم القطعة","neighbourhood":"حي","neighbourhood!jp":"تشومي / عزة / كوازا","place":"المكان","postcode":"الرمز البريدي","province":"المحافظة","province!cn":"المحافظة/البلدية/AR/SAR","province!jp":"العمالة (تقسيم إداري)","quarter":"مربع","quarter!jp":"أزا / ماشي","state":"ولاية","street":"شارع","subdistrict":"مديرية فرعية","subdistrict!vn":"جناح/جمعية/بلدة صغيرة","suburb":"ضاحية","suburb!jp":"جناح","unit":"وحدة"},"terms":"العنوان,عنوان"},"admin_level":{"label":"المستوى الإداري"},"aerialway":{"label":"النوع"},"aerialway/access":{"label":"الوصول","options":{"both":"كلاهما","entry":"مدخل","exit":"مخرج"}},"aerialway/bubble":{"label":"فقاعة"},"aerialway/capacity":{"label":"السعة (لكل ساعة)","placeholder":"500، 2500، 5000..."},"aerialway/duration":{"label":"المدة (بالدقائق)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"مسخن"},"aerialway/occupancy":{"label":"عدد المقاعد","placeholder":"...8 ,4 ,2"},"aerialway/summer/access":{"label":"السماح بالوصول (في الصيف)","options":{"both":"كلاهما","entry":"مدخل","exit":"مخرج"}},"aeroway":{"label":"النوع"},"agrarian":{"label":"المنتجات"},"air_conditioning":{"label":"تكييف هواء","terms":"تكييف الهواء,التكييف,التبريد"},"amenity":{"label":"النوع"},"animal_boarding":{"label":"للحيوانات"},"animal_breeding":{"label":"للحيوانات"},"animal_shelter":{"label":"للحيوانات"},"archaeological_site":{"label":"نوع"},"architect":{"label":"مهندس معماري","terms":"مهندس معماري,مصمم"},"area/highway":{"label":"النوع"},"artist":{"label":"فنان/رسام"},"artwork_type":{"label":"النوع","options":{"bust":"صدر","graffiti":"جدارية","mosaic":"فسيفساء","mural":"جدار","painting":"لوحة","sculpture":"منحوتة","statue":"تمثال"}},"ascent":{"label":"إجمالي الصعود","terms":"إجمالي الصعود"},"atm":{"label":"ماكينة صرافة آلية"},"attraction":{"label":"النوع"},"automated":{"label":"آلي"},"baby_feeding":{"label":"منطقة رضاعة الأطفال","options":{"no":"لا شيء","room":"غرفة مخصصة","yes":"مساحة محددة"},"terms":"منطقة رضاعة الأطفال,منطقة تغيير حفائظ الأطفال,منطقة تلبيس الأطفال,منطقة ترضيع الأطفال"},"baby_seat":{"label":"مقعد طفل"},"backcountry":{"label":"منطقة تخييم بدون مرافق","terms":"منطقة تخييم بدون مرافق,مخيمات,تخييم"},"backrest":{"label":"كرسي بمسند للظهر"},"bar":{"label":"بار"},"barrier":{"label":"النوع"},"barrier_planter":{"label":"حاجز","options":{"planter":"نعم","undefined":"لا"}},"basin":{"label":"النوع"},"bath/open_air":{"label":"في الهواء الطلق/خارج البناء"},"bath/sand_bath":{"label":"حمام رملي"},"bath/type":{"label":"مخصوص"},"beauty":{"label":"خدمات","options":{"cosmetics":"مستحضرات التجميل","hair_removal":"مزيل شعر","nails":"مانيكير/باديكير","skin_care":"العناية بالجلد","spa":"منتجع اليوم","tanning":"تسمير","waxing":"إزالة الشعر بالشمع"}},"bench":{"label":"مقعد","terms":"مقعد,مقعد طويل"},"bicycle_parking":{"label":"النوع","options":{"building":"في مبنى","handlebar_holder":"حامل المقود","lockers":"خزائن فردية","shed":"سقيفة مغلقة","stands":"حامل (يدعم إطار الدراجة)","wall_loops":"مقود العجلات (يدعم العجلة فقط)"}},"bike_ride":{"label":"اصطفاف وركوب","terms":"اصطفاف وركوب,ركن الدراجة والركوب"},"bin":{"label":"سلة النفايات","terms":"سلة المهملات,سلة القمامة,قمامة,مهملات,زبالة"},"blind":{"label":"وصول/دخول المكفوفين","options":{"limited":"محدود","no":"لا","yes":"نعم"},"terms":"وصول المكفوفين,وصول العميان,دخول المكفوفين,دخول العميان"},"blood_components":{"label":"مكونات الدم","options":{"plasma":"بلازما","platelets":"صفائح دموية","stemcells":"عينات خلايا جذعية","whole":"كل الدم"}},"board_type":{"label":"النوع","options":{"art":"فن","astronomy":"علم الفلك","geology":"جيولوجيا","history":"تاريخ"}},"bollard":{"label":"النوع"},"booth":{"label":"كشك/دكان","terms":"كشك,سقيفة,حجرة صغيرة"},"bottle":{"label":"تعبئة القوارير"},"boules":{"label":"النوع"},"boundary":{"label":"النوع"},"branch_brand":{"label":"اسم الفرع","terms":"الفرع,الاسم الفرعي"},"brand":{"label":"العلامة التجارية","terms":"العلامة التجارية,الماركة,البراند"},"brewery":{"label":"بيرة برميل"},"bridge":{"label":"النوع","placeholder":"الافتراضي"},"bridge/support":{"label":"النوع"},"bridge_combo":{"label":"النوع"},"building":{"label":"المبنى","terms":"المبنى,البناية,العمارة,مبنى"},"building/flats":{"label":"الوحدات","placeholder":"2, 4, 6, 8..."},"building/levels":{"label":"المستويات","placeholder":"2, 4, 6...","terms":"المستويات,الطوابق,الأدوار"},"building/levels/underground":{"label":"مستويات تحت الأرض","placeholder":"2, 4, 6...","terms":"مستويات تحت الأرض,تحت سطح الأرض,جوف الأرض,مدفون"},"building/material":{"label":"مادة البناء","terms":"مواد البناء,نوع مواد البناء,نوع البناية"},"building/part":{"label":"جزء من مبنى"},"building/prefabricated":{"label":"مسبقة الصنع","terms":"مصنوعة من قبل"},"bunker_type":{"label":"النوع"},"button_operated":{"label":"زر الاتصال"},"cables":{"label":"الكابلات","placeholder":"1, 2, 3..."},"cai_scale-IT":{"label":"صعوبة مسار المشي لمسافات طويلة (نادي جبال الألب الإيطالي)","options":{"E":"E: لممارسي رياضة المشي لمسافات طويلة","EAI":"EAI: المشي لمسافات طويلة في ظروف ثلجية","EE":"EE: للمتنزهين الخبراء","EEA":"EEA: للمتنزهين الخبراء بالمعدات","T":"T: سياحي"},"placeholder":"T, E, EE, …","terms":"صعوبة مسار المشي لمسافات طويلة (نادي جبال الألب الإيطالي)"},"camera/direction":{"label":"الاتجاه (الدرجات في اتجاه عقارب الساعة)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"حامل كاميرا"},"camera/type":{"label":"نوع الكاميرا","options":{"dome":"قبة","fixed":"ثابتة","panning":"ثابتة بمحور للدوران"}},"capacity":{"label":"السعة","placeholder":"50, 100, 200...","terms":"السعة,القدرة الاستيعابية"},"capacity/caravans":{"label":"السعة (للكرفانات)","placeholder":"10، 20، 50..."},"capacity/disabled_parking":{"label":"مساحات للمعاقين/ذوي الاحتياجات الخاصة","placeholder":"1, 2, 3..."},"capacity/persons":{"label":"السعة (بالأشخاص)","placeholder":"50، 100، 200..."},"capacity/tents":{"label":"السعة (للخيام)","placeholder":"10، 20، 50..."},"capacity_parking":{"label":"مجموع المساحات","placeholder":"10, 20, 30..."},"capacity_volume":{"label":"السعة (متر مكعب)","placeholder":"50, 100, 200..."},"cash_in":{"label":"ودائع"},"castle_type":{"label":"النوع","options":{"castrum":"طريق روماني","defensive":"قلعة دفاعية","fortress":"حصن تاريخي","hillfort":"حصن التلال","kremlin":"الكرملين","manor":"قصر سكني قديم/تاريخي","palace":"قصر","shiro":"شيرو - قلعة يابانية","stately":"منزل فخم"}},"changing_table":{"label":"طاولة تغيير الحفاضات"},"charge_fee":{"label":"مبلغ الرسوم","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"مبلغ الرسوم"},"charge_toll":{"label":"مبلغ الرسوم","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"مبلغ الرسوم,مبلغ الإتاوة,مبلغ التحصيل"},"check_date":{"label":"تاريخ آخر فحص","placeholder":"YYYY-MM-DD"},"circumference":{"label":"محيط (على ارتفاع الصدر)","placeholder":"1 متر, 20 سم, 30\"…","terms":"محيط الدائرة (على ارتفاع الصدر)"},"clothes":{"label":"ملابس","terms":"ملابس,ثياب,كسوة"},"club":{"label":"النوع"},"collection_times":{"label":"وقت الاستلام"},"collector":{"label":"العناصر"},"colour":{"label":"اللون","terms":"اللون"},"comment":{"label":"التعليق على التغييرات","placeholder":"وصف موجز لمساهماتك وتعديلاتك (مطلوب)"},"communication_multi":{"label":"أنواع الاتصال","terms":"أنواع الاتصال"},"connectivity":{"label":"الاتصال/الالتقاء"},"construction":{"label":"النوع"},"consulate":{"label":"النوع"},"consulting":{"label":"خبرات/استشارات"},"contact/webcam":{"label":"رابط كاميرا الويب","placeholder":"http://example.com"},"content":{"label":"المحتوى"},"conveying":{"label":"اتجاه الحركة","options":{"backward":"للخلف","forward":"للأمام","reversible":"يقبل عكس الاتجاه حسب الظروف المرورية"}},"conveying_escalator":{"label":"سلم كهربائى"},"country":{"label":"الدولة"},"country_flag":{"label":"علم الدولة"},"couplings":{"label":"وصلات","placeholder":"1, 2, 3..."},"covered":{"label":"مغطى","terms":"مغطى"},"covered_no":{"options":{"no":"لا","undefined":"يفترض أن يكون لا","yes":"نعم"}},"craft":{"label":"النوع"},"crane/type":{"label":"نوع الرافعة","options":{"floor-mounted_crane":"رافعة مثبتة على الأرض","portal_crane":"رافعة جسرية","travel_lift":"رافعة متحركة"}},"crop":{"label":"محاصيل","options":{"asparagus":"نبات الهليون","barley":"شعير","beet":"بنجر","cassava":"بفرة","coffee":"قهوة","cotton":"قطن","cranberries":"توت بري","fast_growing_wood":"تنسيغ قصير الأجل","flowers":"زهور","grape":"عنب","grass":"عشب","hop":"جنجلة","lavender":"خزامي","maize":"ذرة","potato":"بطاطس","rape":"لفت","rice":"أرز","soy":"فول الصويا","strawberry":"فراولة","sugar_beet":"شمندر سكري","sugarcane":"قصب السكر","sunflower":"تباع الشمس","tea":"شاي","tobacco":"Tobacco","vegetable":"خضروات","wheat":"قمح"}},"crossing":{"label":"النوع","options":{"traffic_signals":"معبر بإشارات مرور","uncontrolled":"فقط علامات الطريق","unmarked":"لا توجد علامات طريق أو إشارات مرور"}},"crossing/barrier":{"label":"ذراع الحاجز","options":{"double_half":"مزدوج لكل نصف","full":"كامل","half":"النصف","no":"لا يوجد","yes":"نعم"}},"crossing/bell":{"label":"جرس"},"crossing/island":{"label":"جزيرة مشاة بين طريقين"},"crossing/light":{"label":"إضاءات"},"crossing/markings":{"label":"علامات المعابر","options":{"dashes":"خطوط عرضية متقطعة","dots":"خطوط عرضية منقطة","ladder":"سلم مع قضبان طولية","ladder:paired":"سلم مع قضبان طولية مقترنة","ladder:skewed":"سلم مع قضبان قطرية","lines":"خطوط عرضية","lines:paired":"خطوط عرضية مزدوجة","no":"لايوجد به علامات","pictograms":"الرسوم التوضيحية المرسومة","surface":"على السطح فقط","yes":"توجد علامات بطريقة غير مباشرة","zebra":"قضبان طولية","zebra:bicolour":"قضبان طولية بألوان متناوبة","zebra:double":"الثلاثي الرباعي","zebra:paired":"قضبان طولية مقترنة"},"terms":"علامات المشاة,علامات المرور"},"crossing_raised":{"label":"مرتفع","options":{"table":"نعم","undefined":"لا"}},"cuisine":{"label":"المأكولات","options":{"american":"أمريكي","asian":"آسيوي","bubble_tea":"شاي الفقاعات","burger":"برجر","cake":"كيك","chicken":"دجاج","chinese":"صيني","chocolate":"شوكولاتة","coffee_shop":"مقهى","dessert":"حلويات بعد الطعام","donut":"دونات","fish":"سمك","french":"فرنسي","german":"ألماني","greek":"يوناني","hot_dog":"هوت دوج","ice_cream":"بوظة/آيسكريم","indian":"هندي","indonesian":"أندونيسي","italian":"إيطالي","japanese":"ياباني","juice":"عصير","kebab":"كباب","korean":"كوري","lebanese":"لبناني","malaysian":"ماليزي","mexican":"مكسيكي","pankcake":"بان كيك (فطيرة مسطحة)","pasta":"باستا","pizza":"بيتزا","polish":"بولندي","portuguese":"برتغالي","regional":"شعبي/محلي","russian":"روسي","salad":"سلطة","sandwich":"خبز/ساندويتش","seafood":"مأكولات بحرية","spanish":"أسباني","steak_house":"شرائح لحم (ستيك)","sushi":"سوشي","taiwanese":"تايواني","thai":"تيلاندي","turkish":"تركي","vietnamese":"فيتنامي"},"terms":"نوع الطعام,أنواع الطعام,الأطباق,المأكولات,الأطعمة"},"currency_multi":{"label":"أنواع العملات","terms":"أنواع العملات"},"cutting":{"label":"النوع","placeholder":"الافتراضي"},"cycle_network":{"label":"الشبكة"},"cycleway":{"label":"مسارات الدراجات","options":{"lane":{"description":"مسار دراجات مفصول عن السيارات بخط مطبوع"},"no":{"title":"لا شيء"},"opposite":{"description":"مسار دراجات للسير في كلا الاتجاهين على طريق باتجاه واحد"},"opposite_lane":{"description":"مسار دراجات يسير في الاتجاه المعاكس لحركة مرور السيارات"},"separate":{"description":"للإشارة إلى أنه قد تم تخطيط مسار الدراجات باعتباره شكلًا هندسيًا منفصلاً"},"share_busway":{"description":"مسار درجات مشتركة مع مسار الحافلات"},"shared_lane":{"description":"مسار دراجات غير مفصول عن حركة مرور السيارات"},"track":{"description":"مسار دراجات مفصول عن السيارات بحاجز","title":"مسار الدراجة"}},"terms":"مسارات الداراجات,مسارات الدراجات الهوائية","types":{"cycleway:left":"الجانب الأيسر","cycleway:right":"الجانب الأيمن"}},"dance/style":{"label":"أساليب الرقص"},"date":{"label":"التاريخ"},"defibrillator/location":{"label":"وصف مكانه"},"delivery":{"label":"توصيل طلبات","terms":"توصيل طلبات,تسليم طلبات"},"denomination":{"label":"المذهب/الطائفة","terms":"المذهب/الطائفة,المذهب,الطائفة"},"denotation":{"label":"علامة/معلم","terms":"دلالة"},"departures_board":{"label":"لوحة المغادرين/القادمين","options":{"no":"لا يوجد","realtime":"الوقت الفعلي","timetable":"جدول المواعيد","yes":"نعم"}},"deposit/trolley":{"label":"إيداع"},"depth":{"label":"العمق (متر)"},"descent":{"label":"إجمالي النزول","terms":"إجمالي النزول"},"description":{"label":"الوصف","terms":"وصف,وصوف,أوصاف,وصف إضافي"},"design":{"label":"التصميم"},"destination":{"label":"الوجهة الرئيسية"},"destination/ref":{"label":"أرقام طُرق الوجهة"},"destination/symbol":{"label":"رموز الوجهة"},"destination_waterway":{"label":"الوجهة"},"devices":{"label":"الأجهزة","placeholder":"1, 2, 3..."},"diameter":{"label":"القطر","placeholder":"5مم(mm)، 10سم(cm)، 15 بوصة(in)","terms":"قطر الدائرة"},"diameter_crown":{"label":"قطر التاج","placeholder":"4 متر, 9', …","terms":"قطر التاج"},"diet_multi":{"label":"النمط الغذائي","options":{"gluten_free":"خالي من الجلوتين (القمح والشعير ..الخ)","halal":"حلال (مطابق للشريعة الإسلامية)","kosher":"كوشر (لليهود)","lactose_free":"خالي من اللاكتوز (الحساسية من الحليب)","pescetarian":"نباتيو الأسماك","vegan":"نباتي","vegetarian":"نباتي ويأكل مشتقات الحيوانات"},"terms":"أنواع النظام الغذائي,النمط الغذائي,الحمية الغذائية,المحظورات الغذائية"},"diplomatic":{"label":"النوع"},"diplomatic/services":{"label":"الخدمات"},"direction":{"label":"الاتجاه (بالدرجات في اتجاه عقارب الساعة)","placeholder":"45, 90, 180, 270","terms":"الاتجاه (بالدرجات في اتجاه عقارب الساعة)"},"direction_cardinal-US-CA-NZ":{"label":"الاتجاه","options":{"east":"شرقاً","north":"شمالاً","south":"جنوباً","west":"غرباً"},"terms":"الاتجاه,الوجهة"},"direction_clock":{"label":"الاتجاه","options":{"anticlockwise":"عكس عقارب الساعة","clockwise":"باتجاه عقارب الساعة"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"label":"الاتجاه يتأثر","options":{"backward":"للخلف","both":"كلاهما / الكل","forward":"للأمام"},"terms":"الاتجاه المتأثر"},"dispensing":{"label":"يصرف أدوية بوصفة طبية"},"display":{"label":"نوع العرض","options":{"analog":"تناظري","digital":"رقمي","sundial":"مزولة","unorthodox":"غير تقليدي"}},"distance":{"label":"المسافة","terms":"المسافة,المدى,الطول"},"disused/amenity":{"label":"النوع"},"disused/railway":{"label":"النوع"},"disused/shop":{"label":"النوع"},"dock":{"label":"النوع"},"dog":{"label":"كلاب","options":{"leashed":"مقيديين فقط","no":"غير مسموح","yes":"مسموح"},"terms":"كلاب"},"door":{"label":"باب"},"door_type":{"label":"النوع"},"drink_multi":{"label":"المشروبات"},"drinking_water":{"label":"صالح للشرب","terms":"صالح للشرب"},"drinking_water_available":{"label":"تتوفر مياه قابلة للشرب","terms":"تتوفر مياه قابلة للشرب"},"drive_through":{"label":"ممر الطلب بالسيارة","terms":"ممر الطلب بالسيارة"},"duration":{"label":" المدة","placeholder":"00:00","terms":"المدة"},"ele":{"label":"الارتفاع (متر)","terms":"الارتفاع (متر)"},"electrified":{"label":"الكهربية","options":{"contact_line":"كيابل معلقة بأبراج","no":"لا","rail":"سكة حديد مكهربة","yes":"نعم (غير محدد)"},"placeholder":"كيابل كهربائية معلقة بأبراج للسكك حديدية...","terms":"البنية الكهربائية,البنية التحتية للكهرباء,بنية الكهرباء,خطوط الكهرباء"},"email":{"label":"البريد الإلكتروني","placeholder":"example@example.com","terms":"البريد الإلكتروني,إيميل"},"embankment":{"label":"النوع","placeholder":"الافتراضي"},"embassy":{"label":"النوع","options":{"branch_embassy":"فرع سفارة","delegation":"تفويض","high_commission":"اللجنة العليا","interests_section":"Interests section","mission":"مكتب دبلوماسي","nunciature":"Diplomatic Mission of the Holy See","residence":"الإقامة الرسمية للسفير","yes":"سفارة"}},"emergency":{"label":"طوارئ"},"emergency_combo":{"label":"النوع"},"emergency_ward_entrance":{"label":"النوع"},"enforcement":{"label":"النوع"},"entrance":{"label":"النوع","options":{"emergency":"مخرج طوارئ","entrance":"مدخل فقط","exit":"مخرج فقط","garage":"باب المرآب","home":"منزل خاص أو شقة","main":"رئيسي","secondary":"ثانوي","service":"خدمة","staircase":"سلم","yes":"غير محدد"},"terms":"نوع,صنف,نمط"},"except":{"label":"الاستثناءات"},"expected_rcn_route_relations":{"label":"نقاط ركوب الدراجات المجاورة"},"expected_rwn_route_relations":{"label":"نقاط المشي المجاورة"},"expressway-US":{"label":"طريق سريع (US)","terms":"طريق سريع (الولايات المتحدة)"},"faces":{"label":"الواجهات"},"fax":{"label":"الفاكس","placeholder":"+31 42 123 4567","terms":"فاكس,ناسوخ"},"fee":{"label":"رسوم","terms":"رسوم,تحصيل,أجرة,أتعاب"},"fence_type":{"label":"النوع"},"fire_hydrant/diameter":{"label":"القُطر (مم، بوصة، أو حروف)","terms":"القُطر (مم، بوصة، أو حروف)"},"fire_hydrant/position":{"label":"الموضع","options":{"green":"العشب/الزرع","lane":"مسار الطريق","parking_lot":"مكان المواقف","sidewalk":"الرصيف"},"terms":"موضع,مكان"},"fire_hydrant/pressure":{"label":"الضغط (بار)","terms":"الضغط (بار)"},"fire_hydrant/type":{"label":"الشكل","options":{"pillar":"عامود/صنبور فوق الأرض","pipe":"أنابيب مغطاة","underground":"تحت الأرض","wall":"جداري"}},"fireplace":{"label":"المستوقد/مدفأة نار"},"fishing":{"label":"صيد الأسماك","terms":"صيد الأسماك"},"fitness_station":{"label":"نوع المُعدّة"},"fixme":{"label":"أصلحني","terms":"أصلحني"},"flag/name":{"label":"Flag Name"},"flag/type":{"label":"نوع العلم"},"flag/wikidata":{"label":"Flag Wikidata"},"flashing_lights":{"label":"الأضواء الساطعة","options":{"always":{"description":"تومض الأضواء دائمًا","title":"وامض بشكل دائم"},"button":{"description":"يتم تنشيط الأضواء بالضغط على زر","title":"متاح عبر الضغط على الزر"},"button;sensor":{"description":"يتم تنشيط الأضواء بواسطة جهاز استشعار أو عن طريق الضغط على زر","title":"متاح عبر الضغط على الزر أو عبر المستشعر"},"no":"لا","sensor":{"description":"يتم تنشيط الأضواء بواسطة جهاز استشعار","title":"متاح عبر أجهزة الاستشعار"},"yes":"نعم"},"terms":"الأضواء الساطعة"},"floating":{"label":"عائم"},"flood_prone":{"label":"منطقة معرضة للفيضانات","terms":"منطقة معرضة للفيضانات"},"ford":{"label":"النوع","placeholder":"الافتراضي"},"fountain":{"label":"النوع"},"frequency":{"label":"التردد الكهربائي","terms":"التردد الكهربائي,تردد التشغيل"},"from":{"label":"من"},"fuel":{"label":"وقود"},"fuel/fuel_multi":{"label":"أنواع الوقود","options":{"GTL_diesel":"ديزل GTL","HGV_diesel":"ديزل شاحنات","LH2":"هيدروجين سائل","adblue":"AdBlue / AUS 32","adblue:canister":"AdBlue / AUS 32 (في عبوات)","biodiesel":"ديزل حيوي","cng":"الغاز الطبيعي المضغوط (CNG)","diesel":"ديزل"}},"gambling":{"label":"ألعاب"},"garden/type":{"label":"نوع الحديقة"},"gauge":{"label":"عرض السكة الحديدية"},"gender":{"label":"نوع الجنس","options":{"female":"أنثى","male":"ذكر","unisex":"للجنسين"},"placeholder":"مجهول","terms":"الجنس"},"generator/method":{"label":"الطريقة","options":{"anaerobic_digestion":"الهضم اللاهوائي"}},"generator/output/electricity":{"label":"الطاقة الناتجة","placeholder":"50 ميجا وات، 100 ميجا وات، 200 ميجا وات..."},"generator/source":{"label":"المصدر","options":{"nuclear":"طاقة نووية","oil":"نفط","solar":"إشعاع الشمس","tidal":"طاقة المد والجزر","waste":"نفايات","wave":"طاقة الأمواج"}},"generator/type":{"label":"النوع"},"genus":{"label":"الجنس","placeholder":"أيسر ، بلاتانوس ، Quercus","terms":"الجنس,النوع,الفصيلة"},"geyser/height":{"label":"ارتفاع الفوران"},"gnis/feature_id-US":{"label":"المعرف حسب GNIS","terms":"المعرف حسب gnis (نظام معلومات الأسماء الجغرافية)"},"government":{"label":"النوع"},"grades":{"label":"مستوى المراحل التعليمية"},"grape_variety":{"label":"أصناف العنب"},"group_only":{"label":"المجموعات فقط","terms":"المجموعات فقط"},"guest_house":{"label":"النوع"},"handicap":{"label":"إعاقة (ذوي احتياجات خاصة)","placeholder":"1-18"},"handrail":{"label":"سياج سلم (درابزين)","terms":"درابزين,سياج سلم"},"hashtags":{"label":"الوسوم","placeholder":"#مثال"},"healthcare":{"label":"النوع"},"healthcare/speciality":{"label":"التخصصات"},"heating":{"label":"تدفئة"},"height":{"label":"الارتفاع (بالأمتار)","terms":"الارتفاع (بالأمتار)"},"height_building":{"label":"ارتفاع المبنى (بالأمتار)","terms":"ارتفاع المبنى (بالأمتار)"},"highchair":{"label":"كرسي عالي للأطفال","terms":"كرسي عالي"},"highspeed":{"label":"فائق السرعة","terms":"فائق السرعة,قطار فائق السرعة"},"highway":{"label":"النوع"},"highway_cartpath":{"label":"نوع المسار","options":{"path":"مسار عربات","service":"طريق خدمة"}},"historic":{"label":"النوع"},"historic/civilization":{"label":"الحضارة التاريخية"},"historic/wreck/date_sunk":{"label":"تاريخ الغرق"},"historic/wreck/visible_at_high_tide":{"label":"مرئية في المد والجزر العالي"},"historic/wreck/visible_at_low_tide":{"label":"مرئية في المد والجزر المنخفض"},"holding_position/type":{"label":"النوع","options":{"ILS":"جهاز هبوط آلي","intermediate":"تقاطع ممر سيارات الأجرة","runway":"المدرج"}},"hoops":{"label":"عدد أطواق كرة السلة","placeholder":"1، 2، 4..."},"horse_dressage":{"label":"ترويض الخيول","options":{"equestrian":"نعم","undefined":"لا"}},"horse_riding":{"label":"ركوب الخيل","options":{"horse_riding":"نعم","undefined":"لا"}},"horse_scale":{"label":"صعوبة ركوب الخيل","options":{"common":"سهلة: لا مشاكل أو صعوبات. (طبيعي)","critical":"يتجاوز المألوف: مسموح فقط للفرسان والخيول ذوي الخبرة، يوجد عقبات كبيرة، ويجب فحص الجسور بعناية.","dangerous":"خطيرة: مقبول فقط للراكبين والخيول ذوي الخبرة الكبيرة، وفقط في الطقس الجيد.","demanding":"بحذر: طريق غير مستوي، عوائق صعبة في بعض الأحيان.","difficult":"صعبة: طريق ضيق ومكشوف. قد يحتوي على عوائق لتخطيها، وممرات ضيقة.","impossible":"وعرة: الطرق والجسور غير مقبولة للخيول. ضيق جدا، ودعم غير كاف، وعوائق كالسلالم. خطر على الحياة."},"placeholder":"صعب، خطير...","terms":"صعوبة ركوب الخيل"},"horse_stables":{"label":"ركوب مستقر","options":{"stables":"نعم","undefined":"لا"}},"hot_water":{"label":"المياة الساخنة"},"iata":{"label":"كود المطار من IATA"},"icao":{"label":"كود المطار من ICAO"},"image":{"label":"صورة","placeholder":"https://example.com/photo.jpg","terms":"صورة"},"incline":{"label":"درجة الانحدار","terms":"انحدار الطريق,درجة الانحدار,مستوى الانحدار"},"incline_steps":{"options":{"down":"للأسفل","up":"للأعلى"}},"indoor":{"label":"داخل المبنى","terms":"داخل المبنى,داخلي,ضمن المبنى"},"indoor_type":{"label":"النوع"},"industrial":{"label":"النوع"},"informal":{"label":"غير رسمي","terms":"غير رسمي,شكل غير رسمي"},"information":{"label":"النوع"},"inscription":{"label":"النقوش","terms":"نقوش,نصوص منقوشة على أشياء"},"intermittent":{"label":"متقطع (لا يحتوي على الماء بشكل دائم)","terms":"متقطع,لا يحتوي على الماء بشكل دائم"},"internet_access":{"label":"اتصال انترنت","options":{"no":"لا","terminal":"محطة","wired":"سلكي","wlan":"لا سلكي","yes":"نعم"},"terms":"اتصال انترنت"},"internet_access/fee":{"label":"الوصول للانترنت","options":{"customers":"للعملاء/الزبائن فقط","no":"مجاني","yes":"مدفوع"},"terms":"الوصول للانترنت"},"internet_access/ssid":{"label":"اسم شبكة الواي فاي","terms":"اسم شبكة الواي فاي"},"interval":{"label":"الفترة الزمنية","terms":"الفترة الزمنية"},"junction/ref_oneway":{"label":"رقم التقاطع","terms":"رقم التقاطع,الرقم المرجعي للتقاطع"},"junction_line":{"label":"تقاطع طرق","options":{"circular":"دوار متحكم به بإشارات أو علامات توقف أو أفضلية القادم من طريق آخر","jughandle":"تقاطع jughandle","roundabout":"دوار بدون اشارات وأفضلية المسار لمن فيه"},"terms":"دوار بدون اشارات وأفضلية المسار لمن فيه"},"kerb":{"label":"منحدر الرصيف المؤدي للشارع"},"kerb/height":{"label":"الارتفاع"},"kitchen":{"label":"المطبخ","terms":"المطبخ"},"kneipp_water_cure_multi":{"label":"نوع الحوض"},"label":{"label":"علامة"},"lamp_mount":{"label":"حامل المصباح"},"lamp_type":{"label":"النوع"},"landuse":{"label":"النوع"},"lane_markings":{"label":"رسومات الطريق","terms":"رسومات الطريق,علامات الطريق,العلامات التي تفصل مسارات السيارات"},"lanes":{"label":"المسارات المرورية","placeholder":"1, 2, 3...","terms":"المسارات المرورية"},"language_multi":{"label":"اللغات"},"layer":{"label":"الطبقة","placeholder":"0","terms":"الطبقات"},"leaf_cycle":{"label":"دورة حياة أوراق الشجر","options":{"deciduous":"المتساقطة","evergreen":"دائمة الخضرة","mixed":"مختلط","semi_deciduous":"شبه متساقطة","semi_evergreen":"شبه دائمة الخضرة"},"terms":"دورة حياة الورقة"},"leaf_type":{"label":"نوع ورق الشجر","options":{"broadleaved":"عريضة الأوراق","leafless":"بدون أوراق","mixed":"مختلط","needleleaved":"إبرية"},"terms":"نوع الورقة,نوع ورقة النبات"},"leaf_type_singular":{"label":"نوع ورق الشجر"},"leisure":{"label":"النوع"},"length":{"label":"الطول (بالأمتار)","terms":"العرض (بالمتر)"},"level":{"label":"المستوى","terms":"المستوى,الطابق,الدور"},"level_semi":{"label":"المسويات","terms":"المستويات,الطوابق,الأدوار"},"liaison":{"label":"النوع"},"lifeguard":{"label":"حارس الشاطئ"},"line_attachment":{"label":"كيفية ارتباط الكيابل"},"line_management":{"label":"طوبولوجيا الخط","terms":"طوبولوجيا الخط,إدارة الخط"},"lit":{"label":"مضاء","terms":"مضاء,منور،له نور"},"location":{"label":"المكان","terms":"المكان,المكان بالضبط"},"location_pool":{"options":{"indoor":"مُغطى/داخلي","outdoor":"في الخارج/الهواء الطلق","roof":"على سطح بناية"}},"lock":{"label":"هويس"},"lockable":{"label":"قابل للقفل","terms":"قابل للقفل"},"locked":{"label":"حاجز/بوابة"},"man_made":{"label":"النوع"},"manhole":{"label":"النوع"},"manufacturer":{"label":"الشركة المُصنّعة","terms":"الشركة المُصنّعة"},"map_size":{"label":"التغطية"},"map_type":{"label":"النوع"},"mapillary":{"label":"معرف الصورة في مابيلاري","terms":"معرف الصورة في مابيلاري,معرف الصورة في mapillary"},"marker":{"label":"النوع"},"material":{"label":"المادة","terms":"المادة,المواد"},"mattress":{"label":"تتوفر مطارح/مراتب","terms":"تتوفر مطارح/مراتب"},"max_age":{"label":"الحد الأقصى للعمر","terms":"الحد الأقصى لسن الشخص,الحد الأعلى لسن الشخص"},"maxheight":{"label":"أقصى ارتفاع","terms":"أقصى ارتفاع"},"maxspeed":{"label":"حدود السرعة","placeholder":"40, 50, 60...","terms":"حدود السرعة,قيود السرعة"},"maxspeed/advisory":{"label":"حدود السرعة المنصوح بها","placeholder":"40, 50, 60...","terms":"حدود السرعة المنصوح بها"},"maxspeed/hgv":{"label":"الحد الأقصى لسرعة الشاحنة","placeholder":"40, 50, 60...","terms":"سرعة الشاحنات القصوى"},"maxstay":{"label":"أقصى فترة بقاء","terms":"أقصى فترة بقاء,أقصى فترة مكوث"},"maxweight":{"label":"أقصى وزن","terms":"أقصى وزن,الوزن الأقصى"},"maxwidth":{"label":"العرض الأعظمي","terms":"العرض الأعظمي,العرض الأقصى,أعظم عرض,أقصى عرض"},"memorial":{"label":"النوع"},"microbrewery":{"label":"Microbrewery"},"military_service":{"label":"خدمة عسكرية"},"mimics":{"label":"محاكاة","terms":"محاكاة,مجاراة"},"min_age":{"label":"الحد الأدنى للعمر","terms":"الحد الأدنى للعمر"},"min_height":{"label":"ارتفاع القاع (متر)"},"minspeed":{"label":"الحد الأدنى للسرعة","placeholder":"20, 30, 40...","terms":"الحد الأدنى للسرعة"},"monitoring_multi":{"label":"الرصد/المراقبة"},"mtb/scale":{"label":"صعوبة قيادة الدراجة على الجبل","options":{"0":"0: أسفلت/تربة مدكوكة, دون معوقات, منحنيات واسعة","1":"1: حصوات مبعثرة قليلا, معوقات صغيرة, منحنيات واسعة","2":"2: حصوات مبعثرة بكثرة, معوقات كبيرة, إلتفافات متكررة سهلة","3":"3: سطج زلق, معوقات كبيرة, إلتفافات متكررة ضيقة","4":"4: حصوات مبعثرة أو صخور, إلتفافات متكررة خطيرة","5":"5: صعوبة قصوى, حقول صخرية, إنزلاقات أرضية","6":"6: غير قابل للقيادة إلا من قِبل أفضل سائقي الدراجات الجبلية"},"placeholder":"0, 1, 2, 3...","terms":"صعوبة قيادة الدراجة على الجبل"},"mtb/scale/imba":{"label":"صعوبة المسارات من الرابطة الدولية لدرجات الجبال IMBA","options":{"0":"⚪ سهل جدا (دائرة بيضاء)","1":"🟢 سهل (دائرة خضراء)","2":"🟦 متوسط (مربع أزرق)","3":"◆ صعب (الماس الأسود)","4":"◆◆ صعب للغاية (الماس أسود المزدوج)"},"placeholder":"سهل، متوسط، صعب...","terms":"صعوبة المسارات من الرابطة الدولية لدرجات الجبال imba"},"mtb/scale/uphill":{"label":"صعوبة صعود الجبل بالدراجة","options":{"0":"0: معدل الإنحدار <10% ، أسفلت/تربة مدكوكة ، دون معوقات","1":"1: معدل الإنحدار <15% ، أسفلت/تربة مدكوكة ، مع وجود بعض المعوقات","2":"2: معدل الإنحدار <20% ، سطح ثابت ، صخور وجذور بحجم قبضة اليد","3":"3: معدل الإنحدار <25% ، سطح متغير ، صخور وفروع بحجم قبضة اليد","4":"4: معدل الإنحدار <30% ، حالة السطح سيئة ، صخور وفروع كبيرة","5":"5: حاد جدًا ، الدراجات في العموم تحتاج لدفعها أو حملها"},"placeholder":"0، 1، 2، 3 ...","terms":"صعوبة صعود الجبل بالدراجة"},"museum":{"label":"النوع"},"name":{"label":"الاسم","placeholder":"الاسم الشائع (إن وجد)","terms":"الاسم,المسمى"},"natural":{"label":"طبيعي"},"network":{"label":"الشبكة","terms":"الشبكة"},"network/type":{"label":"نوع الشبكة"},"network_bicycle":{"label":"فئة الشبكة","options":{"icn":"دولية","lcn":"محلية","ncn":"وطنية","rcn":"إقليمية"},"placeholder":"محلية، إقليمية، وطنية، عالمية"},"network_foot":{"label":"فئة الشبكة","options":{"iwn":"دولية","lwn":"محلية","nwn":"وطنية","rwn":"إقليمية"},"placeholder":"محلية، إقليمية، وطنية، دولية"},"network_horse":{"label":"فئة الشبكة","options":{"ihn":"دولية","lhn":"محلية","nhn":"وطنية","rhn":"إقليمية"},"placeholder":"محلية، إقليمية، وطنية، دولية"},"network_road":{"label":"الشبكة"},"not/name":{"label":"الأسماء غير الصحيحة","terms":"الأسماء غير الصحيحة"},"note":{"label":"ملاحظة","terms":"ملاحظة"},"office":{"label":"النوع"},"oneway":{"label":"هذا الطريق يسير باتجاه واحد","options":{"alternating":"يتغير اتجاهه بشكل متغير في اليوم الواحد","no":"لا","reversible":"قابل لتغيير الاتجاه حسب الزحام وبشكل منتظم","undefined":"يفترض أن يكون لا","yes":"نعم"},"terms":"اتجاه واحد,اتجاه سير واحد"},"oneway/bicycle":{"label":"اتجاه واحد (للدراجات)","terms":"اتجاه واحد (للدراجات)"},"oneway_yes":{"options":{"alternating":"بالتناوب:يتغير اتجاهه بشكل متغير في اليوم الواحد","no":"لا","reversible":"قابل لتغيير الاتجاه حسب الزحام وبشكل منتظم","undefined":"يفترض أن يكون نعم","yes":"نعم"}},"openfire":{"label":"اشعال النار مسموح","terms":"اشعال النار مسموح،شب النار مسموح"},"opening_date":{"label":"تاريخ الافتتاح المتوقع","placeholder":"YYYY-MM-DD"},"opening_hours":{"label":"ساعات العمل","placeholder":"غير معروف","terms":"ساعات العمل,ساعات الدوام"},"opening_hours/covid19":{"label":"ساعات العمل خلال أزمة كورونا","terms":"ساعات العمل خلال أزمة كورونا"},"operator":{"label":"المُشغل","terms":"المُشغل,المتعهد,الشركة المشغلة"},"operator/type":{"label":"التشغيل يتم عبر"},"organic":{"label":"منتجات عضوية","options":{"no":"لا شيء","only":"فقط","yes":"بعض"},"terms":"منتجات عضوية"},"outdoor_seating":{"label":"مقاعد في الهواء الطلق","terms":"مقاعد خارجية، مقاعد خارج البناء"},"par":{"label":"بار","placeholder":"3، 4، 5 ..."},"parcel_dropoff":{"label":"تسليم الطرود"},"parcel_pickup":{"label":"استلام الطرود","options":{"no":"لا","undefined":"يفترض أن يكون نعم","yes":"نعم"}},"park_ride":{"label":"اوقف واركب","terms":"اوقف واركب,اركن واركب"},"parking":{"label":"النوع","options":{"carports":"مظلات سيارات","garage_boxes":"صناديق المرآب","lane":"على جانب الطريق","layby":"جانب الطريق","multi-storey":"متعدد الطوابق","rooftop":"على سطح بناية","sheds":"مظلله","street_side":"جانب الشارع","surface":"أرضية","underground":"تحت الأرض"}},"parking/orientation":{"label":"الاتجاه","options":{"diagonal":"قطري بالنسبة للشارع","parallel":"موازية للشارع","perpendicular":"يلتقي مع الشارع بزاوية مستقيمة"}},"parking_entrance":{"label":"النوع"},"parking_space":{"label":"النوع"},"payment_multi":{"label":"طرق الدفع","options":{"apple_pay":"أبل باي"},"terms":"طرق الدفع,طرق الحساب"},"phases":{"label":"المراحل/الفترات","placeholder":"1, 2, 3..."},"phone":{"label":"هاتف","placeholder":"+966 42 123 4567","terms":"هاتف,تلفون"},"pipeline":{"label":"نوع"},"piste/difficulty":{"label":"الصعوبة","options":{"advanced":"متقدم","easy":"سهل","expert":"خبير","extreme":"أقصى صعوبة","freeride":"قيادة حُرة","intermediate":"متوسط","novice":"مبتدئ"},"placeholder":"سهل، متوسط، متقدم..."},"piste/difficulty_downhill":{"options":{"advanced":"متقدم (جوهرة سوداء)","easy":"سهل (دائرة خضراء)","expert":"خبير (جوهرتين سودائتين)","extreme":"خطير (معدات التسلق مطلوبة)","freeride":"تزلج حُر (خارج منطقة التزلج)","intermediate":"متوسط (مربع أزرق)","novice":"مبتدئ (تعليمي)"},"placeholder":"سهل، متوسط، متقدم..."},"piste/difficulty_nordic":{"options":{"advanced":"متقدم - ضيق، منحدر أو جزء جليدي، إنعطاف حاد","easy":"سهل - تلال ناعمة، منحدرات صغيرة","expert":"خبير - محاطة بتضاريس خطرة","intermediate":"متوسط - جزء منحدر","novice":"مبتدئ - مسطح، لا يحتاج لجهد"},"placeholder":"سهل، متوسط، متقدم..."},"piste/difficulty_skitour":{"options":{"advanced":"متقدم S:انحدار بدرجة 40-45","easy":"سهل - WS:انحدار بدرجة 30-35","expert":"خبير - SS:انحدار بدرجة 45-50","extreme":"شديد- EX:انحدار بدرجة أعلى من 55","freeride":"نزول حر - AS:انحدار بدرجة 50-55","intermediate":"متوسط- ZS:انحدار بدرجة 35-40","novice":"مبتدئ - L:انحدار بدرجة أقل من 30"},"placeholder":"سهل، متوسط، متقدم..."},"piste/grooming":{"label":"تحضير مسار الزحلقة","options":{"backcountry":"غير معتنى به","classic":"تقليدي","classic+skating":"كلاسيكي وللتزلج","mogul":"مهيئ للتزلج","scooter":"سكوتر / عربة ثلجية","skating":"تزلج"}},"piste/grooming_downhill":{"options":{"backcountry":"غير محضر/معتنى به","classic":"تقليدي","mogul":"مهيئ للتزلج"}},"piste/grooming_hike":{"options":{"backcountry":"غير محضر/معتنى به - لابد من وجود حذاء مخصص","classic":"كلاسيكي وللهايكنك الشتوي"}},"piste/grooming_nordic":{"options":{"backcountry":"غير محضر/معتنى به","classic":"تقليدي","classic+skating":"كلاسيكي وللتزلج","scooter":"سكوتر / عربة ثلجية","skating":"تزلج"}},"piste/type":{"label":"النوع","options":{"connection":"وصلة","downhill":"انحدار","hike":"رحلة مشيا على الاقدام","ice_skate":"تزلج على الجليد","nordic":"شمال أوروبا","playground":"ساحة لعب","skitour":"جولة تزلج","sled":"تزلج","sleigh":"مزلقة","snow_park":"حديقة الثلج"}},"place":{"label":"النوع"},"plant":{"label":"مصنع"},"plant/method":{"label":"طريقة التوليد"},"plant/output":{"options":{"cold_air":"هواء بارد","cold_water":"ماء بارد","compressed_air":"هواء مضغوط","electricity":"كهرباء","hot_air":"هواء ساخن","hot_water":"ماء ساخن","steam":"بخار","vacuum":"فراغ"}},"plant/output/electricity":{"placeholder":"500 ميجا وات، 1000 ميجا وات، 2000 ميجا وات..."},"plant/source":{"label":"مصدر الطاقة"},"playground":{"label":"النوع"},"playground/theme":{"label":"النمط"},"plots":{"label":"قطعة الأرض (المخططة)","placeholder":"10, 20, 30..."},"polling_station":{"label":"Polling Place"},"population":{"label":"عدد السكان"},"population/date":{"placeholder":"YYYY-MM-DD"},"portable":{"label":"محمول","terms":"محمول,متنقل"},"post":{"label":"عنوان التوصيل/الاستلام"},"power":{"label":"النوع"},"power_supply":{"label":"مولد طاقة","terms":"مولد طاقة,مولد كهربائي"},"preschool":{"label":"حضانة"},"produce":{"label":"ينتج"},"product":{"label":"المنتجات","terms":"المنتجات"},"public_bookcase/type":{"label":"النوع"},"pump":{"label":"مضخة","options":{"manual":"مضخة يدوية","no":"لا شيء","powered":"مضخة آلية","yes":"نعم"}},"railway":{"label":"النوع"},"railway/position":{"label":"علامة مسافات","placeholder":"المسافة إلى رقم عشري واحد (123.4)"},"railway/signal/direction":{"label":"الاتجاه يتأثر","options":{"backward":"للخلف","both":"كلاهما / الكل","forward":"للأمام"}},"ramp":{"label":"منحدر متنقل","terms":"منحدر متنقل,منصة متنقلة للنزول"},"rating":{"label":"معدل الطاقة المولدة"},"rcn_ref":{"label":"كود ركوب الدراجات"},"real_fire-GB-IE":{"label":"حريق حقيقي","terms":"حريق حقيقي"},"recycling_accepts":{"label":"المواد التي تقبلها المنشأة","options":{"batteries":"بطاريات","cans":"علب","cardboard":"ورق مقوى","clothes":"ملابس","cooking_oil":"زيت طهي","engine_oil":"زيت محركات","glass":"أي زجاج (زجاج مقسّى/صلب ، نوافذ ، مرايا ، إلخ)","glass_bottles":"الزجاجات والجرار","green_waste":"نفايات خضراء","paper":"ورق","plastic":"بلاستيك","plastic_bottles":"عبوات بلاستيكية","plastic_packaging":"بلاستيك التغليف","scrap_metal":"خردة المعادن (سكراب)","shoes":"أحذية"}},"recycling_type":{"label":"النوع","options":{"centre":"مركز","container":"حاوية"},"placeholder":"الحاوية ، المركز"},"ref":{"label":"الرمز المرجعي","terms":"الرمز المرجعي,الرقم المرجعي"},"ref/isil":{"label":"رمز ISIL"},"ref/vatin":{"label":"VAT ID Number","terms":"vat id number"},"ref_aeroway_gate":{"label":"رقم البوابة"},"ref_disc_golf_hole":{"label":"رقم الثقب","placeholder":"1-18"},"ref_golf_hole":{"label":"رقم الحفرة","placeholder":"1-18"},"ref_highway_junction":{"label":"رقم التقاطع"},"ref_platform":{"label":"رقم المنصة/الرصيف"},"ref_road_number":{"label":"رقم الطريق","terms":"رقم الطريق,رقم الشارع"},"ref_room_number":{"label":"رقم الغرفة"},"ref_route":{"label":"رقم المسار","terms":"رقم المسار"},"ref_runway":{"label":"رقم المدرج","placeholder":"مثل 01L/19R"},"ref_sector":{"label":"رقم المقطع"},"ref_stop_position":{"label":"رقم الموقف"},"ref_taxiway":{"label":"اسم طريق المناورة","placeholder":"مثل A5"},"relation":{"label":"النوع"},"religion":{"label":"الديانة","options":{"bahai":"Bahá’í","benzhu":"Benzhu","buddhist":"Buddhist","caodaism":"Caodaist","chinese_folk":"Chinese Folk Religion","christian":"Christian","confucian":"Confucian","hindu":"Hindu","jain":"Jain","jewish":"Jewish","multifaith":"Multifaith","muslim":"الإسلام","none":"Nonreligious","pagan":"Pagan","shinto":"Shinto","sikh":"Sikh","spiritualist":"Spiritualist","taoist":"Taoist","tenrikyo":"Tenrikyo","unitarian_universalist":"Unitarian Universalist","vietnamese_folk":"Vietnamese Folk Religion","voodoo":"Voodoo"},"terms":"الديانة,الدين,الملة"},"reservation":{"label":"الحجوزات","options":{"no":"غير مسموحة","recommended":"موصى بها","required":"مطلوبة ولابد منها","yes":"مقبولة"},"terms":"الحجوزات,الحجز"},"residential":{"label":"النوع"},"resort":{"label":"النوع"},"resource":{"label":"المصادر"},"restriction":{"label":"النوع"},"restrictions":{"label":"قيود الإنعطاف"},"roof/colour":{"label":"لون السقف","terms":"لون السقف,لون الغما"},"room":{"label":"النوع"},"rooms":{"label":"الغرف"},"roundtrip":{"label":"بشكل حلقة/دائري","terms":"بشكل حلقة,بشكل دائري,يذهب ويعود لنفس المكان,له نفس البداية والنهاية"},"route":{"label":"النوع"},"route_master":{"label":"النوع"},"ruins":{"label":"النوع"},"rwn_ref":{"label":"الرقم المرجعي لمسار المشي"},"sac_scale":{"label":"صعوبة المشي على الأقدام (الهايكنق)","options":{"alpine_hiking":"T4: مشي جبال الألب","demanding_alpine_hiking":"T5: يتطلب مشي جبال الألب","demanding_mountain_hiking":"T3: يتطلب المشي في الجبال","difficult_alpine_hiking":"T6: مشي جبال الألب صعب","hiking":"T1: المشي لمسافات طويلة","mountain_hiking":"T2: المشي لمسافات طويلة في الجبال"},"placeholder":"المشي لمسافات طويلة في الجبال ، مشي جبال الألب ...","terms":"صعوبة المشي على الأقدام (الهايكنق)"},"salt":{"label":"مياة مالحة","terms":"ملحية,مياة مالحة"},"sample_collection":{"label":"عينات"},"sanitary_dump_station":{"label":"محطة تصريف خزانات مراحيض السيارات","terms":"محطة تصريف خزانات مراحيض السيارات,تصريف خزانات مراحيض متنقلة"},"screen":{"label":"الشاشات","placeholder":"1, 4, 8…"},"scuba_diving":{"label":"الخدمات"},"seamark/beacon_isolated_danger/shape":{"label":"الشكل"},"seamark/beacon_lateral/category":{"label":"التصنيف","options":{"danger_left":"خطر على اليسار","danger_right":"خطر على اليمين","port":"منفذ","starboard":"ميمنة","waterway_left":"المجرى المائي اليسار","waterway_right":"المجرى المائي اليمين"}},"seamark/beacon_lateral/colour":{"label":"اللون","options":{"green":"أخضر","grey":"رمادي","red":"أحمر"}},"seamark/beacon_lateral/shape":{"label":"الشكل"},"seamark/beacon_lateral/system":{"label":"النظام","options":{"cevni":"CEVNI","iala-a":"IALA A","iala-b":"IALA B","other":"أخرى"}},"seamark/buoy_lateral/category":{"label":"التصنيف","options":{"channel_left":"قناة باليسار","channel_right":"قناة باليمين","danger_left":"خطر على اليسار","danger_right":"خطر على اليمين","port":"منفذ","preferred_channel_port":"منفذ القناة المفضل","preferred_channel_starboard":"قناة الميمنة المفضلة","starboard":"ميمنة","waterway_left":"المجرى المائي اليسار","waterway_right":"المجرى المائي اليمين"}},"seamark/buoy_lateral/colour":{"label":"اللون","options":{"green":"أخضر","green;red;green":"أخضر-أحمر-أخضر","green;white;green;white":"أخضر-أبيض-أخضر-أبيض","red":"أحمر","red;green;red":"أحمر-أخضر-أحمر","red;white;red;white":"أحمر-أبيض-أحمر-أبيض","white":"أبيض","yellow":"أصفر"}},"seamark/buoy_lateral/shape":{"label":"الشكل"},"seamark/buoy_lateral/system":{"label":"النظام","options":{"cevni":"CEVNI","iala-a":"IALA A","iala-b":"IALA B","other":"أخرى"}},"seamark/mooring/category":{"label":"التصنيف"},"seamark/rescue_station/category":{"label":"معدات إنقاذ الحياة","options":{"aircraft":"الطائرات","first_aid":"إسعافات أولية","hovercraft":"الحوامات","lifeboat":"قارب النجاة (على الأرض)","lifeboat_on_mooring":"قارب النجاة (في مرسى)","radio":"محطة إذاعية","refuge_intertidal":"ملجأ المد والجزر","refuge_shipwrecked":"ملجأ حطام السفينة","seaplane":"طائرة مائية","tug":"ساحبة الإنقاذ"}},"seamark/type":{"label":"علامة بحرية","terms":"علامة بحرية,علامة البحر,علامة ملاحية بحرية"},"seamark/wreck/category":{"label":"التصنيف"},"seasonal":{"label":"موسمي"},"seats":{"label":"المقاعد","placeholder":"2, 4, 6..."},"second_hand":{"label":"بيع المستعمل","options":{"no":"لا","only":"فقط","yes":"نعم"},"placeholder":"نعم، لا، فقط","terms":"بيع المستعمل,حراج مستعمل,بضائع مستعملة،سلع مستعملة"},"segregated":{"label":"الفصل بين المشاة والدراجات"},"self_service":{"label":"خدمة ذاتية"},"service":{"label":"النوع","options":{"alley":"زقاق","drive-through":"ممر الطلب بالسيارة","driveway":"ممر خاص","emergency_access":"ممر لحالات الطوارئ","parking_aisle":"ممر وقوف السيارات"}},"service/bicycle":{"label":"خدمات الدراجات","terms":"خدمات الدراجات"},"service/vehicle":{"label":"الخدمات"},"service_rail":{"label":"نوع الخدمة","options":{"crossover":"عبور","siding":"انحياز","spur":"وصلة قطارات شحن","yard":"ساحة السكة الحديدية"},"terms":"نوع الخدمة"},"service_times":{"label":"أوقات الخدمة"},"shelter":{"label":"مرأب"},"shelter_type":{"label":"النوع"},"shoes":{"label":"أحذية"},"shop":{"label":"النوع"},"shower":{"label":"استحمام","terms":"استحمام,دش,مسحاح,مشن,مروش"},"siren/purpose":{"label":"الغرض"},"siren/type":{"label":"النوع","options":{"electronic":"إلكتروني","other":"غير ذلك","pneumatic":"هوائي"}},"site":{"label":"النوع"},"smoking":{"label":"التدخين","options":{"dedicated":"مخصصة للمدخنين (مثلا: نادي للمدخنين)","isolated":"في مناطق التدخين، معزولة ماديا","no":"ممنوع التدخين في أي مكان","outside":"مسموح به في الخارج","separated":"في مناطق التدخين، غير معزولة ماديا","yes":"مسموح به في كل مكان"},"placeholder":"لا ، منفصل ، نعم ...","terms":"دخان,تدخين,تتن,مدخنين,متتن"},"smoothness":{"label":"درجة الوعورة/النعومة","options":{"bad":"لذوات العجلات المتينة مثل: دراجات الرحلات، والسيارات ، وعربات التوكتوك","excellent":"لذوات العجلات الرقيقة مثل: أحذية التزحلق ، ألواح التزحلق","good":"لذوات العجلات النحيلة مثل: دراجة السباق","horrible":"للمناطق الوعرة مثل: مركبات الطرق الوعرة والمعدات الثقيلة","impassable":"للمناطق الوعرة التي لا يمكن اجتيازها/غير سالكة / لا تعبرها المركبات","intermediate":"قابلة للاجتياز عبر أي عجلات مثل: دراجة المدينة ، الكرسي المتحرك للمعاقين ، السكوتر","very_bad":"للمركبات المرتفعة :والمركبات التي تعبر الطرق الوعرة","very_horrible":"للمركبات والمعدات المخصصة للطرق الوعرة مثل: الجرار ،ATV (الدبابات الرباعية العجلات)"},"placeholder":"للعجلات العادية، للعجلات النحيلة، للطرق وعرة ...","terms":"النعومة,الوعورة,نعومة الطريق,وعورة الطريق,جاهزية الطريق,سلامة سطح الطريق"},"sms":{"label":"للرسائل نصية","terms":"رسائل نصية,sms,رسالة جوال"},"social_facility":{"label":"النوع"},"social_facility_for":{"label":"نوع الجمهور (الناس) المستهدفين"},"source":{"label":"المصادر","options":{"aerial imagery":"من الصور الجوية","gps":"GPS","local knowledge":"المعرفة المحلية","osm notes":"ملاحظات خارطة الشارع المفتوحة","streetlevel imagery":"صور على مستوى الشارع","survey":"استقصاء/استبيان/مسح ميداني"},"terms":"مصادر,مراجع,موارد"},"species":{"label":"الصنف","placeholder":"Acer platanoides, Quercus robur, …","terms":"النوع,الفصيلة"},"species/wikidata":{"label":"أنواع ويكي بيانات","terms":"أنواع ويكي بيانات"},"sport":{"label":"الرياضات"},"sport_ice":{"label":"الرياضات","options":{"curling":"كيرلنغ","ice_hockey":"الهوكى الجليدى","ice_skating":"التزحلق على الجليد","ice_stock":"مخزون الجليد","multi":"متعددة"}},"sport_pub":{"label":"الرياضات","options":{"billiards":"البلياردو","darts":"رمي الاسهم المريشة","table_soccer":"كرة قدم الطاولة"},"terms":"رياضات"},"sport_racing_motor":{"label":"الرياضات","options":{"karting":"الكارتينج","motocross":"موتوكروس","motor":"رياضة السيارات","speedway":"طريق سريع للدراجات النارية"}},"sport_racing_nonmotor":{"label":"الرياضة","options":{"bmx":"BMX","cycling":"ركوب الدراجات","dog_racing":"سباق الكلاب","horse_racing":"سباق خيول","running":"جري"}},"stars":{"label":"نجوم","terms":"نجوم"},"start_date":{"label":"تاريخ البدء","placeholder":"YYYY-MM-DD","terms":"تاريخ البدء,تاريخ الانطلاق"},"step_count":{"label":"عدد الخطوات","terms":"عدد الخطوات"},"stile":{"label":"النوع"},"stop":{"label":"نوع التوقف","options":{"all":"كل الطرق","minor":"طريق فرعي"}},"street_cabinet":{"label":"النوع"},"stroller":{"label":"السماح بدخول عربيات الأطفال","options":{"limited":"محدود","no":"لا","yes":"نعم"},"terms":"السماح بدخول عربيات الأطفال"},"structure":{"label":"البنية","options":{"bridge":"جسر","cutting":"تضاريس مقطوعة ومحفورة ليعبرها ويشقها طريق ما","embankment":"سطح مرفوع يسير عليه الطريق (قد تكون مردومة)","ford":"مخاضة (طريق يشق مجرى مائي)","tunnel":"نفق يعبر من خلاله الطريق"},"placeholder":"غير معروف","terms":"هيكلة,بنية,منظومة"},"structure_power":{"label":"بنية","options":{"solid":"صلب"}},"structure_waterway":{"label":"البنية","options":{"tunnel":"نفق"},"placeholder":"مجهول"},"studio":{"label":"النوع"},"subject":{"label":"الموضوع","terms":"الموضوع"},"subject/wikidata":{"label":"موضوع ويكي بيانات","terms":"موضوع ويكي بيانات"},"substance":{"label":"مادة"},"substation":{"label":"النوع","options":{"industrial":"صناعي"}},"substation_pipeline":{"label":"نوع","options":{"compression":"ضغط","field_gathering":"ميدان تجمع","industrial":"صناعي","measurement":"قياس","valve":"صمام","valve_group":"مجموعة صمامات"}},"supervised":{"label":"يشرف عليها","terms":"يشرف عليها,مراقبة,يوجد شخص يديرها,خاضعة للإشراف"},"support":{"label":"دعم","terms":"دعم,مساعدة,مساندة"},"surface":{"label":"السطح","options":{"artificial_turf":"عشب صناعي","asphalt":"أسفلت","compacted":"مضغوط","concrete":"خرسانه/اسمنت","dirt":"ترابية","grass":"عشب","gravel":"حصباء/حصى","ground":"أرضي","paved":"مرصوف/معبد","paving_stones":"مرصوف بالطوب","salt":"ملح","sand":"رمل","unpaved":"غير مرصوف/معبد","wood":"خشبي","woodchips":"رقائق الخشب"},"terms":"السطح,سطح,أديم"},"surveillance":{"label":"نوع المراقبة"},"surveillance/type":{"label":"نوع المراقبة","options":{"ALPR":"القارئ الآلي للوحات المركبات","camera":"كاميرا","guard":"حارس"}},"surveillance/zone":{"label":"منطقة مراقبة"},"survey/date":{"label":"تاريخ آخر تحقق واستقصاء شخصي","terms":"تاريخ آخر تحقق واستقصاء شخصي,تاريخ آخر تحقق واستقصاء واقعي,تاريخ آخر تحقق واستقصاء موثق"},"survey_point/datum_aligned":{"label":"تتماشى مع المسند الجيوديسي المحلي"},"survey_point/purpose":{"label":"الغرض من نقطة الاستطلاع","options":{"both":"كليهما","horizontal":"المحاذاة الأفقية","vertical":"المحاذاة العمودية"}},"survey_point/structure":{"label":"البنية والشكل","options":{"beacon":"كبير مثبت بشكل رباعي","block":"صبة خرسانية","bracket":"حامل","cairn":"رِجم","cut":"خط مقصوص","indented_pin":"دبوس بمسافة بادئة","magnet":"مغناطيس","medallion":"ميدالية","pillar":"عمود","pin":"دبوس","plaque":"لوح جداري","pole":"عمود طويل"}},"swimming_pool":{"label":"النوع"},"switch":{"label":"النوع","options":{"circuit_breaker":"قاطع دائرة كهربية","disconnector":"فاصل دائرة كهربية","earthing":"الأرضي","mechanical":"ميكانيكي"}},"tactile_paving":{"label":"الرصيف البارز (للمكفوفين)","terms":"الرصيف البارز (للمكفوفين),رصيف المكفوفين,طوب مخصص للمكفوفين,أرضية مشي المكفوفين,الرصيف البارز (للعميان)"},"takeaway":{"label":"سفري/وجبات خارجية","options":{"no":"لا","only":"لا يوجد أكل محلي فقط وجبات خارجية/سفري ","yes":"نعم"},"placeholder":"نعم ، لا ، فقط سفري/طلبات خارجية...","terms":"سفري,تيك أوي,طلبات خارجية,طلبات جاهزة"},"target":{"label":"Target"},"taxon":{"label":"الأصنوفة","placeholder":"Acer platanoides Columnare, Pyrus calleryana Chanticleer …","terms":"التصنيف"},"tee":{"label":"لون / نوع نقطة الإنطلاق"},"telecom":{"label":"النوع"},"telecom/medium":{"label":"وسيط"},"tidal":{"label":"المد والجزر","terms":"مد وجزر"},"to":{"label":"إلى"},"toilets":{"label":"مراحيض","terms":"مراحيض,دورات مياة,حمامات"},"toilets/disposal":{"label":"طريقة التصريف","options":{"bucket":"حاوية تفرغ بشكل دوري","chemical":"حفرة معالجة بمواد كيميائية","flush":"شطف/سيفون/ماء متدفق","pitlatrine":"حفرة مرحاض"}},"toilets/handwashing":{"label":"مغاسل يدين","terms":"مغاسل يدين,مغسلة,ميضأة"},"toilets/position":{"label":"أنواع المراحيض","terms":"المراحيض,وضعيات قضاء الحاجة"},"toilets/wheelchair":{"label":"مرحاض يستقبل الكراسي المتحركة","options":{"limited":"محدودة","no":"لا","yes":"نعم"}},"toll":{"label":"رسوم","terms":"رسوم"},"tomb":{"label":"النوع"},"tourism":{"label":"النوع"},"tower/construction":{"label":"وصف بناء البرج","placeholder":"مشدود ، مبني هيكلياً، مخفي ، ..."},"tower/platforms":{"label":"منصات","placeholder":"1 ، 2 ، 3 ..."},"tower/type":{"label":"النوع"},"townhall/type":{"label":"النوع"},"tracktype":{"label":"تصنيف المسار","options":{"grade2":"مستوي في المعظم: وهو مسار عبر الحصى/صخور المختلطة مع بعض المواد اللينة","grade3":"مسار مختلط بين موارد صلبة ولينة","grade4":"لين في المعظم: مسار على تربة/رمال/عشب مختلطة مع بعض المواد الصلبة مثل الحصى","grade5":"لين: مسار يمر عبر التربة /الرمال /العشب ولا يوجد فيه حصى وصخور"},"placeholder":"مستوي، معظمه مستوي، لين..."},"trade":{"label":"النوع"},"traffic_calming":{"label":"النوع","terms":"نوع,صنف,نمط"},"traffic_sign":{"label":"علامة مرورية"},"traffic_sign/direction":{"label":"اتجاه علامة الطريق","options":{"backward":"للخلف","both":"للاتجاهين","forward":"للأمام"}},"traffic_signals":{"label":"النوع"},"traffic_signals/arrow":{"label":"سهم اللمس","terms":"سهم اللمس"},"traffic_signals/countdown":{"label":"العداد التنازلي","terms":"العداد التنازلي"},"traffic_signals/direction":{"label":"اتجاه علامة الطريق","options":{"backward":"إلى الخلف","both":"كلاهما / الكل","forward":"إلى الأمام"}},"traffic_signals/minimap":{"label":"خريطة اللمس","terms":"خريطة اللمس"},"traffic_signals/sound":{"label":"إشارات بالصوت","options":{"locate":{"description":"إشارات بالصوت","title":"محدد موقع زر الاتصال"},"no":"لا","walk":{"description":"لا يوجد سوى إشارة عند السماح بالمشي","title":"مؤشر المشي"},"yes":"نعم"}},"traffic_signals/vibration":{"label":"اهتزاز"},"trail_visibility":{"label":"مدى وضوح الدرب/المسار","options":{"bad":"سيء: لا يوجد علامات إرشادية، المسار غير مرئي أو غير مطروق","excellent":"ممتاز: مسارات واضحة وعلامات إرشادية في كل مكان","good":"جيد: علامات واضحة ، قد تحتاج للبحث عن المسار في بعض الأحيان","horrible":"مخيف: بلا مسار/غير مطروق بالغالب، ولابد من توفر مهارات لاجتياز المسار","intermediate":"متوسط: علامات إرشادية قليلة: والمسار مرئي في الغالب","no":"غير واضح أبداً: بلا مسار وغير مطروق، ولابد من مهارات عالية وتوجيه لاجتياز المكان"},"placeholder":"ممتاز، جيد، سيء...","terms":"مدى وضوح الدرب,مدى وضوح المسار,مدى وضوح الطريق لغير السيارات والمركبات"},"transformer":{"label":"نوع المحول الكهربائي","options":{"auxiliary":"مساعد: يغذي النظم الداخلية في المحطات الفرعية","converter":"محول: يغذي محولات الطاقة","distribution":"موزع : يغذي المستهلكين النهائيين ، ويتم تركيبه خارج المحطات الفرعية","generator":"مولد: يقوم بتصعيد الجهد في محطات توليد الكهرباء","main":"رئيسي: لإعادة إرسال الطاقة","phase_angle_regulator":"الداعم التربيعي","yes":"يؤدي دور غير معروف"}},"trees":{"label":"أشجار"},"trench":{"label":"النوع"},"trolley_wire":{"label":"كابلات/أسلاك ترولي علوية","terms":"كابلات/أسلاك ترولي علوية"},"tunnel":{"label":"النوع","placeholder":"الافتراضي"},"tunnel_combo":{"label":"النوع","options":{"avalanche_protector":"حامي انهيار ثلجي","building_passage":"ممر داخل البناء","culvert":"بربخ"}},"turning_circle":{"label":"شكل"},"two_sided":{"label":"ذو وجهين","options":{"undefined":"لا","yes":"نعم"}},"usage_rail":{"label":"نوع الاستخدام","options":{"branch":"فرعي/ثانوي","industrial":"صناعي","main":"رئيسي","military":"عسكري","test":"تجريبي","tourism":"سياحي"},"terms":"نوع الإستخدام"},"usage_waterway":{"label":"نوع الاستخدام","options":{"headrace":"إنتاج الكهرباء من انصباب الماء من الأنابيب","irrigation":"مجرى مخصص للري الزراعي","spillway":"مجرى الانسكاب","tailrace":"انتاج الكهرباء من مخرجات التوربينات","transmission":"مسارات النقل","transportation":"النقل"}},"utility":{"label":"المرفق"},"utility_semi":{"label":"المرافق"},"valve":{"label":"النوع"},"vehicles":{"label":"مركبات","options":{"bus":"حافلة","ferry":"عبّارة (مركب بحري)","light_rail":"قطار خفيف","monorail":"سكة حديد أحادية","subway":"مترو الأنفاق","train":"قطار","tram":"ترام","trolleybus":"حافلة ترولي"}},"vending":{"label":"أنواع البضائع"},"vhf":{"label":"رقم موجة VHF","terms":"رقم موجة vhf,رقم قناة vhf"},"via":{"label":"عبر"},"video_calls":{"label":"Video Calls","terms":"video calls"},"visibility":{"label":"مجال الرؤية","options":{"area":"يرى من 20 متر (65 قدم) وأكثر","house":"يرى من 5 أمتار (16 قدم) فما دون","street":"يرى من 5 إلى 20 متر (16 إلى 65 قدم)"},"terms":"الوضوح/مدى الرؤية"},"volcano/status":{"label":"حالة البركان","options":{"active":"نشط","dormant":"في سبات عميق","extinct":"خامد"}},"volcano/type":{"label":"نوع البركان","options":{"scoria":"مخروطي (من جفاء البركان)","shield":"درعي (شكل درع)","stratovolcano":"طبقي"}},"voltage":{"label":"الجهد الكهربائي"},"voltage/primary":{"label":"الجهد الكهربائي الأساسي","terms":"الجهد الكهربائي الأساسي,الفولت الكهربائي الأساسي،الجهد الكهربائي الرئيسي,الفولت الكهربائي الرئيسي"},"voltage/secondary":{"label":"الجهد الكهربائي الثانوي","terms":"الجهد الكهربائي الثانوي,الفولت الكهربائي الثانوي"},"voltage/tertiary":{"label":"الجهد الكهربائي العالي","terms":"الجهد الكهربائي العالي,الجهد العالي,الفولت العالي"},"wall":{"label":"النوع"},"waste":{"label":"نفايات"},"water":{"label":"النوع"},"water_point":{"label":"نقطة تعبئة مياة شرب"},"water_source":{"label":"مصدر المياه","options":{"water_tank":"خزان ماء"}},"water_tank/volume":{"label":"السعة (لتر)","placeholder":"10000, 20000, 30000…","terms":"الحجم (لتر)"},"waterway":{"label":"النوع"},"website":{"label":"الموقع الإلكتروني","placeholder":"https://example.com","terms":"الموقع الإلكتروني,الصفحة الإلكترونية"},"wetland":{"label":"النوع","options":{"bog":"رخاخ","fen":"مستنقع أعشاب مغذى من المياه الجوفية","mangrove":"غابات المانغروف","marsh":"هور/ سبخة","reedbed":"مقصبة","saltmarsh":"مستنقع الملح الساحلي","string_bog":"سلسلة رخاخ","swamp":"مستنقع","tidalflat":"المد و الجزر منبسط","wet_meadow":"مرعى/مرج رطب طوال العام"}},"wheelchair":{"label":"إمكانية دخول/وصول كراسي المعاقين","options":{"limited":"محدودة","no":"لا، غير ممكنة","yes":"نعم ممكنة"},"terms":"إمكانية دخول كراسي المعاقين,إمكانية وصول كراسي المعاقين,إمكانية دخول كراسي ذوي الإحتياجات الخاصة,إمكانية وصول ذوي الإحتياجات الخاصة"},"wholesale":{"label":"بيع بالجملة"},"width":{"label":"العرض (بالمتر)","terms":"العرض (بالمتر)"},"wikidata":{"label":"معرف ويكي بيانات","terms":"معرف ويكي بيانات,رقم ويكي بيانات"},"wikimedia_commons":{"label":"صفحة ويكيميديا كومنز","placeholder":"File:Example.jpg","terms":"صفحة ويكيميديا كومنز"},"wikipedia":{"label":"ويكيبيديا","terms":"ويكيبيديا"},"windings":{"label":"عدد لفات الملف الكهرومغناطيسي/الوشيعة","placeholder":"1, 2, 3...","terms":"الملف الكهرومغناطيسي,الوشيعة"},"windings/auto":{"label":"محول ذاتي","options":{"no":"لا","undefined":"يفترض أن يكون لا","yes":"نعم"},"terms":"محول ذاتي"},"windings/configuration":{"label":"شكل الملف الكهرومغناطيسي/الوشيعة","options":{"delta":"دلتا","leblanc":"لوبلان","open":"مفتوحة","open-delta":"دلتا مفتوحة","scott":"سكوت","star":"ستار / واي","zigzag":"زيق زاق"},"terms":"الملف الكهرومغناطيسي,الوشيعة"}},"presets":{"addr/interpolation":{"name":"عنوان الاستيفاء"},"address":{"name":"العنوان","terms":"عنوان,العنوان,الموقع"},"advertising/billboard":{"name":"لوحة إعلانات كبيرة ومرفوعة (على الشارع)","terms":"لوحة إعلانات شوارع,لوحة إعلانات كبيرة,لوحة إعلانات الطريق,لوحة إعلانات مثبته بعامود كبير"},"advertising/board":{"name":"لوحة الإعلانات والملصقات","terms":"لوحة إعلانات وملصقات,لوحة إعلانات متعددة,لوحة إعلانات معلقة بدبابيس"},"advertising/column":{"name":"عمود إعلاني","terms":"عمود دعائي,أعمدة موريس,أعمدة أسطوانية للدعايات والإعلانات"},"advertising/poster_box":{"name":"لوحة دعايات في إطار","terms":"دعايات في إطار,دعايات في صندوق مربع,دعايات شوارع على مستوى الانسان"},"advertising/totem":{"name":"لوحة إعلان مستطيلة عمودية","terms":"لوحة إعلان مستطيلة عمودية,لوحة إعلان بشكل طوطم,لوحة دعايات مستطيلة عمودية"},"aerialway":{"name":"عناصر التنقل الجوي بالكابلات"},"aerialway/cable_car":{"name":"القاطرة المعلقة (تلفريك)","terms":"تلفريك، معبر هوائي، مصعد هوائي,القاطرة المعلقة,التيليفيريك"},"aerialway/chair_lift":{"name":"مصعد تزلج","terms":"مصعد تزلج، تلسياج"},"aerialway/drag_lift":{"name":"خط سحب المتزلجين","terms":"خط سحب المتزلجين"},"aerialway/gondola":{"name":"جندول","terms":"جندول,تيلفريك يدور بشكل دائري"},"aerialway/goods":{"name":"نقل البضائع بالكابلات","terms":"نقل البضائع بالكابلات,نقل البضائع بالتيلفريك"},"aerialway/j-bar":{"name":"خط سحب نوع جَي","terms":"خط سحب نوع جَي"},"aerialway/magic_carpet":{"name":"خط سحب للأطفال","terms":"خط سحب للأطفال"},"aerialway/mixed_lift":{"name":"خط سحب مختلط","terms":"خط سحب مختلط"},"aerialway/platter":{"name":"خط سحب بشكل طبق","terms":"خط سحب بشكل طبق"},"aerialway/pylon":{"name":"برج التلفريك / المصعد التزلج","terms":"برج التلفريك ; المصعد التزلج"},"aerialway/rope_tow":{"name":"حبل سحب الرافعة","terms":"حبل سحب الرافعة"},"aerialway/t-bar":{"name":"خط سحب بشكل تي","terms":"خط سحب بشكل تي"},"aerialway/zip_line":{"name":"كابل التنقل المنزلق","terms":"كابل التنقل"},"aeroway":{"name":"عناصر التنقل الجوي"},"aeroway/aerodrome":{"name":"مطار","terms":"مطار"},"aeroway/apron":{"name":"مواقف الطائرات","terms":"مواقف الطائرات,مرابض الطائرات"},"aeroway/gate":{"name":"بوابة مطار","terms":"بوابة مطار"},"aeroway/hangar":{"name":"حظيرة طائرات","terms":"حظائر الطائرات,حظيرة الطائرات"},"aeroway/helipad":{"name":"مهبط الهليكوبتر","terms":"مهبط للطائرات العمودية,مهبط الهليكوبتر"},"aeroway/holding_position":{"name":"مواضع انتظار طائرات","terms":"مواضع انتظار طائرات,مواقف انتظار طائرات"},"aeroway/jet_bridge":{"name":"جسر إركاب","terms":"جسر الطائرة,خرطوم الطائرة,جسر بين المبنى والطائرة"},"aeroway/parking_position":{"name":"موضع وقوف الطائرات","terms":"موضع وقوف الطائرات"},"aeroway/runway":{"name":"مدرج المطار","terms":"مدرج إقلاع وهبوط,مدرج المطار"},"aeroway/spaceport":{"name":"ميناء فضائي","terms":"ميناء فضائي,مطار فضائي"},"aeroway/taxiway":{"name":"طريق للمدرج","terms":"طريق للمدرج,طريق تدريج الطائرات"},"aeroway/terminal":{"name":"صالة مطار","terms":"صالة مطار,محطة مطار"},"aeroway/windsock":{"name":"كم الريح","terms":"كُم الريح"},"allotments/plot":{"name":"قطعة حديقة تشاركية","terms":"قطعة حديقة تشاركية,قطعة حديقة مشتركة,قطعة حديقة اجتماعية,قطعة حديقة عائلية"},"amenity":{"name":"مرفق"},"amenity/animal_boarding":{"name":"منشأة رعاية حيوانات","terms":"منشأة رعاية حيوانات"},"amenity/animal_breeding":{"name":"منشأة تربية وبيع حيوانات","terms":"منشأة تربية وبيع حيوانات"},"amenity/animal_shelter":{"name":"مأوى حيوانات","terms":"مأوى حيوانات; ملجأ حيوانات"},"amenity/arts_centre":{"name":"مركز فنون","terms":"مركز الفنون، معرض الفن، ساحة عرض، ملتقى فني"},"amenity/atm":{"name":"صراف آلي","terms":"صراف آلي,ماكينة سحب,صرافة,مكينة صراف آلية"},"amenity/bank":{"name":"بنك","terms":"بنك,مصرف"},"amenity/bar":{"name":"حانة","terms":"بار,حانة,خمَّارَة,مَشْرَب"},"amenity/bar/lgbtq":{"name":"LGBTQ+ Bar"},"amenity/bbq":{"name":"مكان مخصص للشواء","terms":"شواء، باربيكيو"},"amenity/bench":{"name":"مقعد","terms":"مقعد,مقعد طويل"},"amenity/bicycle_parking":{"name":"موقف دراجات هوائية","terms":"موقف دراجات هوائية; موقف; دراجة; دراجات"},"amenity/bicycle_parking/building":{"name":"مرآب وقوف دراجات","terms":"مرآب وقوف دراجات"},"amenity/bicycle_parking/lockers":{"name":"خزائن الدراجات","terms":"خزائن الدراجات"},"amenity/bicycle_parking/shed":{"name":"سقيفة/مظلة دراجات","terms":"سقيفة دراجات,مخزن دراجات"},"amenity/bicycle_rental":{"name":"تأجير دراجات","terms":"تأجير دراجات هوائية; تأجير; دراجة; دراجات; هوائي; هوائية"},"amenity/bicycle_repair_station":{"name":"ورشة إصلاح دراجات هوائية","terms":"دراجات هوائية; دراجة; اصلاح; تصليح دراجات; تصليح"},"amenity/biergarten":{"name":"Biergarten"},"amenity/binoculars":{"name":"مناظير مثبتة","terms":"مناظير مثبتة"},"amenity/boat_rental":{"name":"محل استئجار قوارب","terms":"تأجير القوارب، ساحة الزوارق، تأجير زوارق"},"amenity/boat_storage":{"name":"مخزن القوارب","terms":"مخزن القوارب,مستودع القوارب"},"amenity/bureau_de_change":{"name":"تحويل أموال","terms":"تحويل أموال,صرافة"},"amenity/bus_station":{"name":"محطة حافلات"},"amenity/cafe":{"name":"مقهى","terms":"مقهى"},"amenity/cafe/bubble_tea":{"name":"مقهى شاي الفقاعات","terms":"مقهى شاي الفقاعات"},"amenity/cafe/coffee_shop":{"name":"مقهى","terms":"مقهى قهوة مختصة,مقهى مفتوح"},"amenity/car_pooling":{"name":"محطة تجميع السيارات","terms":"محطة تجميع السيارات"},"amenity/car_rental":{"name":"محل إيجار سيارات","terms":"محل استئجار السيارات"},"amenity/car_sharing":{"name":"محطة مشاركة السيارات","terms":"محطة مشاركة السيارات"},"amenity/car_wash":{"name":"غسيل سيارات","terms":"غسيل السيارات"},"amenity/casino":{"name":"كازينو","terms":"كازينو"},"amenity/charging_station":{"name":"محطة شحن","terms":"محطة شحن"},"amenity/childcare":{"name":"رعاية الأطفال","terms":"رعاية الأطفال; حضانة"},"amenity/cinema":{"name":"سينما","terms":"سينما,صالة سينما,دار السينما"},"amenity/clinic":{"name":"عيادة","terms":"عيادة; مستوصف"},"amenity/clinic/abortion":{"name":"عيادة الإجهاض","terms":"عيادة الإجهاض"},"amenity/clinic/fertility":{"name":"عيادة الخصوبة","terms":"عيادة الخصوبة"},"amenity/clock":{"name":"ساعة","terms":"ساعة"},"amenity/clock/sundial":{"name":"مزولة","terms":"المزولة الشمسية"},"amenity/college":{"name":"أرض كلية","terms":"أرض كلية,أرض جامعية,الحرم الجامعي"},"amenity/community_centre":{"name":"مركز اجتماعي","terms":"مركز اجتماعي"},"amenity/community_centre/lgbtq":{"name":"LGBTQ+ Community Center"},"amenity/community_centre/youth_centre":{"name":"مركز الشباب","terms":"مركز الشباب,بيت الشباب"},"amenity/compressed_air":{"name":"منفاخ إطارات دراجات","terms":"بنشر دراجات"},"amenity/conference_centre":{"name":"مركز مؤتمرات","terms":"مركز مؤتمرات"},"amenity/courthouse":{"name":"محكمة","terms":"مجمع محاكم,دار عدل,دار قضاء"},"amenity/coworking_space":{"name":"مساحة عمل مشتركة"},"amenity/crematorium":{"name":"محرقة موتى","terms":"محرقة موتى,محرقة جثث الموتى"},"amenity/dentist":{"name":"طبيب أسنان","terms":"طبيب أسنان"},"amenity/dive_centre":{"name":"مركز للغوص","terms":"مركز للغوص"},"amenity/doctors":{"name":"طبيب","terms":"طبيب"},"amenity/doctors/gynaecology":{"name":"طبيب أمراض نساء","terms":"طبيب أمراض نساء"},"amenity/dojo":{"name":"دوجو / أكاديمية الفنون القتالية","terms":"دوجو,أكاديمية الفنون القتالية"},"amenity/dressing_room":{"name":"غرفة التبديل","terms":"غرفة التبديل,غرفة تبديل اللاعبين"},"amenity/drinking_water":{"name":"مياه شرب","terms":"ماء الشرب"},"amenity/driver_training":{"name":"أراضي تعليم السيلقة"},"amenity/driving_school":{"name":"مدرسة تعليم القيادة","terms":"مدرسة تعليم القيادة"},"amenity/embassy":{"name":"سفارة"},"amenity/events_venue":{"name":"صالة مناسبات / قصر أفراح","terms":"صالة مناسبات,قصر أفراح"},"amenity/exhibition_centre":{"name":"Exposition Center"},"amenity/fast_food":{"name":"وجبات سريعة","terms":"مأكولات سريعة"},"amenity/fast_food/burger":{"name":"برجر وجبة سريعة","terms":"إفطار,عشاء,طعام"},"amenity/fast_food/chicken":{"name":"دجاج وجبة سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/fast_food/donut":{"name":"دونات وجبة سريعة","terms":"دونات"},"amenity/fast_food/fish_and_chips":{"name":"سمك ورقائق بطاطس وجبة سريعة","terms":"إفطار,قهوة,عشاء,طعام"},"amenity/fast_food/hot_dog":{"name":"هوت دوج وجبة سريعة","terms":"هوت دوج وجبة سريعة"},"amenity/fast_food/ice_cream":{"name":"أيس كريم وجبة سريعة"},"amenity/fast_food/juice":{"name":"عصير وجبة سريعة","terms":"عصير وجبة سريعة"},"amenity/fast_food/kebab":{"name":"كباب وجبة سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/fast_food/mexican":{"name":"طعام مكسيكي وجبة سريعة","terms":"مكسيكي"},"amenity/fast_food/pizza":{"name":"بيتزا وجبات سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/fast_food/sandwich":{"name":"شطيرة وجبات سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/ferry_terminal":{"name":"محطة الركاب"},"amenity/fire_station":{"name":"محطة إطفاء حريق","terms":"محطة إطفاء"},"amenity/food_court":{"name":"قاعة طعام","terms":"وجبات سريعة,مطعم,طعام"},"amenity/fountain":{"name":"نافورة","terms":"نافورة"},"amenity/fuel":{"name":"محطة وقود","terms":"محطة بترول,محطة غاز"},"amenity/gambling":{"name":"Gambling Hall"},"amenity/give_box":{"name":"صندوق مشاركة الأشياء المجانية","terms":"صندوق مشاركة الأشياء المجانية"},"amenity/grave_yard":{"name":"مقبرة","terms":"مقبرة,مدفن"},"amenity/grit_bin":{"name":"صندوق حصى وملح","terms":"صندوق حصى وملح"},"amenity/hospital":{"name":"أرض مستشفى","terms":"أرض مستشفى; مستشفى"},"amenity/hunting_stand":{"name":"منصة صيد","terms":"منصة صيد,برج صيد"},"amenity/ice_cream":{"name":"محل بيع المثلجات","terms":"مثلجات,ايس كريم"},"amenity/internet_cafe":{"name":"مقهى إنترنت","terms":"مقهى إنترنت"},"amenity/karaoke_box":{"name":"Karaoke Box"},"amenity/kindergarten":{"name":"أرض حضانة / روض","terms":"روضة,رياض أطفال,تمهيدي ، حضانة ، روض"},"amenity/kneipp_water_cure":{"name":"بركة علاج القدم بالماء","terms":"بركة علاج القدم بالماء"},"amenity/language_school":{"name":"مدرسة لغات","terms":"مدرسة لغات"},"amenity/lavoir":{"name":"مكان غسيل الملابس يدوياً","terms":"مكان غسيل الملابس يدوياً"},"amenity/letter_box":{"name":"صندوق البريد","terms":"صندوق البريد"},"amenity/library":{"name":"مكتبة عامة","terms":"مكتبة"},"amenity/loading_dock":{"name":"رصيف التحميل","terms":"رصيف التحميل"},"amenity/lounger":{"name":"Lounger"},"amenity/love_hotel":{"name":"Love Hotel"},"amenity/marketplace":{"name":"محل تسوق","terms":"سوق,سوق تجارية,ساحة السوق"},"amenity/monastery":{"name":"Monastery Grounds"},"amenity/money_transfer":{"name":"محل لتحويل الأموال","terms":"محل لتحويل الأموال"},"amenity/mortuary":{"name":"المشرحة","terms":"المشرحة"},"amenity/motorcycle_parking":{"name":"موقف دراجات نارية","terms":"دراجة نارية,دراجة بخارية; موقف; مواقف; ركن"},"amenity/motorcycle_rental":{"name":"إيجار دراجات نارية","terms":"إيجار دراجات نارية"},"amenity/music_school":{"name":"مدرسة موسيقى","terms":"مدرسة موسيقى"},"amenity/nightclub":{"name":"ملهى ليلي","terms":"كباريه"},"amenity/nightclub/lgbtq":{"name":"LGBTQ+ Nightclub"},"amenity/nursing_home":{"name":"دار التمريض"},"amenity/parcel_locker":{"name":"صناديق استلام الشحنات البريدية","terms":"صناديق استلام البريد"},"amenity/parking":{"name":"مكان انتظار سيارات","terms":"مكان انتظار سيارات"},"amenity/parking/multi-storey":{"name":"مرآب وقوف متعدد الطوابق","terms":"جراج,مرآب"},"amenity/parking/park_ride":{"name":"مكان الاصطفاف والركوب","terms":"مكان الاصطفاف والركوب"},"amenity/parking/street-side":{"name":"مواقف بجانب الشارع","terms":"مواقف بجانب الشارع"},"amenity/parking/underground":{"name":"موقف تحت الأرض","terms":"جراج"},"amenity/parking_entrance":{"name":"مدخل / مخرج مرآب السيارات","terms":"مدخل / مخرج موقف سيارات"},"amenity/parking_space":{"name":"موقف سيارات","terms":"موقف سيارات"},"amenity/parking_space/disabled":{"name":"أماكن المواقف المتاحة","terms":"أماكن المواقف المتاحة,نوع أماكن المواقف المتاحة"},"amenity/payment_centre":{"name":"مركز دفع نقود","terms":"مركز دفع نقود"},"amenity/payment_terminal":{"name":"محطة دفع نقود","terms":"محطة دفع نقود"},"amenity/pharmacy":{"name":"صيدلية","terms":"أدوات النظافة الشخصية والتجميل"},"amenity/photo_booth":{"name":"Photo Booth"},"amenity/place_of_worship":{"name":"مكان عبادة","terms":"محل عبادة"},"amenity/place_of_worship/buddhist":{"name":"معبد بوذي","terms":"معبد بوذي"},"amenity/place_of_worship/christian":{"name":"كنيسية مسيحية"},"amenity/place_of_worship/christian/jehovahs_witness":{"name":"Kingdom Hall of Jehovah's Witnesses"},"amenity/place_of_worship/christian/la_luz_del_mundo":{"name":"La Luz del Mundo Temple"},"amenity/place_of_worship/christian/quaker":{"name":"Quaker Friends Meeting House"},"amenity/place_of_worship/hindu":{"name":"معبد هندوسي"},"amenity/place_of_worship/jewish":{"name":"كنيس يهودي"},"amenity/place_of_worship/muslim":{"name":"مسجد","terms":"مسجد,جامع,مصلى,صلاة,مسلم,مسلمين"},"amenity/place_of_worship/shinto":{"name":"ضريح شنتو"},"amenity/place_of_worship/sikh":{"name":"معبد السيخ"},"amenity/place_of_worship/taoist":{"name":"معبد طاوي"},"amenity/planetarium":{"name":"قبة فلكية","terms":"قبة فلكية، قبة سماوية، بلانتاريوم"},"amenity/police":{"name":"شرطة","terms":"مركز الشرطة,الشرطة"},"amenity/polling_station":{"name":"Permanent Polling Place"},"amenity/post_box":{"name":"صندوق بريد عام","terms":"صندوق بريد عام"},"amenity/post_depot":{"name":"مكتب الفرز البريدي","terms":"مكتب الفرز البريدي"},"amenity/post_office":{"name":"مكتب البريد","terms":"دائرة البريد,مكتب البريد,مكتب بريد"},"amenity/prep_school":{"name":"مدرسة إعداد للاختبارات/دروس خصوصية","terms":"مدرسة إعداد للاختبارات/دروس خصوصية ، ساعات اضافية"},"amenity/prison":{"name":"مرافق/أراضي سجن","terms":"مرافق/أراضي سجن"},"amenity/pub":{"name":"حانة","terms":"مشرب,حانة,خمارة"},"amenity/pub/irish":{"name":"Irish Pub"},"amenity/pub/lgbtq":{"name":"LGBTQ+ Pub"},"amenity/pub/microbrewery":{"name":"Brewpub"},"amenity/public_bath":{"name":"دورة مياة عمومية","terms":"حمام عام,دورة مياة عمومية"},"amenity/public_bookcase":{"name":"خزانة كتب عامة","terms":"رف كتب عامة"},"amenity/ranger_station":{"name":"محطة الحراسة","terms":"محطة الحراسة"},"amenity/recycling":{"name":"إعادة التدوير"},"amenity/recycling/container/electrical_items":{"name":"حاوية نفايات إلكترونية","terms":"حاوية نفايات إلكترونية"},"amenity/recycling/container/green_waste":{"name":"حاوية نفايات خضراء","terms":"حاوية نفايات خضراء"},"amenity/recycling_centre":{"name":"مركز إعادة تدوير","terms":"مركز إعادة تدوير"},"amenity/recycling_container":{"name":"حاوية إعادة التدوير","terms":"حاوية إعادة التدوير"},"amenity/refugee_site":{"name":"مخيم لاجئين","terms":"مخيم لاجئين"},"amenity/research_institute":{"name":"أراضي معهد بحوث","terms":"أراضي معهد بحوث، أرض معهد للبحث العلمي، أرض معهد الأبحاث العلمية، أرض بحث علمي"},"amenity/restaurant":{"name":"مطعم","terms":"مطعم"},"amenity/restaurant/american":{"name":"مطعم امريكي","terms":"مطعم امريكي"},"amenity/restaurant/asian":{"name":"مطعم آسيوي","terms":"مطعم آسيوي"},"amenity/restaurant/barbeque":{"name":"مطعم باربيكيو","terms":"مطعم باربيكيو"},"amenity/restaurant/chinese":{"name":"مطعم صيني","terms":"مطعم صيني"},"amenity/restaurant/french":{"name":"مطعم فرنسي","terms":"مطعم فرنسي"},"amenity/restaurant/german":{"name":"مطعم ألماني","terms":"مطعم ألماني"},"amenity/restaurant/greek":{"name":"مطعم يوناني","terms":"مطعم يوناني"},"amenity/restaurant/indian":{"name":"مطعم هندي","terms":"مطعم هندي"},"amenity/restaurant/italian":{"name":"مطعم إيطالي","terms":"مطعم إيطالي"},"amenity/restaurant/japanese":{"name":"مطعم ياباني","terms":"مطعم ياباني"},"amenity/restaurant/mexican":{"name":"مطعم مكسيكي","terms":"مطعم مكسيكي"},"amenity/restaurant/noodle":{"name":"مطعم مكرونة","terms":"مطعم مكرونة"},"amenity/restaurant/pizza":{"name":"مطعم بيتزا","terms":"مطعم بيتزا"},"amenity/restaurant/seafood":{"name":"مطعم مأكولات بحرية","terms":"مطعم مأكولات بحرية"},"amenity/restaurant/steakhouse":{"name":"مطعم شرائح اللحم","terms":"مطعم شرائح اللحم"},"amenity/restaurant/sushi":{"name":"مطعم سوشي","terms":"مطعم سوشي"},"amenity/restaurant/thai":{"name":"مطعم تايلاندي","terms":"مطعم تايلاندي"},"amenity/restaurant/turkish":{"name":"مطعم تركي","terms":"مطعم تركي"},"amenity/restaurant/vietnamese":{"name":"مطعم فيتنامي","terms":"مطعم فيتنامي"},"amenity/sanitary_dump_station":{"name":"مكب صرف صحي للكرفانات","terms":"مكب دورات مياه الكرفانات"},"amenity/school":{"name":"أرض مدرسة","terms":"مدرسة"},"amenity/shelter":{"name":"مأوى/عشة","terms":"مأوى,ملجأ,ملاذ,سقيفة,وقاء,عشة,صندقه"},"amenity/shelter/gazebo":{"name":"شرفة أرضية","terms":"شرفة أرضية"},"amenity/shelter/lean_to":{"name":"كوخ داخل مبنى","terms":"كوخ بثلاث جدارن,عجاف,كوخ منحدر السطح,كوخ له جنب منفتح,كوخ ضمن مبنى"},"amenity/shelter/picnic_shelter":{"name":"يحمي من المطر","terms":"يحمي من المطر"},"amenity/shelter/public_transport":{"name":"مأوى العبور","terms":"مأوى العبور"},"amenity/shower":{"name":"دش استحمام","terms":"دش استحمام"},"amenity/smoking_area":{"name":"منطقة مخصصة للتدخين","terms":"منطقة مخصصة للتدخين"},"amenity/social_centre":{"name":"مركز اجتماعي","terms":"مركز اجتماعي"},"amenity/social_facility":{"name":"مرفق اجتماعي","terms":"مرفق اجتماعي"},"amenity/social_facility/ambulatory_care":{"name":"الرعاية الإسعافية","terms":"الرعاية الإسعافية"},"amenity/social_facility/food_bank":{"name":"بنك الطعام","terms":"بنك الطعام"},"amenity/social_facility/group_home":{"name":"دار المسنين","terms":"دار المسنين"},"amenity/social_facility/homeless_shelter":{"name":"ملجأ مشردين","terms":"ملجأ مشردين، مأوى"},"amenity/social_facility/nursing_home":{"name":"دار التمريض","terms":"دار التمريض"},"amenity/studio":{"name":"أستوديو","terms":"أستوديو; إذاعة; راديو; تلفزيون"},"amenity/studio/audio":{"name":"Recording Studio"},"amenity/studio/radio":{"name":"Radio Station"},"amenity/studio/television":{"name":"Television Station"},"amenity/studio/video":{"name":"Film Studio"},"amenity/taxi":{"name":"موقف تاكسي","terms":"موقف أجرة"},"amenity/telephone":{"name":"هاتف","terms":"هاتف,تلفون"},"amenity/theatre":{"name":"مسرح","terms":"مسرح"},"amenity/theatre/type/amphi":{"name":"مسرح روماني"},"amenity/ticket_validator":{"name":"مدقق التذاكر","terms":"مدقق التذاكر"},"amenity/toilets":{"name":"غرفة استراحة","terms":"غرفة استراحة"},"amenity/toilets/disposal/flush":{"name":"مرحاض له نظام شطف","terms":"مرحاض له سيفون,مرحاض يتخلص من نفاياته بالماء"},"amenity/toilets/disposal/pitlatrine":{"name":"مرحاض ذو حفرة","terms":"مرحاض له مجرى طويل,مرحاض له حفره من أسفله"},"amenity/toilets/portable":{"name":"مرحاض متنقل","terms":"مرحاض يصب في مواد كيميائية"},"amenity/townhall":{"name":"مبنى البلدية/المركز الإداري","terms":"المجلس البلدي,دار البلدية,قاعة المدينة،المركز الإداري"},"amenity/townhall/city":{"name":"مركز المدينة/إمارة المدينة","terms":"مركز المدينة,قاعة البلدية،مجلس المدينة،مبنى البلدية"},"amenity/toy_library":{"name":"Toy Library"},"amenity/trolley_bay":{"name":"عربة كورال","terms":"عربة كورال"},"amenity/university":{"name":"أرض الجامعة","terms":"أرض جامعة,حرم جامعي"},"amenity/vacuum_cleaner":{"name":"محطة مكنسة سيارات","terms":"محطة كنس وتنظيف داخلي السيارة"},"amenity/vehicle_inspection":{"name":"الفحص الدوري","terms":"الفحص الدوري,فحص السيارات"},"amenity/vending_machine":{"name":"ماكينة البيع الذاتي","terms":"آلة بيع،ماكينة بيع آلي"},"amenity/vending_machine/bicycle_tube":{"name":"آلة بيع الأنبوب الداخلي للدراجة","terms":"آلة بيع الأنبوب الداخلي للدراجة"},"amenity/vending_machine/bottle_return":{"name":"آلة تدوير قوارير بمقابل مالي","terms":"آلة بيع عكسي,آلة تدوير قوارير,آلة تدوير قوارير علب,آلة تدوير عبوات زجاجية"},"amenity/vending_machine/bread":{"name":"آلة بيع آلي للخبز","terms":"آلة بيع ذاتي للخبز"},"amenity/vending_machine/cigarettes":{"name":"آلة بيع سجائر","terms":"سجائر"},"amenity/vending_machine/coffee":{"name":"آلة بيع قهوة","terms":"قهوة"},"amenity/vending_machine/condoms":{"name":"آلة بيع واقي ذكري"},"amenity/vending_machine/drinks":{"name":"آلة بيع مشروبات","terms":"مشروبات"},"amenity/vending_machine/eggs":{"name":"آلة بيع آلي للبيض","terms":"آلة بيع للبيض"},"amenity/vending_machine/electronics":{"name":"آلة بيع إلكترونيات","terms":"بيع إلكترونيات"},"amenity/vending_machine/elongated_coin":{"name":"آلة صرف عملات معدينة","terms":"آلة صرف عملات مسطحة"},"amenity/vending_machine/excrement_bags":{"name":"موزع أكياس فضلات","terms":"موزع أكياس براز حيوانات"},"amenity/vending_machine/feminine_hygiene":{"name":"آلة بيع أغراض نظافة نسائية","terms":"آلة بيع أغراض صحية نسائية"},"amenity/vending_machine/food":{"name":"آلة بيع مواد غذائية","terms":"آلة بيع مواد غذائية"},"amenity/vending_machine/fuel":{"name":"مضخة وقود","terms":"مضخة وقود,مضخة غاز,مضخة بترول,مضخة جاز,مضخة سولار"},"amenity/vending_machine/ice_cream":{"name":"آلة بيع آيس كريم","terms":"آلة بيع آيس كريم,آلة بيع مثلجات"},"amenity/vending_machine/ice_cubes":{"name":"آلة بيع ثلج","terms":"آلة بيع ثلج"},"amenity/vending_machine/newspapers":{"name":"آلة بيع صحف يومية","terms":"آلة بيع جرائد"},"amenity/vending_machine/parking_tickets":{"name":"ماكينة بيع تذاكر وقوف","terms":"ماكينة تذاكر"},"amenity/vending_machine/pizza":{"name":"آلة بيع البيتزا","terms":"آلة بيع البيتزا الذاتية"},"amenity/vending_machine/public_transport_tickets":{"name":"آلة بيع تذاكر مواصلات عامة","terms":"آلة بيع تذاكر مواصلات عامة"},"amenity/vending_machine/stamps":{"name":"آلة بيع طوابع بريدية","terms":"آلة بيع طوابع بريدية"},"amenity/vending_machine/sweets":{"name":"آلة بيع الوجبات الخفيفة","terms":"آلة بيع الوجبات الخفيفة"},"amenity/veterinary":{"name":"عيادة بيطرية","terms":"بيطري، طبيب حيوانات"},"amenity/waste/dog_excrement":{"name":"قمامة لبراز الكلاب","terms":"حاوية براز الكلاب"},"amenity/waste_basket":{"name":"سلة مهملات","terms":"سلة المهملات,سلة القمامة,قمامة,مهملات,زبالة"},"amenity/waste_disposal":{"name":"حاوية قمامة متحركة","terms":"حاوية قمامة قابل للنقل"},"amenity/waste_transfer_station":{"name":"محطة نقل النفايات","terms":"نفايات,قمامة,مهملات"},"amenity/water_point":{"name":"تعبئة مياه شرب بكميات (لمقطورات السفر والتخييم)","terms":"مياه شرب للكارفانات"},"amenity/watering_place":{"name":"حوض تروية للحيوانات","terms":"حوض تروية للحيوانات،مكان شرب للحيوانات،حوض سقاية للحيوانات،مورد ماء للحيوانات"},"amenity/weighbridge":{"name":"ميزان شاحانات","terms":"ميزان شاحانات،ميزان،ميزان تريلات،ميزان مركبات ثقيلة"},"area":{"name":"منطقة","terms":"المساحة; مساحة; منطقة; المنطقة"},"area/footway":{"name":"منطقة طريق المشاة","terms":"منطقة طريق المشاة"},"area/highway":{"name":"مساحة شارع/طريق","terms":"مساحة شارع/طريق،منطقة شارع/طريق،أرض الشارع/الطريق"},"attraction":{"name":"Attraction"},"attraction/amusement_ride":{"name":"Amusement Ride"},"attraction/animal":{"name":"حظيرة حيوانات","terms":"حظيرة حيوانات،محجر حيوانات،حوش حيوانات،حوز حيوانات،ضميمة حيوانات"},"attraction/big_wheel":{"name":"دولاب هواء","terms":"دولاب هواء; العجلة الكبيرة"},"attraction/bumper_car":{"name":"Bumper Cars"},"attraction/bungee_jumping":{"name":"Bungee Jumping"},"attraction/carousel":{"name":"دوامة خيل","terms":"دوامة خيل"},"attraction/dark_ride":{"name":"Dark Ride"},"attraction/drop_tower":{"name":"Drop Tower Ride"},"attraction/kiddie_ride":{"name":"Kiddie Ride"},"attraction/log_flume":{"name":"Log Flume"},"attraction/maze":{"name":"متاهة","terms":"متاهة"},"attraction/pirate_ship":{"name":"Pirate Ship Ride"},"attraction/river_rafting":{"name":"River Rapids Ride"},"attraction/roller_coaster":{"name":"السفينة الدوارة","terms":"سفينة دوارة"},"attraction/summer_toboggan":{"name":"Summer Toboggan"},"attraction/swing_carousel":{"name":"Swing Carousel"},"attraction/train":{"name":"Tourist Train"},"attraction/water_slide":{"name":"التزلق على الماء"},"barrier":{"name":"حاجز","terms":"حاجز,عائق,تخم,قلعة محصنة,مدينة محصنة,مزلقان"},"barrier/block":{"name":"حواجز خرسانية","terms":"صبات,صبات خرسانية"},"barrier/bollard":{"name":"عمود حاجز","terms":"عمود صلب,عمود حاجز"},"barrier/bollard_line":{"name":"صف أعمدة حاجزة","terms":"صف أعمدة صلبة,صف أعمدة مرورية"},"barrier/border_control":{"name":"مركز حدودي","terms":"معبر حدودي,منفذ حدودي"},"barrier/bump_gate":{"name":"بوابة مركبات تمنع مرور الماشية","terms":"بوابة مركبات تمنع مرور الماشية"},"barrier/bus_trap":{"name":"حاجز حافلات","terms":"حاجز حافلات"},"barrier/cable_barrier":{"name":"حاجز الكابلات","terms":"حاجز الكابلات,حاجز الكابل"},"barrier/cattle_grid":{"name":"شبكة أرضية حاجزة للماشية","terms":"شبكة الماشية,شبكة لمنع الماشية"},"barrier/chain":{"name":"سلسلة","terms":"سلسلة"},"barrier/city_wall":{"name":"جدار المدينة","terms":"جدار المدينة; سور المدينة,حائط المدينة"},"barrier/cycle_barrier":{"name":"حاجز دراجات هوائية","terms":"حاجز دراجات هوائية; حاجز; ممر; حاجز مرور; حاجز دراجات"},"barrier/ditch":{"name":"خندق","terms":"خندق"},"barrier/entrance":{"name":"مدخل"},"barrier/fence":{"name":"سياج","terms":"سياج"},"barrier/fence/railing":{"name":"حديدي","terms":"حديدي"},"barrier/full-height_turnstile":{"name":"باب دوار كامل الارتفاع","terms":"باب دوار كامل الارتفاع"},"barrier/gate":{"name":"بوابة","terms":"بوابة"},"barrier/guard_rail":{"name":"حاجز حديدي للحماية من الاصطدام","terms":"حاجز حديدي مانع للاصطدام"},"barrier/hampshire_gate":{"name":"بوابة الأسلاك","terms":"بوابة الأسلاك"},"barrier/handrail":{"name":"سياج سلم (درابزين)"},"barrier/hedge":{"name":"حاجز نباتي","terms":"سياج نباتي"},"barrier/height_restrictor":{"name":"حاجز لتقييد الارتفاع","terms":"حاجز لتقييد ارتفاع المركبات"},"barrier/jersey_barrier":{"name":"حاجز خرساني - نيوجيرسي","terms":"حاجز خرساني - نيوجيرسي"},"barrier/kerb":{"name":"رصيف","terms":"رصيف اسمنتي صلب"},"barrier/kerb/flush":{"name":"رصيف مسواي لطبقة الأرض","terms":"رصيف مسواي تقريباً لطبقة الأرض"},"barrier/kerb/lowered":{"name":"رصيف منخفض","terms":"رصيف منخفض،منحدر رصيف"},"barrier/kerb/raised":{"name":"رصيف مرتفع","terms":"رصيف مرتفع,رصيف حافلات"},"barrier/kerb/rolled":{"name":"رصيف بحواف مطويه (مستديرة)","terms":"رصيف بحواف مطويه (مستديرة)"},"barrier/kissing_gate":{"name":"بوابة لا تسمح بعبور الماشية","terms":"بوابة منع الماشية"},"barrier/lift_gate":{"name":"حاجز عمودي يرتفع وينخفض","terms":"بوابة الرافعة,حاجز عمودي,حاجز عمودي يرتفع وينخفض,بوابة عامودية,بوابة مواقف عامودية"},"barrier/log":{"name":"شجرة ساقطة","aliases":"شجرة واقعة"},"barrier/motorcycle_barrier":{"name":"حاجز منع مرور الدراجات النارية","terms":"حاجز منع مرور الدراجات النارية,عائق لمنع مرور الدراجات النارية"},"barrier/planter":{"name":"حاجز أصيصي"},"barrier/retaining_wall":{"name":"جدار تثبيت للتربة","terms":"جدار استنادي,جدار ساند,جدار اسناد لمنع انزلاق التربة"},"barrier/rope":{"name":"سياج مصنوع من حبال","terms":"سياج مصنوع من حبال,سياج حبلي"},"barrier/sally_port":{"name":"مدخل آمن للحصن","terms":"مدخل آمن للحصن,منفذ الهجوم,مدخل آمن متحكم به إلى حصن أو سجن"},"barrier/spikes":{"name":"حاجز اطارات شوكي","terms":"حاجز اطارات شوكي,حاجز اطارات,حاجز اطارات مسنن,حاجز اطارات مروري,ممزق اطارات السيارات,حاجز أرضي مسنن"},"barrier/stile":{"name":"درج يسمح للبشر بالمرور فوق السياج","terms":"درج يسمح للبشر بعبور السياج,عضادة"},"barrier/swing_gate":{"name":"بوابة عامودية جانبية","terms":"بوابة عامودية تدور بشكل أفقي"},"barrier/toll_booth":{"name":"كشك التحصيل","terms":"كشك التحصيل,مكتب رسوم العبور"},"barrier/turnstile":{"name":"بوابة دوارة لعبور شخص واحد","terms":"بوابة دوارة لعبور شخص واحد"},"barrier/wall":{"name":"جدار","terms":"جدار"},"barrier/wall/noise_barrier":{"name":"حاجز ضوضاء","terms":"حاجز ضوضاء,حاجز صوتي"},"barrier/wicket_gate":{"name":"باب خوخة","terms":"باب خوخة,باب فرعي"},"barrier/yes":{"name":"حاجز (من نوع غير محدد)"},"boundary":{"name":"حدود"},"boundary/administrative":{"name":"حدود إدارية","terms":"حدود إدارية"},"bridge/support":{"name":"دعامات جسر","terms":"دعامات جسر,صبات جسر,صبات حاملة للجسر"},"bridge/support/pier":{"name":"دعامات جسر وسيطة أسفل الجسر","terms":"دعامات جسر وسيطة أسفل الجسر,حاملات للجسر"},"building":{"name":"مبنى","terms":"مبنى,بناية,عمارة,بناء,منشأة"},"building/allotment_house":{"name":"الحدائق/المزارع المحصصة","terms":"الحدائق/المزارع المحصصة"},"building/apartments":{"name":"مبنى شقق سكنية","terms":"مبنى شقق,مبنى عمارة سكنية,مبنى شقق مفروشة"},"building/barn":{"name":"حظيرة","terms":"مخزن,اسطبل"},"building/boathouse":{"name":"مبنى تخزين القوارب","terms":"تخزين القوارب,منزل القوارب,مرفأ مغطى,مبنى يظلل القوارب"},"building/bungalow":{"name":"منزل بطابق واحد","terms":"منزل صغير,كوخ,منزل بطابق واحد"},"building/bunker":{"name":"ملجأ محصّن"},"building/cabin":{"name":"كوخ","terms":"كوخ,حجرة,منزل صغير جدا,كوخ مؤثث,كوخ بمدخنة"},"building/carport":{"name":"مرآب/مظلة سيارات","terms":"مرآب,مظلة سيارات"},"building/cathedral":{"name":"مبنى كاتدرائية"},"building/chapel":{"name":"معبد نصراني"},"building/church":{"name":"مبنى كنيسة","terms":"كنيسة,معبد"},"building/civic":{"name":"مبنى مرافق مدنية"},"building/college":{"name":"مبنى كلية","terms":"كلية,جامعة"},"building/commercial":{"name":"مبني تجاري","terms":"مبنى تجاري"},"building/construction":{"name":"مبنى تحت الإنشاء","terms":"تحت الانشاء,تحت التشييد,جاري بنائه"},"building/cowshed":{"name":"سقيفة/مظلة أبقار","terms":"سقيفة أبقار,حضائر أبقار,مظلات أبقار"},"building/detached":{"name":"منزل منفصل","terms":"مستقل,منفصل,مبنى مستقل"},"building/dormitory":{"name":"سكن جامعي","terms":"مهجع,سكن,سكن جامعي,سكن طلابي,سكن الكلية,سكن الجامعة,سكن مجمع"},"building/entrance":{"name":"مدخل ومخرج"},"building/farm":{"name":"بيت ريفي","terms":"ريف,مزرعة,زرع,بيت مزرعة"},"building/farm_auxiliary":{"name":"مبنى مزرعة","terms":"مزرعة,ريف,مبنى ريفي"},"building/garage":{"name":"مرآب/جراج","terms":"مَرْأب,كراج"},"building/garages":{"name":"جراجات","terms":"جراج; جراج سيارات; موقف; موقف سيارات; ركن; ركنة"},"building/ger":{"name":"منزل اليورت","terms":"منزل اليورت,خيمة"},"building/grandstand":{"name":"مُدَرج","terms":"مدرج رياضي،مدرج سباق خيول,مدرج ملعب"},"building/greenhouse":{"name":"محمية زراعية","terms":"دفيئة زراعية,بيت بلاستيكي,بيت زجاجي"},"building/hangar":{"name":"حظيرة طائرات","terms":"حظيرة طائرات,حظيرة هيلكوبترات"},"building/hospital":{"name":"مبنى مستشفى","terms":"مستشفى; مبنى مستشفى"},"building/hotel":{"name":"مبنى فندق","terms":"مبنى فندق"},"building/house":{"name":"منزل","terms":"منزل,بيت,فلة,دبلكس"},"building/houseboat":{"name":"بيت عائم","terms":"بيت عائم,بيت القارب,قارب أعيد بنائه كمنزل ثابت"},"building/hut":{"name":"كوخ بدائي/عشة","terms":"كوخ,قش,كوخ بدائي,عشة,صندقه,سقيفة,عريش,عرزال,خص,عرزيل"},"building/industrial":{"name":"مبنى صناعي","terms":"مبنى صناعي,مبنى الانتاج,مبنى المعالجة"},"building/kindergarten":{"name":"مبنى حضانة / روض","terms":"مبنى الحضانة,رياض الأطفال ، روض ، حضانة ، طفل ، أطفال"},"building/manufacture":{"name":"مبنى إنتاج صناعي"},"building/mosque":{"name":"مبنى مسجد","terms":"مبنى المسجد,مبنى جامع,مبنى مصلى,مبنى صلاة"},"building/office":{"name":"مبنى مكاتب إدارية","terms":"مبنى مكاتب,مبنى إداري"},"building/outbuilding":{"name":"ملحق"},"building/pavilion":{"name":"مبنى مرافق رياضية","terms":"مبنى أدوات رياضة,مبنى مرافق رياضية,مبنى مرافق رياضة"},"building/public":{"name":"مبنى عام","terms":"مبنى عمومي,مبنى قطاع عام,مبنى رسمي,مبنى جهة رسمية"},"building/residential":{"name":"مبنى سكني","terms":"مبنى سكني"},"building/retail":{"name":"مبنى بيع بالتجزئة","terms":"مبنى بيع بالتجزئة,مبنى بيع قطاعي,مبنى بيع مفرق"},"building/roof":{"name":"سطح مبنى/سقف","terms":"غطاء,سطح,أعلى المبنى,سقف"},"building/ruins":{"name":"مبنى أثري/مهجور/متهدم","terms":"مبنى أثري,مبنى مهجور,مبنى متهدم,مبنى أنقاض,مبنى خرابة,خرابة,مبنى أطلال,أطلال,دمنة,طلل,أنقاض,خراب,خرائب,حطام,مبنى متحطم"},"building/school":{"name":"مبنى مدرسة","terms":"مبنى مدرسة,مبنى تعليمي ، ثانوية ، اعدادية ، تعليم أولي ، ابتدائي ، ابتدائية"},"building/semidetached_house":{"name":"مبنى شبه منفصل","terms":"مبنى شبه منفصل,مبنى شبه منعزل,مبنى شبه مستقل"},"building/service":{"name":"مبنى خدمات (محولات، آلات،مضخات..الخ)","terms":"مبنى محولات,مبنى آلات,مبنى مضخات"},"building/shed":{"name":"سقيفة(مستودع/ورشة عمل صغيرة)","terms":"سقيفة,مستودع صغير"},"building/stable":{"name":"إسطبل","terms":"إسطبل.إصطبل,طوالة الخيل,حظيرة الخيل,مأوى الخيل"},"building/stadium":{"name":"مبنى الملعب","terms":"مبنى الملعب"},"building/static_caravan":{"name":"منزل متحرك موجود في مكانه لفترة","terms":"مقطورة متحركة ثابتة في مكانها لفترة"},"building/sty":{"name":"Pigsty"},"building/synagogue":{"name":"Synagogue Building","terms":"synagogue building"},"building/temple":{"name":"مبنى المعبد","terms":"مبنى المعبد"},"building/terrace":{"name":"صف منازل متلاصقه","terms":"صف منازل"},"building/train_station":{"name":"مبنى محطة القطار"},"building/transportation":{"name":"مبنى للنقل العام","terms":"مبنى للنقل العام"},"building/university":{"name":"مبنى جامعي","terms":"جامعة; كلية"},"building/warehouse":{"name":"مستودع","terms":"مستودع,مخزن"},"building_part":{"name":"جزء من مبنى","terms":"جزء مختلف من مبنى"},"building_point":{"name":"مبنى"},"cemetery/grave":{"name":"قبر","terms":"قبر"},"cemetery/sector":{"name":"قسم المقبرة","terms":"قسم المقبرة"},"club":{"name":"نادي","terms":"نادي"},"club/sport":{"name":"نادي رياضي","terms":"نادي رياضي"},"craft":{"name":"حِرف ومهن","terms":"حرفة,حرف,مهن,تصنيع,صناعة"},"craft/agricultural_engines":{"name":"ميكانيكي محركات زراعية","terms":"ميكانيكي محركات زراعية"},"craft/basket_maker":{"name":"صناعة وحياكة السِلال","terms":"صانع السلال"},"craft/beekeeper":{"name":"مربي النحل","terms":"مربي النحل,نحال"},"craft/blacksmith":{"name":"حدّاد","terms":"حدّاد"},"craft/boatbuilder":{"name":"بنّاء السفن","terms":"بنّاء السفن"},"craft/bookbinder":{"name":"تغليف وتجليد الكتب","terms":"مجلد الكتب"},"craft/carpenter":{"name":"نجار","terms":"نجار"},"craft/carpet_layer":{"name":"فرش وتركيب المفروشات","terms":"فرش وتركيب المفروشات"},"craft/caterer":{"name":"منظم حفلات","terms":"منظم حفلات; متعهد حفلات;حفلة;حفلات"},"craft/chimney_sweeper":{"name":"منظف مداخن","terms":"منظف مداخن"},"craft/cleaning":{"name":"خدمات التنظيف","terms":"خدمات التنظيف"},"craft/clockmaker":{"name":"صناعة وصيانة الساعات","terms":"ساعاتي"},"craft/confectionery":{"name":"حلواني","terms":"حلواني,صانع الحلوى"},"craft/distillery":{"name":"Distillery"},"craft/dressmaker":{"name":"خياط نسائي","terms":"خياط نسائي"},"craft/electrician":{"name":"كهربائي","terms":"كهربائي"},"craft/electronics_repair":{"name":"خدمة إصلاح الالكترونيات","terms":"خدمة تصليح الأجهزة الإلكترونية"},"craft/floorer":{"name":"أرضيات","terms":"أرضيات,باركيه,سيراميك,بلاط,رخام"},"craft/gardener":{"name":"بستاني","terms":"بستاني"},"craft/glaziery":{"name":"تركيب وإصلاح الزجاج","terms":"زجاج"},"craft/handicraft":{"name":"نحت وزخرفة يدوية","terms":"نحت,زخرفة,نقش,كتابة,حفر"},"craft/hvac":{"name":"ورشة/محل تبريد وتكييف","terms":"صيانة تبريد وتكييف,التدفئة,والتهوية,تكييف الهواء"},"craft/insulator":{"name":"تركيب عوازل حرارية","terms":"عازل,عوازل,تركيب"},"craft/joiner":{"name":"نجار","terms":"نجارة,نجار,صناعة أثاث خشبي,خشب"},"craft/key_cutter":{"name":"قص ونسخ مفاتيح","terms":"قص مفاتيح,نسخ مفاتيح,ناسخ مفاتيح,كيلونات,أقفال"},"craft/locksmith":{"name":"صنع وصيانة الأقفال"},"craft/metal_construction":{"name":"صناعات المعادن والمواد الصلبة","terms":"حديد,ألمنويم,معدن,معادن,فولاذ,صلب,صلبة,مواد البناء المعدنية,صناعات حديدية,زخرفة حديد,إصلاح"},"craft/painter":{"name":"دهّان","terms":"دهّان,دهان,أصباغ,بوية"},"craft/parquet_layer":{"name":"تركيب أرضيات خشبية (باركيه)","terms":"باركيه,أرضيات خشبية"},"craft/photographer":{"name":"مصور","terms":"مصور"},"craft/photographic_laboratory":{"name":"مختبر التصوير","terms":"مختبر التصوير"},"craft/plasterer":{"name":"جصاص (أعمال الجبس)","terms":"جبس,جبس بورد,جص,جصاص,ديكور"},"craft/plumber":{"name":"سباكة","terms":"سباك; سمكري"},"craft/pottery":{"name":"صناعة وبيع الفخار","terms":"فخار,طين,طاجن"},"craft/rigger":{"name":"الصواري والحبال والأشرعة","terms":"صواري,حبال,أشرعة"},"craft/roofer":{"name":"بناء الأسقف والقرميد","terms":"بنّاء السقف,أسقف,قرميد"},"craft/saddler":{"name":"صانع سراج","terms":"صانع سراج,صناعة وبيع السروج,تنجيد السيارات,تنجيد القوارب"},"craft/sailmaker":{"name":"صانع أشرعة","terms":"صانع أشرعة"},"craft/sawmill":{"name":"منشرة","terms":"منشرة,تطيع الجذوع,تقطيع الحطب,قص الأخشاب,قص الحطب"},"craft/scaffolder":{"name":"تركيب وتأجير السقالة","terms":"مركب السقالة,سقالة"},"craft/sculptor":{"name":"نحّات","terms":"نحّات"},"craft/shoemaker":{"name":"إسكافي","terms":"إسكافي.حَذّاء.حذاء,مصلح الأحذية,جزمجي,إسكاف"},"craft/signmaker":{"name":"خطاط ومصمم لوحات تجارية","terms":"خطاط,خطاط لوحات تجارية,مصمم لوحات,صانع لوحات تجارية,رسام,علامات تجارية"},"craft/stonemason":{"name":"قطع ونحت وتشكيل الحجارة","terms":"نحت الحجارة"},"craft/tailor":{"name":"خياط"},"craft/tiler":{"name":"مبلط","terms":"مركِّب البلاط"},"craft/tinsmith":{"name":"سمكري","terms":"سمكري"},"craft/upholsterer":{"name":"منجد","terms":"منجد,تنجيد,أثاث"},"craft/watchmaker":{"name":"ساعاتي","terms":"ساعاتي"},"craft/window_construction":{"name":"تركيب النوافذ","terms":"تركيب النوافذ,صناعة النوافذ,صيانة النوافذ"},"craft/winery":{"name":"Winery"},"cycleway/asl":{"name":"خط السير المتقدم","terms":"خط السير المتقدم حسب الأفضلية,خط التوقف الأولي,خط السيار الأمامي عند الإشارات,باصات,حافلات,سيكل,دراجات,سيارات"},"demolished/building":{"name":"مبنى تم هدمه مؤخرًا"},"disc_golf/basket":{"name":"سلة أقراص الجولف","terms":"سلة أقراص الجولف"},"disc_golf/hole":{"name":"ثقب أقراص الجولف","terms":"ثقب أقراص الجولف"},"disc_golf/tee":{"name":"نقطة انطلاق قرص الجولف","terms":"نقطة انطلاق قرص الجولف"},"disused/amenity":{"name":"مرافق وأماكن عامة مهجورة"},"disused/railway":{"name":"عناصر سكك حديدية مهجورة"},"disused/shop":{"name":"متاجر مهجورة"},"embankment":{"name":"طبقة مردومة ترفع الطريق أو القناة"},"emergency":{"name":"عناصر الطوارئ"},"emergency/ambulance_station":{"name":"محطة إسعاف","terms":"محطة إسعاف,محطة اسعاف"},"emergency/assembly_point":{"name":"نقطة التجمع في حالات الطوارئ","terms":"نقطة تجمع طوارئ"},"emergency/defibrillator":{"name":"مزيل الرجفان (جهاز الصدمات الكهربائية)","terms":"مزيل الرجفان,جهاز الصدمات الكهربائية"},"emergency/designated":{"name":"محدد لدخول الطوارئ فقط"},"emergency/destination":{"name":"وجهة وصول للطوارئ فقط"},"emergency/fire_alarm":{"name":"صندوق إنذار الحريق","terms":"صندوق ابلاغ عن الحريق"},"emergency/fire_extinguisher":{"name":"طفاية حريق","terms":"مطفأة حريق,طفاية حريق"},"emergency/fire_hose":{"name":"خرطوم إطفاء الحريق","terms":"خرطوم إطفاء الحريق,خرطوم الحريق"},"emergency/fire_hydrant":{"name":"صنبور الاطفاء","terms":"خرطوم,مطافئ,إطفاء,اطفاء"},"emergency/first_aid_kit":{"name":"حقيبة إسعافات أولية","terms":"حقيبة إسعاف أولي"},"emergency/landing_site":{"name":"موقع هبوط الطوارئ","terms":"موقع هبوط الطوارئ"},"emergency/life_ring":{"name":"طوق النجاة","terms":"طوق النجاة,لستك للانقاذ"},"emergency/lifeboat_station":{"name":"محطة قارب النجاة","terms":"محطة قارب الانقاذ"},"emergency/lifeguard":{"name":"منقذ بحري","terms":"منقذ بحري,منقذ الشاطئ,منقذ,غرق"},"emergency/mountain_rescue":{"name":"منقذ جبلي","terms":"منقذ متسلقي الجبال,منقذ للمناطق الوعرة,منقذ متسلقين,منقذ"},"emergency/no":{"name":"لا يسمح بالوصول في حالات الطوارئ"},"emergency/official":{"name":"يسمح رسميا بالوصول في حالات الطوارئ"},"emergency/phone":{"name":"هاتف طوارئ","terms":"هاتف طوارئ,هاتف حالات طارئة"},"emergency/private":{"name":"يسمح بشكل خاص بالوصول في الحالات الطارئة"},"emergency/siren":{"name":"صفاّرة إنذار","terms":"صفاّرة إنذار الطوارئ,زمارة,صفارة"},"emergency/water_reservoir":{"name":"خزان مياه الطوارئ","terms":"خزان مياه الطوارئ"},"emergency/water_reservoir_covered":{"name":"خزان مياه للطوارئ (تحت الأرض)","terms":"خزان مياه للطوارئ (تحت الأرض)"},"emergency/water_tank":{"name":"خزان مياه الطوارئ","terms":"خزان مياه الطوارئ,حوض مياه الطوارئ,بركة مياه الطوارئ"},"emergency/yes":{"name":"يسمح بالوصول في حالات الطوارئ"},"entrance":{"name":"مدخل / مخرج","terms":"مدخل/مخرج,دخول/خروج,مخرج,مدخل,خروج"},"entrance/emergency":{"name":"مخرج طوارئ","terms":"مخرج طوارئ,مخرج الطوارئ"},"entrance/emergency_ward_entrance":{"name":"مدخل غرفة الطوارئ","terms":"مدخل غرفة الطوارئ"},"entrance/main":{"name":"المدخل الرئيسي","terms":"المدخل الرئيسي,مدخل رئيسي,المدخل الأساسي,مدخل أساسي"},"ford":{"name":"مخاضة (مجرى الماء فوق الطريق)","terms":"ممر مائي; ممر; مائي; ماء,مخاضة,مجرى الماء فوق الطريق"},"ford_line":{"name":"مخاضة (مجرى الماء فوق الطريق)"},"golf/bunker":{"name":"مصيدة الرمال (غولف)","terms":"مصيدة الرمال (غولف)"},"golf/cartpath":{"name":"مسار العربة (غولف)","terms":"مسار العربة (غولف)"},"golf/clubhouse":{"name":"المبنى الرئيسي (غولف)","terms":"المبنى الرئيسي (غولف)"},"golf/driving_range":{"name":"نطاق القيادة (غولف)","terms":"نطاق القيادة"},"golf/fairway":{"name":"فاصل المساحات الزراعية (غولف)","terms":"فاصل المساحات الزراعية (غولف)"},"golf/green":{"name":"النبات الأخضر حول المرمى (غولف)","terms":"النبات الأخضر حول المرمى (غولف)"},"golf/hole":{"name":"ثقب الغولف","terms":"ثقب الغولف"},"golf/lateral_water_hazard":{"name":"علامة تحذير المياة (غولف)","terms":"علامة تحذير المياة (غولف)"},"golf/path":{"name":"مسار مشي الغولف","terms":"مسار مشي الغولف"},"golf/rough":{"name":"منطقة خشنة (غولف)","terms":"منطقة خشنة (غولف)"},"golf/tee":{"name":"مربع الإنطلاق (غولف)","terms":"مربع الإنطلاق (غولف)"},"golf/water_hazard":{"name":"تحذير مياه (غولف)","terms":"تحذير مياه (غولف)"},"healthcare":{"name":"مرافق الرعاية الصحية","terms":"مرفق الرعاية الصحية,مرافق الرعاية الصحية"},"healthcare/alternative":{"name":"العلاج بالطب البديل (شعبي/طبيعي/حجامة/إبر صينية)","terms":"العلاج بالطب البديل,شعبي,طبيعي,حجامة,إبر صينية"},"healthcare/alternative/chiropractic":{"name":"تقويم العظام","terms":"المعالج للأمراض يدويا; مقوم العظام"},"healthcare/audiologist":{"name":"أخصائي السمع","terms":"أخصائي السمع,أخصائي أذن"},"healthcare/birthing_center":{"name":"مركز ولادة","terms":"مركز ولادة"},"healthcare/blood_donation":{"name":"مركز التبرع بالدم","terms":"تبرع بالدم"},"healthcare/counselling":{"name":"مركز استشارات طبية","terms":"مركز استشارات طبية"},"healthcare/dentist/orthodontics":{"name":"أخصائي تقويم الأسنان","terms":"أخصائي تقويم الأسنان"},"healthcare/hospice":{"name":"دار رعاية المسنين وكبار السن","terms":"دار رعاية المسنين وكبار السن"},"healthcare/laboratory":{"name":"مختبر طبي","terms":"مختبر طبي; مخبر التحاليل الطبية"},"healthcare/midwife":{"name":"مركز قابلات للأمهات والأطفال حديثي الولادة","terms":"مركز قابلات للأمهات والأطفال حديثي الولادة"},"healthcare/occupational_therapist":{"name":"أخصائي العلاج الوظيفي","terms":"أخصائي العلاج الوظيفي,أخصائي العلاج المهني"},"healthcare/optometrist":{"name":"أخصائي بصريات (نظارات)","terms":"أخصائي البصريات,نظارات,محل نظارات,نظارات وعدسات,عدسات,عدسات طبية,فحص نظر"},"healthcare/physiotherapist":{"name":"علاج طبيعي وتأهيل طبي","terms":"أخصائي العلاج الطبيعي,علاج طبيعي,تأهيل طبي"},"healthcare/podiatrist":{"name":"طبيب الأقدام","terms":"طبيب الأقدام; الأرجل"},"healthcare/psychotherapist":{"name":"معالج نفسي","terms":"معالج نفسي,طبيب نفسي,أخصائي نفسي"},"healthcare/rehabilitation":{"name":"مركز إعادة التأهيل","terms":"مركز إعادة التأهيل"},"healthcare/sample_collection":{"name":"مرفق جمع العينات","terms":"جمع عينات الدم,جمع عينات البول,جمع عينات"},"healthcare/speech_therapist":{"name":"معالج مشاكل النطق","terms":"معالج النطق، نطق,معالج مشاكل النطق,علاج صعوبات التواصل,صعوبات التواصل,اللغة والنطق,النطق,اللغة"},"healthcare/yes":{"name":"منشأة صحية (نوع غير محدد)"},"highway":{"name":"عناصر الطرق"},"highway/bridleway":{"name":"طريق الخيول","terms":"طريق الخيول,ممر للخيول,طريق الجياد,ممر الجياد,مسار الخيول,مسار الفروسية"},"highway/bus_guideway":{"name":"مسار الحافلة الموجهة","terms":"مسار الحافلة الموجهة,الحافلة الموجهة"},"highway/bus_stop":{"name":"مسار وقوف الحافلات"},"highway/construction":{"name":"الطريق قيد الإنشاء","terms":"الطريق قيد الإنشاء"},"highway/corridor":{"name":"ممر داخل مبنى","terms":"ممر داخلي; رواق"},"highway/crossing":{"name":"معبر/خط مشاة"},"highway/crossing/marked":{"name":"معبر مشاة بعلامات مرورية"},"highway/crossing/traffic_signals":{"name":"معبر مشاة بإشارات","terms":"معبر مشاة بإشارات"},"highway/crossing/uncontrolled":{"name":"معبر مشاة بعلامات مرورية"},"highway/crossing/unmarked":{"name":"معبر مشاة بدون علامات أو إشارة مرورية","terms":"معبر مشاة بدون علامات مرورية أو إشارة مرورية"},"highway/crossing/zebra":{"name":"معبر مشاة بعلامات مرورية"},"highway/cycleway":{"name":"مسار دراجات","terms":"طريق دراجات; مسار دراجات"},"highway/cycleway/bicycle_foot":{"name":"مسار مشاة و دراجات هوائية","terms":"مسار مشاة و دراجات هوائية"},"highway/cycleway/crossing":{"name":"معبر دراجات هوائية"},"highway/cycleway/crossing/bicycle_foot":{"name":"معبر مشاة ودراجات هوائية","terms":"معبر مشاة ودراجات هوائية"},"highway/cycleway/crossing/marked":{"name":"معبر دراجات هوائية بعلامات مرورية"},"highway/cycleway/crossing/unmarked":{"name":"معبر دراجات هوائية بدون علامات مرورية","terms":"معبر دراجات هوائية بدون علامات مرورية"},"highway/cycleway/moped_link-NL":{"name":"وصلة لدراجة نارية صغيرة","terms":"وصلة لدراجة نارية صغيرة,رابط لدراجة نارية صغيرة"},"highway/elevator":{"name":"مصعد","terms":"مصعد,لفت,اصنصيل,أصنصير,مِرْقَاة"},"highway/elevator_line":{"name":"مصعد مائل","terms":"مصعد مائل,مصعد مائل على منحدر,مِرْقَاة,مصعد"},"highway/emergency_access_point":{"name":"نقطة وصول الطوارئ","terms":"نقطة وصول الطوارئ"},"highway/emergency_bay":{"name":"منطقة توقف لحالات طوارئ الطريق","terms":"منطقة توقف لحالات طوارئ الطريق,استراحة طوارئ الطريق"},"highway/footway":{"name":"طريق مشي بالأقدام","terms":"ممشى بالأقدام"},"highway/footway/access_aisle":{"name":"مساحة جانب مواقف مركبات المعاقين للنزول والركوب","terms":"مساحة جانب مواقف مركبات المعاقين للنزول والركوب"},"highway/footway/conveying":{"name":"سلم متحرك/بساط متحرك","terms":"سلم متحرك,بساط متحرك,سلالم كهربائية,بساط متحرك للمشاة"},"highway/footway/crossing":{"name":"معبر مشاة"},"highway/footway/informal":{"name":"مسار للمشاة غير رسمي"},"highway/footway/sidewalk":{"name":"رصيف مشاة","terms":"رصيف مشاة,رصيف المشاة,رصيف جانب الطريق للمشاة"},"highway/give_way":{"name":"علامة \"أعط أفضلية المرور لمن هم في الطريق الآخر\"","terms":"علامة \"أعط أفضلية المرور لمن هم في الطريق الآخر\",علامة \"أعط الأفضلية\",علامة \"أفضلية المرور لمن هم في الدور\",علامة \"أعط أفضلية المرور لمن هم في الطريق السريع\""},"highway/living_street":{"name":"شارع معيشة بين المساكن","terms":"شارع معيشة,شارع سكني حي,شارع سكني ينخفض فيه مرور المركبات,شارع سكني للمشاة الأفضلية فيه,شارع سكني محدود السرعة,شارع سكني الأفضلية فيه للمشاة"},"highway/milestone":{"name":"لوحة/علامة مسافات الطريق","terms":"علامة مسافات الطريق,لوحة مسافات الطريق"},"highway/mini_roundabout":{"name":"دوار صغير","terms":"دوار صغير"},"highway/motorway":{"name":"طريق سريع","terms":"طريق سريع"},"highway/motorway_junction":{"name":"مخرج / مفرق طريق سريع","terms":"مفرق طريق سريع,مخرج طريق سريع"},"highway/motorway_link":{"name":"وصلة لطريق سريع","terms":"رابط لطريق سريع,وصلة طريق سريع,طرق مرتبطة بالطريق السريع"},"highway/passing_place":{"name":"مساحة للتجاوز للطرق ذات المسار الواحد","terms":"مساحة للتجاوز للطرق ذات المسار الواحد,مساحة للتجاوز للطرق الضيقة"},"highway/path":{"name":"درب / ممر / مسار","terms":"طريق,ممر,مسلك,درب"},"highway/path/boardwalk":{"name":"ممر خشبي","terms":"ممر خشبي,درب خشبي,مسار على ألواح خشب"},"highway/path/informal":{"name":"مسار غير رسمي","terms":"مسار غير رسمي"},"highway/pedestrian_area":{"name":"منطقة للمشاة","terms":"منطقة للمشاة,طريق للمشاة,للمشاة فقط"},"highway/pedestrian_line":{"name":"شارع للمشاة","terms":"شارع للمشاة,شارع للمرور على الأرجل,شارع للمشاة فقط,شارع للراجلين"},"highway/primary":{"name":"طريق أولي","terms":"شارع أولي"},"highway/primary_link":{"name":"وصلة لطريق أولي","terms":"رابط لطريق أولي,وصلة طريق أولي"},"highway/raceway":{"name":"مضمار سباق السيارات","terms":"مضمار سباق السيارات"},"highway/raceway/karting":{"name":"مضمار سباق كارتينغ","terms":"مضمار سباق كارتينغ"},"highway/raceway/motocross":{"name":"مسار سباق الموتوكروس","terms":"مسار سباق الموتوكروس"},"highway/residential":{"name":"شارع سكني/حارة","terms":"شارع سكني,شارع حارة,شارع حواري"},"highway/rest_area":{"name":"منطقة استراحة","terms":"استراحة طريق سريع,خدمات طريق سريع"},"highway/road":{"name":"طريق/شارع غير معروف تصنيفه","terms":"طريق غير معروف"},"highway/road/bridge":{"name":"جسر غير معروف تصنيفه","terms":"جسر غير معروف تصنيفه"},"highway/secondary":{"name":"طريق ثانوي","terms":"شارع ثانوي"},"highway/secondary_link":{"name":"وصلة لطريق ثانوي","terms":"رابط لشارع ثانوي"},"highway/service":{"name":"طريق مؤدي لمكان خدمة","terms":"شارع خدمي,طريق خدمة,طريق مؤدي لمكان خدمة,طريق مؤدي لمكان خدمات"},"highway/service/alley":{"name":"زقاق / ممر","terms":"زقاق,ممر"},"highway/service/drive-through":{"name":"ممر الطلب بالسيارة","terms":"ممر الطلب بالسيارة"},"highway/service/driveway":{"name":"طريق مؤدي لمسكن","terms":"ممر السكن,طريق مؤدية لمسكن,طريق لمسكن"},"highway/service/emergency_access":{"name":"ممر/طريق طوارئ","terms":"ممر الطوارئ"},"highway/service/parking_aisle":{"name":"طريق داخل مواقف السيارات","terms":"ممر مواقف السيارات,طريق داخل مواقف السيارات,طريق بين مواقف السيارات,طريق يمر من خلال مواقف السيارات"},"highway/services":{"name":"منطقة خدمة","terms":"خدمة سيارات; منطقة خدمة سيارات; منطقة خدمية"},"highway/speed_camera":{"name":"كاميرا مراقبة السرعة","terms":"كاميرا مراقبة السرعة"},"highway/speed_display":{"name":"إشارة تظهر سرعتك عبر الرادار","terms":"إشارة تظهر سرعتك عبر الرادار,علامة تظهر سرعتك عبر الرادار"},"highway/steps":{"name":"درج/سلم","terms":"درج,سلم"},"highway/steps/conveying":{"name":"سلم كهربائي","terms":"سلم متحرك,سلم كهرابائي,سلم آلي,درج آلي"},"highway/stop":{"name":"إشارة توقف","terms":"إشارة توقف، ممنوع الوقوف، قف"},"highway/street_lamp":{"name":"عمود إنارة شارع","terms":"مصباح الشارع"},"highway/tertiary":{"name":"طريق ثالثي","terms":"شارع ثالثي"},"highway/tertiary_link":{"name":"وصلة لطريق ثالثي","terms":"رابط لشارع ثالثي"},"highway/toll_gantry":{"name":"بوابة تحصيل الرسوم آلياً","terms":"بوابة تحصيل الرسوم آلياً"},"highway/track":{"name":"طريق غير معبد/ردمية","terms":"غير معبد,دمية,طريق وعر,دفع رباعي,طريق زراعي,زراعي,درب"},"highway/traffic_mirror":{"name":"مرآة مرور","terms":"مرآة; مرور; مراية"},"highway/traffic_signals":{"name":"إشارات مرور","terms":"اشارة; اشارات; اشارة مرور"},"highway/trailhead":{"name":"نقطة بداية مسارات المشي","terms":"نقطة بداية مسارات المشي,بداية مسار الهايكنج,بداية مسار الراجلة"},"highway/trunk":{"name":"طريق رئيسي","terms":"شارع أساسي,شارع رئيسي"},"highway/trunk_link":{"name":"وصلة لطريق رئيسي","terms":"رابط لشارع رئيسي"},"highway/turning_circle":{"name":"دائرة رجوع","terms":"دائرة رجوع في نهاية طريق"},"highway/turning_loop":{"name":"دائرة رجوع (جزيرة)","terms":"دائرة رجوع (جزيرة)"},"highway/unclassified":{"name":"طريق غير مصنف","terms":"طريق غير مصنف"},"historic":{"name":"موقع تاريخي/قديم","terms":"موقع تأريخي"},"historic/archaeological_site":{"name":"موقع أثري","terms":"موقع أثري"},"historic/boundary_stone":{"name":"حجر/علامة حدودية","terms":"صخرة حدودية,حجر الحدود التاريخي,حجر/علامة حدودية"},"historic/building":{"name":"مبنى تاريخي","terms":"مبنى تاريخي"},"historic/castle":{"name":"حصن / قلعة","terms":"حصن; قلعة; قصر"},"historic/castle/fortress":{"name":"حصن تاريخي","terms":"حصن تاريخي"},"historic/castle/palace":{"name":"قصر","terms":"قصر"},"historic/castle/stately":{"name":"قصر فاخر","terms":"قصر فاخر"},"historic/city_gate":{"name":"بوابة المدينة","terms":"بوابة المدينة"},"historic/fort":{"name":"حصن عسكري","terms":"حصن عسكري"},"historic/manor":{"name":"قصر سكني قديم/تاريخي","terms":"قصر سكني,المقر الرئيسي لسيد القصر"},"historic/memorial":{"name":"نصب تذكاري","terms":"نصب تذكاري"},"historic/memorial/plaque":{"name":"Commemorative Plaque"},"historic/monument":{"name":"نصب تذكاري","terms":"نصب تذكاري,مبنى تذكاري"},"historic/pillory":{"name":"منصة صلب للتشهير بالمجرمين","terms":"منصة صلب للتشهير بالمجرمين"},"historic/ruins":{"name":"أطلال/أنقاض/خرائب","terms":"أطلال,أنقاض,خرائب"},"historic/tomb":{"name":"قبر / ضريح","terms":"قبر، ضريح"},"historic/wayside_cross":{"name":"تقاطع جانب الطريق"},"historic/wayside_shrine":{"name":"مقام نصراني على الطريق","terms":"مقام نصراني على الطريق"},"historic/wreck":{"name":"ركام سفينة","terms":"ركام سفينة,ركام قارب,ركام مركب بحري"},"indoor":{"name":"عناصر داخل المباني"},"indoor/area":{"name":"مساحة داخل مبنى","terms":"مساحة داخل مبنى,مساحة داخلية,مساحة داخل المبنى,مساحة في المبنى"},"indoor/corridor":{"name":"ممر داخل المبنى","terms":"ممر داخل المبنى"},"indoor/corridor_line":{"name":"ممر داخل المبنى"},"indoor/door":{"name":"باب داخل المبنى","terms":"باب داخل المبنى,باب داخلي"},"indoor/elevator":{"name":"غرفة للمصعد داخل المبنى","terms":"غرفة للمصعد داخل المبنى,منور للمصعد داخل المبنى"},"indoor/room":{"name":"غرفة","terms":"غرفة,حجرة,أوضة,غرف,الغرفة"},"indoor/stairs":{"name":"درج داخل المبنى","terms":"درج داخل المبنى"},"indoor/wall":{"name":"جدار داخل المبنى","terms":"جدار داخل المبنى,جدار داخلي"},"internet_access/wlan":{"name":"نقطة Wi-Fi","terms":"نقطة wi-fi"},"junction":{"name":"تقاطع/مفترق طرق","terms":"مفترق طرق,تقاطع"},"landuse":{"name":"عناصر استخدامات الأراض"},"landuse/allotments":{"name":"الحدائق/المزارع المحصصة","terms":"المزارع المحصصة,الحدائق المحصصة"},"landuse/aquaculture":{"name":"مزرعة سمكية","terms":"مزرعة سمكية"},"landuse/basin":{"name":"حوض مائي"},"landuse/brownfield":{"name":"أرض صناعية سابقة","terms":"أرض صناعية سابقة"},"landuse/cemetery":{"name":"مقبرة","terms":"مقبرة,مدفن,جبانة"},"landuse/churchyard":{"name":"Churchyard"},"landuse/commercial":{"name":"منطقة تجارية","terms":"تجارية; تجاري; منطقة تجارة"},"landuse/construction":{"name":"منطقة بناء تحت الإنشاء","terms":"تحت الإنشاء"},"landuse/education":{"name":"الحرم الجامعي التعليمي","terms":"الحرم الجامعي"},"landuse/farm":{"name":"أرض زراعية"},"landuse/farmland":{"name":"أرض زراعية","terms":"أرض زراعية، فلاحة"},"landuse/farmyard":{"name":"مرافق مزرعة","terms":"مرافق مزرعة,بنايات مزرعة,منشاءات مزرعة"},"landuse/flowerbed":{"name":"مساحة زهور زينة","terms":"مساحة زهور زينة"},"landuse/forest":{"name":"الغابات المُدارة","terms":"الغابات المُدارة"},"landuse/garages":{"name":"مرائب/كراجات","terms":"مرائب,كراجات,جراجات,أراضي مرئاب"},"landuse/grass":{"name":"عشب","terms":"عشب,غطاء أخضر"},"landuse/greenfield":{"name":"قطعة أرض (خضراء)","terms":"حقل أخضر,أرض لم تطور,أرض زراعية لم يبنى عليها,قطعة أرض (خضراء),أرض فضاء,أرض بيضاء"},"landuse/greenhouse_horticulture":{"name":"محمية زراعية","terms":"الدفيئات الزراعية,محمية زراعية,بيت محمي زراعي"},"landuse/harbour":{"name":"ميناء/مرفأ","terms":"مرفأ، ميناء"},"landuse/industrial":{"name":"منطقة صناعية","terms":"صناعية; صناعي; صناعات; منطقة صناعات; منطقة صناعة; صناعة; صنع"},"landuse/industrial/scrap_yard":{"name":"تشليح/خردة سيارات","terms":"تشليح سيارات,خردة سيارات"},"landuse/industrial/slaughterhouse":{"name":"مسلخ","terms":"مسلخ"},"landuse/landfill":{"name":"مكب نفايات","terms":"مكب نفايات"},"landuse/meadow":{"name":"مرعى/مرج/روضة","terms":"مرج,روضة,مخضرة,مرعى"},"landuse/military":{"name":"منطقة عسكرية","terms":"جيش,قوات مسلحة,عسكرية"},"landuse/military/airfield":{"name":"قاعدة طيران جوية","terms":"قاعدة جوية، مطار عسكري"},"landuse/military/barracks":{"name":"ثكنة عسكرية","terms":"ثكنة عسكرية"},"landuse/military/base":{"name":"قاعدة عسكرية","terms":"قاعدة عسركية,قاعدة تابعة للجيش"},"landuse/military/base/navy":{"name":"قاعدة بحرية","terms":"قاعدة بحرية,قاعدة مائية"},"landuse/military/danger_area":{"name":"منطقة خطرة","terms":"منطقة خطر; خطر"},"landuse/military/obstacle_course":{"name":"تدريب عسكري لتجاوز العقبات","terms":"تدريب عسكري لتجاوز العقبات"},"landuse/military/range":{"name":"ميدان الرماية العسكرية","terms":"ميدان الرماية العسكرية"},"landuse/military/training_area":{"name":"منطقة تدريب عسكري","terms":"منطقة تدريب عسكري"},"landuse/orchard":{"name":"بستان","terms":"بستان,بيارة,أشجار البستان"},"landuse/plant_nursery":{"name":"مشتل","terms":"مشتل"},"landuse/pond":{"name":"بركة ماء"},"landuse/quarry":{"name":"محجر/مقلع","terms":"محجر,مقلع"},"landuse/railway":{"name":"منطقة السكك الحديدية","terms":"منطقة السكك الحديدية"},"landuse/recreation_ground":{"name":"ميدان الألعاب","terms":"ميدان الألعاب"},"landuse/religious":{"name":"منطقة دينية","terms":"منطقة دينية"},"landuse/reservoir":{"name":"خزان/مستودع مياه"},"landuse/residential":{"name":"منطقة سكنية","terms":"منطقة سكانية; سكان; سكنية; سكن; منطقة سكن"},"landuse/residential/apartments":{"name":"مجمع شقق سكنية","terms":"مجمع شقق سكنية,مجمع سكني,مجمع شقق"},"landuse/retail":{"name":"منطقة بيع بالتجزئة","terms":"بيع قطاعي,بيع بالتجزئة"},"landuse/salt_pond":{"name":"ملاحات","terms":"برك تبخير الماء لاستخراج الملح,ملح,سباخ,تبخير"},"landuse/vineyard":{"name":"حقل عنب","terms":"مزرعة عنب,حقل عنب"},"landuse/winter_sports":{"name":"منطقة الرياضات الشتوية","terms":"منطقة الرياضات الشتوية"},"leisure":{"name":"عناصر الترفيه"},"leisure/adult_gaming_centre":{"name":"Adult Gaming Center"},"leisure/amusement_arcade":{"name":"Amusement Arcade"},"leisure/bandstand":{"name":"Bandstand"},"leisure/beach_resort":{"name":"منتجع الشاطئ","terms":"منتجع الشاطئ"},"leisure/bird_hide":{"name":"مكان لمراقبة الطيور","terms":"مكان لمراقبة الطيور"},"leisure/bleachers":{"name":"Bleachers"},"leisure/bowling_alley":{"name":"بولينغ","terms":"بولينغ، بولينج"},"leisure/common":{"name":"أرض مشترك","terms":"مشّاع، متعارف عليه، شعبي، شائع"},"leisure/dance":{"name":"قاعة الرقص","terms":"قاعة الرقص"},"leisure/dancing_school":{"name":"مدرسة رقص","terms":"مدرسة الرقص"},"leisure/disc_golf_course":{"name":"مكان للعب قرص الجولف","terms":"مكان للعب قرص الجولف"},"leisure/dog_park":{"name":"حديقة كلاب","terms":"حديقة كلاب"},"leisure/escape_game":{"name":"غرفة الهروب","terms":"غرفة الهروب"},"leisure/firepit":{"name":"حفرة لإشعال نار","terms":"حفرة لإشعال نار"},"leisure/fishing":{"name":"منطقة صيد سمك","terms":"منطقة صيد سمك"},"leisure/fitness_centre":{"name":"مركز لياقة بدنية","terms":"مركز اللياقة البدنية، نادي صحي"},"leisure/fitness_centre/yoga":{"name":"استوديو يوجا","terms":"استديو"},"leisure/fitness_station":{"name":"مكان اللياقة البدنية خارج المباني","terms":"مكان اللياقة البدنية خارج المباني"},"leisure/fitness_station/balance_beam":{"name":"تمرين عارضة التوازن","terms":"تمرين عارضة التوازن"},"leisure/fitness_station/box":{"name":"صندوق للتمرين","terms":"صندوق للتمرين"},"leisure/fitness_station/horizontal_bar":{"name":"تمرين العارضة الأفقية","terms":"تمرين العارضة الأفقية"},"leisure/fitness_station/horizontal_ladder":{"name":"تمرين القضبان الأفقية","terms":"تمرين القضبان الأفقية"},"leisure/fitness_station/hyperextension":{"name":"مكان تمرين تمديد الظهر","terms":"مكان تمرين تمديد الظهر"},"leisure/fitness_station/parallel_bars":{"name":"قضبان متوازية","terms":"قضبان متوازية"},"leisure/fitness_station/push-up":{"name":"مكان تمرين الضغط","terms":"مكان تمرين الضغط"},"leisure/fitness_station/rings":{"name":"حلقات التمرين","terms":"حلقات التمرين"},"leisure/fitness_station/sign":{"name":"لافتة ارشادات التمرين","terms":"لافتة تعليمات التمرين"},"leisure/fitness_station/sit-up":{"name":"مكان تمرين عضلات البطن","terms":"مكان تمرين عضلات البطن"},"leisure/fitness_station/stairs":{"name":"تمرين الدرج","terms":"تمرين الدرج"},"leisure/garden":{"name":"حديقة","terms":"حديقة"},"leisure/garden/botanical":{"name":"حديقة نباتية","terms":"حديقة نباتية"},"leisure/garden/community":{"name":"حديقة مجتمعية","terms":"حديقة مجتمعية"},"leisure/golf_course":{"name":"معلب جولف","terms":"معلب جولف، غولف"},"leisure/hackerspace":{"name":"معمل هاكر","terms":"معمل هاكر"},"leisure/horse_riding":{"name":"مركز ركوب الخيل","terms":"مركز ركوب الخيل"},"leisure/ice_rink":{"name":"حلبة تزلج","terms":"جليد,تزلج,حلبة"},"leisure/indoor_play":{"name":"Indoor Play Center"},"leisure/marina":{"name":"مرسى لليخوت والقوارب الصغيرة","terms":"حوض سفن,رصيف سفن,مرسى سفن"},"leisure/miniature_golf":{"name":"ملعب الجولف المصغرة","terms":"ملعب الجولف المصغرة، غولف"},"leisure/nature_reserve":{"name":"محمية طبيعية","terms":"محمية طبيعية"},"leisure/outdoor_seating":{"name":"منطقة جلوس خارجية","terms":"منطقة جلوس خارجية"},"leisure/park":{"name":"منتزه","terms":"منتزه، حديقة"},"leisure/picnic_table":{"name":"طاولة نزهة","terms":"طاولة نزهة"},"leisure/picnic_table/chess":{"name":"طاولة الشطرنج","terms":"طاولة الشطرنج"},"leisure/pitch":{"name":"ملعب رياضي","terms":"ملعب رياضي"},"leisure/pitch/american_football":{"name":"ملعب كرة قدم أمريكية","terms":"ملعب كرة قدم أمريكية"},"leisure/pitch/archery":{"name":"ميدان الرماية (بالأسهم)","terms":"أسهم,نبل,رمي,تصويب,ميدان"},"leisure/pitch/australian_football":{"name":"ملعب كرة قدم استرالية","terms":"ملعب كرة قدم استرالية"},"leisure/pitch/badminton":{"name":"تنس الريشة","terms":"تنس,كرة,ريشة"},"leisure/pitch/baseball":{"name":"ملعب البيسبول","terms":"ملعب البيسبول"},"leisure/pitch/basketball":{"name":"ملعب كرة السلة","terms":"ملعب كرة السلة"},"leisure/pitch/beachvolleyball":{"name":"ملعب كرة الطائرة الشاطئية","terms":"ملعب"},"leisure/pitch/boules":{"name":"ملعب كرة حديدية","terms":"ملعب كرة حديدية"},"leisure/pitch/bowls":{"name":"بولينج جرين","terms":"بولينج جرين"},"leisure/pitch/chess":{"name":"قطعة شطرنج كبيرة","terms":"قطعة شطرنج كبيرة"},"leisure/pitch/cricket":{"name":"ملعب كريكت","terms":"ملعب كريكت"},"leisure/pitch/equestrian":{"name":"حلبة ركوب الخيل","terms":"حلبة ركوب الخيل"},"leisure/pitch/field_hockey":{"name":"مساحة ملعب الهوكى","terms":"مساحة ملعب الهوكى"},"leisure/pitch/four_square":{"name":"ساحة أربعة مربعات","terms":"ساحة أربعة مربعات"},"leisure/pitch/funnel_ball":{"name":"قمع الكرة المحكمة","terms":"قمع الكرة المحكمة"},"leisure/pitch/futsal":{"name":"كرة الصالات","terms":"كرة الصالات"},"leisure/pitch/gaga":{"name":"غاغا بيت","terms":"غاغا بيت"},"leisure/pitch/horseshoes":{"name":"حفرة حدوة الحصان","terms":"حفرة حدوة الحصان"},"leisure/pitch/netball":{"name":"كرة السلة","terms":"تنس,كرة,سلة,شبكة"},"leisure/pitch/padel":{"name":"ملعب باديل","terms":"ملعب باديل"},"leisure/pitch/paintball":{"name":"ملعب لعبة كرات الطلاء","terms":"ملعب لعبة بينتبول"},"leisure/pitch/pickleball":{"name":"ملعب كرة الطائرة","terms":"ملعب"},"leisure/pitch/rugby_league":{"name":"ملعب اتحاد الرغبي","terms":"ملعب اتحاد الرغبي، رجبي"},"leisure/pitch/rugby_union":{"name":"ملعب دوري الرغبي","terms":"ملعب دوري الرغبي، رجبي"},"leisure/pitch/shooting":{"name":"حقل رماية","terms":"ميدان رماية"},"leisure/pitch/shuffleboard":{"name":"شفلبورد","terms":"شفلبورد"},"leisure/pitch/skateboard":{"name":"حديقة تزلج","terms":"حديقة تزلج، ساحة تزلج"},"leisure/pitch/soccer":{"name":"ملعب كرة القدم","terms":"ملعب كرة القدم"},"leisure/pitch/softball":{"name":"ملعب سوفتبول","terms":"ملعب سوفتبول"},"leisure/pitch/table_soccer":{"name":"طاولة كرة قدم الطاولة","terms":"طاولة كرة قدم الطاولة,طاولة فوسبول,طاولة فيشة"},"leisure/pitch/table_tennis":{"name":"طاولة كرة المضرب","terms":"طاولة كرة المضرب"},"leisure/pitch/tennis":{"name":"ملعب تنس","terms":"معلب كرة التنس"},"leisure/pitch/tetherball":{"name":"ملعب كرة الحبل","terms":"ملعب كرة الحبل"},"leisure/pitch/volleyball":{"name":"ملعب كرة الطائرة","terms":"ملعب"},"leisure/playground":{"name":"ساحة ألعاب للأطفال","terms":"ساحة ألعاب للأطفال"},"leisure/playground/indoor":{"name":"ملعب داخلي","terms":"ملعب داخلي"},"leisure/resort":{"name":"منتجع","terms":"منتجع"},"leisure/sauna":{"name":"سونا","terms":"سونا"},"leisure/slipway":{"name":"مزلقة سفن","terms":"مزلقة سفن"},"leisure/slipway_drivable":{"name":"منزلق سفن وقوارب (قابل للقيادة)","terms":"منزلق سفن وقوارب (قابل للقيادة)"},"leisure/sports_centre":{"name":"مركز/مجمع رياضي","terms":"مركز رياضي; نادي رياضي; مجمع رياضي"},"leisure/sports_centre/climbing":{"name":"مركز رياضة التسلق","terms":"مركز رياضة التسلق"},"leisure/sports_centre/horse_racing":{"name":"مضمار سباق الخيل","terms":"مضمار سباق الخيل"},"leisure/sports_centre/shooting":{"name":"مرفق ميدان الرماية","terms":"مرفق ميدان الرماية"},"leisure/sports_centre/swimming":{"name":"مرفق بركة سباحة","terms":"حمام سباحة; حوض سباحة; حمام; حوض; سباحة; مسبح"},"leisure/sports_hall":{"name":"قاعة رياضية","terms":"قاعة رياضية"},"leisure/stadium":{"name":"استاد رياضي","terms":"مدرج; مدرج للألعاب الرياضية; استاد رياضي; استاد"},"leisure/swimming_area":{"name":"منطقة سباحة طبيعية","terms":"منطقة سباحة طبيعية"},"leisure/swimming_pool":{"name":"حوض سباحة","terms":"حمام سباحة; حوض سباحة; حمام; حوض; سباحة; مسبح"},"leisure/track":{"name":"مضمار السباق (غير رياضة السيارات)","terms":"مضمار السباق (غير رياضة السيارات)"},"leisure/track/cycling":{"name":"مسار دراجات هوائية","terms":"مسار دراجات هوائية"},"leisure/track/horse_racing":{"name":"مضمار سباق الخيل","terms":"مضمار سباق الخيل"},"leisure/track/running":{"name":"مسار جري","terms":"مسار جري"},"leisure/trampoline_park":{"name":"منتزه النُطيطة (الترامبولين)","terms":"منتزه النُطيطة (الترامبولين)"},"leisure/water_park":{"name":"ملاهي مائية","terms":"ملاهي مائية; حديقة مائية; منتزه مائي"},"line":{"name":"خط","terms":"خط"},"man_made":{"name":"عنصر من صنع الانسان"},"man_made/adit":{"name":"مدخل منجم","terms":"مدخل; منجم; كهف;"},"man_made/antenna":{"name":"هوائي (أنتنا)","terms":"هوائي,أنتنا,أنتل,انتل,ايريال,اريال,هوائي بث,جهاز بث,إريال,إيريال"},"man_made/beacon":{"name":"منارة","terms":"منارة"},"man_made/beehive":{"name":"منحلة","terms":"منحلة,خلية نحل"},"man_made/breakwater":{"name":"كاسر الأمواج","terms":"كاسر الأمواج"},"man_made/bridge":{"name":"منطقة جسر","terms":"منطقة جسر,مساحة جسر"},"man_made/bunker_silo":{"name":"خنادق وأماكن تخزين الصوامع","terms":"خنادق وأماكن تخزين الصوامع"},"man_made/cairn":{"name":"رِجْم، رجوم (صخور مركومة)","terms":"رِجْم,رجوم,صخور مركومة"},"man_made/carpet_hanger":{"name":"منشر سجاد","terms":"منشر سجاد,منشر موكيت"},"man_made/chimney":{"name":"مدخنة","terms":"مدخنة"},"man_made/clearcut":{"name":"غابة تم قطع أشجارها","terms":"غابة مقطوعة أشجارها"},"man_made/compass_rose":{"name":"وردة البوصلة","terms":"وردة الريح"},"man_made/courtyard":{"name":"فناء"},"man_made/crane":{"name":"رافعة ثابتة","terms":"رافعة"},"man_made/cross":{"name":"Cross"},"man_made/cutline":{"name":"خط مستقيم مقطوع في غابة","terms":"خط مستقيم مقطوع في غابة"},"man_made/dovecote":{"name":"برج حمام","terms":"برج حمام"},"man_made/dyke":{"name":"حاجز/عقم لمنع تدفق المياه","terms":"عقم لمنع تدفق المياه,حاجز لمنع تدفق المياه"},"man_made/embankment":{"name":"منحدر اصطناعي/حاد","terms":"منحدر اصطناعي,منحدر حاد,نزلة من طريق مرفوع,انحدار بسيط,انحدار مستوى الأرض"},"man_made/flagpole":{"name":"سارية العلم","terms":"سارية العلم"},"man_made/gasometer":{"name":"خزان غاز كبير فوق الأرض","terms":"خزان غاز كبير فوق الأرض,خزان غاز كبير,خزان غاز,مستودع غاز,حاوية غاز كبيرة"},"man_made/goods_conveyor":{"name":"مسار ناقل للمواد على خط إنتاج","terms":"مسار ناقل للمواد على خط إنتاج"},"man_made/groyne":{"name":"حاجز للرواسب البحرية","terms":"حاجز للرواسب البحرية,سد للرواسب البحرية,سد طولي يمنع انتقال الرواسب على الجوانب"},"man_made/lighthouse":{"name":"منارة/فنار","terms":"منارة,فنارة,فنار"},"man_made/manhole":{"name":"غطاء غرفة التفتيش","terms":"غطاء غرفة التفتيش"},"man_made/manhole/drain":{"name":"فتحة تصريف مياه الأمطار","terms":"فتحة تصريف مياه الأمطار"},"man_made/manhole/gas":{"name":"فتحة تفتيش خدمات الغاز","terms":"فتحة تفتيش خدمات الغاز"},"man_made/manhole/power":{"name":"فتحة تفتيش خدمات الطاقة","terms":"فتحة تفتيش خدمات الطاقة"},"man_made/manhole/sewer":{"name":"فتحة تفتيش الصرف الصحي","terms":"فتحة تفتيش الصرف الصحي"},"man_made/manhole/telecom":{"name":"فتحة تفتيش خدمة الاتصالات","terms":"فتحة تفتيش خدمة الاتصالات"},"man_made/manhole/water":{"name":"فتحة تفتيش خدمة المياه","terms":"فتحة تفتيش خدمة المياه"},"man_made/mast":{"name":"عمود/برج عمودي","terms":"عمود,برج"},"man_made/mast/communication":{"name":"برج اتصالات","terms":"برج اتصالات"},"man_made/mast/communication/mobile_phone":{"name":"برج اتصالات هواتف محمولة","terms":"برج اتصالات هواتف محمولة"},"man_made/mast/communication/radio":{"name":"برج بث موجات الراديو","terms":"برج بث موجات الراديو"},"man_made/mast/communication/television":{"name":"برج بث التلفاز","terms":"برج بث التلفاز"},"man_made/mast/lighting":{"name":"صاري الإضاءة","terms":"صاري الإضاءة"},"man_made/mineshaft":{"name":"نفق تعدين/منجم","terms":"برج منجم,نفق تعدين/منجم"},"man_made/monitoring_station":{"name":"محطة الرصد","terms":"محطة الرصد"},"man_made/obelisk":{"name":"Obelisk"},"man_made/observatory":{"name":"مرصد","terms":"مرصد"},"man_made/petroleum_well":{"name":"بئر نفط","terms":"بئر نفط، بترول"},"man_made/pier":{"name":"رصيف بحري","terms":"رصيف بحري"},"man_made/pier/floating":{"name":"رصيف عائم","terms":"رصيف عائم"},"man_made/pipeline":{"name":"خط أنابيب","terms":"خط أنابيب"},"man_made/pipeline/underground":{"name":"خط أنابيب تحت الأرض","terms":"خط أنابيب تحت الأرض"},"man_made/planter":{"name":"أصيص","terms":"أصيص,قصرية,محبق,إناء زراعي"},"man_made/pumping_station":{"name":"محطة ضخ","terms":"محطة ضخ"},"man_made/reservoir_covered":{"name":"خزان مياه مغطى","terms":"خزان مياه مغطى"},"man_made/silo":{"name":"صومعة","terms":"صومعة; صومعة غلال"},"man_made/storage_tank":{"name":"خزان سوائل أو غاز (فوق الأرض)","terms":"خزان سوائل أو غاز مضغوط"},"man_made/storage_tank/water":{"name":"خزان مياه","terms":"خزان مياه,خزان ماء"},"man_made/street_cabinet":{"name":"كبينة مرافق وخدمات في الشارع","terms":"كبينة مرافق وخدمات في الشارع,خزنة مرافق وخدمات في الشارع"},"man_made/surveillance":{"name":"معدة/كاميرا رصد ومراقبة","terms":"مراقبة"},"man_made/surveillance/camera":{"name":"كاميرة مراقبة","terms":"كاميرة مراقبة"},"man_made/survey_point":{"name":"نقطة مسح","terms":"نقطة مسح"},"man_made/torii":{"name":"Torii"},"man_made/tower":{"name":"برج","terms":"برج"},"man_made/tower/bell_tower":{"name":"Bell Tower"},"man_made/tower/communication":{"name":"برج اتصالات","terms":"برج اتصالات"},"man_made/tower/cooling":{"name":"برج تبريد","terms":"برج تبريد"},"man_made/tower/defensive":{"name":"برج محصن","terms":"برج محصن"},"man_made/tower/diving":{"name":"منصة غطس"},"man_made/tower/minaret":{"name":"منارة مسجد (مئذنة)","terms":"مِئْذَنَةُ,مئذنة,منارة,منارة مسجد,منارة جامعة"},"man_made/tower/observation":{"name":"برج مراقبة","terms":"برج مراقبة"},"man_made/tower/pagoda":{"name":"Pagoda"},"man_made/tunnel":{"name":"مساحة نفق","terms":"مساحة نفق"},"man_made/utility_pole":{"name":"عمود توصيل كيابل طاقة/اتصالات","terms":"عمود توصيل خدمات (كهرباء،اتصالات..الخ)"},"man_made/video_wall":{"name":"شاشة رقمية","terms":"شاشة رقمية"},"man_made/wastewater_plant":{"name":"محطة صرف صحي","terms":"محطة صرف صحي"},"man_made/water_tap":{"name":"صنبور ماء","terms":"صنبور ماء"},"man_made/water_tower":{"name":"برج خزان مياه","terms":"برج خزان مياه"},"man_made/water_well":{"name":"بئر ماء","terms":"بئر ماء"},"man_made/water_works":{"name":"محطة معالجة المياه","terms":"محطة معالجة المياه"},"man_made/watermill":{"name":"طاحونة مائية","terms":"طاحونة مائية"},"man_made/windmill":{"name":"طاحونة هوائية","terms":"طاحونة هوائية"},"man_made/windpump":{"name":"مضخة هوائية","terms":"مضخة هوائية"},"man_made/works":{"name":"مصنع","terms":"مصنع"},"man_made/yes":{"name":"عنصر من صنع الإنسان (نوع غير محدد)"},"marker":{"name":"علامات (لافتات)","terms":"علامات,لافتات"},"marker/utility":{"name":"علامة مرفق أو خدمة","terms":"علامة مرفق أو خدمة"},"marker/utility/power":{"name":"علامة الطاقة/الكهرباء","terms":"علامة الطاقة/الكهرباء"},"military/bunker":{"name":"مخبأ أو مستودع عسكري محصن","terms":"مخبأ أو مستودع عسكري محصن"},"military/checkpoint":{"name":"نقطة تفتيش أو حاجز عسكري","terms":"نقطة تفتيش عسكرية,حاجز عسكري"},"military/nuclear_explosion_site":{"name":"موقع انفجار نووي","terms":"موقع انفجار نووي"},"military/office":{"name":"دائرة/مفوضية عسكرية","terms":"دائرة/مفوضية عسكرية"},"military/trench":{"name":"خندق عسكري","terms":"خندق عسكري"},"natural":{"name":"عنصر طبيعية"},"natural/bare_rock":{"name":"مساحة لصخر أساس (القاعدة الصخرية) - حرة","terms":"صخر,صخور,صخر عاري,صخر الأديم,صخر أساس,القاعدة الصخرية,حرة,حلاة"},"natural/bay":{"name":"خليج","terms":"خليج"},"natural/beach":{"name":"شاطئ","terms":"شاطئ"},"natural/cape":{"name":"رأس (بحري)","terms":"رأس بحري"},"natural/cave_entrance":{"name":"مدخل كهف","terms":"مدخل كهفي; كهف"},"natural/cliff":{"name":"جُرف","terms":"جرف صخري"},"natural/coastline":{"name":"ساحل","terms":"ساحل"},"natural/fell":{"name":"هضبة","terms":"هضبة، تلة، مرتفع"},"natural/geyser":{"name":"نبع المياه الفوار والحار","terms":"فوارة حارة"},"natural/glacier":{"name":"نهر جليدي","terms":"نهر جليدي"},"natural/grassland":{"name":"أراض عشبية/مرعى","terms":"مرعى,مرج,أرض معشوشبة,أراض عشبية"},"natural/heath":{"name":"براح/قفار ( أراضي الأشجار القمئية)","terms":"براح,قفار ( أراضي الأشجار القمئية)"},"natural/hot_spring":{"name":"العين الحمئة / الينبوع الساخن","terms":"العين الحمئة,الينبوع الساخن,ينبوع,عين,عيون,نبع,الحمئة"},"natural/mud":{"name":"وحل","terms":"وحل,طين"},"natural/peak":{"name":"قمة جبلية","terms":"قمة,ذروة,قمة جبل"},"natural/reef":{"name":"شعاب مرجانية","terms":"شعاب"},"natural/ridge":{"name":"سلسلة من القمم الجبلية","terms":"سلسلة من التلال الجبلية,سلاسل القمم الجبلية المتصلة"},"natural/rock":{"name":"صخرة كبيرة متصلة بالأرض / صخرة بارزة عن الأرض","terms":"صخرة كبيرة متصلة بالأرض,صخرة بارزة عن الأرض"},"natural/saddle":{"name":"السرج الجبلي (ممر جبلي)","terms":"ممر جبلي,سرج الجبلي"},"natural/sand":{"name":"رمال / نفود","terms":"رمال,نفود"},"natural/scree":{"name":"حصى / ركام حجارة","terms":"ركام حجارة، تلة، مجموعة صخور، تلة حصاة"},"natural/scrub":{"name":"فيضة / روضة","terms":"فيضة,روضة,أراضي الأشجار القمئية"},"natural/shingle":{"name":"حصى الشواطئ","terms":"حصى الشواطئ,حصى مياه الشواطئ,حصى السواحل"},"natural/shrub":{"name":"شجيرة","terms":"شجيرة"},"natural/spring":{"name":"عين / نبع / ينبوع","terms":"نبع,منبع,عين,ينبوع,عيون"},"natural/stone":{"name":"صخرة كبيرة غير متصلة بالأرض","terms":"صخرة كبيرة غير متصلة بالأرض"},"natural/tree":{"name":"شجرة","terms":"شجرة"},"natural/tree_row":{"name":"صف أشجار","terms":"صف أشجار"},"natural/valley":{"name":"وادي","terms":"وادي"},"natural/volcano":{"name":"بركان","terms":"بركان"},"natural/water":{"name":"مياه","terms":"ماء"},"natural/water/basin":{"name":"أرض حوضية طبيعية تحتوي الماء","terms":"أرض حوضية تحتوي الماء,قلته,مَجمع مياه,أرض تجمع المياه,أرض تحتوي المياه,وقر,جلته,وقبه"},"natural/water/canal":{"name":"مساحة قناة مائية","terms":"مساحة قناة مائية"},"natural/water/lake":{"name":"بحيرة","terms":"بحيرة"},"natural/water/moat":{"name":"خندق مائي","terms":"خندق مائي,خندق مملوء بالماء"},"natural/water/pond":{"name":"بركة","terms":"بركة"},"natural/water/reservoir":{"name":"بحيرة صناعية لتخزين مياه","terms":"بحيرة اصطناعية,خزان مياه"},"natural/water/river":{"name":"مساحة النهر / الوادي / المجرى المائي الواسع","terms":"مساحة النهر,مساحة الوادي,مساحة المجرى المائي الواسع"},"natural/water/stream":{"name":"مساحة المجرى المائي","terms":"مساحة المجرى المائي"},"natural/water/wastewater":{"name":"حوض تخزين الصرف الصحي","terms":"حوض تخزين الصرف الصحي"},"natural/wetland":{"name":"أرض رطبة","terms":"أرض رطبة,مستنقع,هور"},"natural/wetland/bog":{"name":"رخاخ","terms":"رخاخ"},"natural/wetland/fen":{"name":"مستنقع أعشاب مغذى من المياه الجوفية","terms":"مستنقع أعشاب مغذى من المياه الجوفية"},"natural/wetland/mangrove":{"name":"غابات المانغروف","terms":"غابات المانغروف"},"natural/wetland/marsh":{"name":"هور/ سبخة","terms":"هور,سبخة"},"natural/wetland/reedbed":{"name":"مقصبة","terms":"مقصبة"},"natural/wetland/saltmarsh":{"name":"مستنقع الملح الساحلي","terms":"مستنقع الملح الساحلي"},"natural/wetland/string_bog":{"name":"سلسلة رخاخ","terms":"سلسلة رخاخ"},"natural/wetland/swamp":{"name":"مستنقع","terms":"مستنقع"},"natural/wetland/tidalflat":{"name":"المد و الجزر منبسط","terms":"المد و الجزر منبسط"},"natural/wetland/wet_meadow":{"name":"مرعى/مرج رطب طوال العام","terms":"مرعى/مرج رطب"},"natural/wood":{"name":"خشب طبيعي","terms":"خشب طبيعي"},"network/type/node_network-DE-NL-BE-LU":{"name":"عقدة الشبكة الترفيهية","terms":"عقدة الشبكة الترفيهية"},"noexit/yes":{"name":"لا يوجد مخرج","terms":"لا يوجد مخرج"},"office":{"name":"مكتب","terms":"مكتب,دائرة,مفوضية,إدارة"},"office/accountant":{"name":"مكتب محاسب","terms":"المحاسب القانوني,المدقق,الحسابات,مراجع,محاسب قانوني"},"office/administrative":{"name":"مكتب إداري"},"office/adoption_agency":{"name":"Adoption Agency"},"office/advertising_agency":{"name":"وكالة إعلانية","terms":"وكالة الإشهار، وكالة إعلانية"},"office/architect":{"name":"مكتب مهندس معماري","terms":"بناء,مباني,مدينة,تعمير,مهندس معماري,هندسة,هندسة معمارية,هندسي,مكتب هندسي"},"office/association":{"name":"مكتب منظمة غير ربحية","terms":"جمعية,منظمة غير ربحية"},"office/bail_bond_agent-US-PH":{"name":"مكتب وكيل سند الكفالة","terms":"مكتب وكيل سند الكفالة"},"office/charity":{"name":"مكتب منظمة خيرية","terms":"مكتب منظمة خيرية,جمعية خيرية,صدقات,احسان,مبرة,مبرة خيرية,جمعية بر,زكاة,زكوات,صدقة"},"office/company":{"name":"مكتب شركة / مؤسسة","terms":"مكتب شركة,مكتب مؤسسة,مؤسسة,شركة"},"office/consulting":{"name":"مكتب شركة استشارية","terms":"مكتب شركة استشارية"},"office/coworking":{"name":"مساحة عمل مشتركة","terms":"مساحة عمل مشتركة"},"office/diplomatic":{"name":"مكتب دبلوماسي","terms":"مكتب دبلوماسي"},"office/diplomatic/consulate":{"name":"قنصلية","terms":"قنصلية"},"office/diplomatic/embassy":{"name":"سفارة","terms":"سفارة"},"office/diplomatic/liaison":{"name":"مكتب اتصال دبلوماسي","terms":"مكتب اتصال دبلوماسي"},"office/educational_institution":{"name":"مكتب مؤسسة تعليمية","terms":"مؤسسة تعليمية، جامعة، كلية، مدرسة"},"office/employment_agency":{"name":"مكتب وكالة توظيف","terms":"إدارة شؤون الموظفين,مكتب العمل"},"office/energy_supplier":{"name":"مكتب شركة مرافق الكهرباء","terms":"شركة مرافق الكهرباء"},"office/estate_agent":{"name":"مكتب عقاري","terms":"الطابو، دائرة السجل العقاري، إدارة تسجيل الممتلكات"},"office/financial":{"name":"مكتب مالي","terms":"المكتب المالي والضريبي"},"office/financial_advisor":{"name":"المستشار المالي","terms":"المستشار المالي"},"office/forestry":{"name":"مكتب إدارة الغابات","terms":"إدارة الغابات"},"office/foundation":{"name":"مكتب مؤسسة","terms":"مؤسسة"},"office/government":{"name":"مكتب/دائرة حكومية","terms":"رئاسة الوزراء,إدارة الدولة,المكتب العام,دائرة حكومية,إدارة حكومية,قسم حكومي,مؤسسة حكومية,وكالة حكومية"},"office/government/prosecutor":{"name":"مكتب النيابة العامة","terms":"مكتب النائب العام"},"office/government/register_office":{"name":"مكتب السجل المدني","terms":"مكتب السجل المدني"},"office/government/tax":{"name":"مكتب الضرائب","terms":"مكتب الضرائب"},"office/guide":{"name":"مكتب الدليل السياحي","terms":"مكتب الدليل السياحي; مكتب المرشد السياحي"},"office/insurance":{"name":"مكتب تأمينات","terms":"مديرية المعاشات، دائرة التأمينات الاجتماعية، إدارة التأمين"},"office/it":{"name":"مكتب متخصصي تكنولوجيا المعلومات","terms":"متخصص في تكنولوجيا المعلومات; معلوماتية"},"office/lawyer":{"name":"مكتب قانوني","terms":"مكتب محاماة، اﻹدارة القانونية، المحكمة،"},"office/lawyer/notary":{"name":"مكتب كتابة عدل / موثق"},"office/moving_company":{"name":"مكتب شركة نقل","terms":"مكتب شركة نقل"},"office/newspaper":{"name":"صحيفة","terms":"جريدة، صفحة أخبار، يومية"},"office/ngo":{"name":"مكتب المنظمات العامة الغير حكومية","terms":"مكتب الجمعيات الخيرية، هيئات العمل اﻹغائي،"},"office/notary":{"name":"مكتب كتابة عدل / موثق","terms":"كاتب عدل، موثق"},"office/physician":{"name":"طبيب"},"office/political_party":{"name":"مكتب الحزب السياسي","terms":"مكتب الحزب السياسي"},"office/private_investigator":{"name":"مكتب محقق خاص","terms":"مكتب محقق"},"office/quango":{"name":"مكتب منظمة غير حكومية شبه مستقلة","terms":"مكتب منظمة غير حكومية شبه مستقلة"},"office/religion":{"name":"مكتب ديني","terms":"مكتب ديني"},"office/research":{"name":"مكتب بحوث","terms":"مكتب البحوث، مكتب اﻷبحاث، هيئة اﻷبحاث، مكتب بحث علمي، مركز للبحث العلمي"},"office/security":{"name":"مكتب مؤسسات الحراسات الأمنية","terms":"مكتب مؤسسات الحراسات الأمنية"},"office/surveyor":{"name":"مكتب مساح أرضي","terms":"مساح"},"office/tax_advisor":{"name":"مستشار الضرائب","terms":"مستشار الضرائب"},"office/telecommunication":{"name":"مكتب شركات اتصالات","terms":"مكتب الاتصالات، إدارة الاتصال، هيئة الاتصالات العامة"},"office/therapist":{"name":"المعالج","terms":"معالج، معالج فيزيائي، طبيب، مُمرض"},"office/travel_agent":{"name":"وكالة السفر"},"office/water_utility":{"name":"مكتب شركة مياه","terms":"شركة المياه"},"office/yes":{"name":"مكتب (نوع غير محدد)"},"piste/downhill":{"name":"سباق التزلج على المنحدرات","terms":"سباق التزلج على المنحدرات"},"piste/downhill/halfpipe":{"name":"نصف أنبوب رياضة الثلج","terms":"نصف أنبوب رياضة الثلج"},"piste/hike":{"name":"ممر المشي بالأحذية الثلجية","terms":"ممر المشي بالأحذية الثلجية"},"piste/ice_skate":{"name":"مسار التزلج على الجليد","terms":"مسار التزلج على الجليد"},"piste/nordic":{"name":"مسار تزلج عبر الريف","terms":"مسار تزلج عبر الريف"},"piste/piste":{"name":"ممر رياضة الثلوج / الزحلقة","terms":"ممر رياضة الثلوج / الزحلقة"},"piste/skitour":{"name":"مسار للتزلج على الجليد","terms":"مسار للتزلج على الجليد"},"piste/sled":{"name":"تشغيل الزلاجات","terms":"تشغيل الزلاجات"},"piste/sleigh":{"name":"ممر الزلاجة","terms":"ممر الزلاجة"},"place":{"name":"مكان / موضع"},"place/city":{"name":"مدينة كبيرة","terms":"مدينة كبيرة,مدينة,مدينة كبرى"},"place/city_block":{"name":"مربع سكني","terms":"بلك,بلوك,مربع,مربع سكني,حاره"},"place/farm":{"name":"مزرعة"},"place/hamlet":{"name":"قرية صغيرة / هجرة","terms":"قرية صغيرة,هجرة"},"place/island":{"name":"جزيرة","terms":"جزيرة"},"place/islet":{"name":"جزيرة صغيرة","terms":"جزيرة صغيرة"},"place/isolated_dwelling":{"name":"مساكن متفرقة ومنعزلة","terms":"مساكن متفرقة"},"place/locality":{"name":"موضع لمكان غير مأهول","terms":"موقع,موضع"},"place/neighbourhood":{"name":"حي سكني","terms":"حي سكني"},"place/plot":{"name":"قطعة الأرض","terms":"قطعة الأرض"},"place/quarter":{"name":"منطقة فرعية / ربع","terms":"منطقة فرعية / ربع"},"place/square":{"name":"ساحة","terms":"ساحة,باحة,ممشى"},"place/suburb":{"name":"ضاحية","terms":"ضاحية"},"place/town":{"name":"مدينة","terms":"مدينة صغيرة,مدينة,مدينة صغرى,بلده"},"place/village":{"name":"قرية","terms":"قرية"},"playground":{"name":"أجهزة وتركيبات الملعب"},"playground/activitypanel":{"name":"تشغيل لوحة النشاط","terms":"تشغيل لوحة النشاط"},"playground/aerialrotator":{"name":"معلقة سبينر","terms":"معلقة سبينر"},"playground/balancebeam":{"name":"لعبة التوازن على الجذع","terms":"لعبة التوازن على الجذع"},"playground/basketrotator":{"name":"سلة دوارة","terms":"سلة دوارة"},"playground/basketswing":{"name":"السلة المتأرجحة","terms":"السلة المتأرجحة"},"playground/bridge":{"name":"لعبة الجسر","terms":"لعبة الجسر"},"playground/climbingframe":{"name":"لعب تسلق الإطار","terms":"لعب تسلق الإطار"},"playground/climbingwall":{"name":"لعب جدار التسلق","terms":"لعب جدار التسلق"},"playground/cushion":{"name":"وسادة نطاطه","terms":"وسادة نطاطه"},"playground/funnel_ball":{"name":"لعبة قِمع الكرة","terms":"لعبة قِمع الكرة"},"playground/hopscotch":{"name":"الحجلة","terms":"الحجلة"},"playground/horizontal_bar":{"name":"لعبة العارضة الأفقية","terms":"لعبة العارضة الأفقية"},"playground/map":{"name":"خريطة ملعب مرسومة","terms":"خريطة ملعب مرسومة"},"playground/playhouse":{"name":"بيت اللعب","terms":"بيت اللعب"},"playground/roundabout":{"name":"لعبة الصحن الدوار","terms":"لعبة الصحن الدوار"},"playground/sandpit":{"name":"مكان اللعب بالرمل","terms":"مكان اللعب بالرمل"},"playground/seesaw":{"name":"أرجوحة","terms":"مرجيحة,أرجوحة"},"playground/sledding":{"name":"لعبة الانزلاق من التل","terms":"لعبة الانزلاق من التل"},"playground/slide":{"name":"زحليقة","terms":"زحليقة"},"playground/splash_pad":{"name":"لعبة بركة الرذاذ","terms":"لعبة بركة الرذاذ"},"playground/springy":{"name":"نطاطه على سبرينق","terms":"نطاطه على سبرينق"},"playground/structure":{"name":"هيكل لعبة كبيرة","terms":"هيكل لعبة كبيرة"},"playground/swing":{"name":"مرجيحة","terms":"مرجيحة,أرجوحة,مراجيح"},"playground/teenshelter":{"name":"مأوى المراهقين","terms":"مأوى المراهقين"},"playground/tetherball":{"name":"ملعب كرة الحبل","terms":"ملعب كرة الحبل"},"playground/trampoline":{"name":"النُطيطة (الترامبولين)","terms":"النُطيطة (الترامبولين)"},"playground/tunnel_tube":{"name":"لعبة النفق","terms":"لعبة النفق"},"playground/water":{"name":"لعبة تشغيل المضخة","terms":"لعبة تشغيل المضخة"},"playground/zipwire":{"name":"الانزلاق على حبل","terms":"الانزلاق على حبل"},"point":{"name":"نقطة","terms":"نقطة"},"police/checkpoint":{"name":"نقطة تفتيش أو حاجز عسكري","terms":"نقطة تفتيش,حاجز عسكري"},"polling_station":{"name":"Temporary Polling Place"},"power":{"name":"عنصر طاقة/كهرباء"},"power/cable":{"name":"كابل الطاقة"},"power/cable/underground":{"name":"كابل كهرباء تحت الأرض","terms":"كابل كهرباء تحت الأرض"},"power/generator":{"name":"مولد طاقة","terms":"مولد الطاقة,طاقة,كهرباء,مولد كهرباء"},"power/generator/method/photovoltaic":{"name":"لوحة شمسية","terms":"لوحات شمسية,طاقة شمسية,طاقة,شمس"},"power/generator/method/photovoltaic/building/roof":{"name":"مظلة الألواح الشمسية","terms":"مظلة الألواح الشمسية"},"power/generator/method/photovoltaic/location/roof":{"name":"لوحة شمسية على السطح","terms":"لوحة شمسية على السطح"},"power/generator/source/hydro":{"name":"توربينات مائية","terms":"توربينات مائية"},"power/generator/source/nuclear":{"name":"مفاعل نووي","terms":"نووي,مفاعل,طاقة,كهرباء"},"power/generator/source/wind":{"name":"توربينة رياح","terms":"رياح,توليد كهرباء,كهرباء,توربينات,توربينة,توربين,طاقة"},"power/line":{"name":"خط كهرباء","terms":"خط كهرباء,خط طاقة"},"power/minor_line":{"name":"خط كهربائي ثانوي","terms":"خط كهربائي صغير،,خط طاقة صغير"},"power/plant":{"name":"محطة توليد كهرباء","terms":"محطة توليد الكهرباء,الطاقة الكهربائية"},"power/plant/source/coal":{"name":"محطة لتوليد الكهرباء تعمل بالفحم","terms":"محطة لتوليد الكهرباء تعمل بالفحم"},"power/plant/source/gas":{"name":"محطة لتوليد الكهرباء تعمل بالغاز","terms":"محطة لتوليد الكهرباء تعمل بالغاز"},"power/plant/source/hydro":{"name":"محطة كهرباء كهرومائية","terms":"محطة كهرباء كهرومائية"},"power/plant/source/method/photovoltaic":{"name":"مزرعة شمسية","terms":"محطة الطاقة الشمسية ، محطة توليد الطاقة الشمسية ، الطاقات المتجددة","aliases":"محطة للطاقة الشمسية"},"power/plant/source/nuclear":{"name":"محطة كهرباء نووية","terms":"محطة كهرباء نووية"},"power/plant/source/oil":{"name":"محطة كهرباء تعمل بالنفط","terms":"محطة كهرباء تعمل بالنفط"},"power/plant/source/solar":{"name":"محطة للطاقة الشمسية","terms":"محطة توليد الطاقة الشمسية ، الطاقات المتجددة"},"power/plant/source/waste":{"name":"مولد طاقة يعمل عن طريق حرق النفايات","terms":"مولد طاقة يعمل عن طريق حرق النفايات"},"power/plant/source/wind":{"name":"مزرعة طاقة عبر الرياح","terms":"مزرعة طاقة عبر الرياح"},"power/pole":{"name":"عمود كهرباء","terms":"عمود كهرباء,برج كهرباء.أعمدة طاقة,عمود طاقة,عمود نقل الطاقة,عمود نقل الكهرباء"},"power/substation":{"name":"محطة فرعية","terms":"محطة فرعية"},"power/switch":{"name":"معدة وصل وفصل كهربائية","terms":"معدة وصل وفصل,مفتاح,فصل,وصل"},"power/tower":{"name":"برج كهرباء ضغط عالي","terms":"برج عالي الجهد,برج تيار عالي الجهد,تيار عالي الجهد,برج كهرباء,أبراج كهرباء,برج طاقة,برج توصيل طاقة"},"power/transformer":{"name":"محول كهربائي","terms":"محول الكهربائي"},"public_transport/platform":{"name":"منصة انتظار وسائل النقل العام","terms":"منصة انتظار وسائل النقل العام,منصةانتظار وسائل النقل العام,مكان لركوب الباص,رصيف انتظار النقل العام"},"public_transport/platform/aerialway":{"name":"منصة انتظار وسائل النقل بالكابلات","terms":"منصة انتظار وسائل النقل بالكابلات"},"public_transport/platform/aerialway_point":{"name":"منصة توقف لوسائل النقل بالكابلات"},"public_transport/platform/bus":{"name":"منصة انتظار ركوب الحافلات","terms":"منصة انتظار ركوب الحافلات"},"public_transport/platform/bus_point":{"name":"محطة توقف حافلات","terms":"محطة توقف حافلات"},"public_transport/platform/bus_tram_point":{"name":"محطة توقف الترام و الحافلات","terms":"محطة توقف الترام و الحافلات"},"public_transport/platform/ferry":{"name":"منصة انتظار ركوب العبارات البحرية","terms":"منصة انتظار ركوب العبارات البحرية"},"public_transport/platform/ferry_point":{"name":"منصة توقف عبارات بحرية"},"public_transport/platform/light_rail":{"name":"منصة انتظار ركوب السكة الحديدية الخفيفة","terms":"منصة انتظار ركوب السكة الحديدية الخفيفة"},"public_transport/platform/light_rail_point":{"name":"منصة توقف السكة الحديدية الخفيفة"},"public_transport/platform/monorail":{"name":"منصة انتظار ركوب القطار الكهربائي","terms":"منصة انتظار ركوب القطار الكهربائي"},"public_transport/platform/monorail_point":{"name":"منصة توقف القطار الكهربائي"},"public_transport/platform/subway":{"name":"منصة انتظار و ركوب مترو الانفاق","terms":"منصة انتظار و ركوب مترو الانفاق"},"public_transport/platform/subway_point":{"name":"منصة توقف مترو الانفاق"},"public_transport/platform/train":{"name":"منصة انتظار وركوب القطار","terms":"منصة انتظار وركوب القطار"},"public_transport/platform/train_point":{"name":"منصة توقف القطار"},"public_transport/platform/tram":{"name":"منصة انتظار وركوب الترام","terms":"منصة انتظار وركوب الترام"},"public_transport/platform/tram_point":{"name":"منصة توقف الترام","terms":"منصة توقف الترام"},"public_transport/platform/trolleybus":{"name":"منصة انتظار وركوب حافلة ترولي","terms":"منصة انتظار وركوب حافلة ترولي"},"public_transport/platform/trolleybus_point":{"name":"محطة توقف حافلة كهربائية","terms":"محطة توقف حافلة كهربائية"},"public_transport/platform_point":{"name":"منصة ركوب وتوقف وسائل النقل العام","terms":"منصة ركوب وتوقف وسائل النقل العام"},"public_transport/station":{"name":"محطة نقل عام","terms":"محطة نقل عام"},"public_transport/station_aerialway":{"name":"محطة النقل بالكابلات","terms":"محطة النقل بالكابلات; محطة تلفريك"},"public_transport/station_bus":{"name":"محطة الحافلات / صالة","terms":"محطة الحافلات"},"public_transport/station_ferry":{"name":"محطة / صالة العبارات","terms":"محطة / صالة العبارات"},"public_transport/station_light_rail":{"name":"محطة سكة حديد خفيفة","terms":"محطة سكة حديد خفيفة"},"public_transport/station_monorail":{"name":"محطة سكة حديد أحادية","terms":"محطة سكة حديد أحادية"},"public_transport/station_subway":{"name":"محطة مترو","terms":"محطة مترو"},"public_transport/station_train":{"name":"محطة قطار","terms":"محطة القطار"},"public_transport/station_train_halt":{"name":"محطة القطار (توقف/ طلب)","terms":"محطة القطار (توقف/ طلب)"},"public_transport/station_tram":{"name":"محطة ترام","terms":"محطة ترام"},"public_transport/station_trolleybus":{"name":"صالة محطة حافلات كهربائية","terms":"صالة محطة حافلات كهربائية"},"public_transport/stop_area":{"name":"منطقة توقف وسائل نقل عام","terms":"منطقة توقف وسائل نقل عام"},"public_transport/stop_position":{"name":"موقع توقف وسائل نقل عام","terms":"موقع توقف وسائل نقل عام"},"public_transport/stop_position_aerialway":{"name":"موقع توقف وسائل نقل بالكابلات","terms":"موقع توقف وسائل نقل بالكابلات"},"public_transport/stop_position_bus":{"name":"موقع وقوف حافلات","terms":"موقع وقوف حافلات"},"public_transport/stop_position_ferry":{"name":"موقع وقوف عبّارات","terms":"موقع وقوف عبّارات"},"public_transport/stop_position_light_rail":{"name":"موقع وقوف سكك حديد خفيفة","terms":"موقع وقوف سكك حديد خفيفة"},"public_transport/stop_position_monorail":{"name":"موقع وقوف سكك حديد أحادية","terms":"موقع وقوف سكك حديد أحادية"},"public_transport/stop_position_subway":{"name":"موقع وقوف مترو الأنفاق","terms":"موقع وقوف مترو الأنفاق"},"public_transport/stop_position_train":{"name":"مكان موقف القطار","terms":"مكان موقف القطار"},"public_transport/stop_position_tram":{"name":"موقع وقوف الترام","terms":"موقع وقوف الترام"},"public_transport/stop_position_trolleybus":{"name":"موقع وقوف حافلات كهربائية","terms":"موقع وقوف حافلات كهربائية"},"railway":{"name":"عنصر سكك الحديد"},"railway/abandoned":{"name":"سكة حديدية مهجورة","terms":"سكة حديد مهجورة"},"railway/buffer_stop":{"name":"مصد قطارات","terms":"مصد,قطار"},"railway/construction":{"name":"سكة حديدية تحت الإنشاء","terms":"سكة حديدية تحت الإنشاء"},"railway/crossing":{"name":"معبر مشاه على الخطوط الحديدية","terms":"معبر مشاه على الخطوط الحديدية"},"railway/derail":{"name":"معدة حماية تخرج القطار عن المسار","terms":"معدة حماية تخرج القطار عن المسار"},"railway/disused":{"name":"سكة حديدة مهجورة","terms":"سكة حديد غير مستعملة"},"railway/funicular":{"name":"مسار قطار جبلي مائل","terms":"مسار قطار جبلي مائل"},"railway/halt":{"name":"محطة قطار صغيرة (يتوقف عندها القطار عند الطلب)"},"railway/level_crossing":{"name":"معبر سيارات على السكة الحديدية","terms":"تقاطع سكة حديدية,تقاطع طريق سيارات مع سكة حديدية,مزلقان"},"railway/light_rail":{"name":"مسار سكة حديد خفيف","terms":"مسار سكة حديد خفيف"},"railway/milestone":{"name":"لوحة/علامة مسافات السكة الحديدية","terms":"لوحة/علامة مسافات السكة الحديدية"},"railway/miniature":{"name":"مسار القطار المصغر","terms":"مسار القطار المصغر"},"railway/monorail":{"name":"مسار سكة حديدية أحادية","terms":"مسار سكة حديدية أحادية"},"railway/monorail/hanging":{"name":"مسار سكة حديدية أحادية معلقة","terms":"مسار سكة حديدية معلقة و أحادية"},"railway/narrow_gauge":{"name":"مسار قطار ضيق","terms":"مسار قطار ضيق"},"railway/platform":{"name":"منصة القطار"},"railway/preserved":{"name":"مسار سكة حديد قديمة/تراثية","terms":"مسار سكة حديد قديمة/تراثية"},"railway/rail":{"name":"مسار القطار","terms":"مسار القطار"},"railway/rail/highspeed":{"name":"مسار قطار عالي السرعة","terms":"مسار قطار عالي السرعة"},"railway/railway_crossing":{"name":"تقاطع مسار قطارات مع مسار قطارات آخر","terms":"تقاطع مسار قطارات مع مسار قطارات آخر"},"railway/signal":{"name":"إشارة مرور السكك الحديدية","terms":"إشارة مرور السكك الحديدية"},"railway/station":{"name":"محطة سكة حديد"},"railway/subway":{"name":"مسار مترو الانفاق","terms":"مسار مترو الانفاق"},"railway/subway_entrance":{"name":"مدخل مترو الأنفاق","terms":"مدخل مترو الأنفاق"},"railway/switch":{"name":"محول مسار القطار على السكة الحديدة","terms":"محول مسار القطار على السكة الحديدة"},"railway/train_wash":{"name":"مغسلة قطارات","terms":"مغسلة قطارات"},"railway/tram":{"name":"مسار الترام","terms":"مسار الترام"},"railway/tram_crossing":{"name":"معبر مشاة على مسار الترام","terms":"معبر مشاة على مسار الترام"},"railway/tram_level_crossing":{"name":"تقاطع بين مسار ترام ومسار سيارات","terms":"تقاطع بين مسار ترام ومسار سيارات"},"railway/tram_stop":{"name":"مكان توقف الترام"},"railway/yard":{"name":"ساحة السكة الحديدية","terms":"ساحة السكة الحديدية"},"relation":{"name":"علاقة","terms":"علاقة"},"route/ferry":{"name":"مسار عبّارة","terms":"مسار عبّارة,مسار سفن"},"seamark":{"name":"علامة بحرية"},"seamark/beacon_isolated_danger":{"name":"منارة الخطر","terms":"منارة الخطر"},"seamark/beacon_lateral":{"name":"منارة القناة","terms":"منارة القناة"},"seamark/buoy_lateral":{"name":"عوامة تشير للقناة","terms":"عوامة تشير للقناة"},"seamark/buoy_lateral/green":{"name":"عوامة خضراء","terms":"العوامة الخضراء"},"seamark/buoy_lateral/red":{"name":"عوامة حمراء","terms":"عوامة حمراء"},"seamark/mooring":{"name":"مربط سفن ومراكب بحرية","terms":"مربط سفن ومركبات بحرية"},"shop":{"name":"متجر","terms":"محل. متجر,دكان"},"shop/agrarian":{"name":"متجر المنتجات والمستلزمات الزراعية","terms":"متجر المنتجات والمستلزمات الزراعية"},"shop/alcohol":{"name":"متجر خمور","terms":"محل خمور,خمور,متجر خمور"},"shop/anime":{"name":"متجر أنيمي / مانغا","terms":"متجر أنيمي / مانغا"},"shop/antiques":{"name":"متجر تحف","terms":"متجر تحف ، متجر أشياء قديمة ، تذكارات"},"shop/appliance":{"name":"متجر الأجهزة المنزلية","terms":"متجر الأجهزة المنزلية,متجر ثلاجات,ثلاجات,غسالات,مكيفات"},"shop/art":{"name":"متجر الفنون","terms":"متجر فنون"},"shop/baby_goods":{"name":"متجر مستلزمات الأطفال","terms":"متجر مستلزمات الأطفال,متجر سلع الأطفال"},"shop/bag":{"name":"متجر حقائب وأمتعة","terms":"شنطة,حقيبة"},"shop/bakery":{"name":"مخبز","terms":"مخبز"},"shop/bathroom_furnishing":{"name":"متجر أثاث واكسسوارات الحمامات","terms":"متجر أثاث واكسسوارات الحمامات"},"shop/beauty":{"name":"محل تجميل","terms":"محل تجميل"},"shop/beauty/nails":{"name":"صالون أظافر","terms":"صالون أظافر"},"shop/beauty/tanning":{"name":"صالون تسمير","terms":"صالون تسمير"},"shop/bed":{"name":"متجر مراتب ولوازم الفراش","terms":"متجر مراتب ولوازم الفراش"},"shop/beverages":{"name":"محل بيع مشروبات ومرطبات","terms":"محل مشروبات"},"shop/bicycle":{"name":"متجر دراجات هوائية","terms":"محل دراجات هوائية; متجر دراجات; محل دراجات; بائع دراجات"},"shop/boat":{"name":"متجر بيع قوارب ومستلزماتها","terms":"متجر بيع قوارب ومستلزماتها"},"shop/bookmaker":{"name":"مكتب رهانات"},"shop/books":{"name":"بائع كتب","terms":"متجر كتب ، مكتبة ، محل بيع كتب","aliases":"متجر كتب\nمكتبة\nمحل بيع كتب"},"shop/boutique":{"name":"بوتيك"},"shop/brewing_supplies":{"name":"Brewing Supply Store"},"shop/butcher":{"name":"جزار","terms":"جزار,محل بيع لحوم. محل جزارة,لحوم"},"shop/camera":{"name":"Camera Equipment Store"},"shop/candles":{"name":"متجر الشموع","terms":"متجر الشموع"},"shop/cannabis":{"name":"Cannabis Shop"},"shop/car":{"name":"وكالة/معرض سيارات","terms":"وكالة سيارات"},"shop/car/second_hand":{"name":"وكالة/معرض بيع السيارات المستعملة","terms":"وكالة/معرض بيع السيارات المستعملة"},"shop/car_parts":{"name":"محل قطع غيار السيارة","terms":"محل بيع قطع السيارات"},"shop/car_repair":{"name":"ورشة إصلاح سيارات","terms":"محل تصليح سيارات; ورشة تصليح; ورشة; ميكانيكي"},"shop/caravan":{"name":"متجر بيع كرفانات ومنازل متنقلة","terms":"متجر بيع كرفانات ومنازل متنقلة"},"shop/carpet":{"name":"متجر سجاد ومفروشات","terms":"متجر سجاد; زرابي,سجاد,مفروشات"},"shop/catalogue":{"name":"Catalog Shop"},"shop/charity":{"name":"متجر خيري","terms":"متجر خيري,متجر جمعية خيرية,متجر بيع البضائع المستعملة للجمعية الخيرية"},"shop/cheese":{"name":"متجر أجبان","terms":"متجر أجبان"},"shop/chemist":{"name":"متجر أدوات النظافة الشخصية والتجميل","terms":"متجر أدوات النظافة الشخصية والتجميل"},"shop/chocolate":{"name":"متجر شوكولاتة","terms":"متجر شوكولاتة"},"shop/clothes":{"name":"محل ملابس","terms":"محل بيع ملابس"},"shop/clothes/second_hand":{"name":"متجر لبيع الملابس المستعملة","terms":"متجر لبيع الملابس المستعملة"},"shop/clothes/suits":{"name":"متجر بيع بذلات","terms":"متجر بيع بذلات,متجر بيع أطقم"},"shop/clothes/underwear":{"name":"متجر بيع الملابس الداخلية","terms":"متجر بيع الملابس الداخلية"},"shop/clothes/wedding":{"name":"محل بيع وتفصيل ملابس الزفاف","terms":"محل بيع وتفصيل ملابس الزفاف"},"shop/clothes/workwear":{"name":"متجر بيع ملابس مخصصة للعمل","terms":"متجر بيع ملابس مخصصة للعمل,متجر بيع ملابس أعمال"},"shop/coffee":{"name":"متجر القهوة","terms":"متجر القهوة"},"shop/collector":{"name":"متجر المقتنيات والتجميعات","terms":"متجر المقتنيات والتجميعات"},"shop/computer":{"name":"محل حاسب آلي","terms":"محل حاسوب,محل حاسب آلي,محل حاسب,محل كمبيوتر,متجر للكمبيوتر,كمبيوتر"},"shop/confectionery":{"name":"متجر حلويات","terms":"حلويات,حلوى,سكاكر"},"shop/convenience":{"name":"بقالة - متجر صغير","terms":"بقالة,متجر صغير,تموينات"},"shop/copyshop":{"name":"متجر نسخ وتصوير","terms":"متجر نسخ وتصوير"},"shop/cosmetics":{"name":"متجر مستحضرات التجميل","terms":"متجر مستحضرات التجميل"},"shop/craft":{"name":"متجر الفنون والحرف","terms":"متجر الفنون والحرف"},"shop/curtain":{"name":"محل بيع الستائر","terms":"ستائر"},"shop/dairy":{"name":"متجر الألبان","terms":"متجر الألبان، الألبان"},"shop/deli":{"name":"محل أطعمة لذيذة","terms":"محل أطعمة راقية ، متجر أطعمة لذيذة"},"shop/department_store":{"name":"محل متعدد الأقسام","terms":"محل متعدد الأقسام"},"shop/doityourself":{"name":"محل عدد وأدوات وأجهزة صيانة وتحسين المنزل","terms":"محل افعلها بنفسك,محل عدد وأدوات وأجهزة صيانة وتحسين المنزل"},"shop/doors":{"name":"متجر بيع أبواب","terms":"متجر بيع أبواب,باب,بيبان"},"shop/dry_cleaning":{"name":"مغسلة ملابس بالبخار","terms":"مغسلة ملابس بالبخار"},"shop/e-cigarette":{"name":"متجر سجائر إلكترونية","terms":"متجر سجائر إلكترونية"},"shop/electrical":{"name":"متجر المستلزمات الإلكترونية","terms":"متجر المستلزمات الإلكترونية"},"shop/electronics":{"name":"محل إلكترونيات","terms":"محل إلكترونيات"},"shop/erotic":{"name":"Erotic Store"},"shop/erotic/lgbtq":{"name":"LGBTQ+ Erotic Store"},"shop/fabric":{"name":"محل بيع الأقمشة","terms":"الأقمشة,قماش,كلف"},"shop/farm":{"name":"متجر مزرعة ليبيع منتجاتها","terms":"المنتج"},"shop/fashion":{"name":"متجر موضة"},"shop/fashion_accessories":{"name":"محل اكسسوارات الموضة","terms":"محل اكسسوارات الموضة"},"shop/fireplace":{"name":"متجر بيع المواقد والدفايات","terms":"متجر بيع المواقد والدفايات"},"shop/fishing":{"name":"محل معدات الصيد البحري","terms":"محل معدات الصيد"},"shop/flooring":{"name":"محل بيع أرضيات","terms":"أرضيات,باركيه"},"shop/florist":{"name":"محل بيع الورود","terms":"محل بيع زهور,محل بيع ورود"},"shop/frame":{"name":"محل تأطير (بيع إطارات صور)","terms":"محل تأطير (بيع إطارات صور)"},"shop/frozen_food":{"name":"متجر أغذية مجمدة","terms":"متجر أغذية مجمدة"},"shop/fuel":{"name":"متجر بيع الوقود","terms":"متجر بيع الوقود"},"shop/funeral_directors":{"name":"محل بيع أكفان ومستلزمات الجنائز","terms":"محل بيع أكفان ومستلزمات الجنائز"},"shop/furniture":{"name":"محل بيع أثاث","terms":"محل أثاث"},"shop/games":{"name":"متجر ألعاب الطاولة","terms":"متجر ألعاب الطاولة"},"shop/garden_centre":{"name":"مشتل","terms":"مشتل"},"shop/gas":{"name":"محل بيع الغاز المعبأ","terms":"محل غاز,غاز"},"shop/general":{"name":"متجر عام","terms":"متجر عام"},"shop/gift":{"name":"محل بيع هدايا","terms":"محل بيع هدايا"},"shop/greengrocer":{"name":"متجر خضروات","terms":"متجر خضروات"},"shop/hairdresser":{"name":"حلاق","terms":"حلاق,مصفف الشعر"},"shop/hairdresser_supply":{"name":"متجر مستلزمات حلاقين","terms":"متجر مستلزمات حلاقين"},"shop/hardware":{"name":"محل مواد بناء","terms":"محل بيع عتاد,سباكة,مواد بناء,لوازم حديقة,عدد,مسامير,حديد,مفكات"},"shop/health_food":{"name":"متجر أغذية صحية","terms":"متجر أغذية صحية ، محل أغذية صحية"},"shop/hearing_aids":{"name":"متجر سماعات الأذن الطبية","terms":"سماعات الأذن الطبية; معينات سمعية; أجهزة تقوية السمع; مساعدات السمع"},"shop/herbalist":{"name":"محل بيع الأعشاب الطبية / عطار","terms":"محل بيع الأعشاب الطبية,عطار"},"shop/hifi":{"name":"محل بيع أجهزة عالية الدقة","terms":"محل بيع أجهزة عالية الدقة"},"shop/hobby":{"name":"متاجر الهوايات","terms":"متاجر الهوايات"},"shop/household_linen":{"name":"محل المفروشات والأغطية المنزلية","terms":"محل المفروشات والأغطية المنزلية"},"shop/houseware":{"name":"متجر بيع الأدوات المنزلية الصغيرة","terms":"متجر الأدوات المنزلية"},"shop/hunting":{"name":"متجر بيع أسلحة ومعدات الصيد","terms":"متجر بيع أسلحة ومعدات الصيد"},"shop/interior_decoration":{"name":"متجر الديكور الداخلي","terms":"متجر الديكور الداخلي"},"shop/jewelry":{"name":"محل بيع مجوهرات","terms":"محل مجوهرات,ذهب,فضة"},"shop/kiosk":{"name":"كشك","terms":"كشك"},"shop/kitchen":{"name":"متجر ديكور وتصميم المطابخ","terms":"ديكور,مطابخ,تصميم"},"shop/laundry":{"name":"محل غسيل ملابس","terms":"غسيل ملابس,مغسلة ملابس"},"shop/laundry/self_service":{"name":"مغسلة ملابس - خدمة ذاتية","terms":"مغسلة ملابس - خدمة ذاتية,مغسلة اخدم نفسك بنفسك"},"shop/leather":{"name":"متجر المنتجات الجلدية","terms":"متجر المنتجات الجلدية"},"shop/lighting":{"name":"متجر إنارة ولمبات","terms":"متجر إنارة ولمبات"},"shop/locksmith":{"name":"محل بيع أقفال ونسخ مفاتيح","terms":"صانع اﻷقفال، أقفال، حداد،"},"shop/lottery":{"name":"متجر اليانصيب"},"shop/mall":{"name":"مركز تسوق تجاري (مول)","terms":"مركز تسوق,مول"},"shop/massage":{"name":"صالون التدليك","terms":"صالون التدليك"},"shop/medical_supply":{"name":"متجر مستلزمات وأجهزة طبية","terms":"متجر مستلزمات طبية"},"shop/military_surplus":{"name":"متجر بيع المعدات والمستلزمات العسكرية المستعملة","terms":"متجر بيع المعدات والمستلزمات العسكرية المستعملة"},"shop/mobile_phone":{"name":"محل بيع هواتف","terms":"محل بيع هواتف"},"shop/model":{"name":"متجر بيع النماذج المصغرة للأشياء","terms":"متجر بيع النماذج المصغرة للأشياء"},"shop/money_lender":{"name":"مُقرض المال","terms":"مُقرض المال"},"shop/motorcycle":{"name":"بائع دراجات نارية","terms":"وكالة دراجات هوائية; توكيل; بائع; توكيل دراجات; بائع دراجات; بيع دراجات; بيع"},"shop/motorcycle_repair":{"name":"ورشة تصليح الدراجات النارية","terms":"ورشة تصليح الدراجات النارية"},"shop/music":{"name":"متجر بيع موسيقى","terms":"محل بيع الموسيقى"},"shop/musical_instrument":{"name":"متجر آلات موسيقية","terms":"محل بيع الآلات الموسيقية"},"shop/newsagent":{"name":"كشك","terms":"كشك جرائد ، كشك جرائد ومجلات ، محل بيع الجرائد ، محل بيع صحف","aliases":"كشك جرائد\nكشك جرائد ومجلات\nمحل بيع الجرائد\nمحل بيع صحف"},"shop/nutrition_supplements":{"name":"متجر المكملات الغذائية","terms":"متجر المكملات الغذائية، مكملات غذائية"},"shop/optician":{"name":"متجر نظارات","terms":"محل بيع نظارات,عدسات"},"shop/outdoor":{"name":"متجر معدات الرحلات والتسلق والتخييم","terms":"متجر ملابس ومعدات الأنشطة في الهواء الطلق"},"shop/outpost":{"name":"محل استلام شحنات مطلوبة من الانترنت","terms":"محل استلام شحنات مطلوبة من الانترنت"},"shop/paint":{"name":"متجر دهانات وطلاء","terms":"طلاء"},"shop/party":{"name":"متجر مستلزمات حفلات","terms":"متجر مستلزمات حفلات"},"shop/pastry":{"name":"متجر حلويات","terms":"متجر الحلويات"},"shop/pawnbroker":{"name":"متجر رهن","terms":"متجر رهن"},"shop/perfumery":{"name":"متجر عطور","terms":"عطور"},"shop/pet":{"name":"محل بيع حيوانات أليفة","terms":"محل حيوانات أليفة"},"shop/pet_grooming":{"name":"متجر العناية بالحيوانات الأليفة","terms":"متجر العناية بالحيوانات الأليفة"},"shop/photo":{"name":"محل تصوير","terms":"متجر تظّهير الصور، محل تصوير، مصور"},"shop/pottery":{"name":"متجر فخار","terms":"متجر فخار"},"shop/printer_ink":{"name":"متجر أحبار طابعة","terms":"متجر أحبار طابعة"},"shop/psychic":{"name":"Psychic"},"shop/pyrotechnics":{"name":"متجر ألعاب نارية","terms":"ألعاب نارية"},"shop/radiotechnics":{"name":"متجر بيع قطع الراديو / الإلكترونية","terms":"متجر المكونات الإلكترونية"},"shop/religion":{"name":"متجر ديني","terms":"دين,متجر"},"shop/rental":{"name":"محل تأجير","terms":"محل تأجير"},"shop/repair":{"name":"محل تصليح","terms":"محل تصليح"},"shop/scuba_diving":{"name":"متجر معدات الغوص تحت الماء","terms":"متجر معدات الغوص تحت الماء"},"shop/seafood":{"name":"متجر مأكولات بحرية","terms":"مأكولات بحرية,مسمكة,سمك"},"shop/second_hand":{"name":"متجر التوفير","terms":"محل لبيع البضائع المستعملة ، محل التوفير ، البال ، البالي ، قديم ، أشياء قديمة ، مستعمل ، بال"},"shop/sewing":{"name":"متجر مستلزمات خياطة","terms":"خياطة,ترزي,خياط"},"shop/shoe_repair":{"name":"محل تصليح الأحذية","terms":"محل تصليح الأحذية"},"shop/shoes":{"name":"متجر أحذية","terms":"محل بيع أحذية,حذاء,احذية"},"shop/spices":{"name":"محل بيع بهارات","terms":"محل بيع بهارات"},"shop/sports":{"name":"متجر بيع أدوات رياضية","terms":"محل بيع أدوات رياضية"},"shop/stationery":{"name":"متجر قرطاسية و أدوات مكتبية","terms":"محل بيع أدوات مكتبية,قرطاسية,مكتبة"},"shop/storage_rental":{"name":"محل تأجير أماكن التخزين","terms":"محل تأجير أماكن التخزين"},"shop/supermarket":{"name":"سوبر ماركت","terms":"سوبرماركت,متجر كبير"},"shop/supermarket/organic":{"name":"سوبر ماركت عضوي","terms":"سوبر ماركت عضوي"},"shop/swimming_pool":{"name":"متجر مستلزمات حمامات السباحة","terms":"متجر مستلزمات حمامات السباحة"},"shop/tailor":{"name":"خياط","terms":"خياط,ترزي"},"shop/tattoo":{"name":"صالون الوشم"},"shop/tea":{"name":"متجر شاي","terms":"محل بيع الشاي، شاي"},"shop/telecommunication":{"name":"متجر بيع بالتجزئة لشركة اتصالات","terms":"متجر بيع بالتجزئة لشركة اتصالات"},"shop/ticket":{"name":"بائع تذاكر","terms":"بائع التذاكر; تذاكر"},"shop/tiles":{"name":"متجر بلاط","terms":"محل بيع البلاط، بلاط، خزف,سيراميك"},"shop/tobacco":{"name":"محل بيع التبغ","terms":"تبغ، سيجارة"},"shop/tool_hire":{"name":"محل تأجير معدات","terms":"محل تأجير معدات"},"shop/toys":{"name":"متجر ألعاب","terms":"محل ألعاب"},"shop/trade":{"name":"محلات بيع مواد بالجملة","terms":"محلات البيع بالجملة,مبسط,مواد بناء"},"shop/travel_agency":{"name":"وكالة سفر","terms":"وكالة سفر"},"shop/trophy":{"name":"محل بيع جوائز ودروع ولوحات تذكارية","terms":"محل بيع جوائز ودروع ولوحات تذكارية"},"shop/tyres":{"name":"محل بيع إطارات","terms":"محل بيع إطارات,كفرات,بيع كفرات"},"shop/vacant":{"name":"محل شاغر"},"shop/vacuum_cleaner":{"name":"متجر المكنسات الكهربائية","terms":"متجر المكنسات الكهربائية; مكنسات كهربائية"},"shop/variety_store":{"name":"متجر التخفيضات","terms":"متجر التخفيضات ، متجر الخصم ، متجر الخصومات ، محلات كماليات رخيصة (أبو خمسة) ، منوعات وكماليات رخيصة ، محل كل شيء ، محل كماليات رخيصة","aliases":"متجر الخصم\nمتجر الخصومات\nمحلات كماليات رخيصة (أبو خمسة)\nمنوعات وكماليات رخيصة\nمحل كل شيء\nمحل كماليات رخيصة"},"shop/video":{"name":"محل بيع وتأجير الأفلام","terms":"محل بيع وتأجير الأفلام"},"shop/video_games":{"name":"متجر العاب الفيديو","terms":"متجر العاب الفيديو"},"shop/watches":{"name":"متجر الساعات اليدوية","terms":"متجر الساعات اليدوية"},"shop/water":{"name":"متجر مياه شرب","terms":"مياه صحية,مياه,ماء"},"shop/water_sports":{"name":"متجر رياضة مائية/سباحة","terms":"متجر رياضة مائية/سباحة"},"shop/weapons":{"name":"متجر أسلحة","terms":"متجر الأسلحة"},"shop/wholesale":{"name":"متجر بيع بالجملة","terms":"محل بيع بالجملة"},"shop/wigs":{"name":"متجر بيع الباروكات","terms":"متجر بيع الباروكات"},"shop/window_blind":{"name":"محل لبيع ستائر النوافذ","terms":"محل لبيع ستائر النوافذ"},"shop/wine":{"name":"متجر نبيذ"},"shop/yes":{"name":"متجر (نوع غير محدد)"},"telecom":{"name":"عنصر اتصالات"},"telecom/data_center":{"name":"مركز بيانات","terms":"مركز بيانات"},"telecom/exchange":{"name":"مقسم الاتصالات","terms":"مقسم الاتصالات"},"tourism":{"name":"عنصر سياحي"},"tourism/alpine_hut":{"name":"كوخ جبلي","terms":"كوخ جبلي,لودج جبلي"},"tourism/apartment":{"name":"شقة سياحية","terms":"شقة سياحية"},"tourism/aquarium":{"name":"حوض سمك","terms":"حوض سمك"},"tourism/artwork":{"name":"عمل فني","terms":"عمل فني"},"tourism/artwork/bust":{"name":"Bust"},"tourism/artwork/graffiti":{"name":"Graffiti"},"tourism/artwork/installation":{"name":"Art Installation"},"tourism/artwork/mural":{"name":"Mural"},"tourism/artwork/sculpture":{"name":"Sculpture"},"tourism/artwork/statue":{"name":"Statue"},"tourism/attraction":{"name":"معلم سياحي","terms":"معلم سياحي,مكان سياحي"},"tourism/camp_pitch":{"name":"Camp Pitch"},"tourism/camp_site":{"name":"مكان التخييم","terms":"مكان التخييم"},"tourism/camp_site/backcountry":{"name":"منطقة تخييم ريفية","terms":"منطقة تخييم ريفية"},"tourism/camp_site/group_only":{"name":"منطقة تخييم جماعي","terms":"منطقة تخييم جماعي"},"tourism/caravan_site":{"name":"موقف عربات كبيرة","terms":"موقف عربات كبيرة"},"tourism/chalet":{"name":"منتجع - شاليه","terms":"كوخ لقضاء العطلة,منتجع,شاليه,شالية"},"tourism/gallery":{"name":"رواق الفنون","terms":"رواق الفنون، متحف الفنون"},"tourism/guest_house":{"name":"دار الضيافة","terms":"دار الضيافة"},"tourism/hostel":{"name":"نزل / شقة مفروشة","terms":"نزل"},"tourism/hotel":{"name":"فندق","terms":"فندق"},"tourism/information":{"name":"معلومات سياحية","terms":"معلومات سياحية"},"tourism/information/board":{"name":"لوحة المعلومات","terms":"لوحة المعلومات"},"tourism/information/board/welcome_sign":{"name":"لافتة ترحيب","terms":"لافتة ترحيب"},"tourism/information/guidepost":{"name":"لافتة إرشادية","terms":"لافتة إرشادية,لوحة إرشادية,علامة إرشادية"},"tourism/information/map":{"name":"خريطة","terms":"خريطة"},"tourism/information/office":{"name":"مركز الزوار","terms":"مركز الزوار"},"tourism/information/route_marker":{"name":"لافتة مسار سياحي","terms":"لافتة مسار سياحي"},"tourism/information/terminal":{"name":"محطة معلومات","terms":"محطة معلومات"},"tourism/motel":{"name":"فندق صغير","terms":"فندق صغير"},"tourism/museum":{"name":"متحف","terms":"متحف,معرض"},"tourism/museum/history":{"name":"متحف تاريخي","terms":"متحف تاريخي"},"tourism/picnic_site":{"name":"موقع تنزه","terms":"موقع نزهة"},"tourism/theme_park":{"name":"حديقة ترفيه","terms":"حديقة ترفيه"},"tourism/trail_riding_station":{"name":"Trail Riding Station"},"tourism/viewpoint":{"name":"منظر سياحي","terms":"منظر سياحي"},"tourism/wilderness_hut":{"name":"Wilderness Hut"},"tourism/zoo":{"name":"حديقة حيوانات","terms":"حديقة الحيوانات"},"tourism/zoo/petting":{"name":"حديقة حيوان أليفة","terms":"حديقة حيوان أليفة"},"tourism/zoo/safari":{"name":"Safari Park"},"tourism/zoo/wildlife":{"name":"حديقة حيوانات برية","terms":"حديقة حيوانات برية"},"traffic_calming":{"name":"مخفف سرعة","terms":"مطب; مخفف; مهديء; مهدئ; ممهل; تخفيف; تمهيل; مطب صناعي"},"traffic_calming/bump":{"name":"مطب قصير لتخفيف السرعة","terms":"مطب صغير لتخفيف السرعة"},"traffic_calming/chicane":{"name":"منعطفات صناعية لتخفيف السرعة","terms":"منعطفات صناعية لتخفيف السرعة"},"traffic_calming/choker":{"name":"بروز هزاز للتنبية بتهدئة السرعة","terms":"بروز هزاز للتنبية بتهدئة السرعة"},"traffic_calming/cushion":{"name":"مطبات مركبات صغيرة","terms":"مطبات مركبات صغيرة"},"traffic_calming/dip":{"name":"منخفض لتهدئة السرعة ويسمح بعبور المياة","terms":"منخفض لتهدئة السرعة ويسمح بعبور المياة"},"traffic_calming/hump":{"name":"مطب طويل لتخفيف السرعة","terms":"مطب لتخفيف السرعة"},"traffic_calming/island":{"name":"جزيرة فاصلة بين مسارين طريق","terms":"جزيرة فاصلة بين مسارين طريق"},"traffic_calming/mini_bumps":{"name":"مطبات تخفيف سرعة صغيرة","terms":"مطبات تخفيف سرعة صغيرة"},"traffic_calming/rumble_strip":{"name":"مطبات قصيرة ومنخفضة متتالية على شكل شريط","terms":"مطبات قصيرة ومنخفضة متتالية على شكل شريط"},"traffic_calming/table":{"name":"مطب مرتفع وطويل لتخفيف السرعة بشكل جبري","terms":"مطب مرتفع وطويل لتخفيف السرعة بشكل جبري"},"traffic_calming/yes":{"name":"مخفف لحركة المرور (من نوع غير محدد)"},"traffic_sign":{"name":"إشارات المرور","terms":"إشارة مرورية,علامات المرور"},"traffic_sign/city_limit":{"name":"علامة حدود المدينة/البنيان","terms":"علامة حدود المدينة,علامة حدود البنيان"},"traffic_sign/maxspeed":{"name":"علامة الحد الأعلى لسرعة الطريق","terms":"علامة الحد الأعلى لسرعة الطريق"},"traffic_sign/variable_message":{"name":"علامة رسالة متغيرة","terms":"علامة رسالة متغيرة ، علامة ذات رسالة متغيرة ، علامة مرور ذات رسالة متغيرة"},"type/boundary":{"name":"حدود","terms":"حدود"},"type/boundary/administrative":{"name":"حدود إدارية","terms":"حدود إدارية,تقسيمات إدارية"},"type/connectivity":{"name":"ربط طرق ببعضها","terms":"ربط طرق ببعضها,اتصال طرق ببعضها"},"type/destination_sign":{"name":"لوحات ولافتات الوجهات","terms":"لوحات ولافتات الوجهات"},"type/enforcement":{"name":"إنفاذ ورصد تطبيق النظام (أجهزة توثيق مخالفات المرور)","terms":"إنفاذ النظام,أجهزة توثيق مخالفات المرور"},"type/enforcement/maxspeed":{"name":"إنفاذ ورصد حدود السرعة","terms":"إنفاذ ورصد حدود السرعة"},"type/multipolygon":{"name":"المضلعات المتعددة","terms":"متعدد الأضلاع"},"type/public_transport/stop_area_group":{"name":"مجموعة منطقة مواقف النقل العام","terms":"مجموعة منطقة مواقف النقل العام"},"type/restriction":{"name":"قيود الانعطاف","terms":"قيود"},"type/restriction/no_left_turn":{"name":"ممنوع الإنعطاف لليسار","terms":"ممنوع الإنعطاف لليسار"},"type/restriction/no_right_turn":{"name":"ممنوع الإنعطاف لليمين","terms":"ممنوع الإنعطاف لليمين"},"type/restriction/no_straight_on":{"name":"غير مسموح بالذهاب للأمام","terms":"غير مسموح بالذهاب للأمام"},"type/restriction/no_u_turn":{"name":"ممنوع الدوران (اليوترن)","terms":"ممنوع الدوران (اليوترن)"},"type/restriction/only_left_turn":{"name":"يسمح بالانعطاف لليسار فقط","terms":"يسمح بالانعطاف لليسار فقط"},"type/restriction/only_right_turn":{"name":"يسمح بالانعطاف لليمين فقط","terms":"يسمح بالانعطاف لليمين فقط"},"type/restriction/only_straight_on":{"name":"للأمام فقط","terms":"للأمام فقط"},"type/restriction/only_u_turn":{"name":"يسمح بالدوران فقط (اليوتيرن)","terms":"يسمح بالدوران فقط (اليوتيرن)"},"type/route":{"name":"مسار","terms":"مسار"},"type/route/aerialway":{"name":"طريق جوي","terms":"طريق جوي"},"type/route/bicycle":{"name":"مسار الدراجات","terms":"مسار الدراجات,مسارات الدراجات"},"type/route/bus":{"name":"مسار الحافلات","terms":"مسار باصات، حافلات"},"type/route/detour":{"name":"مسار طريق جانبي","terms":"مسار طريق جانبي"},"type/route/ferry":{"name":"مسار عبارة","terms":"مسار سفن,مسار عبارات"},"type/route/foot":{"name":"مسار مشي","terms":"مسار مشي"},"type/route/hiking":{"name":"مسارات المشي الخلوي (الهايكنق)","terms":"مسار المشاة، طريق للمشي,مسارات المشي الخلوي,مسار الهايكنق"},"type/route/horse":{"name":"مسار ركوب الخيل","terms":"مسار ركوب الخيل"},"type/route/light_rail":{"name":"مسار القطار الخفيف","terms":"قطار خفيف، ترام"},"type/route/monorail":{"name":"مسار سكة حديد أحادية","terms":"مسار سكة حديد أحادية"},"type/route/mtb":{"name":"مسار ركوب الدراجات الجبلية","terms":"مسار ركوب الدراجات الجبلية"},"type/route/pipeline":{"name":"مسار خط أنابيب","terms":"مسار خط أنابيب"},"type/route/piste":{"name":"مسار التزلج","terms":"تزلج"},"type/route/power":{"name":"مسار خط كهربائي","terms":"مسار الطاقة,مسار الكهرباء"},"type/route/railway":{"name":"مسار السكة الحديدية","terms":"مسار السكة الحديدية,مسار سكة القطار"},"type/route/road":{"name":"مسار طريق","terms":"مسار الطريق"},"type/route/subway":{"name":"مسار مترو","terms":"مسار مترو"},"type/route/train":{"name":"مسار قطار","terms":"مسار القطار"},"type/route/tram":{"name":"مسار ترام","terms":"مسار ترام"},"type/route/trolleybus":{"name":"مسار حافلات كهربائية","terms":"مسار حافلات كهربائية"},"type/route_master":{"name":"مسار رئيسي","terms":"مسار رئيسي"},"type/site":{"name":"موقع","terms":"موقع"},"type/waterway":{"name":"مجرى مائي","terms":"مجرى مائي، ممر مائي"},"waterway":{"name":"عنصر مجري مائي"},"waterway/boatyard":{"name":"حوض بناء سفن","terms":"حوض بناء سفن; ورشة"},"waterway/canal":{"name":"قناة","terms":"قناة"},"waterway/canal/lock":{"name":"هويس القناة","terms":"هويس القناة"},"waterway/dam":{"name":"سد","terms":"سد"},"waterway/ditch":{"name":"مصرف خندقي","terms":"خندق"},"waterway/dock":{"name":"رصيف بحري رطب/رصيف بحري جاف","terms":"رصيف بحري رطب/رصيف بحري جاف"},"waterway/drain":{"name":"مصرف مياه","terms":"مصرف مياه"},"waterway/fish_pass":{"name":"مجرى مائي لمرور الأسماك","terms":"مجرى مائي لمرور الأسماك"},"waterway/fuel":{"name":"محطة وقود بحري","terms":"وقود بحري"},"waterway/lock_gate":{"name":"هويس (حوض نقل السفن من مستوى لمستوى)","terms":"هويس (حوض نقل السفن من مستوى لمستوى)"},"waterway/milestone":{"name":"علامة مسافة المجرى المائي","terms":"علامة مسافة المجرى المائي"},"waterway/river":{"name":"نهر / مجرى مائي واسع","terms":"نهر"},"waterway/sanitary_dump_station":{"name":"للتخلص من مخلفات مرحاض السفن","terms":"التخلص من مرحاض البحر"},"waterway/stream":{"name":"مجرى مائي / شعيب","terms":"مجرى، جدول مائي,شعيب,وادي"},"waterway/stream_intermittent":{"name":"مجرى متقطع ولا يجري بشكل دائم","terms":"مجرى متقطع"},"waterway/tidal_channel":{"name":"مجرى مائي طبيعي للمد والجزر","terms":"مجرى مائي طبيعي للمد والجزر"},"waterway/water_point":{"name":"مياه الشرب البحرية","terms":"مياه الشرب البحرية"},"waterway/waterfall":{"name":"شلال","terms":"شلال"},"waterway/weir":{"name":"هدار - سد صغير","terms":"هدار، سد صغير"}}}}}
\ No newline at end of file
+{"ar":{"presets":{"categories":{"category-barrier":{"name":"عناصر الحواجز"},"category-building":{"name":"عناصر المباني"},"category-golf":{"name":"عناصر الجولف"},"category-landuse":{"name":"عناصر الأراضي"},"category-natural":{"name":"عناصر طبيعية"},"category-path":{"name":"مسارات"},"category-playground":{"name":"معدات/أدوات ملاعب الأطفال"},"category-rail":{"name":"سكك حديدية"},"category-restriction":{"name":"عناصر للقيود والمحددات"},"category-road_major":{"name":"طرق رئيسية"},"category-road_minor":{"name":"طرق فرعية"},"category-road_service":{"name":"طرق خدمة"},"category-route":{"name":"عناصر المسارات"},"category-utility":{"name":"عناصر الخدمات"},"category-water":{"name":"مسطحات مائية"},"category-waterway":{"name":"مجاري مائية"}},"fields":{"access":{"label":"وصول مسموح","options":{"customers":{"description":"مخصص فقط للعملاء المتوجهين إلى المكان","title":"للعملاء - الزبائن"},"designated":{"description":"يسمح بالوصول حسب الارشادات او القوانين المحلية","title":"مخصص/محدد"},"destination":{"description":"يسمح بالوصول إلى الوجهة المقصودة والمحددة في المكان دون سائر المكان","title":"الوجهة"},"dismount":{"description":"يسمح بالوصول ولكن يجب على السائق الترجل","title":"مترجل"},"no":{"description":"الوصول غير مسموح لعامة الناس","title":"محظور"},"permissive":{"description":"الوصول مسموح إلى أن يحين الوقت الذي يلغي فيه المالك الإذن بذلك","title":"مرخص"},"permit":{"description":"لا يسمح بالوصول إلا برخصة أو تصريح ساري المفعول","title":"تصريح"},"private":{"description":"لا يسمح بالوصول إلا بإذن من المالك على أساس فردي","title":"خاص"},"unknown":{"description":"صلاحية السماح بالوصول غير معروفة أو غير واضحة","title":"غير معروفة"},"yes":{"description":"الوصول مسموح طبقا للقانون ; حق المرور","title":"مسموح"}},"placeholder":"غير محدد","terms":"الوصول المسموح به,السماح بالدخول,يسمح بالدخول","types":{"access":"الكل","bicycle":"دراجات هوائية","foot":"بالقدم","horse":"أحصنة","motor_vehicle":"سيارات"}},"access_aisle":{"label":"النوع"},"access_simple":{"label":"الوصول المسموح به","options":{"customers":"للعملاء فقط","no":"لا شيء","permissive":"مسموح من المالك","permit":"بتصريح فقط","private":"خاص","unknown":"غير معروفة","yes":"عام"},"terms":"الوصول المسموح به,السماح بالدخول,يسمح بالدخول"},"activity":{"label":"نشاط","options":{"bicycle":"ركوب الدراجات","hiking":"المشي الخلوي (هايكنج)","horse":"ركوب الخيل","mtb":"ركوب الدراجات في الجبل","ski":"التزحلق"}},"addr/interpolation":{"label":"النوع","options":{"all":"الكل","alphabetic":"أبجدي","even":"زوجي","odd":"فردي"}},"address":{"label":"العنوان","placeholders":{"block_number":"رقم المربع/البلوك","block_number!jp":"رقم المربع/البلوك","city":"المدينة","city!cn":"المدينة/المحافظة/الأمة أو التحالف","city!jp":"مدينةكبيرة/مدينة/قرية/جناح طوكيو الخاص","city!vn":"مدينة /بلدة","conscriptionnumber":"123","country":"الدولة","county":"المقاطعة/الإقليم","county!jp":"المديرية/المركز","district":"المديرية/المركز","district!cn":"مديرية/مقاطعة/شعار","district!vn":"الدائرة/المدينة/المديرية أو المركز","floor":"الطابق/الدور","hamlet":"قرية صغيرة/هجرة","housename":"اسم المنزل","housenumber":"123","housenumber!jp":"رقم المبنى/ رقم القطعة","neighbourhood":"حي","place":"المكان","postcode":"الرمز البريدي","province":"المحافظة","province!cn":"المحافظة/البلدية/AR/SAR","province!jp":"العمالة (تقسيم إداري)","quarter":"مربع","state":"ولاية","street":"شارع","subdistrict":"مديرية فرعية","subdistrict!vn":"جناح/جمعية/بلدة صغيرة","suburb":"ضاحية","town":"مدينة","unit":"وحدة"},"terms":"العنوان,عنوان"},"admin_level":{"label":"المستوى الإداري"},"advertising":{"label":"النوع"},"aerialway":{"label":"النوع"},"aerialway/access":{"label":"الوصول","options":{"both":"كلاهما","entry":"مدخل","exit":"مخرج"}},"aerialway/bubble":{"label":"فقاعة"},"aerialway/capacity":{"label":"السعة (لكل ساعة)","placeholder":"500، 2500، 5000..."},"aerialway/duration":{"label":"المدة (بالدقائق)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"مسخن"},"aerialway/occupancy":{"label":"عدد المقاعد","placeholder":"...8 ,4 ,2"},"aerialway/summer/access":{"label":"السماح بالوصول (في الصيف)","options":{"both":"كلاهما","entry":"مدخل","exit":"مخرج"}},"aeroway":{"label":"النوع"},"agrarian":{"label":"المنتجات"},"air_conditioning":{"label":"تكييف هواء","terms":"تكييف الهواء,التكييف,التبريد"},"aircraft/type":{"label":"النوع","options":{"helicopter":"هليكوبتر","military":"عسكري"}},"alt_name":{"label":"الاسم البديل"},"amenity":{"label":"النوع"},"animal_boarding":{"label":"للحيوانات"},"animal_breeding":{"label":"للحيوانات"},"animal_shelter":{"label":"للحيوانات"},"archaeological_site":{"label":"نوع","options":{"baths":"حمامات","city":"مدينة تاريخية","enclosure":"سياج","fortification":"جدران دفاعية للتحصين","hut_circle":" دائرة الأكواخ","megalith":"ميغاليث/جندل/مغليطيا (آثار صخرية)","necropolis":"مقبرة كبيرة قديمة","petroglyph":"نحت صخري","roman_circus":"سيرك روماني","roman_villa":"فيلا رومانية","settlement":"مستوطنة تاريخية","tumulus":"جثوة"}},"architect":{"label":"مهندس معماري","terms":"مهندس معماري,مصمم"},"area/highway":{"label":"النوع"},"armrest":{"label":" مساند الأذرع","options":{"no":"بدون مساند للذراعين","undefined":"غير معروفة","yes":"مسند ذراع واحد أو أكثر"}},"artist":{"label":"فنان/رسام"},"artwork_type":{"label":"النوع","options":{"bust":"صدر","graffiti":"جدارية","installation":"Art Installation","mosaic":"فسيفساء","mural":"جدار","painting":"لوحة","relief":"نقش بارز، عمل نحت بارز","sculpture":"منحوتة","statue":"تمثال","stone":"حجر معالج فنياً، حجر مزخرف","tilework":"أعمال البلاط، تزيين بالبلاط"}},"ascent":{"label":"إجمالي الصعود","terms":"إجمالي الصعود"},"athletics_pitch":{"label":"حدث","options":{"discus_throw":"نقاش","hammer_throw":"رمي المطرقة","high_jump":"الوثب العالي","javelin_throw":" رمي الرمح","long_jump":"الوثب الطويل","pole_vault":"القفز بالزانة","shot_put":"دفع الجلة","triple_jump":"الوثب الثلاثي"}},"athletics_track":{"label":"حدث","options":{"javelin_throw":" رمي الرمح","long_jump":"الوثب الطويل","pole_vault":"القفز بالزانة","running":"جري","sprint":"العدو السريع","steeplechase":"سباق الموانع","triple_jump":"الوثب الثلاثي"}},"atm":{"label":"ماكينة صرافة آلية"},"attraction":{"label":"النوع","options":{"alpine_coaster":"مزلقة جبلية","amusement_ride":"Amusement Ride","animal":"حظيرة حيوانات","big_wheel":"عجلة فيريس","bumper_car":"Bumper Cars","bungee_jumping":"Bungee Jumping","carousel":"دوامة خيل","dark_ride":"Dark Ride","drop_tower":"Drop Tower Ride","kiddie_ride":"Kiddie Ride","log_flume":"Log Flume","maze":"متاهة","pirate_ship":"Pirate Ship Ride","river_rafting":"River Rapids Ride","roller_coaster":"السفينة الدوارة","summer_toboggan":"Summer Toboggan","swing_carousel":"Swing Carousel","train":"Tourist Train","water_slide":"التزلق على الماء"}},"automated":{"label":"آلي"},"baby_feeding":{"label":"منطقة رضاعة الأطفال","options":{"no":"لا شيء","room":"غرفة مخصصة","yes":"مساحة محددة"},"terms":"منطقة رضاعة الأطفال,منطقة تغيير حفائظ الأطفال,منطقة تلبيس الأطفال,منطقة ترضيع الأطفال"},"baby_seat":{"label":"مقعد طفل"},"backcountry":{"label":"منطقة تخييم بدون مرافق","terms":"منطقة تخييم بدون مرافق,مخيمات,تخييم"},"backrest":{"label":"كرسي بمسند للظهر"},"bar":{"label":"بار"},"barrier":{"label":"النوع","options":{"block":" كتلة كبيرة","bollard":"عمود حاجز","cattle_grid":"شبكة أرضية حاجزة للماشية","chain":"سلسلة","city_wall":"جدار المدينة","cycle_barrier":"حاجز دراجات هوائية","ditch":"مصرف خندقي","entrance":"مدخل","fence":"سياج","gate":"بوابة","guard_rail":"حاجز حديدي للحماية من الاصطدام","hedge":"حاجز نباتي","height_restrictor":"حاجز لتقييد الارتفاع","jersey_barrier":"حاجز خرساني - نيوجيرسي","kerb":"منحدر الرصيف المؤدي للشارع","kissing_gate":"بوابة لا تسمح بعبور الماشية","lift_gate":"بوابة حاجز","retaining_wall":"جدار تثبيت للتربة","stile":"درج يسمح للبشر بالمرور فوق السياج","swing_gate":"بوابة عامودية جانبية","toll_booth":"كشك تحصيل رسوم","turnstile":"بوابة دوارة لعبور شخص واحد","wall":"جدار"}},"barrier_planter":{"label":"حاجز","options":{"planter":"نعم","undefined":"لا"}},"basin":{"label":"النوع","options":{"detention":"احتجاز","evaporation":"تبخر","infiltration":"تسلل","retention":"حوض احتجاز مياه الأمطار الصناعي "}},"bath/open_air":{"label":"في الهواء الطلق/خارج البناء"},"bath/type":{"label":"مخصوص","options":{"hammam":"حمام","hot_spring":"العين الحمئة / الينبوع الساخن","lake":"بحيرة","onsen":"ينابيع ساخنة (يابانية)","thermal":"حمام حراري"}},"beauty":{"label":"خدمات","options":{"cosmetics":"مستحضرات التجميل","hair_removal":"مزيل شعر","nails":"مانيكير/باديكير","skin_care":"العناية بالجلد","spa":"منتجع اليوم","tanning":"تسمير","waxing":"إزالة الشعر بالشمع"}},"bench":{"label":"مقعد","terms":"مقعد,مقعد طويل"},"bicycle_parking":{"label":"النوع","options":{"building":"في مبنى","handlebar_holder":"حامل المقود","lockers":"خزائن فردية","shed":"سقيفة مغلقة","stands":"حامل (يدعم إطار الدراجة)","wall_loops":"مقود العجلات (يدعم العجلة فقط)"}},"bicycle_road":{"label":"شارع الدراجات","options":{"undefined":"لا","yes":"نعم"}},"bike_ride":{"label":"اصطفاف وركوب","terms":"اصطفاف وركوب,ركن الدراجة والركوب"},"bin":{"label":"سلة النفايات","terms":"سلة المهملات,سلة القمامة,قمامة,مهملات,زبالة"},"blind":{"label":"وصول/دخول المكفوفين","options":{"limited":"محدود","no":"لا","yes":"نعم"},"terms":"وصول المكفوفين,وصول العميان,دخول المكفوفين,دخول العميان"},"blood_components":{"label":"مكونات الدم","options":{"plasma":"بلازما","platelets":"صفائح دموية","stemcells":"عينات خلايا جذعية","whole":"كل الدم"}},"board_type":{"label":"النوع","options":{"art":"فن","astronomy":"علم الفلك","geology":"جيولوجيا","history":"تاريخ","nature":"الطبيعة","notice":"لوحة الإعلانات والملصقات","plants":"النباتات","welcome_sign":"لافتة ترحيب","wildlife":"حيوانات برية"}},"bollard":{"label":"النوع","options":{"fixed":"حاجز ثابت","flexible":"حاجز مرن","foldable":"حاجز قابل للطي","removable":"حاجز قابل للإزالة","rising":"حاجز قابل للارتفاع"}},"booth":{"label":"كشك/دكان","terms":"كشك,سقيفة,حجرة صغيرة"},"bottle":{"label":"تعبئة القوارير"},"boules":{"label":"النوع"},"boundary":{"label":"النوع"},"branch_brand":{"label":"اسم الفرع","terms":"الفرع,الاسم الفرعي"},"brand":{"label":"العلامة التجارية","terms":"العلامة التجارية,الماركة,البراند"},"bridge":{"label":"النوع","placeholder":"الافتراضي"},"bridge/support":{"label":"النوع"},"bridge_combo":{"label":"النوع","options":{"aqueduct":"قناة مياه على جسر","boardwalk":"ممر خشبي","movable":"جسر متحرك"}},"building":{"label":"المبنى","options":{"allotment_house":" الحدائق/المزارع المحصصة","apartments":"مبنى شقق سكنية","barn":"حظيرة","boathouse":"مبنى تخزين القوارب","bungalow":"منزل بطابق واحد","bunker":"ملجأ محصّن","cabin":"كوخ","carport":"مرآب/مظلة سيارات","cathedral":"مبنى كاتدرائية","chapel":"معبد نصراني","church":"مبنى كنيسة","civic":"مبنى مرافق مدنية","college":"مبنى كلية","commercial":"مبني تجاري","construction":"مبنى تحت الإنشاء","cowshed":"سقيفة/مظلة أبقار","detached":"منزل منفصل","dormitory":"سكن جامعي","farm":"بيت ريفي","farm_auxiliary":"مبنى مزرعة","garage":"مرآب/جراج","garages":"جراجات","ger":"منزل اليورت","grandstand":"مُدَرج","greenhouse":"محمية زراعية","hangar":"حظيرة طائرات","hospital":"مبنى مستشفى","hotel":"مبنى فندق","house":"منزل","houseboat":"بيت عائم","hut":"كوخ بدائي/عشة","industrial":"مبنى صناعي","kindergarten":"مبنى حضانة / روض","manufacture":"مبنى إنتاج صناعي","mosque":"مبنى مسجد","office":"مبنى مكاتب إدارية","outbuilding":"ملحق","pavilion":"مبنى مرافق رياضية","public":"مبنى عام","residential":"مبنى سكني","retail":"مبنى بيع بالتجزئة","riding_hall":"حلبة ركوب الخيل","roof":"سقف/سطح","ruins":"مبنى أثري/مهجور/متهدم","school":"مبنى مدرسة","semidetached_house":"مبنى شبه منفصل","service":"مبنى خدمات (محولات، آلات،مضخات..الخ)","shed":"سقيفة(مستودع/ورشة عمل صغيرة)","stable":"إسطبل","stadium":"مبنى الملعب","sty":"Pigsty","synagogue":"Synagogue Building","temple":"مبنى المعبد","terrace":"صف منازل متلاصقه","train_station":"مبنى محطة القطار","transportation":"مبنى للنقل العام","university":"مبنى جامعي","warehouse":"مستودع"},"terms":"المبنى,البناية,العمارة,مبنى"},"building/flats":{"label":"الوحدات","placeholder":"2, 4, 6, 8..."},"building/levels":{"label":"المستويات","placeholder":"2, 4, 6...","terms":"المستويات,الطوابق,الأدوار"},"building/levels/underground":{"label":"مستويات تحت الأرض","placeholder":"2, 4, 6...","terms":"مستويات تحت الأرض,تحت سطح الأرض,جوف الأرض,مدفون"},"building/material":{"label":"مادة البناء","terms":"مواد البناء,نوع مواد البناء,نوع البناية"},"building/part":{"label":"جزء من مبنى"},"building/prefabricated":{"label":"مسبقة الصنع","terms":"مصنوعة من قبل"},"bunker_type":{"label":"النوع"},"button_operated":{"label":"زر الاتصال"},"cables":{"label":"الكابلات","placeholder":"1, 2, 3..."},"cai_scale-IT":{"label":"صعوبة مسار المشي لمسافات طويلة (نادي جبال الألب الإيطالي)","options":{"E":"E: لممارسي رياضة المشي لمسافات طويلة","EAI":"EAI: المشي لمسافات طويلة في ظروف ثلجية","EE":"EE: للمتنزهين الخبراء","EEA":"EEA: للمتنزهين الخبراء بالمعدات","T":"T: سياحي"},"placeholder":"T, E, EE, …","terms":"صعوبة مسار المشي لمسافات طويلة (نادي جبال الألب الإيطالي)"},"camera/direction":{"label":"الاتجاه (الدرجات في اتجاه عقارب الساعة)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"حامل كاميرا"},"camera/type":{"label":"نوع الكاميرا","options":{"dome":"قبة","fixed":"ثابتة","panning":"ثابتة بمحور للدوران"}},"camp_site":{"label":"النوع"},"capacity":{"label":"السعة","placeholder":"50, 100, 200...","terms":"السعة,القدرة الاستيعابية"},"capacity/caravans":{"placeholder":"10، 20، 50..."},"capacity/disabled_parking":{"label":"مساحات للمعاقين/ذوي الاحتياجات الخاصة","placeholder":"1, 2, 3..."},"capacity/persons":{"label":"السعة (بالأشخاص)","placeholder":"50، 100، 200..."},"capacity/tents":{"label":"السعة (للخيام)","placeholder":"10، 20، 50..."},"capacity_parking":{"label":"مجموع المساحات","placeholder":"10, 20, 30..."},"capacity_volume":{"label":"السعة (متر مكعب)","placeholder":"50, 100, 200..."},"cash_in":{"label":"ودائع"},"castle_type":{"label":"النوع","options":{"castrum":"طريق روماني","defensive":"قلعة دفاعية","fortress":"حصن تاريخي","hillfort":"حصن التلال","kremlin":"الكرملين","manor":"قصر سكني قديم/تاريخي","palace":"قصر","shiro":"شيرو - قلعة يابانية","stately":"منزل فخم"}},"changing_table":{"label":"طاولة تغيير الحفاضات"},"charge_fee":{"label":"مبلغ الرسوم","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"مبلغ الرسوم"},"charge_toll":{"label":"مبلغ الرسوم","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"مبلغ الرسوم,مبلغ الإتاوة,مبلغ التحصيل"},"check_date":{"label":"تاريخ آخر فحص","placeholder":"YYYY-MM-DD"},"circumference":{"label":"محيط (على ارتفاع الصدر)","placeholder":"1 متر, 20 سم, 30\"…","terms":"محيط الدائرة (على ارتفاع الصدر)"},"climbing/length":{"label":"الطول (بالأمتار)","terms":"العرض (بالمتر)"},"climbing/trad":{"label":"التسلق التقليدي"},"clothes":{"label":"ملابس","options":{"hats":"قبعات","suits":"محل بدل","swimwear":"ملابس سباحة","underwear":"الملابس الداخلية","workwear":"ملابس العمل"},"terms":"ملابس,ثياب,كسوة"},"club":{"label":"النوع"},"collection_times":{"label":"وقت الاستلام"},"collector":{"label":"العناصر","options":{"coins":"عملات معدنية","stamps":"طوابع بريدية"}},"colour":{"label":"اللون","terms":"اللون"},"comment":{"label":"التعليق على التغييرات","placeholder":"وصف موجز لمساهماتك وتعديلاتك (مطلوب)"},"communication_multi":{"label":"أنواع الاتصال","terms":"أنواع الاتصال"},"community_centre":{"label":"النوع","options":{"youth_centre":"مركز الشباب"}},"connectivity":{"label":"الاتصال/الالتقاء"},"construction":{"label":"النوع"},"consulate":{"label":"النوع","options":{"yes":"قنصلية"}},"consulting":{"label":"خبرات/استشارات"},"contact/webcam":{"label":"رابط كاميرا الويب","placeholder":"http://example.com"},"content":{"label":"المحتوى"},"conveying":{"label":"اتجاه الحركة","options":{"backward":"للخلف","forward":"للأمام","reversible":"يقبل عكس الاتجاه حسب الظروف المرورية"}},"conveying_escalator":{"label":"سلم كهربائى"},"country":{"label":"الدولة"},"country_flag":{"label":"علم الدولة"},"couplings":{"label":"وصلات","placeholder":"1, 2, 3..."},"covered":{"label":"مغطى","terms":"مغطى"},"covered_no":{"options":{"no":"لا","undefined":"يفترض أن يكون لا","yes":"نعم"}},"craft":{"label":"النوع","options":{"agricultural_engines":"ميكانيكي محركات زراعية","basket_maker":"صناعة وحياكة السِلال","beekeeper":"مربي النحل","blacksmith":"حدّاد","boatbuilder":"بنّاء السفن","bookbinder":"تغليف وتجليد الكتب","brewery":"مصنع الجعة","builder":"منشئ","carpenter":"نجار","carpet_layer":"فرش وتركيب المفروشات","caterer":"تموين أو متعهد إعاشة","chimney_sweeper":"منظف مداخن","cleaning":"خدمات التنظيف","clockmaker":"ساعاتي","confectionery":"حلواني","distillery":"Distillery","dressmaker":"خياط نسائي","electrician":"كهربائي","floorer":"مبلط/تبليط/أرضيات","gardener":"بستاني","glaziery":"تركيب وإصلاح الزجاج","handicraft":"حرف يدوية","insulation":"تركيب عوازل حرارية","jeweller":"صائغ مجوهرات","joiner":"نجار","key_cutter":"قص ونسخ مفاتيح","locksmith":"محل بيع أقفال ونسخ مفاتيح","metal_construction":"صناعات المعادن والمواد الصلبة","painter":"دهّان","parquet_layer":"تركيب أرضيات خشبية (باركيه)","photographer":"Photographer","photographic_laboratory":"مختبر التصوير","plasterer":"جصاص (أعمال الجبس)","plumber":"سباكة","pottery":"صناعة وبيع الفخار","rigger":"الصواري والحبال والأشرعة","roofer":"بناء الأسقف والقرميد","saddler":"صانع سراج","sailmaker":"صانع أشرعة","sawmill":"منشرة","scaffolder":"تركيب وتأجير السقالة","sculptor":"نحّات","shoemaker":"إسكافي/ صانع الأحذية","signmaker":"خطاط ومصمم لوحات تجارية","stonemason":"قطع ونحت وتشكيل الحجارة","tailor":"خياط","tiler":"مبلط","tinsmith":"سمكري","upholsterer":"منجد","watchmaker":"ساعاتي","window_construction":"تركيب النوافذ","winery":"Winery"}},"crane/type":{"label":"نوع الرافعة","options":{"floor-mounted_crane":"رافعة مثبتة على الأرض","portal_crane":"رافعة جسرية","travel_lift":"رافعة متحركة"}},"crop":{"label":"محاصيل","options":{"asparagus":"نبات الهليون","barley":"شعير","beet":"بنجر","cassava":"بفرة","coffee":"قهوة","cotton":"قطن","cranberries":"توت بري","fast_growing_wood":"تنسيغ قصير الأجل","flowers":"زهور","grape":"عنب","grass":"عشب","hop":"جنجلة","lavender":"خزامي","maize":"ذرة","potato":"بطاطس","rape":"لفت","rice":"أرز","soy":"فول الصويا","strawberry":"فراولة","sugar_beet":"شمندر سكري","sugarcane":"قصب السكر","sunflower":"تباع الشمس","tea":"شاي","tobacco":"Tobacco","vegetable":"خضروات","wheat":"قمح"}},"crossing":{"label":"النوع","options":{"traffic_signals":"معبر بإشارات مرور","uncontrolled":"فقط علامات الطريق","unmarked":"لا توجد علامات طريق أو إشارات مرور"}},"crossing/barrier":{"label":"ذراع الحاجز","options":{"double_half":"مزدوج لكل نصف","full":"كامل","half":"النصف","no":"لا يوجد","yes":"نعم"}},"crossing/bell":{"label":"جرس"},"crossing/island":{"label":"جزيرة مشاة بين طريقين"},"crossing/light":{"label":"إضاءات"},"crossing/markings":{"label":"علامات المعابر","options":{"dashes":"خطوط عرضية متقطعة","dots":"خطوط عرضية منقطة","ladder":"سلم مع قضبان طولية","ladder:paired":"سلم مع قضبان طولية مقترنة","ladder:skewed":"سلم مع قضبان قطرية","lines":"خطوط عرضية","lines:paired":"خطوط عرضية مزدوجة","no":"لايوجد به علامات","pictograms":"الرسوم التوضيحية المرسومة","surface":"على السطح فقط","yes":"توجد علامات بطريقة غير مباشرة","zebra":"قضبان طولية","zebra:bicolour":"قضبان طولية بألوان متناوبة","zebra:double":"الثلاثي الرباعي","zebra:paired":"قضبان طولية مقترنة"},"terms":"علامات المشاة,علامات المرور"},"crossing_raised":{"label":"مرتفع","options":{"table":"نعم","undefined":"لا"}},"cuisine":{"label":"المأكولات","options":{"african":"إفريقي","american":"أمريكي","arab":"عربي","argentinian":"ارجنتيني","asian":"آسيوي","bagel":"كعك بايقل","balkan":"البلقان","barbecue":"شواء/مشاوي","bavarian":"البافاريه","brazilian":"برازيلي","bubble_tea":"شاي الفقاعات","burger":"برجر","cake":"كيك","caribbean":"كاريبي","chicken":"دجاج","chinese":"صيني","coffee_shop":"مقهى","crepe":"كريب (بان كيك رقيق)","curry":"كاري","dessert":"حلويات بعد الطعام","donut":"دونات","filipino":"فلبيني","fish":"سمك","french":"فرنسي","georgian":"الجورجية","german":"ألماني","greek":"يوناني","hot_dog":"هوت دوج","ice_cream":"بوظة/آيسكريم","indian":"هندي","indonesian":"أندونيسي","italian":"إيطالي","japanese":"ياباني","juice":"عصير","kebab":"كباب","korean":"كوري","lebanese":"لبناني","malaysian":"ماليزي","mediterranean":"البحر الابيض المتوسط","mexican":"مكسيكي","moroccan":"مغربي","noodle":"المعكرونة","pancake":"بان كيك (فطيرة مسطحة)","pasta":"باستا","pastry":"متجر المعجنات والحلويات","persian":"فارسي","peruvian":"بيروفي","pizza":"بيتزا","polish":"بولندي","portuguese":"برتغالي","ramen":"رامن","regional":"شعبي/محلي","russian":"روسي","salad":"سلطة","sandwich":"خبز/ساندويتش","sausage":"سجق","seafood":"مأكولات بحرية","soba":"سوبا","spanish":"أسباني","steak_house":"شرائح لحم (ستيك)","sushi":"سوشي","taiwanese":"تايواني","tapas":"تاباس","tea":"شاي","thai":"تيلاندي","turkish":"تركي","ukrainian":"الأوكرانية","vietnamese":"فيتنامي"},"terms":"نوع الطعام,أنواع الطعام,الأطباق,المأكولات,الأطعمة"},"currency_multi":{"label":"أنواع العملات","terms":"أنواع العملات"},"cutting":{"label":"النوع","placeholder":"الافتراضي"},"cycle_barrier":{"label":"النوع","options":{"diagonal":"قطري","double":"مزدوج","single":"فردي","triple":"ثلاثية"}},"cycle_barrier/installation":{"label":"التنصيب","options":{"fixed":"ثابتة","removable":"قابل للإزالة"}},"cycle_network":{"label":"الشبكة"},"cycleway":{"label":"مسارات الدراجات","options":{"lane":{"description":"مسار دراجات مفصول عن السيارات بخط مطبوع"},"no":{"description":"لا يوجد مسار للدراجات","title":"لا شيء"},"separate":{"description":"للإشارة إلى أنه قد تم تخطيط مسار الدراجات باعتباره شكلًا هندسيًا منفصلاً"},"share_busway":{"description":"مسار درجات مشتركة مع مسار الحافلات"},"shared_lane":{"description":"مسار دراجات غير مفصول عن حركة مرور السيارات"},"track":{"description":"مسار دراجات مفصول عن السيارات بحاجز","title":"مسار الدراجة"}},"terms":"مسارات الداراجات,مسارات الدراجات الهوائية","types":{"cycleway:left":"الجانب الأيسر","cycleway:right":"الجانب الأيمن"}},"dance/style":{"label":"أساليب الرقص"},"date":{"label":"التاريخ"},"defibrillator/location":{"label":"وصف مكانه"},"delivery":{"label":"توصيل طلبات","terms":"توصيل طلبات,تسليم طلبات"},"denomination":{"label":"المذهب/الطائفة","terms":"المذهب/الطائفة,المذهب,الطائفة"},"denotation":{"label":"علامة/معلم","terms":"دلالة"},"departures_board":{"label":"لوحة المغادرين/القادمين","options":{"no":"لا يوجد","realtime":"الوقت الفعلي","timetable":"جدول المواعيد","yes":"نعم"}},"deposit/trolley":{"label":"إيداع"},"depot":{"label":"النوع"},"depth":{"label":"العمق (متر)"},"descent":{"label":"إجمالي النزول","terms":"إجمالي النزول"},"description":{"label":"الوصف","terms":"وصف,وصوف,أوصاف,وصف إضافي"},"design":{"label":"التصميم"},"destination":{"label":"الوجهة الرئيسية"},"destination/ref":{"label":"أرقام طُرق الوجهة"},"destination/symbol":{"label":"رموز الوجهة"},"destination_waterway":{"label":"الوجهة"},"devices":{"label":"الأجهزة","placeholder":"1, 2, 3..."},"diameter":{"label":"القطر","placeholder":"5مم(mm)، 10سم(cm)، 15 بوصة(in)","terms":"قطر الدائرة"},"diameter_crown":{"label":"قطر التاج","placeholder":"4 متر, 9', …","terms":"قطر التاج"},"diet_multi":{"label":"النمط الغذائي","options":{"gluten_free":"خالي من الجلوتين (القمح والشعير ..الخ)","halal":"حلال (مطابق للشريعة الإسلامية)","kosher":"كوشر (لليهود)","lactose_free":"خالي من اللاكتوز (الحساسية من الحليب)","pescetarian":"نباتيو الأسماك","vegan":"نباتي","vegetarian":"نباتي ويأكل مشتقات الحيوانات"},"terms":"أنواع النظام الغذائي,النمط الغذائي,الحمية الغذائية,المحظورات الغذائية"},"diplomatic":{"label":"النوع","options":{"consulate":"قنصلية","embassy":"سفارة","liaison":"مكتب اتصال دبلوماسي"}},"diplomatic/services":{"label":"الخدمات"},"direction":{"label":"الاتجاه (بالدرجات في اتجاه عقارب الساعة)","placeholder":"45, 90, 180, 270","terms":"الاتجاه (بالدرجات في اتجاه عقارب الساعة)"},"direction_cardinal-US-CA-NZ":{"label":"الاتجاه","options":{"east":"شرقاً","north":"شمالاً","south":"جنوباً","west":"غرباً"},"terms":"الاتجاه,الوجهة"},"direction_clock":{"label":"الاتجاه","options":{"anticlockwise":"عكس عقارب الساعة","clockwise":"باتجاه عقارب الساعة"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"label":"الاتجاه يتأثر","options":{"backward":"للخلف","both":"كلاهما / الكل","forward":"للأمام"},"terms":"الاتجاه المتأثر"},"dispensing":{"label":"يصرف أدوية بوصفة طبية"},"display":{"label":"نوع العرض","options":{"analog":"تناظري","digital":"رقمي","sundial":"مزولة","unorthodox":"غير تقليدي"}},"distance":{"label":"المسافة","terms":"المسافة,المدى,الطول"},"disused/amenity":{"label":"النوع"},"disused/railway":{"label":"النوع"},"disused/shop":{"label":"النوع"},"dock":{"label":"النوع"},"dog":{"label":"كلاب","options":{"leashed":"مقيديين فقط","no":"غير مسموح","yes":"مسموح"},"terms":"كلاب"},"door":{"label":"باب"},"door_type":{"label":"النوع"},"drink_multi":{"label":"المشروبات"},"drinking_water":{"label":"صالح للشرب","terms":"صالح للشرب"},"drinking_water_available":{"label":"تتوفر مياه قابلة للشرب","terms":"تتوفر مياه قابلة للشرب"},"drive_through":{"label":"ممر الطلب بالسيارة","terms":"ممر الطلب بالسيارة"},"duration":{"label":" المدة","placeholder":"00:00","terms":"المدة"},"ele":{"label":"الارتفاع (متر)","terms":"الارتفاع (متر)"},"electrified":{"label":"الكهربية","options":{"contact_line":"كيابل معلقة بأبراج","no":"لا","rail":"سكة حديد مكهربة","yes":"نعم (غير محدد)"},"placeholder":"كيابل كهربائية معلقة بأبراج للسكك حديدية...","terms":"البنية الكهربائية,البنية التحتية للكهرباء,بنية الكهرباء,خطوط الكهرباء"},"email":{"label":"البريد الإلكتروني","placeholder":"example@example.com","terms":"البريد الإلكتروني,إيميل"},"embankment":{"label":"النوع","placeholder":"الافتراضي"},"embassy":{"label":"النوع","options":{"branch_embassy":"فرع سفارة","delegation":"تفويض","high_commission":"اللجنة العليا","interests_section":"Interests section","mission":"مكتب دبلوماسي","nunciature":"Diplomatic Mission of the Holy See","residence":"الإقامة الرسمية للسفير","yes":"سفارة"}},"emergency":{"label":"طوارئ"},"emergency_combo":{"label":"النوع"},"emergency_ward_entrance":{"label":"النوع"},"enforcement":{"label":"النوع"},"entrance":{"label":"النوع","options":{"emergency":"مخرج طوارئ","entrance":"مدخل فقط","exit":"مخرج فقط","garage":"باب المرآب","home":"منزل خاص أو شقة","main":"رئيسي","secondary":"ثانوي","service":"خدمة","staircase":"سلم","yes":"غير محدد"},"terms":"نوع,صنف,نمط"},"except":{"label":"الاستثناءات"},"expected_rcn_route_relations":{"label":"نقاط ركوب الدراجات المجاورة"},"expected_rwn_route_relations":{"label":"نقاط المشي المجاورة"},"expressway-US":{"label":"طريق سريع (US)","terms":"طريق سريع (الولايات المتحدة)"},"faces":{"label":"الواجهات"},"fax":{"label":"الفاكس","placeholder":"+31 42 123 4567","terms":"فاكس,ناسوخ"},"fee":{"label":"رسوم","terms":"رسوم,تحصيل,أجرة,أتعاب"},"fence_type":{"label":"النوع"},"fire_hydrant/diameter":{"label":"القُطر (مم، بوصة، أو حروف)","terms":"القُطر (مم، بوصة، أو حروف)"},"fire_hydrant/position":{"label":"الموضع","options":{"green":"العشب/الزرع","lane":"مسار الطريق","parking_lot":"مكان المواقف","sidewalk":"الرصيف"}},"fire_hydrant/pressure":{"label":"الضغط (بار)","terms":"الضغط (بار)"},"fire_hydrant/type":{"label":"الشكل","options":{"pillar":"عامود/صنبور فوق الأرض","pipe":"أنابيب مغطاة","underground":"تحت الأرض","wall":"جداري"}},"fire_mains":{"options":{"no":"لا"}},"fire_service_inlet":{"label":"شكل","options":{"pillar":"عامود/صنبور فوق الأرض","pipe":"أنابيب مغطاة","underground":"تحت الأرض","wall":"جدار"}},"fire_sprinkler":{"options":{"no":"لا"}},"fireplace":{"label":"المستوقد/مدفأة نار"},"fishing":{"label":"صيد الأسماك","terms":"صيد الأسماك"},"fitness_station":{"label":"نوع المُعدّة"},"fixme":{"label":"أصلحني","terms":"أصلحني"},"flag/name":{"label":"Flag Name"},"flag/type":{"label":"نوع العلم"},"flag/wikidata":{"label":"Flag Wikidata"},"flashing_lights":{"label":"الأضواء الساطعة","options":{"always":{"description":"تومض الأضواء دائمًا","title":"وامض بشكل دائم"},"button":{"description":"يتم تنشيط الأضواء بالضغط على زر","title":"متاح عبر الضغط على الزر"},"button;sensor":{"description":"يتم تنشيط الأضواء بواسطة جهاز استشعار أو عن طريق الضغط على زر","title":"متاح عبر الضغط على الزر أو عبر المستشعر"},"no":"لا","sensor":{"description":"يتم تنشيط الأضواء بواسطة جهاز استشعار","title":"متاح عبر أجهزة الاستشعار"},"yes":"نعم"},"terms":"الأضواء الساطعة"},"floating":{"label":"عائم"},"flood_prone":{"label":"منطقة معرضة للفيضانات","terms":"منطقة معرضة للفيضانات"},"ford":{"label":"النوع","placeholder":"الافتراضي"},"fountain":{"label":"النوع"},"frequency":{"label":"التردد الكهربائي","terms":"التردد الكهربائي,تردد التشغيل"},"from":{"label":"من"},"fuel":{"label":"وقود"},"fuel/fuel_multi":{"label":"أنواع الوقود","options":{"GTL_diesel":"ديزل GTL","HGV_diesel":"ديزل شاحنات","LH2":"هيدروجين سائل","adblue":"AdBlue / AUS 32","adblue:canister":"AdBlue / AUS 32 (في عبوات)","biodiesel":"ديزل حيوي","cng":"الغاز الطبيعي المضغوط (CNG)","diesel":"ديزل","octane_90":"بنزين (90 أوكتان)","octane_91":"بنزين (91 أوكتان)","octane_92":"بنزين (92 أوكتان)","octane_93":"بنزين (93 أوكتان)","octane_95":"بنزين (95 أوكتان)","octane_97":"بنزين (97 أوكتان)","octane_98":"بنزين (98 أوكتان)"}},"gambling":{"label":"ألعاب"},"garden/type":{"label":"نوع الحديقة"},"gauge":{"label":"عرض السكة الحديدية"},"gender":{"label":"نوع الجنس","options":{"female":"أنثى","male":"ذكر","unisex":"للجنسين"},"placeholder":"مجهول","terms":"الجنس"},"generator/method":{"label":"الطريقة","options":{"anaerobic_digestion":"الهضم اللاهوائي","stream":"تيار المد والجزر","thermal":"طاقة شمسية","water-storage":"خزان","wind_turbine":"توربينة رياح"}},"generator/output/electricity":{"label":"الطاقة الناتجة","placeholder":"50 ميجا وات، 100 ميجا وات، 200 ميجا وات..."},"generator/source":{"label":"المصدر","options":{"battery":"بطارية","biofuel":"وقود حيوي","biogas":"غاز حيوي","coal":"فحم","diesel":"ديزل","gas":"غاز طبيعي","gasoline":"بنزين","hydro":"طاقة كهرومائية","nuclear":"طاقة نووية","oil":"نفط","solar":"إشعاع الشمس","tidal":"طاقة المد والجزر","waste":"نفايات","wave":"طاقة الأمواج","wind":"رياح"}},"generator/type":{"label":"النوع"},"genus":{"label":"الجنس","placeholder":"أيسر ، بلاتانوس ، Quercus","terms":"الجنس,النوع,الفصيلة"},"geyser/height":{"label":"ارتفاع الفوران"},"gnis/feature_id-US":{"label":"المعرف حسب GNIS","terms":"المعرف حسب gnis (نظام معلومات الأسماء الجغرافية)"},"government":{"label":"النوع"},"grades":{"label":"مستوى المراحل التعليمية"},"grape_variety":{"label":"أصناف العنب"},"group_only":{"label":"المجموعات فقط","terms":"المجموعات فقط"},"guest_house":{"label":"النوع"},"handicap":{"label":"إعاقة (ذوي احتياجات خاصة)","placeholder":"1-18"},"handrail":{"label":"سياج سلم (درابزين)","terms":"درابزين,سياج سلم"},"hashtags":{"label":"الوسوم","placeholder":"#مثال"},"hazard_boundary":{"label":"خطر","options":{"avalanche":"انهيار ثلجي","biohazard":"خطر حيوي","contamination":"تلوث كيميائي","electricity":"صعقة كهربائية","hole":"حُفرة","minefield":"ألغام أرضية","nuclear":"نووي / إشعاعي","quicksand":"رمال متحركة","shooting_range":"إطلاق نار"}},"healthcare":{"label":"النوع","options":{"alternative":"الطب البديل","audiologist":"أخصائي السمع","birthing_centre":"مركز ولادة","blood_bank":"بنك الدم","blood_donation":"مركز تبرع بالدم","clinic":"عيادة طبية","counselling":"مركز استشارات طبية","dentist":"طبيب أسنان","dialysis":"غسيل كلى","doctor":"طبيب","hospice":"دار رعاية المسنين وكبار السن","hospital":"مستشفى","laboratory":"معمل طبي","midwife":"مركز قابلات للأمهات والأطفال حديثي الولادة","nurse":"تمريض","occupational_therapist":"أخصائي علاج وظيفي","optometrist":"أخصائي بصريات","pharmacy":"صيدلانية","physiotherapist":"علاج طبيعي وتأهيل طبي","podiatrist":"طبيب الأقدام","psychotherapist":"معالج نفسي","rehabilitation":"مركز إعادة التأهيل","sample_collection":"مرفق جمع العينات","speech_therapist":"معالج مشاكل النطق"}},"healthcare/speciality":{"label":"التخصصات","options":{"chiropractic":"العلاج بتقويم العمود الفقري","orthodontics":"تقويم الأسنان","osteopathy":"تجبير العظام","shiatsu":"شياتسو","stomatology":"أمراض الفم","surgery":"جراحة عامة","systemic":"علاج نظامي","traditional_chinese_medicine":"طب صيني تقليدي","transplant":"جراحة زراعة الأعضاء","trauma":"جراحة الصدمة","tropical":"الطب الاستوائي"}},"heating":{"label":"تدفئة"},"height":{"label":"الارتفاع (بالأمتار)","terms":"الارتفاع (بالأمتار)"},"height_building":{"label":"ارتفاع المبنى (بالأمتار)","terms":"ارتفاع المبنى (بالأمتار)"},"highchair":{"label":"كرسي عالي للأطفال","terms":"كرسي عالي"},"highspeed":{"label":"فائق السرعة","terms":"فائق السرعة,قطار فائق السرعة"},"highway":{"label":"النوع"},"highway_cartpath":{"label":"نوع المسار","options":{"path":"مسار عربات","service":"طريق خدمة"}},"historic":{"label":"النوع","options":{"archaeological_site":"موقع أثري","boundary_stone":"حجر/علامة حدودية","building":"مبنى تاريخي","castle":"حصن / قلعة","church":"Church","city_gate":"بوابة المدينة","fort":"حصن عسكري","manor":"قصر سكني قديم/تاريخي","memorial":"نصب تذكاري","mine":"الفكرة","monument":"نصب تذكاري","pillory":"منصة صلب للتشهير بالمجرمين","railway":"سكة حديد","ruins":"أطلال/أنقاض/خرائب","shieling":"مراعي الجبال المهجورة","tomb":"قبر / ضريح","wayside_cross":"تقاطع جانب الطريق","wayside_shrine":"Wayside Shrine","wreck":"ركام سفينة"}},"historic/civilization":{"label":"الحضارة التاريخية"},"historic/wreck/date_sunk":{"label":"تاريخ الغرق"},"historic/wreck/visible_at_high_tide":{"label":"مرئية في المد والجزر العالي"},"historic/wreck/visible_at_low_tide":{"label":"مرئية في المد والجزر المنخفض"},"holding_position/type":{"label":"النوع","options":{"ILS":"جهاز هبوط آلي","intermediate":"تقاطع ممر سيارات الأجرة","runway":"المدرج"}},"hoops":{"label":"عدد أطواق كرة السلة","placeholder":"1، 2، 4..."},"horse_riding":{"label":"مركز ركوب الخيل","options":{"horse_riding":"نعم","undefined":"لا"}},"horse_scale":{"label":"صعوبة ركوب الخيل","options":{"common":"سهلة: لا مشاكل أو صعوبات. (طبيعي)","critical":"يتجاوز المألوف: مسموح فقط للفرسان والخيول ذوي الخبرة، يوجد عقبات كبيرة، ويجب فحص الجسور بعناية.","dangerous":"خطيرة: مقبول فقط للراكبين والخيول ذوي الخبرة الكبيرة، وفقط في الطقس الجيد.","demanding":"بحذر: طريق غير مستوي، عوائق صعبة في بعض الأحيان.","difficult":"صعبة: طريق ضيق ومكشوف. قد يحتوي على عوائق لتخطيها، وممرات ضيقة."},"placeholder":"صعب، خطير...","terms":"صعوبة ركوب الخيل"},"hot_water":{"label":"المياة الساخنة"},"iata":{"label":"كود المطار من IATA"},"icao":{"label":"كود المطار من ICAO"},"image":{"label":"صورة","placeholder":"https://example.com/photo.jpg","terms":"صورة"},"incline":{"label":"درجة الانحدار","terms":"انحدار الطريق,درجة الانحدار,مستوى الانحدار"},"incline_steps":{"options":{"down":"للأسفل","up":"للأعلى"}},"indoor":{"label":"داخل المبنى","terms":"داخل المبنى,داخلي,ضمن المبنى"},"indoor_type":{"label":"النوع"},"industrial":{"label":"النوع"},"informal":{"label":"غير رسمي","terms":"غير رسمي,شكل غير رسمي"},"information":{"label":"النوع"},"inscription":{"label":"النقوش","terms":"نقوش,نصوص منقوشة على أشياء"},"intermittent":{"label":"متقطع (لا يحتوي على الماء بشكل دائم)","terms":"متقطع,لا يحتوي على الماء بشكل دائم"},"internet_access":{"label":"اتصال انترنت","options":{"no":"لا","terminal":"محطة","wired":"سلكي","wlan":"لا سلكي","yes":"نعم"},"terms":"اتصال انترنت"},"internet_access/fee":{"label":"رسوم استخدام خدمة الإنترنت","options":{"customers":"للعملاء/الزبائن فقط","no":"مجاني","yes":"مدفوع"}},"internet_access/ssid":{"label":"اسم شبكة الواي فاي","terms":"اسم شبكة الواي فاي"},"interval":{"label":"الفترة الزمنية","terms":"الفترة الزمنية"},"irrigation_pivot":{"options":{"pivot":"نعم","undefined":"لا"}},"junction/ref_oneway":{"label":"رقم التقاطع","terms":"رقم التقاطع,الرقم المرجعي للتقاطع"},"junction_line":{"label":"تقاطع طرق","options":{"circular":"دوار متحكم به بإشارات أو علامات توقف أو أفضلية القادم من طريق آخر","jughandle":"تقاطع jughandle","roundabout":"دوار بدون اشارات وأفضلية المسار لمن فيه"},"terms":"دوار بدون اشارات وأفضلية المسار لمن فيه"},"kerb":{"label":"منحدر الرصيف المؤدي للشارع","options":{"flush":{"title":"شطف/سيفون/ماء متدفق"},"lowered":{"title":"خفضت"},"no":{"title":"لا"},"raised":{"title":"مرتفع"},"rolled":{"title":"رصيف بحواف مطويه (مستديرة)"},"yes":{"title":"نعم"}}},"kerb/height":{"label":"الارتفاع"},"kerb/kerb_barrier":{"label":"النوع"},"kitchen":{"label":"المطبخ","terms":"المطبخ"},"kneipp_water_cure_multi":{"label":"نوع الحوض"},"label":{"label":"علامة"},"lamp_mount":{"label":"حامل المصباح"},"lamp_type":{"label":"النوع"},"landuse":{"label":"النوع"},"lane_markings":{"label":"رسومات الطريق","terms":"رسومات الطريق,علامات الطريق,العلامات التي تفصل مسارات السيارات"},"lanes":{"label":"المسارات المرورية","placeholder":"1, 2, 3...","terms":"المسارات المرورية"},"language_multi":{"label":"اللغات"},"layer":{"label":"الطبقة","placeholder":"0","terms":"الطبقات"},"layer_1":{"placeholder":"0"},"leaf_cycle":{"label":"دورة حياة أوراق الشجر","options":{"deciduous":"المتساقطة","evergreen":"دائمة الخضرة","mixed":"مختلط","semi_deciduous":"شبه متساقطة","semi_evergreen":"شبه دائمة الخضرة"},"terms":"دورة حياة الورقة"},"leaf_type":{"label":"نوع ورق الشجر","options":{"broadleaved":"عريضة الأوراق","leafless":"بدون أوراق","mixed":"مختلط","needleleaved":"إبرية"},"terms":"نوع الورقة,نوع ورقة النبات"},"leaf_type_singular":{"label":"نوع ورق الشجر","terms":"نوع الورقة,نوع ورقة النبات"},"leisure":{"label":"النوع"},"length":{"label":"الطول (بالأمتار)","terms":"العرض (بالمتر)"},"level":{"label":"المستوى","terms":"المستوى,الطابق,الدور"},"level_semi":{"label":"المسويات","terms":"المستويات,الطوابق,الأدوار"},"liaison":{"label":"النوع"},"lifeguard":{"label":"النوع"},"lifeguard_check":{"label":"حارس الشاطئ"},"lift_gate/type":{"label":"النوع"},"line_attachment":{"label":"كيفية ارتباط الكيابل"},"line_management":{"label":"طوبولوجيا الخط","terms":"طوبولوجيا الخط,إدارة الخط"},"lit":{"label":"مضاء","terms":"مضاء,منور،له نور"},"loc_name":{"label":"الاسم المحلي","terms":"الاسم الشعبي"},"location":{"label":"المكان","terms":"المكان,المكان بالضبط"},"location_pool":{"options":{"indoor":"مُغطى/داخلي","outdoor":"في الخارج/الهواء الطلق","roof":"على سطح بناية"}},"lock":{"label":"هويس"},"lockable":{"label":"قابل للقفل","terms":"قابل للقفل"},"locked":{"label":"حاجز/بوابة"},"man_made":{"label":"النوع"},"manhole":{"label":"النوع"},"manufacturer":{"label":"الشركة المُصنّعة","terms":"الشركة المُصنّعة"},"map_size":{"label":"التغطية"},"map_type":{"label":"النوع","options":{"toposcope":"لوح طوبوغرافي"}},"mapillary":{"label":"معرف الصورة في مابيلاري","terms":"معرف الصورة في مابيلاري,معرف الصورة في mapillary"},"marker":{"label":"النوع","options":{"ground":{"title":"أرضي"},"stone":{"title":"حجر"}}},"material":{"label":"المادة","options":{"brick":"طوب","concrete":"خرسانه/اسمنت","glass":"زجاج","granite":"جرانيت","limestone":"حجر الكلس (الجيري)","metal":"معدني","plastic":"بلاستيك","rock":"صخرة","sand":"رمال/نفود","sandstone":"الحجر الرملي","steel":"فولاذ","stone":"حجر","wood":"خشبي"},"terms":"المادة,المواد"},"mattress":{"label":"تتوفر مطارح/مراتب","terms":"تتوفر مطارح/مراتب"},"max_age":{"label":"الحد الأقصى للعمر","terms":"الحد الأقصى لسن الشخص,الحد الأعلى لسن الشخص"},"maxspeed":{"label":"حدود السرعة","placeholder":"40, 50, 60...","terms":"حدود السرعة,قيود السرعة"},"maxspeed/advisory":{"label":"حدود السرعة المنصوح بها","placeholder":"40, 50, 60...","terms":"حدود السرعة المنصوح بها"},"maxspeed/hgv":{"label":"الحد الأقصى لسرعة الشاحنة","placeholder":"40, 50, 60...","terms":"سرعة الشاحنات القصوى"},"maxstay":{"label":"المدة الزمنية المحددة"},"memorial":{"label":"النوع","options":{"bust":"صدر","obelisk":"Obelisk","plaque":"Commemorative Plaque","sculpture":"منحوتة","statue":"تمثال","stone":"حجر"}},"message":{"label":"رسالة","terms":"رسالة"},"microbrewery":{"label":"Microbrewery"},"military_service":{"label":"خدمة عسكرية","options":{"air_force":"قوات جوية","army":"جيش","coast_guard":"خفر سواحل","marines":"مشاة البحرية","navy":"قوات بحرية"}},"mimics":{"label":"محاكاة","terms":"محاكاة,مجاراة"},"min_age":{"label":"الحد الأدنى للعمر","terms":"الحد الأدنى للعمر"},"min_height":{"label":"ارتفاع القاع (متر)"},"minspeed":{"label":"الحد الأدنى للسرعة","placeholder":"20, 30, 40...","terms":"الحد الأدنى للسرعة"},"mobile":{"label":"هاتف محمول","placeholder":"+966 42 123 4567"},"monitoring_multi":{"label":"الرصد/المراقبة"},"mooring":{"label":"مربط سفن ومراكب بحرية","options":{"commercial":"تجاري","no":"لا","private":"خاص","yes":"نعم"}},"mtb/scale":{"label":"صعوبة قيادة الدراجة على الجبل","options":{"0":"0: أسفلت/تربة مدكوكة, دون معوقات, منحنيات واسعة","1":"1: حصوات مبعثرة قليلا, معوقات صغيرة, منحنيات واسعة","2":"2: حصوات مبعثرة بكثرة, معوقات كبيرة, إلتفافات متكررة سهلة","3":"3: سطج زلق, معوقات كبيرة, إلتفافات متكررة ضيقة","4":"4: حصوات مبعثرة أو صخور, إلتفافات متكررة خطيرة","5":"5: صعوبة قصوى, حقول صخرية, إنزلاقات أرضية","6":"6: غير قابل للقيادة إلا من قِبل أفضل سائقي الدراجات الجبلية"},"placeholder":"0, 1, 2, 3...","terms":"صعوبة قيادة الدراجة على الجبل"},"mtb/scale/imba":{"label":"صعوبة المسارات من الرابطة الدولية لدرجات الجبال IMBA","options":{"0":"⚪ سهل جدا (دائرة بيضاء)","1":"🟢 سهل (دائرة خضراء)","2":"🟦 متوسط (مربع أزرق)","3":"◆ صعب (الماس الأسود)","4":"◆◆ صعب للغاية (الماس أسود المزدوج)"},"placeholder":"سهل، متوسط، صعب...","terms":"صعوبة المسارات من الرابطة الدولية لدرجات الجبال imba"},"mtb/scale/uphill":{"label":"صعوبة صعود الجبل بالدراجة","options":{"0":"0: معدل الإنحدار <10% ، أسفلت/تربة مدكوكة ، دون معوقات","1":"1: معدل الإنحدار <15% ، أسفلت/تربة مدكوكة ، مع وجود بعض المعوقات","2":"2: معدل الإنحدار <20% ، سطح ثابت ، صخور وجذور بحجم قبضة اليد","3":"3: معدل الإنحدار <25% ، سطح متغير ، صخور وفروع بحجم قبضة اليد","4":"4: معدل الإنحدار <30% ، حالة السطح سيئة ، صخور وفروع كبيرة","5":"5: حاد جدًا ، الدراجات في العموم تحتاج لدفعها أو حملها"},"placeholder":"0، 1، 2، 3 ...","terms":"صعوبة صعود الجبل بالدراجة"},"museum":{"label":"النوع"},"name":{"label":"الاسم","placeholder":"الاسم الشائع (إن وجد)","terms":"الاسم,المسمى"},"nat_name":{"label":"الاسم الوطني","terms":"الاسم الوطني"},"natural":{"label":"طبيعي"},"network":{"label":"الشبكة","terms":"الشبكة"},"network/type":{"label":"نوع الشبكة"},"network_bicycle":{"label":"فئة الشبكة","options":{"icn":"دولية","lcn":"محلية","ncn":"وطنية","rcn":"إقليمية"},"placeholder":"محلية، إقليمية، وطنية، عالمية"},"network_foot":{"label":"فئة الشبكة","options":{"iwn":"دولية","lwn":"محلية","nwn":"وطنية","rwn":"إقليمية"},"placeholder":"محلية، إقليمية، وطنية، دولية"},"network_horse":{"label":"فئة الشبكة","options":{"ihn":"دولية","lhn":"محلية","nhn":"وطنية","rhn":"إقليمية"},"placeholder":"محلية، إقليمية، وطنية، دولية"},"network_road":{"label":"الشبكة"},"not/name":{"label":"الأسماء غير الصحيحة","terms":"الأسماء غير الصحيحة"},"note":{"label":"ملاحظة","terms":"ملاحظة"},"nudism":{"label":"Nudism","options":{"customary":"عرفي","designated":"مخصص/محدد","no":"محظور","obligatory":"إجباري","permissive":"مسموح من المالك","yes":"مسموح"}},"office":{"label":"النوع","options":{"accountant":" مكتب محاسب","adoption_agency":"Adoption Agency","advertising_agency":"وكالة إعلانية","architect":" مكتب مهندس معماري","association":"مكتب منظمة غير ربحية","charity":"مكتب منظمة خيرية","company":"مكتب شركة / مؤسسة","consulting":"مكتب شركة استشارية","coworking":"مساحة عمل مشتركة","diplomatic":"مكتب دبلوماسي","educational_institution":"مكتب مؤسسة تعليمية ","employment_agency":"مكتب وكالة توظيف ","energy_supplier":"مكتب شركة مرافق الكهرباء","estate_agent":"مكتب عقاري","financial":"مكتب مالي","financial_advisor":"المستشار المالي","forestry":"مكتب إدارة الغابات","foundation":"مكتب مؤسسة","government":"مكتب/دائرة حكومية","guide":"مكتب الدليل السياحي","insurance":"مكتب تأمينات","it":"مكتب متخصصي تكنولوجيا المعلومات","lawyer":"مكتب قانوني ","moving_company":"مكتب شركة نقل","newspaper":"صحيفة","ngo":"مكتب المنظمات العامة الغير حكومية","notary":"مكتب كتابة عدل / موثق","physician":"طبيب","political_party":"مكتب الحزب السياسي","private_investigator":"مكتب محقق خاص","quango":"مكتب منظمة غير حكومية شبه مستقلة","religion":"مكتب ديني","research":"مكتب بحوث","security":"مكتب مؤسسات الحراسات الأمنية","surveyor":"مكتب مساح أرضي","tax_advisor":"مستشار الضرائب","telecommunication":"مكتب شركات اتصالات","therapist":"المعالج","travel_agent":"وكالة السفر","water_utility":"مكتب شركة مياه"}},"official_name":{"label":"الاسم الرسمي","terms":"الاسم الحكومي"},"oneway":{"label":"هذا الطريق يسير باتجاه واحد","options":{"alternating":"يتغير اتجاهه بشكل متغير في اليوم الواحد","no":"لا","reversible":"قابل لتغيير الاتجاه حسب الزحام وبشكل منتظم","undefined":"يفترض أن يكون لا","yes":"نعم"},"terms":"اتجاه واحد,اتجاه سير واحد"},"oneway/bicycle":{"label":"اتجاه واحد (للدراجات)","terms":"اتجاه واحد (للدراجات)"},"oneway_yes":{"options":{"alternating":"بالتناوب:يتغير اتجاهه بشكل متغير في اليوم الواحد","no":"لا","reversible":"قابل لتغيير الاتجاه حسب الزحام وبشكل منتظم","undefined":"يفترض أن يكون نعم","yes":"نعم"}},"openfire":{"label":"اشعال النار مسموح","terms":"اشعال النار مسموح،شب النار مسموح"},"opening_date":{"label":"تاريخ الافتتاح المتوقع","placeholder":"YYYY-MM-DD"},"opening_hours":{"label":"ساعات العمل","placeholder":"غير معروف","terms":"ساعات العمل,ساعات الدوام"},"operator":{"label":"المُشغل","terms":"المُشغل,المتعهد,الشركة المشغلة"},"operator/type":{"label":"التشغيل يتم عبر"},"organic":{"label":"منتجات عضوية","options":{"no":"لا شيء","only":"فقط","yes":"بعض"},"terms":"منتجات عضوية"},"orientation/orientation_parking":{"label":"الاتجاه"},"outdoor_seating":{"label":"مقاعد في الهواء الطلق","terms":"مقاعد خارجية، مقاعد خارج البناء"},"par":{"label":"بار","placeholder":"3، 4، 5 ..."},"parcel_dropoff":{"label":"تسليم الطرود"},"parcel_pickup":{"label":"استلام الطرود","options":{"no":"لا","undefined":"يفترض أن يكون نعم","yes":"نعم"}},"park_ride":{"label":"اوقف واركب","terms":"اوقف واركب,اركن واركب"},"parking":{"label":"النوع","options":{"carports":{"title":"مظلات سيارات"},"garage_boxes":{"title":"صناديق المرآب"},"lane":{"title":"على جانب الطريق"},"layby":{"title":"جانب الطريق"},"multi-storey":{"title":"متعدد الطوابق"},"rooftop":{"title":"على سطح بناية"},"sheds":{"title":"مظلله"},"shoulder":{"title":"كتف الطريق"},"street_side":{"title":"جانب الشارع"},"surface":{"title":"السطح"},"underground":{"title":"تحت الأرض"}}},"parking/side/orientation":{"options":{"parallel":"موازية للشارع"},"types":{"parking:left:orientation":"جانب أيسر","parking:right:orientation":"جانب أيمن"}},"parking/side/parking":{"label":"موقف","options":{"lane":"على جانب الطريق","no":"لا","shoulder":"كتف الطريق","street_side":"جانب الشارع","yes":"نعم (غير محدد)"},"types":{"parking:left":"جانب أيسر","parking:right":"جانب أيمن"}},"parking_entrance":{"label":"النوع"},"parking_space":{"label":"النوع"},"payment_multi":{"label":"طرق الدفع","options":{"alipay":"خدمة Alipay","american_express":"بطاقة اميريكان اكسبرس","apple_pay":"أبل باي","bancomat":"ماكينة الصراف الآلي","cash":"نقدي","cheque":"التحقق","coins":"عملات معدنية","diners_club":"داينرز كلوب","dkv":"DKV","girocard":"جيروكارد","google_pay":"جوجل باي","jcb":"JCB","maestro":"مايسترو","mastercard":"بطاقة ماستركارد","uta":"UTA","v_pay":"V PAY","visa":"Visa","visa_debit":"Visa Debit","visa_electron":"Visa Electron"},"terms":"طرق الدفع,طرق الحساب"},"phases":{"label":"المراحل/الفترات","placeholder":"1, 2, 3..."},"phone":{"label":"هاتف","terms":"هاتف,تلفون"},"picnic_table":{"label":"طاولة نزهة"},"pipeline":{"label":"نوع"},"piste/difficulty":{"label":"الصعوبة","options":{"advanced":"متقدم","easy":"سهل","expert":"خبير","extreme":"أقصى صعوبة","freeride":"قيادة حُرة","intermediate":"متوسط","novice":"مبتدئ"},"placeholder":"سهل، متوسط، متقدم..."},"piste/difficulty_downhill":{"options":{"advanced":"متقدم (جوهرة سوداء)","easy":"سهل (دائرة خضراء)","expert":"خبير (جوهرتين سودائتين)","extreme":"خطير (معدات التسلق مطلوبة)","freeride":"تزلج حُر (خارج منطقة التزلج)","intermediate":"متوسط (مربع أزرق)","novice":"مبتدئ (تعليمي)"},"placeholder":"سهل، متوسط، متقدم..."},"piste/difficulty_nordic":{"options":{"advanced":"متقدم - ضيق، منحدر أو جزء جليدي، إنعطاف حاد","easy":"سهل - تلال ناعمة، منحدرات صغيرة","expert":"خبير - محاطة بتضاريس خطرة","intermediate":"متوسط - جزء منحدر","novice":"مبتدئ - مسطح، لا يحتاج لجهد"},"placeholder":"سهل، متوسط، متقدم..."},"piste/difficulty_skitour":{"options":{"advanced":"متقدم S:انحدار بدرجة 40-45","easy":"سهل - WS:انحدار بدرجة 30-35","expert":"خبير - SS:انحدار بدرجة 45-50","extreme":"شديد- EX:انحدار بدرجة أعلى من 55","freeride":"نزول حر - AS:انحدار بدرجة 50-55","intermediate":"متوسط- ZS:انحدار بدرجة 35-40","novice":"مبتدئ - L:انحدار بدرجة أقل من 30"},"placeholder":"سهل، متوسط، متقدم..."},"piste/grooming":{"label":"تحضير مسار الزحلقة","options":{"backcountry":"غير معتنى به","classic":"تقليدي","classic+skating":"كلاسيكي وللتزلج","mogul":"مهيئ للتزلج","scooter":"سكوتر / عربة ثلجية","skating":"تزلج"}},"piste/grooming_downhill":{"options":{"backcountry":"غير محضر/معتنى به","classic":"تقليدي","mogul":"مهيئ للتزلج"}},"piste/grooming_hike":{"options":{"backcountry":"غير محضر/معتنى به - لابد من وجود حذاء مخصص","classic":"كلاسيكي وللهايكنك الشتوي"}},"piste/grooming_nordic":{"options":{"backcountry":"غير محضر/معتنى به","classic":"تقليدي","classic+skating":"كلاسيكي وللتزلج","scooter":"سكوتر / عربة ثلجية","skating":"تزلج"}},"piste/type":{"label":"النوع","options":{"connection":"وصلة","downhill":"انحدار","hike":"رحلة مشيا على الاقدام","ice_skate":"تزلج على الجليد","nordic":"شمال أوروبا","playground":"ساحة لعب","skitour":"جولة تزلج","sled":"تزلج","sleigh":"مزلقة","snow_park":"حديقة الثلج"}},"place":{"label":"النوع"},"plant":{"label":"مصنع"},"plant/method":{"label":"طريقة التوليد"},"plant/output":{"options":{"cold_air":"هواء بارد","cold_water":"ماء بارد","compressed_air":"هواء مضغوط","electricity":"كهرباء","hot_air":"هواء ساخن","hot_water":"ماء ساخن","steam":"بخار","vacuum":"فراغ"}},"plant/output/electricity":{"placeholder":"500 ميجا وات، 1000 ميجا وات، 2000 ميجا وات..."},"plant/source":{"label":"مصدر الطاقة"},"playground":{"label":"النوع"},"playground/theme":{"label":"النمط"},"plots":{"label":"قطعة الأرض (المخططة)","placeholder":"10, 20, 30..."},"polling_station":{"label":"Polling Place"},"population":{"label":"عدد السكان"},"population/date":{"placeholder":"YYYY-MM-DD"},"portable":{"label":"محمول","terms":"محمول,متنقل"},"post":{"label":"عنوان التوصيل/الاستلام"},"post_box/type":{"label":"النوع","terms":"نوع,صنف,نمط"},"power":{"label":"النوع"},"power_supply":{"label":"مولد طاقة","terms":"مولد طاقة,مولد كهربائي"},"preschool":{"label":"حضانة"},"produce":{"label":"ينتج"},"product":{"label":"المنتجات","terms":"المنتجات"},"public_bookcase/type":{"label":"النوع"},"pump":{"label":"مضخة","options":{"manual":"مضخة يدوية","no":"لا شيء","powered":"مضخة آلية","yes":"نعم"}},"railway":{"label":"النوع"},"railway/position":{"label":"علامة مسافات","placeholder":"المسافة إلى رقم عشري واحد (123.4)"},"railway/signal/direction":{"label":"الاتجاه يتأثر","options":{"backward":"للخلف","both":"كلاهما / الكل","forward":"للأمام"}},"ramp":{"label":"منحدر متنقل","options":{"no":"لا","yes":"نعم"},"terms":"منحدر متنقل,منصة متنقلة للنزول"},"rating":{"label":"معدل الطاقة المولدة"},"rcn_ref":{"label":"كود ركوب الدراجات"},"real_fire-GB-IE":{"label":"حريق حقيقي","terms":"حريق حقيقي"},"recycling_accepts":{"label":"المواد التي تقبلها المنشأة","options":{"batteries":"بطاريات","cans":"علب","cardboard":"ورق مقوى","clothes":"ملابس","cooking_oil":"زيت طهي","engine_oil":"زيت محركات","glass":"أي زجاج (زجاج مقسّى/صلب ، نوافذ ، مرايا ، إلخ)","glass_bottles":"الزجاجات والجرار","green_waste":"نفايات خضراء","paper":"ورق","plastic":"بلاستيك","plastic_bottles":"عبوات بلاستيكية","plastic_packaging":"بلاستيك التغليف","scrap_metal":"خردة المعادن (سكراب)","shoes":"أحذية"}},"recycling_type":{"label":"النوع","options":{"centre":"مركز","container":"حاوية"},"placeholder":"الحاوية ، المركز"},"ref":{"label":"الرمز المرجعي","terms":"الرمز المرجعي,الرقم المرجعي"},"ref/isil":{"label":"رمز ISIL"},"ref/vatin":{"label":"VAT ID Number","terms":"vat id number"},"ref_aeroway_gate":{"label":"رقم البوابة"},"ref_disc_golf_hole":{"label":"رقم الثقب","placeholder":"1-18"},"ref_golf_hole":{"label":"رقم الحفرة","placeholder":"1-18"},"ref_highway_junction":{"label":"رقم التقاطع"},"ref_platform":{"label":"رقم المنصة/الرصيف"},"ref_road_number":{"label":"رقم الطريق","terms":"رقم الطريق,رقم الشارع"},"ref_room_number":{"label":"رقم الغرفة"},"ref_route":{"label":"رقم المسار","terms":"رقم المسار"},"ref_runway":{"label":"رقم المدرج","placeholder":"مثل 01L/19R"},"ref_sector":{"label":"رقم المقطع"},"ref_stop_position":{"label":"رقم الموقف"},"ref_taxiway":{"label":"اسم طريق المناورة","placeholder":"مثل A5"},"reg_name":{"label":"الاسم الإقليمي","terms":"الاسم الإقليمي,الاسم المناطقي"},"relation":{"label":"النوع"},"religion":{"label":"الديانة","options":{"bahai":"Bahá’í","benzhu":"Benzhu","buddhist":"Buddhist","caodaism":"Caodaist","chinese_folk":"Chinese Folk Religion","christian":"Christian","confucian":"Confucian","hindu":"Hindu","jain":"Jain","jewish":"Jewish","multifaith":"Multifaith","muslim":"الإسلام","none":"Nonreligious","pagan":"Pagan","shinto":"Shinto","sikh":"Sikh","spiritualist":"Spiritualist","taoist":"Taoist","tenrikyo":"Tenrikyo","unitarian_universalist":"Unitarian Universalist","vietnamese_folk":"Vietnamese Folk Religion","voodoo":"Voodoo"},"terms":"الديانة,الدين,الملة"},"reservation":{"label":"الحجوزات","options":{"no":"غير مسموحة","recommended":"موصى بها","required":"مطلوبة ولابد منها","yes":"مقبولة"},"terms":"الحجوزات,الحجز"},"residential":{"label":"النوع"},"resort":{"label":"النوع"},"resource":{"label":"المصادر","options":{"aggregate":"تجميع","clay":"الطين","coal":"فحم","gold":"ذهبي","gravel":"حصباء/حصى","limestone":"حجر الكلس (الجيري)","sand":"رمال/نفود"}},"restriction":{"label":"النوع"},"restrictions":{"label":"قيود الإنعطاف"},"roller_coaster/track":{"label":"النوع","options":{"waiting":{"title":"انتظار"}}},"roof/colour":{"label":"لون السقف","terms":"لون السقف,لون الغما"},"roof/shape":{"options":{"dome":"قبة"}},"room":{"label":"النوع"},"rooms":{"label":"الغرف"},"roundtrip":{"label":"بشكل حلقة/دائري","terms":"بشكل حلقة,بشكل دائري,يذهب ويعود لنفس المكان,له نفس البداية والنهاية"},"route":{"label":"النوع"},"route_master":{"label":"النوع"},"royal_cypher-GB":{"options":{"no":"لا"}},"ruins":{"label":"النوع"},"rwn_ref":{"label":"الرقم المرجعي لمسار المشي"},"sac_scale":{"label":"صعوبة المشي على الأقدام (الهايكنق)","options":{"alpine_hiking":"T4: مشي جبال الألب","demanding_alpine_hiking":"T5: يتطلب مشي جبال الألب","demanding_mountain_hiking":"T3: يتطلب المشي في الجبال","difficult_alpine_hiking":"T6: مشي جبال الألب صعب","hiking":"T1: المشي لمسافات طويلة","mountain_hiking":"T2: المشي لمسافات طويلة في الجبال"},"placeholder":"المشي لمسافات طويلة في الجبال ، مشي جبال الألب ...","terms":"صعوبة المشي على الأقدام (الهايكنق)"},"salt":{"label":"مياة مالحة","terms":"ملحية,مياة مالحة"},"sample_collection":{"label":"عينات"},"sanitary_dump_station":{"label":"محطة تصريف خزانات مراحيض السيارات","terms":"محطة تصريف خزانات مراحيض السيارات,تصريف خزانات مراحيض متنقلة"},"screen":{"label":"الشاشات","placeholder":"1, 4, 8…"},"scuba_diving":{"label":"الخدمات"},"seamark/beacon_isolated_danger/shape":{"label":"الشكل"},"seamark/beacon_lateral/category":{"label":"التصنيف","options":{"danger_left":"خطر على اليسار","danger_right":"خطر على اليمين","port":"منفذ","starboard":"ميمنة","waterway_left":"المجرى المائي اليسار","waterway_right":"المجرى المائي اليمين"}},"seamark/beacon_lateral/colour":{"label":"اللون","options":{"green":"أخضر","grey":"رمادي","red":"أحمر"}},"seamark/beacon_lateral/shape":{"label":"الشكل"},"seamark/beacon_lateral/system":{"label":"النظام","options":{"cevni":"CEVNI","iala-a":"IALA A","iala-b":"IALA B","other":"أخرى"}},"seamark/buoy_lateral/category":{"label":"التصنيف","options":{"channel_left":"قناة باليسار","channel_right":"قناة باليمين","danger_left":"خطر على اليسار","danger_right":"خطر على اليمين","port":"منفذ","preferred_channel_port":"منفذ القناة المفضل","preferred_channel_starboard":"قناة الميمنة المفضلة","starboard":"ميمنة","waterway_left":"المجرى المائي اليسار","waterway_right":"المجرى المائي اليمين"}},"seamark/buoy_lateral/colour":{"label":"اللون","options":{"green":"أخضر","green;red;green":"أخضر-أحمر-أخضر","green;white;green;white":"أخضر-أبيض-أخضر-أبيض","red":"أحمر","red;green;red":"أحمر-أخضر-أحمر","red;white;red;white":"أحمر-أبيض-أحمر-أبيض","white":"أبيض","yellow":"أصفر"}},"seamark/buoy_lateral/shape":{"label":"الشكل"},"seamark/buoy_lateral/system":{"label":"النظام","options":{"cevni":"CEVNI","iala-a":"IALA A","iala-b":"IALA B","other":"أخرى"}},"seamark/harbour/category_marina":{"options":{"marina":"نعم","marina_no_facilities":"لا"}},"seamark/mooring/category":{"label":"التصنيف"},"seamark/rescue_station/category":{"label":"معدات إنقاذ الحياة","options":{"aircraft":"الطائرات","first_aid":"إسعافات أولية","hovercraft":"الحوامات","lifeboat":"قارب النجاة (على الأرض)","lifeboat_on_mooring":"قارب النجاة (في مرسى)","radio":"محطة إذاعية","refuge_intertidal":"ملجأ المد والجزر","refuge_shipwrecked":"ملجأ حطام السفينة","seaplane":"طائرة مائية","tug":"ساحبة الإنقاذ"}},"seamark/type":{"label":"علامة بحرية","terms":"علامة بحرية,علامة البحر,علامة ملاحية بحرية"},"seamark/wreck/category":{"label":"التصنيف"},"seasonal":{"label":"موسمي"},"seats":{"label":"المقاعد","placeholder":"2, 4, 6..."},"second_hand":{"label":"بيع المستعمل","options":{"no":"لا","only":"فقط","yes":"نعم"},"placeholder":"نعم، لا، فقط","terms":"بيع المستعمل,حراج مستعمل,بضائع مستعملة،سلع مستعملة"},"segregated":{"label":"الفصل بين المشاة والدراجات"},"self_service":{"label":"خدمة ذاتية"},"service":{"label":"النوع","options":{"alley":"زقاق","drive-through":"ممر الطلب بالسيارة","driveway":"ممر خاص","emergency_access":"ممر لحالات الطوارئ","parking_aisle":"ممر وقوف السيارات"}},"service/bicycle":{"label":"خدمات الدراجات","terms":"خدمات الدراجات"},"service/vehicle":{"label":"الخدمات"},"service_rail":{"label":"نوع الخدمة","options":{"crossover":"عبور","siding":"انحياز","spur":"وصلة قطارات شحن","yard":"ساحة السكة الحديدية"},"terms":"نوع الخدمة"},"service_times":{"label":"أوقات الخدمة"},"shelter":{"label":"مرأب"},"shelter_type":{"label":"النوع"},"shoes":{"label":"أحذية"},"shop":{"label":"النوع"},"short_name":{"label":"الاسم المختصر","terms":"الاسم المختصر"},"shower":{"label":"استحمام","terms":"استحمام,دش,مسحاح,مشن,مروش"},"siren/purpose":{"label":"الغرض"},"siren/type":{"label":"النوع","options":{"electronic":"إلكتروني","other":"غير ذلك","pneumatic":"هوائي"}},"site":{"label":"النوع"},"smoking":{"label":"التدخين","options":{"dedicated":"مخصصة للمدخنين (مثلا: نادي للمدخنين)","isolated":"في مناطق التدخين، معزولة ماديا","no":"ممنوع التدخين في أي مكان","outside":"مسموح به في الخارج","separated":"في مناطق التدخين، غير معزولة ماديا","yes":"مسموح به في كل مكان"},"placeholder":"لا ، منفصل ، نعم ...","terms":"دخان,تدخين,تتن,مدخنين,متتن"},"smoothness":{"label":"درجة الوعورة/النعومة","options":{"bad":"لذوات العجلات المتينة مثل: دراجات الرحلات، والسيارات ، وعربات التوكتوك","excellent":"لذوات العجلات الرقيقة مثل: أحذية التزحلق ، ألواح التزحلق","good":"لذوات العجلات النحيلة مثل: دراجة السباق","horrible":"للمناطق الوعرة مثل: مركبات الطرق الوعرة والمعدات الثقيلة","impassable":"للمناطق الوعرة التي لا يمكن اجتيازها/غير سالكة / لا تعبرها المركبات","intermediate":"قابلة للاجتياز عبر أي عجلات مثل: دراجة المدينة ، الكرسي المتحرك للمعاقين ، السكوتر","very_bad":"للمركبات المرتفعة :والمركبات التي تعبر الطرق الوعرة","very_horrible":"للمركبات والمعدات المخصصة للطرق الوعرة مثل: الجرار ،ATV (الدبابات الرباعية العجلات)"},"placeholder":"للعجلات العادية، للعجلات النحيلة، للطرق وعرة ...","terms":"النعومة,الوعورة,نعومة الطريق,وعورة الطريق,جاهزية الطريق,سلامة سطح الطريق"},"sms":{"label":"للرسائل نصية","terms":"رسائل نصية,sms,رسالة جوال"},"social_facility":{"label":"النوع","options":{"ambulatory_care":"الرعاية الإسعافية","assisted_living":"شارع معيشة بين المساكن","food_bank":"بنك الطعام","group_home":"دار جماعية","nursing_home":"دار التمريض","outreach":"التوعية","shelter":"مأوى/عشة"}},"social_facility_for":{"label":"نوع الجمهور (الناس) المستهدفين","options":{"child":"الأطفال","drug_addicted":"مدمنوا المخدرات","homeless":"المشردين","juvenile":"الاحداث","migrant":"المهاجرين","orphan":"الأيتام","senior":"دار المسنين","veteran":"Veterans","woman":"نساء"}},"source":{"label":"المصادر","options":{"aerial imagery":"من الصور الجوية","gps":"GPS","local knowledge":"المعرفة المحلية","osm notes":"ملاحظات خارطة الشارع المفتوحة","streetlevel imagery":"صور على مستوى الشارع","survey":"استقصاء/استبيان/مسح ميداني"}},"species":{"label":"الصنف","placeholder":"Acer platanoides, Quercus robur, …","terms":"النوع,الفصيلة"},"species/wikidata":{"label":"أنواع ويكي بيانات","terms":"أنواع ويكي بيانات"},"sport":{"label":"الرياضات","options":{"american_football":"كرة القدم الأمريكية","baseball":"كرة القاعدة","basketball":"كرة السلة","beachvolleyball":"ملعب كرة الطائرة الشاطئية","bmx":"BMX","chess":"شطرنج","climbing":"التسلق","cricket":"كريكت","curling":"كيرلنغ","cycling":"ركوب الدراجات","darts":"رمي الاسهم المريشة","dog_racing":"سباق الكلاب","gaelic_games":"ألعاب الغيلية","golf":"غولف","gymnastics":"الجمباز","horse_racing":"سباق خيول","ice_hockey":"الهوكى الجليدى","ice_skating":"التزحلق على الجليد","ice_stock":"مخزون الجليد","karting":"سباق الكارت","motocross":"سباق الدرجات النارية الوعر","pelota":"كرة الباسك","rugby_union":"اتحاد الرغبي","running":"جري","scuba_diving":"رياضة الغطس","shooting":"الرماية","skateboard":"لوح التزلج","skiing":"التزحلق","soccer":"كرة قدم","speedway":"طريق سريع للدراجات النارية","swimming":"سباحة","tennis":"التنس","volleyball":"كرة طائرة"}},"sport/sport_ice":{"label":"الرياضات"},"sport/sport_pub":{"label":"الرياضات","terms":"رياضات"},"sport/sport_racing_motor":{"label":"الرياضات"},"sport/sport_racing_nonmotor":{"label":"الرياضات"},"stars":{"label":"نجوم","terms":"نجوم"},"start_date":{"label":"تاريخ البدء","placeholder":"YYYY-MM-DD","terms":"تاريخ البدء,تاريخ الانطلاق"},"step_count":{"label":"عدد الخطوات","terms":"عدد الخطوات"},"stile":{"label":"النوع"},"stop":{"label":"نوع التوقف","options":{"all":"كل الطرق","minor":"طريق فرعي"}},"street_cabinet":{"label":"النوع","terms":"نوع,صنف,نمط"},"stroller":{"label":"السماح بدخول عربيات الأطفال","options":{"limited":"محدود","no":"لا","yes":"نعم"},"terms":"السماح بدخول عربيات الأطفال"},"structure":{"label":"البنية","options":{"bridge":"جسر","cutting":"تضاريس مقطوعة ومحفورة ليعبرها ويشقها طريق ما","embankment":"سطح مرفوع يسير عليه الطريق (قد تكون مردومة)","ford":"مخاضة (طريق يشق مجرى مائي)","tunnel":"نفق يعبر من خلاله الطريق"},"placeholder":"غير معروف","terms":"هيكلة,بنية,منظومة"},"structure_canal":{"label":"بنية","options":{"bridge":"جسر","tunnel":"نفق"},"placeholder":"غير معروفة"},"structure_power":{"label":"بنية","options":{"lattice":"شبكة فولاذية","solid":"صلب","tubular":"انبوبي"}},"structure_waterway":{"label":"البنية","options":{"tunnel":"نفق"},"placeholder":"مجهول"},"studio":{"label":"النوع"},"subject":{"label":"الموضوع","terms":"الموضوع"},"subject/wikidata":{"label":"موضوع ويكي بيانات","terms":"موضوع ويكي بيانات"},"substance":{"label":"مادة","options":{"fuel":"وقود","gas":"غاز طبيعي","hot_water":"ماء ساخن","sewage":"مياه المجاري","water":"مياه شرب"}},"substation":{"label":"النوع","options":{"industrial":"صناعي"}},"substation_pipeline":{"label":"نوع","options":{"compression":"ضغط","field_gathering":"ميدان تجمع","industrial":"صناعي","measurement":"قياس","transmission":"مسارات النقل","valve":"صمام","valve_group":"مجموعة صمامات"}},"supervised":{"label":"يشرف عليها","terms":"يشرف عليها,مراقبة,يوجد شخص يديرها,خاضعة للإشراف"},"support":{"label":"دعم","terms":"دعم,مساعدة,مساندة"},"surface":{"label":"السطح","options":{"artificial_turf":"عشب صناعي","asphalt":"أسفلت","clay":"الطين","compacted":"مضغوط","concrete":"خرسانه/اسمنت","dirt":"ترابية","grass":"عشب","gravel":"حصباء/حصى","ground":"أرضي","metal":"معدني","paved":"مرصوف/معبد","paving_stones":"مرصوف بالطوب","pebblestone":"بحص متنوع","salt":"ملح","sand":"رمل","tartan":"طرطان","unpaved":"غير مرصوف/معبد","wood":"خشبي","woodchips":"رقائق الخشب"},"terms":"السطح,سطح,أديم"},"surveillance":{"label":"نوع المراقبة"},"surveillance/type":{"label":"نوع المراقبة","options":{"ALPR":"القارئ الآلي للوحات المركبات","camera":"كاميرا","guard":"حارس"}},"surveillance/zone":{"label":"منطقة مراقبة"},"survey/date":{"label":"تاريخ آخر تحقق واستقصاء شخصي","terms":"تاريخ آخر تحقق واستقصاء شخصي,تاريخ آخر تحقق واستقصاء واقعي,تاريخ آخر تحقق واستقصاء موثق"},"survey_point/datum_aligned":{"label":"تتماشى مع المسند الجيوديسي المحلي"},"survey_point/purpose":{"label":"الغرض من نقطة الاستطلاع","options":{"both":"كليهما","horizontal":"المحاذاة الأفقية","vertical":"المحاذاة العمودية"}},"survey_point/structure":{"label":"البنية والشكل","options":{"beacon":"كبير مثبت بشكل رباعي","block":"صبة خرسانية","bracket":"حامل","cairn":"رِجم","cut":"خط مقصوص","indented_pin":"دبوس بمسافة بادئة","magnet":"مغناطيس","medallion":"ميدالية","pillar":"عمود","pin":"دبوس","plaque":"لوح جداري","pole":"عمود طويل"}},"swimming_pool":{"label":"النوع","options":{"spa":"منتجع صحي"}},"switch":{"label":"النوع","options":{"circuit_breaker":"قاطع دائرة كهربية","disconnector":"فاصل دائرة كهربية","earthing":"الأرضي","mechanical":"ميكانيكي"}},"tactile_paving":{"label":"الرصيف البارز (للمكفوفين)","terms":"الرصيف البارز (للمكفوفين),رصيف المكفوفين,طوب مخصص للمكفوفين,أرضية مشي المكفوفين,الرصيف البارز (للعميان)"},"takeaway":{"label":"سفري/وجبات خارجية","options":{"no":"لا","only":"لا يوجد أكل محلي فقط وجبات خارجية/سفري ","yes":"نعم"},"placeholder":"نعم ، لا ، فقط سفري/طلبات خارجية...","terms":"سفري,تيك أوي,طلبات خارجية,طلبات جاهزة"},"target":{"label":"Target"},"taxi_vehicle":{"options":{"motorcar":{"title":"سيارة"},"motorcycle":{"title":"دراجة نارية"}}},"taxon":{"label":"الأصنوفة","placeholder":"Acer platanoides Columnare, Pyrus calleryana Chanticleer …","terms":"التصنيف"},"tee":{"label":"لون / نوع نقطة الإنطلاق"},"telecom":{"label":"النوع","options":{"connection_point":"وصلة","data_center":"مركز بيانات","service_device":"جهاز الخدمة"}},"telecom/medium":{"label":"وسيط"},"telescope/type":{"label":"النوع"},"tidal":{"label":"المد والجزر","terms":"مد وجزر"},"to":{"label":"إلى"},"toilets":{"label":"مراحيض","terms":"مراحيض,دورات مياة,حمامات"},"toilets/disposal":{"label":"طريقة التصريف","options":{"bucket":"حاوية تفرغ بشكل دوري","chemical":"حفرة معالجة بمواد كيميائية","flush":"شطف/سيفون/ماء متدفق","pitlatrine":"حفرة مرحاض"}},"toilets/handwashing":{"label":"مغاسل يدين","terms":"مغاسل يدين,مغسلة,ميضأة"},"toilets/menstrual_products":{"options":{"no":"لا"}},"toilets/position":{"label":"أنواع المراحيض","terms":"المراحيض,وضعيات قضاء الحاجة"},"toilets/wheelchair":{"label":"مرحاض يستقبل الكراسي المتحركة","options":{"limited":"محدودة","no":"لا","yes":"نعم"}},"toll":{"label":"رسوم","terms":"رسوم"},"tomb":{"label":"النوع","options":{"columbarium":"أكشاك الجرار (كولومباريوم)","crypt":"سرداب","hypogeum":"هيبوجيوم","mausoleum":"Mausoleum","pyramid":"هرم","sarcophagus":"التابوت الحجري","table":"هضبة المرور","tumulus":"جثوة","vault":"خزنة/خزانات"}},"tourism":{"label":"النوع"},"tower/construction":{"label":"وصف بناء البرج","placeholder":"مشدود ، مبني هيكلياً، مخفي ، ..."},"tower/platforms":{"label":"منصات","placeholder":"1 ، 2 ، 3 ..."},"tower/type":{"label":"النوع"},"townhall/type":{"label":"النوع"},"tracktype":{"label":"تصنيف المسار","options":{"grade2":"مستوي في المعظم: وهو مسار عبر الحصى/صخور المختلطة مع بعض المواد اللينة","grade3":"مسار مختلط بين موارد صلبة ولينة","grade4":"لين في المعظم: مسار على تربة/رمال/عشب مختلطة مع بعض المواد الصلبة مثل الحصى","grade5":"لين: مسار يمر عبر التربة /الرمال /العشب ولا يوجد فيه حصى وصخور"},"placeholder":"مستوي، معظمه مستوي، لين..."},"trade":{"label":"النوع"},"traffic_calming":{"label":"النوع","options":{"bump":"مطب قصير لتخفيف السرعة","chicane":"منعطفات صناعية لتخفيف السرعة","choker":"بروز هزاز للتنبية بتهدئة السرعة","cushion":"مطبات مركبات صغيرة","dip":"منخفض لتهدئة السرعة ويسمح بعبور المياة","hump":"مطب طويل لتخفيف السرعة","mini_bumps":"مطبات تخفيف سرعة صغيرة","rumble_strip":"مطبات قصيرة ومنخفضة متتالية على شكل شريط","table":"مطب مرتفع وطويل لتخفيف السرعة بشكل جبري"}},"traffic_calming_road":{"label":"تخفيف السرعة"},"traffic_sign":{"label":"علامة مرورية"},"traffic_sign/direction":{"label":"اتجاه علامة الطريق","options":{"backward":"للخلف","both":"للاتجاهين","forward":"للأمام"}},"traffic_signals":{"label":"النوع"},"traffic_signals/arrow":{"label":"سهم اللمس","terms":"سهم اللمس"},"traffic_signals/countdown":{"label":"العداد التنازلي","terms":"العداد التنازلي"},"traffic_signals/direction":{"label":"اتجاه علامة الطريق","options":{"backward":"إلى الخلف","both":"كلاهما / الكل","forward":"إلى الأمام"}},"traffic_signals/minimap":{"label":"خريطة اللمس","terms":"خريطة اللمس"},"traffic_signals/sound":{"label":"إشارات بالصوت","options":{"locate":{"description":"إشارات بالصوت","title":"محدد موقع زر الاتصال"},"no":"لا","walk":{"description":"لا يوجد سوى إشارة عند السماح بالمشي","title":"مؤشر المشي"},"yes":"نعم"}},"traffic_signals/vibration":{"label":"اهتزاز"},"trail_visibility":{"label":"مدى وضوح الدرب/المسار","options":{"bad":"سيء: لا يوجد علامات إرشادية، المسار غير مرئي أو غير مطروق","excellent":"ممتاز: مسارات واضحة وعلامات إرشادية في كل مكان","good":"جيد: علامات واضحة ، قد تحتاج للبحث عن المسار في بعض الأحيان","horrible":"مخيف: بلا مسار/غير مطروق بالغالب، ولابد من توفر مهارات لاجتياز المسار","intermediate":"متوسط: علامات إرشادية قليلة: والمسار مرئي في الغالب","no":"غير واضح أبداً: بلا مسار وغير مطروق، ولابد من مهارات عالية وتوجيه لاجتياز المكان"},"placeholder":"ممتاز، جيد، سيء...","terms":"مدى وضوح الدرب,مدى وضوح المسار,مدى وضوح الطريق لغير السيارات والمركبات"},"transformer":{"label":"نوع المحول الكهربائي","options":{"auxiliary":"مساعد: يغذي النظم الداخلية في المحطات الفرعية","converter":"محول: يغذي محولات الطاقة","distribution":"موزع : يغذي المستهلكين النهائيين ، ويتم تركيبه خارج المحطات الفرعية","generator":"مولد: يقوم بتصعيد الجهد في محطات توليد الكهرباء","main":"رئيسي: لإعادة إرسال الطاقة","phase_angle_regulator":"الداعم التربيعي","yes":"يؤدي دور غير معروف"}},"trees":{"label":"أشجار"},"trench":{"label":"النوع"},"trolley_wire":{"label":"كابلات/أسلاك ترولي علوية","terms":"كابلات/أسلاك ترولي علوية"},"tunnel":{"label":"النوع","placeholder":"الافتراضي"},"tunnel_combo":{"label":"النوع","options":{"avalanche_protector":"حامي انهيار ثلجي","building_passage":"ممر داخل البناء","culvert":"بربخ"}},"turning_circle":{"label":"شكل"},"two_sided":{"label":"ذو وجهين","options":{"undefined":"لا","yes":"نعم"}},"usage_rail":{"label":"نوع الاستخدام","options":{"branch":"فرعي/ثانوي","industrial":"صناعي","main":"رئيسي","military":"عسكري","test":"تجريبي","tourism":"سياحي"},"terms":"نوع الإستخدام"},"usage_waterway":{"label":"نوع الاستخدام","options":{"headrace":"إنتاج الكهرباء من انصباب الماء من الأنابيب","irrigation":"مجرى مخصص للري الزراعي","spillway":"مجرى الانسكاب","tailrace":"انتاج الكهرباء من مخرجات التوربينات","transmission":"مسارات النقل","transportation":"النقل"}},"utility":{"label":"المرفق","options":{"gas":"غاز","oil":"نفط","power":"طاقة","telecom":"الاتصالات السلكية واللاسلكية","water":"مياه"}},"utility_semi":{"label":"المرافق"},"valve":{"label":"النوع"},"vehicles":{"label":"مركبات","options":{"bus":"حافلة","ferry":"عبّارة (مركب بحري)","light_rail":"قطار خفيف","monorail":"سكة حديد أحادية","subway":"مترو الأنفاق","train":"قطار","tram":"ترام","trolleybus":"حافلة ترولي"}},"vending":{"label":"أنواع البضائع","options":{"bread":"خبز","cigarettes":"Cigarettes","coffee":"قهوة","condoms":"Condoms","drinks":"المشروبات","eggs":"بيض","electronics":"الالكترونيات","excrement_bags":"أكياس البراز","food":"أغذية","fuel":"وقود","ice_cream":"بوظة/آيسكريم","milk":"حليب","newspapers":"Newspapers","pizza":"بيتزا","sweets":"حلويات","water":"مياه شرب"}},"vhf":{"label":"رقم موجة VHF","terms":"رقم موجة vhf,رقم قناة vhf"},"via":{"label":"عبر"},"video_calls":{"label":"Video Calls","terms":"video calls"},"visibility":{"label":"مجال الرؤية","options":{"area":"يرى من 20 متر (65 قدم) وأكثر","house":"يرى من 5 أمتار (16 قدم) فما دون","street":"يرى من 5 إلى 20 متر (16 إلى 65 قدم)"},"terms":"الوضوح/مدى الرؤية"},"volcano/status":{"label":"حالة البركان","options":{"active":"نشط","dormant":"في سبات عميق","extinct":"خامد"}},"volcano/type":{"label":"نوع البركان","options":{"scoria":"مخروطي (من جفاء البركان)","shield":"درعي (شكل درع)","stratovolcano":"طبقي"}},"voltage":{"label":"الجهد الكهربائي"},"voltage/primary":{"label":"الجهد الكهربائي الأساسي","terms":"الجهد الكهربائي الأساسي,الفولت الكهربائي الأساسي،الجهد الكهربائي الرئيسي,الفولت الكهربائي الرئيسي"},"voltage/secondary":{"label":"الجهد الكهربائي الثانوي","terms":"الجهد الكهربائي الثانوي,الفولت الكهربائي الثانوي"},"voltage/tertiary":{"label":"الجهد الكهربائي العالي","terms":"الجهد الكهربائي العالي,الجهد العالي,الفولت العالي"},"wall":{"label":"النوع"},"waste":{"label":"نفايات","options":{"cigarettes":"Cigarettes","trash":"سلة المهملات"}},"water":{"label":"النوع"},"water_point":{"label":"نقطة تعبئة مياة شرب"},"water_source":{"label":"مصدر المياه","options":{"pond":"بركة ماء","river":"نهر / مجرى مائي واسع","stream":"مجرى مائي / شعيب","water_tank":"خزان ماء"}},"water_tank/volume":{"label":"السعة (لتر)","placeholder":"10000, 20000, 30000…","terms":"الحجم (لتر)"},"waterway":{"label":"النوع"},"website":{"label":"الموقع الإلكتروني","placeholder":"https://example.com","terms":"الموقع الإلكتروني,الصفحة الإلكترونية"},"website/menu":{"placeholder":"https://example.com"},"wetland":{"label":"النوع","options":{"bog":"رخاخ","fen":"مستنقع أعشاب مغذى من المياه الجوفية","mangrove":"غابات المانغروف","marsh":"هور/ سبخة","reedbed":"مقصبة","saltmarsh":"مستنقع الملح الساحلي","string_bog":"سلسلة رخاخ","swamp":"مستنقع","tidalflat":"المد و الجزر منبسط","wet_meadow":"مرعى/مرج رطب طوال العام"}},"wheelchair":{"label":"إمكانية دخول/وصول كراسي المعاقين","options":{"limited":"محدودة","no":"لا، غير ممكنة","yes":"نعم ممكنة"},"terms":"إمكانية دخول كراسي المعاقين,إمكانية وصول كراسي المعاقين,إمكانية دخول كراسي ذوي الإحتياجات الخاصة,إمكانية وصول ذوي الإحتياجات الخاصة"},"wholesale":{"label":"بيع بالجملة"},"width":{"label":"العرض (بالمتر)","terms":"العرض (بالمتر)"},"wikidata":{"label":"معرف ويكي بيانات","terms":"معرف ويكي بيانات,رقم ويكي بيانات"},"wikimedia_commons":{"label":"صفحة ويكيميديا كومنز","placeholder":"File:Example.jpg","terms":"صفحة ويكيميديا كومنز"},"wikipedia":{"label":"ويكيبيديا","terms":"ويكيبيديا"},"windings":{"label":"عدد لفات الملف الكهرومغناطيسي/الوشيعة","placeholder":"1, 2, 3...","terms":"الملف الكهرومغناطيسي,الوشيعة"},"windings/auto":{"label":"محول ذاتي","options":{"no":"لا","undefined":"يفترض أن يكون لا","yes":"نعم"},"terms":"محول ذاتي"},"windings/configuration":{"label":"شكل الملف الكهرومغناطيسي/الوشيعة","options":{"delta":"دلتا","leblanc":"لوبلان","open":"مفتوحة","open-delta":"دلتا مفتوحة","scott":"سكوت","star":"ستار / واي","zigzag":"زيق زاق"},"terms":"الملف الكهرومغناطيسي,الوشيعة"}},"presets":{"addr/interpolation":{"name":"عنوان الاستيفاء"},"address":{"name":"العنوان","terms":"عنوان,العنوان,الموقع"},"advertising/billboard":{"name":"لوحة إعلانات كبيرة ومرفوعة (على الشارع)","terms":"لوحة إعلانات شوارع,لوحة إعلانات كبيرة,لوحة إعلانات الطريق,لوحة إعلانات مثبته بعامود كبير"},"advertising/board":{"name":"لوحة الإعلانات والملصقات","terms":"لوحة إعلانات وملصقات,لوحة إعلانات متعددة,لوحة إعلانات معلقة بدبابيس"},"advertising/column":{"name":"عمود إعلاني","terms":"عمود دعائي,أعمدة موريس,أعمدة أسطوانية للدعايات والإعلانات"},"advertising/poster_box":{"name":"لوحة دعايات في إطار","terms":"دعايات في إطار,دعايات في صندوق مربع,دعايات شوارع على مستوى الانسان"},"advertising/totem":{"name":"لوحة إعلان مستطيلة عمودية","terms":"لوحة إعلان مستطيلة عمودية,لوحة إعلان بشكل طوطم,لوحة دعايات مستطيلة عمودية"},"aerialway":{"name":"عناصر التنقل الجوي بالكابلات"},"aerialway/cable_car":{"name":"القاطرة المعلقة (تلفريك)","terms":"تلفريك، معبر هوائي، مصعد هوائي,القاطرة المعلقة,التيليفيريك"},"aerialway/chair_lift":{"name":"مصعد تزلج","terms":"مصعد تزلج، تلسياج"},"aerialway/drag_lift":{"name":"خط سحب المتزلجين","terms":"خط سحب المتزلجين"},"aerialway/gondola":{"name":"جندول","terms":"جندول,تيلفريك يدور بشكل دائري"},"aerialway/goods":{"name":"نقل البضائع بالكابلات","terms":"نقل البضائع بالكابلات,نقل البضائع بالتيلفريك"},"aerialway/j-bar":{"name":"خط سحب نوع جَي","terms":"خط سحب نوع جَي"},"aerialway/magic_carpet":{"name":"خط سحب للأطفال","terms":"خط سحب للأطفال"},"aerialway/mixed_lift":{"name":"خط سحب مختلط","terms":"خط سحب مختلط"},"aerialway/platter":{"name":"خط سحب بشكل طبق","terms":"خط سحب بشكل طبق"},"aerialway/pylon":{"name":"برج التلفريك / المصعد التزلج","terms":"برج التلفريك ; المصعد التزلج"},"aerialway/rope_tow":{"name":"حبل سحب الرافعة","terms":"حبل سحب الرافعة"},"aerialway/t-bar":{"name":"خط سحب بشكل تي","terms":"خط سحب بشكل تي"},"aerialway/zip_line":{"name":"كابل التنقل المنزلق","terms":"كابل التنقل"},"aeroway":{"name":"عناصر التنقل الجوي"},"aeroway/aerodrome":{"name":"مطار","terms":"مطار"},"aeroway/apron":{"name":"مواقف الطائرات","terms":"مواقف الطائرات,مرابض الطائرات"},"aeroway/gate":{"name":"بوابة مطار","terms":"بوابة مطار"},"aeroway/hangar":{"name":"حظيرة طائرات","terms":"حظائر الطائرات,حظيرة الطائرات"},"aeroway/helipad":{"name":"مهبط الهليكوبتر","terms":"مهبط للطائرات العمودية,مهبط الهليكوبتر"},"aeroway/holding_position":{"name":"مواضع انتظار طائرات","terms":"مواضع انتظار طائرات,مواقف انتظار طائرات"},"aeroway/jet_bridge":{"name":"جسر إركاب","terms":"جسر الطائرة,خرطوم الطائرة,جسر بين المبنى والطائرة"},"aeroway/parking_position":{"name":"موضع وقوف الطائرات","terms":"موضع وقوف الطائرات"},"aeroway/runway":{"name":"مدرج المطار","terms":"مدرج إقلاع وهبوط,مدرج المطار"},"aeroway/spaceport":{"name":"ميناء فضائي","terms":"ميناء فضائي,مطار فضائي"},"aeroway/taxiway":{"name":"طريق للمدرج","terms":"طريق للمدرج,طريق تدريج الطائرات"},"aeroway/terminal":{"name":"صالة مطار","terms":"صالة مطار,محطة مطار"},"aeroway/windsock":{"name":"كم الريح","terms":"كُم الريح"},"allotments/plot":{"name":"قطعة حديقة تشاركية","terms":"قطعة حديقة تشاركية,قطعة حديقة مشتركة,قطعة حديقة اجتماعية,قطعة حديقة عائلية"},"amenity":{"name":"مرفق"},"amenity/animal_boarding":{"name":"منشأة رعاية حيوانات","terms":"منشأة رعاية حيوانات"},"amenity/animal_breeding":{"name":"منشأة تربية وبيع حيوانات","terms":"منشأة تربية وبيع حيوانات"},"amenity/animal_shelter":{"name":"مأوى حيوانات","terms":"مأوى حيوانات; ملجأ حيوانات"},"amenity/arts_centre":{"name":"مركز فنون","terms":"مركز الفنون، معرض الفن، ساحة عرض، ملتقى فني"},"amenity/atm":{"name":"صراف آلي","terms":"صراف آلي,ماكينة سحب,صرافة,مكينة صراف آلية"},"amenity/bank":{"name":"بنك","terms":"بنك,مصرف"},"amenity/bar":{"name":"حانة","terms":"بار,حانة,خمَّارَة,مَشْرَب"},"amenity/bar/lgbtq":{"name":"LGBTQ+ Bar"},"amenity/bbq":{"name":"مكان مخصص للشواء","terms":"شواء، باربيكيو"},"amenity/bench":{"name":"مقعد","terms":"مقعد,مقعد طويل"},"amenity/bicycle_parking":{"name":"موقف دراجات هوائية","terms":"موقف دراجات هوائية; موقف; دراجة; دراجات"},"amenity/bicycle_parking/building":{"name":"مرآب وقوف دراجات","terms":"مرآب وقوف دراجات"},"amenity/bicycle_parking/lockers":{"name":"خزائن الدراجات","terms":"خزائن الدراجات"},"amenity/bicycle_parking/shed":{"name":"سقيفة/مظلة دراجات","terms":"سقيفة دراجات,مخزن دراجات"},"amenity/bicycle_rental":{"name":"تأجير دراجات","terms":"تأجير دراجات هوائية; تأجير; دراجة; دراجات; هوائي; هوائية"},"amenity/bicycle_repair_station":{"name":"ورشة إصلاح دراجات هوائية","terms":"دراجات هوائية; دراجة; اصلاح; تصليح دراجات; تصليح"},"amenity/biergarten":{"name":"Biergarten"},"amenity/binoculars":{"name":"مناظير مثبتة","terms":"مناظير مثبتة"},"amenity/boat_rental":{"name":"محل استئجار قوارب","terms":"تأجير القوارب، ساحة الزوارق، تأجير زوارق"},"amenity/boat_storage":{"name":"مخزن القوارب","terms":"مخزن القوارب,مستودع القوارب"},"amenity/bureau_de_change":{"name":"تحويل أموال","terms":"تحويل أموال,صرافة"},"amenity/bus_station":{"name":"محطة حافلات"},"amenity/cafe":{"name":"مقهى","terms":"مقهى"},"amenity/cafe/bubble_tea":{"name":"مقهى شاي الفقاعات","terms":"مقهى شاي الفقاعات"},"amenity/cafe/coffee_shop":{"name":"مقهى","terms":"مقهى قهوة مختصة,مقهى مفتوح"},"amenity/car_pooling":{"name":"محطة تجميع السيارات","terms":"محطة تجميع السيارات"},"amenity/car_rental":{"name":"محل إيجار سيارات","terms":"محل استئجار السيارات"},"amenity/car_sharing":{"name":"محطة مشاركة السيارات","terms":"محطة مشاركة السيارات"},"amenity/car_wash":{"name":"غسيل سيارات","terms":"غسيل السيارات"},"amenity/casino":{"name":"كازينو","terms":"كازينو"},"amenity/charging_station":{"name":"محطة شحن","terms":"محطة شحن"},"amenity/childcare":{"name":"رعاية الأطفال","terms":"رعاية الأطفال; حضانة"},"amenity/cinema":{"name":"سينما","terms":"سينما,صالة سينما,دار السينما"},"amenity/clinic":{"name":"عيادة","terms":"عيادة; مستوصف"},"amenity/clinic/abortion":{"name":"عيادة الإجهاض","terms":"عيادة الإجهاض"},"amenity/clinic/dialysis":{"name":"غسيل كلى"},"amenity/clinic/fertility":{"name":"عيادة الخصوبة","terms":"عيادة الخصوبة"},"amenity/clock":{"name":"ساعة","terms":"ساعة"},"amenity/clock/sundial":{"name":"مزولة","terms":"المزولة الشمسية"},"amenity/community_centre":{"name":"مركز اجتماعي","terms":"مركز اجتماعي"},"amenity/community_centre/lgbtq":{"name":"LGBTQ+ Community Center"},"amenity/community_centre/youth_centre":{"name":"مركز الشباب","terms":"مركز الشباب,بيت الشباب"},"amenity/compressed_air":{"name":"منفاخ إطارات دراجات","terms":"بنشر دراجات"},"amenity/conference_centre":{"name":"مركز مؤتمرات","terms":"مركز مؤتمرات"},"amenity/courthouse":{"name":"محكمة","terms":"مجمع محاكم,دار عدل,دار قضاء"},"amenity/coworking_space":{"name":"مساحة عمل مشتركة"},"amenity/crematorium":{"name":"محرقة موتى","terms":"محرقة موتى,محرقة جثث الموتى"},"amenity/dentist":{"name":"طبيب أسنان","terms":"طبيب أسنان"},"amenity/dive_centre":{"name":"مركز للغوص","terms":"مركز للغوص"},"amenity/doctors":{"name":"طبيب","terms":"طبيب"},"amenity/doctors/podiatry":{"name":"طبيب الأقدام","terms":"طبيب الأقدام; الأرجل"},"amenity/dojo":{"name":"دوجو / أكاديمية الفنون القتالية","terms":"دوجو,أكاديمية الفنون القتالية"},"amenity/dressing_room":{"name":"غرفة التبديل","terms":"غرفة التبديل,غرفة تبديل اللاعبين"},"amenity/drinking_water":{"name":"مياه شرب","terms":"ماء الشرب"},"amenity/driver_training":{"name":"أراضي تعليم السيلقة"},"amenity/embassy":{"name":"سفارة"},"amenity/events_venue":{"name":"صالة مناسبات / قصر أفراح","terms":"صالة مناسبات,قصر أفراح"},"amenity/exhibition_centre":{"name":"Exposition Center"},"amenity/fast_food":{"name":"وجبات سريعة","terms":"مأكولات سريعة"},"amenity/fast_food/burger":{"name":"برجر وجبة سريعة","terms":"إفطار,عشاء,طعام"},"amenity/fast_food/chicken":{"name":"دجاج وجبة سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/fast_food/donut":{"name":"دونات وجبة سريعة","terms":"دونات"},"amenity/fast_food/fish_and_chips":{"name":"سمك ورقائق بطاطس وجبة سريعة","terms":"إفطار,قهوة,عشاء,طعام"},"amenity/fast_food/hot_dog":{"name":"هوت دوج وجبة سريعة","terms":"هوت دوج وجبة سريعة"},"amenity/fast_food/ice_cream":{"name":"أيس كريم وجبة سريعة"},"amenity/fast_food/juice":{"name":"عصير وجبة سريعة","terms":"عصير وجبة سريعة"},"amenity/fast_food/kebab":{"name":"كباب وجبة سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/fast_food/mexican":{"name":"طعام مكسيكي وجبة سريعة","terms":"مكسيكي"},"amenity/fast_food/pizza":{"name":"بيتزا وجبات سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/fast_food/sandwich":{"name":"شطيرة وجبات سريعة","terms":"إفطار,مقصف,عشاء,طعام"},"amenity/ferry_terminal":{"name":"محطة الركاب"},"amenity/fire_station":{"name":"محطة إطفاء حريق","terms":"محطة إطفاء"},"amenity/food_court":{"name":"قاعة طعام","terms":"وجبات سريعة,مطعم,طعام"},"amenity/fountain":{"name":"نافورة","terms":"نافورة"},"amenity/fuel":{"name":"محطة وقود","terms":"محطة بترول,محطة غاز"},"amenity/gambling":{"name":"Gambling Hall"},"amenity/give_box":{"name":"صندوق مشاركة الأشياء المجانية","terms":"صندوق مشاركة الأشياء المجانية"},"amenity/grave_yard":{"name":"مقبرة","terms":"مقبرة,مدفن"},"amenity/grit_bin":{"name":"صندوق حصى وملح","terms":"صندوق حصى وملح"},"amenity/hospital":{"name":"أرض مستشفى","terms":"أرض مستشفى; مستشفى"},"amenity/hunting_stand":{"name":"منصة صيد","terms":"منصة صيد,برج صيد"},"amenity/ice_cream":{"name":"محل بيع المثلجات","terms":"مثلجات,ايس كريم"},"amenity/internet_cafe":{"name":"مقهى إنترنت","terms":"مقهى إنترنت"},"amenity/karaoke_box":{"name":"Karaoke Box"},"amenity/lavoir":{"name":"مكان غسيل الملابس يدوياً","terms":"مكان غسيل الملابس يدوياً"},"amenity/letter_box":{"name":"صندوق البريد","terms":"صندوق البريد"},"amenity/library":{"name":"مكتبة عامة","terms":"مكتبة"},"amenity/loading_dock":{"name":"رصيف التحميل","terms":"رصيف التحميل"},"amenity/lounger":{"name":"Lounger"},"amenity/love_hotel":{"name":"Love Hotel"},"amenity/marketplace":{"name":"محل تسوق","terms":"سوق,سوق تجارية,ساحة السوق"},"amenity/monastery":{"name":"Monastery Grounds"},"amenity/money_transfer":{"name":"محل لتحويل الأموال","terms":"محل لتحويل الأموال"},"amenity/mortuary":{"name":"المشرحة","terms":"المشرحة"},"amenity/motorcycle_parking":{"name":"موقف دراجات نارية","terms":"دراجة نارية,دراجة بخارية; موقف; مواقف; ركن"},"amenity/motorcycle_rental":{"name":"إيجار دراجات نارية","terms":"إيجار دراجات نارية"},"amenity/nightclub":{"name":"ملهى ليلي","terms":"كباريه"},"amenity/nightclub/lgbtq":{"name":"LGBTQ+ Nightclub"},"amenity/nursing_home":{"name":"دار التمريض"},"amenity/parcel_locker":{"name":"صناديق استلام الشحنات البريدية","terms":"صناديق استلام البريد"},"amenity/parking":{"name":"مكان انتظار سيارات","terms":"مكان انتظار سيارات"},"amenity/parking/multi-storey":{"name":"مرآب وقوف متعدد الطوابق","terms":"جراج,مرآب"},"amenity/parking/park_ride":{"name":"مكان الاصطفاف والركوب","terms":"مكان الاصطفاف والركوب"},"amenity/parking/street-side":{"name":"مواقف بجانب الشارع","terms":"مواقف بجانب الشارع"},"amenity/parking/underground":{"name":"موقف تحت الأرض","terms":"جراج"},"amenity/parking_entrance":{"name":"مدخل / مخرج مرآب السيارات","terms":"مدخل / مخرج موقف سيارات"},"amenity/parking_space":{"name":"موقف سيارات","terms":"موقف سيارات"},"amenity/parking_space/disabled":{"name":"أماكن المواقف المتاحة","terms":"أماكن المواقف المتاحة,نوع أماكن المواقف المتاحة"},"amenity/payment_centre":{"name":"مركز دفع نقود","terms":"مركز دفع نقود"},"amenity/payment_terminal":{"name":"محطة دفع نقود","terms":"محطة دفع نقود"},"amenity/pharmacy":{"name":"صيدلية","terms":"أدوات النظافة الشخصية والتجميل"},"amenity/photo_booth":{"name":"Photo Booth"},"amenity/place_of_worship":{"name":"مكان عبادة","terms":"محل عبادة"},"amenity/place_of_worship/buddhist":{"name":"معبد بوذي","terms":"معبد بوذي"},"amenity/place_of_worship/christian":{"name":"كنيسية مسيحية"},"amenity/place_of_worship/christian/jehovahs_witness":{"name":"Kingdom Hall of Jehovah's Witnesses"},"amenity/place_of_worship/christian/la_luz_del_mundo":{"name":"La Luz del Mundo Temple"},"amenity/place_of_worship/christian/quaker":{"name":"Quaker Friends Meeting House"},"amenity/place_of_worship/hindu":{"name":"معبد هندوسي"},"amenity/place_of_worship/jewish":{"name":"كنيس يهودي"},"amenity/place_of_worship/muslim":{"name":"مسجد","terms":"مسجد,جامع,مصلى,صلاة,مسلم,مسلمين"},"amenity/place_of_worship/shinto":{"name":"ضريح شنتو"},"amenity/place_of_worship/sikh":{"name":"معبد السيخ"},"amenity/place_of_worship/taoist":{"name":"معبد طاوي"},"amenity/planetarium":{"name":"قبة فلكية","terms":"قبة فلكية، قبة سماوية، بلانتاريوم"},"amenity/police":{"name":"شرطة","terms":"مركز الشرطة,الشرطة"},"amenity/polling_station":{"name":"Permanent Polling Place"},"amenity/post_box":{"name":"صندوق بريد عام","terms":"صندوق بريد عام"},"amenity/post_depot":{"name":"مكتب الفرز البريدي","terms":"مكتب الفرز البريدي"},"amenity/post_office":{"name":"مكتب البريد","terms":"دائرة البريد,مكتب البريد,مكتب بريد"},"amenity/prison":{"name":"مرافق/أراضي سجن","terms":"مرافق/أراضي سجن"},"amenity/pub":{"name":"حانة","terms":"مشرب,حانة,خمارة"},"amenity/pub/irish":{"name":"Irish Pub"},"amenity/pub/lgbtq":{"name":"LGBTQ+ Pub"},"amenity/pub/microbrewery":{"name":"Brewpub"},"amenity/public_bath":{"name":"دورة مياة عمومية","terms":"حمام عام,دورة مياة عمومية"},"amenity/public_bookcase":{"name":"خزانة كتب عامة","terms":"رف كتب عامة"},"amenity/ranger_station":{"name":"محطة الحراسة","terms":"محطة الحراسة"},"amenity/recycling":{"name":"إعادة التدوير"},"amenity/recycling/container/electrical_items":{"name":"حاوية نفايات إلكترونية","terms":"حاوية نفايات إلكترونية"},"amenity/recycling/container/green_waste":{"name":"حاوية نفايات خضراء","terms":"حاوية نفايات خضراء"},"amenity/recycling_centre":{"name":"مركز إعادة تدوير","terms":"مركز إعادة تدوير"},"amenity/refugee_site":{"name":"مخيم لاجئين","terms":"مخيم لاجئين"},"amenity/research_institute":{"name":"أراضي معهد بحوث","terms":"أراضي معهد بحوث، أرض معهد للبحث العلمي، أرض معهد الأبحاث العلمية، أرض بحث علمي"},"amenity/restaurant":{"name":"مطعم","terms":"مطعم"},"amenity/restaurant/american":{"name":"مطعم امريكي","terms":"مطعم امريكي"},"amenity/restaurant/asian":{"name":"مطعم آسيوي","terms":"مطعم آسيوي"},"amenity/restaurant/chinese":{"name":"مطعم صيني","terms":"مطعم صيني"},"amenity/restaurant/french":{"name":"مطعم فرنسي","terms":"مطعم فرنسي"},"amenity/restaurant/german":{"name":"مطعم ألماني","terms":"مطعم ألماني"},"amenity/restaurant/greek":{"name":"مطعم يوناني","terms":"مطعم يوناني"},"amenity/restaurant/indian":{"name":"مطعم هندي","terms":"مطعم هندي"},"amenity/restaurant/italian":{"name":"مطعم إيطالي","terms":"مطعم إيطالي"},"amenity/restaurant/japanese":{"name":"مطعم ياباني","terms":"مطعم ياباني"},"amenity/restaurant/mexican":{"name":"مطعم مكسيكي","terms":"مطعم مكسيكي"},"amenity/restaurant/noodle":{"name":"مطعم مكرونة","terms":"مطعم مكرونة"},"amenity/restaurant/pizza":{"name":"مطعم بيتزا","terms":"مطعم بيتزا"},"amenity/restaurant/seafood":{"name":"مطعم مأكولات بحرية","terms":"مطعم مأكولات بحرية"},"amenity/restaurant/steakhouse":{"name":"مطعم شرائح اللحم","terms":"مطعم شرائح اللحم"},"amenity/restaurant/sushi":{"name":"مطعم سوشي","terms":"مطعم سوشي"},"amenity/restaurant/thai":{"name":"مطعم تايلاندي","terms":"مطعم تايلاندي"},"amenity/restaurant/turkish":{"name":"مطعم تركي","terms":"مطعم تركي"},"amenity/restaurant/vietnamese":{"name":"مطعم فيتنامي","terms":"مطعم فيتنامي"},"amenity/sanitary_dump_station":{"name":"مكب صرف صحي للكرفانات","terms":"مكب دورات مياه الكرفانات"},"amenity/shelter":{"name":"مأوى/عشة","terms":"مأوى,ملجأ,ملاذ,سقيفة,وقاء,عشة,صندقه"},"amenity/shelter/gazebo":{"name":"شرفة أرضية","terms":"شرفة أرضية"},"amenity/shelter/lean_to":{"name":"كوخ داخل مبنى","terms":"كوخ بثلاث جدارن,عجاف,كوخ منحدر السطح,كوخ له جنب منفتح,كوخ ضمن مبنى"},"amenity/shelter/picnic_shelter":{"name":"يحمي من المطر","terms":"يحمي من المطر"},"amenity/shelter/public_transport":{"name":"مأوى العبور","terms":"مأوى العبور"},"amenity/shower":{"name":"دش استحمام","terms":"دش استحمام"},"amenity/smoking_area":{"name":"منطقة مخصصة للتدخين","terms":"منطقة مخصصة للتدخين"},"amenity/social_centre":{"name":"مركز اجتماعي","terms":"مركز اجتماعي"},"amenity/social_facility":{"name":"مرفق اجتماعي","terms":"مرفق اجتماعي"},"amenity/social_facility/ambulatory_care":{"name":"الرعاية الإسعافية","terms":"الرعاية الإسعافية"},"amenity/social_facility/food_bank":{"name":"بنك الطعام","terms":"بنك الطعام"},"amenity/social_facility/group_home":{"name":"دار المسنين","terms":"دار المسنين"},"amenity/social_facility/homeless_shelter":{"name":"ملجأ مشردين","terms":"ملجأ مشردين، مأوى"},"amenity/social_facility/nursing_home":{"name":"دار التمريض","terms":"دار التمريض"},"amenity/studio":{"name":"أستوديو","terms":"أستوديو; إذاعة; راديو; تلفزيون"},"amenity/studio/audio":{"name":"Recording Studio"},"amenity/studio/radio":{"name":"Radio Station"},"amenity/studio/television":{"name":"Television Station"},"amenity/studio/video":{"name":"Film Studio"},"amenity/taxi":{"name":"موقف تاكسي","terms":"موقف أجرة"},"amenity/telephone":{"name":"هاتف","terms":"هاتف,تلفون"},"amenity/theatre":{"name":"مسرح","terms":"مسرح"},"amenity/ticket_validator":{"name":"مدقق التذاكر","terms":"مدقق التذاكر"},"amenity/toilets":{"name":"غرفة استراحة","terms":"غرفة استراحة"},"amenity/toilets/disposal/flush":{"name":"مرحاض له نظام شطف","terms":"مرحاض له سيفون,مرحاض يتخلص من نفاياته بالماء"},"amenity/toilets/disposal/pitlatrine":{"name":"مرحاض ذو حفرة","terms":"مرحاض له مجرى طويل,مرحاض له حفره من أسفله"},"amenity/toilets/portable":{"name":"مرحاض متنقل","terms":"مرحاض يصب في مواد كيميائية"},"amenity/townhall":{"name":"مبنى البلدية/المركز الإداري","terms":"المجلس البلدي,دار البلدية,قاعة المدينة،المركز الإداري"},"amenity/townhall/city":{"name":"مركز المدينة/إمارة المدينة","terms":"مركز المدينة,قاعة البلدية،مجلس المدينة،مبنى البلدية"},"amenity/toy_library":{"name":"Toy Library"},"amenity/trolley_bay":{"name":"عربة كورال","terms":"عربة كورال"},"amenity/vacuum_cleaner":{"name":"محطة مكنسة سيارات","terms":"محطة كنس وتنظيف داخلي السيارة"},"amenity/vehicle_inspection":{"name":"الفحص الدوري","terms":"الفحص الدوري,فحص السيارات"},"amenity/vending_machine":{"name":"ماكينة البيع الذاتي","terms":"آلة بيع،ماكينة بيع آلي"},"amenity/vending_machine/bicycle_tube":{"name":"آلة بيع الأنبوب الداخلي للدراجة","terms":"آلة بيع الأنبوب الداخلي للدراجة"},"amenity/vending_machine/bottle_return":{"name":"آلة تدوير قوارير بمقابل مالي","terms":"آلة بيع عكسي,آلة تدوير قوارير,آلة تدوير قوارير علب,آلة تدوير عبوات زجاجية"},"amenity/vending_machine/bread":{"name":"آلة بيع آلي للخبز","terms":"آلة بيع ذاتي للخبز"},"amenity/vending_machine/cigarettes":{"name":"آلة بيع سجائر","terms":"سجائر"},"amenity/vending_machine/coffee":{"name":"آلة بيع قهوة","terms":"قهوة"},"amenity/vending_machine/condoms":{"name":"آلة بيع واقي ذكري"},"amenity/vending_machine/drinks":{"name":"آلة بيع مشروبات","terms":"مشروبات"},"amenity/vending_machine/eggs":{"name":"آلة بيع آلي للبيض","terms":"آلة بيع للبيض"},"amenity/vending_machine/electronics":{"name":"آلة بيع إلكترونيات","terms":"بيع إلكترونيات"},"amenity/vending_machine/elongated_coin":{"name":"آلة صرف عملات معدينة","terms":"آلة صرف عملات مسطحة"},"amenity/vending_machine/excrement_bags":{"name":"موزع أكياس فضلات","terms":"موزع أكياس براز حيوانات"},"amenity/vending_machine/feminine_hygiene":{"name":"آلة بيع أغراض نظافة نسائية","terms":"آلة بيع أغراض صحية نسائية"},"amenity/vending_machine/food":{"name":"آلة بيع مواد غذائية","terms":"آلة بيع مواد غذائية"},"amenity/vending_machine/food/snacks":{"name":"آلة بيع الوجبات الخفيفة","terms":"آلة بيع الوجبات الخفيفة"},"amenity/vending_machine/ice_cream":{"name":"آلة بيع آيس كريم","terms":"آلة بيع آيس كريم,آلة بيع مثلجات"},"amenity/vending_machine/ice_cubes":{"name":"آلة بيع ثلج","terms":"آلة بيع ثلج"},"amenity/vending_machine/newspapers":{"name":"آلة بيع صحف يومية","terms":"آلة بيع جرائد"},"amenity/vending_machine/parking_tickets":{"name":"ماكينة بيع تذاكر وقوف","terms":"ماكينة تذاكر"},"amenity/vending_machine/pizza":{"name":"آلة بيع البيتزا","terms":"آلة بيع البيتزا الذاتية"},"amenity/vending_machine/public_transport_tickets":{"name":"آلة بيع تذاكر مواصلات عامة","terms":"آلة بيع تذاكر مواصلات عامة"},"amenity/vending_machine/stamps":{"name":"آلة بيع طوابع بريدية","terms":"آلة بيع طوابع بريدية"},"amenity/veterinary":{"name":"عيادة بيطرية","terms":"بيطري، طبيب حيوانات"},"amenity/waste/dog_excrement":{"name":"قمامة لبراز الكلاب","terms":"حاوية براز الكلاب"},"amenity/waste_disposal":{"name":"حاوية قمامة متحركة","terms":"حاوية قمامة قابل للنقل"},"amenity/waste_transfer_station":{"name":"محطة نقل النفايات","terms":"نفايات,قمامة,مهملات"},"amenity/water_point":{"name":"تعبئة مياه شرب بكميات (لمقطورات السفر والتخييم)","terms":"مياه شرب للكارفانات"},"amenity/watering_place":{"name":"حوض تروية للحيوانات","terms":"حوض تروية للحيوانات،مكان شرب للحيوانات،حوض سقاية للحيوانات،مورد ماء للحيوانات"},"amenity/weighbridge":{"name":"ميزان شاحانات","terms":"ميزان شاحانات،ميزان،ميزان تريلات،ميزان مركبات ثقيلة"},"area":{"name":"منطقة","terms":"المساحة; مساحة; منطقة; المنطقة"},"area/footway":{"name":"منطقة طريق المشاة","terms":"منطقة طريق المشاة"},"area/highway":{"name":"مساحة شارع/طريق","terms":"مساحة شارع/طريق،منطقة شارع/طريق،أرض الشارع/الطريق"},"attraction":{"name":"Attraction"},"attraction/amusement_ride":{"name":"Amusement Ride"},"attraction/animal":{"name":"حظيرة حيوانات","terms":"حظيرة حيوانات،محجر حيوانات،حوش حيوانات،حوز حيوانات،ضميمة حيوانات"},"attraction/big_wheel":{"name":"عجلة فيريس"},"attraction/bumper_car":{"name":"Bumper Cars"},"attraction/bungee_jumping":{"name":"Bungee Jumping"},"attraction/carousel":{"name":"دوامة خيل","terms":"دوامة خيل"},"attraction/dark_ride":{"name":"Dark Ride"},"attraction/drop_tower":{"name":"Drop Tower Ride"},"attraction/kiddie_ride":{"name":"Kiddie Ride"},"attraction/log_flume":{"name":"Log Flume"},"attraction/maze":{"name":"متاهة","terms":"متاهة"},"attraction/pirate_ship":{"name":"Pirate Ship Ride"},"attraction/river_rafting":{"name":"River Rapids Ride"},"attraction/roller_coaster":{"name":"السفينة الدوارة","terms":"سفينة دوارة"},"attraction/summer_toboggan":{"name":"Summer Toboggan"},"attraction/swing_carousel":{"name":"Swing Carousel"},"attraction/train":{"name":"Tourist Train"},"attraction/water_slide":{"name":"التزلق على الماء"},"barrier":{"name":"حاجز","terms":"حاجز,عائق,تخم,قلعة محصنة,مدينة محصنة,مزلقان"},"barrier/block":{"name":"حواجز خرسانية","terms":"صبات,صبات خرسانية"},"barrier/bollard":{"name":"عمود حاجز","terms":"عمود صلب,عمود حاجز"},"barrier/bollard_line":{"name":"صف أعمدة حاجزة","terms":"صف أعمدة صلبة,صف أعمدة مرورية"},"barrier/border_control":{"name":"مركز حدودي","terms":"معبر حدودي,منفذ حدودي"},"barrier/bump_gate":{"name":"بوابة مركبات تمنع مرور الماشية","terms":"بوابة مركبات تمنع مرور الماشية"},"barrier/bus_trap":{"name":"حاجز حافلات","terms":"حاجز حافلات"},"barrier/cable_barrier":{"name":"حاجز الكابلات","terms":"حاجز الكابلات,حاجز الكابل"},"barrier/cattle_grid":{"name":"شبكة أرضية حاجزة للماشية","terms":"شبكة الماشية,شبكة لمنع الماشية"},"barrier/chain":{"name":"سلسلة","terms":"سلسلة"},"barrier/city_wall":{"name":"جدار المدينة","terms":"جدار المدينة; سور المدينة,حائط المدينة"},"barrier/cycle_barrier":{"name":"حاجز دراجات هوائية","terms":"حاجز دراجات هوائية; حاجز; ممر; حاجز مرور; حاجز دراجات"},"barrier/ditch":{"name":"خندق","terms":"خندق"},"barrier/entrance":{"name":"مدخل"},"barrier/fence":{"name":"سياج","terms":"سياج"},"barrier/fence/railing":{"name":"حديدي","terms":"حديدي"},"barrier/full-height_turnstile":{"name":"باب دوار كامل الارتفاع","terms":"باب دوار كامل الارتفاع"},"barrier/gate":{"name":"بوابة","terms":"بوابة"},"barrier/guard_rail":{"name":"حاجز حديدي للحماية من الاصطدام","terms":"حاجز حديدي مانع للاصطدام"},"barrier/hampshire_gate":{"name":"بوابة الأسلاك","terms":"بوابة الأسلاك"},"barrier/handrail":{"name":"سياج سلم (درابزين)"},"barrier/hedge":{"name":"حاجز نباتي","terms":"سياج نباتي"},"barrier/height_restrictor":{"name":"حاجز لتقييد الارتفاع","terms":"حاجز لتقييد ارتفاع المركبات"},"barrier/jersey_barrier":{"name":"حاجز خرساني - نيوجيرسي","terms":"حاجز خرساني - نيوجيرسي"},"barrier/kerb":{"name":"رصيف","terms":"رصيف اسمنتي صلب"},"barrier/kerb/flush":{"name":"رصيف مسواي لطبقة الأرض","terms":"رصيف مسواي تقريباً لطبقة الأرض"},"barrier/kerb/lowered":{"name":"رصيف منخفض","terms":"رصيف منخفض،منحدر رصيف"},"barrier/kerb/raised":{"name":"رصيف مرتفع","terms":"رصيف مرتفع,رصيف حافلات"},"barrier/kerb/rolled":{"name":"رصيف بحواف مطويه (مستديرة)","terms":"رصيف بحواف مطويه (مستديرة)"},"barrier/kissing_gate":{"name":"بوابة لا تسمح بعبور الماشية","terms":"بوابة منع الماشية"},"barrier/motorcycle_barrier":{"name":"حاجز منع مرور الدراجات النارية","terms":"حاجز منع مرور الدراجات النارية,عائق لمنع مرور الدراجات النارية"},"barrier/planter":{"name":"حاجز أصيصي"},"barrier/retaining_wall":{"name":"جدار تثبيت للتربة","terms":"جدار استنادي,جدار ساند,جدار اسناد لمنع انزلاق التربة"},"barrier/rope":{"name":"سياج مصنوع من حبال","terms":"سياج مصنوع من حبال,سياج حبلي"},"barrier/sally_port":{"name":"مدخل آمن للحصن","terms":"مدخل آمن للحصن,منفذ الهجوم,مدخل آمن متحكم به إلى حصن أو سجن"},"barrier/spikes":{"name":"حاجز اطارات شوكي","terms":"حاجز اطارات شوكي,حاجز اطارات,حاجز اطارات مسنن,حاجز اطارات مروري,ممزق اطارات السيارات,حاجز أرضي مسنن"},"barrier/stile":{"name":"درج يسمح للبشر بالمرور فوق السياج","terms":"درج يسمح للبشر بعبور السياج,عضادة"},"barrier/swing_gate":{"name":"بوابة عامودية جانبية","terms":"بوابة عامودية تدور بشكل أفقي"},"barrier/toll_booth":{"name":"كشك التحصيل","terms":"كشك التحصيل,مكتب رسوم العبور"},"barrier/turnstile":{"name":"بوابة دوارة لعبور شخص واحد","terms":"بوابة دوارة لعبور شخص واحد"},"barrier/wall":{"name":"جدار","terms":"جدار"},"barrier/wall/noise_barrier":{"name":"حاجز ضوضاء","terms":"حاجز ضوضاء,حاجز صوتي"},"barrier/wicket_gate":{"name":"باب خوخة","terms":"باب خوخة,باب فرعي"},"barrier/yes":{"name":"حاجز (من نوع غير محدد)"},"boundary":{"name":"حدود"},"boundary/administrative":{"name":"حدود إدارية","terms":"حدود إدارية"},"boundary/hazard":{"name":"منطقة خطرة"},"bridge/support":{"name":"دعامات جسر","terms":"دعامات جسر,صبات جسر,صبات حاملة للجسر"},"bridge/support/pier":{"name":"دعامات جسر وسيطة أسفل الجسر","terms":"دعامات جسر وسيطة أسفل الجسر,حاملات للجسر"},"building":{"name":"مبنى","terms":"مبنى,بناية,عمارة,بناء,منشأة"},"building/allotment_house":{"name":"الحدائق/المزارع المحصصة","terms":"الحدائق/المزارع المحصصة"},"building/apartments":{"name":"مبنى شقق سكنية","terms":"مبنى شقق,مبنى عمارة سكنية,مبنى شقق مفروشة"},"building/barn":{"name":"حظيرة","terms":"مخزن,اسطبل"},"building/boathouse":{"name":"مبنى تخزين القوارب","terms":"تخزين القوارب,منزل القوارب,مرفأ مغطى,مبنى يظلل القوارب"},"building/bungalow":{"name":"منزل بطابق واحد","terms":"منزل صغير,كوخ,منزل بطابق واحد"},"building/bunker":{"name":"ملجأ محصّن"},"building/cabin":{"name":"كوخ","terms":"كوخ,حجرة,منزل صغير جدا,كوخ مؤثث,كوخ بمدخنة"},"building/carport":{"name":"مرآب/مظلة سيارات","terms":"مرآب,مظلة سيارات"},"building/cathedral":{"name":"مبنى كاتدرائية"},"building/chapel":{"name":"معبد نصراني"},"building/church":{"name":"مبنى كنيسة","terms":"كنيسة,معبد"},"building/civic":{"name":"مبنى مرافق مدنية"},"building/college":{"name":"مبنى كلية","terms":"كلية,جامعة"},"building/commercial":{"name":"مبني تجاري","terms":"مبنى تجاري"},"building/construction":{"name":"مبنى تحت الإنشاء","terms":"تحت الانشاء,تحت التشييد,جاري بنائه"},"building/cowshed":{"name":"سقيفة/مظلة أبقار","terms":"سقيفة أبقار,حضائر أبقار,مظلات أبقار"},"building/detached":{"name":"منزل منفصل","terms":"مستقل,منفصل,مبنى مستقل"},"building/dormitory":{"name":"سكن جامعي","terms":"مهجع,سكن,سكن جامعي,سكن طلابي,سكن الكلية,سكن الجامعة,سكن مجمع"},"building/entrance":{"name":"مدخل ومخرج"},"building/farm":{"name":"بيت ريفي","terms":"ريف,مزرعة,زرع,بيت مزرعة"},"building/farm_auxiliary":{"name":"مبنى مزرعة","terms":"مزرعة,ريف,مبنى ريفي"},"building/garage":{"name":"مرآب/جراج","terms":"مَرْأب,كراج"},"building/garages":{"name":"جراجات","terms":"جراج; جراج سيارات; موقف; موقف سيارات; ركن; ركنة"},"building/ger":{"name":"منزل اليورت","terms":"منزل اليورت,خيمة"},"building/grandstand":{"name":"مُدَرج","terms":"مدرج رياضي،مدرج سباق خيول,مدرج ملعب"},"building/greenhouse":{"name":"محمية زراعية","terms":"دفيئة زراعية,بيت بلاستيكي,بيت زجاجي"},"building/hangar":{"name":"حظيرة طائرات","terms":"حظيرة طائرات,حظيرة هيلكوبترات"},"building/hospital":{"name":"مبنى مستشفى","terms":"مستشفى; مبنى مستشفى"},"building/hotel":{"name":"مبنى فندق","terms":"مبنى فندق"},"building/house":{"name":"منزل","terms":"منزل,بيت,فلة,دبلكس"},"building/houseboat":{"name":"بيت عائم","terms":"بيت عائم,بيت القارب,قارب أعيد بنائه كمنزل ثابت"},"building/hut":{"name":"كوخ بدائي/عشة","terms":"كوخ,قش,كوخ بدائي,عشة,صندقه,سقيفة,عريش,عرزال,خص,عرزيل"},"building/industrial":{"name":"مبنى صناعي","terms":"مبنى صناعي,مبنى الانتاج,مبنى المعالجة"},"building/kindergarten":{"name":"مبنى حضانة / روض","terms":"مبنى الحضانة,رياض الأطفال ، روض ، حضانة ، طفل ، أطفال"},"building/manufacture":{"name":"مبنى إنتاج صناعي"},"building/mosque":{"name":"مبنى مسجد","terms":"مبنى المسجد,مبنى جامع,مبنى مصلى,مبنى صلاة"},"building/office":{"name":"مبنى مكاتب إدارية","terms":"مبنى مكاتب,مبنى إداري"},"building/outbuilding":{"name":"ملحق"},"building/pavilion":{"name":"مبنى مرافق رياضية","terms":"مبنى أدوات رياضة,مبنى مرافق رياضية,مبنى مرافق رياضة"},"building/public":{"name":"مبنى عام","terms":"مبنى عمومي,مبنى قطاع عام,مبنى رسمي,مبنى جهة رسمية"},"building/residential":{"name":"مبنى سكني","terms":"مبنى سكني"},"building/retail":{"name":"مبنى بيع بالتجزئة","terms":"مبنى بيع بالتجزئة,مبنى بيع قطاعي,مبنى بيع مفرق"},"building/roof":{"name":"سطح مبنى/سقف","terms":"غطاء,سطح,أعلى المبنى,سقف"},"building/ruins":{"name":"مبنى أثري/مهجور/متهدم","terms":"مبنى أثري,مبنى مهجور,مبنى متهدم,مبنى أنقاض,مبنى خرابة,خرابة,مبنى أطلال,أطلال,دمنة,طلل,أنقاض,خراب,خرائب,حطام,مبنى متحطم"},"building/school":{"name":"مبنى مدرسة","terms":"مبنى مدرسة,مبنى تعليمي ، ثانوية ، اعدادية ، تعليم أولي ، ابتدائي ، ابتدائية"},"building/semidetached_house":{"name":"مبنى شبه منفصل","terms":"مبنى شبه منفصل,مبنى شبه منعزل,مبنى شبه مستقل"},"building/service":{"name":"مبنى خدمات (محولات، آلات،مضخات..الخ)","terms":"مبنى محولات,مبنى آلات,مبنى مضخات"},"building/shed":{"name":"سقيفة(مستودع/ورشة عمل صغيرة)","terms":"سقيفة,مستودع صغير"},"building/stable":{"name":"إسطبل","terms":"إسطبل.إصطبل,طوالة الخيل,حظيرة الخيل,مأوى الخيل"},"building/stadium":{"name":"مبنى الملعب","terms":"مبنى الملعب"},"building/sty":{"name":"Pigsty"},"building/synagogue":{"name":"Synagogue Building","terms":"synagogue building"},"building/temple":{"name":"مبنى المعبد","terms":"مبنى المعبد"},"building/train_station":{"name":"مبنى محطة القطار"},"building/transportation":{"name":"مبنى للنقل العام","terms":"مبنى للنقل العام"},"building/university":{"name":"مبنى جامعي","terms":"جامعة; كلية"},"building/warehouse":{"name":"مستودع","terms":"مستودع,مخزن"},"building_part":{"name":"جزء من مبنى","terms":"جزء مختلف من مبنى"},"building_point":{"name":"مبنى"},"cemetery/grave":{"name":"قبر","terms":"قبر"},"cemetery/sector":{"name":"قسم المقبرة","terms":"قسم المقبرة"},"club":{"name":"نادي","terms":"نادي"},"club/sport":{"name":"نادي رياضي","terms":"نادي رياضي"},"craft":{"name":"حِرف ومهن","terms":"حرفة,حرف,مهن,تصنيع,صناعة"},"craft/agricultural_engines":{"name":"ميكانيكي محركات زراعية","terms":"ميكانيكي محركات زراعية"},"craft/basket_maker":{"name":"صناعة وحياكة السِلال","terms":"صانع السلال"},"craft/beekeeper":{"name":"مربي النحل","terms":"مربي النحل,نحال"},"craft/blacksmith":{"name":"حدّاد","terms":"حدّاد"},"craft/boatbuilder":{"name":"بنّاء السفن","terms":"بنّاء السفن"},"craft/bookbinder":{"name":"تغليف وتجليد الكتب","terms":"مجلد الكتب"},"craft/carpenter":{"name":"نجار","terms":"نجار"},"craft/carpet_layer":{"name":"فرش وتركيب المفروشات","terms":"فرش وتركيب المفروشات"},"craft/caterer":{"name":"منظم حفلات","terms":"منظم حفلات; متعهد حفلات;حفلة;حفلات"},"craft/chimney_sweeper":{"name":"منظف مداخن","terms":"منظف مداخن"},"craft/cleaning":{"name":"خدمات التنظيف","terms":"خدمات التنظيف"},"craft/clockmaker":{"name":"صناعة وصيانة الساعات","terms":"ساعاتي"},"craft/confectionery":{"name":"حلواني","terms":"حلواني,صانع الحلوى"},"craft/distillery":{"name":"Distillery"},"craft/dressmaker":{"name":"خياط نسائي","terms":"خياط نسائي"},"craft/electrician":{"name":"كهربائي","terms":"كهربائي"},"craft/electronics_repair":{"name":"خدمة إصلاح الالكترونيات","terms":"خدمة تصليح الأجهزة الإلكترونية"},"craft/floorer":{"name":"أرضيات","terms":"أرضيات,باركيه,سيراميك,بلاط,رخام"},"craft/gardener":{"name":"بستاني","terms":"بستاني"},"craft/glaziery":{"name":"تركيب وإصلاح الزجاج","terms":"زجاج"},"craft/handicraft":{"name":"نحت وزخرفة يدوية","terms":"نحت,زخرفة,نقش,كتابة,حفر"},"craft/hvac":{"name":"ورشة/محل تبريد وتكييف","terms":"صيانة تبريد وتكييف,التدفئة,والتهوية,تكييف الهواء"},"craft/insulator":{"name":"تركيب عوازل حرارية","terms":"عازل,عوازل,تركيب"},"craft/joiner":{"name":"نجار","terms":"نجارة,نجار,صناعة أثاث خشبي,خشب"},"craft/key_cutter":{"name":"قص ونسخ مفاتيح","terms":"قص مفاتيح,نسخ مفاتيح,ناسخ مفاتيح,كيلونات,أقفال"},"craft/locksmith":{"name":"صنع وصيانة الأقفال"},"craft/metal_construction":{"name":"صناعات المعادن والمواد الصلبة","terms":"حديد,ألمنويم,معدن,معادن,فولاذ,صلب,صلبة,مواد البناء المعدنية,صناعات حديدية,زخرفة حديد,إصلاح"},"craft/painter":{"name":"دهّان","terms":"دهّان,دهان,أصباغ,بوية"},"craft/parquet_layer":{"name":"تركيب أرضيات خشبية (باركيه)","terms":"باركيه,أرضيات خشبية"},"craft/photographer":{"name":"مصور","terms":"مصور"},"craft/photographic_laboratory":{"name":"مختبر التصوير","terms":"مختبر التصوير"},"craft/plasterer":{"name":"جصاص (أعمال الجبس)","terms":"جبس,جبس بورد,جص,جصاص,ديكور"},"craft/plumber":{"name":"سباكة","terms":"سباك; سمكري"},"craft/pottery":{"name":"صناعة وبيع الفخار","terms":"فخار,طين,طاجن"},"craft/rigger":{"name":"الصواري والحبال والأشرعة","terms":"صواري,حبال,أشرعة"},"craft/roofer":{"name":"بناء الأسقف والقرميد","terms":"بنّاء السقف,أسقف,قرميد"},"craft/saddler":{"name":"صانع سراج","terms":"صانع سراج,صناعة وبيع السروج,تنجيد السيارات,تنجيد القوارب"},"craft/sailmaker":{"name":"صانع أشرعة","terms":"صانع أشرعة"},"craft/sawmill":{"name":"منشرة","terms":"منشرة,تطيع الجذوع,تقطيع الحطب,قص الأخشاب,قص الحطب"},"craft/scaffolder":{"name":"تركيب وتأجير السقالة","terms":"مركب السقالة,سقالة"},"craft/sculptor":{"name":"نحّات","terms":"نحّات"},"craft/shoemaker":{"name":"إسكافي","terms":"إسكافي.حَذّاء.حذاء,مصلح الأحذية,جزمجي,إسكاف"},"craft/signmaker":{"name":"خطاط ومصمم لوحات تجارية","terms":"خطاط,خطاط لوحات تجارية,مصمم لوحات,صانع لوحات تجارية,رسام,علامات تجارية"},"craft/stonemason":{"name":"قطع ونحت وتشكيل الحجارة","terms":"نحت الحجارة"},"craft/tailor":{"name":"خياط"},"craft/tiler":{"name":"مبلط","terms":"مركِّب البلاط"},"craft/tinsmith":{"name":"سمكري","terms":"سمكري"},"craft/upholsterer":{"name":"منجد","terms":"منجد,تنجيد,أثاث"},"craft/watchmaker":{"name":"ساعاتي","terms":"ساعاتي"},"craft/window_construction":{"name":"تركيب النوافذ","terms":"تركيب النوافذ,صناعة النوافذ,صيانة النوافذ"},"craft/winery":{"name":"Winery"},"cycleway/asl":{"name":"خط السير المتقدم","terms":"خط السير المتقدم حسب الأفضلية,خط التوقف الأولي,خط السيار الأمامي عند الإشارات,باصات,حافلات,سيكل,دراجات,سيارات"},"demolished/building":{"name":"مبنى تم هدمه مؤخرًا"},"disc_golf/basket":{"name":"سلة أقراص الجولف","terms":"سلة أقراص الجولف"},"disc_golf/hole":{"name":"ثقب أقراص الجولف","terms":"ثقب أقراص الجولف"},"disc_golf/tee":{"name":"نقطة انطلاق قرص الجولف","terms":"نقطة انطلاق قرص الجولف"},"disused/amenity":{"name":"مرافق وأماكن عامة مهجورة"},"disused/railway":{"name":"عناصر سكك حديدية مهجورة"},"disused/shop":{"name":"متاجر مهجورة"},"embankment":{"name":"طبقة مردومة ترفع الطريق أو القناة"},"emergency":{"name":"عناصر الطوارئ"},"emergency/ambulance_station":{"name":"محطة إسعاف","terms":"محطة إسعاف,محطة اسعاف"},"emergency/assembly_point":{"name":"نقطة التجمع في حالات الطوارئ","terms":"نقطة تجمع طوارئ"},"emergency/defibrillator":{"name":"مزيل الرجفان (جهاز الصدمات الكهربائية)","terms":"مزيل الرجفان,جهاز الصدمات الكهربائية"},"emergency/fire_alarm":{"name":"صندوق إنذار الحريق","terms":"صندوق ابلاغ عن الحريق"},"emergency/fire_extinguisher":{"name":"طفاية حريق","terms":"مطفأة حريق,طفاية حريق"},"emergency/fire_hose":{"name":"خرطوم إطفاء الحريق","terms":"خرطوم إطفاء الحريق,خرطوم الحريق"},"emergency/fire_hydrant":{"name":"صنبور الاطفاء","terms":"خرطوم,مطافئ,إطفاء,اطفاء"},"emergency/first_aid_kit":{"name":"حقيبة إسعافات أولية","terms":"حقيبة إسعاف أولي"},"emergency/landing_site":{"name":"موقع هبوط الطوارئ","terms":"موقع هبوط الطوارئ"},"emergency/life_ring":{"name":"طوق النجاة","terms":"طوق النجاة,لستك للانقاذ"},"emergency/lifeboat_station":{"name":"محطة قارب النجاة","terms":"محطة قارب الانقاذ"},"emergency/lifeguard":{"name":"منقذ بحري","terms":"منقذ بحري,منقذ الشاطئ,منقذ,غرق"},"emergency/mountain_rescue":{"name":"منقذ جبلي","terms":"منقذ متسلقي الجبال,منقذ للمناطق الوعرة,منقذ متسلقين,منقذ"},"emergency/phone":{"name":"هاتف طوارئ","terms":"هاتف طوارئ,هاتف حالات طارئة"},"emergency/siren":{"name":"صفاّرة إنذار","terms":"صفاّرة إنذار الطوارئ,زمارة,صفارة"},"emergency/water_reservoir":{"name":"خزان مياه الطوارئ","terms":"خزان مياه الطوارئ"},"emergency/water_reservoir_covered":{"name":"خزان مياه للطوارئ (تحت الأرض)","terms":"خزان مياه للطوارئ (تحت الأرض)"},"emergency/water_tank":{"name":"خزان مياه الطوارئ","terms":"خزان مياه الطوارئ,حوض مياه الطوارئ,بركة مياه الطوارئ"},"entrance":{"name":"مدخل / مخرج","terms":"مدخل/مخرج,دخول/خروج,مخرج,مدخل,خروج"},"entrance/emergency":{"name":"مخرج طوارئ","terms":"مخرج طوارئ,مخرج الطوارئ"},"entrance/emergency_ward_entrance":{"name":"مدخل غرفة الطوارئ","terms":"مدخل غرفة الطوارئ"},"entrance/main":{"name":"المدخل الرئيسي","terms":"المدخل الرئيسي,مدخل رئيسي,المدخل الأساسي,مدخل أساسي"},"ford":{"name":"مخاضة (مجرى الماء فوق الطريق)","terms":"ممر مائي; ممر; مائي; ماء,مخاضة,مجرى الماء فوق الطريق"},"ford_line":{"name":"مخاضة (مجرى الماء فوق الطريق)"},"golf/bunker":{"name":"مصيدة الرمال (غولف)","terms":"مصيدة الرمال (غولف)"},"golf/cartpath":{"name":"مسار العربة (غولف)","terms":"مسار العربة (غولف)"},"golf/clubhouse":{"name":"المبنى الرئيسي (غولف)","terms":"المبنى الرئيسي (غولف)"},"golf/driving_range":{"name":"نطاق القيادة (غولف)","terms":"نطاق القيادة"},"golf/fairway":{"name":"فاصل المساحات الزراعية (غولف)","terms":"فاصل المساحات الزراعية (غولف)"},"golf/green":{"name":"النبات الأخضر حول المرمى (غولف)","terms":"النبات الأخضر حول المرمى (غولف)"},"golf/hole":{"name":"ثقب الغولف","terms":"ثقب الغولف"},"golf/lateral_water_hazard":{"name":"علامة تحذير المياة (غولف)","terms":"علامة تحذير المياة (غولف)"},"golf/path":{"name":"مسار مشي الغولف","terms":"مسار مشي الغولف"},"golf/rough":{"name":"منطقة خشنة (غولف)","terms":"منطقة خشنة (غولف)"},"golf/tee":{"name":"مربع الإنطلاق (غولف)","terms":"مربع الإنطلاق (غولف)"},"golf/water_hazard":{"name":"تحذير مياه (غولف)","terms":"تحذير مياه (غولف)"},"healthcare":{"name":"مرافق الرعاية الصحية","terms":"مرفق الرعاية الصحية,مرافق الرعاية الصحية"},"healthcare/alternative":{"name":"العلاج بالطب البديل (شعبي/طبيعي/حجامة/إبر صينية)","terms":"العلاج بالطب البديل,شعبي,طبيعي,حجامة,إبر صينية"},"healthcare/alternative/chiropractic":{"name":"تقويم العظام","terms":"المعالج للأمراض يدويا; مقوم العظام"},"healthcare/audiologist":{"name":"أخصائي السمع","terms":"أخصائي السمع,أخصائي أذن"},"healthcare/birthing_center":{"name":"مركز ولادة","terms":"مركز ولادة"},"healthcare/blood_donation":{"name":"مركز التبرع بالدم","terms":"تبرع بالدم"},"healthcare/counselling":{"name":"مركز استشارات طبية","terms":"مركز استشارات طبية"},"healthcare/dentist/orthodontics":{"name":"أخصائي تقويم الأسنان","terms":"أخصائي تقويم الأسنان"},"healthcare/hospice":{"name":"دار رعاية المسنين وكبار السن","terms":"دار رعاية المسنين وكبار السن"},"healthcare/laboratory":{"name":"مختبر طبي","terms":"مختبر طبي; مخبر التحاليل الطبية"},"healthcare/midwife":{"name":"مركز قابلات للأمهات والأطفال حديثي الولادة","terms":"مركز قابلات للأمهات والأطفال حديثي الولادة"},"healthcare/occupational_therapist":{"name":"أخصائي العلاج الوظيفي","terms":"أخصائي العلاج الوظيفي,أخصائي العلاج المهني"},"healthcare/optometrist":{"name":"أخصائي بصريات (نظارات)","terms":"أخصائي البصريات,نظارات,محل نظارات,نظارات وعدسات,عدسات,عدسات طبية,فحص نظر"},"healthcare/physiotherapist":{"name":"علاج طبيعي وتأهيل طبي","terms":"أخصائي العلاج الطبيعي,علاج طبيعي,تأهيل طبي"},"healthcare/podiatrist":{"name":"طبيب الأقدام","terms":"طبيب الأقدام; الأرجل"},"healthcare/psychotherapist":{"name":"معالج نفسي","terms":"معالج نفسي,طبيب نفسي,أخصائي نفسي"},"healthcare/rehabilitation":{"name":"مركز إعادة التأهيل","terms":"مركز إعادة التأهيل"},"healthcare/sample_collection":{"name":"مرفق جمع العينات","terms":"جمع عينات الدم,جمع عينات البول,جمع عينات"},"healthcare/speech_therapist":{"name":"معالج مشاكل النطق","terms":"معالج النطق، نطق,معالج مشاكل النطق,علاج صعوبات التواصل,صعوبات التواصل,اللغة والنطق,النطق,اللغة"},"healthcare/yes":{"name":"منشأة صحية (نوع غير محدد)"},"highway":{"name":"عناصر الطرق"},"highway/bridleway":{"name":"طريق الخيول","terms":"طريق الخيول,ممر للخيول,طريق الجياد,ممر الجياد,مسار الخيول,مسار الفروسية"},"highway/bus_guideway":{"name":"مسار الحافلة الموجهة","terms":"مسار الحافلة الموجهة,الحافلة الموجهة"},"highway/bus_stop":{"name":"مسار وقوف الحافلات"},"highway/construction":{"name":"الطريق قيد الإنشاء","terms":"الطريق قيد الإنشاء"},"highway/corridor":{"name":"ممر داخل مبنى","terms":"ممر داخلي; رواق"},"highway/crossing":{"name":"معبر/خط مشاة","terms":"تقاطع,معبر"},"highway/crossing/traffic_signals":{"name":"معبر مشاة بإشارات","terms":"معبر مشاة بإشارات"},"highway/crossing/unmarked":{"name":"معبر مشاة بدون علامات أو إشارة مرورية","terms":"معبر مشاة بدون علامات مرورية أو إشارة مرورية"},"highway/cycleway":{"name":"مسار دراجات","terms":"طريق دراجات; مسار دراجات"},"highway/cycleway/bicycle_foot":{"name":"مسار مشاة و دراجات هوائية","terms":"مسار مشاة و دراجات هوائية"},"highway/cycleway/crossing":{"name":"معبر دراجات هوائية"},"highway/cycleway/crossing/bicycle_foot":{"name":"معبر مشاة ودراجات هوائية","terms":"معبر مشاة ودراجات هوائية"},"highway/cycleway/crossing/uncontrolled":{"name":"معبر دراجات هوائية بعلامات مرورية","terms":"معبر دراجات هوائية بعلامات مرورية"},"highway/cycleway/crossing/unmarked":{"name":"معبر دراجات هوائية بدون علامات مرورية","terms":"معبر دراجات هوائية بدون علامات مرورية"},"highway/cycleway/moped_link-NL":{"name":"وصلة لدراجة نارية صغيرة","terms":"وصلة لدراجة نارية صغيرة,رابط لدراجة نارية صغيرة"},"highway/elevator":{"name":"مصعد","terms":"مصعد,لفت,اصنصيل,أصنصير,مِرْقَاة"},"highway/elevator_line":{"name":"مصعد مائل","terms":"مصعد مائل,مصعد مائل على منحدر,مِرْقَاة,مصعد"},"highway/emergency_access_point":{"name":"نقطة وصول الطوارئ","terms":"نقطة وصول الطوارئ"},"highway/emergency_bay":{"name":"منطقة توقف لحالات طوارئ الطريق","terms":"منطقة توقف لحالات طوارئ الطريق,استراحة طوارئ الطريق"},"highway/footway":{"name":"طريق مشي بالأقدام","terms":"ممشى بالأقدام"},"highway/footway/access_aisle":{"name":"مساحة جانب مواقف مركبات المعاقين للنزول والركوب","terms":"مساحة جانب مواقف مركبات المعاقين للنزول والركوب"},"highway/footway/conveying":{"name":"سلم متحرك/بساط متحرك","terms":"سلم متحرك,بساط متحرك,سلالم كهربائية,بساط متحرك للمشاة"},"highway/footway/crossing":{"name":"معبر مشاة"},"highway/footway/crossing/traffic_signals":{"name":"معبر مشاة بإشارات","terms":"معبر مشاة بإشارات"},"highway/footway/crossing/unmarked":{"name":"معبر مشاة بدون علامات أو إشارة مرورية","terms":"معبر مشاة بدون علامات أو إشارة مرورية"},"highway/footway/informal":{"name":"مسار للمشاة غير رسمي"},"highway/footway/sidewalk":{"name":"رصيف مشاة","terms":"رصيف مشاة,رصيف المشاة,رصيف جانب الطريق للمشاة"},"highway/footway/traffic_island":{"name":"جزيرة مشاة بين طريقين"},"highway/give_way":{"name":"علامة \"أعط أفضلية المرور لمن هم في الطريق الآخر\"","terms":"علامة \"أعط أفضلية المرور لمن هم في الطريق الآخر\",علامة \"أعط الأفضلية\",علامة \"أفضلية المرور لمن هم في الدور\",علامة \"أعط أفضلية المرور لمن هم في الطريق السريع\""},"highway/ladder":{"name":"سلم"},"highway/living_street":{"name":"شارع معيشة بين المساكن","terms":"شارع معيشة,شارع سكني حي,شارع سكني ينخفض فيه مرور المركبات,شارع سكني للمشاة الأفضلية فيه,شارع سكني محدود السرعة,شارع سكني الأفضلية فيه للمشاة"},"highway/milestone":{"name":"لوحة/علامة مسافات الطريق","terms":"علامة مسافات الطريق,لوحة مسافات الطريق"},"highway/mini_roundabout":{"name":"دوار صغير","terms":"دوار صغير"},"highway/motorway":{"name":"طريق سريع","terms":"طريق سريع"},"highway/motorway_junction":{"name":"مخرج / مفرق طريق سريع","terms":"مفرق طريق سريع,مخرج طريق سريع"},"highway/motorway_link":{"name":"وصلة لطريق سريع","terms":"رابط لطريق سريع,وصلة طريق سريع,طرق مرتبطة بالطريق السريع"},"highway/passing_place":{"name":"مساحة للتجاوز للطرق ذات المسار الواحد","terms":"مساحة للتجاوز للطرق ذات المسار الواحد,مساحة للتجاوز للطرق الضيقة"},"highway/path":{"name":"درب / ممر / مسار","terms":"طريق,ممر,مسلك,درب"},"highway/path/boardwalk":{"name":"ممر خشبي","terms":"ممر خشبي,درب خشبي,مسار على ألواح خشب"},"highway/path/crossing":{"name":"معبر مشاة ودراجات هوائية"},"highway/path/informal":{"name":"مسار غير رسمي","terms":"مسار غير رسمي"},"highway/pedestrian_area":{"name":"منطقة للمشاة","terms":"منطقة للمشاة,طريق للمشاة,للمشاة فقط"},"highway/pedestrian_line":{"name":"شارع للمشاة","terms":"شارع للمشاة,شارع للمرور على الأرجل,شارع للمشاة فقط,شارع للراجلين"},"highway/primary":{"name":"طريق أولي","terms":"شارع أولي"},"highway/primary_link":{"name":"وصلة لطريق أولي","terms":"رابط لطريق أولي,وصلة طريق أولي"},"highway/raceway":{"name":"مضمار سباق السيارات","terms":"مضمار سباق السيارات"},"highway/raceway/karting":{"name":"مضمار سباق كارتينغ","terms":"مضمار سباق كارتينغ"},"highway/raceway/motocross":{"name":"مسار سباق الموتوكروس","terms":"مسار سباق الموتوكروس"},"highway/residential":{"name":"شارع سكني/حارة","terms":"شارع سكني,شارع حارة,شارع حواري"},"highway/rest_area":{"name":"منطقة استراحة","terms":"استراحة طريق سريع,خدمات طريق سريع"},"highway/road":{"name":"طريق/شارع غير معروف تصنيفه","terms":"طريق غير معروف"},"highway/road/bridge":{"name":"جسر غير معروف تصنيفه","terms":"جسر غير معروف تصنيفه"},"highway/secondary":{"name":"طريق ثانوي","terms":"شارع ثانوي"},"highway/secondary_link":{"name":"وصلة لطريق ثانوي","terms":"رابط لشارع ثانوي"},"highway/service":{"name":"طريق مؤدي لمكان خدمة","terms":"شارع خدمي,طريق خدمة,طريق مؤدي لمكان خدمة,طريق مؤدي لمكان خدمات"},"highway/service/alley":{"name":"زقاق / ممر","terms":"زقاق,ممر"},"highway/service/drive-through":{"name":"ممر الطلب بالسيارة","terms":"ممر الطلب بالسيارة"},"highway/service/driveway":{"name":"طريق مؤدي لمسكن","terms":"ممر السكن,طريق مؤدية لمسكن,طريق لمسكن"},"highway/service/emergency_access":{"name":"ممر/طريق طوارئ","terms":"ممر الطوارئ"},"highway/service/parking_aisle":{"name":"طريق داخل مواقف السيارات","terms":"ممر مواقف السيارات,طريق داخل مواقف السيارات,طريق بين مواقف السيارات,طريق يمر من خلال مواقف السيارات"},"highway/services":{"name":"منطقة خدمة","terms":"خدمة سيارات; منطقة خدمة سيارات; منطقة خدمية"},"highway/speed_camera":{"name":"كاميرا مراقبة السرعة","terms":"كاميرا مراقبة السرعة"},"highway/speed_display":{"name":"إشارة تظهر سرعتك عبر الرادار","terms":"إشارة تظهر سرعتك عبر الرادار,علامة تظهر سرعتك عبر الرادار"},"highway/steps":{"name":"درج/سلم","terms":"درج,سلم"},"highway/steps/conveying":{"name":"سلم كهربائي","terms":"سلم متحرك,سلم كهرابائي,سلم آلي,درج آلي"},"highway/stop":{"name":"إشارة توقف","terms":"إشارة توقف، ممنوع الوقوف، قف"},"highway/street_lamp":{"name":"عمود إنارة شارع","terms":"مصباح الشارع"},"highway/tertiary":{"name":"طريق ثالثي","terms":"شارع ثالثي"},"highway/tertiary_link":{"name":"وصلة لطريق ثالثي","terms":"رابط لشارع ثالثي"},"highway/toll_gantry":{"name":"بوابة تحصيل الرسوم آلياً","terms":"بوابة تحصيل الرسوم آلياً"},"highway/track":{"name":"طريق غير معبد/ردمية","terms":"غير معبد,دمية,طريق وعر,دفع رباعي,طريق زراعي,زراعي,درب"},"highway/traffic_mirror":{"name":"مرآة مرور","terms":"مرآة; مرور; مراية"},"highway/traffic_signals":{"name":"إشارات مرور","terms":"اشارة; اشارات; اشارة مرور"},"highway/trailhead":{"name":"نقطة بداية مسارات المشي","terms":"نقطة بداية مسارات المشي,بداية مسار الهايكنج,بداية مسار الراجلة"},"highway/trunk":{"name":"طريق رئيسي","terms":"شارع أساسي,شارع رئيسي"},"highway/trunk_link":{"name":"وصلة لطريق رئيسي","terms":"رابط لشارع رئيسي"},"highway/turning_circle":{"name":"دائرة رجوع","terms":"دائرة رجوع في نهاية طريق"},"highway/turning_loop":{"name":"دائرة رجوع (جزيرة)","terms":"دائرة رجوع (جزيرة)"},"highway/unclassified":{"name":"طريق غير مصنف","terms":"طريق غير مصنف"},"historic":{"name":"موقع تاريخي/قديم","terms":"موقع تأريخي"},"historic/archaeological_site":{"name":"موقع أثري","terms":"موقع أثري"},"historic/boundary_stone":{"name":"حجر/علامة حدودية","terms":"صخرة حدودية,حجر الحدود التاريخي,حجر/علامة حدودية"},"historic/building":{"name":"مبنى تاريخي","terms":"مبنى تاريخي"},"historic/castle":{"name":"حصن / قلعة","terms":"حصن; قلعة; قصر"},"historic/castle/fortress":{"name":"حصن تاريخي","terms":"حصن تاريخي"},"historic/castle/palace":{"name":"قصر","terms":"قصر"},"historic/castle/stately":{"name":"قصر فاخر","terms":"قصر فاخر"},"historic/city_gate":{"name":"بوابة المدينة","terms":"بوابة المدينة"},"historic/fort":{"name":"حصن عسكري","terms":"حصن عسكري"},"historic/manor":{"name":"قصر سكني قديم/تاريخي","terms":"قصر سكني,المقر الرئيسي لسيد القصر"},"historic/memorial":{"name":"نصب تذكاري","terms":"نصب تذكاري"},"historic/memorial/plaque":{"name":"Commemorative Plaque"},"historic/monument":{"name":"نصب تذكاري","terms":"نصب تذكاري,مبنى تذكاري"},"historic/pillory":{"name":"منصة صلب للتشهير بالمجرمين","terms":"منصة صلب للتشهير بالمجرمين"},"historic/ruins":{"name":"أطلال/أنقاض/خرائب","terms":"أطلال,أنقاض,خرائب"},"historic/tomb":{"name":"قبر / ضريح","terms":"قبر، ضريح"},"historic/wayside_cross":{"name":"تقاطع جانب الطريق"},"historic/wayside_shrine":{"name":"مقام نصراني على الطريق","terms":"مقام نصراني على الطريق"},"historic/wreck":{"name":"ركام سفينة","terms":"ركام سفينة,ركام قارب,ركام مركب بحري"},"indoor":{"name":"عناصر داخل المباني"},"indoor/area":{"name":"مساحة داخل مبنى","terms":"مساحة داخل مبنى,مساحة داخلية,مساحة داخل المبنى,مساحة في المبنى"},"indoor/corridor":{"name":"ممر داخل المبنى","terms":"ممر داخل المبنى"},"indoor/corridor_line":{"name":"ممر داخل المبنى"},"indoor/door":{"name":"باب داخل المبنى","terms":"باب داخل المبنى,باب داخلي"},"indoor/elevator":{"name":"غرفة للمصعد داخل المبنى","terms":"غرفة للمصعد داخل المبنى,منور للمصعد داخل المبنى"},"indoor/room":{"name":"غرفة","terms":"غرفة,حجرة,أوضة,غرف,الغرفة"},"indoor/stairs":{"name":"درج داخل المبنى","terms":"درج داخل المبنى"},"indoor/wall":{"name":"جدار داخل المبنى","terms":"جدار داخل المبنى,جدار داخلي"},"internet_access/wlan":{"name":"نقطة Wi-Fi","terms":"نقطة wi-fi"},"junction":{"name":"تقاطع/مفترق طرق","terms":"مفترق طرق,تقاطع"},"landuse":{"name":"عناصر استخدامات الأراض"},"landuse/allotments":{"name":"الحدائق/المزارع المحصصة","terms":"المزارع المحصصة,الحدائق المحصصة"},"landuse/aquaculture":{"name":"مزرعة سمكية","terms":"مزرعة سمكية"},"landuse/basin":{"name":"حوض مائي"},"landuse/brownfield":{"name":"أرض صناعية سابقة","terms":"أرض صناعية سابقة"},"landuse/cemetery":{"name":"مقبرة","terms":"مقبرة,مدفن,جبانة"},"landuse/churchyard":{"name":"Churchyard"},"landuse/commercial":{"name":"منطقة تجارية","terms":"تجارية; تجاري; منطقة تجارة"},"landuse/construction":{"name":"منطقة بناء تحت الإنشاء","terms":"تحت الإنشاء"},"landuse/education":{"name":"الحرم الجامعي التعليمي","terms":"الحرم الجامعي"},"landuse/farm":{"name":"أرض زراعية"},"landuse/farmland":{"name":"أرض زراعية","terms":"أرض زراعية، فلاحة"},"landuse/farmyard":{"name":"مرافق مزرعة","terms":"مرافق مزرعة,بنايات مزرعة,منشاءات مزرعة"},"landuse/flowerbed":{"name":"مساحة زهور زينة","terms":"مساحة زهور زينة"},"landuse/forest":{"name":"الغابات المُدارة","terms":"الغابات المُدارة"},"landuse/garages":{"name":"مرائب/كراجات","terms":"مرائب,كراجات,جراجات,أراضي مرئاب"},"landuse/grass":{"name":"عشب","terms":"عشب,غطاء أخضر"},"landuse/greenfield":{"name":"قطعة أرض (خضراء)","terms":"حقل أخضر,أرض لم تطور,أرض زراعية لم يبنى عليها,قطعة أرض (خضراء),أرض فضاء,أرض بيضاء"},"landuse/greenhouse_horticulture":{"name":"محمية زراعية","terms":"الدفيئات الزراعية,محمية زراعية,بيت محمي زراعي"},"landuse/harbour":{"name":"ميناء/مرفأ","terms":"مرفأ، ميناء"},"landuse/industrial":{"name":"منطقة صناعية","terms":"صناعية; صناعي; صناعات; منطقة صناعات; منطقة صناعة; صناعة; صنع"},"landuse/industrial/scrap_yard":{"name":"تشليح/خردة سيارات","terms":"تشليح سيارات,خردة سيارات"},"landuse/industrial/slaughterhouse":{"name":"مسلخ","terms":"مسلخ"},"landuse/landfill":{"name":"مكب نفايات","terms":"مكب نفايات"},"landuse/meadow":{"name":"مرعى/مرج/روضة","terms":"مرج,روضة,مخضرة,مرعى"},"landuse/military":{"name":"منطقة عسكرية","terms":"جيش,قوات مسلحة,عسكرية"},"landuse/military/airfield":{"name":"قاعدة طيران جوية","terms":"قاعدة جوية، مطار عسكري"},"landuse/military/barracks":{"name":"ثكنة عسكرية","terms":"ثكنة عسكرية"},"landuse/military/base":{"name":"قاعدة عسكرية","terms":"قاعدة عسركية,قاعدة تابعة للجيش"},"landuse/military/base/navy":{"name":"قاعدة بحرية","terms":"قاعدة بحرية,قاعدة مائية"},"landuse/military/obstacle_course":{"name":"تدريب عسكري لتجاوز العقبات","terms":"تدريب عسكري لتجاوز العقبات"},"landuse/military/range":{"name":"ميدان الرماية العسكرية","terms":"ميدان الرماية العسكرية"},"landuse/military/training_area":{"name":"منطقة تدريب عسكري","terms":"منطقة تدريب عسكري"},"landuse/orchard":{"name":"بستان","terms":"بستان,بيارة,أشجار البستان"},"landuse/plant_nursery":{"name":"مشتل","terms":"مشتل"},"landuse/pond":{"name":"بركة ماء"},"landuse/quarry":{"name":"محجر/مقلع","terms":"محجر,مقلع"},"landuse/railway":{"name":"منطقة السكك الحديدية","terms":"منطقة السكك الحديدية"},"landuse/recreation_ground":{"name":"ميدان الألعاب","terms":"ميدان الألعاب"},"landuse/religious":{"name":"منطقة دينية","terms":"منطقة دينية"},"landuse/reservoir":{"name":"خزان/مستودع مياه"},"landuse/residential":{"name":"منطقة سكنية","terms":"منطقة سكانية; سكان; سكنية; سكن; منطقة سكن"},"landuse/residential/apartments":{"name":"مجمع شقق سكنية","terms":"مجمع شقق سكنية,مجمع سكني,مجمع شقق"},"landuse/retail":{"name":"منطقة بيع بالتجزئة","terms":"بيع قطاعي,بيع بالتجزئة"},"landuse/salt_pond":{"name":"ملاحات","terms":"برك تبخير الماء لاستخراج الملح,ملح,سباخ,تبخير"},"landuse/vineyard":{"name":"حقل عنب","terms":"مزرعة عنب,حقل عنب"},"landuse/winter_sports":{"name":"منطقة الرياضات الشتوية","terms":"منطقة الرياضات الشتوية"},"leisure":{"name":"عناصر الترفيه"},"leisure/adult_gaming_centre":{"name":"Adult Gaming Center"},"leisure/amusement_arcade":{"name":"Amusement Arcade"},"leisure/bandstand":{"name":"Bandstand"},"leisure/beach_resort":{"name":"منتجع الشاطئ","terms":"منتجع الشاطئ"},"leisure/bird_hide":{"name":"مكان لمراقبة الطيور","terms":"مكان لمراقبة الطيور"},"leisure/bleachers":{"name":"Bleachers"},"leisure/bowling_alley":{"name":"بولينغ","terms":"بولينغ، بولينج"},"leisure/common":{"name":"أرض مشترك","terms":"مشّاع، متعارف عليه، شعبي، شائع"},"leisure/dance":{"name":"قاعة الرقص","terms":"قاعة الرقص"},"leisure/disc_golf_course":{"name":"مكان للعب قرص الجولف","terms":"مكان للعب قرص الجولف"},"leisure/dog_park":{"name":"حديقة كلاب","terms":"حديقة كلاب"},"leisure/escape_game":{"name":"غرفة الهروب","terms":"غرفة الهروب"},"leisure/firepit":{"name":"حفرة لإشعال نار","terms":"حفرة لإشعال نار"},"leisure/fishing":{"name":"منطقة صيد سمك","terms":"منطقة صيد سمك"},"leisure/fitness_centre":{"name":"مركز لياقة بدنية","terms":"مركز اللياقة البدنية، نادي صحي"},"leisure/fitness_centre/yoga":{"name":"استوديو يوجا","terms":"استديو"},"leisure/fitness_station":{"name":"مكان اللياقة البدنية خارج المباني","terms":"مكان اللياقة البدنية خارج المباني"},"leisure/fitness_station/balance_beam":{"name":"تمرين عارضة التوازن","terms":"تمرين عارضة التوازن"},"leisure/fitness_station/box":{"name":"صندوق للتمرين","terms":"صندوق للتمرين"},"leisure/fitness_station/horizontal_bar":{"name":"تمرين العارضة الأفقية","terms":"تمرين العارضة الأفقية"},"leisure/fitness_station/horizontal_ladder":{"name":"تمرين القضبان الأفقية","terms":"تمرين القضبان الأفقية"},"leisure/fitness_station/hyperextension":{"name":"مكان تمرين تمديد الظهر","terms":"مكان تمرين تمديد الظهر"},"leisure/fitness_station/parallel_bars":{"name":"قضبان متوازية","terms":"قضبان متوازية"},"leisure/fitness_station/push-up":{"name":"مكان تمرين الضغط","terms":"مكان تمرين الضغط"},"leisure/fitness_station/rings":{"name":"حلقات التمرين","terms":"حلقات التمرين"},"leisure/fitness_station/sign":{"name":"لافتة ارشادات التمرين","terms":"لافتة تعليمات التمرين"},"leisure/fitness_station/sit-up":{"name":"مكان تمرين عضلات البطن","terms":"مكان تمرين عضلات البطن"},"leisure/fitness_station/stairs":{"name":"تمرين الدرج","terms":"تمرين الدرج"},"leisure/garden":{"name":"حديقة","terms":"حديقة"},"leisure/garden/botanical":{"name":"حديقة نباتية","terms":"حديقة نباتية"},"leisure/garden/community":{"name":"حديقة مجتمعية","terms":"حديقة مجتمعية"},"leisure/golf_course":{"name":"معلب جولف","terms":"معلب جولف، غولف"},"leisure/hackerspace":{"name":"معمل هاكر","terms":"معمل هاكر"},"leisure/horse_riding":{"name":"مركز ركوب الخيل","terms":"مركز ركوب الخيل"},"leisure/ice_rink":{"name":"حلبة تزلج","terms":"جليد,تزلج,حلبة"},"leisure/indoor_play":{"name":"Indoor Play Center"},"leisure/marina":{"name":"مرسى لليخوت والقوارب الصغيرة","terms":"حوض سفن,رصيف سفن,مرسى سفن"},"leisure/miniature_golf":{"name":"ملعب الجولف المصغرة","terms":"ملعب الجولف المصغرة، غولف"},"leisure/nature_reserve":{"name":"محمية طبيعية","terms":"محمية طبيعية"},"leisure/outdoor_seating":{"name":"منطقة جلوس خارجية","terms":"منطقة جلوس خارجية"},"leisure/park":{"name":"منتزه","terms":"منتزه، حديقة"},"leisure/picnic_table":{"name":"طاولة نزهة","terms":"طاولة نزهة"},"leisure/picnic_table/chess":{"name":"طاولة الشطرنج","terms":"طاولة الشطرنج"},"leisure/pitch":{"name":"ملعب رياضي","terms":"ملعب رياضي"},"leisure/pitch/american_football":{"name":"ملعب كرة قدم أمريكية","terms":"ملعب كرة قدم أمريكية"},"leisure/pitch/archery":{"name":"ميدان الرماية (بالأسهم)","terms":"أسهم,نبل,رمي,تصويب,ميدان"},"leisure/pitch/australian_football":{"name":"ملعب كرة قدم استرالية","terms":"ملعب كرة قدم استرالية"},"leisure/pitch/badminton":{"name":"تنس الريشة","terms":"تنس,كرة,ريشة"},"leisure/pitch/baseball":{"name":"ملعب البيسبول","terms":"ملعب البيسبول"},"leisure/pitch/basketball":{"name":"ملعب كرة السلة","terms":"ملعب كرة السلة"},"leisure/pitch/beachvolleyball":{"name":"ملعب كرة الطائرة الشاطئية","terms":"ملعب"},"leisure/pitch/boules":{"name":"ملعب كرة حديدية","terms":"ملعب كرة حديدية"},"leisure/pitch/bowls":{"name":"بولينج جرين","terms":"بولينج جرين"},"leisure/pitch/chess":{"name":"قطعة شطرنج كبيرة","terms":"قطعة شطرنج كبيرة"},"leisure/pitch/cricket":{"name":"ملعب كريكت","terms":"ملعب كريكت"},"leisure/pitch/field_hockey":{"name":"مساحة ملعب الهوكى","terms":"مساحة ملعب الهوكى"},"leisure/pitch/four_square":{"name":"ساحة أربعة مربعات","terms":"ساحة أربعة مربعات"},"leisure/pitch/funnel_ball":{"name":"قمع الكرة المحكمة","terms":"قمع الكرة المحكمة"},"leisure/pitch/futsal":{"name":"كرة الصالات","terms":"كرة الصالات"},"leisure/pitch/gaga":{"name":"غاغا بيت","terms":"غاغا بيت"},"leisure/pitch/horseshoes":{"name":"حفرة حدوة الحصان","terms":"حفرة حدوة الحصان"},"leisure/pitch/netball":{"name":"كرة السلة","terms":"تنس,كرة,سلة,شبكة"},"leisure/pitch/padel":{"name":"ملعب باديل","terms":"ملعب باديل"},"leisure/pitch/paintball":{"name":"ملعب لعبة كرات الطلاء","terms":"ملعب لعبة بينتبول"},"leisure/pitch/pickleball":{"name":"ملعب كرة الطائرة","terms":"ملعب"},"leisure/pitch/rugby_league":{"name":"ملعب اتحاد الرغبي","terms":"ملعب اتحاد الرغبي، رجبي"},"leisure/pitch/rugby_union":{"name":"ملعب دوري الرغبي","terms":"ملعب دوري الرغبي، رجبي"},"leisure/pitch/shooting":{"name":"حقل رماية","terms":"ميدان رماية"},"leisure/pitch/shuffleboard":{"name":"شفلبورد","terms":"شفلبورد"},"leisure/pitch/skateboard":{"name":"حديقة تزلج","terms":"حديقة تزلج، ساحة تزلج"},"leisure/pitch/soccer":{"name":"ملعب كرة القدم","terms":"ملعب كرة القدم"},"leisure/pitch/softball":{"name":"ملعب سوفتبول","terms":"ملعب سوفتبول"},"leisure/pitch/table_soccer":{"name":"طاولة كرة قدم الطاولة","terms":"طاولة كرة قدم الطاولة,طاولة فوسبول,طاولة فيشة"},"leisure/pitch/table_tennis":{"name":"طاولة كرة المضرب","terms":"طاولة كرة المضرب"},"leisure/pitch/tennis":{"name":"ملعب تنس","terms":"معلب كرة التنس"},"leisure/pitch/tetherball":{"name":"ملعب كرة الحبل","terms":"ملعب كرة الحبل"},"leisure/pitch/volleyball":{"name":"ملعب كرة الطائرة","terms":"ملعب"},"leisure/playground":{"name":"ساحة ألعاب للأطفال","terms":"ساحة ألعاب للأطفال"},"leisure/playground/indoor":{"name":"ملعب داخلي","terms":"ملعب داخلي"},"leisure/resort":{"name":"منتجع","terms":"منتجع"},"leisure/sauna":{"name":"سونا","terms":"سونا"},"leisure/slipway":{"name":"مزلقة سفن","terms":"مزلقة سفن"},"leisure/slipway_drivable":{"name":"منزلق سفن وقوارب (قابل للقيادة)","terms":"منزلق سفن وقوارب (قابل للقيادة)"},"leisure/sports_centre":{"name":"مركز/مجمع رياضي","terms":"مركز رياضي; نادي رياضي; مجمع رياضي"},"leisure/sports_centre/climbing":{"name":"مركز رياضة التسلق","terms":"مركز رياضة التسلق"},"leisure/sports_centre/horse_racing":{"name":"مضمار سباق الخيل","terms":"مضمار سباق الخيل"},"leisure/sports_centre/shooting":{"name":"مرفق ميدان الرماية","terms":"مرفق ميدان الرماية"},"leisure/sports_centre/swimming":{"name":"مرفق بركة سباحة","terms":"حمام سباحة; حوض سباحة; حمام; حوض; سباحة; مسبح"},"leisure/sports_hall":{"name":"قاعة رياضية","terms":"قاعة رياضية"},"leisure/stadium":{"name":"استاد رياضي","terms":"مدرج; مدرج للألعاب الرياضية; استاد رياضي; استاد"},"leisure/swimming_area":{"name":"منطقة سباحة طبيعية","terms":"منطقة سباحة طبيعية"},"leisure/swimming_pool":{"name":"حوض سباحة","terms":"حمام سباحة; حوض سباحة; حمام; حوض; سباحة; مسبح"},"leisure/track":{"name":"مضمار السباق (غير رياضة السيارات)","terms":"مضمار السباق (غير رياضة السيارات)"},"leisure/track/athletics/running":{"name":"مسار جري"},"leisure/track/cycling":{"name":"مسار دراجات هوائية","terms":"مسار دراجات هوائية"},"leisure/track/horse_racing":{"name":"مضمار سباق الخيل","terms":"مضمار سباق الخيل"},"leisure/track/running":{"name":"مسار جري","terms":"مسار جري"},"leisure/trampoline_park":{"name":"منتزه النُطيطة (الترامبولين)","terms":"منتزه النُطيطة (الترامبولين)"},"leisure/water_park":{"name":"ملاهي مائية","terms":"ملاهي مائية; حديقة مائية; منتزه مائي"},"line":{"name":"خط","terms":"خط"},"man_made":{"name":"عنصر من صنع الانسان"},"man_made/adit":{"name":"مدخل منجم","terms":"مدخل; منجم; كهف;"},"man_made/antenna":{"name":"هوائي (أنتنا)","terms":"هوائي,أنتنا,أنتل,انتل,ايريال,اريال,هوائي بث,جهاز بث,إريال,إيريال"},"man_made/beacon":{"name":"منارة","terms":"منارة"},"man_made/beehive":{"name":"منحلة","terms":"منحلة,خلية نحل"},"man_made/breakwater":{"name":"كاسر الأمواج","terms":"كاسر الأمواج"},"man_made/bridge":{"name":"منطقة جسر","terms":"منطقة جسر,مساحة جسر"},"man_made/bunker_silo":{"name":"خنادق وأماكن تخزين الصوامع","terms":"خنادق وأماكن تخزين الصوامع"},"man_made/cairn":{"name":"رِجْم، رجوم (صخور مركومة)","terms":"رِجْم,رجوم,صخور مركومة"},"man_made/carpet_hanger":{"name":"منشر سجاد","terms":"منشر سجاد,منشر موكيت"},"man_made/chimney":{"name":"مدخنة","terms":"مدخنة"},"man_made/clearcut":{"name":"غابة تم قطع أشجارها","terms":"غابة مقطوعة أشجارها"},"man_made/compass_rose":{"name":"وردة البوصلة","terms":"وردة الريح"},"man_made/courtyard":{"name":"فناء"},"man_made/crane":{"name":"رافعة ثابتة","terms":"رافعة"},"man_made/crane/portal_crane":{"name":"رافعة جسرية"},"man_made/cross":{"name":"Cross"},"man_made/cutline":{"name":"خط مستقيم مقطوع في غابة","terms":"خط مستقيم مقطوع في غابة"},"man_made/dovecote":{"name":"برج حمام","terms":"برج حمام"},"man_made/dyke":{"name":"حاجز/عقم لمنع تدفق المياه","terms":"عقم لمنع تدفق المياه,حاجز لمنع تدفق المياه"},"man_made/embankment":{"name":"منحدر اصطناعي/حاد","terms":"منحدر اصطناعي,منحدر حاد,نزلة من طريق مرفوع,انحدار بسيط,انحدار مستوى الأرض"},"man_made/flagpole":{"name":"سارية العلم","terms":"سارية العلم"},"man_made/fuel_pump":{"name":"مضخة وقود","terms":"مضخة وقود,مضخة غاز,مضخة بترول,مضخة جاز,مضخة سولار"},"man_made/gasometer":{"name":"خزان غاز كبير فوق الأرض","terms":"خزان غاز كبير فوق الأرض,خزان غاز كبير,خزان غاز,مستودع غاز,حاوية غاز كبيرة"},"man_made/goods_conveyor":{"name":"مسار ناقل للمواد على خط إنتاج","terms":"مسار ناقل للمواد على خط إنتاج"},"man_made/groyne":{"name":"حاجز للرواسب البحرية","terms":"حاجز للرواسب البحرية,سد للرواسب البحرية,سد طولي يمنع انتقال الرواسب على الجوانب"},"man_made/lighthouse":{"name":"منارة/فنار","terms":"منارة,فنارة,فنار"},"man_made/manhole":{"name":"غطاء غرفة التفتيش","terms":"غطاء غرفة التفتيش"},"man_made/manhole/drain":{"name":"فتحة تصريف مياه الأمطار","terms":"فتحة تصريف مياه الأمطار"},"man_made/manhole/gas":{"name":"فتحة تفتيش خدمات الغاز","terms":"فتحة تفتيش خدمات الغاز"},"man_made/manhole/power":{"name":"فتحة تفتيش خدمات الطاقة","terms":"فتحة تفتيش خدمات الطاقة"},"man_made/manhole/sewer":{"name":"فتحة تفتيش الصرف الصحي","terms":"فتحة تفتيش الصرف الصحي"},"man_made/manhole/telecom":{"name":"فتحة تفتيش خدمة الاتصالات","terms":"فتحة تفتيش خدمة الاتصالات"},"man_made/manhole/water":{"name":"فتحة تفتيش خدمة المياه","terms":"فتحة تفتيش خدمة المياه"},"man_made/mast":{"name":"عمود/برج عمودي","terms":"عمود,برج"},"man_made/mast/communication":{"name":"برج اتصالات","terms":"برج اتصالات"},"man_made/mast/communication/mobile_phone":{"name":"برج اتصالات هواتف محمولة","terms":"برج اتصالات هواتف محمولة"},"man_made/mast/communication/radio":{"name":"برج بث موجات الراديو","terms":"برج بث موجات الراديو"},"man_made/mast/communication/television":{"name":"برج بث التلفاز","terms":"برج بث التلفاز"},"man_made/mast/lighting":{"name":"صاري الإضاءة","terms":"صاري الإضاءة"},"man_made/mineshaft":{"name":"نفق تعدين/منجم","terms":"برج منجم,نفق تعدين/منجم"},"man_made/monitoring_station":{"name":"محطة الرصد","terms":"محطة الرصد"},"man_made/obelisk":{"name":"Obelisk"},"man_made/observatory":{"name":"مرصد","terms":"مرصد"},"man_made/petroleum_well":{"name":"بئر نفط","terms":"بئر نفط، بترول"},"man_made/pier":{"name":"رصيف بحري","terms":"رصيف بحري"},"man_made/pier/floating":{"name":"رصيف عائم","terms":"رصيف عائم"},"man_made/pipeline":{"name":"خط أنابيب","terms":"خط أنابيب"},"man_made/pipeline/underground":{"name":"خط أنابيب تحت الأرض","terms":"خط أنابيب تحت الأرض"},"man_made/planter":{"name":"أصيص","terms":"أصيص,قصرية,محبق,إناء زراعي"},"man_made/pumping_station":{"name":"محطة ضخ","terms":"محطة ضخ"},"man_made/reservoir_covered":{"name":"خزان مياه مغطى","terms":"خزان مياه مغطى"},"man_made/silo":{"name":"صومعة","terms":"صومعة; صومعة غلال"},"man_made/storage_tank":{"name":"خزان سوائل أو غاز (فوق الأرض)","terms":"خزان سوائل أو غاز مضغوط"},"man_made/storage_tank/water":{"name":"خزان مياه","terms":"خزان مياه,خزان ماء"},"man_made/street_cabinet":{"name":"كبينة مرافق وخدمات في الشارع","terms":"كبينة مرافق وخدمات في الشارع,خزنة مرافق وخدمات في الشارع"},"man_made/surveillance":{"name":"معدة/كاميرا رصد ومراقبة","terms":"مراقبة"},"man_made/surveillance/camera":{"name":"كاميرة مراقبة","terms":"كاميرة مراقبة"},"man_made/survey_point":{"name":"نقطة مسح","terms":"نقطة مسح"},"man_made/tower":{"name":"برج","terms":"برج"},"man_made/tower/bell_tower":{"name":"Bell Tower"},"man_made/tower/communication":{"name":"برج اتصالات","terms":"برج اتصالات"},"man_made/tower/cooling":{"name":"برج تبريد","terms":"برج تبريد"},"man_made/tower/defensive":{"name":"برج محصن","terms":"برج محصن"},"man_made/tower/diving":{"name":"منصة غطس"},"man_made/tower/minaret":{"name":"منارة مسجد (مئذنة)","terms":"مِئْذَنَةُ,مئذنة,منارة,منارة مسجد,منارة جامعة"},"man_made/tower/observation":{"name":"برج مراقبة","terms":"برج مراقبة"},"man_made/tower/pagoda":{"name":"Pagoda"},"man_made/tunnel":{"name":"مساحة نفق","terms":"مساحة نفق"},"man_made/utility_pole":{"name":"عمود توصيل كيابل طاقة/اتصالات","terms":"عمود توصيل خدمات (كهرباء،اتصالات..الخ)"},"man_made/video_wall":{"name":"شاشة رقمية","terms":"شاشة رقمية"},"man_made/wastewater_plant":{"name":"محطة صرف صحي","terms":"محطة صرف صحي"},"man_made/water_tap":{"name":"صنبور ماء","terms":"صنبور ماء"},"man_made/water_tower":{"name":"برج خزان مياه","terms":"برج خزان مياه"},"man_made/water_well":{"name":"بئر ماء","terms":"بئر ماء"},"man_made/water_works":{"name":"محطة معالجة المياه","terms":"محطة معالجة المياه"},"man_made/watermill":{"name":"طاحونة مائية","terms":"طاحونة مائية"},"man_made/windmill":{"name":"طاحونة هوائية","terms":"طاحونة هوائية"},"man_made/windpump":{"name":"مضخة هوائية","terms":"مضخة هوائية"},"man_made/works":{"name":"مصنع","terms":"مصنع"},"man_made/yes":{"name":"عنصر من صنع الإنسان (نوع غير محدد)"},"marker":{"name":"علامات (لافتات)","terms":"علامات,لافتات"},"marker/utility":{"name":"علامة مرفق أو خدمة","terms":"علامة مرفق أو خدمة"},"marker/utility/power":{"name":"علامة الطاقة/الكهرباء","terms":"علامة الطاقة/الكهرباء"},"military/bunker":{"name":"مخبأ أو مستودع عسكري محصن","terms":"مخبأ أو مستودع عسكري محصن"},"military/checkpoint":{"name":"نقطة تفتيش أو حاجز عسكري","terms":"نقطة تفتيش عسكرية,حاجز عسكري"},"military/nuclear_explosion_site":{"name":"موقع انفجار نووي","terms":"موقع انفجار نووي"},"military/office":{"name":"دائرة/مفوضية عسكرية","terms":"دائرة/مفوضية عسكرية"},"military/trench":{"name":"خندق عسكري","terms":"خندق عسكري"},"natural":{"name":"عنصر طبيعية"},"natural/bare_rock":{"name":"مساحة لصخر أساس (القاعدة الصخرية) - حرة","terms":"صخر,صخور,صخر عاري,صخر الأديم,صخر أساس,القاعدة الصخرية,حرة,حلاة"},"natural/bay":{"name":"خليج","terms":"خليج"},"natural/beach":{"name":"شاطئ","terms":"شاطئ"},"natural/cape":{"name":"رأس (بحري)","terms":"رأس بحري"},"natural/cave_entrance":{"name":"مدخل كهف","terms":"مدخل كهفي; كهف"},"natural/cliff":{"name":"جُرف","terms":"جرف صخري"},"natural/coastline":{"name":"ساحل","terms":"ساحل"},"natural/fell":{"name":"هضبة","terms":"هضبة، تلة، مرتفع"},"natural/geyser":{"name":"نبع المياه الفوار والحار","terms":"فوارة حارة"},"natural/glacier":{"name":"نهر جليدي","terms":"نهر جليدي"},"natural/grassland":{"name":"أراض عشبية/مرعى","terms":"مرعى,مرج,أرض معشوشبة,أراض عشبية"},"natural/heath":{"name":"براح/قفار ( أراضي الأشجار القمئية)","terms":"براح,قفار ( أراضي الأشجار القمئية)"},"natural/hot_spring":{"name":"العين الحمئة / الينبوع الساخن","terms":"العين الحمئة,الينبوع الساخن,ينبوع,عين,عيون,نبع,الحمئة"},"natural/mud":{"name":"وحل","terms":"وحل,طين"},"natural/peak":{"name":"قمة جبلية","terms":"قمة,ذروة,قمة جبل"},"natural/reef":{"name":"شعاب مرجانية","terms":"شعاب"},"natural/ridge":{"name":"سلسلة من القمم الجبلية","terms":"سلسلة من التلال الجبلية,سلاسل القمم الجبلية المتصلة"},"natural/rock":{"name":"صخرة كبيرة متصلة بالأرض / صخرة بارزة عن الأرض","terms":"صخرة كبيرة متصلة بالأرض,صخرة بارزة عن الأرض"},"natural/saddle":{"name":"السرج الجبلي (ممر جبلي)","terms":"ممر جبلي,سرج الجبلي"},"natural/sand":{"name":"رمال / نفود","terms":"رمال,نفود"},"natural/scree":{"name":"حصى / ركام حجارة","terms":"ركام حجارة، تلة، مجموعة صخور، تلة حصاة"},"natural/scrub":{"name":"فيضة / روضة","terms":"فيضة,روضة,أراضي الأشجار القمئية"},"natural/shingle":{"name":"حصى الشواطئ","terms":"حصى الشواطئ,حصى مياه الشواطئ,حصى السواحل"},"natural/shrub":{"name":"شجيرة","terms":"شجيرة"},"natural/sinkhole":{"name":"دِحل/خفس/هبوط أرضي"},"natural/spring":{"name":"عين / نبع / ينبوع","terms":"نبع,منبع,عين,ينبوع,عيون"},"natural/stone":{"name":"صخرة كبيرة غير متصلة بالأرض","terms":"صخرة كبيرة غير متصلة بالأرض"},"natural/strait":{"name":"مضيق"},"natural/tree":{"name":"شجرة","terms":"شجرة"},"natural/tree_row":{"name":"صف أشجار","terms":"صف أشجار"},"natural/valley":{"name":"وادي","terms":"وادي"},"natural/volcano":{"name":"بركان","terms":"بركان"},"natural/water":{"name":"مياه","terms":"ماء"},"natural/water/basin":{"name":"أرض حوضية طبيعية تحتوي الماء","terms":"أرض حوضية تحتوي الماء,قلته,مَجمع مياه,أرض تجمع المياه,أرض تحتوي المياه,وقر,جلته,وقبه"},"natural/water/canal":{"name":"مساحة قناة مائية","terms":"مساحة قناة مائية"},"natural/water/lake":{"name":"بحيرة","terms":"بحيرة"},"natural/water/moat":{"name":"خندق مائي","terms":"خندق مائي,خندق مملوء بالماء"},"natural/water/pond":{"name":"بركة","terms":"بركة"},"natural/water/reservoir":{"name":"بحيرة صناعية لتخزين مياه","terms":"بحيرة اصطناعية,خزان مياه"},"natural/water/river":{"name":"مساحة النهر / الوادي / المجرى المائي الواسع","terms":"مساحة النهر,مساحة الوادي,مساحة المجرى المائي الواسع"},"natural/water/stream":{"name":"مساحة المجرى المائي","terms":"مساحة المجرى المائي"},"natural/water/wastewater":{"name":"حوض تخزين الصرف الصحي","terms":"حوض تخزين الصرف الصحي"},"natural/wetland":{"name":"أرض رطبة","terms":"أرض رطبة,مستنقع,هور"},"natural/wetland/bog":{"name":"رخاخ","terms":"رخاخ"},"natural/wetland/fen":{"name":"مستنقع أعشاب مغذى من المياه الجوفية","terms":"مستنقع أعشاب مغذى من المياه الجوفية"},"natural/wetland/mangrove":{"name":"غابات المانغروف","terms":"غابات المانغروف"},"natural/wetland/marsh":{"name":"هور/ سبخة","terms":"هور,سبخة"},"natural/wetland/reedbed":{"name":"مقصبة","terms":"مقصبة"},"natural/wetland/saltmarsh":{"name":"مستنقع الملح الساحلي","terms":"مستنقع الملح الساحلي"},"natural/wetland/string_bog":{"name":"سلسلة رخاخ","terms":"سلسلة رخاخ"},"natural/wetland/swamp":{"name":"مستنقع","terms":"مستنقع"},"natural/wetland/tidalflat":{"name":"المد و الجزر منبسط","terms":"المد و الجزر منبسط"},"natural/wetland/wet_meadow":{"name":"مرعى/مرج رطب طوال العام","terms":"مرعى/مرج رطب"},"natural/wood":{"name":"خشب طبيعي","terms":"خشب طبيعي"},"network/type/node_network-DE-NL-BE-LU":{"name":"عقدة الشبكة الترفيهية","terms":"عقدة الشبكة الترفيهية"},"noexit/yes":{"name":"لا يوجد مخرج","terms":"لا يوجد مخرج"},"office":{"name":"مكتب","terms":"مكتب,دائرة,مفوضية,إدارة"},"office/accountant":{"name":"مكتب محاسب","terms":"المحاسب القانوني,المدقق,الحسابات,مراجع,محاسب قانوني"},"office/administrative":{"name":"مكتب إداري"},"office/adoption_agency":{"name":"Adoption Agency"},"office/advertising_agency":{"name":"وكالة إعلانية","terms":"وكالة الإشهار، وكالة إعلانية"},"office/architect":{"name":"مكتب مهندس معماري","terms":"بناء,مباني,مدينة,تعمير,مهندس معماري,هندسة,هندسة معمارية,هندسي,مكتب هندسي"},"office/association":{"name":"مكتب منظمة غير ربحية","terms":"جمعية,منظمة غير ربحية"},"office/bail_bond_agent-US-PH":{"name":"مكتب وكيل سند الكفالة","terms":"مكتب وكيل سند الكفالة"},"office/charity":{"name":"مكتب منظمة خيرية","terms":"مكتب منظمة خيرية,جمعية خيرية,صدقات,احسان,مبرة,مبرة خيرية,جمعية بر,زكاة,زكوات,صدقة"},"office/company":{"name":"مكتب شركة / مؤسسة","terms":"مكتب شركة,مكتب مؤسسة,مؤسسة,شركة"},"office/consulting":{"name":"مكتب شركة استشارية","terms":"مكتب شركة استشارية"},"office/coworking":{"name":"مساحة عمل مشتركة","terms":"مساحة عمل مشتركة"},"office/diplomatic":{"name":"مكتب دبلوماسي","terms":"مكتب دبلوماسي"},"office/diplomatic/consulate":{"name":"قنصلية","terms":"قنصلية"},"office/diplomatic/embassy":{"name":"سفارة","terms":"سفارة"},"office/diplomatic/liaison":{"name":"مكتب اتصال دبلوماسي","terms":"مكتب اتصال دبلوماسي"},"office/educational_institution":{"name":"مكتب مؤسسة تعليمية","terms":"مؤسسة تعليمية، جامعة، كلية، مدرسة"},"office/employment_agency":{"name":"مكتب وكالة توظيف","terms":"إدارة شؤون الموظفين,مكتب العمل"},"office/energy_supplier":{"name":"مكتب شركة مرافق الكهرباء","terms":"شركة مرافق الكهرباء"},"office/estate_agent":{"name":"مكتب عقاري","terms":"الطابو، دائرة السجل العقاري، إدارة تسجيل الممتلكات"},"office/financial":{"name":"مكتب مالي","terms":"المكتب المالي والضريبي"},"office/financial_advisor":{"name":"المستشار المالي","terms":"المستشار المالي"},"office/forestry":{"name":"مكتب إدارة الغابات","terms":"إدارة الغابات"},"office/foundation":{"name":"مكتب مؤسسة","terms":"مؤسسة"},"office/government":{"name":"مكتب/دائرة حكومية","terms":"رئاسة الوزراء,إدارة الدولة,المكتب العام,دائرة حكومية,إدارة حكومية,قسم حكومي,مؤسسة حكومية,وكالة حكومية"},"office/government/prosecutor":{"name":"مكتب النيابة العامة","terms":"مكتب النائب العام"},"office/government/register_office":{"name":"مكتب السجل المدني","terms":"مكتب السجل المدني"},"office/government/tax":{"name":"مكتب الضرائب","terms":"مكتب الضرائب"},"office/guide":{"name":"مكتب الدليل السياحي","terms":"مكتب الدليل السياحي; مكتب المرشد السياحي"},"office/insurance":{"name":"مكتب تأمينات","terms":"مديرية المعاشات، دائرة التأمينات الاجتماعية، إدارة التأمين"},"office/it":{"name":"مكتب متخصصي تكنولوجيا المعلومات","terms":"متخصص في تكنولوجيا المعلومات; معلوماتية"},"office/lawyer":{"name":"مكتب قانوني","terms":"مكتب محاماة، اﻹدارة القانونية، المحكمة،"},"office/lawyer/notary":{"name":"مكتب كتابة عدل / موثق"},"office/moving_company":{"name":"مكتب شركة نقل","terms":"مكتب شركة نقل"},"office/newspaper":{"name":"صحيفة","terms":"جريدة، صفحة أخبار، يومية"},"office/ngo":{"name":"مكتب المنظمات العامة الغير حكومية","terms":"مكتب الجمعيات الخيرية، هيئات العمل اﻹغائي،"},"office/notary":{"name":"مكتب كتابة عدل / موثق","terms":"كاتب عدل، موثق"},"office/physician":{"name":"طبيب"},"office/political_party":{"name":"مكتب الحزب السياسي","terms":"مكتب الحزب السياسي"},"office/private_investigator":{"name":"مكتب محقق خاص","terms":"مكتب محقق"},"office/quango":{"name":"مكتب منظمة غير حكومية شبه مستقلة","terms":"مكتب منظمة غير حكومية شبه مستقلة"},"office/religion":{"name":"مكتب ديني","terms":"مكتب ديني"},"office/research":{"name":"مكتب بحوث","terms":"مكتب البحوث، مكتب اﻷبحاث، هيئة اﻷبحاث، مكتب بحث علمي، مركز للبحث العلمي"},"office/security":{"name":"مكتب مؤسسات الحراسات الأمنية","terms":"مكتب مؤسسات الحراسات الأمنية"},"office/surveyor":{"name":"مكتب مساح أرضي","terms":"مساح"},"office/tax_advisor":{"name":"مستشار الضرائب","terms":"مستشار الضرائب"},"office/telecommunication":{"name":"مكتب شركات اتصالات","terms":"مكتب الاتصالات، إدارة الاتصال، هيئة الاتصالات العامة"},"office/therapist":{"name":"المعالج","terms":"معالج، معالج فيزيائي، طبيب، مُمرض"},"office/travel_agent":{"name":"وكالة السفر"},"office/water_utility":{"name":"مكتب شركة مياه","terms":"شركة المياه"},"office/yes":{"name":"مكتب (نوع غير محدد)"},"pipeline/substation":{"name":"محطة فرعية لخطوط الأنابيب"},"pipeline/valve":{"name":"صمام خط أنابيب","terms":"صمام خط أنابيب"},"piste/downhill":{"name":"سباق التزلج على المنحدرات","terms":"سباق التزلج على المنحدرات"},"piste/downhill/halfpipe":{"name":"نصف أنبوب رياضة الثلج","terms":"نصف أنبوب رياضة الثلج"},"piste/hike":{"name":"ممر المشي بالأحذية الثلجية","terms":"ممر المشي بالأحذية الثلجية"},"piste/ice_skate":{"name":"مسار التزلج على الجليد","terms":"مسار التزلج على الجليد"},"piste/nordic":{"name":"مسار تزلج عبر الريف","terms":"مسار تزلج عبر الريف"},"piste/skitour":{"name":"مسار للتزلج على الجليد","terms":"مسار للتزلج على الجليد"},"piste/sled":{"name":"تشغيل الزلاجات","terms":"تشغيل الزلاجات"},"piste/sleigh":{"name":"ممر الزلاجة","terms":"ممر الزلاجة"},"place":{"name":"مكان / موضع"},"place/city":{"name":"مدينة كبيرة","terms":"مدينة كبيرة,مدينة,مدينة كبرى"},"place/city_block":{"name":"مربع سكني","terms":"بلك,بلوك,مربع,مربع سكني,حاره"},"place/farm":{"name":"مزرعة"},"place/hamlet":{"name":"قرية صغيرة / هجرة","terms":"قرية صغيرة,هجرة"},"place/island":{"name":"جزيرة","terms":"جزيرة"},"place/islet":{"name":"جزيرة صغيرة","terms":"جزيرة صغيرة"},"place/isolated_dwelling":{"name":"مساكن متفرقة ومنعزلة","terms":"مساكن متفرقة"},"place/locality":{"name":"موضع لمكان غير مأهول","terms":"موقع,موضع"},"place/neighbourhood":{"name":"حي سكني","terms":"حي سكني"},"place/plot":{"name":"قطعة الأرض","terms":"قطعة الأرض"},"place/quarter":{"name":"منطقة فرعية / ربع","terms":"منطقة فرعية / ربع"},"place/square":{"name":"ساحة","terms":"ساحة,باحة,ممشى"},"place/suburb":{"name":"ضاحية","terms":"ضاحية"},"place/town":{"name":"مدينة","terms":"مدينة صغيرة,مدينة,مدينة صغرى,بلده"},"place/village":{"name":"قرية","terms":"قرية"},"playground":{"name":"أجهزة وتركيبات الملعب"},"playground/activitypanel":{"name":"تشغيل لوحة النشاط","terms":"تشغيل لوحة النشاط"},"playground/aerialrotator":{"name":"معلقة سبينر","terms":"معلقة سبينر"},"playground/balancebeam":{"name":"لعبة التوازن على الجذع","terms":"لعبة التوازن على الجذع"},"playground/basketrotator":{"name":"سلة دوارة","terms":"سلة دوارة"},"playground/basketswing":{"name":"السلة المتأرجحة","terms":"السلة المتأرجحة"},"playground/bridge":{"name":"لعبة الجسر","terms":"لعبة الجسر"},"playground/climbingframe":{"name":"لعب تسلق الإطار","terms":"لعب تسلق الإطار"},"playground/climbingwall":{"name":"لعب جدار التسلق","terms":"لعب جدار التسلق"},"playground/cushion":{"name":"وسادة نطاطه","terms":"وسادة نطاطه"},"playground/funnel_ball":{"name":"لعبة قِمع الكرة","terms":"لعبة قِمع الكرة"},"playground/hopscotch":{"name":"الحجلة","terms":"الحجلة"},"playground/horizontal_bar":{"name":"لعبة العارضة الأفقية","terms":"لعبة العارضة الأفقية"},"playground/map":{"name":"خريطة ملعب مرسومة","terms":"خريطة ملعب مرسومة"},"playground/playhouse":{"name":"بيت اللعب","terms":"بيت اللعب"},"playground/roundabout":{"name":"لعبة الصحن الدوار","terms":"لعبة الصحن الدوار"},"playground/sandpit":{"name":"مكان اللعب بالرمل","terms":"مكان اللعب بالرمل"},"playground/seesaw":{"name":"أرجوحة","terms":"مرجيحة,أرجوحة"},"playground/sledding":{"name":"لعبة الانزلاق من التل","terms":"لعبة الانزلاق من التل"},"playground/slide":{"name":"زحليقة","terms":"زحليقة"},"playground/splash_pad":{"name":"لعبة بركة الرذاذ","terms":"لعبة بركة الرذاذ"},"playground/springy":{"name":"نطاطه على سبرينق","terms":"نطاطه على سبرينق"},"playground/structure":{"name":"هيكل لعبة كبيرة","terms":"هيكل لعبة كبيرة"},"playground/swing":{"name":"مرجيحة","terms":"مرجيحة,أرجوحة,مراجيح"},"playground/teenshelter":{"name":"مأوى المراهقين","terms":"مأوى المراهقين"},"playground/tetherball":{"name":"ملعب كرة الحبل","terms":"ملعب كرة الحبل"},"playground/trampoline":{"name":"النُطيطة (الترامبولين)","terms":"النُطيطة (الترامبولين)"},"playground/tunnel_tube":{"name":"لعبة النفق","terms":"لعبة النفق"},"playground/water":{"name":"لعبة تشغيل المضخة","terms":"لعبة تشغيل المضخة"},"playground/zipwire":{"name":"الانزلاق على حبل","terms":"الانزلاق على حبل"},"point":{"name":"نقطة","terms":"نقطة"},"police/checkpoint":{"name":"نقطة تفتيش أو حاجز عسكري","terms":"نقطة تفتيش,حاجز عسكري"},"polling_station":{"name":"Temporary Polling Place"},"power":{"name":"عنصر طاقة/كهرباء"},"power/cable":{"name":"كابل الطاقة"},"power/cable/underground":{"name":"كابل كهرباء تحت الأرض","terms":"كابل كهرباء تحت الأرض"},"power/generator":{"name":"مولد طاقة","terms":"مولد الطاقة,طاقة,كهرباء,مولد كهرباء"},"power/generator/method/photovoltaic":{"name":"لوحة شمسية","terms":"لوحات شمسية,طاقة شمسية,طاقة,شمس"},"power/generator/method/photovoltaic/building/roof":{"name":"مظلة الألواح الشمسية","terms":"مظلة الألواح الشمسية"},"power/generator/method/photovoltaic/location/roof":{"name":"لوحة شمسية على السطح","terms":"لوحة شمسية على السطح"},"power/generator/source/hydro":{"name":"توربينات مائية","terms":"توربينات مائية"},"power/generator/source/nuclear":{"name":"مفاعل نووي","terms":"نووي,مفاعل,طاقة,كهرباء"},"power/generator/source/wind":{"name":"توربينة رياح","terms":"رياح,توليد كهرباء,كهرباء,توربينات,توربينة,توربين,طاقة"},"power/line":{"name":"خط كهرباء","terms":"خط كهرباء,خط طاقة"},"power/minor_line":{"name":"خط كهربائي ثانوي","terms":"خط كهربائي صغير،,خط طاقة صغير"},"power/plant":{"name":"محطة توليد كهرباء","terms":"محطة توليد الكهرباء,الطاقة الكهربائية"},"power/plant/source/coal":{"name":"محطة لتوليد الكهرباء تعمل بالفحم","terms":"محطة لتوليد الكهرباء تعمل بالفحم"},"power/plant/source/gas":{"name":"محطة لتوليد الكهرباء تعمل بالغاز","terms":"محطة لتوليد الكهرباء تعمل بالغاز"},"power/plant/source/hydro":{"name":"محطة كهرباء كهرومائية","terms":"محطة كهرباء كهرومائية"},"power/plant/source/method/photovoltaic":{"name":"مزرعة شمسية","terms":"محطة الطاقة الشمسية ، محطة توليد الطاقة الشمسية ، الطاقات المتجددة","aliases":"محطة للطاقة الشمسية"},"power/plant/source/nuclear":{"name":"محطة كهرباء نووية","terms":"محطة كهرباء نووية"},"power/plant/source/oil":{"name":"محطة كهرباء تعمل بالنفط","terms":"محطة كهرباء تعمل بالنفط"},"power/plant/source/solar":{"name":"محطة للطاقة الشمسية","terms":"محطة توليد الطاقة الشمسية ، الطاقات المتجددة"},"power/plant/source/waste":{"name":"مولد طاقة يعمل عن طريق حرق النفايات","terms":"مولد طاقة يعمل عن طريق حرق النفايات"},"power/plant/source/wind":{"name":"مزرعة طاقة عبر الرياح","terms":"مزرعة طاقة عبر الرياح"},"power/pole":{"name":"عمود كهرباء","terms":"عمود كهرباء,برج كهرباء.أعمدة طاقة,عمود طاقة,عمود نقل الطاقة,عمود نقل الكهرباء"},"power/substation":{"name":"محطة فرعية","terms":"محطة فرعية"},"power/switch":{"name":"معدة وصل وفصل كهربائية","terms":"معدة وصل وفصل,مفتاح,فصل,وصل"},"power/tower":{"name":"برج كهرباء ضغط عالي","terms":"برج عالي الجهد,برج تيار عالي الجهد,تيار عالي الجهد,برج كهرباء,أبراج كهرباء,برج طاقة,برج توصيل طاقة"},"power/transformer":{"name":"محول كهربائي","terms":"محول الكهربائي"},"public_transport/platform":{"name":"منصة انتظار وسائل النقل العام","terms":"منصة انتظار وسائل النقل العام,منصةانتظار وسائل النقل العام,مكان لركوب الباص,رصيف انتظار النقل العام"},"public_transport/platform/aerialway":{"name":"منصة انتظار وسائل النقل بالكابلات","terms":"منصة انتظار وسائل النقل بالكابلات"},"public_transport/platform/aerialway_point":{"name":"منصة توقف لوسائل النقل بالكابلات"},"public_transport/platform/bus":{"name":"منصة انتظار ركوب الحافلات","terms":"منصة انتظار ركوب الحافلات"},"public_transport/platform/bus_point":{"name":"محطة توقف حافلات","terms":"محطة توقف حافلات"},"public_transport/platform/bus_tram_point":{"name":"محطة توقف الترام و الحافلات","terms":"محطة توقف الترام و الحافلات"},"public_transport/platform/ferry":{"name":"منصة انتظار ركوب العبارات البحرية","terms":"منصة انتظار ركوب العبارات البحرية"},"public_transport/platform/ferry_point":{"name":"منصة توقف عبارات بحرية"},"public_transport/platform/light_rail":{"name":"منصة انتظار ركوب السكة الحديدية الخفيفة","terms":"منصة انتظار ركوب السكة الحديدية الخفيفة"},"public_transport/platform/light_rail_point":{"name":"منصة توقف السكة الحديدية الخفيفة"},"public_transport/platform/monorail":{"name":"منصة انتظار ركوب القطار الكهربائي","terms":"منصة انتظار ركوب القطار الكهربائي"},"public_transport/platform/monorail_point":{"name":"منصة توقف القطار الكهربائي"},"public_transport/platform/subway":{"name":"منصة انتظار و ركوب مترو الانفاق","terms":"منصة انتظار و ركوب مترو الانفاق"},"public_transport/platform/subway_point":{"name":"منصة توقف مترو الانفاق"},"public_transport/platform/train":{"name":"منصة انتظار وركوب القطار","terms":"منصة انتظار وركوب القطار"},"public_transport/platform/train_point":{"name":"منصة توقف القطار"},"public_transport/platform/tram":{"name":"منصة انتظار وركوب الترام","terms":"منصة انتظار وركوب الترام"},"public_transport/platform/tram_point":{"name":"منصة توقف الترام","terms":"منصة توقف الترام"},"public_transport/platform/trolleybus":{"name":"منصة انتظار وركوب حافلة ترولي","terms":"منصة انتظار وركوب حافلة ترولي"},"public_transport/platform/trolleybus_point":{"name":"محطة توقف حافلة كهربائية","terms":"محطة توقف حافلة كهربائية"},"public_transport/platform_point":{"name":"منصة ركوب وتوقف وسائل النقل العام","terms":"منصة ركوب وتوقف وسائل النقل العام"},"public_transport/station":{"name":"محطة نقل عام","terms":"محطة نقل عام"},"public_transport/station_aerialway":{"name":"محطة النقل بالكابلات","terms":"محطة النقل بالكابلات; محطة تلفريك"},"public_transport/station_bus":{"name":"محطة الحافلات / صالة","terms":"محطة الحافلات"},"public_transport/station_ferry":{"name":"محطة / صالة العبارات","terms":"محطة / صالة العبارات"},"public_transport/station_light_rail":{"name":"محطة سكة حديد خفيفة","terms":"محطة سكة حديد خفيفة"},"public_transport/station_monorail":{"name":"محطة سكة حديد أحادية","terms":"محطة سكة حديد أحادية"},"public_transport/station_subway":{"name":"محطة مترو","terms":"محطة مترو"},"public_transport/station_train":{"name":"محطة قطار","terms":"محطة القطار"},"public_transport/station_train_halt":{"name":"محطة القطار (توقف/ طلب)","terms":"محطة القطار (توقف/ طلب)"},"public_transport/station_tram":{"name":"محطة ترام","terms":"محطة ترام"},"public_transport/station_trolleybus":{"name":"صالة محطة حافلات كهربائية","terms":"صالة محطة حافلات كهربائية"},"public_transport/stop_area":{"name":"منطقة توقف وسائل نقل عام","terms":"منطقة توقف وسائل نقل عام"},"public_transport/stop_position":{"name":"موقع توقف وسائل نقل عام","terms":"موقع توقف وسائل نقل عام"},"public_transport/stop_position_aerialway":{"name":"موقع توقف وسائل نقل بالكابلات","terms":"موقع توقف وسائل نقل بالكابلات"},"public_transport/stop_position_bus":{"name":"موقع وقوف حافلات","terms":"موقع وقوف حافلات"},"public_transport/stop_position_ferry":{"name":"موقع وقوف عبّارات","terms":"موقع وقوف عبّارات"},"public_transport/stop_position_light_rail":{"name":"موقع وقوف سكك حديد خفيفة","terms":"موقع وقوف سكك حديد خفيفة"},"public_transport/stop_position_monorail":{"name":"موقع وقوف سكك حديد أحادية","terms":"موقع وقوف سكك حديد أحادية"},"public_transport/stop_position_subway":{"name":"موقع وقوف مترو الأنفاق","terms":"موقع وقوف مترو الأنفاق"},"public_transport/stop_position_train":{"name":"مكان موقف القطار","terms":"مكان موقف القطار"},"public_transport/stop_position_tram":{"name":"موقع وقوف الترام","terms":"موقع وقوف الترام"},"public_transport/stop_position_trolleybus":{"name":"موقع وقوف حافلات كهربائية","terms":"موقع وقوف حافلات كهربائية"},"railway":{"name":"عنصر سكك الحديد"},"railway/abandoned":{"name":"سكة حديدية مهجورة","terms":"سكة حديد مهجورة"},"railway/buffer_stop":{"name":"مصد قطارات","terms":"مصد,قطار"},"railway/construction":{"name":"سكة حديدية تحت الإنشاء","terms":"سكة حديدية تحت الإنشاء"},"railway/crossing":{"name":"معبر مشاه على الخطوط الحديدية","terms":"معبر مشاه على الخطوط الحديدية"},"railway/derail":{"name":"معدة حماية تخرج القطار عن المسار","terms":"معدة حماية تخرج القطار عن المسار"},"railway/disused":{"name":"سكة حديدة مهجورة","terms":"سكة حديد غير مستعملة"},"railway/funicular":{"name":"مسار قطار جبلي مائل","terms":"مسار قطار جبلي مائل"},"railway/halt":{"name":"محطة قطار صغيرة (يتوقف عندها القطار عند الطلب)"},"railway/level_crossing":{"name":"معبر سيارات على السكة الحديدية","terms":"تقاطع سكة حديدية,تقاطع طريق سيارات مع سكة حديدية,مزلقان"},"railway/light_rail":{"name":"مسار سكة حديد خفيف","terms":"مسار سكة حديد خفيف"},"railway/milestone":{"name":"لوحة/علامة مسافات السكة الحديدية","terms":"لوحة/علامة مسافات السكة الحديدية"},"railway/miniature":{"name":"مسار القطار المصغر","terms":"مسار القطار المصغر"},"railway/monorail":{"name":"مسار سكة حديدية أحادية","terms":"مسار سكة حديدية أحادية"},"railway/monorail/hanging":{"name":"مسار سكة حديدية أحادية معلقة","terms":"مسار سكة حديدية معلقة و أحادية"},"railway/narrow_gauge":{"name":"مسار قطار ضيق","terms":"مسار قطار ضيق"},"railway/platform":{"name":"منصة القطار"},"railway/preserved":{"name":"مسار سكة حديد قديمة/تراثية","terms":"مسار سكة حديد قديمة/تراثية"},"railway/rail":{"name":"مسار القطار","terms":"مسار القطار"},"railway/rail/highspeed":{"name":"مسار قطار عالي السرعة","terms":"مسار قطار عالي السرعة"},"railway/railway_crossing":{"name":"تقاطع مسار قطارات مع مسار قطارات آخر","terms":"تقاطع مسار قطارات مع مسار قطارات آخر"},"railway/signal":{"name":"إشارة مرور السكك الحديدية","terms":"إشارة مرور السكك الحديدية"},"railway/station":{"name":"محطة سكة حديد"},"railway/subway":{"name":"مسار مترو الانفاق","terms":"مسار مترو الانفاق"},"railway/subway_entrance":{"name":"مدخل مترو الأنفاق","terms":"مدخل مترو الأنفاق"},"railway/switch":{"name":"محول مسار القطار على السكة الحديدة","terms":"محول مسار القطار على السكة الحديدة"},"railway/train_wash":{"name":"مغسلة قطارات","terms":"مغسلة قطارات"},"railway/tram":{"name":"مسار الترام","terms":"مسار الترام"},"railway/tram_crossing":{"name":"معبر مشاة على مسار الترام","terms":"معبر مشاة على مسار الترام"},"railway/tram_level_crossing":{"name":"تقاطع بين مسار ترام ومسار سيارات","terms":"تقاطع بين مسار ترام ومسار سيارات"},"railway/tram_stop":{"name":"مكان توقف الترام"},"railway/yard":{"name":"ساحة السكة الحديدية","terms":"ساحة السكة الحديدية"},"relation":{"name":"علاقة","terms":"علاقة"},"route/ferry":{"name":"مسار عبّارة","terms":"مسار عبّارة,مسار سفن"},"seamark":{"name":"علامة بحرية"},"seamark/beacon_isolated_danger":{"name":"منارة الخطر","terms":"منارة الخطر"},"seamark/beacon_lateral":{"name":"منارة القناة","terms":"منارة القناة"},"seamark/buoy_lateral":{"name":"عوامة تشير للقناة","terms":"عوامة تشير للقناة"},"seamark/buoy_lateral/green":{"name":"عوامة خضراء","terms":"العوامة الخضراء"},"seamark/buoy_lateral/red":{"name":"عوامة حمراء","terms":"عوامة حمراء"},"seamark/mooring":{"name":"مربط سفن ومراكب بحرية","terms":"مربط سفن ومركبات بحرية"},"shop":{"name":"متجر","terms":"محل. متجر,دكان"},"shop/agrarian":{"name":"متجر المنتجات والمستلزمات الزراعية","terms":"متجر المنتجات والمستلزمات الزراعية"},"shop/alcohol":{"name":"متجر خمور","terms":"محل خمور,خمور,متجر خمور"},"shop/anime":{"name":"متجر أنيمي / مانغا","terms":"متجر أنيمي / مانغا"},"shop/antiques":{"name":"متجر تحف","terms":"متجر تحف ، متجر أشياء قديمة ، تذكارات"},"shop/appliance":{"name":"متجر الأجهزة المنزلية","terms":"متجر الأجهزة المنزلية,متجر ثلاجات,ثلاجات,غسالات,مكيفات"},"shop/art":{"name":"متجر الفنون","terms":"متجر فنون"},"shop/baby_goods":{"name":"متجر مستلزمات الأطفال","terms":"متجر مستلزمات الأطفال,متجر سلع الأطفال"},"shop/bag":{"name":"متجر حقائب وأمتعة","terms":"شنطة,حقيبة"},"shop/bakery":{"name":"مخبز","terms":"مخبز"},"shop/bathroom_furnishing":{"name":"متجر أثاث واكسسوارات الحمامات","terms":"متجر أثاث واكسسوارات الحمامات"},"shop/beauty":{"name":"محل تجميل","terms":"محل تجميل"},"shop/beauty/nails":{"name":"صالون أظافر","terms":"صالون أظافر"},"shop/beauty/tanning":{"name":"صالون تسمير","terms":"صالون تسمير"},"shop/bed":{"name":"متجر مراتب ولوازم الفراش","terms":"متجر مراتب ولوازم الفراش"},"shop/beverages":{"name":"محل بيع مشروبات ومرطبات","terms":"محل مشروبات"},"shop/bicycle":{"name":"متجر دراجات هوائية","terms":"محل دراجات هوائية; متجر دراجات; محل دراجات; بائع دراجات"},"shop/boat":{"name":"متجر بيع قوارب ومستلزماتها","terms":"متجر بيع قوارب ومستلزماتها"},"shop/bookmaker":{"name":"مكتب رهانات"},"shop/books":{"name":"بائع كتب","terms":"متجر كتب ، مكتبة ، محل بيع كتب","aliases":"متجر كتب\nمكتبة\nمحل بيع كتب"},"shop/boutique":{"name":"بوتيك"},"shop/brewing_supplies":{"name":"Brewing Supply Store"},"shop/butcher":{"name":"جزار","terms":"جزار,محل بيع لحوم. محل جزارة,لحوم"},"shop/camera":{"name":"Camera Equipment Store"},"shop/candles":{"name":"متجر الشموع","terms":"متجر الشموع"},"shop/cannabis":{"name":"Cannabis Shop"},"shop/car":{"name":"وكالة/معرض سيارات","terms":"وكالة سيارات"},"shop/car/second_hand":{"name":"وكالة/معرض بيع السيارات المستعملة","terms":"وكالة/معرض بيع السيارات المستعملة"},"shop/car_parts":{"name":"محل قطع غيار السيارة","terms":"محل بيع قطع السيارات"},"shop/car_repair":{"name":"ورشة إصلاح سيارات","terms":"محل تصليح سيارات; ورشة تصليح; ورشة; ميكانيكي"},"shop/caravan":{"name":"متجر بيع كرفانات ومنازل متنقلة","terms":"متجر بيع كرفانات ومنازل متنقلة"},"shop/carpet":{"name":"متجر سجاد ومفروشات","terms":"متجر سجاد; زرابي,سجاد,مفروشات"},"shop/catalogue":{"name":"Catalog Shop"},"shop/charity":{"name":"متجر خيري","terms":"متجر خيري,متجر جمعية خيرية,متجر بيع البضائع المستعملة للجمعية الخيرية"},"shop/cheese":{"name":"متجر أجبان","terms":"متجر أجبان"},"shop/chemist":{"name":"متجر أدوات النظافة الشخصية والتجميل","terms":"متجر أدوات النظافة الشخصية والتجميل"},"shop/chocolate":{"name":"متجر شوكولاتة","terms":"متجر شوكولاتة"},"shop/clothes":{"name":"محل ملابس","terms":"محل بيع ملابس"},"shop/clothes/second_hand":{"name":"متجر لبيع الملابس المستعملة","terms":"متجر لبيع الملابس المستعملة"},"shop/clothes/suits":{"name":"متجر بيع بذلات","terms":"متجر بيع بذلات,متجر بيع أطقم"},"shop/clothes/underwear":{"name":"متجر بيع الملابس الداخلية","terms":"متجر بيع الملابس الداخلية"},"shop/clothes/wedding":{"name":"محل بيع وتفصيل ملابس الزفاف","terms":"محل بيع وتفصيل ملابس الزفاف"},"shop/clothes/workwear":{"name":"متجر بيع ملابس مخصصة للعمل","terms":"متجر بيع ملابس مخصصة للعمل,متجر بيع ملابس أعمال"},"shop/coffee":{"name":"متجر القهوة","terms":"متجر القهوة"},"shop/collector":{"name":"متجر المقتنيات والتجميعات","terms":"متجر المقتنيات والتجميعات"},"shop/computer":{"name":"محل حاسب آلي","terms":"محل حاسوب,محل حاسب آلي,محل حاسب,محل كمبيوتر,متجر للكمبيوتر,كمبيوتر"},"shop/confectionery":{"name":"متجر حلويات","terms":"حلويات,حلوى,سكاكر"},"shop/convenience":{"name":"بقالة - متجر صغير","terms":"بقالة,متجر صغير,تموينات"},"shop/copyshop":{"name":"متجر نسخ وتصوير","terms":"متجر نسخ وتصوير"},"shop/cosmetics":{"name":"متجر مستحضرات التجميل","terms":"متجر مستحضرات التجميل"},"shop/craft":{"name":"متجر الفنون والحرف","terms":"متجر الفنون والحرف"},"shop/curtain":{"name":"محل بيع الستائر","terms":"ستائر"},"shop/dairy":{"name":"متجر الألبان","terms":"متجر الألبان، الألبان"},"shop/deli":{"name":"محل أطعمة لذيذة","terms":"محل أطعمة راقية ، متجر أطعمة لذيذة"},"shop/department_store":{"name":"محل متعدد الأقسام","terms":"محل متعدد الأقسام"},"shop/doityourself":{"name":"محل عدد وأدوات وأجهزة صيانة وتحسين المنزل","terms":"محل افعلها بنفسك,محل عدد وأدوات وأجهزة صيانة وتحسين المنزل"},"shop/doors":{"name":"متجر بيع أبواب","terms":"متجر بيع أبواب,باب,بيبان"},"shop/dry_cleaning":{"name":"مغسلة ملابس بالبخار","terms":"مغسلة ملابس بالبخار"},"shop/e-cigarette":{"name":"متجر سجائر إلكترونية","terms":"متجر سجائر إلكترونية"},"shop/electrical":{"name":"متجر المستلزمات الإلكترونية","terms":"متجر المستلزمات الإلكترونية"},"shop/electronics":{"name":"محل إلكترونيات","terms":"محل إلكترونيات"},"shop/erotic":{"name":"Erotic Store"},"shop/erotic/lgbtq":{"name":"LGBTQ+ Erotic Store"},"shop/fabric":{"name":"محل بيع الأقمشة","terms":"الأقمشة,قماش,كلف"},"shop/farm":{"name":"متجر مزرعة ليبيع منتجاتها","terms":"المنتج"},"shop/fashion":{"name":"متجر موضة"},"shop/fashion_accessories":{"name":"محل اكسسوارات الموضة","terms":"محل اكسسوارات الموضة"},"shop/fireplace":{"name":"متجر بيع المواقد والدفايات","terms":"متجر بيع المواقد والدفايات"},"shop/fishing":{"name":"محل معدات الصيد البحري","terms":"محل معدات الصيد"},"shop/flooring":{"name":"محل بيع أرضيات","terms":"أرضيات,باركيه"},"shop/florist":{"name":"محل بيع الورود","terms":"محل بيع زهور,محل بيع ورود"},"shop/frame":{"name":"محل تأطير (بيع إطارات صور)","terms":"محل تأطير (بيع إطارات صور)"},"shop/frozen_food":{"name":"متجر أغذية مجمدة","terms":"متجر أغذية مجمدة"},"shop/fuel":{"name":"متجر بيع الوقود","terms":"متجر بيع الوقود"},"shop/funeral_directors":{"name":"محل بيع أكفان ومستلزمات الجنائز","terms":"محل بيع أكفان ومستلزمات الجنائز"},"shop/furniture":{"name":"محل بيع أثاث","terms":"محل أثاث"},"shop/games":{"name":"متجر ألعاب الطاولة","terms":"متجر ألعاب الطاولة"},"shop/garden_centre":{"name":"مشتل","terms":"مشتل"},"shop/gas":{"name":"محل بيع الغاز المعبأ","terms":"محل غاز,غاز"},"shop/general":{"name":"متجر عام","terms":"متجر عام"},"shop/gift":{"name":"محل بيع هدايا","terms":"محل بيع هدايا"},"shop/greengrocer":{"name":"متجر خضروات","terms":"متجر خضروات"},"shop/hairdresser":{"name":"حلاق","terms":"حلاق,مصفف الشعر"},"shop/hairdresser_supply":{"name":"متجر مستلزمات حلاقين","terms":"متجر مستلزمات حلاقين"},"shop/hardware":{"name":"محل مواد بناء","terms":"محل بيع عتاد,سباكة,مواد بناء,لوازم حديقة,عدد,مسامير,حديد,مفكات"},"shop/health_food":{"name":"متجر أغذية صحية","terms":"متجر أغذية صحية ، محل أغذية صحية"},"shop/hearing_aids":{"name":"متجر سماعات الأذن الطبية","terms":"سماعات الأذن الطبية; معينات سمعية; أجهزة تقوية السمع; مساعدات السمع"},"shop/herbalist":{"name":"محل بيع الأعشاب الطبية / عطار","terms":"محل بيع الأعشاب الطبية,عطار"},"shop/hifi":{"name":"محل بيع أجهزة عالية الدقة","terms":"محل بيع أجهزة عالية الدقة"},"shop/hobby":{"name":"متاجر الهوايات"},"shop/household_linen":{"name":"محل المفروشات والأغطية المنزلية","terms":"محل المفروشات والأغطية المنزلية"},"shop/houseware":{"name":"متجر بيع الأدوات المنزلية الصغيرة","terms":"متجر الأدوات المنزلية"},"shop/hunting":{"name":"متجر بيع أسلحة ومعدات الصيد","terms":"متجر بيع أسلحة ومعدات الصيد"},"shop/interior_decoration":{"name":"متجر الديكور الداخلي","terms":"متجر الديكور الداخلي"},"shop/jewelry":{"name":"محل بيع مجوهرات","terms":"محل مجوهرات,ذهب,فضة"},"shop/kiosk":{"name":"كشك","terms":"كشك"},"shop/kitchen":{"name":"متجر ديكور وتصميم المطابخ","terms":"ديكور,مطابخ,تصميم"},"shop/laundry":{"name":"محل غسيل ملابس","terms":"غسيل ملابس,مغسلة ملابس"},"shop/laundry/self_service":{"name":"مغسلة ملابس - خدمة ذاتية","terms":"مغسلة ملابس - خدمة ذاتية,مغسلة اخدم نفسك بنفسك"},"shop/leather":{"name":"متجر المنتجات الجلدية","terms":"متجر المنتجات الجلدية"},"shop/lighting":{"name":"متجر إنارة ولمبات","terms":"متجر إنارة ولمبات"},"shop/locksmith":{"name":"محل بيع أقفال ونسخ مفاتيح","terms":"صانع اﻷقفال، أقفال، حداد،"},"shop/lottery":{"name":"متجر اليانصيب"},"shop/mall":{"name":"مركز تسوق تجاري (مول)","terms":"مركز تسوق,مول"},"shop/massage":{"name":"صالون التدليك","terms":"صالون التدليك"},"shop/medical_supply":{"name":"متجر مستلزمات وأجهزة طبية","terms":"متجر مستلزمات طبية"},"shop/military_surplus":{"name":"متجر بيع المعدات والمستلزمات العسكرية المستعملة","terms":"متجر بيع المعدات والمستلزمات العسكرية المستعملة"},"shop/mobile_phone":{"name":"محل بيع هواتف","terms":"محل بيع هواتف"},"shop/model":{"name":"متجر بيع النماذج المصغرة للأشياء","terms":"متجر بيع النماذج المصغرة للأشياء"},"shop/money_lender":{"name":"مُقرض المال","terms":"مُقرض المال"},"shop/motorcycle":{"name":"بائع دراجات نارية","terms":"وكالة دراجات هوائية; توكيل; بائع; توكيل دراجات; بائع دراجات; بيع دراجات; بيع"},"shop/motorcycle_repair":{"name":"ورشة تصليح الدراجات النارية","terms":"ورشة تصليح الدراجات النارية"},"shop/music":{"name":"متجر بيع موسيقى","terms":"محل بيع الموسيقى"},"shop/musical_instrument":{"name":"متجر آلات موسيقية","terms":"محل بيع الآلات الموسيقية"},"shop/newsagent":{"name":"كشك","terms":"كشك جرائد ، كشك جرائد ومجلات ، محل بيع الجرائد ، محل بيع صحف","aliases":"كشك جرائد\nكشك جرائد ومجلات\nمحل بيع الجرائد\nمحل بيع صحف"},"shop/nutrition_supplements":{"name":"متجر المكملات الغذائية","terms":"متجر المكملات الغذائية، مكملات غذائية"},"shop/nuts":{"name":"متجر المكسرات"},"shop/optician":{"name":"متجر نظارات","terms":"محل بيع نظارات,عدسات"},"shop/outdoor":{"name":"متجر معدات الرحلات والتسلق والتخييم","terms":"متجر ملابس ومعدات الأنشطة في الهواء الطلق"},"shop/outpost":{"name":"محل استلام شحنات مطلوبة من الانترنت","terms":"محل استلام شحنات مطلوبة من الانترنت"},"shop/paint":{"name":"متجر دهانات وطلاء","terms":"طلاء"},"shop/party":{"name":"متجر مستلزمات حفلات","terms":"متجر مستلزمات حفلات"},"shop/pastry":{"name":"متجر حلويات","terms":"متجر الحلويات"},"shop/pawnbroker":{"name":"متجر رهن","terms":"متجر رهن"},"shop/perfumery":{"name":"متجر عطور","terms":"عطور"},"shop/pet":{"name":"محل بيع حيوانات أليفة","terms":"محل حيوانات أليفة"},"shop/photo":{"name":"محل تصوير","terms":"متجر تظّهير الصور، محل تصوير، مصور"},"shop/pottery":{"name":"متجر فخار","terms":"متجر فخار"},"shop/printer_ink":{"name":"متجر أحبار طابعة","terms":"متجر أحبار طابعة"},"shop/psychic":{"name":"Psychic"},"shop/pyrotechnics":{"name":"متجر ألعاب نارية","terms":"ألعاب نارية"},"shop/radiotechnics":{"name":"متجر بيع قطع الراديو / الإلكترونية","terms":"متجر المكونات الإلكترونية"},"shop/religion":{"name":"متجر ديني","terms":"دين,متجر"},"shop/rental":{"name":"محل تأجير","terms":"محل تأجير"},"shop/repair":{"name":"محل تصليح","terms":"محل تصليح"},"shop/scuba_diving":{"name":"متجر معدات الغوص تحت الماء","terms":"متجر معدات الغوص تحت الماء"},"shop/seafood":{"name":"متجر مأكولات بحرية","terms":"مأكولات بحرية,مسمكة,سمك"},"shop/second_hand":{"name":"متجر التوفير","terms":"محل لبيع البضائع المستعملة ، محل التوفير ، البال ، البالي ، قديم ، أشياء قديمة ، مستعمل ، بال"},"shop/sewing":{"name":"متجر مستلزمات خياطة","terms":"خياطة,ترزي,خياط"},"shop/shoe_repair":{"name":"محل تصليح الأحذية","terms":"محل تصليح الأحذية"},"shop/shoes":{"name":"متجر أحذية","terms":"محل بيع أحذية,حذاء,احذية"},"shop/spices":{"name":"محل بيع بهارات","terms":"محل بيع بهارات"},"shop/sports":{"name":"متجر بيع أدوات رياضية","terms":"محل بيع أدوات رياضية"},"shop/stationery":{"name":"متجر قرطاسية و أدوات مكتبية","terms":"محل بيع أدوات مكتبية,قرطاسية,مكتبة"},"shop/storage_rental":{"name":"محل تأجير أماكن التخزين","terms":"محل تأجير أماكن التخزين"},"shop/supermarket":{"name":"سوبر ماركت","terms":"سوبرماركت,متجر كبير"},"shop/supermarket/organic":{"name":"سوبر ماركت عضوي","terms":"سوبر ماركت عضوي"},"shop/swimming_pool":{"name":"متجر مستلزمات حمامات السباحة","terms":"متجر مستلزمات حمامات السباحة"},"shop/tailor":{"name":"خياط","terms":"خياط,ترزي"},"shop/tattoo":{"name":"صالون الوشم"},"shop/tea":{"name":"متجر شاي","terms":"محل بيع الشاي، شاي"},"shop/telecommunication":{"name":"متجر بيع بالتجزئة لشركة اتصالات","terms":"متجر بيع بالتجزئة لشركة اتصالات"},"shop/ticket":{"name":"بائع تذاكر","terms":"بائع التذاكر; تذاكر"},"shop/tiles":{"name":"متجر بلاط","terms":"محل بيع البلاط، بلاط، خزف,سيراميك"},"shop/tobacco":{"name":"محل بيع التبغ","terms":"تبغ، سيجارة"},"shop/tool_hire":{"name":"محل تأجير معدات","terms":"محل تأجير معدات"},"shop/toys":{"name":"متجر ألعاب","terms":"محل ألعاب"},"shop/trade":{"name":"محلات بيع مواد بالجملة","terms":"محلات البيع بالجملة,مبسط,مواد بناء"},"shop/travel_agency":{"name":"وكالة سفر","terms":"وكالة سفر"},"shop/trophy":{"name":"محل بيع جوائز ودروع ولوحات تذكارية","terms":"محل بيع جوائز ودروع ولوحات تذكارية"},"shop/tyres":{"name":"محل بيع إطارات","terms":"محل بيع إطارات,كفرات,بيع كفرات"},"shop/vacant":{"name":"محل شاغر","terms":"محل شاغر,محل فاضي"},"shop/vacuum_cleaner":{"name":"متجر المكنسات الكهربائية","terms":"متجر المكنسات الكهربائية; مكنسات كهربائية"},"shop/variety_store":{"name":"متجر التخفيضات","terms":"متجر التخفيضات ، متجر الخصم ، متجر الخصومات ، محلات كماليات رخيصة (أبو خمسة) ، منوعات وكماليات رخيصة ، محل كل شيء ، محل كماليات رخيصة","aliases":"متجر الخصم\nمتجر الخصومات\nمحلات كماليات رخيصة (أبو خمسة)\nمنوعات وكماليات رخيصة\nمحل كل شيء\nمحل كماليات رخيصة"},"shop/video":{"name":"محل بيع وتأجير الأفلام","terms":"محل بيع وتأجير الأفلام"},"shop/video_games":{"name":"متجر العاب الفيديو","terms":"متجر العاب الفيديو"},"shop/watches":{"name":"متجر الساعات اليدوية","terms":"متجر الساعات اليدوية"},"shop/water":{"name":"متجر مياه شرب","terms":"مياه صحية,مياه,ماء"},"shop/water_sports":{"name":"متجر رياضة مائية/سباحة","terms":"متجر رياضة مائية/سباحة"},"shop/weapons":{"name":"متجر أسلحة","terms":"متجر الأسلحة"},"shop/wholesale":{"name":"متجر بيع بالجملة","terms":"محل بيع بالجملة"},"shop/wigs":{"name":"متجر بيع الباروكات","terms":"متجر بيع الباروكات"},"shop/window_blind":{"name":"محل لبيع ستائر النوافذ","terms":"محل لبيع ستائر النوافذ"},"shop/wine":{"name":"متجر نبيذ"},"shop/yes":{"name":"متجر (نوع غير محدد)"},"telecom":{"name":"عنصر اتصالات"},"telecom/data_center":{"name":"مركز بيانات","terms":"مركز بيانات"},"telecom/exchange":{"name":"مقسم الاتصالات","terms":"مقسم الاتصالات"},"tourism":{"name":"عنصر سياحي"},"tourism/alpine_hut":{"name":"كوخ جبلي","terms":"كوخ جبلي,لودج جبلي"},"tourism/apartment":{"name":"شقة سياحية","terms":"شقة سياحية"},"tourism/aquarium":{"name":"حوض سمك","terms":"حوض سمك"},"tourism/artwork":{"name":"عمل فني","terms":"عمل فني"},"tourism/artwork/bust":{"name":"Bust"},"tourism/artwork/graffiti":{"name":"Graffiti"},"tourism/artwork/installation":{"name":"Art Installation"},"tourism/artwork/mural":{"name":"Mural"},"tourism/artwork/sculpture":{"name":"Sculpture"},"tourism/artwork/statue":{"name":"Statue"},"tourism/attraction":{"name":"معلم سياحي","terms":"معلم سياحي,مكان سياحي"},"tourism/camp_pitch":{"name":"Camp Pitch"},"tourism/camp_site":{"name":"مكان التخييم","terms":"مكان التخييم"},"tourism/camp_site/backcountry":{"name":"منطقة تخييم ريفية","terms":"منطقة تخييم ريفية"},"tourism/camp_site/group_only":{"name":"منطقة تخييم جماعي","terms":"منطقة تخييم جماعي"},"tourism/caravan_site":{"name":"موقف عربات كبيرة","terms":"موقف عربات كبيرة"},"tourism/chalet":{"name":"منتجع - شاليه","terms":"كوخ لقضاء العطلة,منتجع,شاليه,شالية"},"tourism/gallery":{"name":"رواق الفنون","terms":"رواق الفنون، متحف الفنون"},"tourism/guest_house":{"name":"دار الضيافة","terms":"دار الضيافة"},"tourism/hostel":{"name":"نزل / شقة مفروشة","terms":"نزل"},"tourism/hotel":{"name":"فندق","terms":"فندق"},"tourism/information":{"name":"معلومات سياحية","terms":"معلومات سياحية"},"tourism/information/board":{"name":"لوحة المعلومات","terms":"لوحة المعلومات"},"tourism/information/board/welcome_sign":{"name":"لافتة ترحيب","terms":"لافتة ترحيب"},"tourism/information/guidepost":{"name":"لافتة إرشادية","terms":"لافتة إرشادية,لوحة إرشادية,علامة إرشادية"},"tourism/information/map":{"name":"خريطة","terms":"خريطة"},"tourism/information/office":{"name":"مركز الزوار","terms":"مركز الزوار"},"tourism/information/route_marker":{"name":"لافتة مسار سياحي","terms":"لافتة مسار سياحي"},"tourism/information/terminal":{"name":"محطة معلومات","terms":"محطة معلومات"},"tourism/motel":{"name":"فندق صغير","terms":"فندق صغير"},"tourism/museum":{"name":"متحف","terms":"متحف,معرض"},"tourism/museum/history":{"name":"متحف تاريخي","terms":"متحف تاريخي"},"tourism/picnic_site":{"name":"موقع تنزه","terms":"موقع نزهة"},"tourism/theme_park":{"name":"حديقة ترفيه","terms":"حديقة ترفيه"},"tourism/trail_riding_station":{"name":"Trail Riding Station"},"tourism/viewpoint":{"name":"منظر سياحي","terms":"منظر سياحي"},"tourism/wilderness_hut":{"name":"Wilderness Hut"},"tourism/zoo":{"name":"حديقة حيوانات","terms":"حديقة الحيوانات"},"tourism/zoo/petting":{"name":"حديقة حيوان أليفة","terms":"حديقة حيوان أليفة"},"tourism/zoo/safari":{"name":"Safari Park"},"tourism/zoo/wildlife":{"name":"حديقة حيوانات برية","terms":"حديقة حيوانات برية"},"traffic_calming":{"name":"مخفف سرعة","terms":"مطب; مخفف; مهديء; مهدئ; ممهل; تخفيف; تمهيل; مطب صناعي"},"traffic_calming/bump":{"name":"مطب قصير لتخفيف السرعة","terms":"مطب صغير لتخفيف السرعة"},"traffic_calming/chicane":{"name":"منعطفات صناعية لتخفيف السرعة","terms":"منعطفات صناعية لتخفيف السرعة"},"traffic_calming/choker":{"name":"بروز هزاز للتنبية بتهدئة السرعة","terms":"بروز هزاز للتنبية بتهدئة السرعة"},"traffic_calming/cushion":{"name":"مطبات مركبات صغيرة","terms":"مطبات مركبات صغيرة"},"traffic_calming/dip":{"name":"منخفض لتهدئة السرعة ويسمح بعبور المياة","terms":"منخفض لتهدئة السرعة ويسمح بعبور المياة"},"traffic_calming/hump":{"name":"مطب طويل لتخفيف السرعة","terms":"مطب لتخفيف السرعة"},"traffic_calming/mini_bumps":{"name":"مطبات تخفيف سرعة صغيرة","terms":"مطبات تخفيف سرعة صغيرة"},"traffic_calming/rumble_strip":{"name":"مطبات قصيرة ومنخفضة متتالية على شكل شريط","terms":"مطبات قصيرة ومنخفضة متتالية على شكل شريط"},"traffic_calming/table":{"name":"مطب مرتفع وطويل لتخفيف السرعة بشكل جبري","terms":"مطب مرتفع وطويل لتخفيف السرعة بشكل جبري"},"traffic_calming/yes":{"name":"مخفف لحركة المرور (من نوع غير محدد)"},"traffic_sign":{"name":"إشارات المرور","terms":"إشارة مرورية,علامات المرور"},"traffic_sign/city_limit":{"name":"علامة حدود المدينة/البنيان","terms":"علامة حدود المدينة,علامة حدود البنيان"},"traffic_sign/maxspeed":{"name":"علامة الحد الأعلى لسرعة الطريق","terms":"علامة الحد الأعلى لسرعة الطريق"},"traffic_sign/variable_message":{"name":"علامة رسالة متغيرة","terms":"علامة رسالة متغيرة ، علامة ذات رسالة متغيرة ، علامة مرور ذات رسالة متغيرة"},"type/boundary":{"name":"حدود","terms":"حدود"},"type/boundary/administrative":{"name":"حدود إدارية","terms":"حدود إدارية,تقسيمات إدارية"},"type/connectivity":{"name":"ربط طرق ببعضها","terms":"ربط طرق ببعضها,اتصال طرق ببعضها"},"type/destination_sign":{"name":"لوحات ولافتات الوجهات","terms":"لوحات ولافتات الوجهات"},"type/enforcement":{"name":"إنفاذ ورصد تطبيق النظام (أجهزة توثيق مخالفات المرور)","terms":"إنفاذ النظام,أجهزة توثيق مخالفات المرور"},"type/enforcement/maxspeed":{"name":"إنفاذ ورصد حدود السرعة","terms":"إنفاذ ورصد حدود السرعة"},"type/multipolygon":{"name":"المضلعات المتعددة","terms":"متعدد الأضلاع"},"type/public_transport/stop_area_group":{"name":"مجموعة منطقة مواقف النقل العام","terms":"مجموعة منطقة مواقف النقل العام"},"type/restriction":{"name":"قيود الانعطاف","terms":"قيود"},"type/restriction/no_left_turn":{"name":"ممنوع الإنعطاف لليسار","terms":"ممنوع الإنعطاف لليسار"},"type/restriction/no_right_turn":{"name":"ممنوع الإنعطاف لليمين","terms":"ممنوع الإنعطاف لليمين"},"type/restriction/no_straight_on":{"name":"غير مسموح بالذهاب للأمام","terms":"غير مسموح بالذهاب للأمام"},"type/restriction/no_u_turn":{"name":"ممنوع الدوران (اليوترن)","terms":"ممنوع الدوران (اليوترن)"},"type/restriction/only_left_turn":{"name":"يسمح بالانعطاف لليسار فقط","terms":"يسمح بالانعطاف لليسار فقط"},"type/restriction/only_right_turn":{"name":"يسمح بالانعطاف لليمين فقط","terms":"يسمح بالانعطاف لليمين فقط"},"type/restriction/only_straight_on":{"name":"للأمام فقط","terms":"للأمام فقط"},"type/restriction/only_u_turn":{"name":"يسمح بالدوران فقط (اليوتيرن)","terms":"يسمح بالدوران فقط (اليوتيرن)"},"type/route":{"name":"مسار","terms":"مسار"},"type/route/aerialway":{"name":"طريق جوي","terms":"طريق جوي"},"type/route/bicycle":{"name":"مسار الدراجات","terms":"مسار الدراجات,مسارات الدراجات"},"type/route/bus":{"name":"مسار الحافلات","terms":"مسار باصات، حافلات"},"type/route/detour":{"name":"مسار طريق جانبي","terms":"مسار طريق جانبي"},"type/route/ferry":{"name":"مسار عبارة","terms":"مسار سفن,مسار عبارات"},"type/route/foot":{"name":"مسار مشي","terms":"مسار مشي"},"type/route/hiking":{"name":"مسارات المشي الخلوي (الهايكنق)","terms":"مسار المشاة، طريق للمشي,مسارات المشي الخلوي,مسار الهايكنق"},"type/route/horse":{"name":"مسار ركوب الخيل","terms":"مسار ركوب الخيل"},"type/route/light_rail":{"name":"مسار القطار الخفيف","terms":"قطار خفيف، ترام"},"type/route/monorail":{"name":"مسار سكة حديد أحادية","terms":"مسار سكة حديد أحادية"},"type/route/mtb":{"name":"مسار ركوب الدراجات الجبلية","terms":"مسار ركوب الدراجات الجبلية"},"type/route/pipeline":{"name":"مسار خط أنابيب","terms":"مسار خط أنابيب"},"type/route/piste":{"name":"مسار التزلج","terms":"تزلج"},"type/route/power":{"name":"مسار خط كهربائي","terms":"مسار الطاقة,مسار الكهرباء"},"type/route/railway":{"name":"مسار السكة الحديدية","terms":"مسار السكة الحديدية,مسار سكة القطار"},"type/route/road":{"name":"مسار طريق","terms":"مسار الطريق"},"type/route/subway":{"name":"مسار مترو","terms":"مسار مترو"},"type/route/train":{"name":"مسار قطار","terms":"مسار القطار"},"type/route/tram":{"name":"مسار ترام","terms":"مسار ترام"},"type/route/trolleybus":{"name":"مسار حافلات كهربائية","terms":"مسار حافلات كهربائية"},"type/route_master":{"name":"مسار رئيسي","terms":"مسار رئيسي"},"type/site":{"name":"موقع","terms":"موقع"},"type/waterway":{"name":"مجرى مائي","terms":"مجرى مائي، ممر مائي"},"waterway":{"name":"عنصر مجري مائي"},"waterway/boatyard":{"name":"حوض بناء سفن","terms":"حوض بناء سفن; ورشة"},"waterway/canal":{"name":"قناة","terms":"قناة"},"waterway/canal/lock":{"name":"هويس القناة","terms":"هويس القناة"},"waterway/dam":{"name":"سد","terms":"سد"},"waterway/ditch":{"name":"مصرف خندقي","terms":"خندق"},"waterway/dock":{"name":"رصيف بحري رطب/رصيف بحري جاف","terms":"رصيف بحري رطب/رصيف بحري جاف"},"waterway/drain":{"name":"مصرف مياه","terms":"مصرف مياه"},"waterway/fish_pass":{"name":"مجرى مائي لمرور الأسماك","terms":"مجرى مائي لمرور الأسماك"},"waterway/fuel":{"name":"محطة وقود بحري","terms":"وقود بحري"},"waterway/lock_gate":{"name":"هويس (حوض نقل السفن من مستوى لمستوى)","terms":"هويس (حوض نقل السفن من مستوى لمستوى)"},"waterway/milestone":{"name":"علامة مسافة المجرى المائي","terms":"علامة مسافة المجرى المائي"},"waterway/river":{"name":"نهر / مجرى مائي واسع","terms":"نهر"},"waterway/sanitary_dump_station":{"name":"للتخلص من مخلفات مرحاض السفن","terms":"التخلص من مرحاض البحر"},"waterway/stream":{"name":"مجرى مائي / شعيب","terms":"مجرى، جدول مائي,شعيب,وادي"},"waterway/stream_intermittent":{"name":"مجرى متقطع ولا يجري بشكل دائم","terms":"مجرى متقطع"},"waterway/tidal_channel":{"name":"مجرى مائي طبيعي للمد والجزر","terms":"مجرى مائي طبيعي للمد والجزر"},"waterway/water_point":{"name":"مياه الشرب البحرية","terms":"مياه الشرب البحرية"},"waterway/waterfall":{"name":"شلال","terms":"شلال"},"waterway/weir":{"name":"هدار - سد صغير","terms":"هدار، سد صغير"}}}}}
\ No newline at end of file
diff --git a/dist/translations/ast.json b/dist/translations/ast.json
index b899f1af..c8b8de52 100644
--- a/dist/translations/ast.json
+++ b/dist/translations/ast.json
@@ -8,12 +8,30 @@
"category-building": {
"name": "Elementos d'edificiu"
},
+ "category-golf": {
+ "name": "Elementos de golf"
+ },
"category-landuse": {
"name": "Elementos d'usu del terrén"
},
+ "category-natural": {
+ "name": "Elementos naturales"
+ },
+ "category-path": {
+ "name": "Caminos"
+ },
"category-restriction": {
"name": "Elementos de torga"
},
+ "category-road_major": {
+ "name": "Carreteres principales"
+ },
+ "category-road_minor": {
+ "name": "Carreteres menores"
+ },
+ "category-road_service": {
+ "name": "Carreteres de serviciu"
+ },
"category-route": {
"name": "Elementos de ruta"
}
@@ -40,6 +58,9 @@
"private": {
"title": "Priváu"
},
+ "unknown": {
+ "title": "Desconocíu"
+ },
"yes": {
"title": "Permitíu"
}
@@ -53,8 +74,23 @@
"motor_vehicle": "Vehículos de motor"
}
},
+ "access_aisle": {
+ "label": "Tipu"
+ },
"access_simple": {
- "label": "Accesu permitíu"
+ "label": "Accesu permitíu",
+ "options": {
+ "no": "Dengún",
+ "permissive": "Permisivu",
+ "private": "Priváu",
+ "unknown": "Desconocíu"
+ }
+ },
+ "addr/interpolation": {
+ "label": "Tipu",
+ "options": {
+ "all": "Too"
+ }
},
"address": {
"label": "Direición",
@@ -76,22 +112,24 @@
"housenumber": "123",
"housenumber!jp": "Edificiu Núm./Mazana Núm.",
"neighbourhood": "Vecinderu",
- "neighbourhood!jp": "Chōme/Aza/Koaza",
"place": "Llugar",
"postcode": "Códigu postal",
"province": "Provincia",
"province!jp": "Prefeutura",
- "quarter!jp": "Ōaza/Machi",
"state": "Estáu",
"street": "Cai",
"subdistrict": "Subdistritu",
"suburb": "Barriu",
+ "town": "Villa",
"unit": "Unidá"
}
},
"admin_level": {
"label": "Nivel alministrativu"
},
+ "advertising": {
+ "label": "Tipu"
+ },
"aerialway": {
"label": "Tipu"
},
@@ -135,6 +173,9 @@
"agrarian": {
"label": "Productos"
},
+ "aircraft/type": {
+ "label": "Tipu"
+ },
"amenity": {
"label": "Tipu"
},
@@ -147,9 +188,17 @@
"animal_shelter": {
"label": "P'animales"
},
+ "archaeological_site": {
+ "label": "Tipu"
+ },
"area/highway": {
"label": "Tipu"
},
+ "armrest": {
+ "options": {
+ "undefined": "Desconocíu"
+ }
+ },
"artist": {
"label": "Artista"
},
@@ -159,20 +208,68 @@
"atm": {
"label": "Caxeru automáticu"
},
+ "attraction": {
+ "label": "Tipu",
+ "options": {
+ "carousel": "Caballinos",
+ "roller_coaster": "Montaña rusa"
+ }
+ },
+ "baby_feeding": {
+ "options": {
+ "no": "Dengún"
+ }
+ },
+ "backcountry": {
+ "label": "Fuera de pista"
+ },
"backrest": {
"label": "Respaldu"
},
+ "bar": {
+ "label": "Bar"
+ },
"barrier": {
+ "label": "Tipu",
+ "options": {
+ "bollard": "Bolardu",
+ "cattle_grid": "Rexa pa ganáu",
+ "city_wall": "Muralla de ciudá",
+ "cycle_barrier": "Barrera pa bicicletes",
+ "ditch": "Riega",
+ "entrance": "Entrada",
+ "fence": "Valla",
+ "gate": "Puerta",
+ "hedge": "Sebe",
+ "kissing_gate": "Puerta ganadera",
+ "retaining_wall": "Muru de contención",
+ "stile": "Pasera de reblagu",
+ "toll_booth": "Cabina de peaxe",
+ "wall": "De parede"
+ }
+ },
+ "barrier_planter": {
+ "label": "Barrera",
+ "options": {
+ "planter": "Si",
+ "undefined": "Non"
+ }
+ },
+ "basin": {
"label": "Tipu"
},
"bath/open_air": {
"label": "Aire llibre"
},
- "bath/sand_bath": {
- "label": "Bañu de sable"
- },
"bath/type": {
- "label": "Especialidá"
+ "label": "Especialidá",
+ "options": {
+ "hot_spring": "Fonte caliente",
+ "lake": "Llagu"
+ }
+ },
+ "beauty": {
+ "label": "Servicios"
},
"bench": {
"label": "Bancu"
@@ -180,9 +277,21 @@
"bicycle_parking": {
"label": "Tipu"
},
+ "bicycle_road": {
+ "options": {
+ "undefined": "Non",
+ "yes": "Si"
+ }
+ },
"bin": {
"label": "Contenedor de basoria"
},
+ "blind": {
+ "options": {
+ "no": "Non",
+ "yes": "Si"
+ }
+ },
"blood_components": {
"label": "Componentes de la sangre",
"options": {
@@ -193,6 +302,12 @@
}
},
"board_type": {
+ "label": "Tipu",
+ "options": {
+ "history": "Historial"
+ }
+ },
+ "bollard": {
"label": "Tipu"
},
"boules": {
@@ -208,8 +323,53 @@
"label": "Tipu",
"placeholder": "Predeterminao"
},
+ "bridge/support": {
+ "label": "Tipu"
+ },
+ "bridge_combo": {
+ "label": "Tipu"
+ },
"building": {
- "label": "Edificiu"
+ "label": "Edificiu",
+ "options": {
+ "barn": "Graneru",
+ "bunker": "Bunker",
+ "cabin": "Cabaña",
+ "cathedral": "Edificiu de catedral",
+ "chapel": "Edificiu de capiella",
+ "church": "Edificiu d'ilesia",
+ "college": "Edificiu de colexu universitariu",
+ "commercial": "Edificiu comercial",
+ "construction": "Edificiu en construcción",
+ "detached": "Casa aisllada",
+ "dormitory": "Residencia",
+ "garage": "Garaxe",
+ "garages": "Garaxes",
+ "greenhouse": "Ivernaderu",
+ "hospital": "Edificiu d'hospital",
+ "hotel": "Edificiu d'hotel",
+ "house": "Casa",
+ "hut": "Cabaña",
+ "industrial": "Edificiu industrial",
+ "public": "Edificiu públicu",
+ "residential": "Edificiu residencial",
+ "retail": "Edificiu comercial",
+ "roof": "Cubierta",
+ "school": "Edificiu escolar",
+ "semidetached_house": "Casa semi-aisllada",
+ "shed": "Caseta de xardín",
+ "stable": "Establu",
+ "terrace": "Filera de cases",
+ "university": "Edificiu universitariu",
+ "warehouse": "Almacén"
+ }
+ },
+ "building/levels": {
+ "label": "Niveles",
+ "placeholder": "2, 4, 6..."
+ },
+ "building/levels/underground": {
+ "placeholder": "2, 4, 6..."
},
"bunker_type": {
"label": "Tipu"
@@ -233,13 +393,28 @@
"panning": "Barríu"
}
},
+ "camp_site": {
+ "label": "Tipu"
+ },
"capacity": {
"label": "Capacidá",
"placeholder": "50, 100, 200..."
},
+ "capacity/disabled_parking": {
+ "placeholder": "1, 2, 3..."
+ },
+ "capacity/persons": {
+ "placeholder": "50, 100, 200..."
+ },
+ "capacity_volume": {
+ "placeholder": "50, 100, 200..."
+ },
"castle_type": {
"label": "Tipu"
},
+ "climbing/length": {
+ "label": "Llonxitú (Metros)"
+ },
"clothes": {
"label": "Ropa"
},
@@ -256,9 +431,15 @@
"communication_multi": {
"label": "Tipos de comunicación"
},
+ "community_centre": {
+ "label": "Tipu"
+ },
"construction": {
"label": "Tipu"
},
+ "consulate": {
+ "label": "Tipu"
+ },
"contact/webcam": {
"label": "URL de la webcam",
"placeholder": "http://example.com/"
@@ -266,14 +447,72 @@
"content": {
"label": "Conteníu"
},
+ "conveying": {
+ "options": {
+ "backward": "P'atrás",
+ "forward": "P'alantre"
+ }
+ },
"country": {
"label": "País"
},
+ "couplings": {
+ "placeholder": "1, 2, 3..."
+ },
"covered": {
"label": "Cubierto"
},
+ "covered_no": {
+ "options": {
+ "no": "Non",
+ "undefined": "Créyese que non",
+ "yes": "Si"
+ }
+ },
"craft": {
- "label": "Tipu"
+ "label": "Tipu",
+ "options": {
+ "basket_maker": "Cesteru",
+ "beekeeper": "Apicultor",
+ "blacksmith": "Ferrería",
+ "boatbuilder": "Carpinteru de ribera",
+ "bookbinder": "Encuadernador",
+ "brewery": "Cervecería",
+ "carpenter": "Carpintería",
+ "carpet_layer": "Instalador d'alfombres",
+ "clockmaker": "Reloxería",
+ "distillery": "Destilería",
+ "dressmaker": "Modista",
+ "electrician": "Electricista",
+ "gardener": "Xardineru",
+ "glaziery": "Cristalería",
+ "handicraft": "Manualidaes",
+ "hvac": "Calefactor",
+ "insulation": "Aislamientos",
+ "key_cutter": "Llaves",
+ "locksmith": "Cerraxería",
+ "painter": "Pintor",
+ "photographer": "Fotografía",
+ "photographic_laboratory": "Llaboratoriu fotográficu",
+ "plasterer": "Revocador",
+ "plumber": "Fontaneru",
+ "rigger": "Montaxes",
+ "roofer": "Reteyador",
+ "saddler": "Guarnicioneru",
+ "sailmaker": "Fabricante de veles",
+ "sawmill": "Serraderu",
+ "scaffolder": "Montaxe d'andamios",
+ "sculptor": "Escultor",
+ "shoemaker": "Zapateru",
+ "stonemason": "Canteru",
+ "tailor": "Sastrería",
+ "tiler": "Azulexista",
+ "tinsmith": "Caldereru",
+ "upholsterer": "Tapicería",
+ "watchmaker": "Reloxeru",
+ "window_construction": "Construcción de ventanes",
+ "winery": "Bodega"
+ }
},
"crane/type": {
"label": "Tipu de grúa",
@@ -284,13 +523,31 @@
}
},
"crop": {
- "label": "Cultivos"
+ "label": "Cultivos",
+ "options": {
+ "grass": "Yerba"
+ }
},
"crossing": {
"label": "Tipu"
},
+ "crossing/barrier": {
+ "options": {
+ "no": "Non",
+ "yes": "Si"
+ }
+ },
+ "crossing_raised": {
+ "options": {
+ "table": "Si",
+ "undefined": "Non"
+ }
+ },
"cuisine": {
- "label": "Cocina"
+ "label": "Cocina",
+ "options": {
+ "regional": "Rexonal"
+ }
},
"currency_multi": {
"label": "Tipos de divisa"
@@ -299,6 +556,14 @@
"label": "Tipu",
"placeholder": "Predeterminao"
},
+ "cycle_barrier": {
+ "label": "Tipu"
+ },
+ "cycle_barrier/installation": {
+ "options": {
+ "fixed": "Fixa"
+ }
+ },
"cycle_network": {
"label": "Rede"
},
@@ -308,11 +573,9 @@
"lane": {
"description": "Un carril bici separáu del tráficu d'autos por una llinia pintada"
},
- "opposite": {
- "description": "Carril bici de dos direcciones n'una cai de dirección única"
- },
- "opposite_lane": {
- "description": "Un carril bici que va en dirección opuesta al tráficu"
+ "no": {
+ "description": "Sin carril bici",
+ "title": "Dengún"
},
"share_busway": {
"description": "Carril bici compartíu con carril bus"
@@ -337,19 +600,80 @@
"denotation": {
"label": "Notabilidá"
},
+ "departures_board": {
+ "options": {
+ "no": "Dengún",
+ "yes": "Si"
+ }
+ },
+ "depot": {
+ "label": "Tipu"
+ },
"description": {
"label": "Descripción"
},
+ "destination_waterway": {
+ "label": "Destín"
+ },
"devices": {
"label": "Preseos",
"placeholder": "1, 2, 3..."
},
+ "diplomatic": {
+ "label": "Tipu",
+ "options": {
+ "embassy": "Embaxada"
+ }
+ },
+ "diplomatic/services": {
+ "label": "Servicios"
+ },
+ "direction": {
+ "label": "Direición (Graos en sentíu horariu)",
+ "placeholder": "45, 90, 180, 270"
+ },
+ "direction_cardinal-US-CA-NZ": {
+ "label": "Direición"
+ },
+ "direction_clock": {
+ "label": "Direición",
+ "options": {
+ "anticlockwise": "Sentíu antihorariu",
+ "clockwise": "Sentíu horariu"
+ }
+ },
+ "direction_point": {
+ "placeholder": "45, 90, 180, 270"
+ },
+ "direction_vertex": {
+ "options": {
+ "backward": "P'atrás",
+ "forward": "P'alantre"
+ }
+ },
"display": {
"label": "Pantalla"
},
+ "disused/amenity": {
+ "label": "Tipu"
+ },
+ "disused/railway": {
+ "label": "Tipu"
+ },
+ "disused/shop": {
+ "label": "Tipu"
+ },
"dock": {
"label": "Tipu"
},
+ "dog": {
+ "options": {
+ "yes": "Permitíu"
+ }
+ },
+ "door_type": {
+ "label": "Tipu"
+ },
"drive_through": {
"label": "Carril de compres"
},
@@ -375,9 +699,24 @@
"label": "Tipu",
"placeholder": "Predetermináu"
},
+ "embassy": {
+ "label": "Tipu",
+ "options": {
+ "yes": "Embaxada"
+ }
+ },
"emergency": {
"label": "Emerxencia"
},
+ "emergency_combo": {
+ "label": "Tipu"
+ },
+ "emergency_ward_entrance": {
+ "label": "Tipu"
+ },
+ "enforcement": {
+ "label": "Tipu"
+ },
"entrance": {
"label": "Tipu"
},
@@ -394,6 +733,13 @@
"fence_type": {
"label": "Tipu"
},
+ "fire_hydrant/position": {
+ "label": "Posición",
+ "options": {
+ "parking_lot": "Aparcamientu",
+ "sidewalk": "Cera"
+ }
+ },
"fire_hydrant/type": {
"options": {
"pillar": "Pilar/Enriba del terrén",
@@ -401,22 +747,51 @@
"wall": "De parede"
}
},
+ "fire_mains": {
+ "options": {
+ "no": "Non"
+ }
+ },
+ "fire_service_inlet": {
+ "options": {
+ "pillar": "Pilar/Enriba del terrén",
+ "underground": "Baxo tierra",
+ "wall": "De parede"
+ }
+ },
+ "fire_sprinkler": {
+ "options": {
+ "no": "Non"
+ }
+ },
"fitness_station": {
"label": "Tipos d'equipamientu"
},
"fixme": {
"label": "Arréglame"
},
+ "flashing_lights": {
+ "options": {
+ "no": "Non",
+ "yes": "Si"
+ }
+ },
"ford": {
"label": "Tipu",
"placeholder": "Predetermináu"
},
+ "fountain": {
+ "label": "Tipu"
+ },
"frequency": {
"label": "Frecuencia d'operación"
},
"fuel": {
"label": "Combustible"
},
+ "fuel/fuel_multi": {
+ "label": "Tipos de combustible"
+ },
"gauge": {
"label": "Anchu de vía"
},
@@ -430,7 +805,11 @@
"placeholder": "Desconocíu"
},
"generator/method": {
- "label": "Métodu"
+ "label": "Métodu",
+ "options": {
+ "water-storage": "Embalse",
+ "wind_turbine": "Turbina de vientu"
+ }
},
"generator/output/electricity": {
"label": "Potencia de salida",
@@ -448,6 +827,9 @@
"grape_variety": {
"label": "Variedaes d'uva"
},
+ "guest_house": {
+ "label": "Tipu"
+ },
"handicap": {
"label": "Handicap",
"placeholder": "1-18"
@@ -459,7 +841,22 @@
"placeholder": "#exemplu"
},
"healthcare": {
- "label": "Tipu"
+ "label": "Tipu",
+ "options": {
+ "alternative": "Medicina alternativa",
+ "audiologist": "Audiólogu",
+ "birthing_centre": "Maternidá",
+ "clinic": "Clínica",
+ "dentist": "Dentista",
+ "doctor": "Doctor",
+ "hospice": "Hospiciu",
+ "midwife": "Matrona",
+ "occupational_therapist": "Terapia ocupacional",
+ "optometrist": "Ópticu",
+ "physiotherapist": "Fisioterapeuta",
+ "podiatrist": "Pediatra",
+ "psychotherapist": "Sicoterapeuta"
+ }
},
"healthcare/speciality": {
"label": "Especialidaes"
@@ -470,16 +867,44 @@
"highway": {
"label": "Tipu"
},
+ "highway_cartpath": {
+ "options": {
+ "service": "Vía de serviciu"
+ }
+ },
"historic": {
- "label": "Tipu"
+ "label": "Tipu",
+ "options": {
+ "archaeological_site": "Xacimientu arqueolóxicu",
+ "boundary_stone": "Finxu",
+ "castle": "Castiellu",
+ "memorial": "Obra d'alcordanza",
+ "monument": "Monumentu",
+ "railway": "Ferrocarril",
+ "ruins": "Ruines",
+ "wayside_cross": "Cruceru",
+ "wayside_shrine": "Capiella de camín"
+ }
},
"historic/civilization": {
"label": "Civilización histórica"
},
+ "holding_position/type": {
+ "label": "Tipu",
+ "options": {
+ "runway": "Pista"
+ }
+ },
"hoops": {
"label": "Númberu d'aros",
"placeholder": "1, 2, 4..."
},
+ "horse_riding": {
+ "options": {
+ "horse_riding": "Si",
+ "undefined": "Non"
+ }
+ },
"incline": {
"label": "Pendiente"
},
@@ -492,6 +917,12 @@
"indoor": {
"label": "Baxo techu"
},
+ "indoor_type": {
+ "label": "Tipu"
+ },
+ "industrial": {
+ "label": "Tipu"
+ },
"information": {
"label": "Tipu"
},
@@ -510,6 +941,40 @@
"yes": "Si"
}
},
+ "internet_access/fee": {
+ "label": "Accesu a Internet de pagu"
+ },
+ "irrigation_pivot": {
+ "options": {
+ "pivot": "Si",
+ "undefined": "Non"
+ }
+ },
+ "junction/ref_oneway": {
+ "label": "Númberu de salida"
+ },
+ "junction_line": {
+ "label": "Crucie",
+ "options": {
+ "roundabout": "Rotonda"
+ }
+ },
+ "kerb": {
+ "options": {
+ "flush": {
+ "title": "Cisterna"
+ },
+ "no": {
+ "title": "Non"
+ },
+ "yes": {
+ "title": "Si"
+ }
+ }
+ },
+ "kerb/kerb_barrier": {
+ "label": "Tipu"
+ },
"label": {
"label": "Etiqueta"
},
@@ -527,6 +992,9 @@
"label": "Capa",
"placeholder": "0"
},
+ "layer_1": {
+ "placeholder": "0"
+ },
"leaf_cycle": {
"label": "Ciclu de fueyes",
"options": {
@@ -558,12 +1026,29 @@
"level": {
"label": "Nivel"
},
+ "level_semi": {
+ "label": "Niveles"
+ },
+ "liaison": {
+ "label": "Tipu"
+ },
+ "lifeguard": {
+ "label": "Tipu"
+ },
+ "lift_gate/type": {
+ "label": "Tipu"
+ },
"lit": {
"label": "Lluz"
},
"location": {
"label": "Allugamientu"
},
+ "location_pool": {
+ "options": {
+ "indoor": "Baxo techu"
+ }
+ },
"man_made": {
"label": "Tipu"
},
@@ -576,25 +1061,44 @@
"map_type": {
"label": "Tipu"
},
- "maxheight": {
- "label": "Altor máximu"
+ "marker": {
+ "label": "Tipu"
+ },
+ "material": {
+ "options": {
+ "sand": "Sable",
+ "wood": "Viesca"
+ }
+ },
+ "max_age": {
+ "label": "Edá máxima"
},
"maxspeed": {
"label": "Velocidá máxima",
"placeholder": "40, 50, 60..."
},
- "maxstay": {
- "label": "Tiempu máx."
+ "maxspeed/advisory": {
+ "placeholder": "40, 50, 60..."
},
- "maxweight": {
- "label": "Pesu máximu"
+ "maxspeed/hgv": {
+ "placeholder": "40, 50, 60..."
},
"memorial": {
"label": "Tipu"
},
+ "min_age": {
+ "label": "Edá mínima"
+ },
"monitoring_multi": {
"label": "Vixilancia"
},
+ "mooring": {
+ "options": {
+ "no": "Non",
+ "private": "Priváu",
+ "yes": "Si"
+ }
+ },
"mtb/scale": {
"label": "Dificultá pa bicis de monte",
"options": {
@@ -624,6 +1128,9 @@
},
"placeholder": "0, 1, 2, 3..."
},
+ "museum": {
+ "label": "Tipu"
+ },
"name": {
"label": "Nome",
"placeholder": "Nome común (si lu tien)"
@@ -634,6 +1141,9 @@
"network": {
"label": "Rede"
},
+ "network/type": {
+ "label": "Tipu de rede"
+ },
"network_bicycle": {
"options": {
"icn": "Internacional",
@@ -667,8 +1177,38 @@
"note": {
"label": "Nota"
},
+ "nudism": {
+ "options": {
+ "designated": "Designáu",
+ "no": "Torgáu",
+ "permissive": "Permisivu",
+ "yes": "Permitíu"
+ }
+ },
"office": {
- "label": "Tipu"
+ "label": "Tipu",
+ "options": {
+ "accountant": "Contable",
+ "advertising_agency": "Axencia de publicidá",
+ "association": "Oficina d'ONG",
+ "coworking": "Espaciu de trabayu compartíu",
+ "educational_institution": "Institución educativa",
+ "employment_agency": "Axencia d'emplegu",
+ "energy_supplier": "Oficina de distribuidora d'enerxía",
+ "estate_agent": "Axencia inmobiliaria",
+ "financial": "Oficina financiera",
+ "foundation": "Oficina de fundación",
+ "government": "Oficina gubernamental",
+ "insurance": "Oficina de seguros",
+ "lawyer": "Despachu d'abogaos",
+ "newspaper": "Redacción de periódicu",
+ "ngo": "Oficina d'ONG",
+ "notary": "Notaría",
+ "physician": "Médicu",
+ "research": "Despachu d'investigación",
+ "telecommunication": "Oficina de telecomunicaciones",
+ "travel_agent": "Axencia de viaxes"
+ }
},
"oneway": {
"label": "Sentíu únicu",
@@ -686,11 +1226,18 @@
}
},
"opening_hours": {
- "label": "Horariu"
+ "label": "Horariu",
+ "placeholder": "Desconocíu"
},
"operator": {
"label": "Operador"
},
+ "organic": {
+ "options": {
+ "no": "Dengún",
+ "only": "Sólo"
+ }
+ },
"outdoor_seating": {
"label": "Terraza"
},
@@ -698,21 +1245,65 @@
"label": "Par",
"placeholder": "3, 4, 5..."
},
+ "parcel_pickup": {
+ "options": {
+ "no": "Non",
+ "undefined": "Créyese que si",
+ "yes": "Si"
+ }
+ },
"park_ride": {
"label": "Aparcamientu con tresporte públicu"
},
"parking": {
"label": "Tipu",
"options": {
- "carports": "Techaos",
- "garage_boxes": "Cocheres",
- "lane": "Llateral de carretera",
- "multi-storey": "Multinivel",
- "sheds": "Casetes",
- "surface": "Superficie",
- "underground": "Baxo tierra"
+ "carports": {
+ "title": "Techaos"
+ },
+ "garage_boxes": {
+ "title": "Cocheres"
+ },
+ "lane": {
+ "title": "Llateral de carretera"
+ },
+ "multi-storey": {
+ "title": "Multinivel"
+ },
+ "sheds": {
+ "title": "Casetes"
+ },
+ "surface": {
+ "title": "Superficie"
+ },
+ "underground": {
+ "title": "Baxo tierra"
+ }
}
},
+ "parking/side/orientation": {
+ "types": {
+ "parking:left:orientation": "Llau izquierdu",
+ "parking:right:orientation": "Llau drechu"
+ }
+ },
+ "parking/side/parking": {
+ "options": {
+ "lane": "Llateral de carretera",
+ "no": "Non",
+ "yes": "Si (sin especificar)"
+ },
+ "types": {
+ "parking:left": "Llau izquierdu",
+ "parking:right": "Llau drechu"
+ }
+ },
+ "parking_entrance": {
+ "label": "Tipu"
+ },
+ "parking_space": {
+ "label": "Tipu"
+ },
"payment_multi": {
"label": "Tipos de pagu"
},
@@ -721,12 +1312,30 @@
"placeholder": "1, 2, 3..."
},
"phone": {
- "placeholder": "+31 42 123 4567"
+ "label": "Teléfonu"
+ },
+ "picnic_table": {
+ "label": "Mesa de merenderu"
+ },
+ "pipeline": {
+ "label": "Tipu"
},
"piste/difficulty": {
"label": "Dificultá",
"placeholder": "Fácil, intermediu, avanzáu..."
},
+ "piste/difficulty_downhill": {
+ "options": {
+ "easy": "Fácil (círculu verde)"
+ },
+ "placeholder": "Fácil, intermediu, avanzáu..."
+ },
+ "piste/difficulty_nordic": {
+ "placeholder": "Fácil, intermediu, avanzáu..."
+ },
+ "piste/difficulty_skitour": {
+ "placeholder": "Fácil, intermediu, avanzáu..."
+ },
"piste/grooming": {
"label": "Mantenimientu",
"options": {
@@ -738,6 +1347,20 @@
"skating": "Patinaxe"
}
},
+ "piste/grooming_downhill": {
+ "options": {
+ "classic": "Clásica",
+ "mogul": "Bañeres"
+ }
+ },
+ "piste/grooming_nordic": {
+ "options": {
+ "classic": "Clásica",
+ "classic+skating": "Clásica y patinaxe",
+ "scooter": "Scooter/Moto de nieve",
+ "skating": "Patinaxe"
+ }
+ },
"piste/type": {
"label": "Tipu",
"options": {
@@ -758,12 +1381,23 @@
"plant": {
"label": "Planta"
},
+ "plant/output": {
+ "options": {
+ "compressed_air": "Aire comprimíu"
+ }
+ },
"plant/output/electricity": {
"placeholder": "500 MW, 1000 MW, 2000 MW..."
},
+ "playground": {
+ "label": "Tipu"
+ },
"population": {
"label": "Población"
},
+ "post_box/type": {
+ "label": "Tipu"
+ },
"power": {
"label": "Tipu"
},
@@ -776,14 +1410,49 @@
"product": {
"label": "Productos"
},
+ "public_bookcase/type": {
+ "label": "Tipu"
+ },
+ "pump": {
+ "options": {
+ "no": "Dengún",
+ "yes": "Si"
+ }
+ },
"railway": {
"label": "Tipu"
},
+ "railway/position": {
+ "label": "Posición del fitu",
+ "placeholder": "Distancia con un decimal (123.4)"
+ },
+ "railway/signal/direction": {
+ "options": {
+ "backward": "P'atrás",
+ "forward": "P'alantre"
+ }
+ },
+ "ramp": {
+ "options": {
+ "no": "Non",
+ "yes": "Si"
+ }
+ },
"rating": {
"label": "Potencia nominal"
},
"recycling_accepts": {
- "label": "Aceuta"
+ "label": "Aceuta",
+ "options": {
+ "clothes": "Ropa"
+ }
+ },
+ "recycling_type": {
+ "label": "Tipu",
+ "options": {
+ "centre": "Centru",
+ "container": "Contenedor"
+ }
},
"ref": {
"label": "Códigu de referencia"
@@ -791,6 +1460,10 @@
"ref_aeroway_gate": {
"label": "Númberu de puerta"
},
+ "ref_disc_golf_hole": {
+ "label": "Númberu de furacu",
+ "placeholder": "1-18"
+ },
"ref_golf_hole": {
"label": "Númberu de furacu",
"placeholder": "1-18"
@@ -822,7 +1495,27 @@
"label": "Tipu"
},
"religion": {
- "label": "Relixon"
+ "label": "Relixon",
+ "options": {
+ "buddhist": "Budista",
+ "christian": "Christianu",
+ "hindu": "Hindu",
+ "jewish": "Xudíu",
+ "muslim": "Musulmán",
+ "shinto": "Sintoista",
+ "taoist": "Taoista"
+ }
+ },
+ "residential": {
+ "label": "Tipu"
+ },
+ "resort": {
+ "label": "Tipu"
+ },
+ "resource": {
+ "options": {
+ "sand": "Sable"
+ }
},
"restriction": {
"label": "Tipu"
@@ -830,6 +1523,17 @@
"restrictions": {
"label": "Torgues de xiru"
},
+ "roller_coaster/track": {
+ "label": "Tipu"
+ },
+ "roof/shape": {
+ "options": {
+ "dome": "Cúpula"
+ }
+ },
+ "room": {
+ "label": "Tipu"
+ },
"rooms": {
"label": "Cuartos"
},
@@ -839,6 +1543,14 @@
"route_master": {
"label": "Tipu"
},
+ "royal_cypher-GB": {
+ "options": {
+ "no": "Non"
+ }
+ },
+ "ruins": {
+ "label": "Tipu"
+ },
"sac_scale": {
"label": "Dificultá escursionista",
"options": {
@@ -854,9 +1566,41 @@
"sanitary_dump_station": {
"label": "Descarga d'agua puerco"
},
+ "scuba_diving": {
+ "label": "Servicios"
+ },
+ "seamark/beacon_lateral/colour": {
+ "options": {
+ "green": "Yerba"
+ }
+ },
+ "seamark/beacon_lateral/system": {
+ "options": {
+ "other": "Otru"
+ }
+ },
+ "seamark/buoy_lateral/colour": {
+ "options": {
+ "green": "Yerba"
+ }
+ },
+ "seamark/buoy_lateral/system": {
+ "options": {
+ "other": "Otru"
+ }
+ },
+ "seamark/harbour/category_marina": {
+ "options": {
+ "marina": "Si",
+ "marina_no_facilities": "Non"
+ }
+ },
"seasonal": {
"label": "Estacional"
},
+ "seats": {
+ "placeholder": "2, 4, 6..."
+ },
"second_hand": {
"label": "Vende usao",
"options": {
@@ -867,7 +1611,13 @@
"placeholder": "Si, Non, Sólo"
},
"service": {
- "label": "Tipu"
+ "label": "Tipu",
+ "options": {
+ "alley": "Pasaxe",
+ "drive-through": "Carril d'autoventa",
+ "emergency_access": "Accesu d'emerxencia",
+ "parking_aisle": "Pasiellu d'aparcamientu"
+ }
},
"service/vehicle": {
"label": "Servicios"
@@ -893,6 +1643,12 @@
"shop": {
"label": "Tipu"
},
+ "siren/type": {
+ "label": "Tipu",
+ "options": {
+ "other": "Otru"
+ }
+ },
"site": {
"label": "Tipu"
},
@@ -923,7 +1679,11 @@
"placeholder": "Patinos, ruedes, too terrén"
},
"social_facility": {
- "label": "Tipu"
+ "label": "Tipu",
+ "options": {
+ "food_bank": "Bancu d'alimentos",
+ "shelter": "Abellugu"
+ }
},
"social_facility_for": {
"label": "Persones atendíes"
@@ -932,15 +1692,21 @@
"label": "Fontes"
},
"sport": {
+ "label": "Deportes",
+ "options": {
+ "golf": "Golf"
+ }
+ },
+ "sport/sport_ice": {
"label": "Deportes"
},
- "sport_ice": {
+ "sport/sport_pub": {
"label": "Deportes"
},
- "sport_racing_motor": {
+ "sport/sport_racing_motor": {
"label": "Deportes"
},
- "sport_racing_nonmotor": {
+ "sport/sport_racing_nonmotor": {
"label": "Deportes"
},
"stars": {
@@ -952,6 +1718,9 @@
"step_count": {
"label": "Númberu d'escaleres"
},
+ "stile": {
+ "label": "Tipu"
+ },
"stop": {
"label": "Tipu de parada",
"options": {
@@ -959,6 +1728,15 @@
"minor": "Carretera menor"
}
},
+ "street_cabinet": {
+ "label": "Tipu"
+ },
+ "stroller": {
+ "options": {
+ "no": "Non",
+ "yes": "Si"
+ }
+ },
"structure": {
"label": "Estructura",
"options": {
@@ -970,6 +1748,17 @@
},
"placeholder": "Desconocíu"
},
+ "structure_canal": {
+ "label": "Estructura",
+ "options": {
+ "bridge": "Ponte",
+ "tunnel": "Túnel"
+ },
+ "placeholder": "Desconocíu"
+ },
+ "structure_power": {
+ "label": "Estructura"
+ },
"structure_waterway": {
"label": "Estructura",
"options": {
@@ -981,11 +1770,21 @@
"label": "Tipu"
},
"substance": {
- "label": "Sustancia"
+ "label": "Sustancia",
+ "options": {
+ "fuel": "Combustible",
+ "water": "Agua potable"
+ }
},
"substation": {
"label": "Tipu"
},
+ "substation_pipeline": {
+ "label": "Tipu",
+ "options": {
+ "measurement": "Midíes"
+ }
+ },
"supervised": {
"label": "Supervisáu"
},
@@ -993,7 +1792,12 @@
"label": "Sofitu"
},
"surface": {
- "label": "Superficie"
+ "label": "Superficie",
+ "options": {
+ "grass": "Yerba",
+ "sand": "Sable",
+ "wood": "Viesca"
+ }
},
"surveillance": {
"label": "Clas de vixilancia"
@@ -1009,6 +1813,20 @@
"surveillance/zone": {
"label": "Zona de vixilancia"
},
+ "survey_point/purpose": {
+ "options": {
+ "both": "Dambos"
+ }
+ },
+ "survey_point/structure": {
+ "label": "Estructura",
+ "options": {
+ "block": "Bloque"
+ }
+ },
+ "swimming_pool": {
+ "label": "Tipu"
+ },
"switch": {
"label": "Tipu",
"options": {
@@ -1028,6 +1846,15 @@
},
"placeholder": "Si, non, sólo pa llevar..."
},
+ "telecom": {
+ "label": "Tipu"
+ },
+ "telescope/type": {
+ "label": "Tipu"
+ },
+ "toilets": {
+ "label": "Aseos"
+ },
"toilets/disposal": {
"label": "Llimpieza",
"options": {
@@ -1036,6 +1863,17 @@
"flush": "Cisterna"
}
},
+ "toilets/menstrual_products": {
+ "options": {
+ "no": "Non"
+ }
+ },
+ "toilets/wheelchair": {
+ "options": {
+ "no": "Non",
+ "yes": "Si"
+ }
+ },
"toll": {
"label": "Peaxe"
},
@@ -1048,9 +1886,15 @@
"tower/construction": {
"label": "Construcción"
},
+ "tower/platforms": {
+ "placeholder": "1, 2, 3..."
+ },
"tower/type": {
"label": "Tipu"
},
+ "townhall/type": {
+ "label": "Tipu"
+ },
"tracktype": {
"label": "Tipu de caleya",
"options": {
@@ -1065,11 +1909,41 @@
"label": "Tipu"
},
"traffic_calming": {
- "label": "Tipu"
+ "label": "Tipu",
+ "options": {
+ "bump": "Llombu pa reducir velocidá",
+ "chicane": "Chicane pal tráficu",
+ "choker": "Estrechamientu de tráficu",
+ "cushion": "Llombu pa reducir velocidá partíu",
+ "dip": "Riegu",
+ "hump": "Llombu anchu pa reducir velocidá",
+ "rumble_strip": "Bandes sonores"
+ }
+ },
+ "traffic_calming_road": {
+ "label": "Calmu pal tráficu"
+ },
+ "traffic_sign/direction": {
+ "options": {
+ "backward": "P'atrás",
+ "forward": "P'alantre"
+ }
},
"traffic_signals": {
"label": "Tipu"
},
+ "traffic_signals/direction": {
+ "options": {
+ "backward": "P'atrás",
+ "forward": "P'alantre"
+ }
+ },
+ "traffic_signals/sound": {
+ "options": {
+ "no": "Non",
+ "yes": "Si"
+ }
+ },
"trail_visibility": {
"label": "Visibilidá del senderu",
"options": {
@@ -1083,15 +1957,57 @@
"placeholder": "Escelente, bonu, malu..."
},
"transformer": {
- "label": "Tipu"
+ "label": "Tipu",
+ "options": {
+ "phase_angle_regulator": "Regulador d'ángulu de fase"
+ }
},
"trees": {
"label": "Árboles"
},
+ "trench": {
+ "label": "Tipu"
+ },
"tunnel": {
"label": "Tipu",
"placeholder": "Predetermináu"
},
+ "tunnel_combo": {
+ "label": "Tipu"
+ },
+ "two_sided": {
+ "options": {
+ "undefined": "Non",
+ "yes": "Si"
+ }
+ },
+ "usage_rail": {
+ "options": {
+ "tourism": "Turismu"
+ }
+ },
+ "utility": {
+ "options": {
+ "power": "Enerxía",
+ "water": "Agua"
+ }
+ },
+ "valve": {
+ "label": "Tipu"
+ },
+ "vehicles": {
+ "options": {
+ "monorail": "Monocarril",
+ "subway": "Metro",
+ "tram": "Tranvía"
+ }
+ },
+ "vending": {
+ "options": {
+ "fuel": "Combustible",
+ "water": "Agua potable"
+ }
+ },
"visibility": {
"label": "Visibilidá",
"options": {
@@ -1137,6 +2053,13 @@
"water_point": {
"label": "Toma d'agua"
},
+ "water_source": {
+ "options": {
+ "pond": "Estanque",
+ "river": "Ríu",
+ "stream": "Regueru"
+ }
+ },
"waterway": {
"label": "Tipu"
},
@@ -1147,13 +2070,28 @@
"label": "Tipu"
},
"wheelchair": {
- "label": "Accesu pa siella de ruedes"
+ "label": "Accesu pa siella de ruedes",
+ "options": {
+ "no": "Non",
+ "yes": "Si"
+ }
},
"width": {
"label": "Anchura (Metros)"
},
"wikipedia": {
"label": "Wikipedia"
+ },
+ "windings": {
+ "placeholder": "1, 2, 3..."
+ },
+ "windings/auto": {
+ "label": "Autotresformador",
+ "options": {
+ "no": "Non",
+ "undefined": "Créyese que non",
+ "yes": "Si"
+ }
}
},
"presets": {
@@ -1302,9 +2240,6 @@
"amenity/clock": {
"name": "Reló"
},
- "amenity/college": {
- "name": "Terrén de colexu universitariu"
- },
"amenity/community_centre": {
"name": "Centru comunitariu",
"terms": "centru social,atenéu"
@@ -1317,6 +2252,9 @@
"name": "Xulgáu",
"terms": "tribunal,audiencia,sala"
},
+ "amenity/coworking_space": {
+ "name": "Espaciu de trabayu compartíu"
+ },
"amenity/crematorium": {
"name": "Crematoriu"
},
@@ -1328,6 +2266,9 @@
"name": "Doctor",
"terms": "médicu,especialista"
},
+ "amenity/doctors/podiatry": {
+ "name": "Pediatra"
+ },
"amenity/dojo": {
"name": "Dojo / Academia d'artes marciales",
"terms": "ximnasiu"
@@ -1336,10 +2277,6 @@
"name": "Agua potable",
"terms": "fonte,bebederu"
},
- "amenity/driving_school": {
- "name": "Autoescuela",
- "terms": "carné,permisu,llicencia,conducir,conducción,escuela"
- },
"amenity/embassy": {
"name": "Embaxada"
},
@@ -1384,14 +2321,13 @@
"amenity/motorcycle_parking": {
"name": "Aparcaderu de motos"
},
- "amenity/music_school": {
- "name": "Academia de música",
- "terms": "conservatoriu,escuela de música"
- },
"amenity/nightclub": {
"name": "Discoteca",
"terms": "disco,discobar,baille"
},
+ "amenity/parking": {
+ "name": "Aparcamientu"
+ },
"amenity/parking_space": {
"name": "Espaciu d'aparcamientu"
},
@@ -1456,10 +2392,6 @@
"name": "Vertíu de depósitos d'autocaravanes",
"terms": "depósitu caravanes,saneamientru caravanes"
},
- "amenity/school": {
- "name": "Antoxana d'escuela",
- "terms": "terrén d'escuela,zona escolar"
- },
"amenity/shelter": {
"name": "Abellugu"
},
@@ -1499,12 +2431,9 @@
"name": "Edificiu municipal",
"terms": "casa del conceyu,ayuntamientu"
},
- "amenity/university": {
- "name": "Campus universitariu",
- "terms": "terrén universitariu"
- },
"amenity/vending_machine": {
- "name": "Máquina de venta automática"
+ "name": "Máquina de venta automática",
+ "terms": "máquina,autoventa"
},
"amenity/vending_machine/cigarettes": {
"name": "Máquina de venta de tabacu"
@@ -1520,6 +2449,9 @@
"name": "Máquina de venta d'hixénicos femeninos",
"terms": "máquina,compresa,tampón"
},
+ "amenity/vending_machine/food/snacks": {
+ "name": "Máquina de venta de llambionaes"
+ },
"amenity/vending_machine/newspapers": {
"name": "Máquina de venta de periódicos",
"terms": "máquina,automática,periódicos.prensa,revistes"
@@ -1532,9 +2464,6 @@
"name": "Máquina de venta de billetes de tresporte",
"terms": "máquina,automática,billete,tren,autobús,recarga"
},
- "amenity/vending_machine/sweets": {
- "name": "Máquina de venta de llambionaes"
- },
"amenity/veterinary": {
"name": "Veterinariu",
"terms": "clínica veterinaria"
@@ -1543,10 +2472,6 @@
"name": "Papelera pa escrementos de perros",
"terms": "contenedor,escrementos,perros,bolses"
},
- "amenity/waste_basket": {
- "name": "Papelera",
- "terms": "papelera,basoria"
- },
"amenity/waste_disposal": {
"name": "Contenedor de basoria"
},
@@ -1563,10 +2488,6 @@
"area": {
"name": "Área"
},
- "attraction/big_wheel": {
- "name": "Noria",
- "terms": "rueda,atracciones"
- },
"attraction/carousel": {
"name": "Caballinos",
"terms": "carrusel,atracciones,feria"
@@ -1609,15 +2530,15 @@
"barrier/gate": {
"name": "Puerta"
},
+ "barrier/handrail": {
+ "name": "Pasamanes"
+ },
"barrier/hedge": {
"name": "Sebe"
},
"barrier/kissing_gate": {
"name": "Puerta ganadera"
},
- "barrier/lift_gate": {
- "name": "Barrera"
- },
"barrier/retaining_wall": {
"name": "Muru de contención"
},
@@ -1630,6 +2551,9 @@
"barrier/wall": {
"name": "Muria"
},
+ "boundary": {
+ "name": "Llende"
+ },
"boundary/administrative": {
"name": "Llende alministrativa"
},
@@ -1730,12 +2654,6 @@
"name": "Establu",
"terms": "corte,cuadra"
},
- "building/static_caravan": {
- "name": "Casa portátil"
- },
- "building/terrace": {
- "name": "Filera de cases"
- },
"building/university": {
"name": "Edificiu universitariu"
},
@@ -1743,6 +2661,9 @@
"name": "Almacén",
"terms": "nave d'almacenamientu"
},
+ "building_point": {
+ "name": "Edificiu"
+ },
"craft": {
"name": "Oficiu",
"terms": "profesional,negociu"
@@ -1886,35 +2807,20 @@
"name": "Desfibrilador",
"terms": "emerxencia,corazón,ataque cardiacu"
},
- "emergency/designated": {
- "name": "Accesu d'emerxencia designáu"
- },
- "emergency/destination": {
- "name": "Accesu d'emerxencia a destín"
- },
"emergency/fire_hydrant": {
"name": "Toma de mangueres",
"terms": "apagafueos,fueu,boca de riegu"
},
- "emergency/no": {
- "name": "Accesu d'emerxencia Non"
- },
- "emergency/official": {
- "name": "Accesu d'emerxencia oficial"
- },
"emergency/phone": {
"name": "Teléfonu d'emerxencia",
"terms": "s.o.s.,teléfonu d'ayuda,teléfonu de socorru"
},
- "emergency/private": {
- "name": "Accesu d'emerxencia priváu"
- },
- "emergency/yes": {
- "name": "Accesu d'emerxencia Si"
- },
"ford": {
"name": "Vau"
},
+ "ford_line": {
+ "name": "Vau"
+ },
"golf/bunker": {
"name": "Trampa de sable",
"terms": "bunker (golf),areneru"
@@ -1929,12 +2835,18 @@
"golf/hole": {
"name": "Furacu de golf"
},
+ "golf/lateral_water_hazard": {
+ "name": "Llagu d'agua llateral en golf"
+ },
"golf/rough": {
"name": "Rough de golf"
},
"golf/tee": {
"name": "Salida de percorríu"
},
+ "golf/water_hazard": {
+ "name": "Llagu de golf"
+ },
"healthcare": {
"name": "Instalación sanitaria"
},
@@ -1981,6 +2893,10 @@
"highway/corridor": {
"name": "Pasiellu d'edificiu"
},
+ "highway/crossing": {
+ "name": "Pasu de peatones",
+ "terms": "cruce de víes,pasu"
+ },
"highway/cycleway": {
"name": "Camín ciclista"
},
@@ -1991,6 +2907,9 @@
"name": "Camín peatonal",
"terms": "camín,senderu,sienda"
},
+ "highway/footway/sidewalk": {
+ "name": "Cera"
+ },
"highway/give_way": {
"name": "Señal de dexar pasu"
},
@@ -2135,6 +3054,12 @@
"historic/wayside_shrine": {
"name": "Capiella de camín"
},
+ "indoor/corridor": {
+ "name": "Pasiellu d'edificiu"
+ },
+ "indoor/corridor_line": {
+ "name": "Pasiellu d'edificiu"
+ },
"junction": {
"name": "Crucie"
},
@@ -2196,13 +3121,16 @@
"name": "Aeródromu militar"
},
"landuse/military/barracks": {
- "name": "Cuartel"
+ "name": "Cuartel",
+ "terms": "campamentu militar"
},
- "landuse/military/danger_area": {
- "name": "Área de peligru"
+ "landuse/military/base/navy": {
+ "name": "Base naval",
+ "terms": "arsenal"
},
"landuse/military/range": {
- "name": "Campu de tiru"
+ "name": "Campu de tiru",
+ "terms": "campu de maniobres"
},
"landuse/orchard": {
"name": "Plantación"
@@ -2210,9 +3138,15 @@
"landuse/plant_nursery": {
"name": "Viveru"
},
+ "landuse/pond": {
+ "name": "Estanque"
+ },
"landuse/quarry": {
"name": "Cantera"
},
+ "landuse/reservoir": {
+ "name": "Embalse"
+ },
"landuse/residential": {
"name": "Área de viviendes"
},
@@ -2252,6 +3186,9 @@
"leisure/garden": {
"name": "Xardín"
},
+ "leisure/garden/community": {
+ "name": "Xardín acomuñáu"
+ },
"leisure/golf_course": {
"name": "Campu de golf"
},
@@ -2342,6 +3279,13 @@
"leisure/track": {
"name": "Circuitu (Deportes sin motor)"
},
+ "leisure/track/athletics/running": {
+ "name": "Pista d'atletismu"
+ },
+ "leisure/track/running": {
+ "name": "Pista d'atletismu",
+ "terms": "pista,circuitu"
+ },
"leisure/water_park": {
"name": "Parque acuáticu"
},
@@ -2361,11 +3305,15 @@
"man_made/crane": {
"name": "Grúa"
},
+ "man_made/crane/portal_crane": {
+ "name": "Pórticu"
+ },
"man_made/cutline": {
"name": "Cortafuéu"
},
"man_made/embankment": {
- "name": "Terremplén"
+ "name": "Terremplén",
+ "terms": "rellenu"
},
"man_made/flagpole": {
"name": "Mástil",
@@ -2377,6 +3325,9 @@
"man_made/lighthouse": {
"name": "Faru"
},
+ "man_made/manhole": {
+ "name": "Tapa d'alcantariella"
+ },
"man_made/mast": {
"name": "Mástil"
},
@@ -2404,12 +3355,19 @@
"man_made/surveillance": {
"name": "Vixilancia"
},
+ "man_made/surveillance/camera": {
+ "name": "Cámara de vixilancia"
+ },
"man_made/survey_point": {
"name": "Vértiz xeodésicu"
},
"man_made/tower": {
"name": "Torre"
},
+ "man_made/tower/observation": {
+ "name": "Torre de vixilancia",
+ "terms": "observatoriu,torre d'observación"
+ },
"man_made/wastewater_plant": {
"name": "Planta depuradora",
"terms": "depuradora,tratamientu,agua,pretratamientu"
@@ -2432,6 +3390,15 @@
"man_made/works": {
"name": "Fábrica"
},
+ "military/bunker": {
+ "name": "Bunquer militar"
+ },
+ "military/nuclear_explosion_site": {
+ "name": "Llugar d'españíu nuclear"
+ },
+ "military/office": {
+ "name": "Oficina militar"
+ },
"natural/bare_rock": {
"name": "Roca"
},
@@ -2463,6 +3430,9 @@
"natural/heath": {
"name": "Escobal"
},
+ "natural/hot_spring": {
+ "name": "Fonte caliente"
+ },
"natural/peak": {
"name": "Picu",
"terms": "picu,monte,vértiz"
@@ -2491,6 +3461,9 @@
"natural/water": {
"name": "Agua"
},
+ "natural/water/basin": {
+ "name": "Acumulación d'agües"
+ },
"natural/water/lake": {
"name": "Llagu"
},
@@ -2522,6 +3495,13 @@
"office/association": {
"name": "Oficina d'ONG"
},
+ "office/coworking": {
+ "name": "Espaciu de trabayu compartíu"
+ },
+ "office/diplomatic/embassy": {
+ "name": "Embaxada",
+ "terms": "embaxada,consuláu,representación diplomática"
+ },
"office/educational_institution": {
"name": "Institución educativa"
},
@@ -2546,6 +3526,10 @@
"name": "Oficina gubernamental",
"terms": "gobiernu,ministeriu,delegación"
},
+ "office/government/register_office": {
+ "name": "Oficina de rexistru",
+ "terms": "rexistru,almisión"
+ },
"office/insurance": {
"name": "Oficina de seguros",
"terms": "aseguradora,seguros,riesgu"
@@ -2553,6 +3537,9 @@
"office/lawyer": {
"name": "Despachu d'abogaos"
},
+ "office/lawyer/notary": {
+ "name": "Notaría"
+ },
"office/newspaper": {
"name": "Redacción de periódicu"
},
@@ -2616,6 +3603,12 @@
"name": "Xenerador d'enerxía",
"terms": "central eléctrica"
},
+ "power/generator/source/nuclear": {
+ "name": "Reactor nuclear"
+ },
+ "power/generator/source/wind": {
+ "name": "Turbina de vientu"
+ },
"power/line": {
"name": "Llinia eléctrica"
},
@@ -2635,9 +3628,36 @@
"power/transformer": {
"name": "Tresformador"
},
+ "public_transport/platform/aerialway_point": {
+ "name": "Andén / Parada de remonte"
+ },
+ "public_transport/platform/ferry_point": {
+ "name": "Andén / Parada de ferry"
+ },
+ "public_transport/platform/light_rail_point": {
+ "name": "Andén / Parada de tren llixeru"
+ },
+ "public_transport/platform/monorail_point": {
+ "name": "Andén / Parada de monocarril"
+ },
+ "public_transport/platform/subway_point": {
+ "name": "Andén / Parada de metro"
+ },
+ "public_transport/platform/train_point": {
+ "name": "Andén / Parada de tren"
+ },
+ "public_transport/platform/tram_point": {
+ "name": "Andén / Parada de trolebús"
+ },
+ "public_transport/platform_point": {
+ "name": "Andén / Parada de tresporte"
+ },
"public_transport/station": {
"name": "Estación d'intercambiu"
},
+ "public_transport/station_aerialway": {
+ "name": "Estación de remonte"
+ },
"public_transport/station_bus": {
"name": "Estación / Terminal d'autobuses"
},
@@ -2651,7 +3671,8 @@
"name": "Estación de metro"
},
"public_transport/station_train": {
- "name": "Estación de tren"
+ "name": "Estación de tren",
+ "terms": "terminal ferroviaria"
},
"railway/abandoned": {
"name": "Ferrocarril abandonáu"
@@ -3072,10 +4093,6 @@
"traffic_calming/hump": {
"name": "Llombu anchu pa reducir velocidá"
},
- "traffic_calming/island": {
- "name": "Refuxu de tráficu",
- "terms": "islla de tráficu"
- },
"traffic_calming/rumble_strip": {
"name": "Bandes sonores"
},
diff --git a/dist/translations/ast.min.json b/dist/translations/ast.min.json
index 18c0585f..4b841c01 100644
--- a/dist/translations/ast.min.json
+++ b/dist/translations/ast.min.json
@@ -1 +1 @@
-{"ast":{"presets":{"categories":{"category-barrier":{"name":"Elementos de barrera"},"category-building":{"name":"Elementos d'edificiu"},"category-landuse":{"name":"Elementos d'usu del terrén"},"category-restriction":{"name":"Elementos de torga"},"category-route":{"name":"Elementos de ruta"}},"fields":{"access":{"label":"Accesu permitíu","options":{"designated":{"title":"Designáu"},"destination":{"title":"Destín"},"dismount":{"title":"Desmontáu"},"no":{"title":"Torgáu"},"permissive":{"title":"Permisivu"},"private":{"title":"Priváu"},"yes":{"title":"Permitíu"}},"placeholder":"Ensin especificar","types":{"access":"Too","bicycle":"Bicicletes","foot":"A pie","horse":"Caballos","motor_vehicle":"Vehículos de motor"}},"access_simple":{"label":"Accesu permitíu"},"address":{"label":"Direición","placeholders":{"block_number":"Númberu de bloque","block_number!jp":"Bloque Núm.","city":"Ciudá","city!jp":"Ciudá/Villa/Pueblu/Barriu Especial de Tokio","city!vn":"Ciudá/Villa","conscriptionnumber":"123","country":"País","county":"Condáu","county!jp":"Distritu","district":"Distritu","district!vn":"Comarca/Villa/Distritu","floor":"Suelu","hamlet":"Aldea","housename":"Númberu de casa","housenumber":"123","housenumber!jp":"Edificiu Núm./Mazana Núm.","neighbourhood":"Vecinderu","neighbourhood!jp":"Chōme/Aza/Koaza","place":"Llugar","postcode":"Códigu postal","province":"Provincia","province!jp":"Prefeutura","quarter!jp":"Ōaza/Machi","state":"Estáu","street":"Cai","subdistrict":"Subdistritu","suburb":"Barriu","unit":"Unidá"}},"admin_level":{"label":"Nivel alministrativu"},"aerialway":{"label":"Tipu"},"aerialway/access":{"label":"Accesu","options":{"both":"Dambos","entry":"Entrada","exit":"Salida"}},"aerialway/bubble":{"label":"Cabina"},"aerialway/capacity":{"label":"Capacidá (por hora)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Duración (minutos)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Calefacción"},"aerialway/occupancy":{"label":"Ocupación","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Accesu (branu)","options":{"both":"Dambos","entry":"Entrada","exit":"Salida"}},"aeroway":{"label":"Tipu"},"agrarian":{"label":"Productos"},"amenity":{"label":"Tipu"},"animal_boarding":{"label":"P'animales"},"animal_breeding":{"label":"P'animales"},"animal_shelter":{"label":"P'animales"},"area/highway":{"label":"Tipu"},"artist":{"label":"Artista"},"artwork_type":{"label":"Tipu"},"atm":{"label":"Caxeru automáticu"},"backrest":{"label":"Respaldu"},"barrier":{"label":"Tipu"},"bath/open_air":{"label":"Aire llibre"},"bath/sand_bath":{"label":"Bañu de sable"},"bath/type":{"label":"Especialidá"},"bench":{"label":"Bancu"},"bicycle_parking":{"label":"Tipu"},"bin":{"label":"Contenedor de basoria"},"blood_components":{"label":"Componentes de la sangre","options":{"plasma":"plasma","platelets":"plaquetes","stemcells":"pruebes de célules madre","whole":"sangre entera"}},"board_type":{"label":"Tipu"},"boules":{"label":"Tipu"},"boundary":{"label":"Tipu"},"brand":{"label":"Marca"},"bridge":{"label":"Tipu","placeholder":"Predeterminao"},"building":{"label":"Edificiu"},"bunker_type":{"label":"Tipu"},"cables":{"label":"Cables","placeholder":"1, 2, 3..."},"camera/direction":{"label":"Direición (Graos en sentíu horariu)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"Encontu de cámara"},"camera/type":{"label":"Tipu de cámara","options":{"dome":"Cúpula","fixed":"Fixa","panning":"Barríu"}},"capacity":{"label":"Capacidá","placeholder":"50, 100, 200..."},"castle_type":{"label":"Tipu"},"clothes":{"label":"Ropa"},"club":{"label":"Tipu"},"collection_times":{"label":"Hores de recoyida"},"comment":{"label":"Comentariu del conxuntu de cambios","placeholder":"Descripción curtia de les collaboraciones (riquío)"},"communication_multi":{"label":"Tipos de comunicación"},"construction":{"label":"Tipu"},"contact/webcam":{"label":"URL de la webcam","placeholder":"http://example.com/"},"content":{"label":"Conteníu"},"country":{"label":"País"},"covered":{"label":"Cubierto"},"craft":{"label":"Tipu"},"crane/type":{"label":"Tipu de grúa","options":{"floor-mounted_crane":"Grúa anclada en suelu","portal_crane":"Pórticu","travel_lift":"Elevador de barcos móvil"}},"crop":{"label":"Cultivos"},"crossing":{"label":"Tipu"},"cuisine":{"label":"Cocina"},"currency_multi":{"label":"Tipos de divisa"},"cutting":{"label":"Tipu","placeholder":"Predeterminao"},"cycle_network":{"label":"Rede"},"cycleway":{"label":"Carriles bici","options":{"lane":{"description":"Un carril bici separáu del tráficu d'autos por una llinia pintada"},"opposite":{"description":"Carril bici de dos direcciones n'una cai de dirección única"},"opposite_lane":{"description":"Un carril bici que va en dirección opuesta al tráficu"},"share_busway":{"description":"Carril bici compartíu con carril bus"},"shared_lane":{"description":"Un carril bici sin separación del tráficu d'autos"},"track":{"description":"Un carril bici separáu del tráficu por una barrera física"}}},"date":{"label":"Data"},"delivery":{"label":"Repartu"},"denomination":{"label":"Denominación"},"denotation":{"label":"Notabilidá"},"description":{"label":"Descripción"},"devices":{"label":"Preseos","placeholder":"1, 2, 3..."},"display":{"label":"Pantalla"},"dock":{"label":"Tipu"},"drive_through":{"label":"Carril de compres"},"duration":{"label":"Duración","placeholder":"00:00"},"electrified":{"label":"Electrificación","options":{"contact_line":"Catenaria","no":"Non","rail":"Ferrocarril electrificáu","yes":"Si (sin especificar)"},"placeholder":"Catenaria, ferrocarril electrificáu..."},"email":{"label":"Corréu-e","placeholder":"example@example.com"},"embankment":{"label":"Tipu","placeholder":"Predetermináu"},"emergency":{"label":"Emerxencia"},"entrance":{"label":"Tipu"},"except":{"label":"Esceiciones"},"fax":{"label":"Fax","placeholder":"+31 42 123 4567"},"fee":{"label":"Pagu"},"fence_type":{"label":"Tipu"},"fire_hydrant/type":{"options":{"pillar":"Pilar/Enriba del terrén","underground":"Baxo tierra","wall":"De parede"}},"fitness_station":{"label":"Tipos d'equipamientu"},"fixme":{"label":"Arréglame"},"ford":{"label":"Tipu","placeholder":"Predetermináu"},"frequency":{"label":"Frecuencia d'operación"},"fuel":{"label":"Combustible"},"gauge":{"label":"Anchu de vía"},"gender":{"label":"Xéneru","options":{"female":"Femenin","male":"Masculín","unisex":"Unisex"},"placeholder":"Desconocíu"},"generator/method":{"label":"Métodu"},"generator/output/electricity":{"label":"Potencia de salida","placeholder":"50 MW, 100 MW, 200 MW..."},"generator/source":{"label":"Fonte"},"generator/type":{"label":"Tipu"},"government":{"label":"Tipu"},"grape_variety":{"label":"Variedaes d'uva"},"handicap":{"label":"Handicap","placeholder":"1-18"},"handrail":{"label":"Pasamanes"},"hashtags":{"placeholder":"#exemplu"},"healthcare":{"label":"Tipu"},"healthcare/speciality":{"label":"Especialidaes"},"height":{"label":"Altor (metros)"},"highway":{"label":"Tipu"},"historic":{"label":"Tipu"},"historic/civilization":{"label":"Civilización histórica"},"hoops":{"label":"Númberu d'aros","placeholder":"1, 2, 4..."},"incline":{"label":"Pendiente"},"incline_steps":{"options":{"down":"Abaxo","up":"Arriba"}},"indoor":{"label":"Baxo techu"},"information":{"label":"Tipu"},"inscription":{"label":"Inscripción"},"intermittent":{"label":"Intermitente"},"internet_access":{"options":{"no":"Non","terminal":"Terminal","wired":"Per cable","wlan":"Wifi","yes":"Si"}},"label":{"label":"Etiqueta"},"lamp_type":{"label":"Tipu"},"landuse":{"label":"Tipu"},"lanes":{"label":"Carriles","placeholder":"1, 2, 3..."},"layer":{"label":"Capa","placeholder":"0"},"leaf_cycle":{"label":"Ciclu de fueyes","options":{"deciduous":"Caducu","evergreen":"Perenne","mixed":"Mecíu","semi_deciduous":"Semi-caducu","semi_evergreen":"Semi-perenne"}},"leaf_type":{"label":"Tipu de fueya","options":{"broadleaved":"Fueya ancha","leafless":"Sin fueya","mixed":"Mecíu","needleleaved":"Fueya d'aguya"}},"leaf_type_singular":{"label":"Tipu de fueya"},"leisure":{"label":"Tipu"},"length":{"label":"Llonxitú (Metros)"},"level":{"label":"Nivel"},"lit":{"label":"Lluz"},"location":{"label":"Allugamientu"},"man_made":{"label":"Tipu"},"manhole":{"label":"Tipu"},"map_size":{"label":"Cobertoria"},"map_type":{"label":"Tipu"},"maxheight":{"label":"Altor máximu"},"maxspeed":{"label":"Velocidá máxima","placeholder":"40, 50, 60..."},"maxstay":{"label":"Tiempu máx."},"maxweight":{"label":"Pesu máximu"},"memorial":{"label":"Tipu"},"monitoring_multi":{"label":"Vixilancia"},"mtb/scale":{"label":"Dificultá pa bicis de monte","options":{"0":"0: Sólidu de grava/tierra apisonada, sin estorbos, curves amplies","1":"1: Superficie daqué suelto, pequeños estorbos, curves amplies","2":"2: Superficie suelto enforma, estorbos grandes, revueltes fáciles","3":"3: Superficie esbariosa, estorbos grandes, revueltes dures","4":"4: Superficie suelto o cantos, revueltes peligroses","5":"5: Dificultá máxima, lleres, argayos","6":"6: Non ciclable sacante pa los meyores ciclistes de monte"},"placeholder":"0, 1, 2, 3..."},"mtb/scale/imba":{"label":"Dificultá IMBA de la sienda","placeholder":"Fácil, mediana, difícil..."},"mtb/scale/uphill":{"label":"Dificultá de xuba pa bicis de monte","options":{"0":"0: Pend. media <10%, grava/tierra apisonada, sin estorbos","1":"1: Pend. media <15%, grava/tierra apisonada, pocos oxetos pequeños","2":"2: Pend. media <20%, superficie estable, roques/raíces como un puñu","3":"3: Pend. media <25%, superficie variable, roques/rames como un puñu","4":"4: Pend. media <30%, mal estáu, roques/rames grandes","5":"5: Pindio enforma, la bici de vezu tien d'emburriase o cargase"},"placeholder":"0, 1, 2, 3..."},"name":{"label":"Nome","placeholder":"Nome común (si lu tien)"},"natural":{"label":"Natural"},"network":{"label":"Rede"},"network_bicycle":{"options":{"icn":"Internacional","lcn":"Llocal","ncn":"Nacional","rcn":"Rexonal"},"placeholder":"Llocal, Rexonal, Nacional, Internacional"},"network_foot":{"options":{"iwn":"Internacional","lwn":"Llocal","nwn":"Nacional","rwn":"Rexonal"},"placeholder":"Llocal, Rexonal, Nacional, Internacional"},"network_horse":{"options":{"ihn":"Internacional","lhn":"Llocal","nhn":"Nacional","rhn":"Rexonal"},"placeholder":"Llocal, Rexonal, Nacional, Internacional"},"network_road":{"label":"Rede"},"note":{"label":"Nota"},"office":{"label":"Tipu"},"oneway":{"label":"Sentíu únicu","options":{"no":"Non","undefined":"Créyese que non","yes":"Si"}},"oneway_yes":{"options":{"no":"Non","undefined":"Créyese que si","yes":"Si"}},"opening_hours":{"label":"Horariu"},"operator":{"label":"Operador"},"outdoor_seating":{"label":"Terraza"},"par":{"label":"Par","placeholder":"3, 4, 5..."},"park_ride":{"label":"Aparcamientu con tresporte públicu"},"parking":{"label":"Tipu","options":{"carports":"Techaos","garage_boxes":"Cocheres","lane":"Llateral de carretera","multi-storey":"Multinivel","sheds":"Casetes","surface":"Superficie","underground":"Baxo tierra"}},"payment_multi":{"label":"Tipos de pagu"},"phases":{"label":"Fases","placeholder":"1, 2, 3..."},"phone":{"placeholder":"+31 42 123 4567"},"piste/difficulty":{"label":"Dificultá","placeholder":"Fácil, intermediu, avanzáu..."},"piste/grooming":{"label":"Mantenimientu","options":{"backcountry":"Fuera de pista","classic":"Clásica","classic+skating":"Clásica y patinaxe","mogul":"Bañeres","scooter":"Scooter/Moto de nieve","skating":"Patinaxe"}},"piste/type":{"label":"Tipu","options":{"downhill":"Descensu","hike":"Escursión","ice_skate":"Patinaxe sobre xelu","nordic":"Nórdica","playground":"Infantil","skitour":"Escursión d'esquí","sled":"Luge","sleigh":"Trinéu (de tracción animal)","snow_park":"Snowpark"}},"place":{"label":"Tipu"},"plant":{"label":"Planta"},"plant/output/electricity":{"placeholder":"500 MW, 1000 MW, 2000 MW..."},"population":{"label":"Población"},"power":{"label":"Tipu"},"power_supply":{"label":"Fonte d'enerxía"},"produce":{"label":"Productu"},"product":{"label":"Productos"},"railway":{"label":"Tipu"},"rating":{"label":"Potencia nominal"},"recycling_accepts":{"label":"Aceuta"},"ref":{"label":"Códigu de referencia"},"ref_aeroway_gate":{"label":"Númberu de puerta"},"ref_golf_hole":{"label":"Númberu de furacu","placeholder":"1-18"},"ref_highway_junction":{"label":"Númberu de salida"},"ref_platform":{"label":"Númberu d'andén"},"ref_road_number":{"label":"Númberu d'estrada"},"ref_route":{"label":"Númberu de ruta"},"ref_runway":{"label":"Númberu de pista","placeholder":"p. ex. 01L/19R"},"ref_stop_position":{"label":"Númberu de parada"},"ref_taxiway":{"label":"Númberu de cai de rodaxe","placeholder":"p. ex. A5"},"relation":{"label":"Tipu"},"religion":{"label":"Relixon"},"restriction":{"label":"Tipu"},"restrictions":{"label":"Torgues de xiru"},"rooms":{"label":"Cuartos"},"route":{"label":"Tipu"},"route_master":{"label":"Tipu"},"sac_scale":{"label":"Dificultá escursionista","options":{"alpine_hiking":"T4: Escursionismu alpín","demanding_alpine_hiking":"T5: Escursionismu alpín esixente","demanding_mountain_hiking":"T3: Escursionismu de monte esixente","difficult_alpine_hiking":"T6: Escursionismu alpín difícil","hiking":"T1: Escursionismu","mountain_hiking":"T2: Escursionismu de monte"},"placeholder":"Escursionismu de monte, escursionismu alpín"},"sanitary_dump_station":{"label":"Descarga d'agua puerco"},"seasonal":{"label":"Estacional"},"second_hand":{"label":"Vende usao","options":{"no":"Non","only":"Sólo","yes":"Si"},"placeholder":"Si, Non, Sólo"},"service":{"label":"Tipu"},"service/vehicle":{"label":"Servicios"},"service_rail":{"label":"Tipu de serviciu","options":{"crossover":"Aguya","siding":"Apartaderu","spur":"Ramal","yard":"Estación de clasificación"}},"service_times":{"label":"Hores de serviciu"},"shelter":{"label":"Refuxu"},"shelter_type":{"label":"Tipu"},"shop":{"label":"Tipu"},"site":{"label":"Tipu"},"smoking":{"label":"Fumadores","options":{"dedicated":"Dedicao a fumadores (p.ex. club de fumadores)","isolated":"N'árees de fumadores, aisllaes físicamente","no":"Prohibición total de fumar","outside":"Permitío fuera","separated":"N'árees de fumadores, non aisllaes físicamente","yes":"Permitío en cualquier llugar"},"placeholder":"Non, separao, si..."},"smoothness":{"label":"Uniformidá","options":{"bad":"Ruedes fuertes: bici de monte, coche, rickshaw","excellent":"Patinos delgaos: patinos en llinia, skateboard","good":"Ruedes delgaes: bici de carreres","horrible":"Too terrén: vehículos too terrén de trabayu","impassable":"Impasable / Non pa vehículos de ruedes","intermediate":"Ruedes: bici urbana, silla de ruedes, ","very_bad":"Bon altor: vehículos too terrén llixeros","very_horrible":"Too terrén especializáu: tractor, quad"},"placeholder":"Patinos, ruedes, too terrén"},"social_facility":{"label":"Tipu"},"social_facility_for":{"label":"Persones atendíes"},"source":{"label":"Fontes"},"sport":{"label":"Deportes"},"sport_ice":{"label":"Deportes"},"sport_racing_motor":{"label":"Deportes"},"sport_racing_nonmotor":{"label":"Deportes"},"stars":{"label":"Estrelles"},"start_date":{"label":"Data d'aniciu"},"step_count":{"label":"Númberu d'escaleres"},"stop":{"label":"Tipu de parada","options":{"all":"Toles víes","minor":"Carretera menor"}},"structure":{"label":"Estructura","options":{"bridge":"Ponte","cutting":"Trinchera","embankment":"Rellenu","ford":"Vau","tunnel":"Túnel"},"placeholder":"Desconocíu"},"structure_waterway":{"label":"Estructura","options":{"tunnel":"Túnel"},"placeholder":"Desconocíu"},"studio":{"label":"Tipu"},"substance":{"label":"Sustancia"},"substation":{"label":"Tipu"},"supervised":{"label":"Supervisáu"},"support":{"label":"Sofitu"},"surface":{"label":"Superficie"},"surveillance":{"label":"Clas de vixilancia"},"surveillance/type":{"label":"Tipu de vixilancia","options":{"ALPR":"Llector automáticu de matrícules","camera":"Cámara","guard":"Guardia"}},"surveillance/zone":{"label":"Zona de vixilancia"},"switch":{"label":"Tipu","options":{"earthing":"Toma de tierra","mechanical":"Mecánicu"}},"tactile_paving":{"label":"Baldosa táctil"},"takeaway":{"label":"Pa llevar","options":{"no":"Non","only":"Sólo pa llevar","yes":"Si"},"placeholder":"Si, non, sólo pa llevar..."},"toilets/disposal":{"label":"Llimpieza","options":{"bucket":"Calderu","chemical":"Químico","flush":"Cisterna"}},"toll":{"label":"Peaxe"},"tomb":{"label":"Tipu"},"tourism":{"label":"Tipu"},"tower/construction":{"label":"Construcción"},"tower/type":{"label":"Tipu"},"tracktype":{"label":"Tipu de caleya","options":{"grade2":"Mayormente sólidu: grava/piedra con daqué material dondo amestáu","grade3":"Mestura igualada de materiales sólidos y dondos","grade4":"Mayormente dondu: tierra/sable/yerba con daqué de material sólidu amestáu","grade5":"Dondu: tierra/sable/yerba"},"placeholder":"Sólidu, mayormente sólidu, dondu..."},"trade":{"label":"Tipu"},"traffic_calming":{"label":"Tipu"},"traffic_signals":{"label":"Tipu"},"trail_visibility":{"label":"Visibilidá del senderu","options":{"bad":"Malu: sin marques, camín dacuando invisible/inesistente","excellent":"Escelente: camín non ambiguu o marques per auquiera","good":"Bonu: marques visibles, dacuando hai que buscales","horrible":"Horrible: de vezu sin camín, necesita daqué conocencia d'orientacion","intermediate":"Intermediu: poques marques, camín visible casi siempre","no":"Non: sin camín, necesita una escelente conocencia d'orientación"},"placeholder":"Escelente, bonu, malu..."},"transformer":{"label":"Tipu"},"trees":{"label":"Árboles"},"tunnel":{"label":"Tipu","placeholder":"Predetermináu"},"visibility":{"label":"Visibilidá","options":{"area":"Más de 20m (65ft)","house":"Fasta 5m (16ft)","street":"De 5 a 20m (16 to 65ft)"}},"volcano/status":{"label":"Estau del volcán","options":{"active":"Activu","dormant":"Durmiente","extinct":"Estinguíu"}},"volcano/type":{"label":"Tipu de volcán","options":{"scoria":"Escoria","shield":"Escudu","stratovolcano":"Estratovolcán"}},"voltage":{"label":"Voltaxe"},"voltage/primary":{"label":"Voltaxe primariu"},"voltage/secondary":{"label":"Voltaxe secundariu"},"voltage/tertiary":{"label":"Voltaxe terciariu"},"wall":{"label":"Tipu"},"water":{"label":"Tipu"},"water_point":{"label":"Toma d'agua"},"waterway":{"label":"Tipu"},"website":{"label":"Sitiu web"},"wetland":{"label":"Tipu"},"wheelchair":{"label":"Accesu pa siella de ruedes"},"width":{"label":"Anchura (Metros)"},"wikipedia":{"label":"Wikipedia"}},"presets":{"address":{"name":"Direición","terms":"señes,allugamientu"},"advertising/billboard":{"name":"Tableru d'anuncios","terms":"anunciu,publicidá,cartelera"},"aerialway/cable_car":{"name":"Teleféricu","terms":"teleféricu"},"aerialway/chair_lift":{"name":"Telesiella","terms":"telesiella"},"aerialway/drag_lift":{"name":"Telesquí","terms":"remonte,arrastre"},"aerialway/magic_carpet":{"name":"Alfombra máxica","terms":"remonte de cinta rodante"},"aerialway/platter":{"name":"Telesquí de placa"},"aerialway/pylon":{"name":"Poste de tresporte per cable","terms":"poste,torre,sofitu"},"aerialway/rope_tow":{"name":"Cuerda de remolque"},"aeroway/aerodrome":{"name":"Aeropuertu","terms":"aeródromu,aeroclub,aerotaxi,aereotresporte,campu d'aviación"},"aeroway/gate":{"name":"Puerta de terminal"},"aeroway/hangar":{"name":"Hangar"},"aeroway/helipad":{"name":"Helipuertu","terms":"helitaxi"},"aeroway/runway":{"name":"Pista"},"aeroway/taxiway":{"name":"Cai de rodaxe"},"aeroway/terminal":{"name":"Terminal d'aeropuertu"},"amenity":{"name":"Infraestructures"},"amenity/animal_boarding":{"name":"Instalación d'embarque d'animales"},"amenity/animal_breeding":{"name":"Instalación d'alimentación d'animales"},"amenity/animal_shelter":{"name":"Refuxu d'animales","terms":"animales,mascotes,perrera,adopción"},"amenity/arts_centre":{"name":"Centru d'arte","terms":"arte,pintura,escultura,plástica,ilustración"},"amenity/atm":{"name":"Caxeru automáticu","terms":"caxeru"},"amenity/bank":{"name":"Bancu","terms":"caxa,aforros"},"amenity/bar":{"name":"Bar","terms":"chigre,tasca"},"amenity/bbq":{"name":"Barbacoa/Asador","terms":"llar,fueu,cocina"},"amenity/bench":{"name":"Asientu","terms":"asientu"},"amenity/bicycle_parking":{"name":"Aparcaderu de bicicletes"},"amenity/bicycle_rental":{"name":"Alquiler de bicicletes"},"amenity/bicycle_repair_station":{"name":"Caballete pa reparar bicicletes"},"amenity/boat_rental":{"name":"Alquiler de barcos","terms":"alquiler de veleros,alquiler de lanches"},"amenity/bureau_de_change":{"name":"Cambiu de moneda","terms":"divisa,cambiu"},"amenity/bus_station":{"name":"Estación d'autobuses / Terminal"},"amenity/cafe":{"name":"Café","terms":"cafetería"},"amenity/car_rental":{"name":"Alquiler d'automóviles"},"amenity/car_wash":{"name":"Llaváu de coches"},"amenity/casino":{"name":"Casino"},"amenity/charging_station":{"name":"Estación de recarga"},"amenity/childcare":{"name":"Preescolar/Guardería","terms":"educación infantil,escuela infantil"},"amenity/cinema":{"name":"Cine","terms":"cinematógrafu,multicine"},"amenity/clinic":{"name":"Clínica","terms":"urxencies,hospital"},"amenity/clock":{"name":"Reló"},"amenity/college":{"name":"Terrén de colexu universitariu"},"amenity/community_centre":{"name":"Centru comunitariu","terms":"centru social,atenéu"},"amenity/compressed_air":{"name":"Aire comprimíu","terms":"infláu,neumáticos"},"amenity/courthouse":{"name":"Xulgáu","terms":"tribunal,audiencia,sala"},"amenity/crematorium":{"name":"Crematoriu"},"amenity/dentist":{"name":"Dentista","terms":"estomatólogu,clínica dental"},"amenity/doctors":{"name":"Doctor","terms":"médicu,especialista"},"amenity/dojo":{"name":"Dojo / Academia d'artes marciales","terms":"ximnasiu"},"amenity/drinking_water":{"name":"Agua potable","terms":"fonte,bebederu"},"amenity/driving_school":{"name":"Autoescuela","terms":"carné,permisu,llicencia,conducir,conducción,escuela"},"amenity/embassy":{"name":"Embaxada"},"amenity/fast_food":{"name":"Comida rápida","terms":"comida rápida,comida basoria"},"amenity/fire_station":{"name":"Parque de bomberos","terms":"parque de bomberos,bomberos,centru d'emerxencies"},"amenity/fountain":{"name":"Fonte d'adornu"},"amenity/fuel":{"name":"Gasolinera","terms":"combustible,gas,estación de serviciu"},"amenity/grave_yard":{"name":"Enterramientos"},"amenity/grit_bin":{"name":"Caxón de sal"},"amenity/hospital":{"name":"Antoxana d'hospital","terms":"zona hospitalaria,terrenu d'hospital"},"amenity/hunting_stand":{"name":"Puestu de caza"},"amenity/ice_cream":{"name":"Xeladería"},"amenity/library":{"name":"Biblioteca","terms":"llibros,centru de llectura"},"amenity/marketplace":{"name":"Mercáu"},"amenity/motorcycle_parking":{"name":"Aparcaderu de motos"},"amenity/music_school":{"name":"Academia de música","terms":"conservatoriu,escuela de música"},"amenity/nightclub":{"name":"Discoteca","terms":"disco,discobar,baille"},"amenity/parking_space":{"name":"Espaciu d'aparcamientu"},"amenity/place_of_worship":{"name":"Llugar de cultu","terms":"cultu,templu"},"amenity/place_of_worship/buddhist":{"name":"Templu budista","terms":"pagoda"},"amenity/place_of_worship/hindu":{"name":"Templu hindú"},"amenity/place_of_worship/shinto":{"name":"Capiella sintoísta"},"amenity/place_of_worship/sikh":{"name":"Templu sikh","terms":"templu sij"},"amenity/place_of_worship/taoist":{"name":"Templu taoísta","terms":"tao"},"amenity/planetarium":{"name":"Planetariu"},"amenity/police":{"name":"Policía","terms":"policía,comisaría,cuartel,guardia civil"},"amenity/post_office":{"name":"Oficina de correos","terms":"oficina de correos,carta,paquete,postal"},"amenity/prison":{"name":"Terrén de cárcel"},"amenity/pub":{"name":"Pub","terms":"pub,chigre"},"amenity/public_bath":{"name":"Baños públicos"},"amenity/public_bookcase":{"name":"Biblioteca llibre"},"amenity/ranger_station":{"name":"Guardes forestales","terms":"guardabosques,seprona"},"amenity/recycling_centre":{"name":"Centru de reciclax"},"amenity/restaurant":{"name":"Restaurante","terms":"chigre,llagar"},"amenity/sanitary_dump_station":{"name":"Vertíu de depósitos d'autocaravanes","terms":"depósitu caravanes,saneamientru caravanes"},"amenity/school":{"name":"Antoxana d'escuela","terms":"terrén d'escuela,zona escolar"},"amenity/shelter":{"name":"Abellugu"},"amenity/shower":{"name":"Ducha"},"amenity/social_facility":{"name":"Serviciu social","terms":"servicios sociales"},"amenity/social_facility/food_bank":{"name":"Bancu d'alimentos"},"amenity/social_facility/group_home":{"name":"Albergue pa mayores","terms":"asilu,residencia d'ancianos"},"amenity/social_facility/homeless_shelter":{"name":"Albergue de probes"},"amenity/studio":{"name":"Estudiu","terms":"música,radio,televisión"},"amenity/taxi":{"name":"Parada de taxis"},"amenity/telephone":{"name":"Teléfonu","terms":"cabina"},"amenity/theatre":{"name":"Teatru","terms":"comedia,corral"},"amenity/townhall":{"name":"Edificiu municipal","terms":"casa del conceyu,ayuntamientu"},"amenity/university":{"name":"Campus universitariu","terms":"terrén universitariu"},"amenity/vending_machine":{"name":"Máquina de venta automática"},"amenity/vending_machine/cigarettes":{"name":"Máquina de venta de tabacu"},"amenity/vending_machine/condoms":{"name":"Máquina de venta de preservativos"},"amenity/vending_machine/drinks":{"name":"Máquina de venta de bébora","terms":"máquina,refrescos,agua,café,te,automática"},"amenity/vending_machine/feminine_hygiene":{"name":"Máquina de venta d'hixénicos femeninos","terms":"máquina,compresa,tampón"},"amenity/vending_machine/newspapers":{"name":"Máquina de venta de periódicos","terms":"máquina,automática,periódicos.prensa,revistes"},"amenity/vending_machine/parking_tickets":{"name":"Máquina de pagu d'aparcamientu","terms":"máquina,automática,aparcamientu,pagu"},"amenity/vending_machine/public_transport_tickets":{"name":"Máquina de venta de billetes de tresporte","terms":"máquina,automática,billete,tren,autobús,recarga"},"amenity/vending_machine/sweets":{"name":"Máquina de venta de llambionaes"},"amenity/veterinary":{"name":"Veterinariu","terms":"clínica veterinaria"},"amenity/waste/dog_excrement":{"name":"Papelera pa escrementos de perros","terms":"contenedor,escrementos,perros,bolses"},"amenity/waste_basket":{"name":"Papelera","terms":"papelera,basoria"},"amenity/waste_disposal":{"name":"Contenedor de basoria"},"amenity/waste_transfer_station":{"name":"Estación de tresferencia de basoria"},"amenity/water_point":{"name":"Agua potable pa caravanes"},"amenity/watering_place":{"name":"Bebederu p'animales","terms":"bebederu,agua"},"area":{"name":"Área"},"attraction/big_wheel":{"name":"Noria","terms":"rueda,atracciones"},"attraction/carousel":{"name":"Caballinos","terms":"carrusel,atracciones,feria"},"attraction/roller_coaster":{"name":"Montaña rusa","terms":"rusa,atracciones,feria"},"barrier":{"name":"Barrera"},"barrier/block":{"name":"Bloque"},"barrier/bollard":{"name":"Bolardu"},"barrier/border_control":{"name":"Aduana","terms":"pasu de frontera,pasaporte"},"barrier/cattle_grid":{"name":"Rexa pa ganáu"},"barrier/city_wall":{"name":"Muralla de ciudá"},"barrier/cycle_barrier":{"name":"Barrera pa bicicletes"},"barrier/ditch":{"name":"Trinchera"},"barrier/entrance":{"name":"Entrada"},"barrier/fence":{"name":"Valla"},"barrier/gate":{"name":"Puerta"},"barrier/hedge":{"name":"Sebe"},"barrier/kissing_gate":{"name":"Puerta ganadera"},"barrier/lift_gate":{"name":"Barrera"},"barrier/retaining_wall":{"name":"Muru de contención"},"barrier/stile":{"name":"Pasera de reblagu"},"barrier/toll_booth":{"name":"Cabina de peaxe"},"barrier/wall":{"name":"Muria"},"boundary/administrative":{"name":"Llende alministrativa"},"building":{"name":"Edificiu"},"building/barn":{"name":"Graneru"},"building/bunker":{"name":"Bunker"},"building/cabin":{"name":"Cabaña"},"building/cathedral":{"name":"Edificiu de catedral"},"building/chapel":{"name":"Edificiu de capiella"},"building/church":{"name":"Edificiu d'ilesia"},"building/college":{"name":"Edificiu de colexu universitariu"},"building/commercial":{"name":"Edificiu comercial"},"building/construction":{"name":"Edificiu en construcción","terms":"obra,arreglu"},"building/detached":{"name":"Casa aisllada"},"building/dormitory":{"name":"Residencia"},"building/entrance":{"name":"Entrada/Salida"},"building/garage":{"name":"Garaxe","terms":"cochera,aparcaderu"},"building/garages":{"name":"Garaxes","terms":"cocheres"},"building/greenhouse":{"name":"Ivernaderu","terms":"cultivu,plásticu"},"building/hospital":{"name":"Edificiu d'hospital"},"building/hotel":{"name":"Edificiu d'hotel"},"building/house":{"name":"Casa"},"building/hut":{"name":"Cabaña"},"building/industrial":{"name":"Edificiu industrial","terms":"nave,fábrica,taller"},"building/public":{"name":"Edificiu públicu"},"building/residential":{"name":"Edificiu residencial","terms":"vivienda,pisos"},"building/retail":{"name":"Edificiu comercial","terms":"tiendes,gran superficie"},"building/roof":{"name":"Cubierta","terms":"techáu,tenada"},"building/school":{"name":"Edificiu escolar","terms":"escueles"},"building/semidetached_house":{"name":"Casa semi-aisllada"},"building/shed":{"name":"Caseta de xardín"},"building/stable":{"name":"Establu","terms":"corte,cuadra"},"building/static_caravan":{"name":"Casa portátil"},"building/terrace":{"name":"Filera de cases"},"building/university":{"name":"Edificiu universitariu"},"building/warehouse":{"name":"Almacén","terms":"nave d'almacenamientu"},"craft":{"name":"Oficiu","terms":"profesional,negociu"},"craft/basket_maker":{"name":"Cesteru","terms":"goxeru,paxos,macones"},"craft/beekeeper":{"name":"Apicultor","terms":"abeyes,miel"},"craft/blacksmith":{"name":"Ferrería","terms":"ferreru,ferrador"},"craft/boatbuilder":{"name":"Carpinteru de ribera","terms":"astilleru"},"craft/bookbinder":{"name":"Encuadernador","terms":"encuadernación"},"craft/carpenter":{"name":"Carpintería","terms":"carpinteru,ebanista"},"craft/carpet_layer":{"name":"Instalador d'alfombres"},"craft/clockmaker":{"name":"Reloxería","terms":"reloxeru"},"craft/distillery":{"name":"Destilería"},"craft/dressmaker":{"name":"Modista","terms":"xastre,modista"},"craft/electrician":{"name":"Electricista"},"craft/electronics_repair":{"name":"Arreglos electrónicos"},"craft/gardener":{"name":"Xardineru"},"craft/glaziery":{"name":"Cristalería"},"craft/insulator":{"name":"Aislamientos"},"craft/key_cutter":{"name":"Llaves","terms":"duplicáu de llaves"},"craft/locksmith":{"name":"Cerraxería"},"craft/painter":{"name":"Pintor"},"craft/photographer":{"name":"Fotografía","terms":"fotógrafu,reveláu"},"craft/photographic_laboratory":{"name":"Llaboratoriu fotográficu","terms":"fotografía,reveláu,ampliaciones"},"craft/plasterer":{"name":"Revocador"},"craft/plumber":{"name":"Fontaneru"},"craft/rigger":{"name":"Montaxes"},"craft/roofer":{"name":"Reteyador","terms":"reparación de teyaos,cubiertes"},"craft/saddler":{"name":"Guarnicioneru","terms":"curtidor"},"craft/sailmaker":{"name":"Fabricante de veles"},"craft/sawmill":{"name":"Serraderu"},"craft/scaffolder":{"name":"Montaxe d'andamios"},"craft/sculptor":{"name":"Escultor"},"craft/shoemaker":{"name":"Zapateru"},"craft/stonemason":{"name":"Canteru"},"craft/tailor":{"name":"Sastre"},"craft/tiler":{"name":"Azulexista"},"craft/tinsmith":{"name":"Caldereru"},"craft/upholsterer":{"name":"Tapicería"},"craft/watchmaker":{"name":"Reloxeru"},"craft/window_construction":{"name":"Construcción de ventanes"},"craft/winery":{"name":"Bodega","terms":"viña"},"embankment":{"name":"Terremplén"},"emergency/ambulance_station":{"name":"Parque d'ambulancies","terms":"centru d'emerxencies"},"emergency/defibrillator":{"name":"Desfibrilador","terms":"emerxencia,corazón,ataque cardiacu"},"emergency/designated":{"name":"Accesu d'emerxencia designáu"},"emergency/destination":{"name":"Accesu d'emerxencia a destín"},"emergency/fire_hydrant":{"name":"Toma de mangueres","terms":"apagafueos,fueu,boca de riegu"},"emergency/no":{"name":"Accesu d'emerxencia Non"},"emergency/official":{"name":"Accesu d'emerxencia oficial"},"emergency/phone":{"name":"Teléfonu d'emerxencia","terms":"s.o.s.,teléfonu d'ayuda,teléfonu de socorru"},"emergency/private":{"name":"Accesu d'emerxencia priváu"},"emergency/yes":{"name":"Accesu d'emerxencia Si"},"ford":{"name":"Vau"},"golf/bunker":{"name":"Trampa de sable","terms":"bunker (golf),areneru"},"golf/fairway":{"name":"Cai de golf"},"golf/green":{"name":"Green de golf","terms":"putting green"},"golf/hole":{"name":"Furacu de golf"},"golf/rough":{"name":"Rough de golf"},"golf/tee":{"name":"Salida de percorríu"},"healthcare":{"name":"Instalación sanitaria"},"healthcare/alternative":{"name":"Medicina alternativa"},"healthcare/alternative/chiropractic":{"name":"Quiroprácticu"},"healthcare/audiologist":{"name":"Audiólogu"},"healthcare/birthing_center":{"name":"Maternidá"},"healthcare/blood_donation":{"name":"Centru de donantes de sangre"},"healthcare/hospice":{"name":"Hospiciu"},"healthcare/midwife":{"name":"Matrona"},"healthcare/occupational_therapist":{"name":"Terapia ocupacional"},"healthcare/optometrist":{"name":"Ópticu"},"healthcare/physiotherapist":{"name":"Fisioterapeuta"},"healthcare/podiatrist":{"name":"Pediatra"},"healthcare/psychotherapist":{"name":"Sicoterapeuta"},"highway/bridleway":{"name":"Camín de caballeríes","terms":"camín de ferradura"},"highway/corridor":{"name":"Pasiellu d'edificiu"},"highway/cycleway":{"name":"Camín ciclista"},"highway/elevator":{"name":"Ascensor"},"highway/footway":{"name":"Camín peatonal","terms":"camín,senderu,sienda"},"highway/give_way":{"name":"Señal de dexar pasu"},"highway/living_street":{"name":"Rúa residencial","terms":"semipeatonal,zona 30"},"highway/mini_roundabout":{"name":"Mini-rotonda"},"highway/motorway":{"name":"Autoestrada"},"highway/motorway_junction":{"name":"Entrada/salida d'autoestrada"},"highway/motorway_link":{"name":"Enllaz d'autoestrada","terms":"salida,accesu,enllaz,autoestrada"},"highway/path":{"name":"Camín"},"highway/pedestrian_area":{"name":"Área peatonal"},"highway/pedestrian_line":{"name":"Rúa peatonal"},"highway/primary":{"name":"Estrada autonómica"},"highway/primary_link":{"name":"Enllaz de carretera autonómica I","terms":"salida,accesu,enllaz,autonómica primaria,autonómica naranxa"},"highway/residential":{"name":"Rúa urbana"},"highway/rest_area":{"name":"Área de descansu"},"highway/road":{"name":"Estrada desconocida"},"highway/secondary":{"name":"Estrada secundaria"},"highway/secondary_link":{"name":"Enllaz d'estrada autonómica II","terms":"salida,accesu,enllaz,autonómica secundaria,autonómica verde"},"highway/service":{"name":"Vía de serviciu"},"highway/service/alley":{"name":"Pasaxe"},"highway/service/drive-through":{"name":"Carril d'autoventa"},"highway/service/emergency_access":{"name":"Accesu d'emerxencia"},"highway/service/parking_aisle":{"name":"Pasiellu d'aparcamientu"},"highway/services":{"name":"Área de serviciu"},"highway/speed_camera":{"name":"Cámara de radar"},"highway/steps":{"name":"Escaleres","terms":"escalinata,escalones"},"highway/stop":{"name":"Señal de stop","terms":"stop,alto,parada"},"highway/street_lamp":{"name":"Farola"},"highway/tertiary":{"name":"Estrada terciaria"},"highway/tertiary_link":{"name":"Enllaz d'estrada autonómica III","terms":"salida,accesu,enllaz,autonómica terciaria,autonómica mariella"},"highway/traffic_mirror":{"name":"Espeyu pal tráficu"},"highway/traffic_signals":{"name":"Semáforu","terms":"semáforu,pasu peatonal"},"highway/trunk":{"name":"Estrada nacional","terms":"rede estatal,nacional,n"},"highway/trunk_link":{"name":"Enllaz d'estrada nacional","terms":"salida,accesu,enllaz,nacional"},"highway/turning_circle":{"name":"Círculu de xiru","terms":"vuelta,ensin salida"},"highway/turning_loop":{"name":"Círculu de xiru (con islla)"},"highway/unclassified":{"name":"Estrada menor/ensin clasificar"},"historic":{"name":"Sitiu históricu"},"historic/archaeological_site":{"name":"Xacimientu arqueolóxicu"},"historic/boundary_stone":{"name":"Finxu"},"historic/castle":{"name":"Castiellu"},"historic/memorial":{"name":"Obra d'alcordanza"},"historic/monument":{"name":"Monumentu"},"historic/ruins":{"name":"Ruines"},"historic/wayside_cross":{"name":"Cruceru","terms":"cruz,cruce"},"historic/wayside_shrine":{"name":"Capiella de camín"},"junction":{"name":"Crucie"},"landuse/aquaculture":{"name":"Acuacultura"},"landuse/basin":{"name":"Acumulación d'agües"},"landuse/brownfield":{"name":"Solar"},"landuse/cemetery":{"name":"Cementeriu"},"landuse/churchyard":{"name":"Antoxana d'ilesia"},"landuse/commercial":{"name":"Área comercial"},"landuse/farm":{"name":"Tierra de llabor"},"landuse/farmland":{"name":"Tierra de llabor"},"landuse/farmyard":{"name":"Quintana"},"landuse/grass":{"name":"Yerba"},"landuse/greenfield":{"name":"Terrén urbanizable"},"landuse/harbour":{"name":"Gran puertu"},"landuse/industrial":{"name":"Área industrial"},"landuse/industrial/scrap_yard":{"name":"Chatarrería"},"landuse/industrial/slaughterhouse":{"name":"Mataderu"},"landuse/landfill":{"name":"Escombrera"},"landuse/meadow":{"name":"Prau"},"landuse/military":{"name":"Área militar"},"landuse/military/airfield":{"name":"Aeródromu militar"},"landuse/military/barracks":{"name":"Cuartel"},"landuse/military/danger_area":{"name":"Área de peligru"},"landuse/military/range":{"name":"Campu de tiru"},"landuse/orchard":{"name":"Plantación"},"landuse/plant_nursery":{"name":"Viveru"},"landuse/quarry":{"name":"Cantera"},"landuse/residential":{"name":"Área de viviendes"},"landuse/retail":{"name":"Área comercial"},"landuse/vineyard":{"name":"Viñéu"},"leisure/adult_gaming_centre":{"name":"Centru de xuegos p'adultos"},"leisure/bird_hide":{"name":"Observatoriu d'aves"},"leisure/bowling_alley":{"name":"Bolera americana"},"leisure/common":{"name":"Terrén comunitariu"},"leisure/dance":{"name":"Salón de baille"},"leisure/dog_park":{"name":"Parque pa perros"},"leisure/fitness_centre":{"name":"Ximnasiu / Centru de fitness"},"leisure/fitness_centre/yoga":{"name":"Centru de yoga"},"leisure/fitness_station":{"name":"Centru de fitness albentestate"},"leisure/garden":{"name":"Xardín"},"leisure/golf_course":{"name":"Campu de golf"},"leisure/ice_rink":{"name":"Pista de xelu"},"leisure/marina":{"name":"Puertu deportivu"},"leisure/miniature_golf":{"name":"Minigolf"},"leisure/nature_reserve":{"name":"Reserva natural","terms":"parque de la biosfera,parque natural"},"leisure/park":{"name":"Parque","terms":"parque,campu,xardín"},"leisure/picnic_table":{"name":"Mesa de merenderu"},"leisure/pitch":{"name":"Campu deportivu"},"leisure/pitch/american_football":{"name":"Campu de fútbol americanu"},"leisure/pitch/basketball":{"name":"Pista de baloncestu"},"leisure/pitch/beachvolleyball":{"name":"Campu de voleibol playa"},"leisure/pitch/boules":{"name":"Pista de petanca"},"leisure/pitch/bowls":{"name":"Bolera"},"leisure/pitch/cricket":{"name":"Campu de cricket"},"leisure/pitch/rugby_league":{"name":"Campu de rugby a 13"},"leisure/pitch/rugby_union":{"name":"Campu de rugby a 15"},"leisure/pitch/skateboard":{"name":"Patinódromu","terms":"patín acrobáticu"},"leisure/pitch/soccer":{"name":"Campu de fútbol"},"leisure/pitch/table_tennis":{"name":"Mesa de pimpón"},"leisure/pitch/tennis":{"name":"Pista de tenis"},"leisure/pitch/volleyball":{"name":"Campu de voleibol"},"leisure/playground":{"name":"Xuegos infantiles"},"leisure/sauna":{"name":"Sauna"},"leisure/slipway":{"name":"Rampla de botadura"},"leisure/sports_centre":{"name":"Centru / Complexu deportivu"},"leisure/sports_centre/swimming":{"name":"Centru de natación"},"leisure/stadium":{"name":"Estadiu"},"leisure/swimming_pool":{"name":"Piscina"},"leisure/track":{"name":"Circuitu (Deportes sin motor)"},"leisure/water_park":{"name":"Parque acuáticu"},"line":{"name":"Llinia"},"man_made/adit":{"name":"Bocamina","terms":"pozu"},"man_made/breakwater":{"name":"Dique marín"},"man_made/chimney":{"name":"Chimenea"},"man_made/crane":{"name":"Grúa"},"man_made/cutline":{"name":"Cortafuéu"},"man_made/embankment":{"name":"Terremplén"},"man_made/flagpole":{"name":"Mástil","terms":"palu,bandera"},"man_made/gasometer":{"name":"Gasómetru"},"man_made/lighthouse":{"name":"Faru"},"man_made/mast":{"name":"Mástil"},"man_made/monitoring_station":{"name":"Estación de control"},"man_made/petroleum_well":{"name":"Pozu petrolíferu"},"man_made/pier":{"name":"Embarcaderu"},"man_made/pipeline":{"name":"Tubería"},"man_made/pumping_station":{"name":"Estación de bombéu"},"man_made/silo":{"name":"Silu"},"man_made/storage_tank":{"name":"Tanque d'almacenamientu"},"man_made/surveillance":{"name":"Vixilancia"},"man_made/survey_point":{"name":"Vértiz xeodésicu"},"man_made/tower":{"name":"Torre"},"man_made/wastewater_plant":{"name":"Planta depuradora","terms":"depuradora,tratamientu,agua,pretratamientu"},"man_made/water_tower":{"name":"Torre de depósitu"},"man_made/water_well":{"name":"Pozu d'agua"},"man_made/water_works":{"name":"Captación d'agua"},"man_made/watermill":{"name":"Molín d'agua"},"man_made/windmill":{"name":"Molín de vientu"},"man_made/works":{"name":"Fábrica"},"natural/bare_rock":{"name":"Roca"},"natural/bay":{"name":"Bahía"},"natural/beach":{"name":"Playa"},"natural/cave_entrance":{"name":"Entrada de cueva"},"natural/cliff":{"name":"Cantil"},"natural/coastline":{"name":"Llinia costera","terms":"costa,ribera"},"natural/fell":{"name":"Granda"},"natural/glacier":{"name":"Glaciar"},"natural/grassland":{"name":"Pradera"},"natural/heath":{"name":"Escobal"},"natural/peak":{"name":"Picu","terms":"picu,monte,vértiz"},"natural/saddle":{"name":"Colláu"},"natural/sand":{"name":"Sable"},"natural/scree":{"name":"Llera"},"natural/scrub":{"name":"Fuérfagu"},"natural/spring":{"name":"Fonte natural"},"natural/tree":{"name":"Árbol"},"natural/volcano":{"name":"Volcan"},"natural/water":{"name":"Agua"},"natural/water/lake":{"name":"Llagu"},"natural/water/pond":{"name":"Estanque"},"natural/water/reservoir":{"name":"Embalse"},"natural/wetland":{"name":"Llamorgal"},"noexit/yes":{"name":"Ensin salida"},"office":{"name":"Oficina","terms":"despachu"},"office/accountant":{"name":"Contable"},"office/administrative":{"name":"Oficina alministrativa"},"office/advertising_agency":{"name":"Axencia de publicidá"},"office/association":{"name":"Oficina d'ONG"},"office/educational_institution":{"name":"Institución educativa"},"office/employment_agency":{"name":"Axencia d'emplegu","terms":"inem,ett,serviciu d'emplegu"},"office/energy_supplier":{"name":"Oficina de distribuidora d'enerxía"},"office/estate_agent":{"name":"Axencia inmobiliaria"},"office/financial":{"name":"Oficina financiera","terms":"financiera,inversión,créditu"},"office/foundation":{"name":"Oficina de fundación"},"office/government":{"name":"Oficina gubernamental","terms":"gobiernu,ministeriu,delegación"},"office/insurance":{"name":"Oficina de seguros","terms":"aseguradora,seguros,riesgu"},"office/lawyer":{"name":"Despachu d'abogaos"},"office/newspaper":{"name":"Redacción de periódicu"},"office/ngo":{"name":"Oficina d'ONG","terms":"organización nun gubernamental"},"office/notary":{"name":"Notaría"},"office/physician":{"name":"Médicu"},"office/research":{"name":"Despachu d'investigación"},"office/telecommunication":{"name":"Oficina de telecomunicaciones"},"office/travel_agent":{"name":"Axencia de viaxes"},"place":{"name":"Llugar"},"place/city":{"name":"Ciudá"},"place/farm":{"name":"Granxa"},"place/hamlet":{"name":"Aldea"},"place/island":{"name":"Islla","terms":"islla,castru"},"place/isolated_dwelling":{"name":"Vivienda aisllada"},"place/locality":{"name":"Llugar despobláu"},"place/neighbourhood":{"name":"Barriu"},"place/square":{"name":"Plaza"},"place/town":{"name":"Villa"},"place/village":{"name":"Pueblu"},"point":{"name":"Puntu"},"power/generator":{"name":"Xenerador d'enerxía","terms":"central eléctrica"},"power/line":{"name":"Llinia eléctrica"},"power/minor_line":{"name":"Llinia eléctrica secundaria","terms":"electricidá,baxa tensión"},"power/pole":{"name":"Poste eléctricu"},"power/substation":{"name":"Subestación"},"power/tower":{"name":"Torre d'alta tensión"},"power/transformer":{"name":"Tresformador"},"public_transport/station":{"name":"Estación d'intercambiu"},"public_transport/station_bus":{"name":"Estación / Terminal d'autobuses"},"public_transport/station_light_rail":{"name":"Estación de tren llixeru"},"public_transport/station_monorail":{"name":"Estación de monocarril"},"public_transport/station_subway":{"name":"Estación de metro"},"public_transport/station_train":{"name":"Estación de tren"},"railway/abandoned":{"name":"Ferrocarril abandonáu"},"railway/buffer_stop":{"name":"Topera"},"railway/derail":{"name":"Descarrilador de ferrocarril"},"railway/disused":{"name":"Ferrocarril ensin usu"},"railway/signal":{"name":"Señal de ferrocarril"},"railway/station":{"name":"Estación de tren"},"railway/subway_entrance":{"name":"Boca del metro"},"relation":{"name":"Rellación"},"route/ferry":{"name":"Ruta de ferry"},"shop":{"name":"Tienda"},"shop/alcohol":{"name":"Llicorería","terms":"bodega"},"shop/art":{"name":"Galería d'arte","terms":"marchante d'arte"},"shop/bakery":{"name":"Panadería"},"shop/beauty":{"name":"Cosmética"},"shop/beverages":{"name":"Venta de bebíes"},"shop/bicycle":{"name":"Tienda de ciclismu"},"shop/bookmaker":{"name":"Encuadernador"},"shop/boutique":{"name":"Boutique"},"shop/butcher":{"name":"Carnicería"},"shop/car":{"name":"Venta d'automóviles"},"shop/car_parts":{"name":"Repuestos d'automóviles"},"shop/car_repair":{"name":"Taller d'automóviles"},"shop/carpet":{"name":"Alfombres"},"shop/cheese":{"name":"Quesería"},"shop/chemist":{"name":"Droguería"},"shop/chocolate":{"name":"Chocolatería"},"shop/clothes":{"name":"Tienda de ropa"},"shop/coffee":{"name":"Venta de café"},"shop/computer":{"name":"Informática"},"shop/confectionery":{"name":"Venta de llambionaes"},"shop/convenience":{"name":"Tienda d'ultramarinos"},"shop/copyshop":{"name":"Copistería"},"shop/cosmetics":{"name":"Perfumería"},"shop/curtain":{"name":"Tienda de cortines"},"shop/dairy":{"name":"Llechería"},"shop/department_store":{"name":"Grandes almacenes"},"shop/doityourself":{"name":"Bricolage"},"shop/dry_cleaning":{"name":"Llimpieza en seco","terms":"tintorería,llavandería"},"shop/electronics":{"name":"Electrónica"},"shop/erotic":{"name":"Artículos eróticos","terms":"sex-shop"},"shop/fashion":{"name":"Tienda de moda"},"shop/florist":{"name":"Floristería","terms":"flores,florista,floristería"},"shop/frame":{"name":"Marcos"},"shop/funeral_directors":{"name":"Velatoriu","terms":"tanatoriu,funeraria"},"shop/furniture":{"name":"Mueblería"},"shop/garden_centre":{"name":"Xardinería"},"shop/gas":{"name":"Gas embotelláu"},"shop/gift":{"name":"Regalos"},"shop/greengrocer":{"name":"Frutería"},"shop/hairdresser":{"name":"Peluquería"},"shop/hardware":{"name":"Ferretería"},"shop/hearing_aids":{"name":"Audiólogu"},"shop/herbalist":{"name":"Herbolariu"},"shop/hifi":{"name":"Equipos de música"},"shop/houseware":{"name":"Menaxe del llar"},"shop/interior_decoration":{"name":"Decoración d'interiores"},"shop/kiosk":{"name":"Quioscu"},"shop/kitchen":{"name":"Diseñu de cocines"},"shop/laundry":{"name":"Llavandería"},"shop/leather":{"name":"Artículos de piel"},"shop/locksmith":{"name":"Cerraxería","terms":"cerradura,llaves"},"shop/lottery":{"name":"Loteríes","terms":"alministración de loteríes"},"shop/mall":{"name":"Centru comercial"},"shop/massage":{"name":"Masaxes"},"shop/medical_supply":{"name":"Tienda d'equipu médicu"},"shop/mobile_phone":{"name":"Telefonía móvil"},"shop/money_lender":{"name":"Prestamista","terms":"préstamos"},"shop/motorcycle":{"name":"Venta de motos"},"shop/music":{"name":"Tienda de música"},"shop/musical_instrument":{"name":"Instrumentos musicales","terms":"luthier"},"shop/nutrition_supplements":{"name":"Tienda de suplementos nutritivos"},"shop/optician":{"name":"Óptica","terms":"ópticu,optometrista"},"shop/outdoor":{"name":"Equipamientu d'aire llibre"},"shop/paint":{"name":"Tienda de pintures","terms":"barnices,droguería"},"shop/pastry":{"name":"Pastelería"},"shop/perfumery":{"name":"Perfumería"},"shop/pet":{"name":"Tienda de mascotes","terms":"paxarería"},"shop/photo":{"name":"Fotografía","terms":"fotógrafu,reveláu,material fotográficu"},"shop/pyrotechnics":{"name":"Venta de pirotecnia"},"shop/radiotechnics":{"name":"Componentes electrónicos"},"shop/religion":{"name":"Artículos relixosos"},"shop/scuba_diving":{"name":"Tienda de merguyu"},"shop/seafood":{"name":"Mariscos","terms":"pescadería"},"shop/shoes":{"name":"Zapatería"},"shop/sports":{"name":"Material deportivu"},"shop/stationery":{"name":"Papelería"},"shop/storage_rental":{"name":"Alquiler d'almacenes"},"shop/supermarket":{"name":"Supermercáu","terms":"supermercáu,super"},"shop/tailor":{"name":"Sastrería","terms":"sastre"},"shop/tattoo":{"name":"Tatuaxes","terms":"tatuador"},"shop/tea":{"name":"Tienda de tes","terms":"te,ferviatos"},"shop/ticket":{"name":"Venta d'entraes","terms":"taquilla,venta anticipada"},"shop/tiles":{"name":"Tienda d'azulexos"},"shop/tobacco":{"name":"Estancu","terms":"tabacos,fumador"},"shop/toys":{"name":"Xuguetería","terms":"xuguetes"},"shop/travel_agency":{"name":"Axencia de viaxes","terms":"viaxes"},"shop/tyres":{"name":"Neumáticos","terms":"ruedes,neumáticos"},"shop/vacant":{"name":"Tienda balera"},"shop/vacuum_cleaner":{"name":"Tienda d'aspiradores"},"shop/video":{"name":"Tienda de videos"},"shop/video_games":{"name":"Tienda de videuxuegos"},"shop/watches":{"name":"Reloxería"},"shop/water_sports":{"name":"Tienda de natación/deportes acuáticos"},"shop/weapons":{"name":"Armería"},"shop/window_blind":{"name":"Venta de persianes"},"shop/wine":{"name":"Bodega"},"tourism/aquarium":{"name":"Acuariu"},"tourism/artwork":{"name":"Obra d'arte"},"tourism/attraction":{"name":"Atracción turística"},"tourism/camp_site":{"name":"Campamentu"},"tourism/caravan_site":{"name":"Aparcaderu d'autocaravanes"},"tourism/gallery":{"name":"Galería d'arte"},"tourism/guest_house":{"name":"Pensión","terms":"pensión,agospiamientu,güespes"},"tourism/hostel":{"name":"Albergue"},"tourism/hotel":{"name":"Hotel"},"tourism/information":{"name":"Información"},"tourism/information/board":{"name":"Panel informativu"},"tourism/information/map":{"name":"Mapa"},"tourism/motel":{"name":"Motel"},"tourism/museum":{"name":"Muséu","terms":"muséu,esposición,galería"},"tourism/picnic_site":{"name":"Área recreativa"},"tourism/theme_park":{"name":"Parque temáticu"},"tourism/viewpoint":{"name":"Mirador"},"tourism/zoo":{"name":"Zoo"},"traffic_calming":{"name":"Calmu pal tráficu"},"traffic_calming/bump":{"name":"Llombu pa reducir velocidá"},"traffic_calming/chicane":{"name":"Chicane pal tráficu"},"traffic_calming/choker":{"name":"Estrechamientu de tráficu"},"traffic_calming/cushion":{"name":"Llombu pa reducir velocidá partíu"},"traffic_calming/dip":{"name":"Riegu"},"traffic_calming/hump":{"name":"Llombu anchu pa reducir velocidá"},"traffic_calming/island":{"name":"Refuxu de tráficu","terms":"islla de tráficu"},"traffic_calming/rumble_strip":{"name":"Bandes sonores"},"type/boundary":{"name":"Llende"},"type/boundary/administrative":{"name":"Llende alministrativa"},"type/multipolygon":{"name":"Multipolígonu"},"type/restriction":{"name":"Torga"},"type/restriction/no_left_turn":{"name":"Xiru a la izquierda torgáu"},"type/restriction/no_right_turn":{"name":"Xiru a la drecha torgáu"},"type/route":{"name":"Ruta"},"type/route/bus":{"name":"Ruta d'autobús"},"type/route/detour":{"name":"Ruta d'esviación"},"type/route/ferry":{"name":"Ruta de ferry"},"type/route/hiking":{"name":"Ruta escursionista","terms":"senderismu,escursionismu"},"type/route/light_rail":{"name":"Ruta de tren llixeru"},"type/route/pipeline":{"name":"Ruta de tubería","terms":"ruta de tubería"},"type/route/piste":{"name":"Pista/Ruta d'esquí"},"type/route/power":{"name":"Ruta d'enerxía","terms":"ruta de llinia d'enerxía"},"type/route/road":{"name":"Ruta per carretera","terms":"ruta de carretera"},"type/route/subway":{"name":"Ruta de metro"},"type/route/train":{"name":"Ruta de tren","terms":"ruta ferroviaria"},"type/route/tram":{"name":"Ruta de tranvía"},"type/route_master":{"name":"Ruta maestra"},"type/site":{"name":"Llugar","terms":"puntu,allugamientu"},"type/waterway":{"name":"Vía acuática"},"waterway/boatyard":{"name":"Astilleru","terms":"carpinteru de ribera,calafate"},"waterway/canal":{"name":"Canal"},"waterway/dam":{"name":"Banzáu"},"waterway/ditch":{"name":"Riega"},"waterway/dock":{"name":"Astilleru / Dique secu"},"waterway/drain":{"name":"Drenaxe"},"waterway/fuel":{"name":"Bomba de combustible marín","terms":"gasolinera de combustible marín"},"waterway/river":{"name":"Ríu","terms":"ríu,regatu"},"waterway/sanitary_dump_station":{"name":"Vaciáu de sentines","terms":"toma de saneamientu"},"waterway/stream":{"name":"Regueru","terms":"regatu,regueru"},"waterway/stream_intermittent":{"name":"Cursu intermitente"},"waterway/water_point":{"name":"Agua potable pa barcos"},"waterway/waterfall":{"name":"Tabayón","terms":"cascada,semeira"},"waterway/weir":{"name":"Ñora","terms":"ñora,presa,banzáu"}}}}}
\ No newline at end of file
+{"ast":{"presets":{"categories":{"category-barrier":{"name":"Elementos de barrera"},"category-building":{"name":"Elementos d'edificiu"},"category-golf":{"name":"Elementos de golf"},"category-landuse":{"name":"Elementos d'usu del terrén"},"category-natural":{"name":"Elementos naturales"},"category-path":{"name":"Caminos"},"category-restriction":{"name":"Elementos de torga"},"category-road_major":{"name":"Carreteres principales"},"category-road_minor":{"name":"Carreteres menores"},"category-road_service":{"name":"Carreteres de serviciu"},"category-route":{"name":"Elementos de ruta"}},"fields":{"access":{"label":"Accesu permitíu","options":{"designated":{"title":"Designáu"},"destination":{"title":"Destín"},"dismount":{"title":"Desmontáu"},"no":{"title":"Torgáu"},"permissive":{"title":"Permisivu"},"private":{"title":"Priváu"},"unknown":{"title":"Desconocíu"},"yes":{"title":"Permitíu"}},"placeholder":"Ensin especificar","types":{"access":"Too","bicycle":"Bicicletes","foot":"A pie","horse":"Caballos","motor_vehicle":"Vehículos de motor"}},"access_aisle":{"label":"Tipu"},"access_simple":{"label":"Accesu permitíu","options":{"no":"Dengún","permissive":"Permisivu","private":"Priváu","unknown":"Desconocíu"}},"addr/interpolation":{"label":"Tipu","options":{"all":"Too"}},"address":{"label":"Direición","placeholders":{"block_number":"Númberu de bloque","block_number!jp":"Bloque Núm.","city":"Ciudá","city!jp":"Ciudá/Villa/Pueblu/Barriu Especial de Tokio","city!vn":"Ciudá/Villa","conscriptionnumber":"123","country":"País","county":"Condáu","county!jp":"Distritu","district":"Distritu","district!vn":"Comarca/Villa/Distritu","floor":"Suelu","hamlet":"Aldea","housename":"Númberu de casa","housenumber":"123","housenumber!jp":"Edificiu Núm./Mazana Núm.","neighbourhood":"Vecinderu","place":"Llugar","postcode":"Códigu postal","province":"Provincia","province!jp":"Prefeutura","state":"Estáu","street":"Cai","subdistrict":"Subdistritu","suburb":"Barriu","town":"Villa","unit":"Unidá"}},"admin_level":{"label":"Nivel alministrativu"},"advertising":{"label":"Tipu"},"aerialway":{"label":"Tipu"},"aerialway/access":{"label":"Accesu","options":{"both":"Dambos","entry":"Entrada","exit":"Salida"}},"aerialway/bubble":{"label":"Cabina"},"aerialway/capacity":{"label":"Capacidá (por hora)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Duración (minutos)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Calefacción"},"aerialway/occupancy":{"label":"Ocupación","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Accesu (branu)","options":{"both":"Dambos","entry":"Entrada","exit":"Salida"}},"aeroway":{"label":"Tipu"},"agrarian":{"label":"Productos"},"aircraft/type":{"label":"Tipu"},"amenity":{"label":"Tipu"},"animal_boarding":{"label":"P'animales"},"animal_breeding":{"label":"P'animales"},"animal_shelter":{"label":"P'animales"},"archaeological_site":{"label":"Tipu"},"area/highway":{"label":"Tipu"},"armrest":{"options":{"undefined":"Desconocíu"}},"artist":{"label":"Artista"},"artwork_type":{"label":"Tipu"},"atm":{"label":"Caxeru automáticu"},"attraction":{"label":"Tipu","options":{"carousel":"Caballinos","roller_coaster":"Montaña rusa"}},"baby_feeding":{"options":{"no":"Dengún"}},"backcountry":{"label":"Fuera de pista"},"backrest":{"label":"Respaldu"},"bar":{"label":"Bar"},"barrier":{"label":"Tipu","options":{"bollard":"Bolardu","cattle_grid":"Rexa pa ganáu","city_wall":"Muralla de ciudá","cycle_barrier":"Barrera pa bicicletes","ditch":"Riega","entrance":"Entrada","fence":"Valla","gate":"Puerta","hedge":"Sebe","kissing_gate":"Puerta ganadera","retaining_wall":"Muru de contención","stile":"Pasera de reblagu","toll_booth":"Cabina de peaxe","wall":"De parede"}},"barrier_planter":{"label":"Barrera","options":{"planter":"Si","undefined":"Non"}},"basin":{"label":"Tipu"},"bath/open_air":{"label":"Aire llibre"},"bath/type":{"label":"Especialidá","options":{"hot_spring":"Fonte caliente","lake":"Llagu"}},"beauty":{"label":"Servicios"},"bench":{"label":"Bancu"},"bicycle_parking":{"label":"Tipu"},"bicycle_road":{"options":{"undefined":"Non","yes":"Si"}},"bin":{"label":"Contenedor de basoria"},"blind":{"options":{"no":"Non","yes":"Si"}},"blood_components":{"label":"Componentes de la sangre","options":{"plasma":"plasma","platelets":"plaquetes","stemcells":"pruebes de célules madre","whole":"sangre entera"}},"board_type":{"label":"Tipu","options":{"history":"Historial"}},"bollard":{"label":"Tipu"},"boules":{"label":"Tipu"},"boundary":{"label":"Tipu"},"brand":{"label":"Marca"},"bridge":{"label":"Tipu","placeholder":"Predeterminao"},"bridge/support":{"label":"Tipu"},"bridge_combo":{"label":"Tipu"},"building":{"label":"Edificiu","options":{"barn":"Graneru","bunker":"Bunker","cabin":"Cabaña","cathedral":"Edificiu de catedral","chapel":"Edificiu de capiella","church":"Edificiu d'ilesia","college":"Edificiu de colexu universitariu","commercial":"Edificiu comercial","construction":"Edificiu en construcción","detached":"Casa aisllada","dormitory":"Residencia","garage":"Garaxe","garages":"Garaxes","greenhouse":"Ivernaderu","hospital":"Edificiu d'hospital","hotel":"Edificiu d'hotel","house":"Casa","hut":"Cabaña","industrial":"Edificiu industrial","public":"Edificiu públicu","residential":"Edificiu residencial","retail":"Edificiu comercial","roof":"Cubierta","school":"Edificiu escolar","semidetached_house":"Casa semi-aisllada","shed":"Caseta de xardín","stable":"Establu","terrace":"Filera de cases","university":"Edificiu universitariu","warehouse":"Almacén"}},"building/levels":{"label":"Niveles","placeholder":"2, 4, 6..."},"building/levels/underground":{"placeholder":"2, 4, 6..."},"bunker_type":{"label":"Tipu"},"cables":{"label":"Cables","placeholder":"1, 2, 3..."},"camera/direction":{"label":"Direición (Graos en sentíu horariu)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"Encontu de cámara"},"camera/type":{"label":"Tipu de cámara","options":{"dome":"Cúpula","fixed":"Fixa","panning":"Barríu"}},"camp_site":{"label":"Tipu"},"capacity":{"label":"Capacidá","placeholder":"50, 100, 200..."},"capacity/disabled_parking":{"placeholder":"1, 2, 3..."},"capacity/persons":{"placeholder":"50, 100, 200..."},"capacity_volume":{"placeholder":"50, 100, 200..."},"castle_type":{"label":"Tipu"},"climbing/length":{"label":"Llonxitú (Metros)"},"clothes":{"label":"Ropa"},"club":{"label":"Tipu"},"collection_times":{"label":"Hores de recoyida"},"comment":{"label":"Comentariu del conxuntu de cambios","placeholder":"Descripción curtia de les collaboraciones (riquío)"},"communication_multi":{"label":"Tipos de comunicación"},"community_centre":{"label":"Tipu"},"construction":{"label":"Tipu"},"consulate":{"label":"Tipu"},"contact/webcam":{"label":"URL de la webcam","placeholder":"http://example.com/"},"content":{"label":"Conteníu"},"conveying":{"options":{"backward":"P'atrás","forward":"P'alantre"}},"country":{"label":"País"},"couplings":{"placeholder":"1, 2, 3..."},"covered":{"label":"Cubierto"},"covered_no":{"options":{"no":"Non","undefined":"Créyese que non","yes":"Si"}},"craft":{"label":"Tipu","options":{"basket_maker":"Cesteru","beekeeper":"Apicultor","blacksmith":"Ferrería","boatbuilder":"Carpinteru de ribera","bookbinder":"Encuadernador","brewery":"Cervecería","carpenter":"Carpintería","carpet_layer":"Instalador d'alfombres","clockmaker":"Reloxería","distillery":"Destilería","dressmaker":"Modista","electrician":"Electricista","gardener":"Xardineru","glaziery":"Cristalería","handicraft":"Manualidaes","hvac":"Calefactor","insulation":"Aislamientos","key_cutter":"Llaves","locksmith":"Cerraxería","painter":"Pintor","photographer":"Fotografía","photographic_laboratory":"Llaboratoriu fotográficu","plasterer":"Revocador","plumber":"Fontaneru","rigger":"Montaxes","roofer":"Reteyador","saddler":"Guarnicioneru","sailmaker":"Fabricante de veles","sawmill":"Serraderu","scaffolder":"Montaxe d'andamios","sculptor":"Escultor","shoemaker":"Zapateru","stonemason":"Canteru","tailor":"Sastrería","tiler":"Azulexista","tinsmith":"Caldereru","upholsterer":"Tapicería","watchmaker":"Reloxeru","window_construction":"Construcción de ventanes","winery":"Bodega"}},"crane/type":{"label":"Tipu de grúa","options":{"floor-mounted_crane":"Grúa anclada en suelu","portal_crane":"Pórticu","travel_lift":"Elevador de barcos móvil"}},"crop":{"label":"Cultivos","options":{"grass":"Yerba"}},"crossing":{"label":"Tipu"},"crossing/barrier":{"options":{"no":"Non","yes":"Si"}},"crossing_raised":{"options":{"table":"Si","undefined":"Non"}},"cuisine":{"label":"Cocina","options":{"regional":"Rexonal"}},"currency_multi":{"label":"Tipos de divisa"},"cutting":{"label":"Tipu","placeholder":"Predeterminao"},"cycle_barrier":{"label":"Tipu"},"cycle_barrier/installation":{"options":{"fixed":"Fixa"}},"cycle_network":{"label":"Rede"},"cycleway":{"label":"Carriles bici","options":{"lane":{"description":"Un carril bici separáu del tráficu d'autos por una llinia pintada"},"no":{"description":"Sin carril bici","title":"Dengún"},"share_busway":{"description":"Carril bici compartíu con carril bus"},"shared_lane":{"description":"Un carril bici sin separación del tráficu d'autos"},"track":{"description":"Un carril bici separáu del tráficu por una barrera física"}}},"date":{"label":"Data"},"delivery":{"label":"Repartu"},"denomination":{"label":"Denominación"},"denotation":{"label":"Notabilidá"},"departures_board":{"options":{"no":"Dengún","yes":"Si"}},"depot":{"label":"Tipu"},"description":{"label":"Descripción"},"destination_waterway":{"label":"Destín"},"devices":{"label":"Preseos","placeholder":"1, 2, 3..."},"diplomatic":{"label":"Tipu","options":{"embassy":"Embaxada"}},"diplomatic/services":{"label":"Servicios"},"direction":{"label":"Direición (Graos en sentíu horariu)","placeholder":"45, 90, 180, 270"},"direction_cardinal-US-CA-NZ":{"label":"Direición"},"direction_clock":{"label":"Direición","options":{"anticlockwise":"Sentíu antihorariu","clockwise":"Sentíu horariu"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"options":{"backward":"P'atrás","forward":"P'alantre"}},"display":{"label":"Pantalla"},"disused/amenity":{"label":"Tipu"},"disused/railway":{"label":"Tipu"},"disused/shop":{"label":"Tipu"},"dock":{"label":"Tipu"},"dog":{"options":{"yes":"Permitíu"}},"door_type":{"label":"Tipu"},"drive_through":{"label":"Carril de compres"},"duration":{"label":"Duración","placeholder":"00:00"},"electrified":{"label":"Electrificación","options":{"contact_line":"Catenaria","no":"Non","rail":"Ferrocarril electrificáu","yes":"Si (sin especificar)"},"placeholder":"Catenaria, ferrocarril electrificáu..."},"email":{"label":"Corréu-e","placeholder":"example@example.com"},"embankment":{"label":"Tipu","placeholder":"Predetermináu"},"embassy":{"label":"Tipu","options":{"yes":"Embaxada"}},"emergency":{"label":"Emerxencia"},"emergency_combo":{"label":"Tipu"},"emergency_ward_entrance":{"label":"Tipu"},"enforcement":{"label":"Tipu"},"entrance":{"label":"Tipu"},"except":{"label":"Esceiciones"},"fax":{"label":"Fax","placeholder":"+31 42 123 4567"},"fee":{"label":"Pagu"},"fence_type":{"label":"Tipu"},"fire_hydrant/position":{"label":"Posición","options":{"parking_lot":"Aparcamientu","sidewalk":"Cera"}},"fire_hydrant/type":{"options":{"pillar":"Pilar/Enriba del terrén","underground":"Baxo tierra","wall":"De parede"}},"fire_mains":{"options":{"no":"Non"}},"fire_service_inlet":{"options":{"pillar":"Pilar/Enriba del terrén","underground":"Baxo tierra","wall":"De parede"}},"fire_sprinkler":{"options":{"no":"Non"}},"fitness_station":{"label":"Tipos d'equipamientu"},"fixme":{"label":"Arréglame"},"flashing_lights":{"options":{"no":"Non","yes":"Si"}},"ford":{"label":"Tipu","placeholder":"Predetermináu"},"fountain":{"label":"Tipu"},"frequency":{"label":"Frecuencia d'operación"},"fuel":{"label":"Combustible"},"fuel/fuel_multi":{"label":"Tipos de combustible"},"gauge":{"label":"Anchu de vía"},"gender":{"label":"Xéneru","options":{"female":"Femenin","male":"Masculín","unisex":"Unisex"},"placeholder":"Desconocíu"},"generator/method":{"label":"Métodu","options":{"water-storage":"Embalse","wind_turbine":"Turbina de vientu"}},"generator/output/electricity":{"label":"Potencia de salida","placeholder":"50 MW, 100 MW, 200 MW..."},"generator/source":{"label":"Fonte"},"generator/type":{"label":"Tipu"},"government":{"label":"Tipu"},"grape_variety":{"label":"Variedaes d'uva"},"guest_house":{"label":"Tipu"},"handicap":{"label":"Handicap","placeholder":"1-18"},"handrail":{"label":"Pasamanes"},"hashtags":{"placeholder":"#exemplu"},"healthcare":{"label":"Tipu","options":{"alternative":"Medicina alternativa","audiologist":"Audiólogu","birthing_centre":"Maternidá","clinic":"Clínica","dentist":"Dentista","doctor":"Doctor","hospice":"Hospiciu","midwife":"Matrona","occupational_therapist":"Terapia ocupacional","optometrist":"Ópticu","physiotherapist":"Fisioterapeuta","podiatrist":"Pediatra","psychotherapist":"Sicoterapeuta"}},"healthcare/speciality":{"label":"Especialidaes"},"height":{"label":"Altor (metros)"},"highway":{"label":"Tipu"},"highway_cartpath":{"options":{"service":"Vía de serviciu"}},"historic":{"label":"Tipu","options":{"archaeological_site":"Xacimientu arqueolóxicu","boundary_stone":"Finxu","castle":"Castiellu","memorial":"Obra d'alcordanza","monument":"Monumentu","railway":"Ferrocarril","ruins":"Ruines","wayside_cross":"Cruceru","wayside_shrine":"Capiella de camín"}},"historic/civilization":{"label":"Civilización histórica"},"holding_position/type":{"label":"Tipu","options":{"runway":"Pista"}},"hoops":{"label":"Númberu d'aros","placeholder":"1, 2, 4..."},"horse_riding":{"options":{"horse_riding":"Si","undefined":"Non"}},"incline":{"label":"Pendiente"},"incline_steps":{"options":{"down":"Abaxo","up":"Arriba"}},"indoor":{"label":"Baxo techu"},"indoor_type":{"label":"Tipu"},"industrial":{"label":"Tipu"},"information":{"label":"Tipu"},"inscription":{"label":"Inscripción"},"intermittent":{"label":"Intermitente"},"internet_access":{"options":{"no":"Non","terminal":"Terminal","wired":"Per cable","wlan":"Wifi","yes":"Si"}},"internet_access/fee":{"label":"Accesu a Internet de pagu"},"irrigation_pivot":{"options":{"pivot":"Si","undefined":"Non"}},"junction/ref_oneway":{"label":"Númberu de salida"},"junction_line":{"label":"Crucie","options":{"roundabout":"Rotonda"}},"kerb":{"options":{"flush":{"title":"Cisterna"},"no":{"title":"Non"},"yes":{"title":"Si"}}},"kerb/kerb_barrier":{"label":"Tipu"},"label":{"label":"Etiqueta"},"lamp_type":{"label":"Tipu"},"landuse":{"label":"Tipu"},"lanes":{"label":"Carriles","placeholder":"1, 2, 3..."},"layer":{"label":"Capa","placeholder":"0"},"layer_1":{"placeholder":"0"},"leaf_cycle":{"label":"Ciclu de fueyes","options":{"deciduous":"Caducu","evergreen":"Perenne","mixed":"Mecíu","semi_deciduous":"Semi-caducu","semi_evergreen":"Semi-perenne"}},"leaf_type":{"label":"Tipu de fueya","options":{"broadleaved":"Fueya ancha","leafless":"Sin fueya","mixed":"Mecíu","needleleaved":"Fueya d'aguya"}},"leaf_type_singular":{"label":"Tipu de fueya"},"leisure":{"label":"Tipu"},"length":{"label":"Llonxitú (Metros)"},"level":{"label":"Nivel"},"level_semi":{"label":"Niveles"},"liaison":{"label":"Tipu"},"lifeguard":{"label":"Tipu"},"lift_gate/type":{"label":"Tipu"},"lit":{"label":"Lluz"},"location":{"label":"Allugamientu"},"location_pool":{"options":{"indoor":"Baxo techu"}},"man_made":{"label":"Tipu"},"manhole":{"label":"Tipu"},"map_size":{"label":"Cobertoria"},"map_type":{"label":"Tipu"},"marker":{"label":"Tipu"},"material":{"options":{"sand":"Sable","wood":"Viesca"}},"max_age":{"label":"Edá máxima"},"maxspeed":{"label":"Velocidá máxima","placeholder":"40, 50, 60..."},"maxspeed/advisory":{"placeholder":"40, 50, 60..."},"maxspeed/hgv":{"placeholder":"40, 50, 60..."},"memorial":{"label":"Tipu"},"min_age":{"label":"Edá mínima"},"monitoring_multi":{"label":"Vixilancia"},"mooring":{"options":{"no":"Non","private":"Priváu","yes":"Si"}},"mtb/scale":{"label":"Dificultá pa bicis de monte","options":{"0":"0: Sólidu de grava/tierra apisonada, sin estorbos, curves amplies","1":"1: Superficie daqué suelto, pequeños estorbos, curves amplies","2":"2: Superficie suelto enforma, estorbos grandes, revueltes fáciles","3":"3: Superficie esbariosa, estorbos grandes, revueltes dures","4":"4: Superficie suelto o cantos, revueltes peligroses","5":"5: Dificultá máxima, lleres, argayos","6":"6: Non ciclable sacante pa los meyores ciclistes de monte"},"placeholder":"0, 1, 2, 3..."},"mtb/scale/imba":{"label":"Dificultá IMBA de la sienda","placeholder":"Fácil, mediana, difícil..."},"mtb/scale/uphill":{"label":"Dificultá de xuba pa bicis de monte","options":{"0":"0: Pend. media <10%, grava/tierra apisonada, sin estorbos","1":"1: Pend. media <15%, grava/tierra apisonada, pocos oxetos pequeños","2":"2: Pend. media <20%, superficie estable, roques/raíces como un puñu","3":"3: Pend. media <25%, superficie variable, roques/rames como un puñu","4":"4: Pend. media <30%, mal estáu, roques/rames grandes","5":"5: Pindio enforma, la bici de vezu tien d'emburriase o cargase"},"placeholder":"0, 1, 2, 3..."},"museum":{"label":"Tipu"},"name":{"label":"Nome","placeholder":"Nome común (si lu tien)"},"natural":{"label":"Natural"},"network":{"label":"Rede"},"network/type":{"label":"Tipu de rede"},"network_bicycle":{"options":{"icn":"Internacional","lcn":"Llocal","ncn":"Nacional","rcn":"Rexonal"},"placeholder":"Llocal, Rexonal, Nacional, Internacional"},"network_foot":{"options":{"iwn":"Internacional","lwn":"Llocal","nwn":"Nacional","rwn":"Rexonal"},"placeholder":"Llocal, Rexonal, Nacional, Internacional"},"network_horse":{"options":{"ihn":"Internacional","lhn":"Llocal","nhn":"Nacional","rhn":"Rexonal"},"placeholder":"Llocal, Rexonal, Nacional, Internacional"},"network_road":{"label":"Rede"},"note":{"label":"Nota"},"nudism":{"options":{"designated":"Designáu","no":"Torgáu","permissive":"Permisivu","yes":"Permitíu"}},"office":{"label":"Tipu","options":{"accountant":"Contable","advertising_agency":"Axencia de publicidá","association":"Oficina d'ONG","coworking":"Espaciu de trabayu compartíu","educational_institution":"Institución educativa","employment_agency":"Axencia d'emplegu","energy_supplier":"Oficina de distribuidora d'enerxía","estate_agent":"Axencia inmobiliaria","financial":"Oficina financiera","foundation":"Oficina de fundación","government":"Oficina gubernamental","insurance":"Oficina de seguros","lawyer":"Despachu d'abogaos","newspaper":"Redacción de periódicu","ngo":"Oficina d'ONG","notary":"Notaría","physician":"Médicu","research":"Despachu d'investigación","telecommunication":"Oficina de telecomunicaciones","travel_agent":"Axencia de viaxes"}},"oneway":{"label":"Sentíu únicu","options":{"no":"Non","undefined":"Créyese que non","yes":"Si"}},"oneway_yes":{"options":{"no":"Non","undefined":"Créyese que si","yes":"Si"}},"opening_hours":{"label":"Horariu","placeholder":"Desconocíu"},"operator":{"label":"Operador"},"organic":{"options":{"no":"Dengún","only":"Sólo"}},"outdoor_seating":{"label":"Terraza"},"par":{"label":"Par","placeholder":"3, 4, 5..."},"parcel_pickup":{"options":{"no":"Non","undefined":"Créyese que si","yes":"Si"}},"park_ride":{"label":"Aparcamientu con tresporte públicu"},"parking":{"label":"Tipu","options":{"carports":{"title":"Techaos"},"garage_boxes":{"title":"Cocheres"},"lane":{"title":"Llateral de carretera"},"multi-storey":{"title":"Multinivel"},"sheds":{"title":"Casetes"},"surface":{"title":"Superficie"},"underground":{"title":"Baxo tierra"}}},"parking/side/orientation":{"types":{"parking:left:orientation":"Llau izquierdu","parking:right:orientation":"Llau drechu"}},"parking/side/parking":{"options":{"lane":"Llateral de carretera","no":"Non","yes":"Si (sin especificar)"},"types":{"parking:left":"Llau izquierdu","parking:right":"Llau drechu"}},"parking_entrance":{"label":"Tipu"},"parking_space":{"label":"Tipu"},"payment_multi":{"label":"Tipos de pagu"},"phases":{"label":"Fases","placeholder":"1, 2, 3..."},"phone":{"label":"Teléfonu"},"picnic_table":{"label":"Mesa de merenderu"},"pipeline":{"label":"Tipu"},"piste/difficulty":{"label":"Dificultá","placeholder":"Fácil, intermediu, avanzáu..."},"piste/difficulty_downhill":{"options":{"easy":"Fácil (círculu verde)"},"placeholder":"Fácil, intermediu, avanzáu..."},"piste/difficulty_nordic":{"placeholder":"Fácil, intermediu, avanzáu..."},"piste/difficulty_skitour":{"placeholder":"Fácil, intermediu, avanzáu..."},"piste/grooming":{"label":"Mantenimientu","options":{"backcountry":"Fuera de pista","classic":"Clásica","classic+skating":"Clásica y patinaxe","mogul":"Bañeres","scooter":"Scooter/Moto de nieve","skating":"Patinaxe"}},"piste/grooming_downhill":{"options":{"classic":"Clásica","mogul":"Bañeres"}},"piste/grooming_nordic":{"options":{"classic":"Clásica","classic+skating":"Clásica y patinaxe","scooter":"Scooter/Moto de nieve","skating":"Patinaxe"}},"piste/type":{"label":"Tipu","options":{"downhill":"Descensu","hike":"Escursión","ice_skate":"Patinaxe sobre xelu","nordic":"Nórdica","playground":"Infantil","skitour":"Escursión d'esquí","sled":"Luge","sleigh":"Trinéu (de tracción animal)","snow_park":"Snowpark"}},"place":{"label":"Tipu"},"plant":{"label":"Planta"},"plant/output":{"options":{"compressed_air":"Aire comprimíu"}},"plant/output/electricity":{"placeholder":"500 MW, 1000 MW, 2000 MW..."},"playground":{"label":"Tipu"},"population":{"label":"Población"},"post_box/type":{"label":"Tipu"},"power":{"label":"Tipu"},"power_supply":{"label":"Fonte d'enerxía"},"produce":{"label":"Productu"},"product":{"label":"Productos"},"public_bookcase/type":{"label":"Tipu"},"pump":{"options":{"no":"Dengún","yes":"Si"}},"railway":{"label":"Tipu"},"railway/position":{"label":"Posición del fitu","placeholder":"Distancia con un decimal (123.4)"},"railway/signal/direction":{"options":{"backward":"P'atrás","forward":"P'alantre"}},"ramp":{"options":{"no":"Non","yes":"Si"}},"rating":{"label":"Potencia nominal"},"recycling_accepts":{"label":"Aceuta","options":{"clothes":"Ropa"}},"recycling_type":{"label":"Tipu","options":{"centre":"Centru","container":"Contenedor"}},"ref":{"label":"Códigu de referencia"},"ref_aeroway_gate":{"label":"Númberu de puerta"},"ref_disc_golf_hole":{"label":"Númberu de furacu","placeholder":"1-18"},"ref_golf_hole":{"label":"Númberu de furacu","placeholder":"1-18"},"ref_highway_junction":{"label":"Númberu de salida"},"ref_platform":{"label":"Númberu d'andén"},"ref_road_number":{"label":"Númberu d'estrada"},"ref_route":{"label":"Númberu de ruta"},"ref_runway":{"label":"Númberu de pista","placeholder":"p. ex. 01L/19R"},"ref_stop_position":{"label":"Númberu de parada"},"ref_taxiway":{"label":"Númberu de cai de rodaxe","placeholder":"p. ex. A5"},"relation":{"label":"Tipu"},"religion":{"label":"Relixon","options":{"buddhist":"Budista","christian":"Christianu","hindu":"Hindu","jewish":"Xudíu","muslim":"Musulmán","shinto":"Sintoista","taoist":"Taoista"}},"residential":{"label":"Tipu"},"resort":{"label":"Tipu"},"resource":{"options":{"sand":"Sable"}},"restriction":{"label":"Tipu"},"restrictions":{"label":"Torgues de xiru"},"roller_coaster/track":{"label":"Tipu"},"roof/shape":{"options":{"dome":"Cúpula"}},"room":{"label":"Tipu"},"rooms":{"label":"Cuartos"},"route":{"label":"Tipu"},"route_master":{"label":"Tipu"},"royal_cypher-GB":{"options":{"no":"Non"}},"ruins":{"label":"Tipu"},"sac_scale":{"label":"Dificultá escursionista","options":{"alpine_hiking":"T4: Escursionismu alpín","demanding_alpine_hiking":"T5: Escursionismu alpín esixente","demanding_mountain_hiking":"T3: Escursionismu de monte esixente","difficult_alpine_hiking":"T6: Escursionismu alpín difícil","hiking":"T1: Escursionismu","mountain_hiking":"T2: Escursionismu de monte"},"placeholder":"Escursionismu de monte, escursionismu alpín"},"sanitary_dump_station":{"label":"Descarga d'agua puerco"},"scuba_diving":{"label":"Servicios"},"seamark/beacon_lateral/colour":{"options":{"green":"Yerba"}},"seamark/beacon_lateral/system":{"options":{"other":"Otru"}},"seamark/buoy_lateral/colour":{"options":{"green":"Yerba"}},"seamark/buoy_lateral/system":{"options":{"other":"Otru"}},"seamark/harbour/category_marina":{"options":{"marina":"Si","marina_no_facilities":"Non"}},"seasonal":{"label":"Estacional"},"seats":{"placeholder":"2, 4, 6..."},"second_hand":{"label":"Vende usao","options":{"no":"Non","only":"Sólo","yes":"Si"},"placeholder":"Si, Non, Sólo"},"service":{"label":"Tipu","options":{"alley":"Pasaxe","drive-through":"Carril d'autoventa","emergency_access":"Accesu d'emerxencia","parking_aisle":"Pasiellu d'aparcamientu"}},"service/vehicle":{"label":"Servicios"},"service_rail":{"label":"Tipu de serviciu","options":{"crossover":"Aguya","siding":"Apartaderu","spur":"Ramal","yard":"Estación de clasificación"}},"service_times":{"label":"Hores de serviciu"},"shelter":{"label":"Refuxu"},"shelter_type":{"label":"Tipu"},"shop":{"label":"Tipu"},"siren/type":{"label":"Tipu","options":{"other":"Otru"}},"site":{"label":"Tipu"},"smoking":{"label":"Fumadores","options":{"dedicated":"Dedicao a fumadores (p.ex. club de fumadores)","isolated":"N'árees de fumadores, aisllaes físicamente","no":"Prohibición total de fumar","outside":"Permitío fuera","separated":"N'árees de fumadores, non aisllaes físicamente","yes":"Permitío en cualquier llugar"},"placeholder":"Non, separao, si..."},"smoothness":{"label":"Uniformidá","options":{"bad":"Ruedes fuertes: bici de monte, coche, rickshaw","excellent":"Patinos delgaos: patinos en llinia, skateboard","good":"Ruedes delgaes: bici de carreres","horrible":"Too terrén: vehículos too terrén de trabayu","impassable":"Impasable / Non pa vehículos de ruedes","intermediate":"Ruedes: bici urbana, silla de ruedes, ","very_bad":"Bon altor: vehículos too terrén llixeros","very_horrible":"Too terrén especializáu: tractor, quad"},"placeholder":"Patinos, ruedes, too terrén"},"social_facility":{"label":"Tipu","options":{"food_bank":"Bancu d'alimentos","shelter":"Abellugu"}},"social_facility_for":{"label":"Persones atendíes"},"source":{"label":"Fontes"},"sport":{"label":"Deportes","options":{"golf":"Golf"}},"sport/sport_ice":{"label":"Deportes"},"sport/sport_pub":{"label":"Deportes"},"sport/sport_racing_motor":{"label":"Deportes"},"sport/sport_racing_nonmotor":{"label":"Deportes"},"stars":{"label":"Estrelles"},"start_date":{"label":"Data d'aniciu"},"step_count":{"label":"Númberu d'escaleres"},"stile":{"label":"Tipu"},"stop":{"label":"Tipu de parada","options":{"all":"Toles víes","minor":"Carretera menor"}},"street_cabinet":{"label":"Tipu"},"stroller":{"options":{"no":"Non","yes":"Si"}},"structure":{"label":"Estructura","options":{"bridge":"Ponte","cutting":"Trinchera","embankment":"Rellenu","ford":"Vau","tunnel":"Túnel"},"placeholder":"Desconocíu"},"structure_canal":{"label":"Estructura","options":{"bridge":"Ponte","tunnel":"Túnel"},"placeholder":"Desconocíu"},"structure_power":{"label":"Estructura"},"structure_waterway":{"label":"Estructura","options":{"tunnel":"Túnel"},"placeholder":"Desconocíu"},"studio":{"label":"Tipu"},"substance":{"label":"Sustancia","options":{"fuel":"Combustible","water":"Agua potable"}},"substation":{"label":"Tipu"},"substation_pipeline":{"label":"Tipu","options":{"measurement":"Midíes"}},"supervised":{"label":"Supervisáu"},"support":{"label":"Sofitu"},"surface":{"label":"Superficie","options":{"grass":"Yerba","sand":"Sable","wood":"Viesca"}},"surveillance":{"label":"Clas de vixilancia"},"surveillance/type":{"label":"Tipu de vixilancia","options":{"ALPR":"Llector automáticu de matrícules","camera":"Cámara","guard":"Guardia"}},"surveillance/zone":{"label":"Zona de vixilancia"},"survey_point/purpose":{"options":{"both":"Dambos"}},"survey_point/structure":{"label":"Estructura","options":{"block":"Bloque"}},"swimming_pool":{"label":"Tipu"},"switch":{"label":"Tipu","options":{"earthing":"Toma de tierra","mechanical":"Mecánicu"}},"tactile_paving":{"label":"Baldosa táctil"},"takeaway":{"label":"Pa llevar","options":{"no":"Non","only":"Sólo pa llevar","yes":"Si"},"placeholder":"Si, non, sólo pa llevar..."},"telecom":{"label":"Tipu"},"telescope/type":{"label":"Tipu"},"toilets":{"label":"Aseos"},"toilets/disposal":{"label":"Llimpieza","options":{"bucket":"Calderu","chemical":"Químico","flush":"Cisterna"}},"toilets/menstrual_products":{"options":{"no":"Non"}},"toilets/wheelchair":{"options":{"no":"Non","yes":"Si"}},"toll":{"label":"Peaxe"},"tomb":{"label":"Tipu"},"tourism":{"label":"Tipu"},"tower/construction":{"label":"Construcción"},"tower/platforms":{"placeholder":"1, 2, 3..."},"tower/type":{"label":"Tipu"},"townhall/type":{"label":"Tipu"},"tracktype":{"label":"Tipu de caleya","options":{"grade2":"Mayormente sólidu: grava/piedra con daqué material dondo amestáu","grade3":"Mestura igualada de materiales sólidos y dondos","grade4":"Mayormente dondu: tierra/sable/yerba con daqué de material sólidu amestáu","grade5":"Dondu: tierra/sable/yerba"},"placeholder":"Sólidu, mayormente sólidu, dondu..."},"trade":{"label":"Tipu"},"traffic_calming":{"label":"Tipu","options":{"bump":"Llombu pa reducir velocidá","chicane":"Chicane pal tráficu","choker":"Estrechamientu de tráficu","cushion":"Llombu pa reducir velocidá partíu","dip":"Riegu","hump":"Llombu anchu pa reducir velocidá","rumble_strip":"Bandes sonores"}},"traffic_calming_road":{"label":"Calmu pal tráficu"},"traffic_sign/direction":{"options":{"backward":"P'atrás","forward":"P'alantre"}},"traffic_signals":{"label":"Tipu"},"traffic_signals/direction":{"options":{"backward":"P'atrás","forward":"P'alantre"}},"traffic_signals/sound":{"options":{"no":"Non","yes":"Si"}},"trail_visibility":{"label":"Visibilidá del senderu","options":{"bad":"Malu: sin marques, camín dacuando invisible/inesistente","excellent":"Escelente: camín non ambiguu o marques per auquiera","good":"Bonu: marques visibles, dacuando hai que buscales","horrible":"Horrible: de vezu sin camín, necesita daqué conocencia d'orientacion","intermediate":"Intermediu: poques marques, camín visible casi siempre","no":"Non: sin camín, necesita una escelente conocencia d'orientación"},"placeholder":"Escelente, bonu, malu..."},"transformer":{"label":"Tipu","options":{"phase_angle_regulator":"Regulador d'ángulu de fase"}},"trees":{"label":"Árboles"},"trench":{"label":"Tipu"},"tunnel":{"label":"Tipu","placeholder":"Predetermináu"},"tunnel_combo":{"label":"Tipu"},"two_sided":{"options":{"undefined":"Non","yes":"Si"}},"usage_rail":{"options":{"tourism":"Turismu"}},"utility":{"options":{"power":"Enerxía","water":"Agua"}},"valve":{"label":"Tipu"},"vehicles":{"options":{"monorail":"Monocarril","subway":"Metro","tram":"Tranvía"}},"vending":{"options":{"fuel":"Combustible","water":"Agua potable"}},"visibility":{"label":"Visibilidá","options":{"area":"Más de 20m (65ft)","house":"Fasta 5m (16ft)","street":"De 5 a 20m (16 to 65ft)"}},"volcano/status":{"label":"Estau del volcán","options":{"active":"Activu","dormant":"Durmiente","extinct":"Estinguíu"}},"volcano/type":{"label":"Tipu de volcán","options":{"scoria":"Escoria","shield":"Escudu","stratovolcano":"Estratovolcán"}},"voltage":{"label":"Voltaxe"},"voltage/primary":{"label":"Voltaxe primariu"},"voltage/secondary":{"label":"Voltaxe secundariu"},"voltage/tertiary":{"label":"Voltaxe terciariu"},"wall":{"label":"Tipu"},"water":{"label":"Tipu"},"water_point":{"label":"Toma d'agua"},"water_source":{"options":{"pond":"Estanque","river":"Ríu","stream":"Regueru"}},"waterway":{"label":"Tipu"},"website":{"label":"Sitiu web"},"wetland":{"label":"Tipu"},"wheelchair":{"label":"Accesu pa siella de ruedes","options":{"no":"Non","yes":"Si"}},"width":{"label":"Anchura (Metros)"},"wikipedia":{"label":"Wikipedia"},"windings":{"placeholder":"1, 2, 3..."},"windings/auto":{"label":"Autotresformador","options":{"no":"Non","undefined":"Créyese que non","yes":"Si"}}},"presets":{"address":{"name":"Direición","terms":"señes,allugamientu"},"advertising/billboard":{"name":"Tableru d'anuncios","terms":"anunciu,publicidá,cartelera"},"aerialway/cable_car":{"name":"Teleféricu","terms":"teleféricu"},"aerialway/chair_lift":{"name":"Telesiella","terms":"telesiella"},"aerialway/drag_lift":{"name":"Telesquí","terms":"remonte,arrastre"},"aerialway/magic_carpet":{"name":"Alfombra máxica","terms":"remonte de cinta rodante"},"aerialway/platter":{"name":"Telesquí de placa"},"aerialway/pylon":{"name":"Poste de tresporte per cable","terms":"poste,torre,sofitu"},"aerialway/rope_tow":{"name":"Cuerda de remolque"},"aeroway/aerodrome":{"name":"Aeropuertu","terms":"aeródromu,aeroclub,aerotaxi,aereotresporte,campu d'aviación"},"aeroway/gate":{"name":"Puerta de terminal"},"aeroway/hangar":{"name":"Hangar"},"aeroway/helipad":{"name":"Helipuertu","terms":"helitaxi"},"aeroway/runway":{"name":"Pista"},"aeroway/taxiway":{"name":"Cai de rodaxe"},"aeroway/terminal":{"name":"Terminal d'aeropuertu"},"amenity":{"name":"Infraestructures"},"amenity/animal_boarding":{"name":"Instalación d'embarque d'animales"},"amenity/animal_breeding":{"name":"Instalación d'alimentación d'animales"},"amenity/animal_shelter":{"name":"Refuxu d'animales","terms":"animales,mascotes,perrera,adopción"},"amenity/arts_centre":{"name":"Centru d'arte","terms":"arte,pintura,escultura,plástica,ilustración"},"amenity/atm":{"name":"Caxeru automáticu","terms":"caxeru"},"amenity/bank":{"name":"Bancu","terms":"caxa,aforros"},"amenity/bar":{"name":"Bar","terms":"chigre,tasca"},"amenity/bbq":{"name":"Barbacoa/Asador","terms":"llar,fueu,cocina"},"amenity/bench":{"name":"Asientu","terms":"asientu"},"amenity/bicycle_parking":{"name":"Aparcaderu de bicicletes"},"amenity/bicycle_rental":{"name":"Alquiler de bicicletes"},"amenity/bicycle_repair_station":{"name":"Caballete pa reparar bicicletes"},"amenity/boat_rental":{"name":"Alquiler de barcos","terms":"alquiler de veleros,alquiler de lanches"},"amenity/bureau_de_change":{"name":"Cambiu de moneda","terms":"divisa,cambiu"},"amenity/bus_station":{"name":"Estación d'autobuses / Terminal"},"amenity/cafe":{"name":"Café","terms":"cafetería"},"amenity/car_rental":{"name":"Alquiler d'automóviles"},"amenity/car_wash":{"name":"Llaváu de coches"},"amenity/casino":{"name":"Casino"},"amenity/charging_station":{"name":"Estación de recarga"},"amenity/childcare":{"name":"Preescolar/Guardería","terms":"educación infantil,escuela infantil"},"amenity/cinema":{"name":"Cine","terms":"cinematógrafu,multicine"},"amenity/clinic":{"name":"Clínica","terms":"urxencies,hospital"},"amenity/clock":{"name":"Reló"},"amenity/community_centre":{"name":"Centru comunitariu","terms":"centru social,atenéu"},"amenity/compressed_air":{"name":"Aire comprimíu","terms":"infláu,neumáticos"},"amenity/courthouse":{"name":"Xulgáu","terms":"tribunal,audiencia,sala"},"amenity/coworking_space":{"name":"Espaciu de trabayu compartíu"},"amenity/crematorium":{"name":"Crematoriu"},"amenity/dentist":{"name":"Dentista","terms":"estomatólogu,clínica dental"},"amenity/doctors":{"name":"Doctor","terms":"médicu,especialista"},"amenity/doctors/podiatry":{"name":"Pediatra"},"amenity/dojo":{"name":"Dojo / Academia d'artes marciales","terms":"ximnasiu"},"amenity/drinking_water":{"name":"Agua potable","terms":"fonte,bebederu"},"amenity/embassy":{"name":"Embaxada"},"amenity/fast_food":{"name":"Comida rápida","terms":"comida rápida,comida basoria"},"amenity/fire_station":{"name":"Parque de bomberos","terms":"parque de bomberos,bomberos,centru d'emerxencies"},"amenity/fountain":{"name":"Fonte d'adornu"},"amenity/fuel":{"name":"Gasolinera","terms":"combustible,gas,estación de serviciu"},"amenity/grave_yard":{"name":"Enterramientos"},"amenity/grit_bin":{"name":"Caxón de sal"},"amenity/hospital":{"name":"Antoxana d'hospital","terms":"zona hospitalaria,terrenu d'hospital"},"amenity/hunting_stand":{"name":"Puestu de caza"},"amenity/ice_cream":{"name":"Xeladería"},"amenity/library":{"name":"Biblioteca","terms":"llibros,centru de llectura"},"amenity/marketplace":{"name":"Mercáu"},"amenity/motorcycle_parking":{"name":"Aparcaderu de motos"},"amenity/nightclub":{"name":"Discoteca","terms":"disco,discobar,baille"},"amenity/parking":{"name":"Aparcamientu"},"amenity/parking_space":{"name":"Espaciu d'aparcamientu"},"amenity/place_of_worship":{"name":"Llugar de cultu","terms":"cultu,templu"},"amenity/place_of_worship/buddhist":{"name":"Templu budista","terms":"pagoda"},"amenity/place_of_worship/hindu":{"name":"Templu hindú"},"amenity/place_of_worship/shinto":{"name":"Capiella sintoísta"},"amenity/place_of_worship/sikh":{"name":"Templu sikh","terms":"templu sij"},"amenity/place_of_worship/taoist":{"name":"Templu taoísta","terms":"tao"},"amenity/planetarium":{"name":"Planetariu"},"amenity/police":{"name":"Policía","terms":"policía,comisaría,cuartel,guardia civil"},"amenity/post_office":{"name":"Oficina de correos","terms":"oficina de correos,carta,paquete,postal"},"amenity/prison":{"name":"Terrén de cárcel"},"amenity/pub":{"name":"Pub","terms":"pub,chigre"},"amenity/public_bath":{"name":"Baños públicos"},"amenity/public_bookcase":{"name":"Biblioteca llibre"},"amenity/ranger_station":{"name":"Guardes forestales","terms":"guardabosques,seprona"},"amenity/recycling_centre":{"name":"Centru de reciclax"},"amenity/restaurant":{"name":"Restaurante","terms":"chigre,llagar"},"amenity/sanitary_dump_station":{"name":"Vertíu de depósitos d'autocaravanes","terms":"depósitu caravanes,saneamientru caravanes"},"amenity/shelter":{"name":"Abellugu"},"amenity/shower":{"name":"Ducha"},"amenity/social_facility":{"name":"Serviciu social","terms":"servicios sociales"},"amenity/social_facility/food_bank":{"name":"Bancu d'alimentos"},"amenity/social_facility/group_home":{"name":"Albergue pa mayores","terms":"asilu,residencia d'ancianos"},"amenity/social_facility/homeless_shelter":{"name":"Albergue de probes"},"amenity/studio":{"name":"Estudiu","terms":"música,radio,televisión"},"amenity/taxi":{"name":"Parada de taxis"},"amenity/telephone":{"name":"Teléfonu","terms":"cabina"},"amenity/theatre":{"name":"Teatru","terms":"comedia,corral"},"amenity/townhall":{"name":"Edificiu municipal","terms":"casa del conceyu,ayuntamientu"},"amenity/vending_machine":{"name":"Máquina de venta automática","terms":"máquina,autoventa"},"amenity/vending_machine/cigarettes":{"name":"Máquina de venta de tabacu"},"amenity/vending_machine/condoms":{"name":"Máquina de venta de preservativos"},"amenity/vending_machine/drinks":{"name":"Máquina de venta de bébora","terms":"máquina,refrescos,agua,café,te,automática"},"amenity/vending_machine/feminine_hygiene":{"name":"Máquina de venta d'hixénicos femeninos","terms":"máquina,compresa,tampón"},"amenity/vending_machine/food/snacks":{"name":"Máquina de venta de llambionaes"},"amenity/vending_machine/newspapers":{"name":"Máquina de venta de periódicos","terms":"máquina,automática,periódicos.prensa,revistes"},"amenity/vending_machine/parking_tickets":{"name":"Máquina de pagu d'aparcamientu","terms":"máquina,automática,aparcamientu,pagu"},"amenity/vending_machine/public_transport_tickets":{"name":"Máquina de venta de billetes de tresporte","terms":"máquina,automática,billete,tren,autobús,recarga"},"amenity/veterinary":{"name":"Veterinariu","terms":"clínica veterinaria"},"amenity/waste/dog_excrement":{"name":"Papelera pa escrementos de perros","terms":"contenedor,escrementos,perros,bolses"},"amenity/waste_disposal":{"name":"Contenedor de basoria"},"amenity/waste_transfer_station":{"name":"Estación de tresferencia de basoria"},"amenity/water_point":{"name":"Agua potable pa caravanes"},"amenity/watering_place":{"name":"Bebederu p'animales","terms":"bebederu,agua"},"area":{"name":"Área"},"attraction/carousel":{"name":"Caballinos","terms":"carrusel,atracciones,feria"},"attraction/roller_coaster":{"name":"Montaña rusa","terms":"rusa,atracciones,feria"},"barrier":{"name":"Barrera"},"barrier/block":{"name":"Bloque"},"barrier/bollard":{"name":"Bolardu"},"barrier/border_control":{"name":"Aduana","terms":"pasu de frontera,pasaporte"},"barrier/cattle_grid":{"name":"Rexa pa ganáu"},"barrier/city_wall":{"name":"Muralla de ciudá"},"barrier/cycle_barrier":{"name":"Barrera pa bicicletes"},"barrier/ditch":{"name":"Trinchera"},"barrier/entrance":{"name":"Entrada"},"barrier/fence":{"name":"Valla"},"barrier/gate":{"name":"Puerta"},"barrier/handrail":{"name":"Pasamanes"},"barrier/hedge":{"name":"Sebe"},"barrier/kissing_gate":{"name":"Puerta ganadera"},"barrier/retaining_wall":{"name":"Muru de contención"},"barrier/stile":{"name":"Pasera de reblagu"},"barrier/toll_booth":{"name":"Cabina de peaxe"},"barrier/wall":{"name":"Muria"},"boundary":{"name":"Llende"},"boundary/administrative":{"name":"Llende alministrativa"},"building":{"name":"Edificiu"},"building/barn":{"name":"Graneru"},"building/bunker":{"name":"Bunker"},"building/cabin":{"name":"Cabaña"},"building/cathedral":{"name":"Edificiu de catedral"},"building/chapel":{"name":"Edificiu de capiella"},"building/church":{"name":"Edificiu d'ilesia"},"building/college":{"name":"Edificiu de colexu universitariu"},"building/commercial":{"name":"Edificiu comercial"},"building/construction":{"name":"Edificiu en construcción","terms":"obra,arreglu"},"building/detached":{"name":"Casa aisllada"},"building/dormitory":{"name":"Residencia"},"building/entrance":{"name":"Entrada/Salida"},"building/garage":{"name":"Garaxe","terms":"cochera,aparcaderu"},"building/garages":{"name":"Garaxes","terms":"cocheres"},"building/greenhouse":{"name":"Ivernaderu","terms":"cultivu,plásticu"},"building/hospital":{"name":"Edificiu d'hospital"},"building/hotel":{"name":"Edificiu d'hotel"},"building/house":{"name":"Casa"},"building/hut":{"name":"Cabaña"},"building/industrial":{"name":"Edificiu industrial","terms":"nave,fábrica,taller"},"building/public":{"name":"Edificiu públicu"},"building/residential":{"name":"Edificiu residencial","terms":"vivienda,pisos"},"building/retail":{"name":"Edificiu comercial","terms":"tiendes,gran superficie"},"building/roof":{"name":"Cubierta","terms":"techáu,tenada"},"building/school":{"name":"Edificiu escolar","terms":"escueles"},"building/semidetached_house":{"name":"Casa semi-aisllada"},"building/shed":{"name":"Caseta de xardín"},"building/stable":{"name":"Establu","terms":"corte,cuadra"},"building/university":{"name":"Edificiu universitariu"},"building/warehouse":{"name":"Almacén","terms":"nave d'almacenamientu"},"building_point":{"name":"Edificiu"},"craft":{"name":"Oficiu","terms":"profesional,negociu"},"craft/basket_maker":{"name":"Cesteru","terms":"goxeru,paxos,macones"},"craft/beekeeper":{"name":"Apicultor","terms":"abeyes,miel"},"craft/blacksmith":{"name":"Ferrería","terms":"ferreru,ferrador"},"craft/boatbuilder":{"name":"Carpinteru de ribera","terms":"astilleru"},"craft/bookbinder":{"name":"Encuadernador","terms":"encuadernación"},"craft/carpenter":{"name":"Carpintería","terms":"carpinteru,ebanista"},"craft/carpet_layer":{"name":"Instalador d'alfombres"},"craft/clockmaker":{"name":"Reloxería","terms":"reloxeru"},"craft/distillery":{"name":"Destilería"},"craft/dressmaker":{"name":"Modista","terms":"xastre,modista"},"craft/electrician":{"name":"Electricista"},"craft/electronics_repair":{"name":"Arreglos electrónicos"},"craft/gardener":{"name":"Xardineru"},"craft/glaziery":{"name":"Cristalería"},"craft/insulator":{"name":"Aislamientos"},"craft/key_cutter":{"name":"Llaves","terms":"duplicáu de llaves"},"craft/locksmith":{"name":"Cerraxería"},"craft/painter":{"name":"Pintor"},"craft/photographer":{"name":"Fotografía","terms":"fotógrafu,reveláu"},"craft/photographic_laboratory":{"name":"Llaboratoriu fotográficu","terms":"fotografía,reveláu,ampliaciones"},"craft/plasterer":{"name":"Revocador"},"craft/plumber":{"name":"Fontaneru"},"craft/rigger":{"name":"Montaxes"},"craft/roofer":{"name":"Reteyador","terms":"reparación de teyaos,cubiertes"},"craft/saddler":{"name":"Guarnicioneru","terms":"curtidor"},"craft/sailmaker":{"name":"Fabricante de veles"},"craft/sawmill":{"name":"Serraderu"},"craft/scaffolder":{"name":"Montaxe d'andamios"},"craft/sculptor":{"name":"Escultor"},"craft/shoemaker":{"name":"Zapateru"},"craft/stonemason":{"name":"Canteru"},"craft/tailor":{"name":"Sastre"},"craft/tiler":{"name":"Azulexista"},"craft/tinsmith":{"name":"Caldereru"},"craft/upholsterer":{"name":"Tapicería"},"craft/watchmaker":{"name":"Reloxeru"},"craft/window_construction":{"name":"Construcción de ventanes"},"craft/winery":{"name":"Bodega","terms":"viña"},"embankment":{"name":"Terremplén"},"emergency/ambulance_station":{"name":"Parque d'ambulancies","terms":"centru d'emerxencies"},"emergency/defibrillator":{"name":"Desfibrilador","terms":"emerxencia,corazón,ataque cardiacu"},"emergency/fire_hydrant":{"name":"Toma de mangueres","terms":"apagafueos,fueu,boca de riegu"},"emergency/phone":{"name":"Teléfonu d'emerxencia","terms":"s.o.s.,teléfonu d'ayuda,teléfonu de socorru"},"ford":{"name":"Vau"},"ford_line":{"name":"Vau"},"golf/bunker":{"name":"Trampa de sable","terms":"bunker (golf),areneru"},"golf/fairway":{"name":"Cai de golf"},"golf/green":{"name":"Green de golf","terms":"putting green"},"golf/hole":{"name":"Furacu de golf"},"golf/lateral_water_hazard":{"name":"Llagu d'agua llateral en golf"},"golf/rough":{"name":"Rough de golf"},"golf/tee":{"name":"Salida de percorríu"},"golf/water_hazard":{"name":"Llagu de golf"},"healthcare":{"name":"Instalación sanitaria"},"healthcare/alternative":{"name":"Medicina alternativa"},"healthcare/alternative/chiropractic":{"name":"Quiroprácticu"},"healthcare/audiologist":{"name":"Audiólogu"},"healthcare/birthing_center":{"name":"Maternidá"},"healthcare/blood_donation":{"name":"Centru de donantes de sangre"},"healthcare/hospice":{"name":"Hospiciu"},"healthcare/midwife":{"name":"Matrona"},"healthcare/occupational_therapist":{"name":"Terapia ocupacional"},"healthcare/optometrist":{"name":"Ópticu"},"healthcare/physiotherapist":{"name":"Fisioterapeuta"},"healthcare/podiatrist":{"name":"Pediatra"},"healthcare/psychotherapist":{"name":"Sicoterapeuta"},"highway/bridleway":{"name":"Camín de caballeríes","terms":"camín de ferradura"},"highway/corridor":{"name":"Pasiellu d'edificiu"},"highway/crossing":{"name":"Pasu de peatones","terms":"cruce de víes,pasu"},"highway/cycleway":{"name":"Camín ciclista"},"highway/elevator":{"name":"Ascensor"},"highway/footway":{"name":"Camín peatonal","terms":"camín,senderu,sienda"},"highway/footway/sidewalk":{"name":"Cera"},"highway/give_way":{"name":"Señal de dexar pasu"},"highway/living_street":{"name":"Rúa residencial","terms":"semipeatonal,zona 30"},"highway/mini_roundabout":{"name":"Mini-rotonda"},"highway/motorway":{"name":"Autoestrada"},"highway/motorway_junction":{"name":"Entrada/salida d'autoestrada"},"highway/motorway_link":{"name":"Enllaz d'autoestrada","terms":"salida,accesu,enllaz,autoestrada"},"highway/path":{"name":"Camín"},"highway/pedestrian_area":{"name":"Área peatonal"},"highway/pedestrian_line":{"name":"Rúa peatonal"},"highway/primary":{"name":"Estrada autonómica"},"highway/primary_link":{"name":"Enllaz de carretera autonómica I","terms":"salida,accesu,enllaz,autonómica primaria,autonómica naranxa"},"highway/residential":{"name":"Rúa urbana"},"highway/rest_area":{"name":"Área de descansu"},"highway/road":{"name":"Estrada desconocida"},"highway/secondary":{"name":"Estrada secundaria"},"highway/secondary_link":{"name":"Enllaz d'estrada autonómica II","terms":"salida,accesu,enllaz,autonómica secundaria,autonómica verde"},"highway/service":{"name":"Vía de serviciu"},"highway/service/alley":{"name":"Pasaxe"},"highway/service/drive-through":{"name":"Carril d'autoventa"},"highway/service/emergency_access":{"name":"Accesu d'emerxencia"},"highway/service/parking_aisle":{"name":"Pasiellu d'aparcamientu"},"highway/services":{"name":"Área de serviciu"},"highway/speed_camera":{"name":"Cámara de radar"},"highway/steps":{"name":"Escaleres","terms":"escalinata,escalones"},"highway/stop":{"name":"Señal de stop","terms":"stop,alto,parada"},"highway/street_lamp":{"name":"Farola"},"highway/tertiary":{"name":"Estrada terciaria"},"highway/tertiary_link":{"name":"Enllaz d'estrada autonómica III","terms":"salida,accesu,enllaz,autonómica terciaria,autonómica mariella"},"highway/traffic_mirror":{"name":"Espeyu pal tráficu"},"highway/traffic_signals":{"name":"Semáforu","terms":"semáforu,pasu peatonal"},"highway/trunk":{"name":"Estrada nacional","terms":"rede estatal,nacional,n"},"highway/trunk_link":{"name":"Enllaz d'estrada nacional","terms":"salida,accesu,enllaz,nacional"},"highway/turning_circle":{"name":"Círculu de xiru","terms":"vuelta,ensin salida"},"highway/turning_loop":{"name":"Círculu de xiru (con islla)"},"highway/unclassified":{"name":"Estrada menor/ensin clasificar"},"historic":{"name":"Sitiu históricu"},"historic/archaeological_site":{"name":"Xacimientu arqueolóxicu"},"historic/boundary_stone":{"name":"Finxu"},"historic/castle":{"name":"Castiellu"},"historic/memorial":{"name":"Obra d'alcordanza"},"historic/monument":{"name":"Monumentu"},"historic/ruins":{"name":"Ruines"},"historic/wayside_cross":{"name":"Cruceru","terms":"cruz,cruce"},"historic/wayside_shrine":{"name":"Capiella de camín"},"indoor/corridor":{"name":"Pasiellu d'edificiu"},"indoor/corridor_line":{"name":"Pasiellu d'edificiu"},"junction":{"name":"Crucie"},"landuse/aquaculture":{"name":"Acuacultura"},"landuse/basin":{"name":"Acumulación d'agües"},"landuse/brownfield":{"name":"Solar"},"landuse/cemetery":{"name":"Cementeriu"},"landuse/churchyard":{"name":"Antoxana d'ilesia"},"landuse/commercial":{"name":"Área comercial"},"landuse/farm":{"name":"Tierra de llabor"},"landuse/farmland":{"name":"Tierra de llabor"},"landuse/farmyard":{"name":"Quintana"},"landuse/grass":{"name":"Yerba"},"landuse/greenfield":{"name":"Terrén urbanizable"},"landuse/harbour":{"name":"Gran puertu"},"landuse/industrial":{"name":"Área industrial"},"landuse/industrial/scrap_yard":{"name":"Chatarrería"},"landuse/industrial/slaughterhouse":{"name":"Mataderu"},"landuse/landfill":{"name":"Escombrera"},"landuse/meadow":{"name":"Prau"},"landuse/military":{"name":"Área militar"},"landuse/military/airfield":{"name":"Aeródromu militar"},"landuse/military/barracks":{"name":"Cuartel","terms":"campamentu militar"},"landuse/military/base/navy":{"name":"Base naval","terms":"arsenal"},"landuse/military/range":{"name":"Campu de tiru","terms":"campu de maniobres"},"landuse/orchard":{"name":"Plantación"},"landuse/plant_nursery":{"name":"Viveru"},"landuse/pond":{"name":"Estanque"},"landuse/quarry":{"name":"Cantera"},"landuse/reservoir":{"name":"Embalse"},"landuse/residential":{"name":"Área de viviendes"},"landuse/retail":{"name":"Área comercial"},"landuse/vineyard":{"name":"Viñéu"},"leisure/adult_gaming_centre":{"name":"Centru de xuegos p'adultos"},"leisure/bird_hide":{"name":"Observatoriu d'aves"},"leisure/bowling_alley":{"name":"Bolera americana"},"leisure/common":{"name":"Terrén comunitariu"},"leisure/dance":{"name":"Salón de baille"},"leisure/dog_park":{"name":"Parque pa perros"},"leisure/fitness_centre":{"name":"Ximnasiu / Centru de fitness"},"leisure/fitness_centre/yoga":{"name":"Centru de yoga"},"leisure/fitness_station":{"name":"Centru de fitness albentestate"},"leisure/garden":{"name":"Xardín"},"leisure/garden/community":{"name":"Xardín acomuñáu"},"leisure/golf_course":{"name":"Campu de golf"},"leisure/ice_rink":{"name":"Pista de xelu"},"leisure/marina":{"name":"Puertu deportivu"},"leisure/miniature_golf":{"name":"Minigolf"},"leisure/nature_reserve":{"name":"Reserva natural","terms":"parque de la biosfera,parque natural"},"leisure/park":{"name":"Parque","terms":"parque,campu,xardín"},"leisure/picnic_table":{"name":"Mesa de merenderu"},"leisure/pitch":{"name":"Campu deportivu"},"leisure/pitch/american_football":{"name":"Campu de fútbol americanu"},"leisure/pitch/basketball":{"name":"Pista de baloncestu"},"leisure/pitch/beachvolleyball":{"name":"Campu de voleibol playa"},"leisure/pitch/boules":{"name":"Pista de petanca"},"leisure/pitch/bowls":{"name":"Bolera"},"leisure/pitch/cricket":{"name":"Campu de cricket"},"leisure/pitch/rugby_league":{"name":"Campu de rugby a 13"},"leisure/pitch/rugby_union":{"name":"Campu de rugby a 15"},"leisure/pitch/skateboard":{"name":"Patinódromu","terms":"patín acrobáticu"},"leisure/pitch/soccer":{"name":"Campu de fútbol"},"leisure/pitch/table_tennis":{"name":"Mesa de pimpón"},"leisure/pitch/tennis":{"name":"Pista de tenis"},"leisure/pitch/volleyball":{"name":"Campu de voleibol"},"leisure/playground":{"name":"Xuegos infantiles"},"leisure/sauna":{"name":"Sauna"},"leisure/slipway":{"name":"Rampla de botadura"},"leisure/sports_centre":{"name":"Centru / Complexu deportivu"},"leisure/sports_centre/swimming":{"name":"Centru de natación"},"leisure/stadium":{"name":"Estadiu"},"leisure/swimming_pool":{"name":"Piscina"},"leisure/track":{"name":"Circuitu (Deportes sin motor)"},"leisure/track/athletics/running":{"name":"Pista d'atletismu"},"leisure/track/running":{"name":"Pista d'atletismu","terms":"pista,circuitu"},"leisure/water_park":{"name":"Parque acuáticu"},"line":{"name":"Llinia"},"man_made/adit":{"name":"Bocamina","terms":"pozu"},"man_made/breakwater":{"name":"Dique marín"},"man_made/chimney":{"name":"Chimenea"},"man_made/crane":{"name":"Grúa"},"man_made/crane/portal_crane":{"name":"Pórticu"},"man_made/cutline":{"name":"Cortafuéu"},"man_made/embankment":{"name":"Terremplén","terms":"rellenu"},"man_made/flagpole":{"name":"Mástil","terms":"palu,bandera"},"man_made/gasometer":{"name":"Gasómetru"},"man_made/lighthouse":{"name":"Faru"},"man_made/manhole":{"name":"Tapa d'alcantariella"},"man_made/mast":{"name":"Mástil"},"man_made/monitoring_station":{"name":"Estación de control"},"man_made/petroleum_well":{"name":"Pozu petrolíferu"},"man_made/pier":{"name":"Embarcaderu"},"man_made/pipeline":{"name":"Tubería"},"man_made/pumping_station":{"name":"Estación de bombéu"},"man_made/silo":{"name":"Silu"},"man_made/storage_tank":{"name":"Tanque d'almacenamientu"},"man_made/surveillance":{"name":"Vixilancia"},"man_made/surveillance/camera":{"name":"Cámara de vixilancia"},"man_made/survey_point":{"name":"Vértiz xeodésicu"},"man_made/tower":{"name":"Torre"},"man_made/tower/observation":{"name":"Torre de vixilancia","terms":"observatoriu,torre d'observación"},"man_made/wastewater_plant":{"name":"Planta depuradora","terms":"depuradora,tratamientu,agua,pretratamientu"},"man_made/water_tower":{"name":"Torre de depósitu"},"man_made/water_well":{"name":"Pozu d'agua"},"man_made/water_works":{"name":"Captación d'agua"},"man_made/watermill":{"name":"Molín d'agua"},"man_made/windmill":{"name":"Molín de vientu"},"man_made/works":{"name":"Fábrica"},"military/bunker":{"name":"Bunquer militar"},"military/nuclear_explosion_site":{"name":"Llugar d'españíu nuclear"},"military/office":{"name":"Oficina militar"},"natural/bare_rock":{"name":"Roca"},"natural/bay":{"name":"Bahía"},"natural/beach":{"name":"Playa"},"natural/cave_entrance":{"name":"Entrada de cueva"},"natural/cliff":{"name":"Cantil"},"natural/coastline":{"name":"Llinia costera","terms":"costa,ribera"},"natural/fell":{"name":"Granda"},"natural/glacier":{"name":"Glaciar"},"natural/grassland":{"name":"Pradera"},"natural/heath":{"name":"Escobal"},"natural/hot_spring":{"name":"Fonte caliente"},"natural/peak":{"name":"Picu","terms":"picu,monte,vértiz"},"natural/saddle":{"name":"Colláu"},"natural/sand":{"name":"Sable"},"natural/scree":{"name":"Llera"},"natural/scrub":{"name":"Fuérfagu"},"natural/spring":{"name":"Fonte natural"},"natural/tree":{"name":"Árbol"},"natural/volcano":{"name":"Volcan"},"natural/water":{"name":"Agua"},"natural/water/basin":{"name":"Acumulación d'agües"},"natural/water/lake":{"name":"Llagu"},"natural/water/pond":{"name":"Estanque"},"natural/water/reservoir":{"name":"Embalse"},"natural/wetland":{"name":"Llamorgal"},"noexit/yes":{"name":"Ensin salida"},"office":{"name":"Oficina","terms":"despachu"},"office/accountant":{"name":"Contable"},"office/administrative":{"name":"Oficina alministrativa"},"office/advertising_agency":{"name":"Axencia de publicidá"},"office/association":{"name":"Oficina d'ONG"},"office/coworking":{"name":"Espaciu de trabayu compartíu"},"office/diplomatic/embassy":{"name":"Embaxada","terms":"embaxada,consuláu,representación diplomática"},"office/educational_institution":{"name":"Institución educativa"},"office/employment_agency":{"name":"Axencia d'emplegu","terms":"inem,ett,serviciu d'emplegu"},"office/energy_supplier":{"name":"Oficina de distribuidora d'enerxía"},"office/estate_agent":{"name":"Axencia inmobiliaria"},"office/financial":{"name":"Oficina financiera","terms":"financiera,inversión,créditu"},"office/foundation":{"name":"Oficina de fundación"},"office/government":{"name":"Oficina gubernamental","terms":"gobiernu,ministeriu,delegación"},"office/government/register_office":{"name":"Oficina de rexistru","terms":"rexistru,almisión"},"office/insurance":{"name":"Oficina de seguros","terms":"aseguradora,seguros,riesgu"},"office/lawyer":{"name":"Despachu d'abogaos"},"office/lawyer/notary":{"name":"Notaría"},"office/newspaper":{"name":"Redacción de periódicu"},"office/ngo":{"name":"Oficina d'ONG","terms":"organización nun gubernamental"},"office/notary":{"name":"Notaría"},"office/physician":{"name":"Médicu"},"office/research":{"name":"Despachu d'investigación"},"office/telecommunication":{"name":"Oficina de telecomunicaciones"},"office/travel_agent":{"name":"Axencia de viaxes"},"place":{"name":"Llugar"},"place/city":{"name":"Ciudá"},"place/farm":{"name":"Granxa"},"place/hamlet":{"name":"Aldea"},"place/island":{"name":"Islla","terms":"islla,castru"},"place/isolated_dwelling":{"name":"Vivienda aisllada"},"place/locality":{"name":"Llugar despobláu"},"place/neighbourhood":{"name":"Barriu"},"place/square":{"name":"Plaza"},"place/town":{"name":"Villa"},"place/village":{"name":"Pueblu"},"point":{"name":"Puntu"},"power/generator":{"name":"Xenerador d'enerxía","terms":"central eléctrica"},"power/generator/source/nuclear":{"name":"Reactor nuclear"},"power/generator/source/wind":{"name":"Turbina de vientu"},"power/line":{"name":"Llinia eléctrica"},"power/minor_line":{"name":"Llinia eléctrica secundaria","terms":"electricidá,baxa tensión"},"power/pole":{"name":"Poste eléctricu"},"power/substation":{"name":"Subestación"},"power/tower":{"name":"Torre d'alta tensión"},"power/transformer":{"name":"Tresformador"},"public_transport/platform/aerialway_point":{"name":"Andén / Parada de remonte"},"public_transport/platform/ferry_point":{"name":"Andén / Parada de ferry"},"public_transport/platform/light_rail_point":{"name":"Andén / Parada de tren llixeru"},"public_transport/platform/monorail_point":{"name":"Andén / Parada de monocarril"},"public_transport/platform/subway_point":{"name":"Andén / Parada de metro"},"public_transport/platform/train_point":{"name":"Andén / Parada de tren"},"public_transport/platform/tram_point":{"name":"Andén / Parada de trolebús"},"public_transport/platform_point":{"name":"Andén / Parada de tresporte"},"public_transport/station":{"name":"Estación d'intercambiu"},"public_transport/station_aerialway":{"name":"Estación de remonte"},"public_transport/station_bus":{"name":"Estación / Terminal d'autobuses"},"public_transport/station_light_rail":{"name":"Estación de tren llixeru"},"public_transport/station_monorail":{"name":"Estación de monocarril"},"public_transport/station_subway":{"name":"Estación de metro"},"public_transport/station_train":{"name":"Estación de tren","terms":"terminal ferroviaria"},"railway/abandoned":{"name":"Ferrocarril abandonáu"},"railway/buffer_stop":{"name":"Topera"},"railway/derail":{"name":"Descarrilador de ferrocarril"},"railway/disused":{"name":"Ferrocarril ensin usu"},"railway/signal":{"name":"Señal de ferrocarril"},"railway/station":{"name":"Estación de tren"},"railway/subway_entrance":{"name":"Boca del metro"},"relation":{"name":"Rellación"},"route/ferry":{"name":"Ruta de ferry"},"shop":{"name":"Tienda"},"shop/alcohol":{"name":"Llicorería","terms":"bodega"},"shop/art":{"name":"Galería d'arte","terms":"marchante d'arte"},"shop/bakery":{"name":"Panadería"},"shop/beauty":{"name":"Cosmética"},"shop/beverages":{"name":"Venta de bebíes"},"shop/bicycle":{"name":"Tienda de ciclismu"},"shop/bookmaker":{"name":"Encuadernador"},"shop/boutique":{"name":"Boutique"},"shop/butcher":{"name":"Carnicería"},"shop/car":{"name":"Venta d'automóviles"},"shop/car_parts":{"name":"Repuestos d'automóviles"},"shop/car_repair":{"name":"Taller d'automóviles"},"shop/carpet":{"name":"Alfombres"},"shop/cheese":{"name":"Quesería"},"shop/chemist":{"name":"Droguería"},"shop/chocolate":{"name":"Chocolatería"},"shop/clothes":{"name":"Tienda de ropa"},"shop/coffee":{"name":"Venta de café"},"shop/computer":{"name":"Informática"},"shop/confectionery":{"name":"Venta de llambionaes"},"shop/convenience":{"name":"Tienda d'ultramarinos"},"shop/copyshop":{"name":"Copistería"},"shop/cosmetics":{"name":"Perfumería"},"shop/curtain":{"name":"Tienda de cortines"},"shop/dairy":{"name":"Llechería"},"shop/department_store":{"name":"Grandes almacenes"},"shop/doityourself":{"name":"Bricolage"},"shop/dry_cleaning":{"name":"Llimpieza en seco","terms":"tintorería,llavandería"},"shop/electronics":{"name":"Electrónica"},"shop/erotic":{"name":"Artículos eróticos","terms":"sex-shop"},"shop/fashion":{"name":"Tienda de moda"},"shop/florist":{"name":"Floristería","terms":"flores,florista,floristería"},"shop/frame":{"name":"Marcos"},"shop/funeral_directors":{"name":"Velatoriu","terms":"tanatoriu,funeraria"},"shop/furniture":{"name":"Mueblería"},"shop/garden_centre":{"name":"Xardinería"},"shop/gas":{"name":"Gas embotelláu"},"shop/gift":{"name":"Regalos"},"shop/greengrocer":{"name":"Frutería"},"shop/hairdresser":{"name":"Peluquería"},"shop/hardware":{"name":"Ferretería"},"shop/hearing_aids":{"name":"Audiólogu"},"shop/herbalist":{"name":"Herbolariu"},"shop/hifi":{"name":"Equipos de música"},"shop/houseware":{"name":"Menaxe del llar"},"shop/interior_decoration":{"name":"Decoración d'interiores"},"shop/kiosk":{"name":"Quioscu"},"shop/kitchen":{"name":"Diseñu de cocines"},"shop/laundry":{"name":"Llavandería"},"shop/leather":{"name":"Artículos de piel"},"shop/locksmith":{"name":"Cerraxería","terms":"cerradura,llaves"},"shop/lottery":{"name":"Loteríes","terms":"alministración de loteríes"},"shop/mall":{"name":"Centru comercial"},"shop/massage":{"name":"Masaxes"},"shop/medical_supply":{"name":"Tienda d'equipu médicu"},"shop/mobile_phone":{"name":"Telefonía móvil"},"shop/money_lender":{"name":"Prestamista","terms":"préstamos"},"shop/motorcycle":{"name":"Venta de motos"},"shop/music":{"name":"Tienda de música"},"shop/musical_instrument":{"name":"Instrumentos musicales","terms":"luthier"},"shop/nutrition_supplements":{"name":"Tienda de suplementos nutritivos"},"shop/optician":{"name":"Óptica","terms":"ópticu,optometrista"},"shop/outdoor":{"name":"Equipamientu d'aire llibre"},"shop/paint":{"name":"Tienda de pintures","terms":"barnices,droguería"},"shop/pastry":{"name":"Pastelería"},"shop/perfumery":{"name":"Perfumería"},"shop/pet":{"name":"Tienda de mascotes","terms":"paxarería"},"shop/photo":{"name":"Fotografía","terms":"fotógrafu,reveláu,material fotográficu"},"shop/pyrotechnics":{"name":"Venta de pirotecnia"},"shop/radiotechnics":{"name":"Componentes electrónicos"},"shop/religion":{"name":"Artículos relixosos"},"shop/scuba_diving":{"name":"Tienda de merguyu"},"shop/seafood":{"name":"Mariscos","terms":"pescadería"},"shop/shoes":{"name":"Zapatería"},"shop/sports":{"name":"Material deportivu"},"shop/stationery":{"name":"Papelería"},"shop/storage_rental":{"name":"Alquiler d'almacenes"},"shop/supermarket":{"name":"Supermercáu","terms":"supermercáu,super"},"shop/tailor":{"name":"Sastrería","terms":"sastre"},"shop/tattoo":{"name":"Tatuaxes","terms":"tatuador"},"shop/tea":{"name":"Tienda de tes","terms":"te,ferviatos"},"shop/ticket":{"name":"Venta d'entraes","terms":"taquilla,venta anticipada"},"shop/tiles":{"name":"Tienda d'azulexos"},"shop/tobacco":{"name":"Estancu","terms":"tabacos,fumador"},"shop/toys":{"name":"Xuguetería","terms":"xuguetes"},"shop/travel_agency":{"name":"Axencia de viaxes","terms":"viaxes"},"shop/tyres":{"name":"Neumáticos","terms":"ruedes,neumáticos"},"shop/vacant":{"name":"Tienda balera"},"shop/vacuum_cleaner":{"name":"Tienda d'aspiradores"},"shop/video":{"name":"Tienda de videos"},"shop/video_games":{"name":"Tienda de videuxuegos"},"shop/watches":{"name":"Reloxería"},"shop/water_sports":{"name":"Tienda de natación/deportes acuáticos"},"shop/weapons":{"name":"Armería"},"shop/window_blind":{"name":"Venta de persianes"},"shop/wine":{"name":"Bodega"},"tourism/aquarium":{"name":"Acuariu"},"tourism/artwork":{"name":"Obra d'arte"},"tourism/attraction":{"name":"Atracción turística"},"tourism/camp_site":{"name":"Campamentu"},"tourism/caravan_site":{"name":"Aparcaderu d'autocaravanes"},"tourism/gallery":{"name":"Galería d'arte"},"tourism/guest_house":{"name":"Pensión","terms":"pensión,agospiamientu,güespes"},"tourism/hostel":{"name":"Albergue"},"tourism/hotel":{"name":"Hotel"},"tourism/information":{"name":"Información"},"tourism/information/board":{"name":"Panel informativu"},"tourism/information/map":{"name":"Mapa"},"tourism/motel":{"name":"Motel"},"tourism/museum":{"name":"Muséu","terms":"muséu,esposición,galería"},"tourism/picnic_site":{"name":"Área recreativa"},"tourism/theme_park":{"name":"Parque temáticu"},"tourism/viewpoint":{"name":"Mirador"},"tourism/zoo":{"name":"Zoo"},"traffic_calming":{"name":"Calmu pal tráficu"},"traffic_calming/bump":{"name":"Llombu pa reducir velocidá"},"traffic_calming/chicane":{"name":"Chicane pal tráficu"},"traffic_calming/choker":{"name":"Estrechamientu de tráficu"},"traffic_calming/cushion":{"name":"Llombu pa reducir velocidá partíu"},"traffic_calming/dip":{"name":"Riegu"},"traffic_calming/hump":{"name":"Llombu anchu pa reducir velocidá"},"traffic_calming/rumble_strip":{"name":"Bandes sonores"},"type/boundary":{"name":"Llende"},"type/boundary/administrative":{"name":"Llende alministrativa"},"type/multipolygon":{"name":"Multipolígonu"},"type/restriction":{"name":"Torga"},"type/restriction/no_left_turn":{"name":"Xiru a la izquierda torgáu"},"type/restriction/no_right_turn":{"name":"Xiru a la drecha torgáu"},"type/route":{"name":"Ruta"},"type/route/bus":{"name":"Ruta d'autobús"},"type/route/detour":{"name":"Ruta d'esviación"},"type/route/ferry":{"name":"Ruta de ferry"},"type/route/hiking":{"name":"Ruta escursionista","terms":"senderismu,escursionismu"},"type/route/light_rail":{"name":"Ruta de tren llixeru"},"type/route/pipeline":{"name":"Ruta de tubería","terms":"ruta de tubería"},"type/route/piste":{"name":"Pista/Ruta d'esquí"},"type/route/power":{"name":"Ruta d'enerxía","terms":"ruta de llinia d'enerxía"},"type/route/road":{"name":"Ruta per carretera","terms":"ruta de carretera"},"type/route/subway":{"name":"Ruta de metro"},"type/route/train":{"name":"Ruta de tren","terms":"ruta ferroviaria"},"type/route/tram":{"name":"Ruta de tranvía"},"type/route_master":{"name":"Ruta maestra"},"type/site":{"name":"Llugar","terms":"puntu,allugamientu"},"type/waterway":{"name":"Vía acuática"},"waterway/boatyard":{"name":"Astilleru","terms":"carpinteru de ribera,calafate"},"waterway/canal":{"name":"Canal"},"waterway/dam":{"name":"Banzáu"},"waterway/ditch":{"name":"Riega"},"waterway/dock":{"name":"Astilleru / Dique secu"},"waterway/drain":{"name":"Drenaxe"},"waterway/fuel":{"name":"Bomba de combustible marín","terms":"gasolinera de combustible marín"},"waterway/river":{"name":"Ríu","terms":"ríu,regatu"},"waterway/sanitary_dump_station":{"name":"Vaciáu de sentines","terms":"toma de saneamientu"},"waterway/stream":{"name":"Regueru","terms":"regatu,regueru"},"waterway/stream_intermittent":{"name":"Cursu intermitente"},"waterway/water_point":{"name":"Agua potable pa barcos"},"waterway/waterfall":{"name":"Tabayón","terms":"cascada,semeira"},"waterway/weir":{"name":"Ñora","terms":"ñora,presa,banzáu"}}}}}
\ No newline at end of file
diff --git a/dist/translations/ay.json b/dist/translations/ay.json
deleted file mode 100644
index 88a2ff23..00000000
--- a/dist/translations/ay.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "ay": {}
-}
\ No newline at end of file
diff --git a/dist/translations/ay.min.json b/dist/translations/ay.min.json
deleted file mode 100644
index e6b46394..00000000
--- a/dist/translations/ay.min.json
+++ /dev/null
@@ -1 +0,0 @@
-{"ay":{}}
\ No newline at end of file
diff --git a/dist/translations/be.json b/dist/translations/be.json
index 29dddff0..7ddcf7ce 100644
--- a/dist/translations/be.json
+++ b/dist/translations/be.json
@@ -20,6 +20,9 @@
"category-path": {
"name": "Шлях"
},
+ "category-playground": {
+ "name": "Абсталяванне дзіцячай пляцоўкі"
+ },
"category-rail": {
"name": "Рэйкі"
},
@@ -50,14 +53,760 @@
},
"fields": {
"access": {
- "label": "Агульны доступ"
+ "label": "Агульны доступ",
+ "types": {
+ "access": "Усе"
+ }
+ },
+ "access_aisle": {
+ "label": "Тып"
+ },
+ "access_simple": {
+ "label": "Агульны доступ",
+ "options": {
+ "no": "Няма"
+ }
+ },
+ "addr/interpolation": {
+ "label": "Тып",
+ "options": {
+ "all": "Усе"
+ }
},
"address": {
"label": "Адрас",
"placeholders": {
"city": "Горад",
+ "postcode": "Паштовы індэкс",
"street": "Вуліца"
}
+ },
+ "advertising": {
+ "label": "Тып"
+ },
+ "aerialway": {
+ "label": "Тып"
+ },
+ "aeroway": {
+ "label": "Тып"
+ },
+ "aircraft/type": {
+ "label": "Тып"
+ },
+ "amenity": {
+ "label": "Тып"
+ },
+ "archaeological_site": {
+ "label": "Тып"
+ },
+ "area/highway": {
+ "label": "Тып"
+ },
+ "artwork_type": {
+ "label": "Тып"
+ },
+ "atm": {
+ "label": "Банкамат"
+ },
+ "attraction": {
+ "label": "Тып"
+ },
+ "baby_feeding": {
+ "options": {
+ "no": "Няма"
+ }
+ },
+ "barrier": {
+ "label": "Тып"
+ },
+ "barrier_planter": {
+ "options": {
+ "planter": "Так",
+ "undefined": "Не"
+ }
+ },
+ "basin": {
+ "label": "Тып"
+ },
+ "bicycle_parking": {
+ "label": "Тып"
+ },
+ "bicycle_road": {
+ "options": {
+ "undefined": "Не",
+ "yes": "Так"
+ }
+ },
+ "bin": {
+ "label": "Кошык для смецця"
+ },
+ "blind": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "board_type": {
+ "label": "Тып"
+ },
+ "bollard": {
+ "label": "Тып"
+ },
+ "boules": {
+ "label": "Тып"
+ },
+ "boundary": {
+ "label": "Тып"
+ },
+ "bridge": {
+ "label": "Тып",
+ "placeholder": "Па змаўчанні"
+ },
+ "bridge/support": {
+ "label": "Тып"
+ },
+ "bridge_combo": {
+ "label": "Тып"
+ },
+ "building/levels": {
+ "label": "Колькасць паверхаў"
+ },
+ "bunker_type": {
+ "label": "Тып"
+ },
+ "camp_site": {
+ "label": "Тып"
+ },
+ "castle_type": {
+ "label": "Тып"
+ },
+ "charge_fee": {
+ "placeholder": "1 BYN, 2 USD, 10 EUR…"
+ },
+ "charge_toll": {
+ "placeholder": "1 BYN, 2 USD, 10 EUR…"
+ },
+ "check_date": {
+ "placeholder": "ГГГГ-ММ-ДД"
+ },
+ "clothes": {
+ "label": "Адзенне",
+ "options": {
+ "babies": "Адзенне для немаўлят",
+ "children": "Дзіцячае адзенне",
+ "denim": "Джынсы",
+ "fur": "Футра",
+ "hats": "Капелюшы",
+ "maternity": "Адзенне для цяжарных",
+ "men": "Мужчынскае адзенне",
+ "socks": "Шкарпеткі",
+ "sports": "Спартыўнае адзенне",
+ "traditional": "Народны строй / Традыцыйнае адзенне",
+ "underwear": "Майткі",
+ "wedding": "Шлюбнае адзенне",
+ "women": "Жаночае адзенне"
+ }
+ },
+ "club": {
+ "label": "Тып"
+ },
+ "community_centre": {
+ "label": "Тып"
+ },
+ "construction": {
+ "label": "Тып"
+ },
+ "consulate": {
+ "label": "Тып"
+ },
+ "country_flag": {
+ "label": "Дзяржаўны сцяг"
+ },
+ "covered_no": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "craft": {
+ "label": "Тып"
+ },
+ "crossing": {
+ "label": "Тып"
+ },
+ "crossing/barrier": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "crossing_raised": {
+ "options": {
+ "table": "Так",
+ "undefined": "Не"
+ }
+ },
+ "cutting": {
+ "label": "Тып",
+ "placeholder": "Па змаўчанні"
+ },
+ "cycle_barrier": {
+ "label": "Тып"
+ },
+ "cycleway": {
+ "options": {
+ "no": {
+ "title": "Няма"
+ }
+ }
+ },
+ "departures_board": {
+ "options": {
+ "no": "Няма",
+ "yes": "Так"
+ }
+ },
+ "depot": {
+ "label": "Тып"
+ },
+ "description": {
+ "label": "Апісанне"
+ },
+ "diplomatic": {
+ "label": "Тып"
+ },
+ "disused/amenity": {
+ "label": "Тып"
+ },
+ "disused/railway": {
+ "label": "Тып"
+ },
+ "disused/shop": {
+ "label": "Тып"
+ },
+ "dock": {
+ "label": "Тып"
+ },
+ "door_type": {
+ "label": "Тып"
+ },
+ "electrified": {
+ "options": {
+ "no": "Не"
+ }
+ },
+ "embankment": {
+ "label": "Тып",
+ "placeholder": "Па змаўчанні"
+ },
+ "embassy": {
+ "label": "Тып"
+ },
+ "emergency_combo": {
+ "label": "Тып"
+ },
+ "emergency_ward_entrance": {
+ "label": "Тып"
+ },
+ "enforcement": {
+ "label": "Тып"
+ },
+ "entrance": {
+ "label": "Тып"
+ },
+ "fence_type": {
+ "label": "Тып"
+ },
+ "fire_mains": {
+ "options": {
+ "no": "Не"
+ }
+ },
+ "fire_sprinkler": {
+ "options": {
+ "no": "Не"
+ }
+ },
+ "flashing_lights": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "ford": {
+ "label": "Тып",
+ "placeholder": "Па змаўчанні"
+ },
+ "fountain": {
+ "label": "Тып"
+ },
+ "from": {
+ "label": "З"
+ },
+ "generator/type": {
+ "label": "Тып"
+ },
+ "government": {
+ "label": "Тып"
+ },
+ "guest_house": {
+ "label": "Тып"
+ },
+ "healthcare": {
+ "label": "Тып"
+ },
+ "highway": {
+ "label": "Тып"
+ },
+ "historic": {
+ "label": "Тып"
+ },
+ "holding_position/type": {
+ "label": "Тып"
+ },
+ "horse_riding": {
+ "options": {
+ "horse_riding": "Так",
+ "undefined": "Не"
+ }
+ },
+ "indoor": {
+ "label": "У памяшканні"
+ },
+ "indoor_type": {
+ "label": "Тып"
+ },
+ "industrial": {
+ "label": "Тып"
+ },
+ "information": {
+ "label": "Тып"
+ },
+ "internet_access": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "irrigation_pivot": {
+ "options": {
+ "pivot": "Так",
+ "undefined": "Не"
+ }
+ },
+ "kerb": {
+ "options": {
+ "no": {
+ "title": "Не"
+ },
+ "yes": {
+ "title": "Так"
+ }
+ }
+ },
+ "kerb/kerb_barrier": {
+ "label": "Тып"
+ },
+ "label": {
+ "label": "Назва"
+ },
+ "lamp_type": {
+ "label": "Тып"
+ },
+ "landuse": {
+ "label": "Тып"
+ },
+ "leisure": {
+ "label": "Тып"
+ },
+ "level_semi": {
+ "label": "Колькасць паверхаў"
+ },
+ "liaison": {
+ "label": "Тып"
+ },
+ "lifeguard": {
+ "label": "Тып"
+ },
+ "lift_gate/type": {
+ "label": "Тып"
+ },
+ "location_pool": {
+ "options": {
+ "indoor": "У памяшканні"
+ }
+ },
+ "man_made": {
+ "label": "Тып"
+ },
+ "manhole": {
+ "label": "Тып"
+ },
+ "map_type": {
+ "label": "Тып"
+ },
+ "marker": {
+ "label": "Тып"
+ },
+ "memorial": {
+ "label": "Тып"
+ },
+ "mooring": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "museum": {
+ "label": "Тып"
+ },
+ "note": {
+ "label": "Заўвага"
+ },
+ "office": {
+ "label": "Тып"
+ },
+ "oneway": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "oneway_yes": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "opening_date": {
+ "placeholder": "ГГГГ-ММ-ДД"
+ },
+ "organic": {
+ "options": {
+ "no": "Няма"
+ }
+ },
+ "parcel_pickup": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "parking": {
+ "label": "Тып"
+ },
+ "parking/side/parking": {
+ "options": {
+ "no": "Не"
+ }
+ },
+ "parking_entrance": {
+ "label": "Тып"
+ },
+ "parking_space": {
+ "label": "Тып"
+ },
+ "pipeline": {
+ "label": "Тып"
+ },
+ "piste/type": {
+ "label": "Тып"
+ },
+ "place": {
+ "label": "Тып"
+ },
+ "playground": {
+ "label": "Тып"
+ },
+ "playground/theme": {
+ "label": "Тэма"
+ },
+ "population/date": {
+ "placeholder": "ГГГГ-ММ-ДД"
+ },
+ "post_box/type": {
+ "label": "Тып"
+ },
+ "power": {
+ "label": "Тып"
+ },
+ "public_bookcase/type": {
+ "label": "Тып"
+ },
+ "pump": {
+ "options": {
+ "no": "Няма",
+ "yes": "Так"
+ }
+ },
+ "railway": {
+ "label": "Тып"
+ },
+ "ramp": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "recycling_accepts": {
+ "options": {
+ "clothes": "Адзенне"
+ }
+ },
+ "recycling_type": {
+ "label": "Тып"
+ },
+ "relation": {
+ "label": "Тып"
+ },
+ "residential": {
+ "label": "Тып"
+ },
+ "resort": {
+ "label": "Тып"
+ },
+ "restriction": {
+ "label": "Тып"
+ },
+ "roller_coaster/track": {
+ "label": "Тып"
+ },
+ "room": {
+ "label": "Тып"
+ },
+ "route": {
+ "label": "Тып"
+ },
+ "route_master": {
+ "label": "Тып"
+ },
+ "royal_cypher-GB": {
+ "options": {
+ "no": "Не"
+ }
+ },
+ "ruins": {
+ "label": "Тып"
+ },
+ "seamark/beacon_lateral/system": {
+ "options": {
+ "other": "Іншае"
+ }
+ },
+ "seamark/buoy_lateral/system": {
+ "options": {
+ "other": "Іншае"
+ }
+ },
+ "seamark/harbour/category_marina": {
+ "options": {
+ "marina": "Так",
+ "marina_no_facilities": "Не"
+ }
+ },
+ "second_hand": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "service": {
+ "label": "Тып"
+ },
+ "shelter_type": {
+ "label": "Тып"
+ },
+ "shop": {
+ "label": "Тып"
+ },
+ "siren/type": {
+ "label": "Тып",
+ "options": {
+ "other": "Іншае"
+ }
+ },
+ "site": {
+ "label": "Тып"
+ },
+ "social_facility": {
+ "label": "Тып"
+ },
+ "source": {
+ "options": {
+ "osm notes": "Заўвагі OpenStreetMap"
+ }
+ },
+ "stars": {
+ "label": "Зоркі"
+ },
+ "start_date": {
+ "placeholder": "ГГГГ-ММ-ДД"
+ },
+ "stile": {
+ "label": "Тып"
+ },
+ "street_cabinet": {
+ "label": "Тып"
+ },
+ "stroller": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "studio": {
+ "label": "Тып"
+ },
+ "substation": {
+ "label": "Тып"
+ },
+ "substation_pipeline": {
+ "label": "Тып"
+ },
+ "surveillance/type": {
+ "options": {
+ "camera": "Камера"
+ }
+ },
+ "swimming_pool": {
+ "label": "Тып"
+ },
+ "switch": {
+ "label": "Тып"
+ },
+ "takeaway": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "telecom": {
+ "label": "Тып"
+ },
+ "telescope/type": {
+ "label": "Тып"
+ },
+ "to": {
+ "label": "Па"
+ },
+ "toilets/menstrual_products": {
+ "options": {
+ "no": "Не"
+ }
+ },
+ "toilets/wheelchair": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "tomb": {
+ "label": "Тып"
+ },
+ "tourism": {
+ "label": "Тып"
+ },
+ "tower/type": {
+ "label": "Тып"
+ },
+ "townhall/type": {
+ "label": "Тып"
+ },
+ "trade": {
+ "label": "Тып"
+ },
+ "traffic_calming": {
+ "label": "Тып"
+ },
+ "traffic_signals": {
+ "label": "Тып"
+ },
+ "traffic_signals/sound": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "transformer": {
+ "label": "Тып"
+ },
+ "trench": {
+ "label": "Тып"
+ },
+ "tunnel": {
+ "label": "Тып",
+ "placeholder": "Па змаўчанні"
+ },
+ "tunnel_combo": {
+ "label": "Тып"
+ },
+ "two_sided": {
+ "options": {
+ "undefined": "Не",
+ "yes": "Так"
+ }
+ },
+ "valve": {
+ "label": "Тып"
+ },
+ "visibility": {
+ "label": "Бачнасць"
+ },
+ "wall": {
+ "label": "Тып"
+ },
+ "water": {
+ "label": "Тып"
+ },
+ "waterway": {
+ "label": "Тып"
+ },
+ "wetland": {
+ "label": "Тып"
+ },
+ "wheelchair": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ },
+ "windings/auto": {
+ "options": {
+ "no": "Не",
+ "yes": "Так"
+ }
+ }
+ },
+ "presets": {
+ "address": {
+ "name": "Адрас"
+ },
+ "amenity/atm": {
+ "name": "Банкамат"
+ },
+ "area": {
+ "name": "Мясцовасць"
+ },
+ "line": {
+ "name": "Лінія"
+ },
+ "place/city": {
+ "name": "Горад"
+ },
+ "place/square": {
+ "name": "Выраўняць вуглы"
+ },
+ "playground": {
+ "name": "Абсталяванне дзіцячай пляцоўкі"
+ },
+ "point": {
+ "name": "Пункт"
+ },
+ "tourism/information": {
+ "name": "Інфармацыя"
+ },
+ "tourism/information/map": {
+ "name": "Мапа"
}
}
}
diff --git a/dist/translations/be.min.json b/dist/translations/be.min.json
index 21c36612..a89f4c74 100644
--- a/dist/translations/be.min.json
+++ b/dist/translations/be.min.json
@@ -1 +1 @@
-{"be":{"presets":{"categories":{"category-barrier":{"name":"Перашкоды"},"category-building":{"name":"Будынкі"},"category-golf":{"name":"Аб'екты на полі для гольфа"},"category-landuse":{"name":"Аб'екты землекарыстання"},"category-natural":{"name":"Прыродныя аб'екты"},"category-path":{"name":"Шлях"},"category-rail":{"name":"Рэйкі"},"category-restriction":{"name":"Забароненыя аб'екты"},"category-road_major":{"name":"Асноўныя дарогі"},"category-road_minor":{"name":"Малазначныя дарогі"},"category-road_service":{"name":"Службовыя дарогі"},"category-route":{"name":"Аб'екты маршрутаў"},"category-utility":{"name":"Іншыя аб'екты"},"category-water":{"name":"Водныя паверхні"},"category-waterway":{"name":"Водныя шляхі"}},"fields":{"access":{"label":"Агульны доступ"},"address":{"label":"Адрас","placeholders":{"city":"Горад","street":"Вуліца"}}}}}}
\ No newline at end of file
+{"be":{"presets":{"categories":{"category-barrier":{"name":"Перашкоды"},"category-building":{"name":"Будынкі"},"category-golf":{"name":"Аб'екты на полі для гольфа"},"category-landuse":{"name":"Аб'екты землекарыстання"},"category-natural":{"name":"Прыродныя аб'екты"},"category-path":{"name":"Шлях"},"category-playground":{"name":"Абсталяванне дзіцячай пляцоўкі"},"category-rail":{"name":"Рэйкі"},"category-restriction":{"name":"Забароненыя аб'екты"},"category-road_major":{"name":"Асноўныя дарогі"},"category-road_minor":{"name":"Малазначныя дарогі"},"category-road_service":{"name":"Службовыя дарогі"},"category-route":{"name":"Аб'екты маршрутаў"},"category-utility":{"name":"Іншыя аб'екты"},"category-water":{"name":"Водныя паверхні"},"category-waterway":{"name":"Водныя шляхі"}},"fields":{"access":{"label":"Агульны доступ","types":{"access":"Усе"}},"access_aisle":{"label":"Тып"},"access_simple":{"label":"Агульны доступ","options":{"no":"Няма"}},"addr/interpolation":{"label":"Тып","options":{"all":"Усе"}},"address":{"label":"Адрас","placeholders":{"city":"Горад","postcode":"Паштовы індэкс","street":"Вуліца"}},"advertising":{"label":"Тып"},"aerialway":{"label":"Тып"},"aeroway":{"label":"Тып"},"aircraft/type":{"label":"Тып"},"amenity":{"label":"Тып"},"archaeological_site":{"label":"Тып"},"area/highway":{"label":"Тып"},"artwork_type":{"label":"Тып"},"atm":{"label":"Банкамат"},"attraction":{"label":"Тып"},"baby_feeding":{"options":{"no":"Няма"}},"barrier":{"label":"Тып"},"barrier_planter":{"options":{"planter":"Так","undefined":"Не"}},"basin":{"label":"Тып"},"bicycle_parking":{"label":"Тып"},"bicycle_road":{"options":{"undefined":"Не","yes":"Так"}},"bin":{"label":"Кошык для смецця"},"blind":{"options":{"no":"Не","yes":"Так"}},"board_type":{"label":"Тып"},"bollard":{"label":"Тып"},"boules":{"label":"Тып"},"boundary":{"label":"Тып"},"bridge":{"label":"Тып","placeholder":"Па змаўчанні"},"bridge/support":{"label":"Тып"},"bridge_combo":{"label":"Тып"},"building/levels":{"label":"Колькасць паверхаў"},"bunker_type":{"label":"Тып"},"camp_site":{"label":"Тып"},"castle_type":{"label":"Тып"},"charge_fee":{"placeholder":"1 BYN, 2 USD, 10 EUR…"},"charge_toll":{"placeholder":"1 BYN, 2 USD, 10 EUR…"},"check_date":{"placeholder":"ГГГГ-ММ-ДД"},"clothes":{"label":"Адзенне","options":{"babies":"Адзенне для немаўлят","children":"Дзіцячае адзенне","denim":"Джынсы","fur":"Футра","hats":"Капелюшы","maternity":"Адзенне для цяжарных","men":"Мужчынскае адзенне","socks":"Шкарпеткі","sports":"Спартыўнае адзенне","traditional":"Народны строй / Традыцыйнае адзенне","underwear":"Майткі","wedding":"Шлюбнае адзенне","women":"Жаночае адзенне"}},"club":{"label":"Тып"},"community_centre":{"label":"Тып"},"construction":{"label":"Тып"},"consulate":{"label":"Тып"},"country_flag":{"label":"Дзяржаўны сцяг"},"covered_no":{"options":{"no":"Не","yes":"Так"}},"craft":{"label":"Тып"},"crossing":{"label":"Тып"},"crossing/barrier":{"options":{"no":"Не","yes":"Так"}},"crossing_raised":{"options":{"table":"Так","undefined":"Не"}},"cutting":{"label":"Тып","placeholder":"Па змаўчанні"},"cycle_barrier":{"label":"Тып"},"cycleway":{"options":{"no":{"title":"Няма"}}},"departures_board":{"options":{"no":"Няма","yes":"Так"}},"depot":{"label":"Тып"},"description":{"label":"Апісанне"},"diplomatic":{"label":"Тып"},"disused/amenity":{"label":"Тып"},"disused/railway":{"label":"Тып"},"disused/shop":{"label":"Тып"},"dock":{"label":"Тып"},"door_type":{"label":"Тып"},"electrified":{"options":{"no":"Не"}},"embankment":{"label":"Тып","placeholder":"Па змаўчанні"},"embassy":{"label":"Тып"},"emergency_combo":{"label":"Тып"},"emergency_ward_entrance":{"label":"Тып"},"enforcement":{"label":"Тып"},"entrance":{"label":"Тып"},"fence_type":{"label":"Тып"},"fire_mains":{"options":{"no":"Не"}},"fire_sprinkler":{"options":{"no":"Не"}},"flashing_lights":{"options":{"no":"Не","yes":"Так"}},"ford":{"label":"Тып","placeholder":"Па змаўчанні"},"fountain":{"label":"Тып"},"from":{"label":"З"},"generator/type":{"label":"Тып"},"government":{"label":"Тып"},"guest_house":{"label":"Тып"},"healthcare":{"label":"Тып"},"highway":{"label":"Тып"},"historic":{"label":"Тып"},"holding_position/type":{"label":"Тып"},"horse_riding":{"options":{"horse_riding":"Так","undefined":"Не"}},"indoor":{"label":"У памяшканні"},"indoor_type":{"label":"Тып"},"industrial":{"label":"Тып"},"information":{"label":"Тып"},"internet_access":{"options":{"no":"Не","yes":"Так"}},"irrigation_pivot":{"options":{"pivot":"Так","undefined":"Не"}},"kerb":{"options":{"no":{"title":"Не"},"yes":{"title":"Так"}}},"kerb/kerb_barrier":{"label":"Тып"},"label":{"label":"Назва"},"lamp_type":{"label":"Тып"},"landuse":{"label":"Тып"},"leisure":{"label":"Тып"},"level_semi":{"label":"Колькасць паверхаў"},"liaison":{"label":"Тып"},"lifeguard":{"label":"Тып"},"lift_gate/type":{"label":"Тып"},"location_pool":{"options":{"indoor":"У памяшканні"}},"man_made":{"label":"Тып"},"manhole":{"label":"Тып"},"map_type":{"label":"Тып"},"marker":{"label":"Тып"},"memorial":{"label":"Тып"},"mooring":{"options":{"no":"Не","yes":"Так"}},"museum":{"label":"Тып"},"note":{"label":"Заўвага"},"office":{"label":"Тып"},"oneway":{"options":{"no":"Не","yes":"Так"}},"oneway_yes":{"options":{"no":"Не","yes":"Так"}},"opening_date":{"placeholder":"ГГГГ-ММ-ДД"},"organic":{"options":{"no":"Няма"}},"parcel_pickup":{"options":{"no":"Не","yes":"Так"}},"parking":{"label":"Тып"},"parking/side/parking":{"options":{"no":"Не"}},"parking_entrance":{"label":"Тып"},"parking_space":{"label":"Тып"},"pipeline":{"label":"Тып"},"piste/type":{"label":"Тып"},"place":{"label":"Тып"},"playground":{"label":"Тып"},"playground/theme":{"label":"Тэма"},"population/date":{"placeholder":"ГГГГ-ММ-ДД"},"post_box/type":{"label":"Тып"},"power":{"label":"Тып"},"public_bookcase/type":{"label":"Тып"},"pump":{"options":{"no":"Няма","yes":"Так"}},"railway":{"label":"Тып"},"ramp":{"options":{"no":"Не","yes":"Так"}},"recycling_accepts":{"options":{"clothes":"Адзенне"}},"recycling_type":{"label":"Тып"},"relation":{"label":"Тып"},"residential":{"label":"Тып"},"resort":{"label":"Тып"},"restriction":{"label":"Тып"},"roller_coaster/track":{"label":"Тып"},"room":{"label":"Тып"},"route":{"label":"Тып"},"route_master":{"label":"Тып"},"royal_cypher-GB":{"options":{"no":"Не"}},"ruins":{"label":"Тып"},"seamark/beacon_lateral/system":{"options":{"other":"Іншае"}},"seamark/buoy_lateral/system":{"options":{"other":"Іншае"}},"seamark/harbour/category_marina":{"options":{"marina":"Так","marina_no_facilities":"Не"}},"second_hand":{"options":{"no":"Не","yes":"Так"}},"service":{"label":"Тып"},"shelter_type":{"label":"Тып"},"shop":{"label":"Тып"},"siren/type":{"label":"Тып","options":{"other":"Іншае"}},"site":{"label":"Тып"},"social_facility":{"label":"Тып"},"source":{"options":{"osm notes":"Заўвагі OpenStreetMap"}},"stars":{"label":"Зоркі"},"start_date":{"placeholder":"ГГГГ-ММ-ДД"},"stile":{"label":"Тып"},"street_cabinet":{"label":"Тып"},"stroller":{"options":{"no":"Не","yes":"Так"}},"studio":{"label":"Тып"},"substation":{"label":"Тып"},"substation_pipeline":{"label":"Тып"},"surveillance/type":{"options":{"camera":"Камера"}},"swimming_pool":{"label":"Тып"},"switch":{"label":"Тып"},"takeaway":{"options":{"no":"Не","yes":"Так"}},"telecom":{"label":"Тып"},"telescope/type":{"label":"Тып"},"to":{"label":"Па"},"toilets/menstrual_products":{"options":{"no":"Не"}},"toilets/wheelchair":{"options":{"no":"Не","yes":"Так"}},"tomb":{"label":"Тып"},"tourism":{"label":"Тып"},"tower/type":{"label":"Тып"},"townhall/type":{"label":"Тып"},"trade":{"label":"Тып"},"traffic_calming":{"label":"Тып"},"traffic_signals":{"label":"Тып"},"traffic_signals/sound":{"options":{"no":"Не","yes":"Так"}},"transformer":{"label":"Тып"},"trench":{"label":"Тып"},"tunnel":{"label":"Тып","placeholder":"Па змаўчанні"},"tunnel_combo":{"label":"Тып"},"two_sided":{"options":{"undefined":"Не","yes":"Так"}},"valve":{"label":"Тып"},"visibility":{"label":"Бачнасць"},"wall":{"label":"Тып"},"water":{"label":"Тып"},"waterway":{"label":"Тып"},"wetland":{"label":"Тып"},"wheelchair":{"options":{"no":"Не","yes":"Так"}},"windings/auto":{"options":{"no":"Не","yes":"Так"}}},"presets":{"address":{"name":"Адрас"},"amenity/atm":{"name":"Банкамат"},"area":{"name":"Мясцовасць"},"line":{"name":"Лінія"},"place/city":{"name":"Горад"},"place/square":{"name":"Выраўняць вуглы"},"playground":{"name":"Абсталяванне дзіцячай пляцоўкі"},"point":{"name":"Пункт"},"tourism/information":{"name":"Інфармацыя"},"tourism/information/map":{"name":"Мапа"}}}}}
\ No newline at end of file
diff --git a/dist/translations/bg.json b/dist/translations/bg.json
index 6b9f343a..1bc30c9b 100644
--- a/dist/translations/bg.json
+++ b/dist/translations/bg.json
@@ -8,6 +8,9 @@
"category-building": {
"name": "Сгради"
},
+ "category-golf": {
+ "name": "Голф обекти"
+ },
"category-landuse": {
"name": "Обекти за земеползване"
},
@@ -58,6 +61,9 @@
"private": {
"title": "Частен"
},
+ "unknown": {
+ "title": "Неизвестно"
+ },
"yes": {
"title": "Разрешен"
}
@@ -77,7 +83,11 @@
"access_simple": {
"label": "Разрешен достъп",
"options": {
- "customers": "Само за клиенти"
+ "customers": "Само за клиенти",
+ "no": "Нищо",
+ "permissive": "Частичен",
+ "private": "Частен",
+ "unknown": "Неизвестно"
}
},
"addr/interpolation": {
@@ -91,7 +101,7 @@
"address": {
"label": "Адрес",
"placeholders": {
- "block_number": "Блок номер",
+ "block_number": "квартал номер",
"block_number!jp": "Блок №",
"city": "Град",
"city!jp": "Град/Град под 100 000/Село/Специален район в Токио",
@@ -108,25 +118,26 @@
"housenumber": "123",
"housenumber!jp": "Сграда Номер/Имот Номер",
"neighbourhood": "Квартал",
- "neighbourhood!jp": "Chōme/Aza/Koaza",
"place": "Място",
"postcode": "Пощенски код",
"province": "Област",
"province!jp": "Перфектура",
"quarter": "Жилищен квартал",
- "quarter!jp": "Ōaza/Machi",
"state": "Икономически район NUT2",
"street": "Улица",
"subdistrict": "Землище",
"subdistrict!vn": "Район/Комуна/Град под 10 000",
"suburb": "Квартал",
- "suburb!jp": "Район",
+ "town": "Град под 100 000",
"unit": "Административна единица"
}
},
"admin_level": {
"label": "Административно деление"
},
+ "advertising": {
+ "label": "Тип"
+ },
"aerialway": {
"label": "Вид"
},
@@ -170,6 +181,9 @@
"agrarian": {
"label": "Продукция"
},
+ "aircraft/type": {
+ "label": "Тип"
+ },
"amenity": {
"label": "Вид"
},
@@ -182,17 +196,33 @@
"animal_shelter": {
"label": "За животни"
},
+ "archaeological_site": {
+ "label": "Тип"
+ },
"architect": {
"label": "Архитект"
},
"area/highway": {
"label": "Вид"
},
+ "armrest": {
+ "options": {
+ "undefined": "Неизвестно"
+ }
+ },
"artist": {
"label": "Художник"
},
"artwork_type": {
- "label": "Вид"
+ "label": "Вид",
+ "options": {
+ "bust": "Бюст",
+ "graffiti": "Графити",
+ "installation": "Арт инсталация",
+ "mural": "Стенопис",
+ "sculpture": "Скулптура",
+ "statue": "Статуя"
+ }
},
"ascent": {
"label": "Общо изкачване"
@@ -200,16 +230,54 @@
"atm": {
"label": "Банкомат"
},
+ "attraction": {
+ "label": "Тип"
+ },
"baby_feeding": {
"options": {
"no": "Нищо"
}
},
+ "baby_seat": {
+ "label": "Бебешка седалка"
+ },
+ "backcountry": {
+ "label": "Ски бягане"
+ },
"backrest": {
"label": "Облегалка за гръб"
},
+ "bar": {
+ "label": "Бар"
+ },
"barrier": {
- "label": "Вид"
+ "label": "Вид",
+ "options": {
+ "bollard": "Колче",
+ "cattle_grid": "Тексаска мрежа",
+ "city_wall": "Градска стена",
+ "cycle_barrier": "Велосипедна преграда",
+ "ditch": "Канавка",
+ "entrance": "Вход",
+ "fence": "Ограда",
+ "gate": "Портал",
+ "guard_rail": "Мантинела",
+ "hedge": "Жив плет",
+ "jersey_barrier": "Джърси бариера",
+ "kerb": "Бордюр",
+ "kissing_gate": "Препятствие за животни",
+ "retaining_wall": "Подпорна стена",
+ "stile": "Стълби за преминаване през ограда",
+ "toll_booth": "Будка за тол такса",
+ "wall": "Стенен"
+ }
+ },
+ "barrier_planter": {
+ "label": "Преграда",
+ "options": {
+ "planter": "Да",
+ "undefined": "Не"
+ }
},
"basin": {
"label": "Тип"
@@ -217,11 +285,12 @@
"bath/open_air": {
"label": "Открит"
},
- "bath/sand_bath": {
- "label": "Пясъчна баня"
- },
"bath/type": {
- "label": "Вид"
+ "label": "Вид",
+ "options": {
+ "hot_spring": "Горещ минерален извор",
+ "lake": "Езеро"
+ }
},
"beauty": {
"options": {
@@ -236,6 +305,12 @@
"bicycle_parking": {
"label": "Вид"
},
+ "bicycle_road": {
+ "options": {
+ "undefined": "Не",
+ "yes": "Да"
+ }
+ },
"bin": {
"label": "Кошче за боклук"
},
@@ -255,7 +330,13 @@
}
},
"board_type": {
- "label": "Вид"
+ "label": "Вид",
+ "options": {
+ "history": "История"
+ }
+ },
+ "bollard": {
+ "label": "Тип"
},
"boules": {
"label": "Вид"
@@ -266,21 +347,59 @@
"brand": {
"label": "Търговска марка"
},
- "brewery": {
- "label": "Наливни бири"
- },
"bridge": {
"label": "Вид",
"placeholder": "По подразбиране"
},
+ "bridge/support": {
+ "label": "Тип"
+ },
+ "bridge_combo": {
+ "label": "Тип"
+ },
"building": {
- "label": "Сграда"
+ "label": "Сграда",
+ "options": {
+ "barn": "Хамбар",
+ "bungalow": "Бунгало",
+ "bunker": "Бункер",
+ "cabin": "Хижа",
+ "carport": "Навес за автомобили",
+ "cathedral": "Катедрала",
+ "church": "Църква",
+ "construction": "Сграда в строеж",
+ "cowshed": "Краварник",
+ "garage": "Гараж",
+ "garages": "Гаражи",
+ "ger": "Юрта",
+ "greenhouse": "Оранжерия",
+ "hangar": "Хангар",
+ "house": "Къща",
+ "industrial": "Индустриална сграда",
+ "office": "Офис сграда",
+ "residential": "Жилищна сграда",
+ "roof": "Покрив",
+ "school": "Училищна сграда",
+ "shed": "Навес",
+ "stable": "Конюшня"
+ }
+ },
+ "building/flats": {
+ "label": "Брой на апартаментите"
},
"building/levels": {
- "label": "Нива"
+ "label": "Нива",
+ "placeholder": "2, 4, 6..."
},
"building/levels/underground": {
- "label": "Подземни нива"
+ "label": "Подземни нива",
+ "placeholder": "2, 4, 6..."
+ },
+ "building/material": {
+ "label": "Материал"
+ },
+ "building/part": {
+ "label": "Част от сграда"
},
"bunker_type": {
"label": "Вид"
@@ -304,19 +423,26 @@
"panning": "Движеща се"
}
},
+ "camp_site": {
+ "label": "Тип"
+ },
"capacity": {
"label": "Капацитет",
"placeholder": "50, 100, 200..."
},
- "capacity/caravans": {
- "label": "Капацитет (каравани)"
+ "capacity/disabled_parking": {
+ "placeholder": "1, 2, 3..."
},
"capacity/persons": {
- "label": "Капацитет (души)"
+ "label": "Капацитет (души)",
+ "placeholder": "50, 100, 200..."
},
"capacity/tents": {
"label": "Капацитет (палатки)"
},
+ "capacity_volume": {
+ "placeholder": "50, 100, 200..."
+ },
"castle_type": {
"label": "Вид",
"options": {
@@ -326,8 +452,30 @@
"check_date": {
"placeholder": "ГГГГ-ММ-ДД"
},
+ "climbing/length": {
+ "label": "Дължина (Метри)"
+ },
"clothes": {
- "label": "Дрехи"
+ "label": "Дрехи",
+ "options": {
+ "babies": "Бебешко облекло",
+ "children": "Детско облекло",
+ "denim": "Дънкови облекла",
+ "fur": "Облекло от козина",
+ "hats": "Шапки",
+ "maternity": "Облекло за майчинство",
+ "men": "Мъжко обекло",
+ "oversize": "Облекло с голям размер",
+ "socks": "Чорапи",
+ "sports": "Спортно облекло",
+ "suits": "Костюми",
+ "swimwear": "Бански",
+ "traditional": "Традиционни облекла / народни носии",
+ "underwear": "Бельо",
+ "wedding": "Сватбени дрехи",
+ "women": "Дамски дрехи",
+ "workwear": "Работни дрехи"
+ }
},
"club": {
"label": "Вид"
@@ -335,6 +483,17 @@
"collection_times": {
"label": "График на събиране"
},
+ "collector": {
+ "label": "Предмети",
+ "options": {
+ "coins": "Монети",
+ "comics": "Комикси",
+ "stamps": "Марки"
+ }
+ },
+ "colour": {
+ "label": "Цвят"
+ },
"comment": {
"label": "Коментар на промяната",
"placeholder": "Кратко описание на вашите промени (изисква се)"
@@ -342,9 +501,23 @@
"communication_multi": {
"label": "Вид комуникации"
},
+ "community_centre": {
+ "label": "Тип"
+ },
"construction": {
"label": "Вид"
},
+ "consulate": {
+ "label": "Тип",
+ "options": {
+ "consular_agency": "Агенция за консулски услуги",
+ "consular_office": "Служба за консулски услуги",
+ "consulate_general": "Генерално консулство",
+ "honorary_consul": "Почетно консулство",
+ "residence": "Официална резиденция на консул",
+ "yes": "Консулство"
+ }
+ },
"contact/webcam": {
"label": "Уебкамера URL",
"placeholder": "http://example.com/"
@@ -352,38 +525,134 @@
"content": {
"label": "Съдържание"
},
+ "conveying": {
+ "label": "Посока на движение",
+ "options": {
+ "backward": "Назад",
+ "forward": "Напред",
+ "reversible": "Обръщаема"
+ }
+ },
"conveying_escalator": {
"label": "Ескалатор"
},
"country": {
"label": "Държава"
},
+ "couplings": {
+ "placeholder": "1, 2, 3..."
+ },
"covered": {
"label": "Покрит"
},
+ "covered_no": {
+ "options": {
+ "no": "Не",
+ "undefined": "Предполага се че е НЕ Е еднопосочна",
+ "yes": "Да"
+ }
+ },
"craft": {
"label": "Вид",
"options": {
- "carpenter": "Дърводелец"
+ "agricultural_engines": "Механик на селскостопански двигатели",
+ "beekeeper": "Пчелар",
+ "blacksmith": "Ковачница",
+ "brewery": "Пивоварна",
+ "carpenter": "Дърводелец",
+ "caterer": "Кетъринг",
+ "chimney_sweeper": "Коминочистач",
+ "clockmaker": "Часовникар",
+ "electrician": "Електротехник",
+ "gardener": "Градинар",
+ "key_cutter": "Изработка на ключове",
+ "locksmith": "Ключар",
+ "painter": "Бояджия",
+ "photographer": "Фотограф",
+ "photographic_laboratory": "Фотографска лаборатория",
+ "plumber": "Водопроводчик",
+ "sawmill": "Дъскорезница",
+ "sculptor": "Скулптор",
+ "shoemaker": "Обувщар",
+ "stonemason": "Каменоделец",
+ "tailor": "Шивач"
}
},
"crane/type": {
"label": "Вид кран",
"options": {
"floor-mounted_crane": "Конзолен кран",
+ "gantry_crane": "Мостов кран",
"portal_crane": "Портален кран",
+ "tower_crane": "Кулокран",
"travel_lift": "Мобилен кран"
}
},
"crop": {
- "label": "Посев"
+ "label": "Посев",
+ "options": {
+ "asparagus": "Аспержи",
+ "barley": "Ечемик",
+ "beet": "Цвекло",
+ "cassava": "Касава (маниока)",
+ "coffee": "Кафе",
+ "cotton": "Памук",
+ "cranberries": "Червени боровинки",
+ "flowers": "Цветя",
+ "grape": "Грозде",
+ "grass": "Трева",
+ "hop": "Хмел",
+ "lavender": "Лавандула",
+ "maize": "Царевица",
+ "potato": "Картофи",
+ "rape": "Рапица",
+ "rice": "Ориз",
+ "soy": "Соя",
+ "strawberry": "Ягоди",
+ "sugar_beet": "Захарно цвекло",
+ "sugarcane": "Захарна тръстика",
+ "sunflower": "Слънчоглед",
+ "tea": "Чай",
+ "tobacco": "Тютюн",
+ "vegetable": "Зеленчуци",
+ "wheat": "Пшеница"
+ }
},
"crossing": {
- "label": "Вид"
+ "label": "Вид",
+ "options": {
+ "traffic_signals": "Пешеходен светофар",
+ "uncontrolled": "Само маркировка",
+ "unmarked": "Няма маркировка или светофар"
+ }
+ },
+ "crossing/barrier": {
+ "label": "Бариерно рамо",
+ "options": {
+ "no": "Не",
+ "yes": "Да"
+ }
},
"crossing/island": {
"label": "Пешеходен остров"
},
+ "crossing/markings": {
+ "label": "Маркировка",
+ "options": {
+ "dashes": "Прекъснати напречни линии (за пешеходци)",
+ "dots": "Прекъснати напречни линии (за велосипедисти)",
+ "no": "Немаркирана",
+ "zebra": "Зебра",
+ "zebra:bicolour": "Зебра с редуващи се цветове"
+ }
+ },
+ "crossing_raised": {
+ "label": "Повдигнат",
+ "options": {
+ "table": "Да",
+ "undefined": "Не"
+ }
+ },
"cuisine": {
"label": "Кухня",
"options": {
@@ -392,7 +661,6 @@
"burger": "Бургери",
"chicken": "Пиле",
"chinese": "Китайско",
- "chocolate": "Шоколад",
"coffee_shop": "Кафене",
"donut": "Донати",
"fish": "Риба",
@@ -408,7 +676,7 @@
"korean": "Корейска",
"malaysian": "Малоазийска",
"mexican": "Мексиканска",
- "pankcake": "Палачинки",
+ "pancake": "Палачинки",
"pasta": "Паста",
"pizza": "Пица",
"polish": "Полска",
@@ -421,6 +689,7 @@
"spanish": "Испанска",
"sushi": "Суши",
"taiwanese": "Тайванска",
+ "tea": "Чай",
"thai": "Тайландска",
"turkish": "Турска",
"vietnamese": "Виетнамска"
@@ -433,6 +702,14 @@
"label": "Вид",
"placeholder": "По подразбиране"
},
+ "cycle_barrier": {
+ "label": "Тип"
+ },
+ "cycle_barrier/installation": {
+ "options": {
+ "fixed": "Фиксирана"
+ }
+ },
"cycle_network": {
"label": "Мрежа"
},
@@ -442,11 +719,9 @@
"lane": {
"description": "Велоалея отделена с маркировка от автомобилния трафик "
},
- "opposite": {
- "description": "Двупосочна велоалея по еднопосочна улица"
- },
- "opposite_lane": {
- "description": "Велоалея в посока обратна на автомобилния трафик"
+ "no": {
+ "description": "Без велоалея",
+ "title": "Нищо"
},
"share_busway": {
"description": "Велоалея споделена с бус лента"
@@ -473,17 +748,32 @@
},
"departures_board": {
"options": {
+ "no": "Нищо",
"realtime": "Електронно",
- "timetable": "Разписание"
+ "timetable": "Разписание",
+ "yes": "Да"
}
},
+ "depot": {
+ "label": "Тип"
+ },
"description": {
"label": "Описание"
},
+ "destination_waterway": {
+ "label": "До дестинация"
+ },
"devices": {
"label": "Устройства",
"placeholder": "1, 2, 3..."
},
+ "diplomatic": {
+ "label": "Тип",
+ "options": {
+ "consulate": "Консулство",
+ "embassy": "Посолство"
+ }
+ },
"direction": {
"label": "Посока (Градуси по часовниковата стрелка)",
"placeholder": "45, 90, 180, 270"
@@ -504,6 +794,9 @@
"clockwise": "По часовниковата стрелка"
}
},
+ "direction_point": {
+ "placeholder": "45, 90, 180, 270"
+ },
"direction_vertex": {
"options": {
"backward": "Назад",
@@ -517,9 +810,29 @@
"display": {
"label": "Дисплей"
},
+ "distance": {
+ "label": "Разстояние"
+ },
+ "disused/amenity": {
+ "label": "Тип"
+ },
+ "disused/railway": {
+ "label": "Тип"
+ },
+ "disused/shop": {
+ "label": "Тип"
+ },
"dock": {
"label": "Вид"
},
+ "dog": {
+ "options": {
+ "yes": "Разрешен"
+ }
+ },
+ "door_type": {
+ "label": "Тип"
+ },
"drive_through": {
"label": "Драйв-тру"
},
@@ -545,11 +858,29 @@
"label": "Вид",
"placeholder": "По подразбиране"
},
+ "embassy": {
+ "label": "Тип",
+ "options": {
+ "yes": "Посолство"
+ }
+ },
"emergency": {
"label": "Спешни случаи"
},
+ "emergency_combo": {
+ "label": "Тип"
+ },
+ "emergency_ward_entrance": {
+ "label": "Тип"
+ },
+ "enforcement": {
+ "label": "Тип"
+ },
"entrance": {
- "label": "Вид"
+ "label": "Вид",
+ "options": {
+ "shop": "Вход към магазин"
+ }
},
"except": {
"label": "Изключения"
@@ -564,23 +895,58 @@
"fence_type": {
"label": "Вид"
},
+ "fire_hydrant/position": {
+ "label": "Местоположение",
+ "options": {
+ "parking_lot": "Паркинг",
+ "sidewalk": "Тротоар"
+ }
+ },
"fire_hydrant/type": {
+ "label": "Форма",
"options": {
"pillar": "Надземен",
"underground": "Подземен",
"wall": "Стенен"
}
},
+ "fire_mains": {
+ "options": {
+ "no": "Не"
+ }
+ },
+ "fire_service_inlet": {
+ "label": "Форма",
+ "options": {
+ "pillar": "Надземен",
+ "underground": "Подземен паркинг",
+ "wall": "Стенен"
+ }
+ },
+ "fire_sprinkler": {
+ "options": {
+ "no": "Не"
+ }
+ },
"fitness_station": {
"label": "Вид оборудване"
},
"fixme": {
"label": "Поправи ме"
},
+ "flashing_lights": {
+ "options": {
+ "no": "Не",
+ "yes": "Да"
+ }
+ },
"ford": {
"label": "Вид",
"placeholder": "По подразбиране"
},
+ "fountain": {
+ "label": "Тип"
+ },
"frequency": {
"label": "Работна честота"
},
@@ -590,6 +956,12 @@
"fuel": {
"label": "Гориво"
},
+ "fuel/fuel_multi": {
+ "label": "Видове гориво",
+ "options": {
+ "diesel": "Дизел"
+ }
+ },
"gauge": {
"label": "Ширина"
},
@@ -603,14 +975,38 @@
"placeholder": "Неизвестен"
},
"generator/method": {
- "label": "Метод на генерация"
+ "label": "Метод на генерация",
+ "options": {
+ "anaerobic_digestion": "Анаеробно разграждане",
+ "combustion": "Изгаряне",
+ "fission": "Ядрено делене",
+ "fusion": "Ядрен синтез",
+ "gasification": "Газификация",
+ "photovoltaic": "Фотоволтаици",
+ "water-storage": "Язовир",
+ "wind_turbine": "Вятърна турбина"
+ }
},
"generator/output/electricity": {
"label": "Изходна мощност",
"placeholder": "50 MW, 100 MW, 200 MW..."
},
"generator/source": {
- "label": "Източник на енергия"
+ "label": "Източник на енергия",
+ "options": {
+ "battery": "Батерия / Акумулатор",
+ "biogas": "Биогаз",
+ "coal": "Въглища",
+ "diesel": "Дизел",
+ "gas": "Природен газ",
+ "gasoline": "Бензин",
+ "geothermal": "Геотермална енергия",
+ "nuclear": "Ядрена енергия",
+ "oil": "Петрол",
+ "tidal": "Енергия от морския прилив",
+ "wave": "Енергия от морски вълни",
+ "wind": "Вятър"
+ }
},
"generator/type": {
"label": "Вид"
@@ -621,6 +1017,9 @@
"grape_variety": {
"label": "Сорт грозде"
},
+ "guest_house": {
+ "label": "Тип"
+ },
"handicap": {
"label": "Увреждане",
"placeholder": "1-18"
@@ -632,57 +1031,135 @@
"placeholder": "#пример"
},
"healthcare": {
- "label": "Вид"
+ "label": "Вид",
+ "options": {
+ "alternative": "Алтернативна медицина",
+ "audiologist": "Аудиолог",
+ "dentist": "Стоматолог",
+ "hospice": "Хоспис",
+ "laboratory": "Медицинска лаборатория",
+ "optometrist": "Оптометрист",
+ "physiotherapist": "Физиотерапевт",
+ "podiatrist": "Ортопед",
+ "psychotherapist": "Психотерапевт",
+ "speech_therapist": "Логопед"
+ }
},
"healthcare/speciality": {
"label": "Направления",
"options": {
"acupuncture": "Акупунктура",
- "anaesthetics": "Анестизиология",
+ "anaesthetics": "Анестезиология",
+ "angiology": "Ангиология",
+ "aromatherapy": "Ароматерапия",
+ "behavior": "Поведенческа терапия",
+ "biochemistry": "Биохимия",
+ "biology": "Биология",
"blood_check": "Кръвни изследвания",
"cardiology": "Кардиология",
+ "cardiothoracic_surgery": "Кардиотораксиална хирургия ",
+ "clinical_pathology": "Клинична патология",
"community": "Обществено здраве",
+ "dental_oral_maxillo_facial_surgery": "Дентална, орална и лицево-челюстна хирургия",
"dermatology": "Дерматология",
+ "dermatovenereology": "Дерматовенерология",
+ "diabetology": "Диабетология",
"diagnostic_radiology": "Диагностична радиология",
"emergency": "Спешна медицина",
"endocrinology": "Ендокринология",
+ "gastroenterology": "Гастроентерология",
+ "general": "Обща практика",
+ "geriatrics": "Гериатрична медицина",
+ "gynaecology": "Акушерство и гинекология",
+ "haematology": "Хематология",
+ "hepatology": "Хепатология",
+ "homeopathy": "Хомеопатия",
"infectious_diseases": "Инфекциозни болести",
"intensive": "Интензивна грижа",
"internal": "Вътрешни болести",
+ "nephrology": "Нефрология",
"neurology": "Неврология",
+ "neuropsychiatry": "Невропсихиатрия",
"neurosurgery": "Неврохирургия",
+ "nuclear": "Ядрена медицина",
"oncology": "Онкология",
+ "ophthalmology": "Офтамология",
+ "orthodontics": "Ортодонтия",
+ "orthopaedics": "Ортопедична хирургия",
"otolaryngology": "Уши, нос гърло (УНГ)",
"paediatric_surgery": "Педиатрична хирургия",
"paediatrics": "Педиатрия",
"palliative": "Палиативни грижи",
+ "pathology": "Патология",
+ "physiatry": "Физическа медицина и рехабилитация",
"plastic_surgery": "Пластична хирургия",
+ "psychiatry": "Психиатрия",
+ "pulmonology": "Пулмология",
"radiology": "Радиология",
+ "radiotherapy": "Радиотерапия",
+ "reflexology": "Рефлексология",
+ "rheumatology": "Ревматология",
"shiatsu": "Шиатсу",
"stomatology": "Стоматология",
+ "surgery": "Обща хирургия",
+ "transplant": "Трансплантация",
"tropical": "Тропическа медицина",
- "urology": "Урология"
+ "urology": "Урология",
+ "vaccination": "Ваксинация",
+ "vascular_surgery": "Съдова хирургия"
}
},
"heating": {
"label": "Отопление"
},
"height": {
- "label": "Височина (Метри)"
+ "label": "Височина (метри)"
},
"highway": {
"label": "Вид"
},
+ "highway_cartpath": {
+ "options": {
+ "service": "Сервизна улица"
+ }
+ },
"historic": {
- "label": "Вид"
+ "label": "Вид",
+ "options": {
+ "archaeological_site": "Археологически обект",
+ "boundary_stone": "Граничен камък",
+ "building": "Историческа сграда",
+ "castle": "Замък",
+ "city_gate": "Градска порта",
+ "fort": "Исторически форт",
+ "memorial": "Мемориал",
+ "monument": "Паметник",
+ "railway": "ЖП транспорт",
+ "ruins": "Руини",
+ "tomb": "Гробница",
+ "wayside_cross": "Крайпътен кръст",
+ "wayside_shrine": "Крайпътен параклис"
+ }
},
"historic/civilization": {
"label": "Историческа цивилизация"
},
+ "holding_position/type": {
+ "label": "Тип",
+ "options": {
+ "runway": "Летателна писта"
+ }
+ },
"hoops": {
"label": "Кошове",
"placeholder": "1, 2, 4..."
},
+ "horse_riding": {
+ "options": {
+ "horse_riding": "Да",
+ "undefined": "Не"
+ }
+ },
"incline": {
"label": "Наклон"
},
@@ -695,6 +1172,12 @@
"indoor": {
"label": "Вътрешно разпределение"
},
+ "indoor_type": {
+ "label": "Тип"
+ },
+ "industrial": {
+ "label": "Тип"
+ },
"information": {
"label": "Вид"
},
@@ -713,8 +1196,49 @@
"yes": "Да"
}
},
+ "internet_access/fee": {
+ "label": "Такса за достъп до интернет",
+ "options": {
+ "customers": "Само за клиенти"
+ }
+ },
+ "irrigation_pivot": {
+ "options": {
+ "pivot": "Да",
+ "undefined": "Не"
+ }
+ },
"kerb": {
- "label": "Бордюр"
+ "label": "Бордюр",
+ "options": {
+ "flush": {
+ "description": "Скосен бордюр, който е на едно ниво с околната площ.",
+ "title": "Равен"
+ },
+ "lowered": {
+ "description": "Скосен бордюр, който може да се използва от хора в инвалидни колички, не по-висок от няколко сантиметра.",
+ "title": "Скосен"
+ },
+ "no": {
+ "description": "На това място няма бордюр.",
+ "title": "Не"
+ },
+ "raised": {
+ "description": "Повдигнат бордюр, който не може лесно да се използва от хора в инвалидни колички, по-висок от няколко сантиметра.",
+ "title": "Повдигнат"
+ },
+ "rolled": {
+ "description": "Повдигнат бордюр със заоблен ръб, който улеснява преминаването на автомобили или велосипеди, но не и на инвалидни колички.",
+ "title": "Заоблен"
+ },
+ "yes": {
+ "description": "На това място има някакъв бордюр, но не е известно дали е повдигнат, скосен, равен и т.н.",
+ "title": "Да"
+ }
+ }
+ },
+ "kerb/kerb_barrier": {
+ "label": "Тип"
},
"label": {
"label": "Надпис"
@@ -733,6 +1257,9 @@
"label": "Слой",
"placeholder": "0"
},
+ "layer_1": {
+ "placeholder": "0"
+ },
"leaf_cycle": {
"label": "Листен цикъл",
"options": {
@@ -764,12 +1291,32 @@
"level": {
"label": "Ниво"
},
+ "level_semi": {
+ "label": "Нива"
+ },
+ "liaison": {
+ "label": "Тип"
+ },
+ "lifeguard": {
+ "label": "Тип"
+ },
+ "lifeguard_check": {
+ "label": "Спасител"
+ },
+ "lift_gate/type": {
+ "label": "Тип"
+ },
"lit": {
"label": "Осветление"
},
"location": {
"label": "Местоположение"
},
+ "location_pool": {
+ "options": {
+ "indoor": "На закрито"
+ }
+ },
"man_made": {
"label": "Вид"
},
@@ -782,28 +1329,61 @@
"map_type": {
"label": "Вид"
},
- "material": {
- "label": "Материал"
+ "marker": {
+ "label": "Тип",
+ "options": {
+ "ground": {
+ "title": "Земя"
+ }
+ }
},
- "maxheight": {
- "label": "Максимална височина"
+ "material": {
+ "label": "Материал",
+ "options": {
+ "concrete": "Бетон",
+ "metal": "Метал",
+ "plastic": "Пластмаса",
+ "sand": "Пясък",
+ "wood": "Дървесина"
+ }
+ },
+ "max_age": {
+ "label": "Максимална възраст"
},
"maxspeed": {
"label": "Ограничение на скоростта",
"placeholder": "40, 50, 60..."
},
- "maxstay": {
- "label": "Максимален престой"
+ "maxspeed/advisory": {
+ "placeholder": "40, 50, 60..."
},
- "maxweight": {
- "label": "Максимално тегло"
+ "maxspeed/hgv": {
+ "placeholder": "40, 50, 60..."
},
"memorial": {
- "label": "Вид"
+ "label": "Вид",
+ "options": {
+ "bust": "Бюст",
+ "sculpture": "Скулптура",
+ "statue": "Статуя"
+ }
+ },
+ "min_age": {
+ "label": "Минимална възраст"
+ },
+ "mobile": {
+ "placeholder": "+31 42 123 4567"
},
"monitoring_multi": {
"label": "Мониторинг"
},
+ "mooring": {
+ "options": {
+ "no": "Не",
+ "private": "Частен",
+ "yes": "Да"
+ }
+ },
"mtb/scale": {
"label": "Трудност на трасе за планинско колоездене",
"options": {
@@ -824,8 +1404,8 @@
"mtb/scale/uphill": {
"label": "Трудност на изкачване при планинско колоездене",
"options": {
- "0": "0: Среден наклон <10%, чакъл/уплътнена зема, без препятствия",
- "1": "1: Среден наклон <15%, чакъл/уплътнена зема, малък брой дребни препятствия",
+ "0": "0: Среден наклон <10%, чакъл/уплътнена почва, без препятствия",
+ "1": "1: Среден наклон <15%, чакъл/уплътнена почва, малък брой дребни препятствия",
"2": "2: Среден наклон <20%, стабилна повърхност, камъни с големина на юмрук/корени",
"3": "3: Среден наклон <25%, разнообразна повърхност, камъни с големина на юмрук/клони",
"4": "4: Среден наклон <30%, лоши условия, големи скали/клони",
@@ -833,6 +1413,9 @@
},
"placeholder": "0, 1, 2, 3..."
},
+ "museum": {
+ "label": "Тип"
+ },
"name": {
"label": "Име",
"placeholder": "Популярно наименование (ако има такова)"
@@ -843,6 +1426,9 @@
"network": {
"label": "Мрежа"
},
+ "network/type": {
+ "label": "Вид мрежа"
+ },
"network_bicycle": {
"options": {
"icn": "Международна",
@@ -876,8 +1462,24 @@
"note": {
"label": "Бележка"
},
+ "nudism": {
+ "options": {
+ "designated": "По предназначение",
+ "no": "Забранен",
+ "permissive": "Частичен",
+ "yes": "Разрешен"
+ }
+ },
"office": {
- "label": "Вид"
+ "label": "Вид",
+ "options": {
+ "diplomatic": "Дипломатически офис",
+ "estate_agent": "Брокер",
+ "insurance": "Застрахователен офис",
+ "lawyer": "Адвокат",
+ "notary": "Нотариус",
+ "travel_agent": "Туристическа агенция"
+ }
},
"oneway": {
"label": "Еднопосочнoст",
@@ -902,11 +1504,17 @@
"placeholder": "ГГГГ-ММ-ДД"
},
"opening_hours": {
- "label": "Работно време"
+ "label": "Работно време",
+ "placeholder": "Неизвестно"
},
"operator": {
"label": "Оператор"
},
+ "organic": {
+ "options": {
+ "no": "Нищо"
+ }
+ },
"outdoor_seating": {
"label": "Места на открито"
},
@@ -914,36 +1522,100 @@
"label": "Пар",
"placeholder": "3, 4, 5..."
},
+ "parcel_pickup": {
+ "options": {
+ "no": "Не",
+ "undefined": "Предполага се, че Е еднопосочна",
+ "yes": "Да"
+ }
+ },
"park_ride": {
"label": "Буферен паркинг"
},
"parking": {
"label": "Вид",
"options": {
- "carports": "Навеси",
- "garage_boxes": "Гаражни клетки",
- "lane": "Паркинг лента",
- "multi-storey": "Многоетажен",
- "sheds": "Паянтов",
- "surface": "Наземен",
- "underground": "Подземен"
+ "carports": {
+ "title": "Навеси"
+ },
+ "garage_boxes": {
+ "title": "Гаражни клетки"
+ },
+ "lane": {
+ "title": "Паркинг лента"
+ },
+ "multi-storey": {
+ "title": "Многоетажен паркинг"
+ },
+ "sheds": {
+ "title": "Паянтов"
+ },
+ "surface": {
+ "title": "Наземен"
+ },
+ "underground": {
+ "title": "Подземен паркинг"
+ }
}
},
+ "parking/side/orientation": {
+ "types": {
+ "parking:left:orientation": "Лява",
+ "parking:right:orientation": "Дясна"
+ }
+ },
+ "parking/side/parking": {
+ "options": {
+ "lane": "Паркинг лента",
+ "no": "Не",
+ "yes": "Да (неуточнено)"
+ },
+ "types": {
+ "parking:left": "Лява",
+ "parking:right": "Дясна"
+ }
+ },
+ "parking_entrance": {
+ "label": "Тип"
+ },
+ "parking_space": {
+ "label": "Тип"
+ },
"payment_multi": {
- "label": "Начини за плащане"
+ "label": "Начини за плащане",
+ "options": {
+ "coins": "Монети"
+ }
},
"phases": {
"label": "Фази",
"placeholder": "1, 2, 3..."
},
"phone": {
- "label": "Телефон",
- "placeholder": "+31 42 123 4567"
+ "label": "Телефон"
+ },
+ "picnic_table": {
+ "label": "Пикник маса"
+ },
+ "pipeline": {
+ "label": "Тип"
},
"piste/difficulty": {
"label": "Трудност",
"placeholder": "Лесна, Средна, Трудна"
},
+ "piste/difficulty_downhill": {
+ "options": {
+ "easy": "Лесна (зелен кръг)"
+ },
+ "placeholder": "Лесна, Средна, Трудна"
+ },
+ "piste/difficulty_nordic": {
+ "placeholder": "Лесна, Средна, Трудна"
+ },
+ "piste/difficulty_skitour": {
+ "placeholder": "Лесна, Средна, Трудна"
+ },
"piste/grooming": {
"label": "Оформяне",
"options": {
@@ -955,6 +1627,20 @@
"skating": "Пързаляне с кънки"
}
},
+ "piste/grooming_downhill": {
+ "options": {
+ "classic": "Класическо",
+ "mogul": "Могул"
+ }
+ },
+ "piste/grooming_nordic": {
+ "options": {
+ "classic": "Класическо",
+ "classic+skating": "Класическо и пързаляне",
+ "scooter": "Скутер/Моторна шейна",
+ "skating": "Пързаляне с кънки"
+ }
+ },
"piste/type": {
"label": "Вид писта",
"options": {
@@ -978,9 +1664,18 @@
"plant/output/electricity": {
"placeholder": "500 MW, 1000 MW, 2000 MW..."
},
+ "playground": {
+ "label": "Тип"
+ },
"population": {
"label": "Население"
},
+ "population/date": {
+ "placeholder": "ГГГГ-ММ-ДД"
+ },
+ "post_box/type": {
+ "label": "Тип"
+ },
"power": {
"label": "Вид"
},
@@ -993,6 +1688,15 @@
"product": {
"label": "Продукция"
},
+ "public_bookcase/type": {
+ "label": "Тип"
+ },
+ "pump": {
+ "options": {
+ "no": "Нищо",
+ "yes": "Да"
+ }
+ },
"railway": {
"label": "Вид"
},
@@ -1007,6 +1711,12 @@
"forward": "Напред"
}
},
+ "ramp": {
+ "options": {
+ "no": "Не",
+ "yes": "Да"
+ }
+ },
"recycling_accepts": {
"label": "Приема",
"options": {
@@ -1022,6 +1732,12 @@
"shoes": "Обувки"
}
},
+ "recycling_type": {
+ "label": "Тип",
+ "options": {
+ "centre": "Център"
+ }
+ },
"ref": {
"label": "Референтен код"
},
@@ -1031,6 +1747,10 @@
"ref_aeroway_gate": {
"label": "Гейт номер"
},
+ "ref_disc_golf_hole": {
+ "label": "Дупка номер",
+ "placeholder": "1-18"
+ },
"ref_golf_hole": {
"label": "Дупка номер",
"placeholder": "1-18"
@@ -1042,7 +1762,7 @@
"label": "Път номер"
},
"ref_route": {
- "label": "Маршрут номер"
+ "label": "Номер на маршрута"
},
"ref_runway": {
"label": "Писта номер",
@@ -1061,12 +1781,59 @@
"religion": {
"label": "Религия"
},
+ "reservation": {
+ "label": "Резервации",
+ "options": {
+ "no": "Не се приемат",
+ "recommended": "Препоръчителна",
+ "required": "Задължителна",
+ "yes": "Приема се"
+ }
+ },
+ "residential": {
+ "label": "Тип"
+ },
+ "resort": {
+ "label": "Тип"
+ },
+ "resource": {
+ "label": "Ресурси",
+ "options": {
+ "aggregate": "Инертни материали",
+ "clay": "Глина",
+ "coal": "Въглища",
+ "gold": "Злато",
+ "gravel": "Чакъл",
+ "iron_ore": "Желязна руда",
+ "limestone": "Варовик",
+ "peat": "Торф",
+ "sand": "Пясък"
+ }
+ },
"restriction": {
"label": "Вид"
},
"restrictions": {
"label": "Ограничения при завиване"
},
+ "roller_coaster/track": {
+ "label": "Тип"
+ },
+ "roof/shape": {
+ "label": "Форма на покрива",
+ "options": {
+ "cone": "Конусен",
+ "dome": "Куполен",
+ "flat": "Плосък",
+ "gabled": "Двускатен",
+ "hipped": "Четирискатен",
+ "pyramidal": "Пирамиден",
+ "skillion": "Едноскатен"
+ }
+ },
+ "room": {
+ "label": "Тип"
+ },
"rooms": {
"label": "Стаи"
},
@@ -1076,9 +1843,23 @@
"route_master": {
"label": "Вид"
},
+ "royal_cypher-GB": {
+ "options": {
+ "no": "Не"
+ }
+ },
+ "ruins": {
+ "label": "Тип"
+ },
"sac_scale": {
"label": "Трудност на туристически маршрут"
},
+ "salt": {
+ "label": "Сол"
+ },
+ "seamark/beacon_isolated_danger/shape": {
+ "label": "Форма"
+ },
"seamark/beacon_lateral/colour": {
"label": "Цвят",
"options": {
@@ -1090,8 +1871,15 @@
"seamark/beacon_lateral/shape": {
"label": "Форма"
},
- "seamark/buoy_lateral/colour": {
+ "seamark/beacon_lateral/system": {
"options": {
+ "other": "Друг"
+ }
+ },
+ "seamark/buoy_lateral/colour": {
+ "label": "Цвят",
+ "options": {
+ "green": "Зелен",
"red": "Червен",
"red;green;red": "Червен-зелен-червен",
"red;white;red;white": "Червен-бял-червен-бял",
@@ -1102,21 +1890,55 @@
"seamark/buoy_lateral/shape": {
"label": "Форма"
},
+ "seamark/buoy_lateral/system": {
+ "options": {
+ "other": "Друг"
+ }
+ },
+ "seamark/harbour/category_marina": {
+ "options": {
+ "marina": "Да",
+ "marina_no_facilities": "Не"
+ }
+ },
"seats": {
- "label": "Места"
+ "label": "Места",
+ "placeholder": "2, 4, 6..."
+ },
+ "second_hand": {
+ "options": {
+ "no": "Не",
+ "yes": "Да"
+ }
},
"service": {
"label": "Вид",
"options": {
- "alley": "Алея"
+ "alley": "Алея",
+ "drive-through": "Обслужване, без да напускате автомобила",
+ "driveway": "Алея за коли към жилище/бизнес",
+ "emergency_access": "За достъп при спешни случаи",
+ "parking_aisle": "Паркинг алея"
}
},
"shelter": {
"label": "Навес"
},
+ "shelter_type": {
+ "label": "Тип"
+ },
+ "shoes": {
+ "label": "Обувки"
+ },
"shop": {
"label": "Вид"
},
+ "siren/type": {
+ "label": "Тип",
+ "options": {
+ "other": "Друг"
+ }
+ },
"site": {
"label": "Вид"
},
@@ -1126,12 +1948,51 @@
"outside": "Пушенето е разрешено на открито"
}
},
+ "social_facility": {
+ "label": "Тип",
+ "options": {
+ "ambulatory_care": "Амбулаторна грижа",
+ "food_bank": "Хранителна банка",
+ "nursing_home": "Старчески дом",
+ "shelter": "Навес"
+ }
+ },
"source": {
- "label": "Източници"
+ "label": "Източници",
+ "options": {
+ "osm notes": "OpenStreetMap бележки"
+ }
},
"sport": {
"label": "Спорт"
},
+ "sport/sport_ice": {
+ "label": "Спорт"
+ },
+ "sport/sport_pub": {
+ "label": "Спорт"
+ },
+ "sport/sport_racing_motor": {
+ "label": "Спорт"
+ },
+ "sport/sport_racing_nonmotor": {
+ "label": "Спорт"
+ },
+ "start_date": {
+ "placeholder": "ГГГГ-ММ-ДД"
+ },
+ "stile": {
+ "label": "Тип"
+ },
+ "street_cabinet": {
+ "label": "Тип"
+ },
+ "stroller": {
+ "options": {
+ "no": "Не",
+ "yes": "Да"
+ }
+ },
"structure": {
"label": "Структура",
"options": {
@@ -1142,11 +2003,48 @@
},
"placeholder": "Неизвестен"
},
+ "structure_canal": {
+ "label": "Структура",
+ "options": {
+ "bridge": "Мост",
+ "tunnel": "Тунел"
+ },
+ "placeholder": "Неизвестно"
+ },
+ "structure_power": {
+ "label": "Структура"
+ },
+ "structure_waterway": {
+ "label": "Структура",
+ "options": {
+ "tunnel": "Тунел"
+ },
+ "placeholder": "Неизвестно"
+ },
+ "studio": {
+ "label": "Тип"
+ },
+ "substance": {
+ "options": {
+ "fuel": "Гориво",
+ "gas": "Природен газ",
+ "water": "Чешма"
+ }
+ },
+ "substation": {
+ "label": "Тип"
+ },
+ "substation_pipeline": {
+ "label": "Тип",
+ "options": {
+ "measurement": "Измерване"
+ }
+ },
"supervised": {
"label": "Под наблюдение"
},
"surface": {
- "label": "Повърхност",
+ "label": "Настилка",
"options": {
"artificial_turf": "Изкуствена трева",
"asphalt": "Асфалт",
@@ -1167,36 +2065,203 @@
"woodchips": "Дървени стърготини"
}
},
+ "survey_point/purpose": {
+ "options": {
+ "both": "И двете"
+ }
+ },
+ "survey_point/structure": {
+ "label": "Структура",
+ "options": {
+ "block": "Бетонен блок"
+ }
+ },
+ "swimming_pool": {
+ "label": "Тип"
+ },
+ "switch": {
+ "label": "Тип"
+ },
+ "tactile_paving": {
+ "label": "Тактилна настилка"
+ },
"takeaway": {
"options": {
"no": "Не",
"yes": "Да"
}
},
+ "telecom": {
+ "label": "Тип",
+ "options": {
+ "data_center": "Център за данни"
+ }
+ },
+ "telescope/type": {
+ "label": "Тип"
+ },
+ "to": {
+ "label": "Към"
+ },
+ "toilets": {
+ "label": "Тоалетна"
+ },
+ "toilets/disposal": {
+ "options": {
+ "flush": "Равен"
+ }
+ },
+ "toilets/menstrual_products": {
+ "options": {
+ "no": "Не"
+ }
+ },
+ "toilets/wheelchair": {
+ "options": {
+ "no": "Не",
+ "yes": "Да"
+ }
+ },
+ "tomb": {
+ "label": "Тип"
+ },
"tourism": {
"label": "Вид"
},
+ "tower/construction": {
+ "label": "Строеж"
+ },
+ "tower/platforms": {
+ "placeholder": "1, 2, 3..."
+ },
+ "tower/type": {
+ "label": "Тип"
+ },
+ "townhall/type": {
+ "label": "Тип"
+ },
+ "trade": {
+ "label": "Тип"
+ },
+ "traffic_calming": {
+ "label": "Тип",
+ "options": {
+ "bump": "Гърбица (остра)",
+ "chicane": "Шикан",
+ "choked_table": "Стеснение с пътна табла",
+ "cushion": "Пътна възглавница",
+ "hump": "Гърбица (полегата)",
+ "mini_bumps": "Малки пътни неравности (кабъри)",
+ "rumble_strip": "Напречна шумна маркировка",
+ "table": "Пътна табла"
+ }
+ },
"traffic_sign": {
"label": "Пътен знак"
},
+ "traffic_sign/direction": {
+ "options": {
+ "backward": "Назад",
+ "both": "В двете посоки",
+ "forward": "Напред"
+ }
+ },
+ "traffic_signals": {
+ "label": "Тип"
+ },
+ "traffic_signals/direction": {
+ "options": {
+ "backward": "Назад",
+ "both": "В двете посоки",
+ "forward": "Напред"
+ }
+ },
+ "traffic_signals/sound": {
+ "options": {
+ "no": "Не",
+ "yes": "Да"
+ }
+ },
"trail_visibility": {
"label": "Видимост на туристическата пътека"
},
+ "transformer": {
+ "label": "Тип"
+ },
+ "trench": {
+ "label": "Тип"
+ },
+ "tunnel": {
+ "label": "Тип",
+ "placeholder": "По подразбиране"
+ },
+ "tunnel_combo": {
+ "label": "Тип"
+ },
+ "turning_circle": {
+ "label": "Форма"
+ },
+ "two_sided": {
+ "options": {
+ "undefined": "Не",
+ "yes": "Да"
+ }
+ },
+ "usage_rail": {
+ "options": {
+ "tourism": "Туризъм"
+ }
+ },
+ "utility": {
+ "options": {
+ "oil": "Петрол",
+ "power": "Енергетика",
+ "water": "Водна площ"
+ }
+ },
+ "valve": {
+ "label": "Тип"
+ },
"vehicles": {
"options": {
"bus": "Автобус",
+ "monorail": "Монорелсов път",
+ "subway": "Метро",
"tram": "Трамвай",
"trolleybus": "Тролейбус"
}
},
+ "vending": {
+ "options": {
+ "coffee": "Кафе",
+ "fuel": "Гориво",
+ "ice_cream": "Сладолед",
+ "pizza": "Пица",
+ "water": "Чешма"
+ }
+ },
+ "via": {
+ "label": "През"
+ },
"visibility": {
+ "label": "Видимост",
"options": {
"house": "До 5м (16 фута)"
}
},
+ "wall": {
+ "label": "Тип"
+ },
"water": {
"label": "Вид"
},
+ "water_source": {
+ "options": {
+ "pond": "Резервоар",
+ "river": "Река",
+ "stream": "Поток"
+ }
+ },
"waterway": {
"label": "Вид"
},
@@ -1207,7 +2272,11 @@
"label": "Вид"
},
"wheelchair": {
- "label": "Достъп за инвалиди"
+ "label": "Достъп за инвалиди",
+ "options": {
+ "no": "Не",
+ "yes": "Да"
+ }
},
"wikidata": {
"label": "Уикиданни"
@@ -1216,7 +2285,15 @@
"label": "Уикипедия"
},
"windings": {
- "label": "Намотки"
+ "label": "Намотки",
+ "placeholder": "1, 2, 3..."
+ },
+ "windings/auto": {
+ "options": {
+ "no": "Не",
+ "undefined": "Предполага се че е НЕ Е еднопосочна",
+ "yes": "Да"
+ }
}
},
"presets": {
@@ -1240,7 +2317,7 @@
"name": "Летателна писта"
},
"aeroway/taxiway": {
- "name": "Рольожка"
+ "name": "Рульожка"
},
"amenity": {
"name": "Услуги"
@@ -1287,6 +2364,13 @@
"amenity/courthouse": {
"name": "Съд"
},
+ "amenity/dentist": {
+ "name": "Стоматолог",
+ "terms": "зъб,зъби,зъболекар"
+ },
+ "amenity/doctors/podiatry": {
+ "name": "Ортопед"
+ },
"amenity/drinking_water": {
"name": "Чешма"
},
@@ -1294,10 +2378,6 @@
"name": "Учебен полигон",
"terms": "мото полигон,полигон за начинаещи шофьори"
},
- "amenity/driving_school": {
- "name": "Автошкола",
- "terms": "шофьорско училище,авто курсове,мото курсове,категория b,шофьорска книжка"
- },
"amenity/embassy": {
"name": "Посолство"
},
@@ -1314,25 +2394,19 @@
"name": "Бензиностанция"
},
"amenity/grave_yard": {
- "name": "Гробище"
+ "name": "Църковно гробище"
},
"amenity/hospital": {
"name": "Болница"
},
- "amenity/kindergarten": {
- "name": "Предучилищна / детска градина"
- },
- "amenity/language_school": {
- "name": "Езиково училище"
- },
"amenity/library": {
"name": "Библиотека"
},
"amenity/marketplace": {
"name": "Пазар"
},
- "amenity/music_school": {
- "name": "Музикално училище"
+ "amenity/nursing_home": {
+ "name": "Старчески дом"
},
"amenity/parking": {
"name": "Паркинг"
@@ -1437,8 +2511,8 @@
"amenity/restaurant/vietnamese": {
"name": "Виетнамски ресторант"
},
- "amenity/school": {
- "name": "Училище"
+ "amenity/shelter": {
+ "name": "Навес"
},
"amenity/shelter/gazebo": {
"name": "Беседка"
@@ -1471,17 +2545,15 @@
"amenity/theatre": {
"name": "Театър"
},
- "amenity/theatre/type/amphi": {
- "name": "Амфитеатър"
- },
"amenity/townhall": {
"name": "Кметство"
},
"amenity/townhall/city": {
"name": "Кметство"
},
- "amenity/university": {
- "name": "Университет"
+ "amenity/vehicle_inspection": {
+ "name": "ГТП",
+ "terms": "технически преглед,годишен технически преглед,годишни технически прегледи"
},
"amenity/vending_machine": {
"name": "Автомат за стоки"
@@ -1499,9 +2571,6 @@
"amenity/vending_machine/parking_tickets": {
"name": "Автомат за талони за паркиране"
},
- "amenity/waste_basket": {
- "name": "Кошче за боклук"
- },
"amenity/waste_disposal": {
"name": "Контейнер за боклук"
},
@@ -1557,9 +2626,6 @@
"barrier/kissing_gate": {
"name": "Препятствие за животни"
},
- "barrier/lift_gate": {
- "name": "Бариера"
- },
"barrier/retaining_wall": {
"name": "Подпорна стена"
},
@@ -1575,6 +2641,9 @@
"barrier/wall/noise_barrier": {
"name": "Шумоизолираща преграда"
},
+ "boundary": {
+ "name": "Граница"
+ },
"boundary/administrative": {
"name": "Административна граница"
},
@@ -1659,6 +2728,9 @@
"building_point": {
"name": "Сграда"
},
+ "cemetery/sector": {
+ "name": "Гробищен сектор"
+ },
"craft/agricultural_engines": {
"name": "Механик на селскостопански двигатели"
},
@@ -1686,6 +2758,9 @@
"craft/gardener": {
"name": "Градинар"
},
+ "craft/key_cutter": {
+ "name": "Изработка на ключове"
+ },
"craft/locksmith": {
"name": "Ключар"
},
@@ -1719,6 +2794,9 @@
"demolished/building": {
"name": "Наскоро разрушена сграда"
},
+ "embankment": {
+ "name": "Насип"
+ },
"emergency/defibrillator": {
"name": "Дефибрилатор"
},
@@ -1755,6 +2833,10 @@
"name": "Главен вход",
"terms": "основен вход"
},
+ "entrance/shop": {
+ "name": "Вход към магазин",
+ "terms": "врата,вход към търговски обект"
+ },
"healthcare/alternative": {
"name": "Алтернативна медицина"
},
@@ -1797,20 +2879,20 @@
"highway/crossing": {
"name": "Пешеходна пътека"
},
- "highway/crossing/marked": {
- "name": "Пешеходна пътека"
+ "highway/crossing/traffic_signals": {
+ "name": "Пешеходно пресичане със светофар"
},
"highway/crossing/uncontrolled": {
- "name": "Маркирана пешеходна пътека",
- "terms": "зебра"
+ "name": "Маркирана пешеходна пътека"
},
"highway/crossing/unmarked": {
- "name": "Немаркирана пешеходна пътека"
+ "name": "Немаркирана пешеходна пътека",
+ "terms": "продължение на тротоар"
},
"highway/cycleway": {
"name": "Велоалея"
},
- "highway/cycleway/crossing/marked": {
+ "highway/cycleway/crossing/uncontrolled": {
"name": "Маркирана велосипедна пътека"
},
"highway/cycleway/crossing/unmarked": {
@@ -1829,6 +2911,12 @@
"highway/footway/crossing": {
"name": "Пешеходна пътека"
},
+ "highway/footway/crossing/traffic_signals": {
+ "name": "Пешеходно пресичане със светофар"
+ },
+ "highway/footway/crossing/uncontrolled": {
+ "name": "Маркирана пешеходна пътека"
+ },
"highway/footway/crossing/unmarked": {
"name": "Немаркирана пешеходна пътека",
"terms": "продължение на тротоар"
@@ -1836,8 +2924,11 @@
"highway/footway/sidewalk": {
"name": "Тротоар"
},
+ "highway/footway/traffic_island": {
+ "name": "Пешеходен остров"
+ },
"highway/living_street": {
- "name": "Улица в жилищна зона"
+ "name": "Улица в жилищна зона (обозначена със пътен знак Д15)"
},
"highway/mini_roundabout": {
"name": "Малко кръгово кръстовище"
@@ -1851,6 +2942,10 @@
"highway/path": {
"name": "Пътека"
},
+ "highway/path/informal": {
+ "name": "Неформална пътека",
+ "terms": "неофициална пътека,кална пътека,пътечка"
+ },
"highway/pedestrian_line": {
"name": "Пешеходна улица"
},
@@ -1873,22 +2968,23 @@
"name": "Връзка с второкласен път"
},
"highway/service": {
- "name": "Сервизна улица"
+ "name": "Сервизна улица",
+ "terms": "обслужваща улица,обслужващ път"
},
"highway/service/alley": {
"name": "Тясна уличка между имоти"
},
"highway/service/drive-through": {
- "name": "Обслужване без напускане на автомобила"
+ "name": "Обслужване, без да напускате автомобила"
},
"highway/service/driveway": {
- "name": "Алея за коли към жилище"
+ "name": "Алея за коли към жилище/бизнес"
},
"highway/service/emergency_access": {
"name": "За достъп при спешни случаи"
},
"highway/service/parking_aisle": {
- "name": "Път в паркинг"
+ "name": "Паркинг алея"
},
"highway/speed_camera": {
"name": "Камера за скорост"
@@ -1960,7 +3056,7 @@
"name": "Исторически форт"
},
"historic/memorial": {
- "name": "Мемориална плоча"
+ "name": "Мемориал"
},
"historic/monument": {
"name": "Паметник"
@@ -1985,17 +3081,18 @@
},
"landuse/construction": {
"name": "Строителна площадка",
- "terms": "сграда,булдозер,строителна площадка,строителна зона,кран,събаряне,развитие,инфраструктура"
+ "terms": "сграда,булдозер,строителна площадка,строителна зона,кран,събаряне,развитие,инфраструктура,строеж"
},
"landuse/farm": {
- "name": "Земеделска земя"
+ "name": "Ферма"
},
"landuse/farmland": {
"name": "Земеделска земя",
"terms": "поле"
},
"landuse/farmyard": {
- "name": "Селскостопански двор"
+ "name": "Селскостопански двор",
+ "terms": "ткзс"
},
"landuse/grass": {
"name": "Трева"
@@ -2006,6 +3103,10 @@
"landuse/industrial": {
"name": "Индустриална зона"
},
+ "landuse/industrial/depot": {
+ "name": "Депо",
+ "terms": "гараж,автобус,камион,паркинг"
+ },
"landuse/industrial/scrap_yard": {
"name": "Вторични суровини",
"terms": "автоморга,скрап"
@@ -2029,15 +3130,30 @@
"landuse/military/barracks": {
"name": "Казарми"
},
+ "landuse/military/base": {
+ "name": "Военна база"
+ },
+ "landuse/military/base/navy": {
+ "name": "Военноморска база"
+ },
"landuse/orchard": {
"name": "Овощна градина"
},
+ "landuse/plant_nursery": {
+ "name": "Разсадник"
+ },
+ "landuse/pond": {
+ "name": "Резервоар"
+ },
"landuse/quarry": {
"name": "Кариера"
},
"landuse/railway": {
"name": "Железопътен коридор"
},
+ "landuse/reservoir": {
+ "name": "Язовир"
+ },
"landuse/residential": {
"name": "Жилищна зона"
},
@@ -2119,6 +3235,10 @@
"leisure/pitch/soccer": {
"name": "Футболно игрище"
},
+ "leisure/pitch/table_soccer": {
+ "name": "Маса за джаги",
+ "terms": "фусбол,маса за фусбол,футбол на маса"
+ },
"leisure/pitch/table_tennis": {
"name": "Тенис маса",
"terms": "тенис на маса,пинг понг"
@@ -2156,12 +3276,24 @@
"man_made/crane": {
"name": "Кран"
},
+ "man_made/crane/gantry_crane": {
+ "name": "Мостов кран"
+ },
+ "man_made/crane/portal_crane": {
+ "name": "Портален кран"
+ },
"man_made/cutline": {
"name": "Просека"
},
+ "man_made/embankment": {
+ "name": "Насип"
+ },
"man_made/lighthouse": {
"name": "Морски фар"
},
+ "man_made/mast/communication/radio": {
+ "name": "Радио кула"
+ },
"man_made/mast/communication/television": {
"name": "Телевизионна кула",
"terms": "тв кула"
@@ -2216,12 +3348,18 @@
"natural/heath": {
"name": "Малки храсти"
},
+ "natural/hot_spring": {
+ "name": "Горещ минерален извор"
+ },
"natural/peak": {
"name": "Връх"
},
"natural/reef": {
"name": "Риф"
},
+ "natural/sand": {
+ "name": "Пясък"
+ },
"natural/scrub": {
"name": "Шубрак"
},
@@ -2231,12 +3369,19 @@
"natural/tree": {
"name": "Дърво"
},
+ "natural/tree_stump": {
+ "name": "Пън на дърво",
+ "terms": "отсечено дърво,премахнато дърво"
+ },
"natural/volcano": {
"name": "Вулкан"
},
"natural/water": {
"name": "Водна площ"
},
+ "natural/water/basin": {
+ "name": "Басейн"
+ },
"natural/water/canal": {
"name": "Канал"
},
@@ -2286,6 +3431,9 @@
"office/lawyer/notary": {
"name": "Нотариус"
},
+ "office/notary": {
+ "name": "Нотариус"
+ },
"office/travel_agent": {
"name": "Туристическа агенция"
},
@@ -2310,12 +3458,18 @@
"place/neighbourhood": {
"name": "Квартал"
},
+ "place/square": {
+ "name": "Площад"
+ },
"place/town": {
"name": "Град под 100 000"
},
"place/village": {
"name": "Село"
},
+ "playground": {
+ "name": "Оборудване за детски площадки"
+ },
"playground/sandpit": {
"name": "Пясъчник"
},
@@ -2339,6 +3493,9 @@
"name": "Соларен панел",
"terms": "слънчев панел,фотоволтаичен панел"
},
+ "power/generator/method/photovoltaic/building/roof": {
+ "name": "Навес със слънчеви панели"
+ },
"power/generator/method/photovoltaic/location/roof": {
"name": "Слънчеви панели на покрив"
},
@@ -2366,12 +3523,16 @@
"name": "ВЕЦ",
"terms": "водноелектрическа централа,водно-електрическа централа,водно електрическа централа"
},
+ "power/plant/source/method/photovoltaic": {
+ "name": "Фотоволтаична ферма",
+ "terms": "фотоволтаици,фотоволтаична централа"
+ },
"power/plant/source/nuclear": {
"name": "АЕЦ"
},
"power/plant/source/solar": {
"name": "Соларна електроцентрала",
- "terms": "слънчева,фотоволтаична"
+ "terms": "слънчева,слънчева електроцентрала"
},
"power/plant/source/waste": {
"name": "Инсинератор за отпадъци",
@@ -2429,6 +3590,9 @@
"public_transport/platform/trolleybus_point": {
"name": "Тролейбусна спирка"
},
+ "public_transport/station_bus": {
+ "name": "Автостанция / терминал"
+ },
"public_transport/station_subway": {
"name": "Метростанция"
},
@@ -2445,22 +3609,46 @@
"railway/disused": {
"name": "Закрита железопътна линия"
},
+ "railway/funicular": {
+ "name": "Релсов път на фуникуляр"
+ },
+ "railway/halt": {
+ "name": "Железопътна спирка (по желание)"
+ },
"railway/level_crossing": {
"name": "ЖП прелез",
"terms": "железопътен прелез"
},
+ "railway/monorail": {
+ "name": "Монорелсов път"
+ },
+ "railway/monorail/hanging": {
+ "name": "Окачен монорелсов път"
+ },
+ "railway/narrow_gauge": {
+ "name": "Теснолиниеен железопътен път"
+ },
"railway/platform": {
"name": "Перон"
},
+ "railway/preserved": {
+ "name": "Историческа железопътна линия"
+ },
"railway/rail": {
- "name": "ЖП линия"
+ "name": "Железопътна линия"
+ },
+ "railway/rail/highspeed": {
+ "name": "Релсов път за високоскоростни влакове"
},
"railway/signal": {
"name": "Светофор",
"terms": "железопътен сигнал"
},
"railway/station": {
- "name": "ЖП гара"
+ "name": "Гара"
+ },
+ "railway/subway": {
+ "name": "Релсов път на метрото"
},
"railway/subway_entrance": {
"name": "Вход на метростанция"
@@ -2469,16 +3657,19 @@
"name": "Железопътна стрелка"
},
"railway/tram": {
- "name": "Трамвайни релси"
+ "name": "Трамваен релсов път",
+ "terms": "трамвайно трасе,трамвайни релси"
},
"relation": {
"name": "Релация"
},
"route/ferry": {
- "name": "Фериботна връзка"
+ "name": "Фериботна връзка",
+ "terms": "фериботен маршрут"
},
"shop": {
- "name": "Магазин"
+ "name": "Магазин",
+ "terms": "търговски обект"
},
"shop/alcohol": {
"name": "Магазин за алкохол"
@@ -2526,6 +3717,10 @@
"shop/butcher": {
"name": "Колбаси"
},
+ "shop/candles": {
+ "name": "Магазин за свещи",
+ "terms": "восък"
+ },
"shop/car": {
"name": "Автокъща",
"terms": "коли,автомобили"
@@ -2569,7 +3764,8 @@
"name": "Магазин за хранителни стоки"
},
"shop/dairy": {
- "name": "Млекарница"
+ "name": "Млекарница",
+ "terms": "мляко,яйца,сирене,кашкавал,мандра"
},
"shop/department_store": {
"name": "Универсален магазин"
@@ -2583,6 +3779,10 @@
"shop/dry_cleaning": {
"name": "Химическо чистене"
},
+ "shop/e-cigarette": {
+ "name": "Магазин за електронни цигари",
+ "terms": "вейп,vape"
+ },
"shop/electronics": {
"name": "Магазин за електроника"
},
@@ -2694,6 +3894,9 @@
"shop/supermarket": {
"name": "Супермаркет"
},
+ "shop/tailor": {
+ "name": "Шивач"
+ },
"shop/toys": {
"name": "Магазин за играчки"
},
@@ -2704,15 +3907,26 @@
"name": "Магазин за автомобилни гуми"
},
"shop/vacant": {
- "name": "Свободна търговска площ"
+ "name": "Свободна търговска площ",
+ "terms": "вакантен магазин"
},
"shop/video": {
"name": "Видеотека"
},
+ "shop/wigs": {
+ "name": "Магазин за перуки"
+ },
"shop/window_blind": {
"name": "Магазин за щори",
"terms": "ролетни щори"
},
+ "shop/wine": {
+ "name": "Магазин за вино",
+ "terms": "изба"
+ },
+ "shop/yes": {
+ "name": "Магазин (неуточнен тип)"
+ },
"telecom/data_center": {
"name": "Център за данни"
},
@@ -2789,18 +4003,33 @@
"tourism/zoo": {
"name": "Зоологическа градина"
},
+ "traffic_calming/bump": {
+ "name": "Гърбица (остра)",
+ "terms": "изкуствена неравост"
+ },
"traffic_calming/chicane": {
"name": "Шикан",
"terms": "изкуствени кривини на пътя"
},
+ "traffic_calming/cushion": {
+ "name": "Пътна възглавница",
+ "terms": "изкуствена неравост"
+ },
+ "traffic_calming/hump": {
+ "name": "Гърбица (полегата)",
+ "terms": "изкуствена неравост"
+ },
"traffic_calming/mini_bumps": {
- "name": "Мини неравности за скорост",
+ "name": "Малки пътни неравности (кабъри)",
"terms": "мини бабуни,мини топчета,малки бабуни,малки неравности за скорост"
},
"traffic_calming/rumble_strip": {
"name": "Шумяща напречна маркировка",
"terms": "шумяща маркировка"
},
+ "traffic_calming/table": {
+ "name": "Пътна табла"
+ },
"traffic_sign": {
"name": "Пътен знак"
},
@@ -2843,6 +4072,9 @@
"type/route": {
"name": "Маршрут"
},
+ "type/route/bicycle": {
+ "name": "Велосипеден маршрут"
+ },
"type/route/bus": {
"name": "Автобусен маршрут"
},
@@ -2856,24 +4088,36 @@
"type/route/foot": {
"name": "Пешеходен маршрут"
},
+ "type/route/light_rail": {
+ "name": "Маршрут на леко метро"
+ },
"type/route/pipeline": {
"name": "Трасе на тръбопровод"
},
"type/route/power": {
"name": "Трасе на електропровод"
},
+ "type/route/railway": {
+ "name": "Маршрут на железопътна линия"
+ },
"type/route/road": {
"name": "Път"
},
"type/route/train": {
- "name": "Железопътен маршрут"
+ "name": "Маршрут на влак"
},
"type/route/tram": {
"name": "Трамваен маршрут"
},
+ "type/route/trolleybus": {
+ "name": "Тролейбусен маршрут"
+ },
"type/route_master": {
"name": "Маршрутна схема"
},
+ "type/waterway": {
+ "name": "Води"
+ },
"waterway/canal": {
"name": "Канал"
},
diff --git a/dist/translations/bg.min.json b/dist/translations/bg.min.json
index c40a1575..7e49b4c4 100644
--- a/dist/translations/bg.min.json
+++ b/dist/translations/bg.min.json
@@ -1 +1 @@
-{"bg":{"presets":{"categories":{"category-barrier":{"name":"Прегради"},"category-building":{"name":"Сгради"},"category-landuse":{"name":"Обекти за земеползване"},"category-natural":{"name":"Природни обекти"},"category-path":{"name":"Пътеки"},"category-playground":{"name":"Оборудване за детски площадки"},"category-rail":{"name":"Железопътни обекти"},"category-road_major":{"name":"Главни пътища"},"category-road_service":{"name":"Обслужващи пътища"},"category-water":{"name":"Водни тела"},"category-waterway":{"name":"Водни пътища"}},"fields":{"access":{"label":"Разрешен достъп","options":{"designated":{"title":"По предназначение"},"destination":{"title":"До дестинация"},"dismount":{"title":"Слизане"},"no":{"title":"Забранен"},"permissive":{"title":"Частичен"},"private":{"title":"Частен"},"yes":{"title":"Разрешен"}},"placeholder":"Неопределен","types":{"access":"Всички","bicycle":"Велосипеди","foot":"Пешеходен","horse":"Коне","motor_vehicle":"МПС"}},"access_aisle":{"label":"Тип"},"access_simple":{"label":"Разрешен достъп","options":{"customers":"Само за клиенти"}},"addr/interpolation":{"label":"Тип","options":{"all":"Всички","even":"Четни","odd":"Нечетни"}},"address":{"label":"Адрес","placeholders":{"block_number":"Блок номер","block_number!jp":"Блок №","city":"Град","city!jp":"Град/Град под 100 000/Село/Специален район в Токио","city!vn":"Град/Град под 100 000","conscriptionnumber":"123","country":"Държава","county":"Област","county!jp":"Община","district":"Община","district!vn":"Арондисман/Град/Община","floor":"Етаж","hamlet":"Махала","housename":"Къща","housenumber":"123","housenumber!jp":"Сграда Номер/Имот Номер","neighbourhood":"Квартал","neighbourhood!jp":"Chōme/Aza/Koaza","place":"Място","postcode":"Пощенски код","province":"Област","province!jp":"Перфектура","quarter":"Жилищен квартал","quarter!jp":"Ōaza/Machi","state":"Икономически район NUT2","street":"Улица","subdistrict":"Землище","subdistrict!vn":"Район/Комуна/Град под 10 000","suburb":"Квартал","suburb!jp":"Район","unit":"Административна единица"}},"admin_level":{"label":"Административно деление"},"aerialway":{"label":"Вид"},"aerialway/access":{"label":"Достъп","options":{"both":"И двете","entry":"Качване","exit":"Слизане"}},"aerialway/bubble":{"label":"Ветробран"},"aerialway/capacity":{"label":"Капацитет (на час)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Продължителност (минути)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Отоплен"},"aerialway/occupancy":{"label":"Места","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Достъп (лято)","options":{"both":"И двете","entry":"Качване","exit":"Слизане"}},"aeroway":{"label":"Вид"},"agrarian":{"label":"Продукция"},"amenity":{"label":"Вид"},"animal_boarding":{"label":"За животни"},"animal_breeding":{"label":"За животни"},"animal_shelter":{"label":"За животни"},"architect":{"label":"Архитект"},"area/highway":{"label":"Вид"},"artist":{"label":"Художник"},"artwork_type":{"label":"Вид"},"ascent":{"label":"Общо изкачване"},"atm":{"label":"Банкомат"},"baby_feeding":{"options":{"no":"Нищо"}},"backrest":{"label":"Облегалка за гръб"},"barrier":{"label":"Вид"},"basin":{"label":"Тип"},"bath/open_air":{"label":"Открит"},"bath/sand_bath":{"label":"Пясъчна баня"},"bath/type":{"label":"Вид"},"beauty":{"options":{"cosmetics":"Козметик","nails":"Маникюр / педикюр","tanning":"Солариум"}},"bench":{"label":"Пейка"},"bicycle_parking":{"label":"Вид"},"bin":{"label":"Кошче за боклук"},"blind":{"options":{"no":"Не","yes":"Да"}},"blood_components":{"label":"Кръвни съставки","options":{"plasma":"плазма","platelets":"тромбоцити","stemcells":"проби от стволови клетки","whole":"Цяла кръв"}},"board_type":{"label":"Вид"},"boules":{"label":"Вид"},"boundary":{"label":"Вид"},"brand":{"label":"Търговска марка"},"brewery":{"label":"Наливни бири"},"bridge":{"label":"Вид","placeholder":"По подразбиране"},"building":{"label":"Сграда"},"building/levels":{"label":"Нива"},"building/levels/underground":{"label":"Подземни нива"},"bunker_type":{"label":"Вид"},"cables":{"label":"Кабели","placeholder":"1, 2, 3..."},"camera/direction":{"label":"Посока (Градуси по посока на часовниковата стрелка)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"Монтаж на видеокамера"},"camera/type":{"label":"Вид видеокамера","options":{"dome":"Куполна","fixed":"Фиксирана","panning":"Движеща се"}},"capacity":{"label":"Капацитет","placeholder":"50, 100, 200..."},"capacity/caravans":{"label":"Капацитет (каравани)"},"capacity/persons":{"label":"Капацитет (души)"},"capacity/tents":{"label":"Капацитет (палатки)"},"castle_type":{"label":"Вид","options":{"palace":"Палат"}},"check_date":{"placeholder":"ГГГГ-ММ-ДД"},"clothes":{"label":"Дрехи"},"club":{"label":"Вид"},"collection_times":{"label":"График на събиране"},"comment":{"label":"Коментар на промяната","placeholder":"Кратко описание на вашите промени (изисква се)"},"communication_multi":{"label":"Вид комуникации"},"construction":{"label":"Вид"},"contact/webcam":{"label":"Уебкамера URL","placeholder":"http://example.com/"},"content":{"label":"Съдържание"},"conveying_escalator":{"label":"Ескалатор"},"country":{"label":"Държава"},"covered":{"label":"Покрит"},"craft":{"label":"Вид","options":{"carpenter":"Дърводелец"}},"crane/type":{"label":"Вид кран","options":{"floor-mounted_crane":"Конзолен кран","portal_crane":"Портален кран","travel_lift":"Мобилен кран"}},"crop":{"label":"Посев"},"crossing":{"label":"Вид"},"crossing/island":{"label":"Пешеходен остров"},"cuisine":{"label":"Кухня","options":{"american":"Американска","asian":"Азиатска","burger":"Бургери","chicken":"Пиле","chinese":"Китайско","chocolate":"Шоколад","coffee_shop":"Кафене","donut":"Донати","fish":"Риба","french":"Френска","german":"Немска","greek":"Гръцка","ice_cream":"Сладолед","indian":"Индийска","indonesian":"Индонезийска","italian":"Италианска","japanese":"Японска","kebab":"Дюнери","korean":"Корейска","malaysian":"Малоазийска","mexican":"Мексиканска","pankcake":"Палачинки","pasta":"Паста","pizza":"Пица","polish":"Полска","portuguese":"Португалска","regional":"Местна","russian":"Руска","salad":"Салати","sandwich":"Сандвич","seafood":"Морска храна","spanish":"Испанска","sushi":"Суши","taiwanese":"Тайванска","thai":"Тайландска","turkish":"Турска","vietnamese":"Виетнамска"}},"currency_multi":{"label":"Валути"},"cutting":{"label":"Вид","placeholder":"По подразбиране"},"cycle_network":{"label":"Мрежа"},"cycleway":{"label":"Велоалеи","options":{"lane":{"description":"Велоалея отделена с маркировка от автомобилния трафик "},"opposite":{"description":"Двупосочна велоалея по еднопосочна улица"},"opposite_lane":{"description":"Велоалея в посока обратна на автомобилния трафик"},"share_busway":{"description":"Велоалея споделена с бус лента"},"shared_lane":{"description":"Велоалея без отделяне от автомобилния трафик"},"track":{"description":"Велоалея отделена от автомобилния трафик чрез преграда"}}},"date":{"label":"Дата"},"delivery":{"label":"Доставка"},"denomination":{"label":"Вероизповедание"},"denotation":{"label":"Название"},"departures_board":{"options":{"realtime":"Електронно","timetable":"Разписание"}},"description":{"label":"Описание"},"devices":{"label":"Устройства","placeholder":"1, 2, 3..."},"direction":{"label":"Посока (Градуси по часовниковата стрелка)","placeholder":"45, 90, 180, 270"},"direction_cardinal-US-CA-NZ":{"label":"Посока","options":{"east":"Изток","north":"Север","south":"Юг","west":"Запад"}},"direction_clock":{"label":"Посока","options":{"anticlockwise":"Обратно на часовниковата стрелка","clockwise":"По часовниковата стрелка"}},"direction_vertex":{"options":{"backward":"Назад","both":"И двете / Всички","forward":"Напред"}},"dispensing":{"label":"Изпълнява рецепти"},"display":{"label":"Дисплей"},"dock":{"label":"Вид"},"drive_through":{"label":"Драйв-тру"},"duration":{"label":"Продължителност","placeholder":"00:00"},"electrified":{"label":"Електрифицикация","options":{"contact_line":"Контактна мрежа","no":"Не","rail":"Контактна релса","yes":"Да (неуточнено)"},"placeholder":"Контактна мрежа, контактна релса"},"email":{"label":"Email","placeholder":"example@example.com"},"embankment":{"label":"Вид","placeholder":"По подразбиране"},"emergency":{"label":"Спешни случаи"},"entrance":{"label":"Вид"},"except":{"label":"Изключения"},"fax":{"label":"Факс","placeholder":"+31 42 123 4567"},"fee":{"label":"Такса"},"fence_type":{"label":"Вид"},"fire_hydrant/type":{"options":{"pillar":"Надземен","underground":"Подземен","wall":"Стенен"}},"fitness_station":{"label":"Вид оборудване"},"fixme":{"label":"Поправи ме"},"ford":{"label":"Вид","placeholder":"По подразбиране"},"frequency":{"label":"Работна честота"},"from":{"label":"От"},"fuel":{"label":"Гориво"},"gauge":{"label":"Ширина"},"gender":{"label":"Пол","options":{"female":"Женски пол","male":"Мъжки пол","unisex":"Унисекс"},"placeholder":"Неизвестен"},"generator/method":{"label":"Метод на генерация"},"generator/output/electricity":{"label":"Изходна мощност","placeholder":"50 MW, 100 MW, 200 MW..."},"generator/source":{"label":"Източник на енергия"},"generator/type":{"label":"Вид"},"government":{"label":"Вид"},"grape_variety":{"label":"Сорт грозде"},"handicap":{"label":"Увреждане","placeholder":"1-18"},"handrail":{"label":"Парапет"},"hashtags":{"placeholder":"#пример"},"healthcare":{"label":"Вид"},"healthcare/speciality":{"label":"Направления","options":{"acupuncture":"Акупунктура","anaesthetics":"Анестизиология","blood_check":"Кръвни изследвания","cardiology":"Кардиология","community":"Обществено здраве","dermatology":"Дерматология","diagnostic_radiology":"Диагностична радиология","emergency":"Спешна медицина","endocrinology":"Ендокринология","infectious_diseases":"Инфекциозни болести","intensive":"Интензивна грижа","internal":"Вътрешни болести","neurology":"Неврология","neurosurgery":"Неврохирургия","oncology":"Онкология","otolaryngology":"Уши, нос гърло (УНГ)","paediatric_surgery":"Педиатрична хирургия","paediatrics":"Педиатрия","palliative":"Палиативни грижи","plastic_surgery":"Пластична хирургия","radiology":"Радиология","shiatsu":"Шиатсу","stomatology":"Стоматология","tropical":"Тропическа медицина","urology":"Урология"}},"heating":{"label":"Отопление"},"height":{"label":"Височина (Метри)"},"highway":{"label":"Вид"},"historic":{"label":"Вид"},"historic/civilization":{"label":"Историческа цивилизация"},"hoops":{"label":"Кошове","placeholder":"1, 2, 4..."},"incline":{"label":"Наклон"},"incline_steps":{"options":{"down":"Надолу","up":"Нагоре"}},"indoor":{"label":"Вътрешно разпределение"},"information":{"label":"Вид"},"inscription":{"label":"Надпис"},"intermittent":{"label":"Пресъхващ"},"internet_access":{"options":{"no":"Не","terminal":"Терминал","wired":"Кабелен","wlan":"Wifi","yes":"Да"}},"kerb":{"label":"Бордюр"},"label":{"label":"Надпис"},"lamp_type":{"label":"Тип"},"landuse":{"label":"Вид"},"lanes":{"label":"Ленти","placeholder":"1, 2, 3..."},"layer":{"label":"Слой","placeholder":"0"},"leaf_cycle":{"label":"Листен цикъл","options":{"deciduous":"Листопаден","evergreen":"Вечнозелен ","mixed":"Смесен","semi_deciduous":"Полу-листопаден","semi_evergreen":"Полу-вечнозелен"}},"leaf_type":{"label":"Вид листа","options":{"broadleaved":"Широколистни","leafless":"Безлистни","mixed":"Смесени","needleleaved":"Иглолистни"}},"leaf_type_singular":{"label":"Вид листа"},"leisure":{"label":"Вид"},"length":{"label":"Дължина (Метри)"},"level":{"label":"Ниво"},"lit":{"label":"Осветление"},"location":{"label":"Местоположение"},"man_made":{"label":"Вид"},"manhole":{"label":"Вид"},"map_size":{"label":"Покритие"},"map_type":{"label":"Вид"},"material":{"label":"Материал"},"maxheight":{"label":"Максимална височина"},"maxspeed":{"label":"Ограничение на скоростта","placeholder":"40, 50, 60..."},"maxstay":{"label":"Максимален престой"},"maxweight":{"label":"Максимално тегло"},"memorial":{"label":"Вид"},"monitoring_multi":{"label":"Мониторинг"},"mtb/scale":{"label":"Трудност на трасе за планинско колоездене","options":{"0":"0: Валиран чакъл/уплътнена земя, без препятствия, широки криви","1":"1: Малко нестабилна настилка, дребни препятствия, широки криви","2":"2: Много нестабилна настилка, големи препятствия, лесни серпентини","3":"3: Хлъзгава настилка, големи препятствия, тесни серпентини","4":"4: Нестабилна настилка или камъни, опасни серпентини","5":"5: Максимална трудност, големи участъци покрити с камъни, свлачища","6":"6: Невъзможно за каране с изключение на най-добрите планински колоездачи."},"placeholder":"0, 1, 2, 3..."},"mtb/scale/imba":{"label":"IMBA Трудност на пътеките","placeholder":"Лесна, Средна, Трудна..."},"mtb/scale/uphill":{"label":"Трудност на изкачване при планинско колоездене","options":{"0":"0: Среден наклон <10%, чакъл/уплътнена зема, без препятствия","1":"1: Среден наклон <15%, чакъл/уплътнена зема, малък брой дребни препятствия","2":"2: Среден наклон <20%, стабилна повърхност, камъни с големина на юмрук/корени","3":"3: Среден наклон <25%, разнообразна повърхност, камъни с големина на юмрук/клони","4":"4: Среден наклон <30%, лоши условия, големи скали/клони","5":"5: Много стръмни, обикновено е необходимо бутане или носене на колелото"},"placeholder":"0, 1, 2, 3..."},"name":{"label":"Име","placeholder":"Популярно наименование (ако има такова)"},"natural":{"label":"Природа"},"network":{"label":"Мрежа"},"network_bicycle":{"options":{"icn":"Международна","lcn":"Локална","ncn":"Национална","rcn":"Регионална"},"placeholder":"Локална, Регионална, Национална, Международна"},"network_foot":{"options":{"iwn":"Международна","lwn":"Локална","nwn":"Национална","rwn":"Регионална"},"placeholder":"Локална, Регионална, Национална, Международна"},"network_horse":{"options":{"ihn":"Международна","lhn":"Локална","nhn":"Национална","rhn":"Регионална"},"placeholder":"Локална, Регионална, Национална, Международна"},"network_road":{"label":"Мрежа"},"note":{"label":"Бележка"},"office":{"label":"Вид"},"oneway":{"label":"Еднопосочнoст","options":{"alternating":"С изчакване","no":"Не","reversible":"Обръщаема","undefined":"Предполага се че е НЕ Е еднопосочна","yes":"Да"}},"oneway_yes":{"options":{"alternating":"С изчакване","no":"Не","reversible":"Обръщаема","undefined":"Предполага се, че Е еднопосочна","yes":"Да"}},"opening_date":{"placeholder":"ГГГГ-ММ-ДД"},"opening_hours":{"label":"Работно време"},"operator":{"label":"Оператор"},"outdoor_seating":{"label":"Места на открито"},"par":{"label":"Пар","placeholder":"3, 4, 5..."},"park_ride":{"label":"Буферен паркинг"},"parking":{"label":"Вид","options":{"carports":"Навеси","garage_boxes":"Гаражни клетки","lane":"Паркинг лента","multi-storey":"Многоетажен","sheds":"Паянтов","surface":"Наземен","underground":"Подземен"}},"payment_multi":{"label":"Начини за плащане"},"phases":{"label":"Фази","placeholder":"1, 2, 3..."},"phone":{"label":"Телефон","placeholder":"+31 42 123 4567"},"piste/difficulty":{"label":"Трудност","placeholder":"Лесна, Средна, Трудна"},"piste/grooming":{"label":"Оформяне","options":{"backcountry":"Ски бягане","classic":"Класическо","classic+skating":"Класическо и пързаляне","mogul":"Могул","scooter":"Скутер/Моторна шейна","skating":"Пързаляне с кънки"}},"piste/type":{"label":"Вид писта","options":{"downhill":"Спускане","hike":"Ски туризъм","ice_skate":"Ледена пързалка","nordic":"Северни дисциплини","playground":"Детска площадка","skitour":"Ски тур","sled":"Шейни","sleigh":"Теглени шейни","snow_park":"Снежен парк"}},"place":{"label":"Вид"},"plant":{"label":"Растение"},"plant/output/electricity":{"placeholder":"500 MW, 1000 MW, 2000 MW..."},"population":{"label":"Население"},"power":{"label":"Вид"},"power_supply":{"label":"Ел. захранване"},"produce":{"label":"Земеделска продукция"},"product":{"label":"Продукция"},"railway":{"label":"Вид"},"railway/position":{"label":"Километричен камък","placeholder":"Разстояние до една десета (123.4)"},"railway/signal/direction":{"options":{"backward":"Назад","both":"В двете посоки","forward":"Напред"}},"recycling_accepts":{"label":"Приема","options":{"batteries":"Батерии","cans":"Кенчета","cardboard":"Картон","clothes":"Дрехи","glass_bottles":"Стъклени бутилки и буркани","green_waste":"Зелени отпадъци","paper":"Хартия","plastic":"Пластмаса","plastic_bottles":"Пластмасови бутилки","shoes":"Обувки"}},"ref":{"label":"Референтен код"},"ref/isil":{"label":"ISIL код"},"ref_aeroway_gate":{"label":"Гейт номер"},"ref_golf_hole":{"label":"Дупка номер","placeholder":"1-18"},"ref_platform":{"label":"Перон номер"},"ref_road_number":{"label":"Път номер"},"ref_route":{"label":"Маршрут номер"},"ref_runway":{"label":"Писта номер","placeholder":"напр. 01L/19R"},"ref_stop_position":{"label":"Спирка номер"},"ref_taxiway":{"label":"Рульожка номер","placeholder":"напр. A5"},"relation":{"label":"Вид"},"religion":{"label":"Религия"},"restriction":{"label":"Вид"},"restrictions":{"label":"Ограничения при завиване"},"rooms":{"label":"Стаи"},"route":{"label":"Вид"},"route_master":{"label":"Вид"},"sac_scale":{"label":"Трудност на туристически маршрут"},"seamark/beacon_lateral/colour":{"label":"Цвят","options":{"green":"Зелен","grey":"Сив","red":"Червен"}},"seamark/beacon_lateral/shape":{"label":"Форма"},"seamark/buoy_lateral/colour":{"options":{"red":"Червен","red;green;red":"Червен-зелен-червен","red;white;red;white":"Червен-бял-червен-бял","white":"Бял","yellow":"Жълт"}},"seamark/buoy_lateral/shape":{"label":"Форма"},"seats":{"label":"Места"},"service":{"label":"Вид","options":{"alley":"Алея"}},"shelter":{"label":"Навес"},"shop":{"label":"Вид"},"site":{"label":"Вид"},"smoking":{"options":{"no":"Пушенето е забранено","outside":"Пушенето е разрешено на открито"}},"source":{"label":"Източници"},"sport":{"label":"Спорт"},"structure":{"label":"Структура","options":{"bridge":"Мост","cutting":"Изкоп","embankment":"Насип","tunnel":"Тунел"},"placeholder":"Неизвестен"},"supervised":{"label":"Под наблюдение"},"surface":{"label":"Повърхност","options":{"artificial_turf":"Изкуствена трева","asphalt":"Асфалт","compacted":"Уплътнена","concrete":"Бетон","dirt":"Пръст","grass":"Трева","gravel":"Чакъл","ground":"Земя","metal":"Метал","mud":"Постоянна кал","paving_stones":"Плочки","salt":"Сол","sand":"Пясък","sett":"Павета","unhewn_cobblestone":"Калдъръм","wood":"Дървесина","woodchips":"Дървени стърготини"}},"takeaway":{"options":{"no":"Не","yes":"Да"}},"tourism":{"label":"Вид"},"traffic_sign":{"label":"Пътен знак"},"trail_visibility":{"label":"Видимост на туристическата пътека"},"vehicles":{"options":{"bus":"Автобус","tram":"Трамвай","trolleybus":"Тролейбус"}},"visibility":{"options":{"house":"До 5м (16 фута)"}},"water":{"label":"Вид"},"waterway":{"label":"Вид"},"website":{"label":"Уебсайт"},"wetland":{"label":"Вид"},"wheelchair":{"label":"Достъп за инвалиди"},"wikidata":{"label":"Уикиданни"},"wikipedia":{"label":"Уикипедия"},"windings":{"label":"Намотки"}},"presets":{"address":{"name":"Адрес"},"advertising/billboard":{"name":"Билборд"},"aeroway/aerodrome":{"name":"Летище","terms":"аерогара"},"aeroway/hangar":{"name":"Хангар"},"aeroway/helipad":{"name":"Хеликоптерна площадка"},"aeroway/runway":{"name":"Летателна писта"},"aeroway/taxiway":{"name":"Рольожка"},"amenity":{"name":"Услуги"},"amenity/atm":{"name":"Банкомат"},"amenity/bank":{"name":"Банка"},"amenity/bar":{"name":"Бар"},"amenity/bench":{"name":"Пейка"},"amenity/bicycle_parking":{"name":"Паркинг за велосипеди"},"amenity/bicycle_rental":{"name":"Наем на велосипеди"},"amenity/bus_station":{"name":"Автостанция / терминал"},"amenity/cafe":{"name":"Кафене"},"amenity/car_rental":{"name":"Коли под наем"},"amenity/car_wash":{"name":"Автомивка"},"amenity/casino":{"name":"Казино"},"amenity/childcare":{"name":"Детска ясла"},"amenity/cinema":{"name":"Кино"},"amenity/courthouse":{"name":"Съд"},"amenity/drinking_water":{"name":"Чешма"},"amenity/driver_training":{"name":"Учебен полигон","terms":"мото полигон,полигон за начинаещи шофьори"},"amenity/driving_school":{"name":"Автошкола","terms":"шофьорско училище,авто курсове,мото курсове,категория b,шофьорска книжка"},"amenity/embassy":{"name":"Посолство"},"amenity/fast_food":{"name":"Бърза закуска"},"amenity/fire_station":{"name":"Пожарна"},"amenity/fountain":{"name":"Фонтан"},"amenity/fuel":{"name":"Бензиностанция"},"amenity/grave_yard":{"name":"Гробище"},"amenity/hospital":{"name":"Болница"},"amenity/kindergarten":{"name":"Предучилищна / детска градина"},"amenity/language_school":{"name":"Езиково училище"},"amenity/library":{"name":"Библиотека"},"amenity/marketplace":{"name":"Пазар"},"amenity/music_school":{"name":"Музикално училище"},"amenity/parking":{"name":"Паркинг"},"amenity/parking/underground":{"name":"Подземен паркинг"},"amenity/parking_entrance":{"name":"Вход/изход на гараж"},"amenity/parking_space":{"name":"Паркомясто"},"amenity/parking_space/disabled":{"name":"Паркомясто за инвалиди"},"amenity/pharmacy":{"name":"Аптека"},"amenity/photo_booth":{"name":"Фото будка"},"amenity/place_of_worship":{"name":"Религиозен храм"},"amenity/place_of_worship/buddhist":{"name":"Будистки храм"},"amenity/place_of_worship/christian":{"name":"Християнска църква"},"amenity/place_of_worship/jewish":{"name":"Еврейска синагога"},"amenity/place_of_worship/muslim":{"name":"Джамия"},"amenity/police":{"name":"Полиция"},"amenity/post_office":{"name":"Поща"},"amenity/pub":{"name":"Пъб"},"amenity/recycling/container/electrical_items":{"name":"Електронни отпадъци"},"amenity/recycling/container/green_waste":{"name":"Контейнер за зелени отпадъци"},"amenity/refugee_site":{"name":"Бежански лагер"},"amenity/restaurant":{"name":"Ресторант"},"amenity/restaurant/american":{"name":"Американски ресторант"},"amenity/restaurant/asian":{"name":"Азиатски ресторант"},"amenity/restaurant/chinese":{"name":"Китайски ресторант"},"amenity/restaurant/french":{"name":"Френски ресторант"},"amenity/restaurant/german":{"name":"Немски ресторант","terms":"германски ресторант"},"amenity/restaurant/greek":{"name":"Гръцки ресторант"},"amenity/restaurant/indian":{"name":"Индийски ресторант"},"amenity/restaurant/italian":{"name":"Италиански ресторант"},"amenity/restaurant/japanese":{"name":"Японски ресторант"},"amenity/restaurant/mexican":{"name":"Мексикански ресторант"},"amenity/restaurant/steakhouse":{"name":"Стекхаус"},"amenity/restaurant/sushi":{"name":"Суши ресторант"},"amenity/restaurant/thai":{"name":"Тайландски ресторант"},"amenity/restaurant/turkish":{"name":"Турски ресторант"},"amenity/restaurant/vietnamese":{"name":"Виетнамски ресторант"},"amenity/school":{"name":"Училище"},"amenity/shelter/gazebo":{"name":"Беседка"},"amenity/shelter/public_transport":{"name":"Спирков навес","terms":"навес на спирка,спирконавес"},"amenity/social_facility/ambulatory_care":{"name":"Амбулаторна грижа"},"amenity/social_facility/food_bank":{"name":"Хранителна банка"},"amenity/social_facility/group_home":{"name":"Групов дом за възрастни хора"},"amenity/social_facility/homeless_shelter":{"name":"Дом за бездомни"},"amenity/social_facility/nursing_home":{"name":"Старчески дом"},"amenity/taxi":{"name":"Такси стоянка"},"amenity/telephone":{"name":"Телефон"},"amenity/theatre":{"name":"Театър"},"amenity/theatre/type/amphi":{"name":"Амфитеатър"},"amenity/townhall":{"name":"Кметство"},"amenity/townhall/city":{"name":"Кметство"},"amenity/university":{"name":"Университет"},"amenity/vending_machine":{"name":"Автомат за стоки"},"amenity/vending_machine/bottle_return":{"name":"Машина за връщане на бутилки"},"amenity/vending_machine/coffee":{"name":"Автомат за кафе","terms":"кафе-автомат"},"amenity/vending_machine/drinks":{"name":"Автомат за напитки"},"amenity/vending_machine/parking_tickets":{"name":"Автомат за талони за паркиране"},"amenity/waste_basket":{"name":"Кошче за боклук"},"amenity/waste_disposal":{"name":"Контейнер за боклук"},"area":{"name":"Площ"},"barrier":{"name":"Преграда"},"barrier/block":{"name":"Бетонен блок"},"barrier/bollard":{"name":"Колче"},"barrier/cattle_grid":{"name":"Тексаска мрежа"},"barrier/city_wall":{"name":"Градска стена"},"barrier/cycle_barrier":{"name":"Велосипедна преграда"},"barrier/entrance":{"name":"Вход"},"barrier/fence":{"name":"Ограда"},"barrier/gate":{"name":"Портал"},"barrier/guard_rail":{"name":"Мантинела"},"barrier/handrail":{"name":"Парапет"},"barrier/hedge":{"name":"Жив плет"},"barrier/jersey_barrier":{"name":"Джърси бариера","terms":"джърси преграда,бетонен ограничител"},"barrier/kerb":{"name":"Бордюр"},"barrier/kerb/lowered":{"name":"Снижен бордюр"},"barrier/kissing_gate":{"name":"Препятствие за животни"},"barrier/lift_gate":{"name":"Бариера"},"barrier/retaining_wall":{"name":"Подпорна стена"},"barrier/stile":{"name":"Стълби за преминаване през ограда"},"barrier/toll_booth":{"name":"Будка за тол такса"},"barrier/wall":{"name":"Стена"},"barrier/wall/noise_barrier":{"name":"Шумоизолираща преграда"},"boundary/administrative":{"name":"Административна граница"},"building":{"name":"Сграда"},"building/barn":{"name":"Хамбар","terms":"плевня,обор"},"building/bungalow":{"name":"Бунгало"},"building/bunker":{"name":"Бункер"},"building/cabin":{"name":"Хижа"},"building/carport":{"name":"Навес за автомобили"},"building/cathedral":{"name":"Катедрала"},"building/church":{"name":"Църква"},"building/construction":{"name":"Сграда в строеж"},"building/cowshed":{"name":"Краварник","terms":"обор,кравеферма"},"building/entrance":{"name":"Вход/изход"},"building/garage":{"name":"Гараж"},"building/garages":{"name":"Гаражи"},"building/ger":{"name":"Юрта"},"building/greenhouse":{"name":"Оранжерия","terms":"парник"},"building/hangar":{"name":"Хангар"},"building/house":{"name":"Къща"},"building/industrial":{"name":"Индустриална сграда"},"building/office":{"name":"Офис сграда"},"building/residential":{"name":"Жилищна сграда"},"building/roof":{"name":"Покрив"},"building/school":{"name":"Училищна сграда"},"building/shed":{"name":"Навес"},"building/stable":{"name":"Конюшня"},"building_part":{"name":"Част от сграда"},"building_point":{"name":"Сграда"},"craft/agricultural_engines":{"name":"Механик на селскостопански двигатели"},"craft/beekeeper":{"name":"Пчелар"},"craft/blacksmith":{"name":"Ковачница"},"craft/carpenter":{"name":"Дърводелец"},"craft/caterer":{"name":"Кетъринг"},"craft/chimney_sweeper":{"name":"Коминочистач"},"craft/clockmaker":{"name":"Часовникар"},"craft/electrician":{"name":"Електротехник"},"craft/gardener":{"name":"Градинар"},"craft/locksmith":{"name":"Ключар"},"craft/painter":{"name":"Бояджия"},"craft/photographer":{"name":"Фотограф"},"craft/photographic_laboratory":{"name":"Фотографска лаборатория"},"craft/plumber":{"name":"Водопроводчик"},"craft/sawmill":{"name":"Дъскорезница"},"craft/sculptor":{"name":"Скулптор"},"craft/shoemaker":{"name":"Обувщар"},"craft/stonemason":{"name":"Каменоделец"},"craft/tailor":{"name":"Шивач"},"demolished/building":{"name":"Наскоро разрушена сграда"},"emergency/defibrillator":{"name":"Дефибрилатор"},"emergency/fire_extinguisher":{"name":"Пожарогасител","terms":"прахов пожарогасител,воден пожарогасител"},"emergency/fire_hose":{"name":"Пожарен кран","terms":"пожарен маркуч"},"emergency/fire_hydrant":{"name":"Пожарен хидрант"},"emergency/first_aid_kit":{"name":"Комплект за първа помощ"},"emergency/life_ring":{"name":"Спасителен пояс"},"emergency/lifeguard":{"name":"Спасител"},"emergency/phone":{"name":"Телефон за спешна помощ"},"emergency/siren":{"name":"Сирена"},"entrance":{"name":"Вход / изход"},"entrance/main":{"name":"Главен вход","terms":"основен вход"},"healthcare/alternative":{"name":"Алтернативна медицина"},"healthcare/alternative/chiropractic":{"name":"Хиропрактик"},"healthcare/audiologist":{"name":"Аудиолог"},"healthcare/dentist/orthodontics":{"name":"Ортодонт"},"healthcare/hospice":{"name":"Хоспис"},"healthcare/laboratory":{"name":"Медицинска лаборатория"},"healthcare/optometrist":{"name":"Оптометрист"},"healthcare/physiotherapist":{"name":"Физиотерапевт"},"healthcare/podiatrist":{"name":"Ортопед"},"healthcare/psychotherapist":{"name":"Психотерапевт"},"healthcare/speech_therapist":{"name":"Логопед"},"highway/bridleway":{"name":"Конска пътека"},"highway/bus_stop":{"name":"Автобусна спирка"},"highway/crossing":{"name":"Пешеходна пътека"},"highway/crossing/marked":{"name":"Пешеходна пътека"},"highway/crossing/uncontrolled":{"name":"Маркирана пешеходна пътека","terms":"зебра"},"highway/crossing/unmarked":{"name":"Немаркирана пешеходна пътека"},"highway/cycleway":{"name":"Велоалея"},"highway/cycleway/crossing/marked":{"name":"Маркирана велосипедна пътека"},"highway/cycleway/crossing/unmarked":{"name":"Немаркирана велосипедна пътека"},"highway/elevator":{"name":"Асансьор"},"highway/footway":{"name":"Пешеходна алея"},"highway/footway/conveying":{"name":"Травалатор","terms":"движеща се пътека"},"highway/footway/crossing":{"name":"Пешеходна пътека"},"highway/footway/crossing/unmarked":{"name":"Немаркирана пешеходна пътека","terms":"продължение на тротоар"},"highway/footway/sidewalk":{"name":"Тротоар"},"highway/living_street":{"name":"Улица в жилищна зона"},"highway/mini_roundabout":{"name":"Малко кръгово кръстовище"},"highway/motorway":{"name":"Автомагистрала"},"highway/motorway_link":{"name":"Автомагистрална връзка"},"highway/path":{"name":"Пътека"},"highway/pedestrian_line":{"name":"Пешеходна улица"},"highway/primary":{"name":"Първокласен път"},"highway/primary_link":{"name":"Връзка с първокласен път"},"highway/residential":{"name":"Улица"},"highway/road":{"name":"Непроучен път"},"highway/secondary":{"name":"Второкласен път"},"highway/secondary_link":{"name":"Връзка с второкласен път"},"highway/service":{"name":"Сервизна улица"},"highway/service/alley":{"name":"Тясна уличка между имоти"},"highway/service/drive-through":{"name":"Обслужване без напускане на автомобила"},"highway/service/driveway":{"name":"Алея за коли към жилище"},"highway/service/emergency_access":{"name":"За достъп при спешни случаи"},"highway/service/parking_aisle":{"name":"Път в паркинг"},"highway/speed_camera":{"name":"Камера за скорост"},"highway/steps":{"name":"Стъпала"},"highway/steps/conveying":{"name":"Ескалатор"},"highway/stop":{"name":"Знак стоп"},"highway/street_lamp":{"name":"Улична лампа"},"highway/tertiary":{"name":"Третокласен път"},"highway/tertiary_link":{"name":"Връзка с третокласен път"},"highway/toll_gantry":{"name":"Тол камера"},"highway/track":{"name":"Черен път"},"highway/traffic_signals":{"name":"Светофари"},"highway/trunk":{"name":"Скоростен път"},"highway/trunk_link":{"name":"Връзка със скоростен път"},"highway/turning_circle":{"name":"Обръщателен кръг"},"highway/turning_loop":{"name":"Обръщателен кръг с остров по средата"},"historic":{"name":"Място с историческо значение"},"historic/archaeological_site":{"name":"Археологически обект"},"historic/boundary_stone":{"name":"Граничен камък"},"historic/building":{"name":"Историческа сграда"},"historic/castle":{"name":"Замък"},"historic/castle/palace":{"name":"Палат"},"historic/castle/stately":{"name":"Замък"},"historic/city_gate":{"name":"Градска порта"},"historic/fort":{"name":"Исторически форт"},"historic/memorial":{"name":"Мемориална плоча"},"historic/monument":{"name":"Паметник"},"historic/ruins":{"name":"Руини"},"historic/tomb":{"name":"Гробница"},"historic/wayside_cross":{"name":"Крайпътен кръст"},"historic/wayside_shrine":{"name":"Крайпътен параклис"},"landuse/basin":{"name":"Басейн"},"landuse/cemetery":{"name":"Гробищен парк"},"landuse/construction":{"name":"Строителна площадка","terms":"сграда,булдозер,строителна площадка,строителна зона,кран,събаряне,развитие,инфраструктура"},"landuse/farm":{"name":"Земеделска земя"},"landuse/farmland":{"name":"Земеделска земя","terms":"поле"},"landuse/farmyard":{"name":"Селскостопански двор"},"landuse/grass":{"name":"Трева"},"landuse/harbour":{"name":"Пристанище"},"landuse/industrial":{"name":"Индустриална зона"},"landuse/industrial/scrap_yard":{"name":"Вторични суровини","terms":"автоморга,скрап"},"landuse/industrial/slaughterhouse":{"name":"Кланица"},"landuse/landfill":{"name":"Сметище"},"landuse/meadow":{"name":"Пасище"},"landuse/military":{"name":"Военна зона","terms":"военновъздушни сили,армия,военна база,брегова охрана,морска пехота,флот"},"landuse/military/airfield":{"name":"Военно летище"},"landuse/military/barracks":{"name":"Казарми"},"landuse/orchard":{"name":"Овощна градина"},"landuse/quarry":{"name":"Кариера"},"landuse/railway":{"name":"Железопътен коридор"},"landuse/residential":{"name":"Жилищна зона"},"landuse/vineyard":{"name":"Лозе"},"leisure/dog_park":{"name":"Кучешки парк","terms":"кучешка площадка"},"leisure/garden":{"name":"Градина"},"leisure/garden/botanical":{"name":"Ботаническа градина"},"leisure/golf_course":{"name":"Голф игрище"},"leisure/ice_rink":{"name":"Ледена пързалка","terms":"хокей,кънки,кърлинг"},"leisure/marina":{"name":"Яхт клуб"},"leisure/miniature_golf":{"name":"Миниатюрен голф","terms":"мини голф"},"leisure/nature_reserve":{"name":"Природен резерват"},"leisure/park":{"name":"Парк"},"leisure/picnic_table":{"name":"Пикник маса"},"leisure/picnic_table/chess":{"name":"Шахматна маса","terms":"маса за шах"},"leisure/pitch":{"name":"Спортно игрище"},"leisure/pitch/american_football":{"name":"Игрище за американски футбол"},"leisure/pitch/archery":{"name":"Стрелбище"},"leisure/pitch/australian_football":{"name":"Игрище за австралийски футбол"},"leisure/pitch/badminton":{"name":"Игрище за бадминтон"},"leisure/pitch/baseball":{"name":"Бейзболно игрище","terms":"бейзбол"},"leisure/pitch/basketball":{"name":"Баскетболно игрище"},"leisure/pitch/beachvolleyball":{"name":"Игрище за плажен волейбол"},"leisure/pitch/cricket":{"name":"Игрище за крикет","terms":"поле за крикет"},"leisure/pitch/futsal":{"name":"Игрище за футзал"},"leisure/pitch/skateboard":{"name":"Скейт парк"},"leisure/pitch/soccer":{"name":"Футболно игрище"},"leisure/pitch/table_tennis":{"name":"Тенис маса","terms":"тенис на маса,пинг понг"},"leisure/pitch/tennis":{"name":"Тенис корт"},"leisure/pitch/volleyball":{"name":"Волейболно игрище"},"leisure/playground":{"name":"Детска площадка"},"leisure/slipway":{"name":"Хелинг"},"leisure/stadium":{"name":"Стадион"},"leisure/swimming_pool":{"name":"Плувен басейн"},"line":{"name":"Линия"},"man_made/antenna":{"name":"Антена"},"man_made/breakwater":{"name":"Вълнолом"},"man_made/chimney":{"name":"Комин"},"man_made/crane":{"name":"Кран"},"man_made/cutline":{"name":"Просека"},"man_made/lighthouse":{"name":"Морски фар"},"man_made/mast/communication/television":{"name":"Телевизионна кула","terms":"тв кула"},"man_made/pier":{"name":"Кей"},"man_made/pipeline":{"name":"Тръбопровод"},"man_made/pumping_station":{"name":"Помпена станция"},"man_made/survey_point":{"name":"Геодезическа точка"},"man_made/tower":{"name":"Кула"},"man_made/wastewater_plant":{"name":"Пречиствателна станция за отпадни води","terms":"псов"},"man_made/water_tower":{"name":"Водна кула"},"man_made/water_works":{"name":"Пречиствателна станция за питейна вода","terms":"пспв"},"man_made/windmill":{"name":"Вятърна мелница"},"natural/bay":{"name":"Залив"},"natural/beach":{"name":"Плаж"},"natural/cliff":{"name":"Скала"},"natural/coastline":{"name":"Брегова линия"},"natural/glacier":{"name":"Ледник"},"natural/grassland":{"name":"Степ"},"natural/heath":{"name":"Малки храсти"},"natural/peak":{"name":"Връх"},"natural/reef":{"name":"Риф"},"natural/scrub":{"name":"Шубрак"},"natural/spring":{"name":"Извор"},"natural/tree":{"name":"Дърво"},"natural/volcano":{"name":"Вулкан"},"natural/water":{"name":"Водна площ"},"natural/water/canal":{"name":"Канал"},"natural/water/lake":{"name":"Езеро"},"natural/water/pond":{"name":"Малко езеро"},"natural/water/reservoir":{"name":"Язовир"},"natural/water/river":{"name":"Речен бряг"},"natural/wetland":{"name":"Блатиста зона"},"noexit/yes":{"name":"Път без изход"},"office":{"name":"Офис"},"office/diplomatic":{"name":"Дипломатически офис"},"office/diplomatic/consulate":{"name":"Консулство"},"office/diplomatic/embassy":{"name":"Посолство"},"office/estate_agent":{"name":"Брокер"},"office/government/prosecutor":{"name":"Прокурор"},"office/insurance":{"name":"Застрахователен офис","terms":"гражданска отговорност,автокаско,каско,застраховка живот,имуществено застраховане"},"office/lawyer":{"name":"Адвокат"},"office/lawyer/notary":{"name":"Нотариус"},"office/travel_agent":{"name":"Туристическа агенция"},"place":{"name":"Населени места"},"place/city":{"name":"Град над 100 000"},"place/hamlet":{"name":"Махала"},"place/island":{"name":"Остров"},"place/isolated_dwelling":{"name":"Изолирано жилище"},"place/locality":{"name":"Местност"},"place/neighbourhood":{"name":"Квартал"},"place/town":{"name":"Град под 100 000"},"place/village":{"name":"Село"},"playground/sandpit":{"name":"Пясъчник"},"playground/slide":{"name":"Пързалка"},"playground/swing":{"name":"Люлка"},"point":{"name":"Точка"},"power/cable":{"name":"Брой кабели"},"power/cable/underground":{"name":"Подземен електропровод","terms":"подземен кабел"},"power/generator/method/photovoltaic":{"name":"Соларен панел","terms":"слънчев панел,фотоволтаичен панел"},"power/generator/method/photovoltaic/location/roof":{"name":"Слънчеви панели на покрив"},"power/generator/source/hydro":{"name":"Водна турбина"},"power/generator/source/nuclear":{"name":"Ядрен реактор"},"power/generator/source/wind":{"name":"Вятърна турбина"},"power/line":{"name":"Електропровод"},"power/plant/source/coal":{"name":"Въглищна електроцентрала","terms":"тец"},"power/plant/source/gas":{"name":"Газова електроцентрала","terms":"тец"},"power/plant/source/hydro":{"name":"ВЕЦ","terms":"водноелектрическа централа,водно-електрическа централа,водно електрическа централа"},"power/plant/source/nuclear":{"name":"АЕЦ"},"power/plant/source/solar":{"name":"Соларна електроцентрала","terms":"слънчева,фотоволтаична"},"power/plant/source/waste":{"name":"Инсинератор за отпадъци","terms":"изгаряне на отпадъци"},"power/plant/source/wind":{"name":"ВяЕЦ","terms":"вятърна ферма,вятърна електроцентрала"},"power/pole":{"name":"Електрически стълб"},"power/substation":{"name":"Подстанция"},"power/switch":{"name":"Прекъсвач"},"power/tower":{"name":"Жере"},"power/transformer":{"name":"Трансформатор"},"public_transport/platform/bus":{"name":"Автобусна спирка"},"public_transport/platform/bus_point":{"name":"Автобусна спирка"},"public_transport/platform/bus_tram_point":{"name":"Трамвайна и автобусна спирка"},"public_transport/platform/subway":{"name":"Перон на метростанция"},"public_transport/platform/subway_point":{"name":"Перон на метростанция"},"public_transport/platform/train":{"name":"ЖП перон"},"public_transport/platform/train_point":{"name":"ЖП перон"},"public_transport/platform/tram":{"name":"Трамвайна спирка"},"public_transport/platform/tram_point":{"name":"Трамвайна спирка"},"public_transport/platform/trolleybus":{"name":"Тролейбусна спирка"},"public_transport/platform/trolleybus_point":{"name":"Тролейбусна спирка"},"public_transport/station_subway":{"name":"Метростанция"},"public_transport/station_train":{"name":"Железопътна гара","terms":"жп гара,жп спирка"},"public_transport/station_train_halt":{"name":"Железопътна спирка (по желание)"},"railway/abandoned":{"name":"Изоставена железопътна линия"},"railway/disused":{"name":"Закрита железопътна линия"},"railway/level_crossing":{"name":"ЖП прелез","terms":"железопътен прелез"},"railway/platform":{"name":"Перон"},"railway/rail":{"name":"ЖП линия"},"railway/signal":{"name":"Светофор","terms":"железопътен сигнал"},"railway/station":{"name":"ЖП гара"},"railway/subway_entrance":{"name":"Вход на метростанция"},"railway/switch":{"name":"Железопътна стрелка"},"railway/tram":{"name":"Трамвайни релси"},"relation":{"name":"Релация"},"route/ferry":{"name":"Фериботна връзка"},"shop":{"name":"Магазин"},"shop/alcohol":{"name":"Магазин за алкохол"},"shop/anime":{"name":"Аниме / манга магазин"},"shop/antiques":{"name":"Антикварен магазин","terms":"антиквар"},"shop/appliance":{"name":"Магазин за електроуреди","terms":"климатик,електроуреди,съдомиялна,сушилня,фризер,грил,печка,микровълнова"},"shop/bakery":{"name":"Пекарна"},"shop/bathroom_furnishing":{"name":"Магазин за обзавеждане на бани"},"shop/beauty":{"name":"Козметик"},"shop/beauty/nails":{"name":"Салон за нокти","terms":"маникюр,педикюр"},"shop/beauty/tanning":{"name":"Солариум","terms":"солариум"},"shop/bed":{"name":"Магазин за легла/матраци"},"shop/beverages":{"name":"Магазин за алкохол и цигари"},"shop/bicycle":{"name":"Магазин за велосипеди"},"shop/boutique":{"name":"Бутик"},"shop/butcher":{"name":"Колбаси"},"shop/car":{"name":"Автокъща","terms":"коли,автомобили"},"shop/car/second_hand":{"name":"Автомобили втора употреба","terms":"автоморга"},"shop/car_parts":{"name":"Авточасти","terms":"автоморга"},"shop/car_repair":{"name":"Сервиз за автомобили","terms":"автосервиз"},"shop/carpet":{"name":"Магазин за килими","terms":"килимия,черга,черги"},"shop/chemist":{"name":"Дрогерия"},"shop/clothes":{"name":"Магазин за дрехи"},"shop/clothes/second_hand":{"name":"Магазин за дрехи втора употреба"},"shop/clothes/underwear":{"name":"Магазин за бельо","terms":"сутиени,бикини,боксерки,бельо,слипове,чорапи,чорапогащници"},"shop/clothes/workwear":{"name":"Магазин за работно облекло"},"shop/computer":{"name":"Компютърен магазин"},"shop/convenience":{"name":"Магазин за хранителни стоки"},"shop/dairy":{"name":"Млекарница"},"shop/department_store":{"name":"Универсален магазин"},"shop/doityourself":{"name":"Магазин \"Направи си сам\""},"shop/doors":{"name":"Магазин за врати"},"shop/dry_cleaning":{"name":"Химическо чистене"},"shop/electronics":{"name":"Магазин за електроника"},"shop/farm":{"name":"Щанд за плодове и зеленчуци"},"shop/flooring":{"terms":"паркет,плочки"},"shop/florist":{"name":"Магазин за цветя"},"shop/funeral_directors":{"name":"Погребална агенция"},"shop/furniture":{"name":"Мебелен магазин","terms":"мебели"},"shop/garden_centre":{"name":"Градински център"},"shop/gift":{"name":"Магазин за подаръци"},"shop/greengrocer":{"name":"Плод-зеленчук"},"shop/hairdresser":{"name":"Фризьорски салон"},"shop/hardware":{"name":"Железария"},"shop/hearing_aids":{"name":"Магазин за слухови апарати"},"shop/hifi":{"name":"Магазин за аудиотехника"},"shop/houseware":{"name":"Домашни потреби"},"shop/jewelry":{"name":"Бижутерия"},"shop/laundry":{"name":"Пералня"},"shop/laundry/self_service":{"name":"Пералня на самообслужване"},"shop/lighting":{"name":"Магазин за осветителни тела"},"shop/locksmith":{"name":"Ключар"},"shop/lottery":{"name":"Лотарийни билети"},"shop/mall":{"name":"Мол"},"shop/mobile_phone":{"name":"Магазин за мобилни телефони"},"shop/money_lender":{"name":"Бързи кредити","terms":"бърз кредит,бързи пари,спешни пари"},"shop/motorcycle":{"name":"Магазин за мотоциклети"},"shop/music":{"name":"Музикален магазин"},"shop/optician":{"name":"Оптика"},"shop/pastry":{"name":"Сладкарница"},"shop/pawnbroker":{"name":"Заложна къща"},"shop/perfumery":{"name":"Парфюмерия"},"shop/pet":{"name":"Зоо магазин"},"shop/photo":{"name":"Фото","terms":"камера,лента,снимка"},"shop/shoe_repair":{"name":"Обущар"},"shop/shoes":{"name":"Магазин за обувки"},"shop/sports":{"name":"Спортен магазин"},"shop/stationery":{"name":"Магазин за канцеларски стоки"},"shop/supermarket":{"name":"Супермаркет"},"shop/toys":{"name":"Магазин за играчки"},"shop/travel_agency":{"name":"Туристическа агенция"},"shop/tyres":{"name":"Магазин за автомобилни гуми"},"shop/vacant":{"name":"Свободна търговска площ"},"shop/video":{"name":"Видеотека"},"shop/window_blind":{"name":"Магазин за щори","terms":"ролетни щори"},"telecom/data_center":{"name":"Център за данни"},"tourism/alpine_hut":{"name":"Планинска хижа"},"tourism/apartment":{"name":"Апартамент за гости"},"tourism/aquarium":{"name":"Аквариум"},"tourism/artwork":{"name":"Произведение на изкуството"},"tourism/artwork/bust":{"name":"Бюст"},"tourism/artwork/graffiti":{"name":"Графити"},"tourism/artwork/installation":{"name":"Арт инсталация"},"tourism/artwork/mural":{"name":"Стенопис"},"tourism/artwork/sculpture":{"name":"Скулптура"},"tourism/artwork/statue":{"name":"Статуя"},"tourism/attraction":{"name":"Туристическа атракция"},"tourism/caravan_site":{"name":"Паркинг за каравани"},"tourism/guest_house":{"name":"Къща за гости"},"tourism/hostel":{"name":"Хостел"},"tourism/hotel":{"name":"Хотел"},"tourism/information":{"name":"Информация"},"tourism/information/office":{"name":"Посетителски център","terms":"туристически информационен център"},"tourism/motel":{"name":"Мотел"},"tourism/museum":{"name":"Музей"},"tourism/museum/history":{"name":"Исторически музей"},"tourism/picnic_site":{"name":"Място за пикник"},"tourism/theme_park":{"name":"Увеселителен парк"},"tourism/viewpoint":{"name":"Точка с хубава гледка"},"tourism/zoo":{"name":"Зоологическа градина"},"traffic_calming/chicane":{"name":"Шикан","terms":"изкуствени кривини на пътя"},"traffic_calming/mini_bumps":{"name":"Мини неравности за скорост","terms":"мини бабуни,мини топчета,малки бабуни,малки неравности за скорост"},"traffic_calming/rumble_strip":{"name":"Шумяща напречна маркировка","terms":"шумяща маркировка"},"traffic_sign":{"name":"Пътен знак"},"traffic_sign/city_limit":{"name":"Начало/край на населено място"},"traffic_sign/maxspeed":{"name":"Знак за ограничение на скоростта"},"traffic_sign/variable_message":{"name":"Знак с променливо съобщение","terms":"знак с променливо съдържание,електронен знак"},"type/boundary":{"name":"Граница"},"type/boundary/administrative":{"name":"Административна граница"},"type/multipolygon":{"name":"Мултиполигон"},"type/restriction":{"name":"Ограничение"},"type/restriction/no_left_turn":{"name":"Без ляв завой"},"type/restriction/no_right_turn":{"name":"Без десен завой"},"type/restriction/only_left_turn":{"name":"Само ляв завой","terms":"само наляво"},"type/restriction/only_right_turn":{"name":"Само десен завой","terms":"само надясно"},"type/route":{"name":"Маршрут"},"type/route/bus":{"name":"Автобусен маршрут"},"type/route/detour":{"name":"Обходен маршрут"},"type/route/ferry":{"name":"Фериботна връзка","terms":"фериботен маршрут"},"type/route/foot":{"name":"Пешеходен маршрут"},"type/route/pipeline":{"name":"Трасе на тръбопровод"},"type/route/power":{"name":"Трасе на електропровод"},"type/route/road":{"name":"Път"},"type/route/train":{"name":"Железопътен маршрут"},"type/route/tram":{"name":"Трамваен маршрут"},"type/route_master":{"name":"Маршрутна схема"},"waterway/canal":{"name":"Канал"},"waterway/dam":{"name":"Язовирна стена"},"waterway/ditch":{"name":"Канавка"},"waterway/dock":{"name":"Мокър док / сух док"},"waterway/drain":{"name":"Отводнителен канал"},"waterway/fish_pass":{"name":"Рибен проход"},"waterway/river":{"name":"Река"},"waterway/stream":{"name":"Поток"},"waterway/stream_intermittent":{"name":"Периодичен поток","terms":"пресъхващ поток"},"waterway/waterfall":{"name":"Водопад"},"waterway/weir":{"name":"Преливник"}}}}}
\ No newline at end of file
+{"bg":{"presets":{"categories":{"category-barrier":{"name":"Прегради"},"category-building":{"name":"Сгради"},"category-golf":{"name":"Голф обекти"},"category-landuse":{"name":"Обекти за земеползване"},"category-natural":{"name":"Природни обекти"},"category-path":{"name":"Пътеки"},"category-playground":{"name":"Оборудване за детски площадки"},"category-rail":{"name":"Железопътни обекти"},"category-road_major":{"name":"Главни пътища"},"category-road_service":{"name":"Обслужващи пътища"},"category-water":{"name":"Водни тела"},"category-waterway":{"name":"Водни пътища"}},"fields":{"access":{"label":"Разрешен достъп","options":{"designated":{"title":"По предназначение"},"destination":{"title":"До дестинация"},"dismount":{"title":"Слизане"},"no":{"title":"Забранен"},"permissive":{"title":"Частичен"},"private":{"title":"Частен"},"unknown":{"title":"Неизвестно"},"yes":{"title":"Разрешен"}},"placeholder":"Неопределен","types":{"access":"Всички","bicycle":"Велосипеди","foot":"Пешеходен","horse":"Коне","motor_vehicle":"МПС"}},"access_aisle":{"label":"Тип"},"access_simple":{"label":"Разрешен достъп","options":{"customers":"Само за клиенти","no":"Нищо","permissive":"Частичен","private":"Частен","unknown":"Неизвестно"}},"addr/interpolation":{"label":"Тип","options":{"all":"Всички","even":"Четни","odd":"Нечетни"}},"address":{"label":"Адрес","placeholders":{"block_number":"квартал номер","block_number!jp":"Блок №","city":"Град","city!jp":"Град/Град под 100 000/Село/Специален район в Токио","city!vn":"Град/Град под 100 000","conscriptionnumber":"123","country":"Държава","county":"Област","county!jp":"Община","district":"Община","district!vn":"Арондисман/Град/Община","floor":"Етаж","hamlet":"Махала","housename":"Къща","housenumber":"123","housenumber!jp":"Сграда Номер/Имот Номер","neighbourhood":"Квартал","place":"Място","postcode":"Пощенски код","province":"Област","province!jp":"Перфектура","quarter":"Жилищен квартал","state":"Икономически район NUT2","street":"Улица","subdistrict":"Землище","subdistrict!vn":"Район/Комуна/Град под 10 000","suburb":"Квартал","town":"Град под 100 000","unit":"Административна единица"}},"admin_level":{"label":"Административно деление"},"advertising":{"label":"Тип"},"aerialway":{"label":"Вид"},"aerialway/access":{"label":"Достъп","options":{"both":"И двете","entry":"Качване","exit":"Слизане"}},"aerialway/bubble":{"label":"Ветробран"},"aerialway/capacity":{"label":"Капацитет (на час)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Продължителност (минути)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Отоплен"},"aerialway/occupancy":{"label":"Места","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Достъп (лято)","options":{"both":"И двете","entry":"Качване","exit":"Слизане"}},"aeroway":{"label":"Вид"},"agrarian":{"label":"Продукция"},"aircraft/type":{"label":"Тип"},"amenity":{"label":"Вид"},"animal_boarding":{"label":"За животни"},"animal_breeding":{"label":"За животни"},"animal_shelter":{"label":"За животни"},"archaeological_site":{"label":"Тип"},"architect":{"label":"Архитект"},"area/highway":{"label":"Вид"},"armrest":{"options":{"undefined":"Неизвестно"}},"artist":{"label":"Художник"},"artwork_type":{"label":"Вид","options":{"bust":"Бюст","graffiti":"Графити","installation":"Арт инсталация","mural":"Стенопис","sculpture":"Скулптура","statue":"Статуя"}},"ascent":{"label":"Общо изкачване"},"atm":{"label":"Банкомат"},"attraction":{"label":"Тип"},"baby_feeding":{"options":{"no":"Нищо"}},"baby_seat":{"label":"Бебешка седалка"},"backcountry":{"label":"Ски бягане"},"backrest":{"label":"Облегалка за гръб"},"bar":{"label":"Бар"},"barrier":{"label":"Вид","options":{"bollard":"Колче","cattle_grid":"Тексаска мрежа","city_wall":"Градска стена","cycle_barrier":"Велосипедна преграда","ditch":"Канавка","entrance":"Вход","fence":"Ограда","gate":"Портал","guard_rail":"Мантинела","hedge":"Жив плет","jersey_barrier":"Джърси бариера","kerb":"Бордюр","kissing_gate":"Препятствие за животни","retaining_wall":"Подпорна стена","stile":"Стълби за преминаване през ограда","toll_booth":"Будка за тол такса","wall":"Стенен"}},"barrier_planter":{"label":"Преграда","options":{"planter":"Да","undefined":"Не"}},"basin":{"label":"Тип"},"bath/open_air":{"label":"Открит"},"bath/type":{"label":"Вид","options":{"hot_spring":"Горещ минерален извор","lake":"Езеро"}},"beauty":{"options":{"cosmetics":"Козметик","nails":"Маникюр / педикюр","tanning":"Солариум"}},"bench":{"label":"Пейка"},"bicycle_parking":{"label":"Вид"},"bicycle_road":{"options":{"undefined":"Не","yes":"Да"}},"bin":{"label":"Кошче за боклук"},"blind":{"options":{"no":"Не","yes":"Да"}},"blood_components":{"label":"Кръвни съставки","options":{"plasma":"плазма","platelets":"тромбоцити","stemcells":"проби от стволови клетки","whole":"Цяла кръв"}},"board_type":{"label":"Вид","options":{"history":"История"}},"bollard":{"label":"Тип"},"boules":{"label":"Вид"},"boundary":{"label":"Вид"},"brand":{"label":"Търговска марка"},"bridge":{"label":"Вид","placeholder":"По подразбиране"},"bridge/support":{"label":"Тип"},"bridge_combo":{"label":"Тип"},"building":{"label":"Сграда","options":{"barn":"Хамбар","bungalow":"Бунгало","bunker":"Бункер","cabin":"Хижа","carport":"Навес за автомобили","cathedral":"Катедрала","church":"Църква","construction":"Сграда в строеж","cowshed":"Краварник","garage":"Гараж","garages":"Гаражи","ger":"Юрта","greenhouse":"Оранжерия","hangar":"Хангар","house":"Къща","industrial":"Индустриална сграда","office":"Офис сграда","residential":"Жилищна сграда","roof":"Покрив","school":"Училищна сграда","shed":"Навес","stable":"Конюшня"}},"building/flats":{"label":"Брой на апартаментите"},"building/levels":{"label":"Нива","placeholder":"2, 4, 6..."},"building/levels/underground":{"label":"Подземни нива","placeholder":"2, 4, 6..."},"building/material":{"label":"Материал"},"building/part":{"label":"Част от сграда"},"bunker_type":{"label":"Вид"},"cables":{"label":"Кабели","placeholder":"1, 2, 3..."},"camera/direction":{"label":"Посока (Градуси по посока на часовниковата стрелка)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"Монтаж на видеокамера"},"camera/type":{"label":"Вид видеокамера","options":{"dome":"Куполна","fixed":"Фиксирана","panning":"Движеща се"}},"camp_site":{"label":"Тип"},"capacity":{"label":"Капацитет","placeholder":"50, 100, 200..."},"capacity/disabled_parking":{"placeholder":"1, 2, 3..."},"capacity/persons":{"label":"Капацитет (души)","placeholder":"50, 100, 200..."},"capacity/tents":{"label":"Капацитет (палатки)"},"capacity_volume":{"placeholder":"50, 100, 200..."},"castle_type":{"label":"Вид","options":{"palace":"Палат"}},"check_date":{"placeholder":"ГГГГ-ММ-ДД"},"climbing/length":{"label":"Дължина (Метри)"},"clothes":{"label":"Дрехи","options":{"babies":"Бебешко облекло","children":"Детско облекло","denim":"Дънкови облекла","fur":"Облекло от козина","hats":"Шапки","maternity":"Облекло за майчинство","men":"Мъжко обекло","oversize":"Облекло с голям размер","socks":"Чорапи","sports":"Спортно облекло","suits":"Костюми","swimwear":"Бански","traditional":"Традиционни облекла / народни носии","underwear":"Бельо","wedding":"Сватбени дрехи","women":"Дамски дрехи","workwear":"Работни дрехи"}},"club":{"label":"Вид"},"collection_times":{"label":"График на събиране"},"collector":{"label":"Предмети","options":{"coins":"Монети","comics":"Комикси","stamps":"Марки"}},"colour":{"label":"Цвят"},"comment":{"label":"Коментар на промяната","placeholder":"Кратко описание на вашите промени (изисква се)"},"communication_multi":{"label":"Вид комуникации"},"community_centre":{"label":"Тип"},"construction":{"label":"Вид"},"consulate":{"label":"Тип","options":{"consular_agency":"Агенция за консулски услуги","consular_office":"Служба за консулски услуги","consulate_general":"Генерално консулство","honorary_consul":"Почетно консулство","residence":"Официална резиденция на консул","yes":"Консулство"}},"contact/webcam":{"label":"Уебкамера URL","placeholder":"http://example.com/"},"content":{"label":"Съдържание"},"conveying":{"label":"Посока на движение","options":{"backward":"Назад","forward":"Напред","reversible":"Обръщаема"}},"conveying_escalator":{"label":"Ескалатор"},"country":{"label":"Държава"},"couplings":{"placeholder":"1, 2, 3..."},"covered":{"label":"Покрит"},"covered_no":{"options":{"no":"Не","undefined":"Предполага се че е НЕ Е еднопосочна","yes":"Да"}},"craft":{"label":"Вид","options":{"agricultural_engines":"Механик на селскостопански двигатели","beekeeper":"Пчелар","blacksmith":"Ковачница","brewery":"Пивоварна","carpenter":"Дърводелец","caterer":"Кетъринг","chimney_sweeper":"Коминочистач","clockmaker":"Часовникар","electrician":"Електротехник","gardener":"Градинар","key_cutter":"Изработка на ключове","locksmith":"Ключар","painter":"Бояджия","photographer":"Фотограф","photographic_laboratory":"Фотографска лаборатория","plumber":"Водопроводчик","sawmill":"Дъскорезница","sculptor":"Скулптор","shoemaker":"Обувщар","stonemason":"Каменоделец","tailor":"Шивач"}},"crane/type":{"label":"Вид кран","options":{"floor-mounted_crane":"Конзолен кран","gantry_crane":"Мостов кран","portal_crane":"Портален кран","tower_crane":"Кулокран","travel_lift":"Мобилен кран"}},"crop":{"label":"Посев","options":{"asparagus":"Аспержи","barley":"Ечемик","beet":"Цвекло","cassava":"Касава (маниока)","coffee":"Кафе","cotton":"Памук","cranberries":"Червени боровинки","flowers":"Цветя","grape":"Грозде","grass":"Трева","hop":"Хмел","lavender":"Лавандула","maize":"Царевица","potato":"Картофи","rape":"Рапица","rice":"Ориз","soy":"Соя","strawberry":"Ягоди","sugar_beet":"Захарно цвекло","sugarcane":"Захарна тръстика","sunflower":"Слънчоглед","tea":"Чай","tobacco":"Тютюн","vegetable":"Зеленчуци","wheat":"Пшеница"}},"crossing":{"label":"Вид","options":{"traffic_signals":"Пешеходен светофар","uncontrolled":"Само маркировка","unmarked":"Няма маркировка или светофар"}},"crossing/barrier":{"label":"Бариерно рамо","options":{"no":"Не","yes":"Да"}},"crossing/island":{"label":"Пешеходен остров"},"crossing/markings":{"label":"Маркировка","options":{"dashes":"Прекъснати напречни линии (за пешеходци)","dots":"Прекъснати напречни линии (за велосипедисти)","no":"Немаркирана","zebra":"Зебра","zebra:bicolour":"Зебра с редуващи се цветове"}},"crossing_raised":{"label":"Повдигнат","options":{"table":"Да","undefined":"Не"}},"cuisine":{"label":"Кухня","options":{"american":"Американска","asian":"Азиатска","burger":"Бургери","chicken":"Пиле","chinese":"Китайско","coffee_shop":"Кафене","donut":"Донати","fish":"Риба","french":"Френска","german":"Немска","greek":"Гръцка","ice_cream":"Сладолед","indian":"Индийска","indonesian":"Индонезийска","italian":"Италианска","japanese":"Японска","kebab":"Дюнери","korean":"Корейска","malaysian":"Малоазийска","mexican":"Мексиканска","pancake":"Палачинки","pasta":"Паста","pizza":"Пица","polish":"Полска","portuguese":"Португалска","regional":"Местна","russian":"Руска","salad":"Салати","sandwich":"Сандвич","seafood":"Морска храна","spanish":"Испанска","sushi":"Суши","taiwanese":"Тайванска","tea":"Чай","thai":"Тайландска","turkish":"Турска","vietnamese":"Виетнамска"}},"currency_multi":{"label":"Валути"},"cutting":{"label":"Вид","placeholder":"По подразбиране"},"cycle_barrier":{"label":"Тип"},"cycle_barrier/installation":{"options":{"fixed":"Фиксирана"}},"cycle_network":{"label":"Мрежа"},"cycleway":{"label":"Велоалеи","options":{"lane":{"description":"Велоалея отделена с маркировка от автомобилния трафик "},"no":{"description":"Без велоалея","title":"Нищо"},"share_busway":{"description":"Велоалея споделена с бус лента"},"shared_lane":{"description":"Велоалея без отделяне от автомобилния трафик"},"track":{"description":"Велоалея отделена от автомобилния трафик чрез преграда"}}},"date":{"label":"Дата"},"delivery":{"label":"Доставка"},"denomination":{"label":"Вероизповедание"},"denotation":{"label":"Название"},"departures_board":{"options":{"no":"Нищо","realtime":"Електронно","timetable":"Разписание","yes":"Да"}},"depot":{"label":"Тип"},"description":{"label":"Описание"},"destination_waterway":{"label":"До дестинация"},"devices":{"label":"Устройства","placeholder":"1, 2, 3..."},"diplomatic":{"label":"Тип","options":{"consulate":"Консулство","embassy":"Посолство"}},"direction":{"label":"Посока (Градуси по часовниковата стрелка)","placeholder":"45, 90, 180, 270"},"direction_cardinal-US-CA-NZ":{"label":"Посока","options":{"east":"Изток","north":"Север","south":"Юг","west":"Запад"}},"direction_clock":{"label":"Посока","options":{"anticlockwise":"Обратно на часовниковата стрелка","clockwise":"По часовниковата стрелка"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"options":{"backward":"Назад","both":"И двете / Всички","forward":"Напред"}},"dispensing":{"label":"Изпълнява рецепти"},"display":{"label":"Дисплей"},"distance":{"label":"Разстояние"},"disused/amenity":{"label":"Тип"},"disused/railway":{"label":"Тип"},"disused/shop":{"label":"Тип"},"dock":{"label":"Вид"},"dog":{"options":{"yes":"Разрешен"}},"door_type":{"label":"Тип"},"drive_through":{"label":"Драйв-тру"},"duration":{"label":"Продължителност","placeholder":"00:00"},"electrified":{"label":"Електрифицикация","options":{"contact_line":"Контактна мрежа","no":"Не","rail":"Контактна релса","yes":"Да (неуточнено)"},"placeholder":"Контактна мрежа, контактна релса"},"email":{"label":"Email","placeholder":"example@example.com"},"embankment":{"label":"Вид","placeholder":"По подразбиране"},"embassy":{"label":"Тип","options":{"yes":"Посолство"}},"emergency":{"label":"Спешни случаи"},"emergency_combo":{"label":"Тип"},"emergency_ward_entrance":{"label":"Тип"},"enforcement":{"label":"Тип"},"entrance":{"label":"Вид","options":{"shop":"Вход към магазин"}},"except":{"label":"Изключения"},"fax":{"label":"Факс","placeholder":"+31 42 123 4567"},"fee":{"label":"Такса"},"fence_type":{"label":"Вид"},"fire_hydrant/position":{"label":"Местоположение","options":{"parking_lot":"Паркинг","sidewalk":"Тротоар"}},"fire_hydrant/type":{"label":"Форма","options":{"pillar":"Надземен","underground":"Подземен","wall":"Стенен"}},"fire_mains":{"options":{"no":"Не"}},"fire_service_inlet":{"label":"Форма","options":{"pillar":"Надземен","underground":"Подземен паркинг","wall":"Стенен"}},"fire_sprinkler":{"options":{"no":"Не"}},"fitness_station":{"label":"Вид оборудване"},"fixme":{"label":"Поправи ме"},"flashing_lights":{"options":{"no":"Не","yes":"Да"}},"ford":{"label":"Вид","placeholder":"По подразбиране"},"fountain":{"label":"Тип"},"frequency":{"label":"Работна честота"},"from":{"label":"От"},"fuel":{"label":"Гориво"},"fuel/fuel_multi":{"label":"Видове гориво","options":{"diesel":"Дизел"}},"gauge":{"label":"Ширина"},"gender":{"label":"Пол","options":{"female":"Женски пол","male":"Мъжки пол","unisex":"Унисекс"},"placeholder":"Неизвестен"},"generator/method":{"label":"Метод на генерация","options":{"anaerobic_digestion":"Анаеробно разграждане","combustion":"Изгаряне","fission":"Ядрено делене","fusion":"Ядрен синтез","gasification":"Газификация","photovoltaic":"Фотоволтаици","water-storage":"Язовир","wind_turbine":"Вятърна турбина"}},"generator/output/electricity":{"label":"Изходна мощност","placeholder":"50 MW, 100 MW, 200 MW..."},"generator/source":{"label":"Източник на енергия","options":{"battery":"Батерия / Акумулатор","biogas":"Биогаз","coal":"Въглища","diesel":"Дизел","gas":"Природен газ","gasoline":"Бензин","geothermal":"Геотермална енергия","nuclear":"Ядрена енергия","oil":"Петрол","tidal":"Енергия от морския прилив","wave":"Енергия от морски вълни","wind":"Вятър"}},"generator/type":{"label":"Вид"},"government":{"label":"Вид"},"grape_variety":{"label":"Сорт грозде"},"guest_house":{"label":"Тип"},"handicap":{"label":"Увреждане","placeholder":"1-18"},"handrail":{"label":"Парапет"},"hashtags":{"placeholder":"#пример"},"healthcare":{"label":"Вид","options":{"alternative":"Алтернативна медицина","audiologist":"Аудиолог","dentist":"Стоматолог","hospice":"Хоспис","laboratory":"Медицинска лаборатория","optometrist":"Оптометрист","physiotherapist":"Физиотерапевт","podiatrist":"Ортопед","psychotherapist":"Психотерапевт","speech_therapist":"Логопед"}},"healthcare/speciality":{"label":"Направления","options":{"acupuncture":"Акупунктура","anaesthetics":"Анестезиология","angiology":"Ангиология","aromatherapy":"Ароматерапия","behavior":"Поведенческа терапия","biochemistry":"Биохимия","biology":"Биология","blood_check":"Кръвни изследвания","cardiology":"Кардиология","cardiothoracic_surgery":"Кардиотораксиална хирургия ","clinical_pathology":"Клинична патология","community":"Обществено здраве","dental_oral_maxillo_facial_surgery":"Дентална, орална и лицево-челюстна хирургия","dermatology":"Дерматология","dermatovenereology":"Дерматовенерология","diabetology":"Диабетология","diagnostic_radiology":"Диагностична радиология","emergency":"Спешна медицина","endocrinology":"Ендокринология","gastroenterology":"Гастроентерология","general":"Обща практика","geriatrics":"Гериатрична медицина","gynaecology":"Акушерство и гинекология","haematology":"Хематология","hepatology":"Хепатология","homeopathy":"Хомеопатия","infectious_diseases":"Инфекциозни болести","intensive":"Интензивна грижа","internal":"Вътрешни болести","nephrology":"Нефрология","neurology":"Неврология","neuropsychiatry":"Невропсихиатрия","neurosurgery":"Неврохирургия","nuclear":"Ядрена медицина","oncology":"Онкология","ophthalmology":"Офтамология","orthodontics":"Ортодонтия","orthopaedics":"Ортопедична хирургия","otolaryngology":"Уши, нос гърло (УНГ)","paediatric_surgery":"Педиатрична хирургия","paediatrics":"Педиатрия","palliative":"Палиативни грижи","pathology":"Патология","physiatry":"Физическа медицина и рехабилитация","plastic_surgery":"Пластична хирургия","psychiatry":"Психиатрия","pulmonology":"Пулмология","radiology":"Радиология","radiotherapy":"Радиотерапия","reflexology":"Рефлексология","rheumatology":"Ревматология","shiatsu":"Шиатсу","stomatology":"Стоматология","surgery":"Обща хирургия","transplant":"Трансплантация","tropical":"Тропическа медицина","urology":"Урология","vaccination":"Ваксинация","vascular_surgery":"Съдова хирургия"}},"heating":{"label":"Отопление"},"height":{"label":"Височина (метри)"},"highway":{"label":"Вид"},"highway_cartpath":{"options":{"service":"Сервизна улица"}},"historic":{"label":"Вид","options":{"archaeological_site":"Археологически обект","boundary_stone":"Граничен камък","building":"Историческа сграда","castle":"Замък","city_gate":"Градска порта","fort":"Исторически форт","memorial":"Мемориал","monument":"Паметник","railway":"ЖП транспорт","ruins":"Руини","tomb":"Гробница","wayside_cross":"Крайпътен кръст","wayside_shrine":"Крайпътен параклис"}},"historic/civilization":{"label":"Историческа цивилизация"},"holding_position/type":{"label":"Тип","options":{"runway":"Летателна писта"}},"hoops":{"label":"Кошове","placeholder":"1, 2, 4..."},"horse_riding":{"options":{"horse_riding":"Да","undefined":"Не"}},"incline":{"label":"Наклон"},"incline_steps":{"options":{"down":"Надолу","up":"Нагоре"}},"indoor":{"label":"Вътрешно разпределение"},"indoor_type":{"label":"Тип"},"industrial":{"label":"Тип"},"information":{"label":"Вид"},"inscription":{"label":"Надпис"},"intermittent":{"label":"Пресъхващ"},"internet_access":{"options":{"no":"Не","terminal":"Терминал","wired":"Кабелен","wlan":"Wifi","yes":"Да"}},"internet_access/fee":{"label":"Такса за достъп до интернет","options":{"customers":"Само за клиенти"}},"irrigation_pivot":{"options":{"pivot":"Да","undefined":"Не"}},"kerb":{"label":"Бордюр","options":{"flush":{"description":"Скосен бордюр, който е на едно ниво с околната площ.","title":"Равен"},"lowered":{"description":"Скосен бордюр, който може да се използва от хора в инвалидни колички, не по-висок от няколко сантиметра.","title":"Скосен"},"no":{"description":"На това място няма бордюр.","title":"Не"},"raised":{"description":"Повдигнат бордюр, който не може лесно да се използва от хора в инвалидни колички, по-висок от няколко сантиметра.","title":"Повдигнат"},"rolled":{"description":"Повдигнат бордюр със заоблен ръб, който улеснява преминаването на автомобили или велосипеди, но не и на инвалидни колички.","title":"Заоблен"},"yes":{"description":"На това място има някакъв бордюр, но не е известно дали е повдигнат, скосен, равен и т.н.","title":"Да"}}},"kerb/kerb_barrier":{"label":"Тип"},"label":{"label":"Надпис"},"lamp_type":{"label":"Тип"},"landuse":{"label":"Вид"},"lanes":{"label":"Ленти","placeholder":"1, 2, 3..."},"layer":{"label":"Слой","placeholder":"0"},"layer_1":{"placeholder":"0"},"leaf_cycle":{"label":"Листен цикъл","options":{"deciduous":"Листопаден","evergreen":"Вечнозелен ","mixed":"Смесен","semi_deciduous":"Полу-листопаден","semi_evergreen":"Полу-вечнозелен"}},"leaf_type":{"label":"Вид листа","options":{"broadleaved":"Широколистни","leafless":"Безлистни","mixed":"Смесени","needleleaved":"Иглолистни"}},"leaf_type_singular":{"label":"Вид листа"},"leisure":{"label":"Вид"},"length":{"label":"Дължина (Метри)"},"level":{"label":"Ниво"},"level_semi":{"label":"Нива"},"liaison":{"label":"Тип"},"lifeguard":{"label":"Тип"},"lifeguard_check":{"label":"Спасител"},"lift_gate/type":{"label":"Тип"},"lit":{"label":"Осветление"},"location":{"label":"Местоположение"},"location_pool":{"options":{"indoor":"На закрито"}},"man_made":{"label":"Вид"},"manhole":{"label":"Вид"},"map_size":{"label":"Покритие"},"map_type":{"label":"Вид"},"marker":{"label":"Тип","options":{"ground":{"title":"Земя"}}},"material":{"label":"Материал","options":{"concrete":"Бетон","metal":"Метал","plastic":"Пластмаса","sand":"Пясък","wood":"Дървесина"}},"max_age":{"label":"Максимална възраст"},"maxspeed":{"label":"Ограничение на скоростта","placeholder":"40, 50, 60..."},"maxspeed/advisory":{"placeholder":"40, 50, 60..."},"maxspeed/hgv":{"placeholder":"40, 50, 60..."},"memorial":{"label":"Вид","options":{"bust":"Бюст","sculpture":"Скулптура","statue":"Статуя"}},"min_age":{"label":"Минимална възраст"},"mobile":{"placeholder":"+31 42 123 4567"},"monitoring_multi":{"label":"Мониторинг"},"mooring":{"options":{"no":"Не","private":"Частен","yes":"Да"}},"mtb/scale":{"label":"Трудност на трасе за планинско колоездене","options":{"0":"0: Валиран чакъл/уплътнена земя, без препятствия, широки криви","1":"1: Малко нестабилна настилка, дребни препятствия, широки криви","2":"2: Много нестабилна настилка, големи препятствия, лесни серпентини","3":"3: Хлъзгава настилка, големи препятствия, тесни серпентини","4":"4: Нестабилна настилка или камъни, опасни серпентини","5":"5: Максимална трудност, големи участъци покрити с камъни, свлачища","6":"6: Невъзможно за каране с изключение на най-добрите планински колоездачи."},"placeholder":"0, 1, 2, 3..."},"mtb/scale/imba":{"label":"IMBA Трудност на пътеките","placeholder":"Лесна, Средна, Трудна..."},"mtb/scale/uphill":{"label":"Трудност на изкачване при планинско колоездене","options":{"0":"0: Среден наклон <10%, чакъл/уплътнена почва, без препятствия","1":"1: Среден наклон <15%, чакъл/уплътнена почва, малък брой дребни препятствия","2":"2: Среден наклон <20%, стабилна повърхност, камъни с големина на юмрук/корени","3":"3: Среден наклон <25%, разнообразна повърхност, камъни с големина на юмрук/клони","4":"4: Среден наклон <30%, лоши условия, големи скали/клони","5":"5: Много стръмни, обикновено е необходимо бутане или носене на колелото"},"placeholder":"0, 1, 2, 3..."},"museum":{"label":"Тип"},"name":{"label":"Име","placeholder":"Популярно наименование (ако има такова)"},"natural":{"label":"Природа"},"network":{"label":"Мрежа"},"network/type":{"label":"Вид мрежа"},"network_bicycle":{"options":{"icn":"Международна","lcn":"Локална","ncn":"Национална","rcn":"Регионална"},"placeholder":"Локална, Регионална, Национална, Международна"},"network_foot":{"options":{"iwn":"Международна","lwn":"Локална","nwn":"Национална","rwn":"Регионална"},"placeholder":"Локална, Регионална, Национална, Международна"},"network_horse":{"options":{"ihn":"Международна","lhn":"Локална","nhn":"Национална","rhn":"Регионална"},"placeholder":"Локална, Регионална, Национална, Международна"},"network_road":{"label":"Мрежа"},"note":{"label":"Бележка"},"nudism":{"options":{"designated":"По предназначение","no":"Забранен","permissive":"Частичен","yes":"Разрешен"}},"office":{"label":"Вид","options":{"diplomatic":"Дипломатически офис","estate_agent":"Брокер","insurance":"Застрахователен офис","lawyer":"Адвокат","notary":"Нотариус","travel_agent":"Туристическа агенция"}},"oneway":{"label":"Еднопосочнoст","options":{"alternating":"С изчакване","no":"Не","reversible":"Обръщаема","undefined":"Предполага се че е НЕ Е еднопосочна","yes":"Да"}},"oneway_yes":{"options":{"alternating":"С изчакване","no":"Не","reversible":"Обръщаема","undefined":"Предполага се, че Е еднопосочна","yes":"Да"}},"opening_date":{"placeholder":"ГГГГ-ММ-ДД"},"opening_hours":{"label":"Работно време","placeholder":"Неизвестно"},"operator":{"label":"Оператор"},"organic":{"options":{"no":"Нищо"}},"outdoor_seating":{"label":"Места на открито"},"par":{"label":"Пар","placeholder":"3, 4, 5..."},"parcel_pickup":{"options":{"no":"Не","undefined":"Предполага се, че Е еднопосочна","yes":"Да"}},"park_ride":{"label":"Буферен паркинг"},"parking":{"label":"Вид","options":{"carports":{"title":"Навеси"},"garage_boxes":{"title":"Гаражни клетки"},"lane":{"title":"Паркинг лента"},"multi-storey":{"title":"Многоетажен паркинг"},"sheds":{"title":"Паянтов"},"surface":{"title":"Наземен"},"underground":{"title":"Подземен паркинг"}}},"parking/side/orientation":{"types":{"parking:left:orientation":"Лява","parking:right:orientation":"Дясна"}},"parking/side/parking":{"options":{"lane":"Паркинг лента","no":"Не","yes":"Да (неуточнено)"},"types":{"parking:left":"Лява","parking:right":"Дясна"}},"parking_entrance":{"label":"Тип"},"parking_space":{"label":"Тип"},"payment_multi":{"label":"Начини за плащане","options":{"coins":"Монети"}},"phases":{"label":"Фази","placeholder":"1, 2, 3..."},"phone":{"label":"Телефон"},"picnic_table":{"label":"Пикник маса"},"pipeline":{"label":"Тип"},"piste/difficulty":{"label":"Трудност","placeholder":"Лесна, Средна, Трудна"},"piste/difficulty_downhill":{"options":{"easy":"Лесна (зелен кръг)"},"placeholder":"Лесна, Средна, Трудна"},"piste/difficulty_nordic":{"placeholder":"Лесна, Средна, Трудна"},"piste/difficulty_skitour":{"placeholder":"Лесна, Средна, Трудна"},"piste/grooming":{"label":"Оформяне","options":{"backcountry":"Ски бягане","classic":"Класическо","classic+skating":"Класическо и пързаляне","mogul":"Могул","scooter":"Скутер/Моторна шейна","skating":"Пързаляне с кънки"}},"piste/grooming_downhill":{"options":{"classic":"Класическо","mogul":"Могул"}},"piste/grooming_nordic":{"options":{"classic":"Класическо","classic+skating":"Класическо и пързаляне","scooter":"Скутер/Моторна шейна","skating":"Пързаляне с кънки"}},"piste/type":{"label":"Вид писта","options":{"downhill":"Спускане","hike":"Ски туризъм","ice_skate":"Ледена пързалка","nordic":"Северни дисциплини","playground":"Детска площадка","skitour":"Ски тур","sled":"Шейни","sleigh":"Теглени шейни","snow_park":"Снежен парк"}},"place":{"label":"Вид"},"plant":{"label":"Растение"},"plant/output/electricity":{"placeholder":"500 MW, 1000 MW, 2000 MW..."},"playground":{"label":"Тип"},"population":{"label":"Население"},"population/date":{"placeholder":"ГГГГ-ММ-ДД"},"post_box/type":{"label":"Тип"},"power":{"label":"Вид"},"power_supply":{"label":"Ел. захранване"},"produce":{"label":"Земеделска продукция"},"product":{"label":"Продукция"},"public_bookcase/type":{"label":"Тип"},"pump":{"options":{"no":"Нищо","yes":"Да"}},"railway":{"label":"Вид"},"railway/position":{"label":"Километричен камък","placeholder":"Разстояние до една десета (123.4)"},"railway/signal/direction":{"options":{"backward":"Назад","both":"В двете посоки","forward":"Напред"}},"ramp":{"options":{"no":"Не","yes":"Да"}},"recycling_accepts":{"label":"Приема","options":{"batteries":"Батерии","cans":"Кенчета","cardboard":"Картон","clothes":"Дрехи","glass_bottles":"Стъклени бутилки и буркани","green_waste":"Зелени отпадъци","paper":"Хартия","plastic":"Пластмаса","plastic_bottles":"Пластмасови бутилки","shoes":"Обувки"}},"recycling_type":{"label":"Тип","options":{"centre":"Център"}},"ref":{"label":"Референтен код"},"ref/isil":{"label":"ISIL код"},"ref_aeroway_gate":{"label":"Гейт номер"},"ref_disc_golf_hole":{"label":"Дупка номер","placeholder":"1-18"},"ref_golf_hole":{"label":"Дупка номер","placeholder":"1-18"},"ref_platform":{"label":"Перон номер"},"ref_road_number":{"label":"Път номер"},"ref_route":{"label":"Номер на маршрута"},"ref_runway":{"label":"Писта номер","placeholder":"напр. 01L/19R"},"ref_stop_position":{"label":"Спирка номер"},"ref_taxiway":{"label":"Рульожка номер","placeholder":"напр. A5"},"relation":{"label":"Вид"},"religion":{"label":"Религия"},"reservation":{"label":"Резервации","options":{"no":"Не се приемат","recommended":"Препоръчителна","required":"Задължителна","yes":"Приема се"}},"residential":{"label":"Тип"},"resort":{"label":"Тип"},"resource":{"label":"Ресурси","options":{"aggregate":"Инертни материали","clay":"Глина","coal":"Въглища","gold":"Злато","gravel":"Чакъл","iron_ore":"Желязна руда","limestone":"Варовик","peat":"Торф","sand":"Пясък"}},"restriction":{"label":"Вид"},"restrictions":{"label":"Ограничения при завиване"},"roller_coaster/track":{"label":"Тип"},"roof/shape":{"label":"Форма на покрива","options":{"cone":"Конусен","dome":"Куполен","flat":"Плосък","gabled":"Двускатен","hipped":"Четирискатен","pyramidal":"Пирамиден","skillion":"Едноскатен"}},"room":{"label":"Тип"},"rooms":{"label":"Стаи"},"route":{"label":"Вид"},"route_master":{"label":"Вид"},"royal_cypher-GB":{"options":{"no":"Не"}},"ruins":{"label":"Тип"},"sac_scale":{"label":"Трудност на туристически маршрут"},"salt":{"label":"Сол"},"seamark/beacon_isolated_danger/shape":{"label":"Форма"},"seamark/beacon_lateral/colour":{"label":"Цвят","options":{"green":"Зелен","grey":"Сив","red":"Червен"}},"seamark/beacon_lateral/shape":{"label":"Форма"},"seamark/beacon_lateral/system":{"options":{"other":"Друг"}},"seamark/buoy_lateral/colour":{"label":"Цвят","options":{"green":"Зелен","red":"Червен","red;green;red":"Червен-зелен-червен","red;white;red;white":"Червен-бял-червен-бял","white":"Бял","yellow":"Жълт"}},"seamark/buoy_lateral/shape":{"label":"Форма"},"seamark/buoy_lateral/system":{"options":{"other":"Друг"}},"seamark/harbour/category_marina":{"options":{"marina":"Да","marina_no_facilities":"Не"}},"seats":{"label":"Места","placeholder":"2, 4, 6..."},"second_hand":{"options":{"no":"Не","yes":"Да"}},"service":{"label":"Вид","options":{"alley":"Алея","drive-through":"Обслужване, без да напускате автомобила","driveway":"Алея за коли към жилище/бизнес","emergency_access":"За достъп при спешни случаи","parking_aisle":"Паркинг алея"}},"shelter":{"label":"Навес"},"shelter_type":{"label":"Тип"},"shoes":{"label":"Обувки"},"shop":{"label":"Вид"},"siren/type":{"label":"Тип","options":{"other":"Друг"}},"site":{"label":"Вид"},"smoking":{"options":{"no":"Пушенето е забранено","outside":"Пушенето е разрешено на открито"}},"social_facility":{"label":"Тип","options":{"ambulatory_care":"Амбулаторна грижа","food_bank":"Хранителна банка","nursing_home":"Старчески дом","shelter":"Навес"}},"source":{"label":"Източници","options":{"osm notes":"OpenStreetMap бележки"}},"sport":{"label":"Спорт"},"sport/sport_ice":{"label":"Спорт"},"sport/sport_pub":{"label":"Спорт"},"sport/sport_racing_motor":{"label":"Спорт"},"sport/sport_racing_nonmotor":{"label":"Спорт"},"start_date":{"placeholder":"ГГГГ-ММ-ДД"},"stile":{"label":"Тип"},"street_cabinet":{"label":"Тип"},"stroller":{"options":{"no":"Не","yes":"Да"}},"structure":{"label":"Структура","options":{"bridge":"Мост","cutting":"Изкоп","embankment":"Насип","tunnel":"Тунел"},"placeholder":"Неизвестен"},"structure_canal":{"label":"Структура","options":{"bridge":"Мост","tunnel":"Тунел"},"placeholder":"Неизвестно"},"structure_power":{"label":"Структура"},"structure_waterway":{"label":"Структура","options":{"tunnel":"Тунел"},"placeholder":"Неизвестно"},"studio":{"label":"Тип"},"substance":{"options":{"fuel":"Гориво","gas":"Природен газ","water":"Чешма"}},"substation":{"label":"Тип"},"substation_pipeline":{"label":"Тип","options":{"measurement":"Измерване"}},"supervised":{"label":"Под наблюдение"},"surface":{"label":"Настилка","options":{"artificial_turf":"Изкуствена трева","asphalt":"Асфалт","compacted":"Уплътнена","concrete":"Бетон","dirt":"Пръст","grass":"Трева","gravel":"Чакъл","ground":"Земя","metal":"Метал","mud":"Постоянна кал","paving_stones":"Плочки","salt":"Сол","sand":"Пясък","sett":"Павета","unhewn_cobblestone":"Калдъръм","wood":"Дървесина","woodchips":"Дървени стърготини"}},"survey_point/purpose":{"options":{"both":"И двете"}},"survey_point/structure":{"label":"Структура","options":{"block":"Бетонен блок"}},"swimming_pool":{"label":"Тип"},"switch":{"label":"Тип"},"tactile_paving":{"label":"Тактилна настилка"},"takeaway":{"options":{"no":"Не","yes":"Да"}},"telecom":{"label":"Тип","options":{"data_center":"Център за данни"}},"telescope/type":{"label":"Тип"},"to":{"label":"Към"},"toilets":{"label":"Тоалетна"},"toilets/disposal":{"options":{"flush":"Равен"}},"toilets/menstrual_products":{"options":{"no":"Не"}},"toilets/wheelchair":{"options":{"no":"Не","yes":"Да"}},"tomb":{"label":"Тип"},"tourism":{"label":"Вид"},"tower/construction":{"label":"Строеж"},"tower/platforms":{"placeholder":"1, 2, 3..."},"tower/type":{"label":"Тип"},"townhall/type":{"label":"Тип"},"trade":{"label":"Тип"},"traffic_calming":{"label":"Тип","options":{"bump":"Гърбица (остра)","chicane":"Шикан","choked_table":"Стеснение с пътна табла","cushion":"Пътна възглавница","hump":"Гърбица (полегата)","mini_bumps":"Малки пътни неравности (кабъри)","rumble_strip":"Напречна шумна маркировка","table":"Пътна табла"}},"traffic_sign":{"label":"Пътен знак"},"traffic_sign/direction":{"options":{"backward":"Назад","both":"В двете посоки","forward":"Напред"}},"traffic_signals":{"label":"Тип"},"traffic_signals/direction":{"options":{"backward":"Назад","both":"В двете посоки","forward":"Напред"}},"traffic_signals/sound":{"options":{"no":"Не","yes":"Да"}},"trail_visibility":{"label":"Видимост на туристическата пътека"},"transformer":{"label":"Тип"},"trench":{"label":"Тип"},"tunnel":{"label":"Тип","placeholder":"По подразбиране"},"tunnel_combo":{"label":"Тип"},"turning_circle":{"label":"Форма"},"two_sided":{"options":{"undefined":"Не","yes":"Да"}},"usage_rail":{"options":{"tourism":"Туризъм"}},"utility":{"options":{"oil":"Петрол","power":"Енергетика","water":"Водна площ"}},"valve":{"label":"Тип"},"vehicles":{"options":{"bus":"Автобус","monorail":"Монорелсов път","subway":"Метро","tram":"Трамвай","trolleybus":"Тролейбус"}},"vending":{"options":{"coffee":"Кафе","fuel":"Гориво","ice_cream":"Сладолед","pizza":"Пица","water":"Чешма"}},"via":{"label":"През"},"visibility":{"label":"Видимост","options":{"house":"До 5м (16 фута)"}},"wall":{"label":"Тип"},"water":{"label":"Вид"},"water_source":{"options":{"pond":"Резервоар","river":"Река","stream":"Поток"}},"waterway":{"label":"Вид"},"website":{"label":"Уебсайт"},"wetland":{"label":"Вид"},"wheelchair":{"label":"Достъп за инвалиди","options":{"no":"Не","yes":"Да"}},"wikidata":{"label":"Уикиданни"},"wikipedia":{"label":"Уикипедия"},"windings":{"label":"Намотки","placeholder":"1, 2, 3..."},"windings/auto":{"options":{"no":"Не","undefined":"Предполага се че е НЕ Е еднопосочна","yes":"Да"}}},"presets":{"address":{"name":"Адрес"},"advertising/billboard":{"name":"Билборд"},"aeroway/aerodrome":{"name":"Летище","terms":"аерогара"},"aeroway/hangar":{"name":"Хангар"},"aeroway/helipad":{"name":"Хеликоптерна площадка"},"aeroway/runway":{"name":"Летателна писта"},"aeroway/taxiway":{"name":"Рульожка"},"amenity":{"name":"Услуги"},"amenity/atm":{"name":"Банкомат"},"amenity/bank":{"name":"Банка"},"amenity/bar":{"name":"Бар"},"amenity/bench":{"name":"Пейка"},"amenity/bicycle_parking":{"name":"Паркинг за велосипеди"},"amenity/bicycle_rental":{"name":"Наем на велосипеди"},"amenity/bus_station":{"name":"Автостанция / терминал"},"amenity/cafe":{"name":"Кафене"},"amenity/car_rental":{"name":"Коли под наем"},"amenity/car_wash":{"name":"Автомивка"},"amenity/casino":{"name":"Казино"},"amenity/childcare":{"name":"Детска ясла"},"amenity/cinema":{"name":"Кино"},"amenity/courthouse":{"name":"Съд"},"amenity/dentist":{"name":"Стоматолог","terms":"зъб,зъби,зъболекар"},"amenity/doctors/podiatry":{"name":"Ортопед"},"amenity/drinking_water":{"name":"Чешма"},"amenity/driver_training":{"name":"Учебен полигон","terms":"мото полигон,полигон за начинаещи шофьори"},"amenity/embassy":{"name":"Посолство"},"amenity/fast_food":{"name":"Бърза закуска"},"amenity/fire_station":{"name":"Пожарна"},"amenity/fountain":{"name":"Фонтан"},"amenity/fuel":{"name":"Бензиностанция"},"amenity/grave_yard":{"name":"Църковно гробище"},"amenity/hospital":{"name":"Болница"},"amenity/library":{"name":"Библиотека"},"amenity/marketplace":{"name":"Пазар"},"amenity/nursing_home":{"name":"Старчески дом"},"amenity/parking":{"name":"Паркинг"},"amenity/parking/underground":{"name":"Подземен паркинг"},"amenity/parking_entrance":{"name":"Вход/изход на гараж"},"amenity/parking_space":{"name":"Паркомясто"},"amenity/parking_space/disabled":{"name":"Паркомясто за инвалиди"},"amenity/pharmacy":{"name":"Аптека"},"amenity/photo_booth":{"name":"Фото будка"},"amenity/place_of_worship":{"name":"Религиозен храм"},"amenity/place_of_worship/buddhist":{"name":"Будистки храм"},"amenity/place_of_worship/christian":{"name":"Християнска църква"},"amenity/place_of_worship/jewish":{"name":"Еврейска синагога"},"amenity/place_of_worship/muslim":{"name":"Джамия"},"amenity/police":{"name":"Полиция"},"amenity/post_office":{"name":"Поща"},"amenity/pub":{"name":"Пъб"},"amenity/recycling/container/electrical_items":{"name":"Електронни отпадъци"},"amenity/recycling/container/green_waste":{"name":"Контейнер за зелени отпадъци"},"amenity/refugee_site":{"name":"Бежански лагер"},"amenity/restaurant":{"name":"Ресторант"},"amenity/restaurant/american":{"name":"Американски ресторант"},"amenity/restaurant/asian":{"name":"Азиатски ресторант"},"amenity/restaurant/chinese":{"name":"Китайски ресторант"},"amenity/restaurant/french":{"name":"Френски ресторант"},"amenity/restaurant/german":{"name":"Немски ресторант","terms":"германски ресторант"},"amenity/restaurant/greek":{"name":"Гръцки ресторант"},"amenity/restaurant/indian":{"name":"Индийски ресторант"},"amenity/restaurant/italian":{"name":"Италиански ресторант"},"amenity/restaurant/japanese":{"name":"Японски ресторант"},"amenity/restaurant/mexican":{"name":"Мексикански ресторант"},"amenity/restaurant/steakhouse":{"name":"Стекхаус"},"amenity/restaurant/sushi":{"name":"Суши ресторант"},"amenity/restaurant/thai":{"name":"Тайландски ресторант"},"amenity/restaurant/turkish":{"name":"Турски ресторант"},"amenity/restaurant/vietnamese":{"name":"Виетнамски ресторант"},"amenity/shelter":{"name":"Навес"},"amenity/shelter/gazebo":{"name":"Беседка"},"amenity/shelter/public_transport":{"name":"Спирков навес","terms":"навес на спирка,спирконавес"},"amenity/social_facility/ambulatory_care":{"name":"Амбулаторна грижа"},"amenity/social_facility/food_bank":{"name":"Хранителна банка"},"amenity/social_facility/group_home":{"name":"Групов дом за възрастни хора"},"amenity/social_facility/homeless_shelter":{"name":"Дом за бездомни"},"amenity/social_facility/nursing_home":{"name":"Старчески дом"},"amenity/taxi":{"name":"Такси стоянка"},"amenity/telephone":{"name":"Телефон"},"amenity/theatre":{"name":"Театър"},"amenity/townhall":{"name":"Кметство"},"amenity/townhall/city":{"name":"Кметство"},"amenity/vehicle_inspection":{"name":"ГТП","terms":"технически преглед,годишен технически преглед,годишни технически прегледи"},"amenity/vending_machine":{"name":"Автомат за стоки"},"amenity/vending_machine/bottle_return":{"name":"Машина за връщане на бутилки"},"amenity/vending_machine/coffee":{"name":"Автомат за кафе","terms":"кафе-автомат"},"amenity/vending_machine/drinks":{"name":"Автомат за напитки"},"amenity/vending_machine/parking_tickets":{"name":"Автомат за талони за паркиране"},"amenity/waste_disposal":{"name":"Контейнер за боклук"},"area":{"name":"Площ"},"barrier":{"name":"Преграда"},"barrier/block":{"name":"Бетонен блок"},"barrier/bollard":{"name":"Колче"},"barrier/cattle_grid":{"name":"Тексаска мрежа"},"barrier/city_wall":{"name":"Градска стена"},"barrier/cycle_barrier":{"name":"Велосипедна преграда"},"barrier/entrance":{"name":"Вход"},"barrier/fence":{"name":"Ограда"},"barrier/gate":{"name":"Портал"},"barrier/guard_rail":{"name":"Мантинела"},"barrier/handrail":{"name":"Парапет"},"barrier/hedge":{"name":"Жив плет"},"barrier/jersey_barrier":{"name":"Джърси бариера","terms":"джърси преграда,бетонен ограничител"},"barrier/kerb":{"name":"Бордюр"},"barrier/kerb/lowered":{"name":"Снижен бордюр"},"barrier/kissing_gate":{"name":"Препятствие за животни"},"barrier/retaining_wall":{"name":"Подпорна стена"},"barrier/stile":{"name":"Стълби за преминаване през ограда"},"barrier/toll_booth":{"name":"Будка за тол такса"},"barrier/wall":{"name":"Стена"},"barrier/wall/noise_barrier":{"name":"Шумоизолираща преграда"},"boundary":{"name":"Граница"},"boundary/administrative":{"name":"Административна граница"},"building":{"name":"Сграда"},"building/barn":{"name":"Хамбар","terms":"плевня,обор"},"building/bungalow":{"name":"Бунгало"},"building/bunker":{"name":"Бункер"},"building/cabin":{"name":"Хижа"},"building/carport":{"name":"Навес за автомобили"},"building/cathedral":{"name":"Катедрала"},"building/church":{"name":"Църква"},"building/construction":{"name":"Сграда в строеж"},"building/cowshed":{"name":"Краварник","terms":"обор,кравеферма"},"building/entrance":{"name":"Вход/изход"},"building/garage":{"name":"Гараж"},"building/garages":{"name":"Гаражи"},"building/ger":{"name":"Юрта"},"building/greenhouse":{"name":"Оранжерия","terms":"парник"},"building/hangar":{"name":"Хангар"},"building/house":{"name":"Къща"},"building/industrial":{"name":"Индустриална сграда"},"building/office":{"name":"Офис сграда"},"building/residential":{"name":"Жилищна сграда"},"building/roof":{"name":"Покрив"},"building/school":{"name":"Училищна сграда"},"building/shed":{"name":"Навес"},"building/stable":{"name":"Конюшня"},"building_part":{"name":"Част от сграда"},"building_point":{"name":"Сграда"},"cemetery/sector":{"name":"Гробищен сектор"},"craft/agricultural_engines":{"name":"Механик на селскостопански двигатели"},"craft/beekeeper":{"name":"Пчелар"},"craft/blacksmith":{"name":"Ковачница"},"craft/carpenter":{"name":"Дърводелец"},"craft/caterer":{"name":"Кетъринг"},"craft/chimney_sweeper":{"name":"Коминочистач"},"craft/clockmaker":{"name":"Часовникар"},"craft/electrician":{"name":"Електротехник"},"craft/gardener":{"name":"Градинар"},"craft/key_cutter":{"name":"Изработка на ключове"},"craft/locksmith":{"name":"Ключар"},"craft/painter":{"name":"Бояджия"},"craft/photographer":{"name":"Фотограф"},"craft/photographic_laboratory":{"name":"Фотографска лаборатория"},"craft/plumber":{"name":"Водопроводчик"},"craft/sawmill":{"name":"Дъскорезница"},"craft/sculptor":{"name":"Скулптор"},"craft/shoemaker":{"name":"Обувщар"},"craft/stonemason":{"name":"Каменоделец"},"craft/tailor":{"name":"Шивач"},"demolished/building":{"name":"Наскоро разрушена сграда"},"embankment":{"name":"Насип"},"emergency/defibrillator":{"name":"Дефибрилатор"},"emergency/fire_extinguisher":{"name":"Пожарогасител","terms":"прахов пожарогасител,воден пожарогасител"},"emergency/fire_hose":{"name":"Пожарен кран","terms":"пожарен маркуч"},"emergency/fire_hydrant":{"name":"Пожарен хидрант"},"emergency/first_aid_kit":{"name":"Комплект за първа помощ"},"emergency/life_ring":{"name":"Спасителен пояс"},"emergency/lifeguard":{"name":"Спасител"},"emergency/phone":{"name":"Телефон за спешна помощ"},"emergency/siren":{"name":"Сирена"},"entrance":{"name":"Вход / изход"},"entrance/main":{"name":"Главен вход","terms":"основен вход"},"entrance/shop":{"name":"Вход към магазин","terms":"врата,вход към търговски обект"},"healthcare/alternative":{"name":"Алтернативна медицина"},"healthcare/alternative/chiropractic":{"name":"Хиропрактик"},"healthcare/audiologist":{"name":"Аудиолог"},"healthcare/dentist/orthodontics":{"name":"Ортодонт"},"healthcare/hospice":{"name":"Хоспис"},"healthcare/laboratory":{"name":"Медицинска лаборатория"},"healthcare/optometrist":{"name":"Оптометрист"},"healthcare/physiotherapist":{"name":"Физиотерапевт"},"healthcare/podiatrist":{"name":"Ортопед"},"healthcare/psychotherapist":{"name":"Психотерапевт"},"healthcare/speech_therapist":{"name":"Логопед"},"highway/bridleway":{"name":"Конска пътека"},"highway/bus_stop":{"name":"Автобусна спирка"},"highway/crossing":{"name":"Пешеходна пътека"},"highway/crossing/traffic_signals":{"name":"Пешеходно пресичане със светофар"},"highway/crossing/uncontrolled":{"name":"Маркирана пешеходна пътека"},"highway/crossing/unmarked":{"name":"Немаркирана пешеходна пътека","terms":"продължение на тротоар"},"highway/cycleway":{"name":"Велоалея"},"highway/cycleway/crossing/uncontrolled":{"name":"Маркирана велосипедна пътека"},"highway/cycleway/crossing/unmarked":{"name":"Немаркирана велосипедна пътека"},"highway/elevator":{"name":"Асансьор"},"highway/footway":{"name":"Пешеходна алея"},"highway/footway/conveying":{"name":"Травалатор","terms":"движеща се пътека"},"highway/footway/crossing":{"name":"Пешеходна пътека"},"highway/footway/crossing/traffic_signals":{"name":"Пешеходно пресичане със светофар"},"highway/footway/crossing/uncontrolled":{"name":"Маркирана пешеходна пътека"},"highway/footway/crossing/unmarked":{"name":"Немаркирана пешеходна пътека","terms":"продължение на тротоар"},"highway/footway/sidewalk":{"name":"Тротоар"},"highway/footway/traffic_island":{"name":"Пешеходен остров"},"highway/living_street":{"name":"Улица в жилищна зона (обозначена със пътен знак Д15)"},"highway/mini_roundabout":{"name":"Малко кръгово кръстовище"},"highway/motorway":{"name":"Автомагистрала"},"highway/motorway_link":{"name":"Автомагистрална връзка"},"highway/path":{"name":"Пътека"},"highway/path/informal":{"name":"Неформална пътека","terms":"неофициална пътека,кална пътека,пътечка"},"highway/pedestrian_line":{"name":"Пешеходна улица"},"highway/primary":{"name":"Първокласен път"},"highway/primary_link":{"name":"Връзка с първокласен път"},"highway/residential":{"name":"Улица"},"highway/road":{"name":"Непроучен път"},"highway/secondary":{"name":"Второкласен път"},"highway/secondary_link":{"name":"Връзка с второкласен път"},"highway/service":{"name":"Сервизна улица","terms":"обслужваща улица,обслужващ път"},"highway/service/alley":{"name":"Тясна уличка между имоти"},"highway/service/drive-through":{"name":"Обслужване, без да напускате автомобила"},"highway/service/driveway":{"name":"Алея за коли към жилище/бизнес"},"highway/service/emergency_access":{"name":"За достъп при спешни случаи"},"highway/service/parking_aisle":{"name":"Паркинг алея"},"highway/speed_camera":{"name":"Камера за скорост"},"highway/steps":{"name":"Стъпала"},"highway/steps/conveying":{"name":"Ескалатор"},"highway/stop":{"name":"Знак стоп"},"highway/street_lamp":{"name":"Улична лампа"},"highway/tertiary":{"name":"Третокласен път"},"highway/tertiary_link":{"name":"Връзка с третокласен път"},"highway/toll_gantry":{"name":"Тол камера"},"highway/track":{"name":"Черен път"},"highway/traffic_signals":{"name":"Светофари"},"highway/trunk":{"name":"Скоростен път"},"highway/trunk_link":{"name":"Връзка със скоростен път"},"highway/turning_circle":{"name":"Обръщателен кръг"},"highway/turning_loop":{"name":"Обръщателен кръг с остров по средата"},"historic":{"name":"Място с историческо значение"},"historic/archaeological_site":{"name":"Археологически обект"},"historic/boundary_stone":{"name":"Граничен камък"},"historic/building":{"name":"Историческа сграда"},"historic/castle":{"name":"Замък"},"historic/castle/palace":{"name":"Палат"},"historic/castle/stately":{"name":"Замък"},"historic/city_gate":{"name":"Градска порта"},"historic/fort":{"name":"Исторически форт"},"historic/memorial":{"name":"Мемориал"},"historic/monument":{"name":"Паметник"},"historic/ruins":{"name":"Руини"},"historic/tomb":{"name":"Гробница"},"historic/wayside_cross":{"name":"Крайпътен кръст"},"historic/wayside_shrine":{"name":"Крайпътен параклис"},"landuse/basin":{"name":"Басейн"},"landuse/cemetery":{"name":"Гробищен парк"},"landuse/construction":{"name":"Строителна площадка","terms":"сграда,булдозер,строителна площадка,строителна зона,кран,събаряне,развитие,инфраструктура,строеж"},"landuse/farm":{"name":"Ферма"},"landuse/farmland":{"name":"Земеделска земя","terms":"поле"},"landuse/farmyard":{"name":"Селскостопански двор","terms":"ткзс"},"landuse/grass":{"name":"Трева"},"landuse/harbour":{"name":"Пристанище"},"landuse/industrial":{"name":"Индустриална зона"},"landuse/industrial/depot":{"name":"Депо","terms":"гараж,автобус,камион,паркинг"},"landuse/industrial/scrap_yard":{"name":"Вторични суровини","terms":"автоморга,скрап"},"landuse/industrial/slaughterhouse":{"name":"Кланица"},"landuse/landfill":{"name":"Сметище"},"landuse/meadow":{"name":"Пасище"},"landuse/military":{"name":"Военна зона","terms":"военновъздушни сили,армия,военна база,брегова охрана,морска пехота,флот"},"landuse/military/airfield":{"name":"Военно летище"},"landuse/military/barracks":{"name":"Казарми"},"landuse/military/base":{"name":"Военна база"},"landuse/military/base/navy":{"name":"Военноморска база"},"landuse/orchard":{"name":"Овощна градина"},"landuse/plant_nursery":{"name":"Разсадник"},"landuse/pond":{"name":"Резервоар"},"landuse/quarry":{"name":"Кариера"},"landuse/railway":{"name":"Железопътен коридор"},"landuse/reservoir":{"name":"Язовир"},"landuse/residential":{"name":"Жилищна зона"},"landuse/vineyard":{"name":"Лозе"},"leisure/dog_park":{"name":"Кучешки парк","terms":"кучешка площадка"},"leisure/garden":{"name":"Градина"},"leisure/garden/botanical":{"name":"Ботаническа градина"},"leisure/golf_course":{"name":"Голф игрище"},"leisure/ice_rink":{"name":"Ледена пързалка","terms":"хокей,кънки,кърлинг"},"leisure/marina":{"name":"Яхт клуб"},"leisure/miniature_golf":{"name":"Миниатюрен голф","terms":"мини голф"},"leisure/nature_reserve":{"name":"Природен резерват"},"leisure/park":{"name":"Парк"},"leisure/picnic_table":{"name":"Пикник маса"},"leisure/picnic_table/chess":{"name":"Шахматна маса","terms":"маса за шах"},"leisure/pitch":{"name":"Спортно игрище"},"leisure/pitch/american_football":{"name":"Игрище за американски футбол"},"leisure/pitch/archery":{"name":"Стрелбище"},"leisure/pitch/australian_football":{"name":"Игрище за австралийски футбол"},"leisure/pitch/badminton":{"name":"Игрище за бадминтон"},"leisure/pitch/baseball":{"name":"Бейзболно игрище","terms":"бейзбол"},"leisure/pitch/basketball":{"name":"Баскетболно игрище"},"leisure/pitch/beachvolleyball":{"name":"Игрище за плажен волейбол"},"leisure/pitch/cricket":{"name":"Игрище за крикет","terms":"поле за крикет"},"leisure/pitch/futsal":{"name":"Игрище за футзал"},"leisure/pitch/skateboard":{"name":"Скейт парк"},"leisure/pitch/soccer":{"name":"Футболно игрище"},"leisure/pitch/table_soccer":{"name":"Маса за джаги","terms":"фусбол,маса за фусбол,футбол на маса"},"leisure/pitch/table_tennis":{"name":"Тенис маса","terms":"тенис на маса,пинг понг"},"leisure/pitch/tennis":{"name":"Тенис корт"},"leisure/pitch/volleyball":{"name":"Волейболно игрище"},"leisure/playground":{"name":"Детска площадка"},"leisure/slipway":{"name":"Хелинг"},"leisure/stadium":{"name":"Стадион"},"leisure/swimming_pool":{"name":"Плувен басейн"},"line":{"name":"Линия"},"man_made/antenna":{"name":"Антена"},"man_made/breakwater":{"name":"Вълнолом"},"man_made/chimney":{"name":"Комин"},"man_made/crane":{"name":"Кран"},"man_made/crane/gantry_crane":{"name":"Мостов кран"},"man_made/crane/portal_crane":{"name":"Портален кран"},"man_made/cutline":{"name":"Просека"},"man_made/embankment":{"name":"Насип"},"man_made/lighthouse":{"name":"Морски фар"},"man_made/mast/communication/radio":{"name":"Радио кула"},"man_made/mast/communication/television":{"name":"Телевизионна кула","terms":"тв кула"},"man_made/pier":{"name":"Кей"},"man_made/pipeline":{"name":"Тръбопровод"},"man_made/pumping_station":{"name":"Помпена станция"},"man_made/survey_point":{"name":"Геодезическа точка"},"man_made/tower":{"name":"Кула"},"man_made/wastewater_plant":{"name":"Пречиствателна станция за отпадни води","terms":"псов"},"man_made/water_tower":{"name":"Водна кула"},"man_made/water_works":{"name":"Пречиствателна станция за питейна вода","terms":"пспв"},"man_made/windmill":{"name":"Вятърна мелница"},"natural/bay":{"name":"Залив"},"natural/beach":{"name":"Плаж"},"natural/cliff":{"name":"Скала"},"natural/coastline":{"name":"Брегова линия"},"natural/glacier":{"name":"Ледник"},"natural/grassland":{"name":"Степ"},"natural/heath":{"name":"Малки храсти"},"natural/hot_spring":{"name":"Горещ минерален извор"},"natural/peak":{"name":"Връх"},"natural/reef":{"name":"Риф"},"natural/sand":{"name":"Пясък"},"natural/scrub":{"name":"Шубрак"},"natural/spring":{"name":"Извор"},"natural/tree":{"name":"Дърво"},"natural/tree_stump":{"name":"Пън на дърво","terms":"отсечено дърво,премахнато дърво"},"natural/volcano":{"name":"Вулкан"},"natural/water":{"name":"Водна площ"},"natural/water/basin":{"name":"Басейн"},"natural/water/canal":{"name":"Канал"},"natural/water/lake":{"name":"Езеро"},"natural/water/pond":{"name":"Малко езеро"},"natural/water/reservoir":{"name":"Язовир"},"natural/water/river":{"name":"Речен бряг"},"natural/wetland":{"name":"Блатиста зона"},"noexit/yes":{"name":"Път без изход"},"office":{"name":"Офис"},"office/diplomatic":{"name":"Дипломатически офис"},"office/diplomatic/consulate":{"name":"Консулство"},"office/diplomatic/embassy":{"name":"Посолство"},"office/estate_agent":{"name":"Брокер"},"office/government/prosecutor":{"name":"Прокурор"},"office/insurance":{"name":"Застрахователен офис","terms":"гражданска отговорност,автокаско,каско,застраховка живот,имуществено застраховане"},"office/lawyer":{"name":"Адвокат"},"office/lawyer/notary":{"name":"Нотариус"},"office/notary":{"name":"Нотариус"},"office/travel_agent":{"name":"Туристическа агенция"},"place":{"name":"Населени места"},"place/city":{"name":"Град над 100 000"},"place/hamlet":{"name":"Махала"},"place/island":{"name":"Остров"},"place/isolated_dwelling":{"name":"Изолирано жилище"},"place/locality":{"name":"Местност"},"place/neighbourhood":{"name":"Квартал"},"place/square":{"name":"Площад"},"place/town":{"name":"Град под 100 000"},"place/village":{"name":"Село"},"playground":{"name":"Оборудване за детски площадки"},"playground/sandpit":{"name":"Пясъчник"},"playground/slide":{"name":"Пързалка"},"playground/swing":{"name":"Люлка"},"point":{"name":"Точка"},"power/cable":{"name":"Брой кабели"},"power/cable/underground":{"name":"Подземен електропровод","terms":"подземен кабел"},"power/generator/method/photovoltaic":{"name":"Соларен панел","terms":"слънчев панел,фотоволтаичен панел"},"power/generator/method/photovoltaic/building/roof":{"name":"Навес със слънчеви панели"},"power/generator/method/photovoltaic/location/roof":{"name":"Слънчеви панели на покрив"},"power/generator/source/hydro":{"name":"Водна турбина"},"power/generator/source/nuclear":{"name":"Ядрен реактор"},"power/generator/source/wind":{"name":"Вятърна турбина"},"power/line":{"name":"Електропровод"},"power/plant/source/coal":{"name":"Въглищна електроцентрала","terms":"тец"},"power/plant/source/gas":{"name":"Газова електроцентрала","terms":"тец"},"power/plant/source/hydro":{"name":"ВЕЦ","terms":"водноелектрическа централа,водно-електрическа централа,водно електрическа централа"},"power/plant/source/method/photovoltaic":{"name":"Фотоволтаична ферма","terms":"фотоволтаици,фотоволтаична централа"},"power/plant/source/nuclear":{"name":"АЕЦ"},"power/plant/source/solar":{"name":"Соларна електроцентрала","terms":"слънчева,слънчева електроцентрала"},"power/plant/source/waste":{"name":"Инсинератор за отпадъци","terms":"изгаряне на отпадъци"},"power/plant/source/wind":{"name":"ВяЕЦ","terms":"вятърна ферма,вятърна електроцентрала"},"power/pole":{"name":"Електрически стълб"},"power/substation":{"name":"Подстанция"},"power/switch":{"name":"Прекъсвач"},"power/tower":{"name":"Жере"},"power/transformer":{"name":"Трансформатор"},"public_transport/platform/bus":{"name":"Автобусна спирка"},"public_transport/platform/bus_point":{"name":"Автобусна спирка"},"public_transport/platform/bus_tram_point":{"name":"Трамвайна и автобусна спирка"},"public_transport/platform/subway":{"name":"Перон на метростанция"},"public_transport/platform/subway_point":{"name":"Перон на метростанция"},"public_transport/platform/train":{"name":"ЖП перон"},"public_transport/platform/train_point":{"name":"ЖП перон"},"public_transport/platform/tram":{"name":"Трамвайна спирка"},"public_transport/platform/tram_point":{"name":"Трамвайна спирка"},"public_transport/platform/trolleybus":{"name":"Тролейбусна спирка"},"public_transport/platform/trolleybus_point":{"name":"Тролейбусна спирка"},"public_transport/station_bus":{"name":"Автостанция / терминал"},"public_transport/station_subway":{"name":"Метростанция"},"public_transport/station_train":{"name":"Железопътна гара","terms":"жп гара,жп спирка"},"public_transport/station_train_halt":{"name":"Железопътна спирка (по желание)"},"railway/abandoned":{"name":"Изоставена железопътна линия"},"railway/disused":{"name":"Закрита железопътна линия"},"railway/funicular":{"name":"Релсов път на фуникуляр"},"railway/halt":{"name":"Железопътна спирка (по желание)"},"railway/level_crossing":{"name":"ЖП прелез","terms":"железопътен прелез"},"railway/monorail":{"name":"Монорелсов път"},"railway/monorail/hanging":{"name":"Окачен монорелсов път"},"railway/narrow_gauge":{"name":"Теснолиниеен железопътен път"},"railway/platform":{"name":"Перон"},"railway/preserved":{"name":"Историческа железопътна линия"},"railway/rail":{"name":"Железопътна линия"},"railway/rail/highspeed":{"name":"Релсов път за високоскоростни влакове"},"railway/signal":{"name":"Светофор","terms":"железопътен сигнал"},"railway/station":{"name":"Гара"},"railway/subway":{"name":"Релсов път на метрото"},"railway/subway_entrance":{"name":"Вход на метростанция"},"railway/switch":{"name":"Железопътна стрелка"},"railway/tram":{"name":"Трамваен релсов път","terms":"трамвайно трасе,трамвайни релси"},"relation":{"name":"Релация"},"route/ferry":{"name":"Фериботна връзка","terms":"фериботен маршрут"},"shop":{"name":"Магазин","terms":"търговски обект"},"shop/alcohol":{"name":"Магазин за алкохол"},"shop/anime":{"name":"Аниме / манга магазин"},"shop/antiques":{"name":"Антикварен магазин","terms":"антиквар"},"shop/appliance":{"name":"Магазин за електроуреди","terms":"климатик,електроуреди,съдомиялна,сушилня,фризер,грил,печка,микровълнова"},"shop/bakery":{"name":"Пекарна"},"shop/bathroom_furnishing":{"name":"Магазин за обзавеждане на бани"},"shop/beauty":{"name":"Козметик"},"shop/beauty/nails":{"name":"Салон за нокти","terms":"маникюр,педикюр"},"shop/beauty/tanning":{"name":"Солариум","terms":"солариум"},"shop/bed":{"name":"Магазин за легла/матраци"},"shop/beverages":{"name":"Магазин за алкохол и цигари"},"shop/bicycle":{"name":"Магазин за велосипеди"},"shop/boutique":{"name":"Бутик"},"shop/butcher":{"name":"Колбаси"},"shop/candles":{"name":"Магазин за свещи","terms":"восък"},"shop/car":{"name":"Автокъща","terms":"коли,автомобили"},"shop/car/second_hand":{"name":"Автомобили втора употреба","terms":"автоморга"},"shop/car_parts":{"name":"Авточасти","terms":"автоморга"},"shop/car_repair":{"name":"Сервиз за автомобили","terms":"автосервиз"},"shop/carpet":{"name":"Магазин за килими","terms":"килимия,черга,черги"},"shop/chemist":{"name":"Дрогерия"},"shop/clothes":{"name":"Магазин за дрехи"},"shop/clothes/second_hand":{"name":"Магазин за дрехи втора употреба"},"shop/clothes/underwear":{"name":"Магазин за бельо","terms":"сутиени,бикини,боксерки,бельо,слипове,чорапи,чорапогащници"},"shop/clothes/workwear":{"name":"Магазин за работно облекло"},"shop/computer":{"name":"Компютърен магазин"},"shop/convenience":{"name":"Магазин за хранителни стоки"},"shop/dairy":{"name":"Млекарница","terms":"мляко,яйца,сирене,кашкавал,мандра"},"shop/department_store":{"name":"Универсален магазин"},"shop/doityourself":{"name":"Магазин \"Направи си сам\""},"shop/doors":{"name":"Магазин за врати"},"shop/dry_cleaning":{"name":"Химическо чистене"},"shop/e-cigarette":{"name":"Магазин за електронни цигари","terms":"вейп,vape"},"shop/electronics":{"name":"Магазин за електроника"},"shop/farm":{"name":"Щанд за плодове и зеленчуци"},"shop/flooring":{"terms":"паркет,плочки"},"shop/florist":{"name":"Магазин за цветя"},"shop/funeral_directors":{"name":"Погребална агенция"},"shop/furniture":{"name":"Мебелен магазин","terms":"мебели"},"shop/garden_centre":{"name":"Градински център"},"shop/gift":{"name":"Магазин за подаръци"},"shop/greengrocer":{"name":"Плод-зеленчук"},"shop/hairdresser":{"name":"Фризьорски салон"},"shop/hardware":{"name":"Железария"},"shop/hearing_aids":{"name":"Магазин за слухови апарати"},"shop/hifi":{"name":"Магазин за аудиотехника"},"shop/houseware":{"name":"Домашни потреби"},"shop/jewelry":{"name":"Бижутерия"},"shop/laundry":{"name":"Пералня"},"shop/laundry/self_service":{"name":"Пералня на самообслужване"},"shop/lighting":{"name":"Магазин за осветителни тела"},"shop/locksmith":{"name":"Ключар"},"shop/lottery":{"name":"Лотарийни билети"},"shop/mall":{"name":"Мол"},"shop/mobile_phone":{"name":"Магазин за мобилни телефони"},"shop/money_lender":{"name":"Бързи кредити","terms":"бърз кредит,бързи пари,спешни пари"},"shop/motorcycle":{"name":"Магазин за мотоциклети"},"shop/music":{"name":"Музикален магазин"},"shop/optician":{"name":"Оптика"},"shop/pastry":{"name":"Сладкарница"},"shop/pawnbroker":{"name":"Заложна къща"},"shop/perfumery":{"name":"Парфюмерия"},"shop/pet":{"name":"Зоо магазин"},"shop/photo":{"name":"Фото","terms":"камера,лента,снимка"},"shop/shoe_repair":{"name":"Обущар"},"shop/shoes":{"name":"Магазин за обувки"},"shop/sports":{"name":"Спортен магазин"},"shop/stationery":{"name":"Магазин за канцеларски стоки"},"shop/supermarket":{"name":"Супермаркет"},"shop/tailor":{"name":"Шивач"},"shop/toys":{"name":"Магазин за играчки"},"shop/travel_agency":{"name":"Туристическа агенция"},"shop/tyres":{"name":"Магазин за автомобилни гуми"},"shop/vacant":{"name":"Свободна търговска площ","terms":"вакантен магазин"},"shop/video":{"name":"Видеотека"},"shop/wigs":{"name":"Магазин за перуки"},"shop/window_blind":{"name":"Магазин за щори","terms":"ролетни щори"},"shop/wine":{"name":"Магазин за вино","terms":"изба"},"shop/yes":{"name":"Магазин (неуточнен тип)"},"telecom/data_center":{"name":"Център за данни"},"tourism/alpine_hut":{"name":"Планинска хижа"},"tourism/apartment":{"name":"Апартамент за гости"},"tourism/aquarium":{"name":"Аквариум"},"tourism/artwork":{"name":"Произведение на изкуството"},"tourism/artwork/bust":{"name":"Бюст"},"tourism/artwork/graffiti":{"name":"Графити"},"tourism/artwork/installation":{"name":"Арт инсталация"},"tourism/artwork/mural":{"name":"Стенопис"},"tourism/artwork/sculpture":{"name":"Скулптура"},"tourism/artwork/statue":{"name":"Статуя"},"tourism/attraction":{"name":"Туристическа атракция"},"tourism/caravan_site":{"name":"Паркинг за каравани"},"tourism/guest_house":{"name":"Къща за гости"},"tourism/hostel":{"name":"Хостел"},"tourism/hotel":{"name":"Хотел"},"tourism/information":{"name":"Информация"},"tourism/information/office":{"name":"Посетителски център","terms":"туристически информационен център"},"tourism/motel":{"name":"Мотел"},"tourism/museum":{"name":"Музей"},"tourism/museum/history":{"name":"Исторически музей"},"tourism/picnic_site":{"name":"Място за пикник"},"tourism/theme_park":{"name":"Увеселителен парк"},"tourism/viewpoint":{"name":"Точка с хубава гледка"},"tourism/zoo":{"name":"Зоологическа градина"},"traffic_calming/bump":{"name":"Гърбица (остра)","terms":"изкуствена неравост"},"traffic_calming/chicane":{"name":"Шикан","terms":"изкуствени кривини на пътя"},"traffic_calming/cushion":{"name":"Пътна възглавница","terms":"изкуствена неравост"},"traffic_calming/hump":{"name":"Гърбица (полегата)","terms":"изкуствена неравост"},"traffic_calming/mini_bumps":{"name":"Малки пътни неравности (кабъри)","terms":"мини бабуни,мини топчета,малки бабуни,малки неравности за скорост"},"traffic_calming/rumble_strip":{"name":"Шумяща напречна маркировка","terms":"шумяща маркировка"},"traffic_calming/table":{"name":"Пътна табла"},"traffic_sign":{"name":"Пътен знак"},"traffic_sign/city_limit":{"name":"Начало/край на населено място"},"traffic_sign/maxspeed":{"name":"Знак за ограничение на скоростта"},"traffic_sign/variable_message":{"name":"Знак с променливо съобщение","terms":"знак с променливо съдържание,електронен знак"},"type/boundary":{"name":"Граница"},"type/boundary/administrative":{"name":"Административна граница"},"type/multipolygon":{"name":"Мултиполигон"},"type/restriction":{"name":"Ограничение"},"type/restriction/no_left_turn":{"name":"Без ляв завой"},"type/restriction/no_right_turn":{"name":"Без десен завой"},"type/restriction/only_left_turn":{"name":"Само ляв завой","terms":"само наляво"},"type/restriction/only_right_turn":{"name":"Само десен завой","terms":"само надясно"},"type/route":{"name":"Маршрут"},"type/route/bicycle":{"name":"Велосипеден маршрут"},"type/route/bus":{"name":"Автобусен маршрут"},"type/route/detour":{"name":"Обходен маршрут"},"type/route/ferry":{"name":"Фериботна връзка","terms":"фериботен маршрут"},"type/route/foot":{"name":"Пешеходен маршрут"},"type/route/light_rail":{"name":"Маршрут на леко метро"},"type/route/pipeline":{"name":"Трасе на тръбопровод"},"type/route/power":{"name":"Трасе на електропровод"},"type/route/railway":{"name":"Маршрут на железопътна линия"},"type/route/road":{"name":"Път"},"type/route/train":{"name":"Маршрут на влак"},"type/route/tram":{"name":"Трамваен маршрут"},"type/route/trolleybus":{"name":"Тролейбусен маршрут"},"type/route_master":{"name":"Маршрутна схема"},"type/waterway":{"name":"Води"},"waterway/canal":{"name":"Канал"},"waterway/dam":{"name":"Язовирна стена"},"waterway/ditch":{"name":"Канавка"},"waterway/dock":{"name":"Мокър док / сух док"},"waterway/drain":{"name":"Отводнителен канал"},"waterway/fish_pass":{"name":"Рибен проход"},"waterway/river":{"name":"Река"},"waterway/stream":{"name":"Поток"},"waterway/stream_intermittent":{"name":"Периодичен поток","terms":"пресъхващ поток"},"waterway/waterfall":{"name":"Водопад"},"waterway/weir":{"name":"Преливник"}}}}}
\ No newline at end of file
diff --git a/dist/translations/bn.json b/dist/translations/bn.json
index a63b3ff3..a28c3206 100644
--- a/dist/translations/bn.json
+++ b/dist/translations/bn.json
@@ -16,6 +16,9 @@
"private": {
"title": "একান্ত"
},
+ "unknown": {
+ "title": "অজানা"
+ },
"yes": {
"title": "অনুমোদিত"
}
@@ -28,6 +31,23 @@
"motor_vehicle": "মোটরগাড়ি"
}
},
+ "access_aisle": {
+ "label": "ধরন"
+ },
+ "access_simple": {
+ "options": {
+ "no": "কিছুনা",
+ "permissive": "অনুমতিসূচক",
+ "private": "একান্ত",
+ "unknown": "অজানা"
+ }
+ },
+ "addr/interpolation": {
+ "label": "ধরন",
+ "options": {
+ "all": "সব"
+ }
+ },
"address": {
"label": "ঠিকানা",
"placeholders": {
@@ -46,9 +66,13 @@
"street": "রাস্তা",
"subdistrict": "উপজেলা",
"suburb": "শহরতলি",
+ "town": "উপনগর",
"unit": "একক"
}
},
+ "advertising": {
+ "label": "ধরন"
+ },
"aerialway": {
"label": "ধরন"
},
@@ -79,12 +103,23 @@
"aeroway": {
"label": "ধরন"
},
+ "aircraft/type": {
+ "label": "ধরন"
+ },
"amenity": {
"label": "ধরন"
},
+ "archaeological_site": {
+ "label": "ধরন"
+ },
"area/highway": {
"label": "ধরন"
},
+ "armrest": {
+ "options": {
+ "undefined": "অজানা"
+ }
+ },
"artist": {
"label": "শিল্পী"
},
@@ -94,40 +129,277 @@
"atm": {
"label": "এটিএম"
},
- "barrier": {
+ "attraction": {
"label": "ধরন"
},
+ "baby_feeding": {
+ "options": {
+ "no": "কিছুনা"
+ }
+ },
+ "bar": {
+ "label": "পানশালা"
+ },
+ "barrier": {
+ "label": "ধরন",
+ "options": {
+ "entrance": "দ্বার",
+ "fence": "বেড়া",
+ "gate": "ফটক",
+ "wall": "দেয়াল"
+ }
+ },
+ "barrier_planter": {
+ "options": {
+ "planter": "হ্যাঁ",
+ "undefined": "না"
+ }
+ },
+ "basin": {
+ "label": "ধরন"
+ },
+ "bath/type": {
+ "options": {
+ "lake": "হ্রদ"
+ }
+ },
+ "bench": {
+ "label": "বেঞ্চ"
+ },
"bicycle_parking": {
"label": "ধরন"
},
+ "bicycle_road": {
+ "options": {
+ "undefined": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "blind": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "board_type": {
+ "label": "ধরন",
+ "options": {
+ "history": "ইতিহাস"
+ }
+ },
+ "bollard": {
+ "label": "ধরন"
+ },
+ "boules": {
+ "label": "ধরন"
+ },
"boundary": {
"label": "ধরন"
},
+ "bridge": {
+ "label": "ধরন",
+ "placeholder": "পূর্বনির্ধারিত"
+ },
+ "bridge/support": {
+ "label": "ধরন"
+ },
+ "bridge_combo": {
+ "label": "ধরন"
+ },
"building": {
- "label": "দালান"
+ "label": "দালান",
+ "options": {
+ "commercial": "বানিজ্যিক ভবন",
+ "garage": "গ্যারেজ",
+ "house": "বাড়ি",
+ "hut": "কুড়েঘর",
+ "industrial": "শিল্পায়িত ভবন",
+ "residential": "আবাসিক ভবন"
+ }
+ },
+ "building/levels": {
+ "label": "স্তর",
+ "placeholder": "২, ৪, ৬..."
+ },
+ "building/levels/underground": {
+ "placeholder": "২, ৪, ৬..."
+ },
+ "bunker_type": {
+ "label": "ধরন"
+ },
+ "cables": {
+ "placeholder": "১, ২, ৩..."
+ },
+ "camp_site": {
+ "label": "ধরন"
},
"capacity": {
"label": "ধারণক্ষমতা",
"placeholder": "৫০, ১০০, ২০০..."
},
+ "capacity/disabled_parking": {
+ "placeholder": "১, ২, ৩..."
+ },
+ "capacity/persons": {
+ "placeholder": "৫০, ১০০, ২০০..."
+ },
+ "capacity_volume": {
+ "placeholder": "৫০, ১০০, ২০০..."
+ },
+ "castle_type": {
+ "label": "ধরন"
+ },
+ "climbing/length": {
+ "label": "দৈর্ঘ্য (মিটার)"
+ },
+ "club": {
+ "label": "ধরন"
+ },
"collection_times": {
"label": "সংগ্রহের সময়"
},
+ "community_centre": {
+ "label": "ধরন"
+ },
"construction": {
"label": "ধরন"
},
+ "consulate": {
+ "label": "ধরন"
+ },
"country": {
"label": "দেশ"
},
+ "couplings": {
+ "placeholder": "১, ২, ৩..."
+ },
+ "covered_no": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "craft": {
+ "label": "ধরন"
+ },
+ "crop": {
+ "options": {
+ "grass": "ঘাস"
+ }
+ },
"crossing": {
"label": "ধরন"
},
+ "crossing/barrier": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "crossing_raised": {
+ "options": {
+ "table": "হ্যাঁ",
+ "undefined": "না"
+ }
+ },
+ "cutting": {
+ "label": "ধরন",
+ "placeholder": "পূর্বনির্ধারিত"
+ },
+ "cycle_barrier": {
+ "label": "ধরন"
+ },
+ "cycle_network": {
+ "label": "নেটওয়ার্ক"
+ },
+ "cycleway": {
+ "options": {
+ "no": {
+ "title": "কিছুনা"
+ }
+ }
+ },
+ "departures_board": {
+ "options": {
+ "no": "কিছুনা",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "depot": {
+ "label": "ধরন"
+ },
"description": {
"label": "বর্ননা"
},
+ "destination_waterway": {
+ "label": "গন্তব্য"
+ },
+ "devices": {
+ "placeholder": "১, ২, ৩..."
+ },
+ "diplomatic": {
+ "label": "ধরন",
+ "options": {
+ "embassy": "দুতাবাস"
+ }
+ },
+ "direction_cardinal-US-CA-NZ": {
+ "label": "দিক"
+ },
+ "direction_clock": {
+ "label": "দিক",
+ "options": {
+ "anticlockwise": "ঘড়ির কাটার উল্টো দিকে",
+ "clockwise": "ঘড়ির কাটার দিকে"
+ }
+ },
+ "disused/amenity": {
+ "label": "ধরন"
+ },
+ "disused/railway": {
+ "label": "ধরন"
+ },
+ "disused/shop": {
+ "label": "ধরন"
+ },
+ "dock": {
+ "label": "ধরন"
+ },
+ "dog": {
+ "options": {
+ "yes": "অনুমোদিত"
+ }
+ },
+ "door_type": {
+ "label": "ধরন"
+ },
+ "electrified": {
+ "options": {
+ "no": "না"
+ }
+ },
+ "embankment": {
+ "label": "ধরন",
+ "placeholder": "পূর্বনির্ধারিত"
+ },
+ "embassy": {
+ "label": "ধরন",
+ "options": {
+ "yes": "দুতাবাস"
+ }
+ },
"emergency": {
"label": "জরুরি"
},
+ "emergency_combo": {
+ "label": "ধরন"
+ },
+ "emergency_ward_entrance": {
+ "label": "ধরন"
+ },
+ "enforcement": {
+ "label": "ধরন"
+ },
"entrance": {
"label": "ধরন"
},
@@ -141,19 +413,56 @@
"fee": {
"label": "মূল্য"
},
+ "fence_type": {
+ "label": "ধরন"
+ },
"fire_hydrant/type": {
"options": {
"wall": "দেয়াল"
}
},
+ "fire_mains": {
+ "options": {
+ "no": "না"
+ }
+ },
+ "fire_service_inlet": {
+ "options": {
+ "wall": "দেয়াল"
+ }
+ },
+ "fire_sprinkler": {
+ "options": {
+ "no": "না"
+ }
+ },
"fixme": {
"label": "আমাকে ঠিক করুন"
},
+ "flashing_lights": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "ford": {
+ "label": "ধরন",
+ "placeholder": "পূর্বনির্ধারিত"
+ },
+ "fountain": {
+ "label": "ধরন"
+ },
"fuel": {
"label": "জ্বালানি"
},
+ "gender": {
+ "placeholder": "অজানা"
+ },
"generator/method": {
- "label": "পদ্ধতি"
+ "label": "পদ্ধতি",
+ "options": {
+ "water-storage": "জলাধার"
+ }
},
"generator/source": {
"label": "উৎস"
@@ -161,22 +470,58 @@
"generator/type": {
"label": "ধরন"
},
+ "government": {
+ "label": "ধরন"
+ },
+ "guest_house": {
+ "label": "ধরন"
+ },
"handicap": {
"label": "বিকলাঙ্গ",
"placeholder": "১-১৮"
},
+ "healthcare": {
+ "label": "ধরন"
+ },
"highway": {
"label": "ধরন"
},
+ "highway_cartpath": {
+ "options": {
+ "service": "সার্ভিস রোড"
+ }
+ },
"historic": {
+ "label": "ধরন",
+ "options": {
+ "castle": "প্রাসাদ",
+ "memorial": "স্মরণচিহ্ন",
+ "monument": "স্মৃতিস্তম্ভ",
+ "railway": "রেলপথ",
+ "ruins": "ধ্বংসাবশেষ"
+ }
+ },
+ "holding_position/type": {
"label": "ধরন"
},
"hoops": {
"placeholder": "১, ২, ৪..."
},
+ "horse_riding": {
+ "options": {
+ "horse_riding": "হ্যাঁ",
+ "undefined": "না"
+ }
+ },
"incline": {
"label": "ঝোকা"
},
+ "indoor_type": {
+ "label": "ধরন"
+ },
+ "industrial": {
+ "label": "ধরন"
+ },
"information": {
"label": "ধরন"
},
@@ -189,6 +534,28 @@
"yes": "হ্যাঁ"
}
},
+ "irrigation_pivot": {
+ "options": {
+ "pivot": "হ্যাঁ",
+ "undefined": "না"
+ }
+ },
+ "kerb": {
+ "options": {
+ "no": {
+ "title": "না"
+ },
+ "yes": {
+ "title": "হ্যাঁ"
+ }
+ }
+ },
+ "kerb/kerb_barrier": {
+ "label": "ধরন"
+ },
+ "lamp_type": {
+ "label": "ধরন"
+ },
"landuse": {
"label": "ধরন"
},
@@ -205,16 +572,64 @@
"length": {
"label": "দৈর্ঘ্য (মিটার)"
},
+ "level_semi": {
+ "label": "স্তর"
+ },
+ "liaison": {
+ "label": "ধরন"
+ },
+ "lifeguard": {
+ "label": "ধরন"
+ },
+ "lift_gate/type": {
+ "label": "ধরন"
+ },
"location": {
"label": "অবস্থান"
},
"man_made": {
"label": "ধরন"
},
+ "manhole": {
+ "label": "ধরন"
+ },
+ "map_type": {
+ "label": "ধরন"
+ },
+ "marker": {
+ "label": "ধরন"
+ },
+ "material": {
+ "options": {
+ "wood": "অরন্য"
+ }
+ },
"maxspeed": {
"label": "গতিসীমা",
"placeholder": "৪০, ৫০, ৬০..."
},
+ "maxspeed/advisory": {
+ "placeholder": "৪০, ৫০, ৬০..."
+ },
+ "maxspeed/hgv": {
+ "placeholder": "৪০, ৫০, ৬০..."
+ },
+ "memorial": {
+ "label": "ধরন"
+ },
+ "mobile": {
+ "placeholder": "+৩১ ৪২ ১২৩ ৪৫৬৭"
+ },
+ "mooring": {
+ "options": {
+ "no": "না",
+ "private": "একান্ত",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "museum": {
+ "label": "ধরন"
+ },
"name": {
"label": "নাম",
"placeholder": "চলতি নাম (যদি থেকে থাকে)"
@@ -225,64 +640,248 @@
"network": {
"label": "নেটওয়ার্ক"
},
+ "network_road": {
+ "label": "নেটওয়ার্ক"
+ },
"note": {
"label": "টীকা"
},
+ "nudism": {
+ "options": {
+ "no": "নিষিদ্ধ",
+ "permissive": "অনুমতিসূচক",
+ "yes": "অনুমোদিত"
+ }
+ },
"office": {
- "label": "ধরন"
+ "label": "ধরন",
+ "options": {
+ "ngo": "এনজিও অফিস",
+ "physician": "চিকিত্সক",
+ "telecommunication": "টেলিকম অফিস"
+ }
},
"oneway": {
- "label": "একমুখো"
+ "label": "একমুখো",
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "oneway_yes": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
},
"opening_hours": {
- "label": "ঘন্টা"
+ "label": "ঘন্টা",
+ "placeholder": "অজানা"
},
"operator": {
"label": "পরিচালক"
},
+ "organic": {
+ "options": {
+ "no": "কিছুনা"
+ }
+ },
+ "parcel_pickup": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
"parking": {
+ "label": "ধরন",
+ "options": {
+ "surface": {
+ "title": "উপরিভাগ"
+ }
+ }
+ },
+ "parking/side/parking": {
+ "options": {
+ "no": "না"
+ }
+ },
+ "parking_entrance": {
"label": "ধরন"
},
+ "parking_space": {
+ "label": "ধরন"
+ },
+ "phases": {
+ "placeholder": "১, ২, ৩..."
+ },
"phone": {
- "label": "টেলিফোন",
- "placeholder": "+৩১ ৪২ ১২৩ ৪৫৬৭"
+ "label": "টেলিফোন"
+ },
+ "pipeline": {
+ "label": "ধরন"
+ },
+ "piste/type": {
+ "label": "ধরন",
+ "options": {
+ "playground": "খেলার মাঠ"
+ }
},
"place": {
"label": "ধরন"
},
+ "playground": {
+ "label": "ধরন"
+ },
"population": {
"label": "জনসংখ্যা"
},
+ "post_box/type": {
+ "label": "ধরন"
+ },
"power": {
"label": "ধরন"
},
+ "public_bookcase/type": {
+ "label": "ধরন"
+ },
+ "pump": {
+ "options": {
+ "no": "কিছুনা",
+ "yes": "হ্যাঁ"
+ }
+ },
"railway": {
"label": "ধরন"
},
+ "ramp": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "recycling_type": {
+ "label": "ধরন"
+ },
+ "ref_disc_golf_hole": {
+ "placeholder": "১-১৮"
+ },
+ "ref_golf_hole": {
+ "placeholder": "১-১৮"
+ },
"relation": {
"label": "ধরন"
},
"religion": {
- "label": "ধর্ম"
+ "label": "ধর্ম",
+ "options": {
+ "buddhist": "বৌদ্ধ",
+ "christian": "খ্রিষ্টান",
+ "hindu": "হিন্দু",
+ "jewish": "ইহুদি",
+ "muslim": "মুসলিম"
+ }
+ },
+ "residential": {
+ "label": "ধরন"
+ },
+ "resort": {
+ "label": "ধরন"
},
"restriction": {
"label": "ধরন"
},
+ "roller_coaster/track": {
+ "label": "ধরন"
+ },
+ "room": {
+ "label": "ধরন"
+ },
"route": {
"label": "ধরন"
},
"route_master": {
"label": "ধরন"
},
- "service": {
+ "royal_cypher-GB": {
+ "options": {
+ "no": "না"
+ }
+ },
+ "ruins": {
"label": "ধরন"
},
+ "seamark/beacon_lateral/system": {
+ "options": {
+ "other": "অন্যান্য"
+ }
+ },
+ "seamark/buoy_lateral/system": {
+ "options": {
+ "other": "অন্যান্য"
+ }
+ },
+ "seamark/harbour/category_marina": {
+ "options": {
+ "marina": "হ্যাঁ",
+ "marina_no_facilities": "না"
+ }
+ },
+ "seats": {
+ "placeholder": "২, ৪, ৬..."
+ },
+ "second_hand": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "service": {
+ "label": "ধরন",
+ "options": {
+ "alley": "গলি"
+ }
+ },
"shelter": {
"label": "ছাউনি"
},
+ "shelter_type": {
+ "label": "ধরন"
+ },
"shop": {
"label": "ধরন"
},
+ "siren/type": {
+ "label": "ধরন",
+ "options": {
+ "other": "অন্যান্য"
+ }
+ },
+ "site": {
+ "label": "ধরন"
+ },
+ "social_facility": {
+ "label": "ধরন",
+ "options": {
+ "shelter": "ছাউনি"
+ }
+ },
+ "sport": {
+ "options": {
+ "golf": "গল্ফ"
+ }
+ },
+ "stile": {
+ "label": "ধরন"
+ },
+ "street_cabinet": {
+ "label": "ধরন"
+ },
+ "stroller": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
"structure": {
"label": "কাঠামো",
"options": {
@@ -291,15 +890,177 @@
},
"placeholder": "অজানা"
},
+ "structure_canal": {
+ "label": "কাঠামো",
+ "options": {
+ "bridge": "সেতু",
+ "tunnel": "সুড়ঙ্গ"
+ },
+ "placeholder": "অজানা"
+ },
+ "structure_power": {
+ "label": "কাঠামো"
+ },
+ "structure_waterway": {
+ "label": "কাঠামো",
+ "options": {
+ "tunnel": "সুড়ঙ্গ"
+ },
+ "placeholder": "অজানা"
+ },
+ "studio": {
+ "label": "ধরন"
+ },
+ "substance": {
+ "options": {
+ "fuel": "জ্বালানি",
+ "water": "পানীয় জল"
+ }
+ },
+ "substation": {
+ "label": "ধরন"
+ },
+ "substation_pipeline": {
+ "label": "ধরন"
+ },
"surface": {
- "label": "উপরিভাগ"
+ "label": "উপরিভাগ",
+ "options": {
+ "grass": "ঘাস",
+ "wood": "অরন্য"
+ }
+ },
+ "survey_point/purpose": {
+ "options": {
+ "both": "উভয়"
+ }
+ },
+ "survey_point/structure": {
+ "label": "কাঠামো"
+ },
+ "swimming_pool": {
+ "label": "ধরন"
+ },
+ "switch": {
+ "label": "ধরন"
+ },
+ "takeaway": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "telecom": {
+ "label": "ধরন"
+ },
+ "telescope/type": {
+ "label": "ধরন"
+ },
+ "toilets": {
+ "label": "শৌচাগার"
+ },
+ "toilets/menstrual_products": {
+ "options": {
+ "no": "না"
+ }
+ },
+ "toilets/wheelchair": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "tomb": {
+ "label": "ধরন"
},
"tourism": {
"label": "ধরন"
},
+ "tower/construction": {
+ "label": "মেরামত"
+ },
+ "tower/platforms": {
+ "placeholder": "১, ২, ৩..."
+ },
+ "tower/type": {
+ "label": "ধরন"
+ },
+ "townhall/type": {
+ "label": "ধরন"
+ },
+ "trade": {
+ "label": "ধরন"
+ },
+ "traffic_calming": {
+ "label": "ধরন"
+ },
+ "traffic_signals": {
+ "label": "ধরন"
+ },
+ "traffic_signals/sound": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "transformer": {
+ "label": "ধরন"
+ },
+ "trench": {
+ "label": "ধরন"
+ },
+ "tunnel": {
+ "label": "ধরন",
+ "placeholder": "পূর্বনির্ধারিত"
+ },
+ "tunnel_combo": {
+ "label": "ধরন"
+ },
+ "two_sided": {
+ "options": {
+ "undefined": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
+ "usage_rail": {
+ "options": {
+ "tourism": "পর্যটন"
+ }
+ },
+ "utility": {
+ "options": {
+ "water": "জল"
+ }
+ },
+ "valve": {
+ "label": "ধরন"
+ },
+ "vehicles": {
+ "options": {
+ "monorail": "মনোরেল",
+ "subway": "ভূতলপথ",
+ "tram": "ট্রাম"
+ }
+ },
+ "vending": {
+ "options": {
+ "fuel": "জ্বালানি",
+ "water": "পানীয় জল"
+ }
+ },
+ "wall": {
+ "label": "ধরন"
+ },
"water": {
"label": "ধরন"
},
+ "water_source": {
+ "options": {
+ "pond": "পুকুর",
+ "river": "নদী",
+ "stream": "পানিস্রোত"
+ }
+ },
"waterway": {
"label": "ধরন"
},
@@ -309,8 +1070,23 @@
"wetland": {
"label": "ধরন"
},
+ "wheelchair": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
+ },
"wikipedia": {
"label": "উইকিপিডিয়া"
+ },
+ "windings": {
+ "placeholder": "১, ২, ৩..."
+ },
+ "windings/auto": {
+ "options": {
+ "no": "না",
+ "yes": "হ্যাঁ"
+ }
}
},
"presets": {
@@ -401,6 +1177,9 @@
"amenity/restaurant": {
"name": "রেস্তোরাঁ"
},
+ "amenity/shelter": {
+ "name": "ছাউনি"
+ },
"amenity/telephone": {
"name": "টেলিফোন"
},
@@ -425,6 +1204,9 @@
"barrier/wall": {
"name": "দেয়াল"
},
+ "boundary": {
+ "name": "সীমানা"
+ },
"boundary/administrative": {
"name": "প্রশাসনিক সীমানা"
},
@@ -449,9 +1231,15 @@
"building/residential": {
"name": "আবাসিক ভবন"
},
+ "building_point": {
+ "name": "দালান"
+ },
"emergency/phone": {
"name": "জরুরি ফোন"
},
+ "highway/crossing": {
+ "name": "ক্রসিং"
+ },
"highway/cycleway": {
"name": "সাইকেলের রাস্তা"
},
@@ -524,9 +1312,15 @@
"landuse/orchard": {
"name": "ফলের বাগান"
},
+ "landuse/pond": {
+ "name": "পুকুর"
+ },
"landuse/quarry": {
"name": "খনি"
},
+ "landuse/reservoir": {
+ "name": "জলাধার"
+ },
"landuse/vineyard": {
"name": "আঙুরখেত"
},
@@ -626,6 +1420,9 @@
"office": {
"name": "কার্যালয়"
},
+ "office/diplomatic/embassy": {
+ "name": "দুতাবাস"
+ },
"office/ngo": {
"name": "এনজিও অফিস"
},
@@ -647,6 +1444,9 @@
"place/locality": {
"name": "অঞ্চল"
},
+ "place/square": {
+ "name": "বর্গাকৃতি"
+ },
"place/town": {
"name": "উপনগর"
},
@@ -776,6 +1576,9 @@
"type/boundary/administrative": {
"name": "প্রশাসনিক সীমানা"
},
+ "type/waterway": {
+ "name": "পানিপথ"
+ },
"waterway/canal": {
"name": "খাল"
},
diff --git a/dist/translations/bn.min.json b/dist/translations/bn.min.json
index 7ffaf647..5e2966c3 100644
--- a/dist/translations/bn.min.json
+++ b/dist/translations/bn.min.json
@@ -1 +1 @@
-{"bn":{"presets":{"fields":{"access":{"options":{"destination":{"title":"গন্তব্য"},"no":{"title":"নিষিদ্ধ"},"permissive":{"title":"অনুমতিসূচক"},"private":{"title":"একান্ত"},"yes":{"title":"অনুমোদিত"}},"types":{"access":"সব","bicycle":"সাইকেল","foot":"পদচালন","horse":"ঘোড়া","motor_vehicle":"মোটরগাড়ি"}},"address":{"label":"ঠিকানা","placeholders":{"city":"শহর","conscriptionnumber":"১২৩","country":"দেশ","county":"দেশ","county!jp":"জেলা","district":"জেলা","housename":"বাড়ির নাম","housenumber":"১২৩","place":"জায়গা","postcode":"ডাককোড","province":"প্রদেশ","state":"রাজ্য","street":"রাস্তা","subdistrict":"উপজেলা","suburb":"শহরতলি","unit":"একক"}},"aerialway":{"label":"ধরন"},"aerialway/access":{"label":"প্রবেশ করা","options":{"both":"উভয়","entry":"প্রবেশ","exit":"প্রস্থান"}},"aerialway/capacity":{"placeholder":"৫০০, ২৫০০, ৫০০০ ..."},"aerialway/duration":{"placeholder":"১, ২, ৩..."},"aerialway/occupancy":{"placeholder":"২, ৪, ৮..."},"aerialway/summer/access":{"options":{"both":"উভয়","entry":"প্রবেশ","exit":"প্রস্থান"}},"aeroway":{"label":"ধরন"},"amenity":{"label":"ধরন"},"area/highway":{"label":"ধরন"},"artist":{"label":"শিল্পী"},"artwork_type":{"label":"ধরন"},"atm":{"label":"এটিএম"},"barrier":{"label":"ধরন"},"bicycle_parking":{"label":"ধরন"},"boundary":{"label":"ধরন"},"building":{"label":"দালান"},"capacity":{"label":"ধারণক্ষমতা","placeholder":"৫০, ১০০, ২০০..."},"collection_times":{"label":"সংগ্রহের সময়"},"construction":{"label":"ধরন"},"country":{"label":"দেশ"},"crossing":{"label":"ধরন"},"description":{"label":"বর্ননা"},"emergency":{"label":"জরুরি"},"entrance":{"label":"ধরন"},"except":{"label":"ব্যতিক্রম"},"fax":{"label":"ফ্যাক্স","placeholder":"+৩১ ৪২ ১২৩ ৪৫৬৭"},"fee":{"label":"মূল্য"},"fire_hydrant/type":{"options":{"wall":"দেয়াল"}},"fixme":{"label":"আমাকে ঠিক করুন"},"fuel":{"label":"জ্বালানি"},"generator/method":{"label":"পদ্ধতি"},"generator/source":{"label":"উৎস"},"generator/type":{"label":"ধরন"},"handicap":{"label":"বিকলাঙ্গ","placeholder":"১-১৮"},"highway":{"label":"ধরন"},"historic":{"label":"ধরন"},"hoops":{"placeholder":"১, ২, ৪..."},"incline":{"label":"ঝোকা"},"information":{"label":"ধরন"},"internet_access":{"options":{"no":"না","terminal":"টার্মিনাল","wired":"তারযুক্ত","wlan":"তারবিহীন","yes":"হ্যাঁ"}},"landuse":{"label":"ধরন"},"lanes":{"label":"লেন","placeholder":"১, ২, ৩..."},"layer":{"label":"স্তর"},"leisure":{"label":"ধরন"},"length":{"label":"দৈর্ঘ্য (মিটার)"},"location":{"label":"অবস্থান"},"man_made":{"label":"ধরন"},"maxspeed":{"label":"গতিসীমা","placeholder":"৪০, ৫০, ৬০..."},"name":{"label":"নাম","placeholder":"চলতি নাম (যদি থেকে থাকে)"},"natural":{"label":"প্রাকৃতিক"},"network":{"label":"নেটওয়ার্ক"},"note":{"label":"টীকা"},"office":{"label":"ধরন"},"oneway":{"label":"একমুখো"},"opening_hours":{"label":"ঘন্টা"},"operator":{"label":"পরিচালক"},"parking":{"label":"ধরন"},"phone":{"label":"টেলিফোন","placeholder":"+৩১ ৪২ ১২৩ ৪৫৬৭"},"place":{"label":"ধরন"},"population":{"label":"জনসংখ্যা"},"power":{"label":"ধরন"},"railway":{"label":"ধরন"},"relation":{"label":"ধরন"},"religion":{"label":"ধর্ম"},"restriction":{"label":"ধরন"},"route":{"label":"ধরন"},"route_master":{"label":"ধরন"},"service":{"label":"ধরন"},"shelter":{"label":"ছাউনি"},"shop":{"label":"ধরন"},"structure":{"label":"কাঠামো","options":{"bridge":"সেতু","tunnel":"সুড়ঙ্গ"},"placeholder":"অজানা"},"surface":{"label":"উপরিভাগ"},"tourism":{"label":"ধরন"},"water":{"label":"ধরন"},"waterway":{"label":"ধরন"},"website":{"label":"ওয়েবসাইট"},"wetland":{"label":"ধরন"},"wikipedia":{"label":"উইকিপিডিয়া"}},"presets":{"address":{"name":"ঠিকানা"},"aeroway/aerodrome":{"name":"বিমানবন্দর"},"aeroway/helipad":{"name":"হেলিপ্যাড"},"amenity":{"name":"আমেনিটি"},"amenity/arts_centre":{"name":"শিল্প কেন্দ্র"},"amenity/atm":{"name":"এটিএম"},"amenity/bank":{"name":"ব্যাংক"},"amenity/bar":{"name":"পানশালা"},"amenity/bench":{"name":"বেঞ্চ"},"amenity/bicycle_parking":{"name":"সাইকেল পার্ক করার জায়গা"},"amenity/bicycle_rental":{"name":"সাইকেল ভাড়া নেয়া"},"amenity/cafe":{"name":"ক্যাফে"},"amenity/car_rental":{"name":"গাড়ি ভাড়া"},"amenity/cinema":{"name":"সিনেমা"},"amenity/drinking_water":{"name":"পানীয় জল"},"amenity/embassy":{"name":"দুতাবাস"},"amenity/fast_food":{"name":"ফাস্টফুড"},"amenity/fire_station":{"name":"দমকল"},"amenity/fountain":{"name":"ঝর্না"},"amenity/fuel":{"name":"গ্যাস স্টেশন"},"amenity/grave_yard":{"name":"কবরখানা"},"amenity/library":{"name":"পাঠাগার"},"amenity/marketplace":{"name":"বাজার"},"amenity/place_of_worship":{"name":"প্রার্থনাস্থল"},"amenity/place_of_worship/buddhist":{"name":"বৌদ্ধ মন্দির"},"amenity/police":{"name":"পুলিশ"},"amenity/post_office":{"name":"ডাকঘর"},"amenity/pub":{"name":"সরাইখানা"},"amenity/restaurant":{"name":"রেস্তোরাঁ"},"amenity/telephone":{"name":"টেলিফোন"},"amenity/theatre":{"name":"থিয়েটার"},"amenity/townhall":{"name":"টাউন হল"},"area":{"name":"এলাকা"},"barrier/entrance":{"name":"দ্বার"},"barrier/fence":{"name":"বেড়া"},"barrier/gate":{"name":"ফটক"},"barrier/wall":{"name":"দেয়াল"},"boundary/administrative":{"name":"প্রশাসনিক সীমানা"},"building":{"name":"দালান"},"building/commercial":{"name":"বানিজ্যিক ভবন"},"building/garage":{"name":"গ্যারেজ"},"building/house":{"name":"বাড়ি"},"building/hut":{"name":"কুড়েঘর"},"building/industrial":{"name":"শিল্পায়িত ভবন"},"building/residential":{"name":"আবাসিক ভবন"},"emergency/phone":{"name":"জরুরি ফোন"},"highway/cycleway":{"name":"সাইকেলের রাস্তা"},"highway/footway":{"name":"ফুটপাত"},"highway/motorway":{"name":"মোটরওয়ে"},"highway/path":{"name":"পথ"},"highway/primary":{"name":"প্রাথমিক রাস্তা"},"highway/residential":{"name":"আবাসিক রাস্তা"},"highway/road":{"name":"অজানা রাস্তা"},"highway/secondary":{"name":"দ্বিতীয় স্তরের রাস্তা"},"highway/service":{"name":"সার্ভিস রোড"},"highway/service/alley":{"name":"গলি"},"highway/steps":{"name":"সিঁড়ি"},"highway/tertiary":{"name":"প্রশাখা রাস্তা"},"highway/traffic_signals":{"name":"ট্রাফিক সংকেত"},"highway/trunk":{"name":"ট্রাঙ্ক রোড"},"historic":{"name":"ঐতিহাসিক জায়গা"},"historic/castle":{"name":"প্রাসাদ"},"historic/memorial":{"name":"স্মরণচিহ্ন"},"historic/monument":{"name":"স্মৃতিস্তম্ভ"},"historic/ruins":{"name":"ধ্বংসাবশেষ"},"landuse/cemetery":{"name":"কবরখানা"},"landuse/farmyard":{"name":"খামার"},"landuse/grass":{"name":"ঘাস"},"landuse/meadow":{"name":"তৃণক্ষেত্র"},"landuse/orchard":{"name":"ফলের বাগান"},"landuse/quarry":{"name":"খনি"},"landuse/vineyard":{"name":"আঙুরখেত"},"leisure/garden":{"name":"বাগান"},"leisure/golf_course":{"name":"গল্ফ মাঠ"},"leisure/park":{"name":"উদ্যান"},"leisure/pitch/american_football":{"name":"মার্কিন ফুটবল মাঠ"},"leisure/pitch/basketball":{"name":"বাস্কেটবল কোর্ট"},"leisure/pitch/soccer":{"name":"ফুটবল মাঠ"},"leisure/pitch/tennis":{"name":"টেনিস কোর্ট"},"leisure/pitch/volleyball":{"name":"ভলিবল মাঠ"},"leisure/playground":{"name":"খেলার মাঠ"},"leisure/stadium":{"name":"স্টেডিয়াম"},"leisure/swimming_pool":{"name":"সুইমিং পুল"},"line":{"name":"রেখা"},"man_made/lighthouse":{"name":"বাতিঘর"},"man_made/pier":{"name":"জাহাজঘাটা"},"man_made/pipeline":{"name":"নল"},"man_made/tower":{"name":"মিনার"},"man_made/water_tower":{"name":"জল স্তম্ভ"},"natural/bay":{"name":"উপসাগর"},"natural/beach":{"name":"সৈকত"},"natural/coastline":{"name":"তটরেখা"},"natural/glacier":{"name":"হিমবাহ"},"natural/grassland":{"name":"তৃণভুমি"},"natural/heath":{"name":"স্বাস্থ্য"},"natural/peak":{"name":"চূড়া"},"natural/spring":{"name":"বসন্ত"},"natural/tree":{"name":"গাছ"},"natural/water":{"name":"জল"},"natural/water/lake":{"name":"হ্রদ"},"natural/water/pond":{"name":"পুকুর"},"natural/water/reservoir":{"name":"জলাধার"},"natural/wetland":{"name":"জলাজমি"},"office":{"name":"কার্যালয়"},"office/ngo":{"name":"এনজিও অফিস"},"office/physician":{"name":"চিকিত্সক"},"office/telecommunication":{"name":"টেলিকম অফিস"},"place":{"name":"জায়গা"},"place/city":{"name":"শহর"},"place/island":{"name":"দ্বীপ"},"place/locality":{"name":"অঞ্চল"},"place/town":{"name":"উপনগর"},"place/village":{"name":"গ্রাম"},"point":{"name":"বিন্দু"},"railway/abandoned":{"name":"পরিত্যক্ত রেলপথ"},"railway/disused":{"name":"অব্যবহৃত রেলপথ"},"railway/subway_entrance":{"name":"ভূতলপথ দ্বার"},"relation":{"name":"সম্পর্ক"},"shop":{"name":"দোকান"},"shop/bakery":{"name":"বেকারি"},"shop/bicycle":{"name":"সাইকেলের দোকান"},"shop/boutique":{"name":"বুটিক"},"shop/butcher":{"name":"কসাই"},"shop/car":{"name":"গাড়ির ডিলারশিপ"},"shop/car_parts":{"name":"গাড়ির যন্ত্রাংশের দোকান"},"shop/car_repair":{"name":"গাড়ি মেরামতের দোকান"},"shop/clothes":{"name":"জামাকাপড়ের দোকান"},"shop/computer":{"name":"কম্পিউটারের দোকান"},"shop/department_store":{"name":"ডিপার্টমেন্ট স্টোর"},"shop/doityourself":{"name":"নিজে করুন স্টোর"},"shop/electronics":{"name":"ইলেকট্রনিক্স-এর দোকান"},"shop/florist":{"name":"ফুল ব্যবসায়ী"},"shop/furniture":{"name":"আসবাবপত্রের দোকান"},"shop/gift":{"name":"উপহারের দোকান"},"shop/mall":{"name":"মল"},"shop/mobile_phone":{"name":"মোবাইল ফোন-এর দোকান"},"shop/music":{"name":"সঙ্গীতের দোকান"},"shop/optician":{"name":"চক্ষুরোগের চিকিত্সক"},"shop/shoes":{"name":"জুতোর দোকান"},"shop/sports":{"name":"খেলার সামগ্রির দোকান"},"shop/supermarket":{"name":"সুপারমার্কেট"},"shop/toys":{"name":"খেলনার দোকান"},"tourism/attraction":{"name":"পর্যটক আকর্ষণ"},"tourism/guest_house":{"name":"অতিথিশালা"},"tourism/hostel":{"name":"ছাত্রাবাস"},"tourism/hotel":{"name":"হোটেল"},"tourism/information":{"name":"তথ্য"},"tourism/motel":{"name":"মোটেল"},"tourism/museum":{"name":"প্রদর্শনশালা"},"tourism/picnic_site":{"name":"পিকনিক-এর জায়গা"},"tourism/theme_park":{"name":"থিম পার্ক"},"tourism/zoo":{"name":"চিড়িয়াখানা"},"type/boundary":{"name":"সীমানা"},"type/boundary/administrative":{"name":"প্রশাসনিক সীমানা"},"waterway/canal":{"name":"খাল"},"waterway/dam":{"name":"বাঁধ"},"waterway/drain":{"name":"নালা"},"waterway/river":{"name":"নদী"},"waterway/stream":{"name":"পানিস্রোত"}}}}}
\ No newline at end of file
+{"bn":{"presets":{"fields":{"access":{"options":{"destination":{"title":"গন্তব্য"},"no":{"title":"নিষিদ্ধ"},"permissive":{"title":"অনুমতিসূচক"},"private":{"title":"একান্ত"},"unknown":{"title":"অজানা"},"yes":{"title":"অনুমোদিত"}},"types":{"access":"সব","bicycle":"সাইকেল","foot":"পদচালন","horse":"ঘোড়া","motor_vehicle":"মোটরগাড়ি"}},"access_aisle":{"label":"ধরন"},"access_simple":{"options":{"no":"কিছুনা","permissive":"অনুমতিসূচক","private":"একান্ত","unknown":"অজানা"}},"addr/interpolation":{"label":"ধরন","options":{"all":"সব"}},"address":{"label":"ঠিকানা","placeholders":{"city":"শহর","conscriptionnumber":"১২৩","country":"দেশ","county":"দেশ","county!jp":"জেলা","district":"জেলা","housename":"বাড়ির নাম","housenumber":"১২৩","place":"জায়গা","postcode":"ডাককোড","province":"প্রদেশ","state":"রাজ্য","street":"রাস্তা","subdistrict":"উপজেলা","suburb":"শহরতলি","town":"উপনগর","unit":"একক"}},"advertising":{"label":"ধরন"},"aerialway":{"label":"ধরন"},"aerialway/access":{"label":"প্রবেশ করা","options":{"both":"উভয়","entry":"প্রবেশ","exit":"প্রস্থান"}},"aerialway/capacity":{"placeholder":"৫০০, ২৫০০, ৫০০০ ..."},"aerialway/duration":{"placeholder":"১, ২, ৩..."},"aerialway/occupancy":{"placeholder":"২, ৪, ৮..."},"aerialway/summer/access":{"options":{"both":"উভয়","entry":"প্রবেশ","exit":"প্রস্থান"}},"aeroway":{"label":"ধরন"},"aircraft/type":{"label":"ধরন"},"amenity":{"label":"ধরন"},"archaeological_site":{"label":"ধরন"},"area/highway":{"label":"ধরন"},"armrest":{"options":{"undefined":"অজানা"}},"artist":{"label":"শিল্পী"},"artwork_type":{"label":"ধরন"},"atm":{"label":"এটিএম"},"attraction":{"label":"ধরন"},"baby_feeding":{"options":{"no":"কিছুনা"}},"bar":{"label":"পানশালা"},"barrier":{"label":"ধরন","options":{"entrance":"দ্বার","fence":"বেড়া","gate":"ফটক","wall":"দেয়াল"}},"barrier_planter":{"options":{"planter":"হ্যাঁ","undefined":"না"}},"basin":{"label":"ধরন"},"bath/type":{"options":{"lake":"হ্রদ"}},"bench":{"label":"বেঞ্চ"},"bicycle_parking":{"label":"ধরন"},"bicycle_road":{"options":{"undefined":"না","yes":"হ্যাঁ"}},"blind":{"options":{"no":"না","yes":"হ্যাঁ"}},"board_type":{"label":"ধরন","options":{"history":"ইতিহাস"}},"bollard":{"label":"ধরন"},"boules":{"label":"ধরন"},"boundary":{"label":"ধরন"},"bridge":{"label":"ধরন","placeholder":"পূর্বনির্ধারিত"},"bridge/support":{"label":"ধরন"},"bridge_combo":{"label":"ধরন"},"building":{"label":"দালান","options":{"commercial":"বানিজ্যিক ভবন","garage":"গ্যারেজ","house":"বাড়ি","hut":"কুড়েঘর","industrial":"শিল্পায়িত ভবন","residential":"আবাসিক ভবন"}},"building/levels":{"label":"স্তর","placeholder":"২, ৪, ৬..."},"building/levels/underground":{"placeholder":"২, ৪, ৬..."},"bunker_type":{"label":"ধরন"},"cables":{"placeholder":"১, ২, ৩..."},"camp_site":{"label":"ধরন"},"capacity":{"label":"ধারণক্ষমতা","placeholder":"৫০, ১০০, ২০০..."},"capacity/disabled_parking":{"placeholder":"১, ২, ৩..."},"capacity/persons":{"placeholder":"৫০, ১০০, ২০০..."},"capacity_volume":{"placeholder":"৫০, ১০০, ২০০..."},"castle_type":{"label":"ধরন"},"climbing/length":{"label":"দৈর্ঘ্য (মিটার)"},"club":{"label":"ধরন"},"collection_times":{"label":"সংগ্রহের সময়"},"community_centre":{"label":"ধরন"},"construction":{"label":"ধরন"},"consulate":{"label":"ধরন"},"country":{"label":"দেশ"},"couplings":{"placeholder":"১, ২, ৩..."},"covered_no":{"options":{"no":"না","yes":"হ্যাঁ"}},"craft":{"label":"ধরন"},"crop":{"options":{"grass":"ঘাস"}},"crossing":{"label":"ধরন"},"crossing/barrier":{"options":{"no":"না","yes":"হ্যাঁ"}},"crossing_raised":{"options":{"table":"হ্যাঁ","undefined":"না"}},"cutting":{"label":"ধরন","placeholder":"পূর্বনির্ধারিত"},"cycle_barrier":{"label":"ধরন"},"cycle_network":{"label":"নেটওয়ার্ক"},"cycleway":{"options":{"no":{"title":"কিছুনা"}}},"departures_board":{"options":{"no":"কিছুনা","yes":"হ্যাঁ"}},"depot":{"label":"ধরন"},"description":{"label":"বর্ননা"},"destination_waterway":{"label":"গন্তব্য"},"devices":{"placeholder":"১, ২, ৩..."},"diplomatic":{"label":"ধরন","options":{"embassy":"দুতাবাস"}},"direction_cardinal-US-CA-NZ":{"label":"দিক"},"direction_clock":{"label":"দিক","options":{"anticlockwise":"ঘড়ির কাটার উল্টো দিকে","clockwise":"ঘড়ির কাটার দিকে"}},"disused/amenity":{"label":"ধরন"},"disused/railway":{"label":"ধরন"},"disused/shop":{"label":"ধরন"},"dock":{"label":"ধরন"},"dog":{"options":{"yes":"অনুমোদিত"}},"door_type":{"label":"ধরন"},"electrified":{"options":{"no":"না"}},"embankment":{"label":"ধরন","placeholder":"পূর্বনির্ধারিত"},"embassy":{"label":"ধরন","options":{"yes":"দুতাবাস"}},"emergency":{"label":"জরুরি"},"emergency_combo":{"label":"ধরন"},"emergency_ward_entrance":{"label":"ধরন"},"enforcement":{"label":"ধরন"},"entrance":{"label":"ধরন"},"except":{"label":"ব্যতিক্রম"},"fax":{"label":"ফ্যাক্স","placeholder":"+৩১ ৪২ ১২৩ ৪৫৬৭"},"fee":{"label":"মূল্য"},"fence_type":{"label":"ধরন"},"fire_hydrant/type":{"options":{"wall":"দেয়াল"}},"fire_mains":{"options":{"no":"না"}},"fire_service_inlet":{"options":{"wall":"দেয়াল"}},"fire_sprinkler":{"options":{"no":"না"}},"fixme":{"label":"আমাকে ঠিক করুন"},"flashing_lights":{"options":{"no":"না","yes":"হ্যাঁ"}},"ford":{"label":"ধরন","placeholder":"পূর্বনির্ধারিত"},"fountain":{"label":"ধরন"},"fuel":{"label":"জ্বালানি"},"gender":{"placeholder":"অজানা"},"generator/method":{"label":"পদ্ধতি","options":{"water-storage":"জলাধার"}},"generator/source":{"label":"উৎস"},"generator/type":{"label":"ধরন"},"government":{"label":"ধরন"},"guest_house":{"label":"ধরন"},"handicap":{"label":"বিকলাঙ্গ","placeholder":"১-১৮"},"healthcare":{"label":"ধরন"},"highway":{"label":"ধরন"},"highway_cartpath":{"options":{"service":"সার্ভিস রোড"}},"historic":{"label":"ধরন","options":{"castle":"প্রাসাদ","memorial":"স্মরণচিহ্ন","monument":"স্মৃতিস্তম্ভ","railway":"রেলপথ","ruins":"ধ্বংসাবশেষ"}},"holding_position/type":{"label":"ধরন"},"hoops":{"placeholder":"১, ২, ৪..."},"horse_riding":{"options":{"horse_riding":"হ্যাঁ","undefined":"না"}},"incline":{"label":"ঝোকা"},"indoor_type":{"label":"ধরন"},"industrial":{"label":"ধরন"},"information":{"label":"ধরন"},"internet_access":{"options":{"no":"না","terminal":"টার্মিনাল","wired":"তারযুক্ত","wlan":"তারবিহীন","yes":"হ্যাঁ"}},"irrigation_pivot":{"options":{"pivot":"হ্যাঁ","undefined":"না"}},"kerb":{"options":{"no":{"title":"না"},"yes":{"title":"হ্যাঁ"}}},"kerb/kerb_barrier":{"label":"ধরন"},"lamp_type":{"label":"ধরন"},"landuse":{"label":"ধরন"},"lanes":{"label":"লেন","placeholder":"১, ২, ৩..."},"layer":{"label":"স্তর"},"leisure":{"label":"ধরন"},"length":{"label":"দৈর্ঘ্য (মিটার)"},"level_semi":{"label":"স্তর"},"liaison":{"label":"ধরন"},"lifeguard":{"label":"ধরন"},"lift_gate/type":{"label":"ধরন"},"location":{"label":"অবস্থান"},"man_made":{"label":"ধরন"},"manhole":{"label":"ধরন"},"map_type":{"label":"ধরন"},"marker":{"label":"ধরন"},"material":{"options":{"wood":"অরন্য"}},"maxspeed":{"label":"গতিসীমা","placeholder":"৪০, ৫০, ৬০..."},"maxspeed/advisory":{"placeholder":"৪০, ৫০, ৬০..."},"maxspeed/hgv":{"placeholder":"৪০, ৫০, ৬০..."},"memorial":{"label":"ধরন"},"mobile":{"placeholder":"+৩১ ৪২ ১২৩ ৪৫৬৭"},"mooring":{"options":{"no":"না","private":"একান্ত","yes":"হ্যাঁ"}},"museum":{"label":"ধরন"},"name":{"label":"নাম","placeholder":"চলতি নাম (যদি থেকে থাকে)"},"natural":{"label":"প্রাকৃতিক"},"network":{"label":"নেটওয়ার্ক"},"network_road":{"label":"নেটওয়ার্ক"},"note":{"label":"টীকা"},"nudism":{"options":{"no":"নিষিদ্ধ","permissive":"অনুমতিসূচক","yes":"অনুমোদিত"}},"office":{"label":"ধরন","options":{"ngo":"এনজিও অফিস","physician":"চিকিত্সক","telecommunication":"টেলিকম অফিস"}},"oneway":{"label":"একমুখো","options":{"no":"না","yes":"হ্যাঁ"}},"oneway_yes":{"options":{"no":"না","yes":"হ্যাঁ"}},"opening_hours":{"label":"ঘন্টা","placeholder":"অজানা"},"operator":{"label":"পরিচালক"},"organic":{"options":{"no":"কিছুনা"}},"parcel_pickup":{"options":{"no":"না","yes":"হ্যাঁ"}},"parking":{"label":"ধরন","options":{"surface":{"title":"উপরিভাগ"}}},"parking/side/parking":{"options":{"no":"না"}},"parking_entrance":{"label":"ধরন"},"parking_space":{"label":"ধরন"},"phases":{"placeholder":"১, ২, ৩..."},"phone":{"label":"টেলিফোন"},"pipeline":{"label":"ধরন"},"piste/type":{"label":"ধরন","options":{"playground":"খেলার মাঠ"}},"place":{"label":"ধরন"},"playground":{"label":"ধরন"},"population":{"label":"জনসংখ্যা"},"post_box/type":{"label":"ধরন"},"power":{"label":"ধরন"},"public_bookcase/type":{"label":"ধরন"},"pump":{"options":{"no":"কিছুনা","yes":"হ্যাঁ"}},"railway":{"label":"ধরন"},"ramp":{"options":{"no":"না","yes":"হ্যাঁ"}},"recycling_type":{"label":"ধরন"},"ref_disc_golf_hole":{"placeholder":"১-১৮"},"ref_golf_hole":{"placeholder":"১-১৮"},"relation":{"label":"ধরন"},"religion":{"label":"ধর্ম","options":{"buddhist":"বৌদ্ধ","christian":"খ্রিষ্টান","hindu":"হিন্দু","jewish":"ইহুদি","muslim":"মুসলিম"}},"residential":{"label":"ধরন"},"resort":{"label":"ধরন"},"restriction":{"label":"ধরন"},"roller_coaster/track":{"label":"ধরন"},"room":{"label":"ধরন"},"route":{"label":"ধরন"},"route_master":{"label":"ধরন"},"royal_cypher-GB":{"options":{"no":"না"}},"ruins":{"label":"ধরন"},"seamark/beacon_lateral/system":{"options":{"other":"অন্যান্য"}},"seamark/buoy_lateral/system":{"options":{"other":"অন্যান্য"}},"seamark/harbour/category_marina":{"options":{"marina":"হ্যাঁ","marina_no_facilities":"না"}},"seats":{"placeholder":"২, ৪, ৬..."},"second_hand":{"options":{"no":"না","yes":"হ্যাঁ"}},"service":{"label":"ধরন","options":{"alley":"গলি"}},"shelter":{"label":"ছাউনি"},"shelter_type":{"label":"ধরন"},"shop":{"label":"ধরন"},"siren/type":{"label":"ধরন","options":{"other":"অন্যান্য"}},"site":{"label":"ধরন"},"social_facility":{"label":"ধরন","options":{"shelter":"ছাউনি"}},"sport":{"options":{"golf":"গল্ফ"}},"stile":{"label":"ধরন"},"street_cabinet":{"label":"ধরন"},"stroller":{"options":{"no":"না","yes":"হ্যাঁ"}},"structure":{"label":"কাঠামো","options":{"bridge":"সেতু","tunnel":"সুড়ঙ্গ"},"placeholder":"অজানা"},"structure_canal":{"label":"কাঠামো","options":{"bridge":"সেতু","tunnel":"সুড়ঙ্গ"},"placeholder":"অজানা"},"structure_power":{"label":"কাঠামো"},"structure_waterway":{"label":"কাঠামো","options":{"tunnel":"সুড়ঙ্গ"},"placeholder":"অজানা"},"studio":{"label":"ধরন"},"substance":{"options":{"fuel":"জ্বালানি","water":"পানীয় জল"}},"substation":{"label":"ধরন"},"substation_pipeline":{"label":"ধরন"},"surface":{"label":"উপরিভাগ","options":{"grass":"ঘাস","wood":"অরন্য"}},"survey_point/purpose":{"options":{"both":"উভয়"}},"survey_point/structure":{"label":"কাঠামো"},"swimming_pool":{"label":"ধরন"},"switch":{"label":"ধরন"},"takeaway":{"options":{"no":"না","yes":"হ্যাঁ"}},"telecom":{"label":"ধরন"},"telescope/type":{"label":"ধরন"},"toilets":{"label":"শৌচাগার"},"toilets/menstrual_products":{"options":{"no":"না"}},"toilets/wheelchair":{"options":{"no":"না","yes":"হ্যাঁ"}},"tomb":{"label":"ধরন"},"tourism":{"label":"ধরন"},"tower/construction":{"label":"মেরামত"},"tower/platforms":{"placeholder":"১, ২, ৩..."},"tower/type":{"label":"ধরন"},"townhall/type":{"label":"ধরন"},"trade":{"label":"ধরন"},"traffic_calming":{"label":"ধরন"},"traffic_signals":{"label":"ধরন"},"traffic_signals/sound":{"options":{"no":"না","yes":"হ্যাঁ"}},"transformer":{"label":"ধরন"},"trench":{"label":"ধরন"},"tunnel":{"label":"ধরন","placeholder":"পূর্বনির্ধারিত"},"tunnel_combo":{"label":"ধরন"},"two_sided":{"options":{"undefined":"না","yes":"হ্যাঁ"}},"usage_rail":{"options":{"tourism":"পর্যটন"}},"utility":{"options":{"water":"জল"}},"valve":{"label":"ধরন"},"vehicles":{"options":{"monorail":"মনোরেল","subway":"ভূতলপথ","tram":"ট্রাম"}},"vending":{"options":{"fuel":"জ্বালানি","water":"পানীয় জল"}},"wall":{"label":"ধরন"},"water":{"label":"ধরন"},"water_source":{"options":{"pond":"পুকুর","river":"নদী","stream":"পানিস্রোত"}},"waterway":{"label":"ধরন"},"website":{"label":"ওয়েবসাইট"},"wetland":{"label":"ধরন"},"wheelchair":{"options":{"no":"না","yes":"হ্যাঁ"}},"wikipedia":{"label":"উইকিপিডিয়া"},"windings":{"placeholder":"১, ২, ৩..."},"windings/auto":{"options":{"no":"না","yes":"হ্যাঁ"}}},"presets":{"address":{"name":"ঠিকানা"},"aeroway/aerodrome":{"name":"বিমানবন্দর"},"aeroway/helipad":{"name":"হেলিপ্যাড"},"amenity":{"name":"আমেনিটি"},"amenity/arts_centre":{"name":"শিল্প কেন্দ্র"},"amenity/atm":{"name":"এটিএম"},"amenity/bank":{"name":"ব্যাংক"},"amenity/bar":{"name":"পানশালা"},"amenity/bench":{"name":"বেঞ্চ"},"amenity/bicycle_parking":{"name":"সাইকেল পার্ক করার জায়গা"},"amenity/bicycle_rental":{"name":"সাইকেল ভাড়া নেয়া"},"amenity/cafe":{"name":"ক্যাফে"},"amenity/car_rental":{"name":"গাড়ি ভাড়া"},"amenity/cinema":{"name":"সিনেমা"},"amenity/drinking_water":{"name":"পানীয় জল"},"amenity/embassy":{"name":"দুতাবাস"},"amenity/fast_food":{"name":"ফাস্টফুড"},"amenity/fire_station":{"name":"দমকল"},"amenity/fountain":{"name":"ঝর্না"},"amenity/fuel":{"name":"গ্যাস স্টেশন"},"amenity/grave_yard":{"name":"কবরখানা"},"amenity/library":{"name":"পাঠাগার"},"amenity/marketplace":{"name":"বাজার"},"amenity/place_of_worship":{"name":"প্রার্থনাস্থল"},"amenity/place_of_worship/buddhist":{"name":"বৌদ্ধ মন্দির"},"amenity/police":{"name":"পুলিশ"},"amenity/post_office":{"name":"ডাকঘর"},"amenity/pub":{"name":"সরাইখানা"},"amenity/restaurant":{"name":"রেস্তোরাঁ"},"amenity/shelter":{"name":"ছাউনি"},"amenity/telephone":{"name":"টেলিফোন"},"amenity/theatre":{"name":"থিয়েটার"},"amenity/townhall":{"name":"টাউন হল"},"area":{"name":"এলাকা"},"barrier/entrance":{"name":"দ্বার"},"barrier/fence":{"name":"বেড়া"},"barrier/gate":{"name":"ফটক"},"barrier/wall":{"name":"দেয়াল"},"boundary":{"name":"সীমানা"},"boundary/administrative":{"name":"প্রশাসনিক সীমানা"},"building":{"name":"দালান"},"building/commercial":{"name":"বানিজ্যিক ভবন"},"building/garage":{"name":"গ্যারেজ"},"building/house":{"name":"বাড়ি"},"building/hut":{"name":"কুড়েঘর"},"building/industrial":{"name":"শিল্পায়িত ভবন"},"building/residential":{"name":"আবাসিক ভবন"},"building_point":{"name":"দালান"},"emergency/phone":{"name":"জরুরি ফোন"},"highway/crossing":{"name":"ক্রসিং"},"highway/cycleway":{"name":"সাইকেলের রাস্তা"},"highway/footway":{"name":"ফুটপাত"},"highway/motorway":{"name":"মোটরওয়ে"},"highway/path":{"name":"পথ"},"highway/primary":{"name":"প্রাথমিক রাস্তা"},"highway/residential":{"name":"আবাসিক রাস্তা"},"highway/road":{"name":"অজানা রাস্তা"},"highway/secondary":{"name":"দ্বিতীয় স্তরের রাস্তা"},"highway/service":{"name":"সার্ভিস রোড"},"highway/service/alley":{"name":"গলি"},"highway/steps":{"name":"সিঁড়ি"},"highway/tertiary":{"name":"প্রশাখা রাস্তা"},"highway/traffic_signals":{"name":"ট্রাফিক সংকেত"},"highway/trunk":{"name":"ট্রাঙ্ক রোড"},"historic":{"name":"ঐতিহাসিক জায়গা"},"historic/castle":{"name":"প্রাসাদ"},"historic/memorial":{"name":"স্মরণচিহ্ন"},"historic/monument":{"name":"স্মৃতিস্তম্ভ"},"historic/ruins":{"name":"ধ্বংসাবশেষ"},"landuse/cemetery":{"name":"কবরখানা"},"landuse/farmyard":{"name":"খামার"},"landuse/grass":{"name":"ঘাস"},"landuse/meadow":{"name":"তৃণক্ষেত্র"},"landuse/orchard":{"name":"ফলের বাগান"},"landuse/pond":{"name":"পুকুর"},"landuse/quarry":{"name":"খনি"},"landuse/reservoir":{"name":"জলাধার"},"landuse/vineyard":{"name":"আঙুরখেত"},"leisure/garden":{"name":"বাগান"},"leisure/golf_course":{"name":"গল্ফ মাঠ"},"leisure/park":{"name":"উদ্যান"},"leisure/pitch/american_football":{"name":"মার্কিন ফুটবল মাঠ"},"leisure/pitch/basketball":{"name":"বাস্কেটবল কোর্ট"},"leisure/pitch/soccer":{"name":"ফুটবল মাঠ"},"leisure/pitch/tennis":{"name":"টেনিস কোর্ট"},"leisure/pitch/volleyball":{"name":"ভলিবল মাঠ"},"leisure/playground":{"name":"খেলার মাঠ"},"leisure/stadium":{"name":"স্টেডিয়াম"},"leisure/swimming_pool":{"name":"সুইমিং পুল"},"line":{"name":"রেখা"},"man_made/lighthouse":{"name":"বাতিঘর"},"man_made/pier":{"name":"জাহাজঘাটা"},"man_made/pipeline":{"name":"নল"},"man_made/tower":{"name":"মিনার"},"man_made/water_tower":{"name":"জল স্তম্ভ"},"natural/bay":{"name":"উপসাগর"},"natural/beach":{"name":"সৈকত"},"natural/coastline":{"name":"তটরেখা"},"natural/glacier":{"name":"হিমবাহ"},"natural/grassland":{"name":"তৃণভুমি"},"natural/heath":{"name":"স্বাস্থ্য"},"natural/peak":{"name":"চূড়া"},"natural/spring":{"name":"বসন্ত"},"natural/tree":{"name":"গাছ"},"natural/water":{"name":"জল"},"natural/water/lake":{"name":"হ্রদ"},"natural/water/pond":{"name":"পুকুর"},"natural/water/reservoir":{"name":"জলাধার"},"natural/wetland":{"name":"জলাজমি"},"office":{"name":"কার্যালয়"},"office/diplomatic/embassy":{"name":"দুতাবাস"},"office/ngo":{"name":"এনজিও অফিস"},"office/physician":{"name":"চিকিত্সক"},"office/telecommunication":{"name":"টেলিকম অফিস"},"place":{"name":"জায়গা"},"place/city":{"name":"শহর"},"place/island":{"name":"দ্বীপ"},"place/locality":{"name":"অঞ্চল"},"place/square":{"name":"বর্গাকৃতি"},"place/town":{"name":"উপনগর"},"place/village":{"name":"গ্রাম"},"point":{"name":"বিন্দু"},"railway/abandoned":{"name":"পরিত্যক্ত রেলপথ"},"railway/disused":{"name":"অব্যবহৃত রেলপথ"},"railway/subway_entrance":{"name":"ভূতলপথ দ্বার"},"relation":{"name":"সম্পর্ক"},"shop":{"name":"দোকান"},"shop/bakery":{"name":"বেকারি"},"shop/bicycle":{"name":"সাইকেলের দোকান"},"shop/boutique":{"name":"বুটিক"},"shop/butcher":{"name":"কসাই"},"shop/car":{"name":"গাড়ির ডিলারশিপ"},"shop/car_parts":{"name":"গাড়ির যন্ত্রাংশের দোকান"},"shop/car_repair":{"name":"গাড়ি মেরামতের দোকান"},"shop/clothes":{"name":"জামাকাপড়ের দোকান"},"shop/computer":{"name":"কম্পিউটারের দোকান"},"shop/department_store":{"name":"ডিপার্টমেন্ট স্টোর"},"shop/doityourself":{"name":"নিজে করুন স্টোর"},"shop/electronics":{"name":"ইলেকট্রনিক্স-এর দোকান"},"shop/florist":{"name":"ফুল ব্যবসায়ী"},"shop/furniture":{"name":"আসবাবপত্রের দোকান"},"shop/gift":{"name":"উপহারের দোকান"},"shop/mall":{"name":"মল"},"shop/mobile_phone":{"name":"মোবাইল ফোন-এর দোকান"},"shop/music":{"name":"সঙ্গীতের দোকান"},"shop/optician":{"name":"চক্ষুরোগের চিকিত্সক"},"shop/shoes":{"name":"জুতোর দোকান"},"shop/sports":{"name":"খেলার সামগ্রির দোকান"},"shop/supermarket":{"name":"সুপারমার্কেট"},"shop/toys":{"name":"খেলনার দোকান"},"tourism/attraction":{"name":"পর্যটক আকর্ষণ"},"tourism/guest_house":{"name":"অতিথিশালা"},"tourism/hostel":{"name":"ছাত্রাবাস"},"tourism/hotel":{"name":"হোটেল"},"tourism/information":{"name":"তথ্য"},"tourism/motel":{"name":"মোটেল"},"tourism/museum":{"name":"প্রদর্শনশালা"},"tourism/picnic_site":{"name":"পিকনিক-এর জায়গা"},"tourism/theme_park":{"name":"থিম পার্ক"},"tourism/zoo":{"name":"চিড়িয়াখানা"},"type/boundary":{"name":"সীমানা"},"type/boundary/administrative":{"name":"প্রশাসনিক সীমানা"},"type/waterway":{"name":"পানিপথ"},"waterway/canal":{"name":"খাল"},"waterway/dam":{"name":"বাঁধ"},"waterway/drain":{"name":"নালা"},"waterway/river":{"name":"নদী"},"waterway/stream":{"name":"পানিস্রোত"}}}}}
\ No newline at end of file
diff --git a/dist/translations/bo.json b/dist/translations/bo.json
deleted file mode 100644
index 1f34dbe1..00000000
--- a/dist/translations/bo.json
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "bo": {}
-}
\ No newline at end of file
diff --git a/dist/translations/bo.min.json b/dist/translations/bo.min.json
deleted file mode 100644
index ae37839c..00000000
--- a/dist/translations/bo.min.json
+++ /dev/null
@@ -1 +0,0 @@
-{"bo":{}}
\ No newline at end of file
diff --git a/dist/translations/br.json b/dist/translations/br.json
index fc17d882..8cb3f5eb 100644
--- a/dist/translations/br.json
+++ b/dist/translations/br.json
@@ -21,13 +21,13 @@
"name": "Hentoùigoù"
},
"category-playground": {
- "name": "Dafar porzh-c'hoari"
+ "name": "Dafar c'hoari"
},
"category-rail": {
"name": "Hentoù-houarn"
},
"category-restriction": {
- "name": "Elfennoù bevennet"
+ "name": "Elfennoù bevenniñ"
},
"category-road_major": {
"name": "Hentoù pennañ"
@@ -41,6 +41,9 @@
"category-route": {
"name": "Elfennoù-hent"
},
+ "category-utility": {
+ "name": "Rouedadoù dasparzh..."
+ },
"category-water": {
"name": "Ledennadoù dour"
},
@@ -50,17 +53,28 @@
},
"fields": {
"access": {
- "label": "Aotren ar moned",
+ "label": "Aotren moned",
"options": {
"customers": {
+ "description": "Moned aotreet d'ar pratikoù hepken pa erruont",
"title": "Pratikoù"
},
+ "designated": {
+ "description": "Moned aotreet hervez panelloù pe lezennoù lec'hel"
+ },
"destination": {
"title": "Pal"
},
+ "dismount": {
+ "description": "Moned aotreet met ret eo d'an dremenidi diskenn"
+ },
"no": {
+ "description": "Moned berzet d'an dud diavaez",
"title": "Difennet"
},
+ "permissive": {
+ "title": "Moned damasantet"
+ },
"permit": {
"title": "Aotre"
},
@@ -92,6 +106,7 @@
"options": {
"customers": "Pratikoù nemetken",
"no": "Hini ebet",
+ "permissive": "Moned damasantet",
"permit": "Nemet gant un aotre",
"private": "Prevez",
"unknown": "Dianav",
@@ -121,6 +136,8 @@
"address": {
"label": "Chomlec'h",
"placeholders": {
+ "block_number": "Niverenn ar bloc'h",
+ "block_number!jp": "Bloc'h niver",
"city": "Kêr",
"city!jp": "Kêr/Kêriadenn/Karter arbennik Tokyo",
"city!vn": "Kêr/Kêriadenn",
@@ -136,22 +153,27 @@
"housenumber": "123",
"housenumber!jp": "Niver ar savadur",
"neighbourhood": "Karter",
- "neighbourhood!jp": "Chōme/Aza/Koaza",
+ "neighbourhood!jp": "Machi/Chōme/Aza/Koaza",
+ "place": "Lec'h",
"postcode": "Kod-post",
"province": "Proviñs",
"province!cn": "Proviñs/Kumun/Rannvro Emren/Rannvro Velestradurel Arbennik",
"province!jp": "Prefeti",
"quarter": "Ranngêr",
- "quarter!jp": "Ōaza/Machi",
+ "quarter!jp": "Ōaza (karter)",
"state": "Stad",
"street": "Straed",
"subdistrict": "Isdistrig",
"subdistrict!vn": "Karter/Kumun/Kêriadenn",
"suburb": "Bannlev",
- "suburb!jp": "Karter",
+ "suburb!jp": "Karter pe bastell-vro (政令市)",
+ "town": "Kêr",
"unit": "Unanenn"
},
- "terms": "chomlec'h"
+ "terms": "chomlec'h,adres"
+ },
+ "advertising": {
+ "label": "Seurt"
},
"aerialway": {
"label": "Seurt"
@@ -164,7 +186,11 @@
"exit": "Ermaez"
}
},
+ "aerialway/bubble": {
+ "label": "Goloet/toet"
+ },
"aerialway/capacity": {
+ "label": "Barregezh (dre eurvezh)",
"placeholder": "500, 2500, 5000..."
},
"aerialway/duration": {
@@ -196,6 +222,18 @@
"label": "Aerreizherezh",
"terms": "aerreizherezh,aerreizhañ"
},
+ "aircraft/type": {
+ "label": "Seurt",
+ "options": {
+ "glider": "Plaverez",
+ "helicopter": "Biñsaskell",
+ "military": "Milour"
+ }
+ },
+ "alt_name": {
+ "label": "Anv all",
+ "terms": "anv all,anv alternativel"
+ },
"amenity": {
"label": "Seurt"
},
@@ -208,6 +246,23 @@
"animal_shelter": {
"label": "Evit loened"
},
+ "archaeological_site": {
+ "label": "Seurt",
+ "options": {
+ "baths": "Kibelldi",
+ "city": "Kêr istorel",
+ "crannog": "Crannóg",
+ "enclosure": "Kloz",
+ "fortification": "Kreñvvoger",
+ "megalith": "Meurvaen",
+ "necropolis": "Bered-veur",
+ "petroglyph": "Engravadur maen",
+ "roman_circus": "Sirk roman",
+ "roman_villa": "Kenkiz roman",
+ "settlement": "Lec'hienn istorel",
+ "tumulus": "Krugell"
+ }
+ },
"architect": {
"label": "Tisavour",
"terms": "tisavour,savour,arkitektour,tisavourez,savourez,arkitektourez"
@@ -215,35 +270,117 @@
"area/highway": {
"label": "Seurt"
},
+ "armrest": {
+ "label": "Brenkoù",
+ "options": {
+ "no": "Brenk ebet",
+ "undefined": "Dianav"
+ }
+ },
"artist": {
"label": "Arzour"
},
"artwork_type": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "bust": "Korf-bras",
+ "graffiti": "Grafiti",
+ "installation": "Staliadur arzel",
+ "mosaic": "Marelladur",
+ "mural": "Murlivadur",
+ "painting": "Livadur",
+ "sculpture": "Kizelladur",
+ "statue": "Delwenn",
+ "tilework": "Karrellerezh"
+ }
+ },
+ "athletics_pitch": {
+ "label": "Darvoud",
+ "options": {
+ "discus_throw": "Bannañ ar bladenn",
+ "hammer_throw": "Bannañ horzh",
+ "high_jump": "Lammat a-serzh",
+ "javelin_throw": "Bannañ goaf",
+ "long_jump": "Lammat a-hed",
+ "pole_vault": "Lammat gant ar berchenn",
+ "shot_put": "Bannañ ar pouez",
+ "triple_jump": "Trilamm"
+ }
+ },
+ "athletics_track": {
+ "label": "Darvoud",
+ "options": {
+ "javelin_throw": "Bannañ goaf",
+ "long_jump": "Lammat a-hed",
+ "pole_vault": "Lammat gant ar berchenn",
+ "running": "Redek",
+ "sprint": "Sprint",
+ "steeplechase": "Redadeg-skoilhoù / steeple",
+ "triple_jump": "Trilamm"
+ }
},
"atm": {
"label": "Bilhedaouer"
},
"attraction": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "amusement_ride": "Manej",
+ "animal": "Liorzhig-loened",
+ "big_wheel": "Rod vras",
+ "bumper_car": "Kirri tos-tos",
+ "bungee_jumping": "Lammat gant ur stirenn",
+ "carousel": "Kezeg-koad",
+ "kiddie_ride": "Manej evit bugale",
+ "maze": "Milendall",
+ "pirate_ship": "Lestr morlaeron",
+ "roller_coaster": "Karr sav-disav",
+ "train": "Trenig",
+ "water_slide": "Ruz-revr-dour"
+ }
},
"automated": {
"label": "Emgefreek"
},
"baby_feeding": {
+ "label": "Takad magañ babigoù",
"options": {
"no": "Hini ebet"
- }
+ },
+ "terms": "magañ,babigoù,takad,tachenn,tachad,lec'h,bronnañ,reiñ bronn"
+ },
+ "baby_seat": {
+ "label": "Kador vabigoù"
},
"backcountry": {
- "label": "Ski louarn"
+ "label": "Ski louarn",
+ "terms": "kador,sez,babigoù,bugale,kador vugale,kador-vugale,kador-vabigoù,babiged"
+ },
+ "backrest": {
+ "label": "Kein"
},
"bar": {
"label": "Tavarn",
- "terms": "tavarn,tavarnig,ostaleri"
+ "terms": "tavarn,tavarnig,ostaleri,bar"
},
"barrier": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "bollard": "Post",
+ "chain": "Chadenn",
+ "city_wall": "Moger-dro",
+ "ditch": "Kleuz",
+ "entrance": "Mont-tre",
+ "fence": "Kloued",
+ "gate": "Porrastell ",
+ "guard_rail": "Aspled",
+ "hedge": "Garzh",
+ "kerb": "Rizenn ar riblenn-straed",
+ "retaining_wall": "Moger-harp",
+ "stile": "Skalier",
+ "turnstile": "Draf-tro",
+ "wall": "Moger"
+ }
},
"barrier_planter": {
"label": "Harz",
@@ -253,14 +390,26 @@
}
},
"basin": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "evaporation": "Poull-aezhennañ",
+ "infiltration": "Poull-ensilañ",
+ "retention": "Poull-kronniañ"
+ }
},
"bath/type": {
- "label": "Arbennigezh"
+ "label": "Arbennigezh",
+ "options": {
+ "hammam": "Hammam",
+ "hot_spring": "Mammenn domm",
+ "lake": "Lenn",
+ "onsen": "Onsen"
+ }
},
"beauty": {
"label": "Servijoù",
"options": {
+ "cosmetics": "Porfumerezh",
"spa": "Spa-deiz",
"tanning": "Rouzañ",
"waxing": "Divleviñ dre gloar"
@@ -274,11 +423,21 @@
"label": "Seurt",
"options": {
"building": "En ur savadur",
+ "lockers": "Kombodoù hiniennel",
"shed": "Loch serret"
}
},
+ "bicycle_road": {
+ "label": "Straed evit marc'hoù-houarn",
+ "options": {
+ "undefined": "Ket",
+ "yes": "Ya"
+ },
+ "terms": "straed evit marc'hoù-houarn,marc'hoù-houarn,straed,hent,roudenn,hentig,gwenodenn,marc'h-houarn,belo,beloioù,divrodeg,divrodegoù"
+ },
"bin": {
- "label": "Poubellenn"
+ "label": "Poubellenn",
+ "terms": "lastez,pod,pod-lastez,poubellenn"
},
"blind": {
"label": "Moned an dud dall",
@@ -287,47 +446,144 @@
"no": "Ket",
"yes": "Ya"
},
- "terms": "moned an dud dall,moned ar re zall"
+ "terms": "moned an dud dall,moned ar re zall,dall,moned"
},
"blood_components": {
"options": {
- "plasma": "plasma"
+ "plasma": "plasma",
+ "platelets": "plaketennoù",
+ "stemcells": "standilhon kellig diazez"
}
},
"board_type": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "art": "Arz",
+ "astronomy": "Steredoniezh",
+ "geology": "Douarouriezh",
+ "history": "Istor",
+ "nature": "Natur",
+ "notice": "Panell skritellañ",
+ "plants": "Plant",
+ "welcome_sign": "Panell degemer",
+ "wildlife": "Loened gouez"
+ }
},
"bollard": {
"label": "Seurt"
},
+ "books": {
+ "label": "Seurt levrioù",
+ "terms": "seurt levrioù"
+ },
+ "bottle": {
+ "label": "Leuniañ boutailhoù",
+ "terms": "leuniañ boutailhoù,leuniañ,boutailhad,boutailh,boutailhoù,boutailhadoù,leuniañ ar boutailhoù,leuniañ ar boutailhadoù"
+ },
"boules": {
"label": "Seurt"
},
"boundary": {
"label": "Seurt"
},
+ "branch_brand": {
+ "label": "Skourr"
+ },
"brand": {
- "label": "Merk"
+ "label": "Merk",
+ "terms": "merk,embregerezh,stal"
+ },
+ "brewery": {
+ "label": "Merkoù bier gwerzhet",
+ "terms": "bier,gwerzh,gwerzhet,gwerzhañ,merk,merkoù"
},
"bridge": {
"label": "Seurt",
"placeholder": "Dre ziouer"
},
+ "bridge/ref": {
+ "label": "Niverenn ar pont",
+ "terms": "anavezer,kod,koad anaout,niverenn,niver,pont,niverenn ar pont"
+ },
"bridge/support": {
"label": "Seurt"
},
"bridge_combo": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "aqueduct": "Pont-dour",
+ "boardwalk": "Treuzell",
+ "viaduct": "Karrbont"
+ }
},
"building": {
- "label": "Savadur"
+ "label": "Savadur",
+ "options": {
+ "apartments": "Kendi",
+ "boathouse": "Karrdi ar bigi",
+ "bunker": "Bunker",
+ "cabin": "Logell",
+ "carport": "Gwasked kirri",
+ "cathedral": "Iliz-veur",
+ "chapel": "Chapel",
+ "church": "Iliz",
+ "civic": "Aveadur publik",
+ "college": "Savadur deskadurezh-uhel",
+ "commercial": "Savadur koñvers",
+ "construction": "Savadur war ober",
+ "cowshed": "Kraou-saout",
+ "detached": "Ti distag",
+ "dormitory": "Kousklec'h ",
+ "farm": "Ti-feurm",
+ "farm_auxiliary": "Savadur atant",
+ "fire_station": "Kreizenn-sikour",
+ "garage": "Karrdi",
+ "garages": "Karrdioù",
+ "ger": "Yourt",
+ "greenhouse": "Ti-gwer",
+ "hangar": "Sanailh",
+ "hospital": "Ospital",
+ "hotel": "Leti",
+ "house": "Ti",
+ "hut": "Lochenn",
+ "industrial": "Savadur greantel",
+ "kindergarten": "Skol-vamm",
+ "manufacture": "Savadur produerezh greantel",
+ "mosque": "Moskeenn",
+ "office": "Burevioù",
+ "outbuilding": "Pourpez",
+ "pavilion": "Pavilhon",
+ "public": "Savadur foran",
+ "residential": "Savadur annez",
+ "retail": "Savadur kenwerzhel",
+ "riding_hall": "Aren marc'hegezh",
+ "roof": "Toenn",
+ "ruins": "Dismantroù",
+ "school": "Skol",
+ "semidetached_house": "Ti ambion",
+ "service": "Savadur servij",
+ "shed": "Kabanenn",
+ "stable": "Kraou-kezeg",
+ "stadium": "Stad",
+ "static_caravan": "Karavanenn",
+ "sty": "Kraou-moc'h",
+ "synagogue": "Sinagogenn",
+ "temple": "Templ",
+ "terrace": "Renkad tiez",
+ "train_station": "Ti-gar",
+ "transportation": "Savadur an treuzdougen foran",
+ "university": "Skol-veur",
+ "warehouse": "Sanailh"
+ },
+ "terms": "savadur,ti,batimant,savidigezh"
},
"building/flats": {
"placeholder": "2, 4, 6, 8..."
},
"building/levels": {
"label": "Estajoù",
- "placeholder": "2, 4, 6..."
+ "placeholder": "2, 4, 6...",
+ "terms": "estajoù,estaj,laez,solier,solieradur"
},
"building/levels/underground": {
"label": "Estajoù dindandouar",
@@ -335,7 +591,8 @@
"terms": "estajoù dindandouar"
},
"building/material": {
- "label": "Danvez"
+ "label": "Danvez",
+ "terms": "dafar,danvez,materi,danvezenn,derc'hvoud"
},
"building/part": {
"label": "Rann ur savadur"
@@ -353,12 +610,14 @@
},
"cai_scale-IT": {
"options": {
+ "E": "E: Evit baleerien",
+ "EE": "EE: Evit baleerien ampart",
"T": "T: Touristel"
},
"placeholder": "T, E, EE, …"
},
"camera/direction": {
- "label": "Tu (derezioù gant roud ar bizied)",
+ "label": "Durc'hadur (derezioù gant roud ar bizied)",
"placeholder": "45, 90, 180, 270"
},
"camera/type": {
@@ -367,59 +626,118 @@
"fixed": "Dreset"
}
},
+ "camp_site": {
+ "label": "Seurt"
+ },
"capacity": {
- "placeholder": "50, 100, 200..."
+ "label": "Barregezh",
+ "placeholder": "50, 100, 200...",
+ "terms": "dalc'had,dalc'h,plasoù,kadorioù,gobed"
},
"capacity/caravans": {
+ "label": "Plasoù kampiñ (karavanennoù / kirri-kampiñ)",
"placeholder": "10, 20, 50..."
},
"capacity/disabled_parking": {
+ "label": "Plasoù evit an dud dalc'het (TDK)",
"placeholder": "1, 2, 3..."
},
"capacity/persons": {
+ "label": "Barregezh (tud)",
"placeholder": "50, 100, 200..."
},
"capacity/tents": {
+ "label": "Plasoù (teltennoù)",
"placeholder": "10, 20, 50..."
},
"capacity_parking": {
+ "label": "Plasoù en holl",
"placeholder": "10, 20, 30..."
},
"capacity_volume": {
+ "label": "Barregezh (metr-kub)",
"placeholder": "50, 100, 200..."
},
+ "caravans": {
+ "label": "Karavanennoù / kirri-kampiñ"
+ },
"castle_type": {
"label": "Seurt",
"options": {
"castrum": "Kreñvlec'h roman",
+ "defensive": "Kastell difenn",
"fortress": "Kreñvlec'h",
"kremlin": "Kremlin",
- "palace": "Palez"
+ "manor": "Maner",
+ "palace": "Palez",
+ "shiro": "Shiro (kreñvlec'h japanat)"
}
},
+ "ceremonial_gate": {
+ "label": "Seurt"
+ },
"changing_table": {
"label": "Taol-vailhuriñ"
},
"charge_fee": {
- "placeholder": "1 EUR, 5 USD, 10 JPY…"
+ "label": "Koust",
+ "placeholder": "1 EUR, 5 USD, 10 JPY…",
+ "terms": "pegement,sammad,koust,priz"
},
"charge_toll": {
- "placeholder": "1 EUR, 5 USD, 10 JPY…"
+ "label": "Koust",
+ "placeholder": "1 EUR, 5 USD, 10 JPY…",
+ "terms": "pegement,sammad,koust,priz,tailh"
},
"check_date": {
- "placeholder": "BBBB-MM-DD"
+ "label": "Deiziad gwiriet da ziwezhañ",
+ "placeholder": "BBBB-MM-DD",
+ "terms": "deiziad gwiriet da ziwezhañ"
},
"circumference": {
"placeholder": "1m, 20cm, 30mt…"
},
+ "climbing/length": {
+ "label": "Hirder (metroù)",
+ "terms": "hirder,hirded,metr,metroù"
+ },
"clothes": {
- "label": "Dilhadoù"
+ "label": "Dilhadoù",
+ "options": {
+ "babies": "Dilhad babigoù",
+ "children": "Dilhad bugale",
+ "denim": "Dilhad e jean",
+ "fur": "Dilhad feur",
+ "hats": "Togoù",
+ "maternity": "Dilhad evit dougerezed",
+ "men": "Dilhad paotred",
+ "motorcycle": "Dilhad marc'h-tan",
+ "oversize": "Dilhadoù a vent vras",
+ "socks": "Loeroù",
+ "sports": "Dilhad sport",
+ "swimwear": "Dilhad kouronkañ",
+ "traditional": "Gwiskamantoù hengounel",
+ "underwear": "Dindan-dilhad",
+ "wedding": "Dilhad dimeziñ",
+ "women": "Dilhad merc'hed",
+ "workwear": "Dilhad labour"
+ },
+ "terms": "dilhad,gwiskamant,pourc'h,gwisk"
},
"club": {
"label": "Seurt"
},
+ "collection_times": {
+ "label": "Eurioù dastum",
+ "terms": "eurioù dastum"
+ },
"collector": {
- "label": "Ergorennoù"
+ "label": "Ergorennoù",
+ "options": {
+ "coins": "Pezhioù",
+ "comics": "Bannoù-treset",
+ "stamps": "Timbroù"
+ }
},
"colour": {
"label": "Liv",
@@ -433,16 +751,39 @@
"label": "Seurt kehentiñ",
"terms": "seurt kehentiñ"
},
+ "community_centre": {
+ "label": "Seurt",
+ "options": {
+ "community_hall": "Sal liezimplij",
+ "cultural_centre": "Kreizenn sevenadurel",
+ "family_centre": "Kreizenn diegezhel",
+ "youth_centre": "Kreizenn yaouankiz"
+ }
+ },
"construction": {
"label": "Seurt"
},
"consulate": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "consulate_general": "Koñsuldi meur",
+ "honorary_consul": "Koñsul a enor",
+ "residence": "Annez ar c'hoñsul",
+ "yes": "Koñsuldi"
+ }
+ },
+ "contact/facebook": {
+ "label": "Anv-implijer Facebook pe URL",
+ "placeholder": "https://www.facebook.com/KoñversLec'hel",
+ "terms": "anv implijer,anv-implijer facebook,ere,liamm,url"
},
"contact/webcam": {
"label": "URL ar webcam",
"placeholder": "http://skouer.bzh/"
},
+ "content": {
+ "label": "Endalc'h"
+ },
"conveying": {
"options": {
"backward": "War-gil",
@@ -452,6 +793,9 @@
"conveying_escalator": {
"label": "Diri-ruilh"
},
+ "count": {
+ "label": "Niver a elfennoù"
+ },
"country": {
"label": "Bro"
},
@@ -462,7 +806,8 @@
"placeholder": "1, 2, 3..."
},
"covered": {
- "label": "Gwaskedet"
+ "label": "Gwaskedet",
+ "terms": "goloet,gwaskedet,gwaredet,goudoret,toet"
},
"covered_no": {
"options": {
@@ -472,12 +817,67 @@
}
},
"craft": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "basket_maker": "Frader paneroù",
+ "beekeeper": "Gwenaner",
+ "blacksmith": "Govel",
+ "boatbuilder": "Saver-bigi",
+ "bookbinder": "Koubler-levrioù",
+ "brewery": "Breserezh",
+ "builder": "Mañsoner",
+ "carpenter": "Kalvez",
+ "caterer": "Tineller pretiour",
+ "chimney_sweeper": "Skarzher-siminalioù",
+ "cleaning": "Servij naetaat ",
+ "clockmaker": "Horolajerezh",
+ "confectionery": "Koñfizer",
+ "distillery": "Strilherezh",
+ "dressmaker": "Kemener",
+ "electrician": "Tredaner",
+ "gardener": "Liorzhour",
+ "glaziery": "Gweraer",
+ "grinding_mill": "Milin",
+ "handicraft": "Dornvicherour",
+ "hvac": "Paotr/plac'h an tommerezh",
+ "jeweller": "Bravigour",
+ "joiner": "Kalvez",
+ "key_cutter": "Alc'hwezer",
+ "locksmith": "Alc'hwezerezh",
+ "metal_construction": "Direr",
+ "painter": "Livour",
+ "photographer": "Luc'hskeudenner",
+ "photographic_laboratory": "Labourva luc'hskeudennerezh",
+ "plasterer": "Plastrer",
+ "plumber": "Plomer",
+ "pottery": "Poder",
+ "rigger": "Strammour",
+ "roofer": "Toer",
+ "saddler": "Dibrer",
+ "sailmaker": "Gouelier",
+ "sawmill": "Heskennerezh",
+ "scaffolder": "Saver chafodajoù",
+ "sculptor": "Kizeller",
+ "shoemaker": "Botaouer",
+ "signmaker": "Paneller",
+ "stonemason": "Bener-maen",
+ "tailor": "Kemener",
+ "tiler": "Karreller",
+ "tinsmith": "Staener",
+ "upholsterer": "Tapiser",
+ "watchmaker": "Horolajer",
+ "window_construction": "Prenestrer",
+ "winery": "Kav-gwin"
+ }
},
"crane/type": {
- "label": "Seurt gavr"
+ "label": "Seurt gavr",
+ "options": {
+ "gantry_crane": "Gavr embregata"
+ }
},
"crop": {
+ "label": "Gounidigezh",
"options": {
"asparagus": "Asperjez",
"barley": "Heiz",
@@ -498,6 +898,7 @@
"soy": "Soja",
"strawberry": "Sivi",
"sugar_beet": "Beterabez sukr",
+ "sugarcane": "Korz-sukr",
"sunflower": "Troioù-heol",
"tea": "Te",
"tobacco": "Butun",
@@ -506,7 +907,12 @@
}
},
"crossing": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "traffic_signals": "Treuzenn gant gouleier triliv",
+ "uncontrolled": "Livadurioù hepken",
+ "unmarked": "Hep livioù na gouleier heñchañ"
+ }
},
"crossing/barrier": {
"options": {
@@ -518,10 +924,21 @@
"crossing/bell": {
"label": "Kloc'h"
},
+ "crossing/island": {
+ "label": "Enezenn bod"
+ },
+ "crossing/light": {
+ "label": "Gouloù"
+ },
"crossing/markings": {
+ "label": "Livadurioù an dreuzenn",
"options": {
- "no": "N'eo ket merket",
- "pictograms": "Piktogrammoù livet"
+ "ladder": "Skeul gant barrennoù a-hed",
+ "ladder:skewed": "Skeud gant barrennoù a-dreuz",
+ "no": "N'eo ket livet",
+ "pictograms": "Piktogrammoù livet",
+ "yes": "Livadur generek",
+ "zebra": "Barrennoù a-hed"
}
},
"crossing_raised": {
@@ -533,21 +950,36 @@
"cuisine": {
"label": "Keginerezh",
"options": {
+ "african": "Afrikan",
"american": "Amerikan",
+ "arab": "Arab",
+ "argentinian": "Arc'hantinat",
"asian": "Aziat",
+ "barbecue": "Regezer",
+ "bavarian": "Bavariat",
+ "brazilian": "Brazilian",
"bubble_tea": "Bubble Tea",
"burger": "Hamburger",
"cake": "Gwastell",
+ "caribbean": "Karibek",
"chicken": "Kig-yar",
"chinese": "Sinat",
- "chocolate": "Chokolad",
"coffee_shop": "Stal-gafe",
+ "crepe": "Krampouezh",
+ "curry": "Kari",
"dessert": "Dezerzh",
"donut": "Donut",
+ "european": "Europat",
+ "filipino": "Filipinat",
"fish": "Pesk",
+ "fish_and_chips": "Fish & Chips",
"french": "Gall",
+ "fries": "Fritez",
+ "frozen_yogurt": "Yaourt skornet",
+ "georgian": "Jorjian",
"german": "Alaman",
"greek": "Gresian",
+ "hawaiian": "Hawaiiat",
"hot_dog": "Hot-Dog",
"ice_cream": "Dienn-skorn",
"indian": "Indian",
@@ -559,37 +991,80 @@
"korean": "Korean",
"lebanese": "Libanat",
"malaysian": "Malezianat",
+ "mediterranean": "Kreizdouarel",
"mexican": "Mec'hikan",
- "pankcake": "Krampouezh",
+ "middle_eastern": "Reter-nesañ",
+ "moroccan": "Marokat",
+ "oriental": "Bed ar reter",
+ "pancake": "Krampouezh",
"pasta": "Toazennoù",
+ "pastry": "Pastezerezhioù",
+ "persian": "Pers",
+ "peruvian": "Perouat",
"pizza": "Pizza",
"polish": "Polonat",
"portuguese": "Portugalat",
+ "ramen": "Ramen",
"regional": "Rannvroel",
"russian": "Rusian",
"salad": "Saladenn",
"sandwich": "Sandwich",
+ "sausage": "Silzig",
"seafood": "Boued mor",
+ "soup": "Soubenn",
"spanish": "Spagnolat",
"sushi": "Sushi",
"taiwanese": "Taiwanat",
+ "tapas": "Tapas",
+ "tea": "Te",
+ "tex-mex": "Tex-Mex",
"thai": "Thai",
"turkish": "Turkat",
- "vietnamese": "Vietnamat"
- }
+ "ukrainian": "Ukrainat",
+ "vietnamese": "Vietnamat",
+ "western": "Bed ar c'hornôg",
+ "wings": "Eskell yar"
+ },
+ "terms": "boued,gastronomiezh,keginañ,keginerezh,bouedoniezh"
},
"currency_multi": {
- "label": "Seurt moneiz"
+ "label": "Seurt moneiz",
+ "terms": "seurt,moneiz"
},
"cutting": {
"label": "Seurt",
"placeholder": "Dre ziouer"
},
+ "cycle_barrier": {
+ "label": "Seurt"
+ },
+ "cycle_barrier/installation": {
+ "label": "Staliadur",
+ "options": {
+ "fixed": "Dreset"
+ }
+ },
"cycle_network": {
"label": "Rouedad"
},
"cycleway": {
- "label": "Hent marc'h-houarn"
+ "label": "Hent marc'h-houarn",
+ "options": {
+ "lane": {
+ "title": "Hent marc'h-houarn standard"
+ },
+ "no": {
+ "description": "Hent marc'h-houarn ebet",
+ "title": "Hini ebet"
+ },
+ "track": {
+ "title": "Roudenn marc'h -houarn"
+ }
+ },
+ "types": {
+ "cycleway:left": "Tu kleiz",
+ "cycleway:right": "Tu dehou"
+ }
},
"date": {
"label": "Deiziad"
@@ -598,36 +1073,55 @@
"label": "Lec'hiadur resis"
},
"delivery": {
- "label": "Degasadenn"
+ "label": "Degasadenn",
+ "terms": "degas,degasadenn,degasadennoù"
+ },
+ "denomination": {
+ "label": "Kredenn",
+ "terms": "kredenn,relijion,feiz"
+ },
+ "denotation": {
+ "label": "Talvoudegezh",
+ "terms": "talvoudegezh"
},
"departures_board": {
"options": {
"no": "Hini ebet",
+ "realtime": "Amzer wirion",
"timetable": "Implij-amzer",
"yes": "Ya"
}
},
+ "depot": {
+ "label": "Seurt"
+ },
"depth": {
"label": "Donder (metroù)"
},
"description": {
- "label": "Deskrivadur"
+ "label": "Deskrivadur",
+ "terms": "deskrivadur,deskrivadenn,taolennadur,diskrivadur,diskrivadenn,diverradur,diverradenn,berrskrid"
},
"destination": {
"label": "Palioù"
},
+ "destination_waterway": {
+ "label": "Pal"
+ },
"devices": {
"label": "Benvegoù",
"placeholder": "1, 2, 3..."
},
"diameter": {
"label": "Treuzkiz",
- "placeholder": "5mm, 10cm, 15mt…"
+ "placeholder": "5mm, 10cm, 15mt…",
+ "terms": "diametr,treuzkiz"
},
"diameter_crown": {
"placeholder": "4 m, 9', …"
},
"diet_multi": {
+ "label": "Seurt reol-voued",
"options": {
"gluten_free": "Dic'hluten",
"halal": "Halal",
@@ -636,18 +1130,34 @@
"pescetarian": "Debrer pesk",
"vegan": "Vegan",
"vegetarian": "Vejetarian"
- }
+ },
+ "terms": "boued,rejim,reol-voued,reol voued"
},
"diplomatic": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "consulate": "Koñsuldi",
+ "embassy": "Kannati",
+ "liaison": "Burev liammañ"
+ }
},
"diplomatic/services": {
"label": "Servijoù"
},
"direction": {
- "label": "Tu (derezioù gant roud ar bizied)",
+ "label": "Durc'hadur (derezioù gant roud ar bizied)",
"placeholder": "45, 90, 180, 270"
},
+ "direction_cardinal-US-CA-NZ": {
+ "label": "War-zu",
+ "options": {
+ "east": "War-zu ar Reter",
+ "north": "War-zu an Norzh",
+ "south": "War-zu ar Su",
+ "west": "War-zu ar C'hornôg"
+ },
+ "terms": "tu,war-zu,da,da belec'h,bleinadur,etrezek,war-du,tuadur,sturiadur,durc'hadur"
+ },
"direction_clock": {
"label": "War-zu",
"options": {
@@ -668,11 +1178,12 @@
"display": {
"options": {
"digital": "Niverek",
- "sundial": "Horolaj-heol"
+ "sundial": "Kadran"
}
},
"distance": {
- "label": "Pellder"
+ "label": "Hed",
+ "terms": "hed,pellder"
},
"disused/amenity": {
"label": "Seurt"
@@ -686,39 +1197,86 @@
"dock": {
"label": "Seurt"
},
+ "dock/height": {
+ "label": "Uhelder a c'hae (metroù)",
+ "terms": "kar,uhelded,uhelder,uhelder ar c'hae,uhelded ar c'hae"
+ },
+ "dock/width": {
+ "label": "Ledander ar c'hae (metroù)",
+ "terms": "ledander ar c'hae,ledanded ar c'hae,ledanded,ledander,kae"
+ },
"dog": {
"label": "Chas",
"options": {
"leashed": "Dalc'het en o roll nemetken",
"no": "Difennet",
+ "unleashed": "Roll-chas diret",
"yes": "Aotreet"
}
},
+ "dog_check": {
+ "label": "Azasaet d'ar chas",
+ "terms": "chas,ki,kon,ar c'hon,evit ar chas,azasaet d'ar chas,d'ar c'hon"
+ },
"door": {
"label": "Dor"
},
+ "door/height": {
+ "label": "Uhelder an nor (metroù)",
+ "terms": "uhelder an nor,uhelded an nor"
+ },
+ "door/width": {
+ "label": "Ledander an nor (metroù)",
+ "terms": "ledander an nor,ledanded an nor,led an nor"
+ },
"door_type": {
"label": "Seurt"
},
"drink_multi": {
"label": "Evajoù"
},
+ "drinking_water": {
+ "label": "Mat da evañ",
+ "terms": "mat da evañ"
+ },
+ "drinking_water_available": {
+ "label": "Dour mat da evañ da gaout",
+ "terms": "dour mat da evañ da gaout,dour,hegerz,dour mat da evañ,evabl"
+ },
"drive_through": {
- "label": "Servij \"drive\""
+ "label": "Servij \"drive\"",
+ "terms": "drive-through,drive,servij drive,servij \"drive\",blein-ha-boued"
},
"duration": {
"label": "Padelezh",
- "placeholder": "00:00"
+ "placeholder": "00:00",
+ "terms": "amzer,pad,padelezh,e-pad,padvezh,mare"
+ },
+ "education": {
+ "label": "Seurt",
+ "options": {
+ "college": "Deskadurezh uhel",
+ "dancing_school": "Skol-dañs",
+ "driving_school": "Skol-vleinañ",
+ "kindergarten": "Skol-vamm",
+ "language_school": "Skol yezhoù",
+ "music_school": "Skol sonerezh",
+ "school": "Skol",
+ "university": "Skol-veur"
+ }
},
"ele": {
"label": "Uhelder (metroù)",
"terms": "uhelder (metroù)"
},
"electrified": {
+ "label": "Tredanañ",
"options": {
"no": "Ket",
+ "rail": "Railhoù tredanet",
"yes": "Ya (n'eo ket spisaet)"
- }
+ },
+ "terms": "tredan,tredanadur,tredanañ,elektrisite,elektrifiet"
},
"email": {
"label": "Chomlec'h postel",
@@ -732,9 +1290,15 @@
"embassy": {
"label": "Seurt",
"options": {
+ "mission": "Kannati",
+ "nunciature": "Noñsti abostolek",
+ "residence": "Annez diplomatek",
"yes": "Kannati"
}
},
+ "emergency": {
+ "label": "Mallus"
+ },
"emergency_combo": {
"label": "Seurt"
},
@@ -752,28 +1316,51 @@
"exit": "Ermaez hepken",
"garage": "Dor garrdi",
"main": "Pennañ",
+ "secondary": "A eil renk",
"service": "Servij",
+ "staircase": "Skalieroù",
"yes": "N'eo ket spisaet"
- }
+ },
+ "terms": "seurt,rizh"
+ },
+ "except": {
+ "label": "Nemedennoù"
+ },
+ "expressway-US": {
+ "label": "Hent-tizh",
+ "terms": "hent,hent-tizh,hent tizh,gourhent,hentoù"
},
"fax": {
"label": "Pelleiler",
- "placeholder": "+31 42 123 4567"
+ "placeholder": "+31 42 123 4567",
+ "terms": "fax,pelleiler,pelleilañ"
+ },
+ "fee": {
+ "label": "Da baeañ",
+ "terms": "paeañ,da baeañ"
},
"fence_type": {
"label": "Seurt"
},
+ "fhrs/id-GB": {
+ "label": "Kod-anaout FHRS (Food Hygiene Rating Scheme, R.U. hepken)",
+ "terms": "id fhrs,fhrs id,kod fhrs,anaouder fhrs,kod anaout fhrs,kod-anaout fhrs,food hygiene rating scheme"
+ },
"fire_hydrant/diameter": {
- "label": "Treuzkiz (mm, in, pe lizherennoù)"
+ "label": "Treuzkiz (mm, in, pe lizherennoù)",
+ "terms": "treuzkiz (mm,md,pe lizherennoù),treuzkiz"
},
"fire_hydrant/position": {
+ "label": "Lec'hiadur",
"options": {
+ "green": "Glasvez",
"parking_lot": "Parklec'h",
"sidewalk": "Riblenn-straed"
}
},
"fire_hydrant/pressure": {
- "label": "Gwask (bar)"
+ "label": "Gwask (bar)",
+ "terms": "gwask,moustr,(bar),bar,aerwask"
},
"fire_hydrant/type": {
"label": "Furm",
@@ -782,14 +1369,39 @@
"wall": "Moger"
}
},
+ "fire_mains": {
+ "options": {
+ "no": "Ket",
+ "yes": "Seurt dianav"
+ }
+ },
+ "fire_service_inlet": {
+ "label": "Furm",
+ "options": {
+ "underground": "Dindandouar",
+ "wall": "Moger"
+ },
+ "terms": "furm,stumm"
+ },
+ "fire_sprinkler": {
+ "options": {
+ "no": "Ket",
+ "yes": "Seurt dianav"
+ }
+ },
"fireplace": {
"label": "Oaled"
},
"fishing": {
- "label": "Pesketa"
+ "label": "Pesketa",
+ "terms": "pesketa,pesked,pesk,pesketaerez,pesketaer,pesketaerezh"
+ },
+ "fitness_station": {
+ "label": "Seurt aveadur"
},
"fixme": {
- "label": "Da reizhañ"
+ "label": "Da reizhañ",
+ "terms": "da reizhañ,da zresañ,dresañ,reizhañ,da zifaziañ,difaziañ,fix,fix me,fixme"
},
"flag/name": {
"label": "Anv ar banniel"
@@ -797,12 +1409,21 @@
"flag/type": {
"label": "Seurt banniel"
},
+ "flag/wikidata": {
+ "label": "Wikidata ar banniel"
+ },
"flashing_lights": {
"options": {
"no": "Ket",
"yes": "Ya"
}
},
+ "floating": {
+ "label": "War-neuñv"
+ },
+ "footrest": {
+ "label": "Skabell"
+ },
"ford": {
"label": "Seurt",
"placeholder": "Dre ziouer"
@@ -811,7 +1432,7 @@
"label": "Seurt"
},
"from": {
- "label": "Deus"
+ "label": "Eus"
},
"fuel": {
"label": "Esañs"
@@ -820,15 +1441,16 @@
"label": "Seurt esañs",
"options": {
"GTL_diesel": "Diesel GTL",
+ "HGV_diesel": "Diesel kirri-samm",
"LH2": "Higrogen liñvel",
"adblue": "AdBlue / AUS 32",
"biodiesel": "Biodiesel",
"cng": " Gaz naturel kenwasket (GNK)",
"diesel": "Diesel",
"e10": "Esañs E10",
+ "e5": "Esañs E5",
"e85": "Esañs E85",
"h70": "Gaz hidrogen (700 bar)",
- "lpg": "Gaz naturel liñvennet (GNL)",
"octane_100": "Gazeoul (Oktan 100)",
"octane_80": "Gazeoul (Oktan 80)",
"octane_85": "Gazeoul (Oktan 85)",
@@ -854,17 +1476,22 @@
"gender": {
"label": "Reizh",
"options": {
- "female": "Plac'h",
- "male": "Gour"
+ "female": "Merc'h",
+ "male": "Gour",
+ "unisex": "Pep den"
},
- "placeholder": "Dianav"
+ "placeholder": "Dianav",
+ "terms": "reizh,rev,jener,plac'h,paotr,merc'h,maouez,gwaz,par,parez,seks,gour,benel,gourel"
},
"generator/method": {
"options": {
"barrage": "Mordredanva",
"combustion": "Devidigezh",
+ "fission": "Rannadur nukleel",
"fusion": "Uniadur nukleel",
+ "gasification": "Gazifiañ",
"photovoltaic": "Fotovoltaeg",
+ "stream": "Mordredan (lanv ha tre)",
"thermal": "Energiezh termek an heol",
"water-pumped-storage": "Poull-stokañ",
"water-storage": "Mirlec'h",
@@ -872,13 +1499,16 @@
}
},
"generator/output/electricity": {
+ "label": "Galloudezh",
"placeholder": "50 MW, 100 MW, 200 MW..."
},
"generator/source": {
"label": "Mammenn",
"options": {
+ "battery": "Daspugner",
"biofuel": "Bevdrelosk",
"biogas": "Biogaz",
+ "biomass": "Danvez plant",
"coal": "Glaou",
"diesel": "Diesel",
"gas": "Gaz naturel",
@@ -897,9 +1527,23 @@
"generator/type": {
"label": "Seurt"
},
+ "genus": {
+ "label": "Genad",
+ "placeholder": "Acer, Platanus, Quercus …",
+ "terms": "genad,bevoniezh"
+ },
+ "gnis/feature_id-US": {
+ "label": "ID an elfenn GNIS"
+ },
"government": {
"label": "Seurt"
},
+ "grape_variety": {
+ "label": "Gouennad gwini"
+ },
+ "group_only": {
+ "label": "Strolladoù hepken"
+ },
"guest_house": {
"label": "Seurt"
},
@@ -907,12 +1551,54 @@
"label": "Ampech",
"placeholder": "1-18"
},
+ "handrail": {
+ "label": "Ramparzh"
+ },
+ "handrest": {
+ "label": "Brenk"
+ },
"hashtags": {
"label": "Hashtagoù",
"placeholder": "#skouer"
},
+ "hazard_boundary": {
+ "options": {
+ "archery_range": "Saezhoù",
+ "avalanche": "Disac'had",
+ "biohazard": "Riskl biologel",
+ "contamination": "Kontammadur kimiek",
+ "hole": "Toull",
+ "minefield": "Minoù",
+ "nuclear": "Nukleel / skinoberiant",
+ "quicksand": "Lonktraezh"
+ }
+ },
"healthcare": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "alternative": "Mezegiezh dazeilat",
+ "audiologist": "Klevedour",
+ "birthing_centre": "Gwiliouderezh",
+ "blood_bank": "Bank gwad",
+ "blood_donation": "Kreizenn reiñ gwad",
+ "clinic": "Klinikenn",
+ "dentist": "Dentour",
+ "dialysis": "Kreizenn dializenn",
+ "doctor": "Doktor",
+ "hospice": "Ospis",
+ "hospital": "Ospital",
+ "laboratory": "Arnodva dielfennadurioù mezegel",
+ "midwife": "Amiegez",
+ "nurse": "Klañvdiour/ez",
+ "occupational_therapist": "Ergoterapeutour",
+ "optometrist": "Optometrour",
+ "pharmacy": "Apotikerezh",
+ "physiotherapist": "Fizikyac'haour",
+ "podiatrist": "Podologour",
+ "psychotherapist": "Bredyac'haour",
+ "speech_therapist": "Mezeg-al-lavar",
+ "vaccination_centre": "Kreizenn vaksinañ"
+ }
},
"healthcare/speciality": {
"label": "Arbennigezhioù",
@@ -926,10 +1612,14 @@
"ayurveda": "Ayurveda",
"biochemistry": "Biokimiezh",
"biology": "Bevoniezh",
+ "blood_check": "Savadenn wad",
"cardiology": "Kalonouriezh",
"child_psychiatry": "Kreizenn vredvezegel evit ar vugale hag ar grennarded",
+ "chiropractic": "Kiropraksiezh",
+ "community": "Yec'hed foran",
"dental_oral_maxillo_facial_surgery": "Surjianerezh an dent, ar genoù hag ar javed",
"dermatology": "Kroc'henouriezh",
+ "dermatovenereology": "Kroc'hen-venerologiezh",
"diabetology": "Diabetologiezh",
"endocrinology": "Endokrinologiezh",
"gastroenterology": "Gastroenterologiezh",
@@ -942,6 +1632,8 @@
"hypnosis": "Teoghun",
"infectious_diseases": "Kleñved poreüs",
"intensive": "Prederioù askoridik",
+ "naturopathy": "Medisinerezh naturel",
+ "neonatology": "Nevezc'hanouriezh",
"nephrology": "Nefrologiezh",
"neurology": "Neurologiezh",
"neuropsychiatry": "Neuropsikiatriezh",
@@ -949,26 +1641,45 @@
"oncology": "Onkologiezh",
"ophthalmology": "Lagadouriezh",
"orthodontics": "Ortodontiezh",
+ "orthopaedics": "Surjianerezh ortopedek",
"osteopathy": "Osteopatiezh",
"otolaryngology": "Skouarn, fri & gouzoug",
+ "paediatric_surgery": "Surjianerezh pediatrek",
+ "paediatrics": "Pediatriezh",
"palliative": "Prederioù habaskaus",
"pathology": "Patologiezh",
+ "physiatry": "Mezegiezh fizikel hag azgouestaat",
"plastic_surgery": "Surjianerezh neuziañ",
+ "proctology": "Surjianerezh kolonyoulc'hel",
"psychiatry": "Psikiatriezh",
+ "pulmonology": "Pneumologiezh",
"radiology": "Radiologiezh",
+ "reiki": "Reiki",
"rheumatology": "Medisinerezh ar remm",
+ "shiatsu": "Chiatsu",
"stomatology": "Stomatologiezh",
+ "surgery": "Surjianerezh hollek",
"traditional_chinese_medicine": "Mezegiezh hengounel sinat",
+ "trauma": " Surjianerezh traomatologel",
"tuina": "Tuī ná",
+ "unani": "Medisinerezh yunani",
"urology": "Urologiezh",
"vaccination": "Vaksinadur"
}
},
+ "heating": {
+ "label": "Tommerezh"
+ },
"height": {
- "label": "Uhelded (metroù)"
+ "label": "Uhelded (metroù)",
+ "terms": "uhelder,uhelded,metr,metroù,sav,krec'h,uhelenn"
},
"height_building": {
- "label": "Uhelder ar savadur (metroù)"
+ "label": "Uhelder ar savadur (metroù)",
+ "terms": "savadur,ti,batimant,savidigezh,uhelder,uhelded,metr,metroù,sav,krec'h,uhelenn"
+ },
+ "highchair": {
+ "label": "Kador-zebriñ"
},
"highspeed": {
"label": "Tizh bras"
@@ -977,53 +1688,99 @@
"label": "Seurt"
},
"highway_cartpath": {
- "label": "Seurt roudenn"
+ "label": "Seurt roudenn",
+ "options": {
+ "service": "Hent moned"
+ }
},
"historic": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "archaeological_site": "Lec'hienn arkeologel",
+ "bomb_crater": "Krater bombezenn",
+ "boundary_stone": "Maen-harz",
+ "building": "Savadur istorel",
+ "castle": "Kastell",
+ "charcoal_pile": "Krugell c'hlaou",
+ "church": "Iliz",
+ "city_gate": "Dor kêr",
+ "citywalls": "Moger-dro",
+ "fort": "Fort istorel",
+ "manor": "Maner",
+ "memorial": "Kounlec'h",
+ "milestone": "Bonn kilometrek",
+ "millstone": "Maen-milin",
+ "mine": "Mengleuz",
+ "mine_shaft": "Mengleuz",
+ "monument": "Monumant",
+ "pillory": "Post-ar-vezh istorel",
+ "railway": "Hent-houarn",
+ "ruins": "Dismantroù",
+ "tomb": "Bez",
+ "wayside_cross": "Kalvar",
+ "wayside_shrine": "Orator",
+ "wreck": "Peñse"
+ }
},
"historic/civilization": {
"label": "Sevenadurezh istorel"
},
+ "historic/wreck/date_sunk": {
+ "label": "Deiziad e oa peñseet"
+ },
+ "historic/wreck/visible_at_high_tide": {
+ "label": "A-wel pa vez lanv"
+ },
+ "historic/wreck/visible_at_low_tide": {
+ "label": "A-wel pa vez tre"
+ },
"holding_position/type": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "runway": "Pradva"
+ }
},
"hoops": {
"placeholder": "1, 2, 4..."
},
- "horse_dressage": {
- "options": {
- "equestrian": "Ya",
- "undefined": "Ket"
- }
- },
"horse_riding": {
- "label": "Marc'hegezh",
+ "label": "Kreizenn varc'hegezh",
"options": {
"horse_riding": "Ya",
"undefined": "Ket"
}
},
"horse_scale": {
+ "label": "Diaester marc'hegezh",
"options": {
"common": "Aes: kudenn pe diaester ebet. (dre ziouer)"
},
- "placeholder": "Diaes, dañjerus"
+ "placeholder": "Diaes, dañjerus",
+ "terms": "diaester marc'hegezh,marc'hañ"
},
- "horse_stables": {
- "options": {
- "stables": "Ya",
- "undefined": "Ket"
- }
+ "hot_water": {
+ "label": "Dour zomm"
+ },
+ "house": {
+ "label": "Seurt savadur"
+ },
+ "iata": {
+ "label": "Kod aerborzh IATA"
+ },
+ "icao": {
+ "label": "Kod aerborzh ICAO"
},
"image": {
"label": "Skeudenn",
"placeholder": "https://skouer.bzh/foto.jpg",
- "terms": "skeudenn,luc'hskeudenn,imaj"
+ "terms": "skeudenn,luc'hskeudenn,imaj,foto"
},
"incline": {
"label": "Dinaou"
},
+ "indoor": {
+ "label": "En diabarzh"
+ },
"indoor_type": {
"label": "Seurt"
},
@@ -1042,10 +1799,10 @@
"no": "Ket",
"wlan": "Wifi",
"yes": "Ya"
- }
+ },
+ "terms": "wifi,internet,kenrouedad,kennask,moned"
},
"internet_access/fee": {
- "label": "Moned ouzh ar genrouedad",
"options": {
"customers": "Pratikoù nemetken",
"no": "Digoust",
@@ -1053,7 +1810,14 @@
}
},
"internet_access/ssid": {
- "label": "Anv ar rouedad Wifi"
+ "label": "Anv ar rouedad Wifi",
+ "terms": "wifi,ssid,rouedad,internet,kenrouedad,anv,anv ar rouedad,web"
+ },
+ "irrigation_pivot": {
+ "options": {
+ "pivot": "Ya",
+ "undefined": "Ket"
+ }
},
"junction_line": {
"options": {
@@ -1061,14 +1825,30 @@
"roundabout": "Kroashent-tro"
}
},
+ "kerb": {
+ "label": "Bord an trotouer",
+ "options": {
+ "no": {
+ "title": "Ket"
+ },
+ "yes": {
+ "title": "Ya"
+ }
+ },
+ "terms": "bord,riblenn,riblenn-straed,trotouer,bevenn,bord an trotoer,bord an trotouer,rizenn an trotouer,bord ar riblenn-straed"
+ },
"kerb/height": {
"label": "Uhelder"
},
+ "kerb/kerb_barrier": {
+ "label": "Seurt"
+ },
"kitchen": {
- "label": "Kegin"
+ "label": "Kegin",
+ "terms": "kegin,kuizin"
},
"kneipp_water_cure_multi": {
- "label": "Seurt diazad"
+ "label": "Seurt oglennoù"
},
"label": {
"label": "Label"
@@ -1084,54 +1864,95 @@
},
"lanes": {
"label": "Forzhioù",
- "placeholder": "1, 2, 3..."
+ "placeholder": "1, 2, 3...",
+ "terms": "forzhioù,forzh,hentad,hent"
},
"language_multi": {
"label": "Yezhoù"
},
"layer": {
"label": "Gwiskad",
+ "placeholder": "0",
+ "terms": "gwisk,gwiskad,gwelead,treuzfolenn"
+ },
+ "layer_1": {
"placeholder": "0"
},
"leaf_cycle": {
+ "label": "Fenologiezh an delioù",
"options": {
"deciduous": "Dibad",
"evergreen": "Padus",
"mixed": "Mesket",
"semi_deciduous": "Hanter dibad",
"semi_evergreen": "Hanter padus"
- }
+ },
+ "terms": "delienn,delioù,fenologiezh,fenologiezh an delioù"
},
"leaf_type": {
"label": "Seurt delienn",
"options": {
"leafless": "Dizelienn",
"mixed": "Mesket"
- }
+ },
+ "terms": "seurt,delienn,deil"
},
"leaf_type_singular": {
- "label": "Seurt delienn"
+ "label": "Seurt delienn",
+ "terms": "seurt,delienn,deil"
},
"leisure": {
"label": "Seurt"
},
"length": {
- "label": "Hirder (Metroù)"
+ "label": "Hirder (metroù)",
+ "terms": "hirder,hirded,metr,metroù"
+ },
+ "level": {
+ "label": "Estaj",
+ "terms": "live,estaj,solier,rez-an-douar,adraoñ"
+ },
+ "level_semi": {
+ "label": "Estajoù",
+ "terms": "liveoù,estajoù,estaj,solier,rez-an-douar,adraoñ"
},
"liaison": {
"label": "Seurt"
},
+ "lifeguard": {
+ "label": "Seurt"
+ },
+ "lifeguard_check": {
+ "label": "Mestr-neuñvier"
+ },
+ "lift_gate/type": {
+ "label": "Seurt"
+ },
"lit": {
- "label": "Sklêrijennet"
+ "label": "Sklêrijennet",
+ "terms": "sklêrijennet,gouloù,goulaouet,sklaeriet,splannet"
+ },
+ "loc_name": {
+ "label": "Anv lec'hel",
+ "terms": "anv lec'hel"
},
"location": {
- "label": "Lec'hiadur"
+ "label": "Lec'hiadur",
+ "terms": "lec'h,pelec'h,e-men,lec'hiadur"
+ },
+ "location_pool": {
+ "options": {
+ "indoor": "En diabarzh",
+ "outdoor": "En diavaez",
+ "roof": "War an doenn"
+ }
},
"lock": {
"label": "Skluz"
},
"lockable": {
- "label": "a brenn"
+ "label": "A brenn",
+ "terms": "prennabl,prennus,a brenn"
},
"locked": {
"label": "Prennet"
@@ -1142,50 +1963,178 @@
"manhole": {
"label": "Seurt"
},
+ "manufacturer": {
+ "label": "Oberour",
+ "terms": "aozer,oberour,oberiataer,farder,saver"
+ },
"map_type": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "topo": "Kartenn dopografek"
+ }
},
"mapillary": {
- "label": "ID skeudenn Mapillary"
+ "label": "ID skeudenn Mapillary",
+ "terms": "kod anaout,id,skeudenn,mapillary"
},
"marker": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "aerial": {
+ "description": "Graet evit bout gwelet diouzh an neñv.",
+ "title": "Aerel"
+ },
+ "ground": {
+ "title": "Leur"
+ },
+ "pedestal": {
+ "title": "Sichenn"
+ },
+ "plate": {
+ "title": "Plakenn"
+ },
+ "post": {
+ "title": "Peul"
+ },
+ "stone": {
+ "title": "Maen"
+ }
+ }
},
"material": {
- "label": "Danvez"
+ "label": "Danvez",
+ "options": {
+ "aluminium": "Aluminiom",
+ "brass": "Kouevr melen",
+ "brick": "Brikenn",
+ "bronze": "Arem",
+ "concrete": "Betoñs",
+ "dry_stone": "Maen dijunt",
+ "glass": "Gwer",
+ "granite": "Greunit",
+ "iron": "Houarn",
+ "limestone": "Maen-raz",
+ "marble": "Marbr",
+ "metal": "Metal",
+ "plastic": "Plastik",
+ "reinforced_concrete": "Betoñs houarnet",
+ "rock": "Roc'h",
+ "sand": "Traezh",
+ "sandstone": "Krag",
+ "soil": "Douar",
+ "steel": "Dir",
+ "stone": "Maen",
+ "wood": "Koad"
+ },
+ "terms": "dafar,danvez,materi,danvezenn,derc'hvoud"
+ },
+ "mattress": {
+ "label": "Matarasennoù da gaout"
+ },
+ "maxaxleload_bridge": {
+ "label": "Pouez uhelañ an ahel",
+ "terms": "ahel,pouez uc'hek,pouez uhelañ an ahel"
},
"maxheight": {
- "label": "Uhelder uhelañ"
+ "label": "Uhelder bevennet",
+ "terms": "uhelder bevennet,uhelder,uhelded,uc'hek,uhelañ"
+ },
+ "maxlength": {
+ "label": "Hirder bevennet",
+ "terms": "hirder,hirded,bevennet,uhelañ,uc'hek"
},
"maxspeed": {
"label": "Bevenn Tizh",
- "placeholder": "40, 50, 60..."
+ "placeholder": "40, 50, 60...",
+ "terms": "bevenn tizh,tizh,buander,herr"
},
"maxspeed/advisory": {
+ "label": "Tizh erbedet",
"placeholder": "40, 50, 60..."
},
"maxspeed/hgv": {
"label": "Bevenn tizh kirri-samm",
"placeholder": "40, 50, 60..."
},
+ "maxstay": {
+ "label": "Amzer bevennet",
+ "terms": "pad,bevennet,amzer"
+ },
"maxweight": {
- "label": "Pouez uhelañ"
+ "label": "Pouez bevennet",
+ "terms": "pouez,bevennet,uc'hek,uhelañ"
},
"maxwidth": {
- "label": "Ledander uhelañ"
+ "label": "Ledander bevennet",
+ "terms": "ledander,ledanded,bevennet,uc'hek,uhelañ"
+ },
+ "maxwidth/physical": {
+ "label": "Ledander bevennet"
},
"memorial": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "bust": "Korf-bras",
+ "cross": "Kroaz-koun",
+ "obelisk": "Obeliskenn",
+ "plaque": "Plakenn-goun",
+ "sculpture": "Kizelladur",
+ "statue": "Delwenn",
+ "stele": "Maen-koun",
+ "stolperstein": "Stolperstein",
+ "stone": "Maen",
+ "war_memorial": "Kounlec'h brezel"
+ }
+ },
+ "memorial/addr": {
+ "label": "Chomlec'h tostañ",
+ "terms": "chomlec'h tostañ,chomlec'h,tostañ,nesañ"
+ },
+ "message": {
+ "label": "Kemennad",
+ "terms": "kemenn,kemennad,kemennadenn,evezhiadenn,enskrivadenn,enskrivadur,engravadur,engravadenn,testenn"
},
"microbrewery": {
- "label": "Mikro-vreserezh"
+ "label": "Mikro-vreserezh",
+ "terms": "mikrovreserezh,breserezh,bresañ,bier,alkool,artizanel"
},
"military_service": {
- "label": "Koñje"
+ "label": "Koñje",
+ "options": {
+ "air_force": "Aerlu",
+ "army": "Arme",
+ "coast_guard": "Gward-aod",
+ "marines": "Marines",
+ "navy": "Morlu"
+ }
+ },
+ "min_age": {
+ "label": "Oad bevennet",
+ "terms": "oad,bevennet,izek,izelañ"
},
"minspeed": {
"label": "Bevenn tizh izelañ",
- "placeholder": "20, 30, 40..."
+ "placeholder": "20, 30, 40...",
+ "terms": "bevenn tizh izelañ,bevenn tizh,tizh,buander,herr,izelañ"
+ },
+ "mobile": {
+ "label": "Pellgomzer hezoug",
+ "placeholder": "+33 7 12 34 56 78",
+ "terms": "pellgomzer,pellgomz,hezoug"
+ },
+ "model/wikidata": {
+ "label": "Wikidata ar patrom",
+ "terms": "wikidata ar patrom,patrom,wikidata,wikiroadennoù"
+ },
+ "mooring": {
+ "label": "Eren",
+ "options": {
+ "commercial": "Kenwerzhel",
+ "guest": "Kouvidi",
+ "no": "Ket",
+ "private": "Prevez",
+ "yes": "Ya"
+ }
},
"mtb/scale": {
"label": "Diaester MTB",
@@ -1195,6 +2144,7 @@
"options": {
"0": "⚪ Aesañ (kelc'h gwenn)",
"1": "🟢 Aes (kelc'h gwer)",
+ "2": "🟦 Etre (karrez glas)",
"3": "◆ Diaes (romb du)",
"4": "◆◆ Diaes-tre (daou romb du)"
},
@@ -1208,18 +2158,25 @@
},
"name": {
"label": "Anv",
- "placeholder": "Anv boutin (ma'z eus unan)"
+ "placeholder": "Anv boutin (ma'z eus unan)",
+ "terms": "anv"
+ },
+ "nat_name": {
+ "label": "Anv broadel",
+ "terms": "anv broadel"
},
"natural": {
"label": "Naturel"
},
"network": {
- "label": "Rouedad"
+ "label": "Rouedad",
+ "terms": "rouedad"
},
"network/type": {
"label": "Seurt rouedad"
},
"network_bicycle": {
+ "label": "Rummad ar rouedad",
"options": {
"icn": "Etrebroadel",
"lcn": "Lec'hel",
@@ -1229,6 +2186,7 @@
"placeholder": "Lec'hel, rannvroel, broadel, etrebroadel"
},
"network_foot": {
+ "label": "Rummad ar rouedad",
"options": {
"iwn": "Etrebroadel",
"lwn": "Lec'hel",
@@ -1238,6 +2196,7 @@
"placeholder": "Lec'hel, rannvroel, broadel, etrebroadel"
},
"network_horse": {
+ "label": "Rummad ar rouedad",
"options": {
"ihn": "Etrebroadel",
"lhn": "Lec'hel",
@@ -1250,13 +2209,69 @@
"label": "Rouedad"
},
"not/name": {
- "label": "Anvioù zo n'int ket mat"
+ "label": "Anvioù direizh",
+ "terms": "anv,direizh,fall,fals,falc'h,gaou,a-dreuz,diwir"
},
"note": {
- "label": "Notenn"
+ "label": "Notenn",
+ "terms": "kemennadenn,kemenn,evezhiadenn,notenn"
+ },
+ "nudism": {
+ "label": "Noazhkorfegezh",
+ "options": {
+ "customary": "Kustum",
+ "no": "Difennet",
+ "obligatory": "Rediet",
+ "permissive": "Damasantet",
+ "yes": "Aotreet"
+ },
+ "terms": "noazh,noazhkorfegezh,naturour,naturegezh"
},
"office": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "accountant": "Kontour",
+ "adoption_agency": "Ajañs advugelañ",
+ "advertising_agency": "Ajañs bruderezh",
+ "architect": "Tisavour",
+ "association": "Burev aozadur e-maez-gouarnamant",
+ "construction_company": "Embregerezh savadurezh",
+ "coworking": "Lec'h-labourat boutin",
+ "diplomatic": "Savadur diplomatek",
+ "educational_institution": "Kreizenn stummañ",
+ "employment_agency": "Ajañs implijout",
+ "energy_supplier": "Pourvezer tredan",
+ "engineer": "Ijiner",
+ "estate_agent": "Ajañs tiez",
+ "financial_advisor": "Kuzulier-arc'hant",
+ "forestry": "Mererezh ar c'hoadoù",
+ "foundation": "Diazezadur",
+ "government": "Melestradurezh publik",
+ "graphic_design": "Grafour",
+ "insurance": "Ajañs asurañs",
+ "moving_company": "Embregerezh dilojadeg",
+ "newspaper": "Kazetenn",
+ "ngo": "Burev AMG",
+ "notary": "Noter",
+ "physician": "Medisin",
+ "political_party": "Burev strollad politikel",
+ "private_investigator": "Burev enklasker prevez",
+ "quango": "Burev hanter-AMG",
+ "religion": "Burev relijiel",
+ "research": "Aozadur enklask skiantel",
+ "security": "Ajañs surentez prevez",
+ "surveyor": "Mentoniour",
+ "tax_advisor": "Burev kuzulier kemedel",
+ "telecommunication": "Ajañs pellgehenterezh",
+ "therapist": "Yac'hadour",
+ "travel_agent": "Ajañs-veaj",
+ "union": "Burev sindikad",
+ "water_utility": "Ajañs an dour"
+ }
+ },
+ "official_name": {
+ "label": "Anv ofisiel",
+ "terms": "anv ofisiel,anv kefridiel"
},
"oneway": {
"label": "Untu",
@@ -1268,7 +2283,8 @@
"terms": "untu,hent untu"
},
"oneway/bicycle": {
- "label": "Untu (marc'hoù-houarn)"
+ "label": "Untu (marc'hoù-houarn)",
+ "terms": "untu,marc'hoù-houarn,belo,beloioù,marc'h-houarn,hent untu"
},
"oneway_yes": {
"options": {
@@ -1278,12 +2294,18 @@
}
},
"opening_date": {
+ "label": "Deiziad digeriñ raktreset",
"placeholder": "BBBB-MM-DD"
},
"opening_hours": {
"label": "Eurioù",
"placeholder": "Dianav"
},
+ "opening_hours/drive_through": {
+ "label": "Eurioù digeriñ an drive",
+ "placeholder": "Memes eurioù digeriñ hag ar stal",
+ "terms": "eurioù digeriñ an drive,servij drive,drive,eurioù,digor,digeriñ,digoriñ"
+ },
"operator": {
"label": "Korvoer"
},
@@ -1298,6 +2320,9 @@
"yes": "Reoù"
}
},
+ "orientation/orientation_parking": {
+ "label": "Durc'hadur"
+ },
"par": {
"label": "Par",
"placeholder": "3, 4, 5..."
@@ -1312,9 +2337,41 @@
"parking": {
"label": "Seurt",
"options": {
- "sheds": "Lochoù",
- "surface": "A-us d'an douar",
- "underground": "Dindandouar"
+ "rooftop": {
+ "title": "Toenn"
+ },
+ "sheds": {
+ "title": "Lochoù"
+ },
+ "surface": {
+ "title": "A-us d'an douar"
+ },
+ "underground": {
+ "title": "Dindandouar"
+ }
+ }
+ },
+ "parking/side/orientation": {
+ "label": "Durc'hadur parkañ",
+ "options": {
+ "parallel": "A-stur gant ar straed"
+ },
+ "terms": "durc'hadur,tu,reteradur,tuadur",
+ "types": {
+ "parking:left:orientation": "Tu kleiz",
+ "parking:right:orientation": "Tu dehou"
+ }
+ },
+ "parking/side/parking": {
+ "label": "Parkañ",
+ "options": {
+ "no": "Ket",
+ "yes": "Ya (n'eo ket spisaet)"
+ },
+ "terms": "parkañ,parklec'h",
+ "types": {
+ "parking:left": "Tu kleiz",
+ "parking:right": "Tu dehou"
}
},
"parking_entrance": {
@@ -1324,19 +2381,25 @@
"label": "Seurt"
},
"payment_multi": {
- "label": "Seurt paeamant",
+ "label": "Doare paeañ",
"options": {
"alipay": "Alipay",
"american_express": "American Express",
+ "app": "Arload pellgomz hezoug",
"apple_pay": "Apple Pay",
+ "bancomat": "Bancomat",
+ "blik": "Blik",
+ "cards": "Kartenn-baeañ",
"cash": "Arc'hant laosk",
"cheque": "Chekenn",
"coins": "pezhioù ",
"contactless": "Paeañ hep touch",
"credit_cards": "Kartenn-gred",
+ "cryptocurrencies": "Kriptomoneiz",
"debit_cards": "Kartenn-baeañ",
"discover_card": "Discover",
"dkv": "DKV",
+ "electronic_purses": "Doug-moneiz elektronek",
"ep_easycard": "悠遊卡EasyCard",
"ep_geldkarte": "GeldKarte",
"ep_ipass": "iPASS一卡通",
@@ -1348,6 +2411,8 @@
"mastercard_contactless": "Mastercard distok",
"notes": "Bilhedoù-bank",
"paypal": "PayPal",
+ "prepaid_ticket": "Tikedenn paeet en a-raok",
+ "telephone_cards": "Kartenn bellgomz",
"unionpay": "UnionPay",
"uta": "UTA",
"v_pay": "V Pay",
@@ -1355,14 +2420,20 @@
"visa_debit": "Visa Debit",
"visa_electron": "Visa Electron",
"wechat": "WeChat Pay"
- }
+ },
+ "terms": "seurt paeamant,paeañ,seurt,paeamant,paeamantoù,doare paeamant,doare paeañ"
},
"phases": {
"placeholder": "1, 2, 3..."
},
"phone": {
"label": "Pellgomzer",
- "placeholder": "+31 42 123 4567"
+ "placeholder": "+000 0000 0000 0000",
+ "terms": "telefon,pellgomz,pellgomzer,niver,niverenn,bellgomz"
+ },
+ "picnic_table": {
+ "label": "Taol biknik",
+ "terms": "piknik,piknikañ,taol,biknikañ,biknik"
},
"pipeline": {
"label": "Seurt"
@@ -1402,6 +2473,7 @@
},
"piste/grooming_nordic": {
"options": {
+ "scooter": "Skouter/moto-erc'h",
"skating": "Skateañ"
}
},
@@ -1410,7 +2482,7 @@
"options": {
"hike": "Tro-vale",
"ice_skate": "Riklerezh",
- "playground": "Porzh-c'hoari",
+ "playground": "Tachenn-c'hoari",
"sled": "Luj",
"sleigh": "Stlejell"
}
@@ -1425,19 +2497,27 @@
"options": {
"cold_air": "Aer yen",
"cold_water": "Dour yen",
- "compressed_air": "Aer moustret",
+ "compressed_air": "Aer wasket",
"electricity": "Tredan",
- "hot_air": "Aer tomm",
+ "hot_air": "Aer domm",
"hot_water": "Dour zomm",
- "steam": "Aezhenn"
+ "steam": "Aezhenn",
+ "vacuum": "Goullonder"
}
},
"plant/output/electricity": {
"placeholder": "500 MW, 1000 MW, 2000 MW..."
},
+ "plant/source": {
+ "label": "Mammenn dredan"
+ },
"playground": {
"label": "Seurt"
},
+ "playground/theme": {
+ "label": "Tem",
+ "terms": "tem,danvez,dodenn"
+ },
"plots": {
"placeholder": "10, 20, 30..."
},
@@ -1451,30 +2531,52 @@
"label": "Deiziad ar poblañs",
"placeholder": "BBBB-MM-DD"
},
+ "portable": {
+ "label": "Heloc'h",
+ "terms": "heloc'h,hezoug,distag,loc'h-diloc'h,fiñv,war-fiñv,war vale,red"
+ },
"post": {
"label": "Chomlec'h Degasadenn"
},
+ "post_box/type": {
+ "label": "Seurt",
+ "options": {
+ "lamp": "Staget ouzh ur post",
+ "wall": "Staget ouzh ur voger"
+ },
+ "terms": "seurt,rizh"
+ },
"power": {
"label": "Seurt"
},
"preschool": {
"label": "Skol-vamm"
},
+ "produce": {
+ "label": "Trevadoù"
+ },
"product": {
- "label": "Produioù"
+ "label": "Produioù",
+ "terms": "gounid,trevad,trevadoù,boued"
},
"public_bookcase/type": {
"label": "Seurt"
},
"pump": {
+ "label": "Pomp",
"options": {
+ "manual": "Pomp dorn",
"no": "Hini ebet",
+ "powered": "Pomp emgefre",
"yes": "Ya"
}
},
"railway": {
"label": "Seurt"
},
+ "railway/position": {
+ "label": "Lec'hiadur ar bonn"
+ },
"railway/signal/direction": {
"options": {
"backward": "War-gil",
@@ -1482,16 +2584,41 @@
"forward": "War-raok"
}
},
+ "railway/track_ref": {
+ "label": "Niverenn ar forzh"
+ },
+ "ramp": {
+ "label": "Krapenn voned",
+ "options": {
+ "no": "Ket",
+ "yes": "Ya"
+ },
+ "terms": "krapenn,voned,moned,dinaou,vonet"
+ },
+ "rcn_ref": {
+ "label": "Kod marc'hoù-houarn"
+ },
"real_fire-GB-IE": {
- "label": "Gwir tan"
+ "label": "Tan gwirion",
+ "terms": "gwir,gwirion,tan"
},
"recycling_accepts": {
+ "label": "A zegemer",
"options": {
+ "batteries": "Podoù-tredan",
+ "cans": "Kanetennoù",
+ "cardboard": "Kartoñs",
"clothes": "Dilhad",
"cooking_oil": "Eoul keginañ",
+ "engine_oil": "Eoul keflusker",
+ "glass": "A bep seurt a wer (gwer-strink, prenestroù, melezourioù, h.a.)",
+ "glass_bottles": "Boutailhoù ha podoù gwer",
"green_waste": "Glasach",
"paper": "Paper",
- "plastic": "Plastik"
+ "plastic": "Plastik",
+ "plastic_bottles": "Boutailhoù plastik",
+ "scrap_metal": "Hernach",
+ "shoes": "Botoù"
}
},
"recycling_type": {
@@ -1504,37 +2631,63 @@
"ref": {
"label": "Kod anaout"
},
+ "ref/FR/siret-FR": {
+ "label": "Niverenn SIRET",
+ "terms": "siret,siren,kod,niver,niverenn"
+ },
"ref/isil": {
- "label": "Kod ISIL"
+ "label": "Kod ISIL",
+ "terms": "kod isil,isil,identifiant international normalisé pour les bibliothèques et les organismes apparentés,iso 15511,international standard identifier for libraries and related organisations"
+ },
+ "ref/linz/place_id-NZ": {
+ "label": "Kod anaout NZBG",
+ "terms": "nzgb,kod,id,anaouder,kod anaout,anaout,niver,niverenn"
+ },
+ "ref/vatin": {
+ "label": "Niverenn anaout TGO",
+ "terms": "niverenn anaout tgo,tgo,tva,niver,niverenn,kod,kod anaout"
},
"ref_disc_golf_hole": {
+ "label": "Niverenn an toull",
"placeholder": "1-18"
},
"ref_golf_hole": {
+ "label": "Niverenn an toull",
"placeholder": "1-18"
},
"ref_platform": {
- "label": "Niver ar c'hae"
+ "label": "Niverenn ar c'hae"
+ },
+ "ref_rail": {
+ "label": "Niverenn al linenn",
+ "terms": "niverenn al linenn"
},
"ref_road_number": {
- "label": "Niver an hent"
+ "label": "Niverenn an hent",
+ "terms": "niverenn an hent,kod"
},
"ref_room_number": {
- "label": "Niver ar c'hambr"
+ "label": "Niverenn ar c'hambr"
},
"ref_route": {
- "label": "Niver an hentad"
+ "label": "Niverenn an hentad",
+ "terms": "niverenn an hent,kod,anaout"
},
"ref_runway": {
+ "label": "Niverenn ar pradva",
"placeholder": "da skouer: 01L/19R"
},
"ref_stop_position": {
- "label": "Niver an arsav"
+ "label": "Niverenn an arsav"
},
"ref_taxiway": {
- "label": "Anv an hent-taksi",
+ "label": "Anv an hent-tremen",
"placeholder": "da skouer: A5"
},
+ "reg_name": {
+ "label": "Anv rannvroel",
+ "terms": "anv rannvroel"
+ },
"relation": {
"label": "Seurt"
},
@@ -1543,7 +2696,9 @@
"options": {
"bahai": "Baha'i",
"buddhist": "Boudaad",
+ "chinese_folk": "Kredenn-bobl sinat",
"christian": "Kristen",
+ "confucian": "Konfusian",
"hindu": "Hindou",
"jain": "Jain",
"jewish": "Yuzev",
@@ -1553,14 +2708,20 @@
"shinto": "Chinto",
"sikh": "Sikh",
"taoist": "Daoour",
- "tenrikyo": "Tenrikyo"
- }
+ "tenrikyo": "Tenrikyo",
+ "vietnamese_folk": "Kredenn-bobl vietnamat",
+ "voodoo": "Voudou"
+ },
+ "terms": "kredenn,feiz,relijion,hengredenn"
},
"reservation": {
"options": {
+ "no": "Nann degemeret",
"recommended": "Aliet",
- "required": "Rekis"
- }
+ "required": "Rekis",
+ "yes": "Degemeret"
+ },
+ "terms": "mirout,miradenn"
},
"residential": {
"label": "Seurt"
@@ -1568,11 +2729,50 @@
"resort": {
"label": "Seurt"
},
+ "resource": {
+ "label": "Danvez",
+ "options": {
+ "clay": "Pri",
+ "coal": "Glaou",
+ "gold": "Aour",
+ "gravel": "Grouan",
+ "iron_ore": "Kailh-houarn",
+ "limestone": "Maen-raz",
+ "peat": "Taouarc'h",
+ "sand": "Traezh"
+ }
+ },
"restriction": {
"label": "Seurt"
},
+ "restrictions": {
+ "label": "Arabat treiñ"
+ },
+ "roller_coaster/track": {
+ "label": "Seurt",
+ "options": {
+ "maintenance": {
+ "title": "Ratreañ"
+ }
+ }
+ },
"roof/colour": {
- "label": "Liv an doenn"
+ "label": "Liv an doenn",
+ "terms": "liv an doenn"
+ },
+ "roof/height": {
+ "label": "Uhelder an doenn (metroù)",
+ "terms": "uhelded,uhelder,uhelded an doenn,uhelder an doenn,uhel"
+ },
+ "roof/shape": {
+ "label": "Stumm an doenn",
+ "options": {
+ "flat": "Plat",
+ "onion": "Ognon",
+ "pyramidal": "Piramidenn",
+ "round": "Kelc'hiek"
+ },
+ "terms": "stumm an doenn,toenn,furm an doenn,stumm,furm"
},
"room": {
"label": "Seurt"
@@ -1580,17 +2780,47 @@
"rooms": {
"label": "Kambroù"
},
+ "rotor/diameter": {
+ "label": "Treuzkiz ar bannoù (metroù)",
+ "terms": "bannoù,rotor,palez,treuzkiz"
+ },
"route": {
"label": "Seurt"
},
"route_master": {
"label": "Seurt"
},
+ "royal_cypher-GB": {
+ "label": "Lizherennoù roueel",
+ "options": {
+ "CIIIR": "CIIIR (Charlez III)",
+ "EIIR": "EIIR (Elesbed II)",
+ "EVIIIR": "EVIIIR (Edouarzh VIII)",
+ "EVIIR": "EVIIR (Edouarzh VII)",
+ "GR": "GR (Jorj V)",
+ "GVIR": "GVIR (Jorj VI)",
+ "VR": "VR (Victoria)",
+ "no": "Ket",
+ "scottish_crown": "Kurunenn Bro-Skos"
+ }
+ },
"ruins": {
"label": "Seurt"
},
+ "rwn_ref": {
+ "label": "Kod ar gerzhourien"
+ },
+ "sac_scale": {
+ "options": {
+ "hiking": "T1: Bale"
+ }
+ },
"salt": {
- "label": "Holenet"
+ "label": "Holenet",
+ "terms": "holen,holenet"
+ },
+ "sample_collection": {
+ "label": "Seurt standilhonoù"
},
"screen": {
"label": "Skrammoù",
@@ -1605,6 +2835,8 @@
"seamark/beacon_lateral/category": {
"label": "Rummad",
"options": {
+ "danger_left": "Dañjer a-gleiz",
+ "danger_right": "Dañjer a-zehoù",
"port": "Babourzh",
"starboard": "Stribourzh"
}
@@ -1621,6 +2853,7 @@
"label": "Furm"
},
"seamark/beacon_lateral/system": {
+ "label": "Sistem",
"options": {
"iala-a": "IALA A",
"iala-b": "IALA B",
@@ -1630,6 +2863,8 @@
"seamark/buoy_lateral/category": {
"label": "Rummad",
"options": {
+ "danger_left": "Dañjer a-gleiz",
+ "danger_right": "Dañjer a-zehoù",
"port": "Babourzh",
"starboard": "Stribourzh"
}
@@ -1651,24 +2886,41 @@
"label": "Furm"
},
"seamark/buoy_lateral/system": {
+ "label": "Sistem",
"options": {
"iala-a": "IALA A",
"iala-b": "IALA B",
"other": "All"
}
},
+ "seamark/harbour/category_marina": {
+ "options": {
+ "marina": "Ya",
+ "marina_no_facilities": "Ket"
+ }
+ },
"seamark/mooring/category": {
"label": "Rummad"
},
"seamark/rescue_station/category": {
"options": {
"aircraft": "Aerlestr",
+ "first_aid": "Prederioù kentañ",
+ "hovercraft": "Dourruzer",
+ "lifeboat_on_mooring": "Kanod-argoll a-ere",
"radio": "Chadenn radio"
}
},
+ "seamark/type": {
+ "label": "Balizenn",
+ "terms": "balizenn,mor,dour,bag,lestr,bigi,balizenn-vor,porzh"
+ },
"seamark/wreck/category": {
"label": "Rummad"
},
+ "seasonal": {
+ "label": "Diouzh ar c'houlz"
+ },
"seats": {
"label": "Plasoù",
"placeholder": "2, 4, 6..."
@@ -1681,6 +2933,9 @@
},
"placeholder": "Ya, Ket, Nemet"
},
+ "self_service": {
+ "label": "Emservij"
+ },
"service": {
"label": "Seurt",
"options": {
@@ -1688,17 +2943,19 @@
"drive-through": "Servij \"drive\"",
"driveway": "Alez",
"emergency_access": "Moned trummadoù",
- "parking_aisle": "Plas parkañ"
+ "parking_aisle": "Alez parkañ"
}
},
"service/bicycle": {
- "label": "Servijoù marc'hhouarnerezh"
+ "label": "Servijoù marc'hhouarnerezh",
+ "terms": "belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,servijoù,stal"
},
"service/vehicle": {
"label": "Servijoù"
},
"service_rail": {
- "label": "Seurt servij"
+ "label": "Seurt servij",
+ "terms": "seurt servij"
},
"shelter": {
"label": "Goudor"
@@ -1706,11 +2963,25 @@
"shelter_type": {
"label": "Seurt"
},
+ "shoes": {
+ "label": "Botoù"
+ },
"shop": {
"label": "Seurt"
},
+ "short_name": {
+ "label": "Anv berr",
+ "terms": "anv berr"
+ },
"shower": {
- "label": "Strinkerezh"
+ "label": "Strinkerezh",
+ "terms": "strinkerezhioù,strinkerezh"
+ },
+ "side": {
+ "label": "Tu"
+ },
+ "siren/purpose": {
+ "label": "Pal"
},
"siren/type": {
"label": "Seurt",
@@ -1725,15 +2996,49 @@
"smoking": {
"label": "Butuniñ",
"options": {
- "no": "Arabat butuniñ e pep lec'h"
+ "no": "Arabat butuniñ e pep lec'h",
+ "outside": "Aotreet en diavaez",
+ "yes": "Aotreet e pep lec'h"
},
- "placeholder": "Ket, Disrannet, Ya..."
+ "placeholder": "Ket, Disrannet, Ya...",
+ "terms": "butun,butuniñ,butunat"
+ },
+ "smoothness": {
+ "options": {
+ "horrible": "Karbed treuz bro pounner",
+ "intermediate": "Rodoù: belo-kêr, kador-ruilh, c'hwil-tan"
+ },
+ "placeholder": "Rodigoù, rodoù, treuz bro..."
},
"sms": {
- "label": "SMS"
+ "label": "SMS",
+ "terms": "sms,kemenn,kemennadenn,lizher"
},
"social_facility": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "day_care": "Magouri",
+ "food_bank": "Bank boued",
+ "nursing_home": "Ti-diskuizh",
+ "shelter": "Bod"
+ }
+ },
+ "social_facility_for": {
+ "label": "Tud skoazellet",
+ "options": {
+ "child": "Bugale",
+ "drug_addicted": "Tud suj d'an drammoù",
+ "homeless": "Tud hep ti na aoz",
+ "juvenile": "Tud yaouank",
+ "migrant": "Divroidi",
+ "orphan": "Emzivaded",
+ "refugee": "Repuidi",
+ "senior": "Tud war an oad",
+ "unemployed": "Tud dilabour",
+ "veteran": "Soudarded kozh",
+ "victim": "Reuzidi torfed",
+ "woman": "Merc'hed"
+ }
},
"source": {
"label": "Mammennoù",
@@ -1741,54 +3046,102 @@
"aerial imagery": "Skeudenn-aer",
"gps": "GPS",
"local knowledge": "Gouiziegezh lec'hel",
- "osm notes": "Notennoù OpenStreetMap"
+ "osm notes": "Notennoù OpenStreetMap",
+ "streetlevel imagery": "Skeudennoù-straed",
+ "survey": "Sontadeg"
}
},
"source/population": {
"label": "Mammenn ar poblañs"
},
- "sport": {
- "label": "Sportoù"
+ "species": {
+ "label": "Spesad",
+ "placeholder": "Acer platanoides, Quercus robur, …",
+ "terms": "spesad"
},
- "sport_ice": {
+ "species/wikidata": {
+ "label": "Wikidata ar spesad",
+ "terms": "wikidata,spesad,loen,aneval"
+ },
+ "sport": {
"label": "Sportoù",
"options": {
+ "american_football": "Mell-droad amerikan",
+ "athletics": "Atleterezh",
+ "badminton": "Badminton",
+ "baseball": "Baseball",
+ "basketball": "Basket-ball",
+ "beachvolleyball": "Beach-volley",
+ "bmx": "BMX",
+ "boules": "Bouloù",
+ "canoe": "Kanoe-kaiak",
+ "chess": "Echedoù",
+ "climbing": "Krapañ",
+ "cricket": "Kriked",
"curling": "Curling",
+ "cycling": "Marc'hhouarnerezh",
+ "darts": "Birigoù",
+ "disc_golf": "Pladenn-c'holf",
+ "dog_racing": "Redadeg chas",
+ "equestrian": "Marc'hegezh",
+ "fitness": "Jiminas yac'haat",
+ "free_flying": "Bolc'haskell / deltaplaver",
+ "futsal": "Futsal",
+ "gaelic_games": "C'hoarioù gouezelek",
+ "golf": "Golf",
+ "gymnastics": "Jiminas",
+ "horse_racing": "Redadeg kezeg",
"ice_hockey": "Hockey",
"ice_skating": "Riklerezh",
- "multi": "Lies"
+ "karting": "Karting",
+ "motocross": "Motocross",
+ "motor": "Sportoù dre geflusker",
+ "multi": "Sport amstrizh",
+ "netball": "Netball",
+ "padel": "Padel",
+ "pelota": "Polot euskarat",
+ "running": "Redek",
+ "scuba_diving": "Splujañ",
+ "shooting": "Tennañ",
+ "skateboard": "Skateboard (plankenn-ruilh)",
+ "skiing": "Ski",
+ "soccer": "Mell-droad",
+ "softball": "Softball",
+ "swimming": "Neuial",
+ "table_tennis": "Tennis-taol",
+ "tennis": "Tennis",
+ "volleyball": "Volley-ball",
+ "yoga": "Yoga"
}
},
- "sport_pub": {
- "label": "Sportoù",
- "options": {
- "billiards": "Bilhard",
- "darts": "Biroùigoù"
- }
+ "sport/sport_ice": {
+ "label": "Sportoù"
},
- "sport_racing_motor": {
+ "sport/sport_pub": {
"label": "Sportoù",
- "options": {
- "karting": "Karting"
- }
+ "terms": "sport,sportoù,dudi,c'hoari"
},
- "sport_racing_nonmotor": {
- "label": "Sportoù",
- "options": {
- "bmx": "BMX",
- "cycling": "Marc'hhouarnerezh",
- "running": "Redek"
- }
+ "sport/sport_racing_motor": {
+ "label": "Sportoù"
+ },
+ "sport/sport_racing_nonmotor": {
+ "label": "Sportoù"
},
"stars": {
- "label": "Stered"
+ "label": "Stered",
+ "terms": "stered"
},
"start_date": {
"label": "Deiziad an deraouenn",
- "placeholder": "BBBB-MM-DD"
+ "placeholder": "BBBB-MM-DD",
+ "terms": "deiziad,deiz,deroù"
+ },
+ "static_caravans": {
+ "label": "Tiez heloc'h"
},
"step_count": {
- "label": "Niver a ziri"
+ "label": "Niver a ziri",
+ "terms": "niver a ziri,diri,dar,pazennoù,derez"
},
"stile": {
"label": "Seurt"
@@ -1801,23 +3154,46 @@
}
},
"street_cabinet": {
- "label": "Seurt"
+ "label": "Seurt",
+ "terms": "seurt"
},
"stroller": {
+ "label": "Aes d'ar c'harrigoù-babigoù",
"options": {
+ "limited": "Bevennet",
"no": "Ket",
"yes": "Ya"
- }
+ },
+ "terms": "aes d'ar c'harrigoù-babigoù,hegerz,karrigoù-babigoù,d'ar c'harrigoù-babigoù"
},
"structure": {
+ "label": "Frammadur",
"options": {
"bridge": "Pont",
+ "cutting": "Klaz",
+ "embankment": "Savenn-douar",
"ford": "Roudouz",
"tunnel": "Riboul"
},
+ "placeholder": "Dianav",
+ "terms": "frammadur"
+ },
+ "structure_canal": {
+ "label": "Frammadur",
+ "options": {
+ "bridge": "Pont",
+ "tunnel": "Riboul"
+ },
"placeholder": "Dianav"
},
+ "structure_power": {
+ "label": "Frammadur",
+ "options": {
+ "lattice": "Treilh"
+ }
+ },
"structure_waterway": {
+ "label": "Frammadur",
"options": {
"tunnel": "Riboul"
},
@@ -1827,40 +3203,76 @@
"label": "Seurt"
},
"subject": {
- "label": "Danvez"
+ "label": "Danvez",
+ "terms": "sujed,ergorenn"
},
"subject/wikidata": {
- "label": "Wikidata an danvez"
+ "label": "Wikidata an danvez",
+ "terms": "wikidata,danvez,sujed"
+ },
+ "substance": {
+ "label": "Danvez",
+ "options": {
+ "fuel": "Esañs",
+ "gas": "Gaz naturel",
+ "hot_water": "Dour zomm",
+ "rainwater": "Dour-glav",
+ "sewage": "Dourioù lous",
+ "water": "Dour mat da evañ"
+ }
},
"substation": {
"label": "Seurt",
"options": {
- "industrial": "Greantel"
+ "distribution": "Dasparzhañ rannvroel",
+ "industrial": "Greantel",
+ "minor_distribution": "Dasparzhañ lec'hel"
}
},
"substation_pipeline": {
"label": "Seurt",
"options": {
+ "distribution": "Dasparzhañ rannvroel",
+ "industrial": "Greantel",
+ "measurement": "Muzulioù",
+ "minor_distribution": "Dasparzhañ lec'hel",
"valve": "Begel"
}
},
+ "summit/cross": {
+ "label": "Kalvar lein ur menez",
+ "terms": "lein,lein ar menez,lein ur menez,kalvar,kroaz"
+ },
+ "supervised": {
+ "label": "Evezhiet",
+ "terms": "evezhiet,eveshaet"
+ },
"surface": {
"label": "Gorread",
"options": {
+ "artificial_turf": "Leton sintetek",
"asphalt": "Asfalt",
+ "clay": "Pri",
"concrete": "Betoñs",
"dirt": "Douar",
+ "fine_gravel": "Grouan munut",
"grass": "Leton",
"gravel": "Grouan",
"ground": "Leur",
"metal": "Metal",
"paved": "Teret",
- "salt": "Holenet",
+ "salt": "Holen",
"sand": "Traezh",
+ "sett": "Pavezioù benet",
"unpaved": "Nann-teret",
"wood": "Koad",
"woodchips": "Skolp"
- }
+ },
+ "terms": "gorre,gorread,leur,gorreenn"
+ },
+ "surveillance": {
+ "label": "Tra evezhiet",
+ "terms": "tra evezhiet"
},
"surveillance/type": {
"label": "Seurt evezherezh",
@@ -1872,9 +3284,18 @@
"surveillance/zone": {
"label": "Takad evezhiet"
},
- "survey_point/structure": {
+ "survey_point/purpose": {
+ "label": "Pal",
"options": {
+ "both": "An daou"
+ }
+ },
+ "survey_point/structure": {
+ "label": "Frammadur",
+ "options": {
+ "block": "Bloc'h",
"cairn": "Karn",
+ "magnet": "Maen-touch dindandouar",
"medallion": "Medalenn",
"pillar": "Piler",
"plaque": "Plakenn",
@@ -1882,11 +3303,17 @@
}
},
"swimming_pool": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "kids": "Poull-neuial bugale",
+ "spa": "Spa",
+ "wave_pool": "Poull-neuial gwagennoù"
+ }
},
"switch": {
"label": "Seurt",
"options": {
+ "circuit_breaker": "Distrollerez",
"disconnector": "Distager",
"mechanical": "Mekanikel"
}
@@ -1895,32 +3322,82 @@
"label": "Da gas ganeoc'h",
"options": {
"no": "Ket",
- "only": "Nemet da gas ganeoc'h",
+ "only": "Da gas ganeoc'h hepken",
"yes": "Ya"
},
- "placeholder": "Ya, Ket, Nemet da gas ganeoc'h..."
+ "placeholder": "Ya, Ket, Da gas ganeoc'h hepken...",
+ "terms": "da gas,kas,da gas ganeoc'h,da gas ganit,to go"
+ },
+ "target": {
+ "label": "Pal"
+ },
+ "taxi_vehicle": {
+ "label": "Seurt karbed",
+ "options": {
+ "motorcycle": {
+ "title": "Marc'h-tan"
+ }
+ },
+ "terms": "seurt karbed,seurt,karr,karbed,seurt ar c'harbed,seurt ar c'harr"
},
"taxon": {
- "label": "Takson"
+ "label": "Takson",
+ "terms": "spesad,takson,aneval,loen"
},
"tee": {
"label": "Seurt/liv an te"
},
"telecom": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "data_center": "Kreizenn roadennoù"
+ }
+ },
+ "telescope/type": {
+ "label": "Seurt",
+ "options": {
+ "optical": "Teleskop optikel",
+ "radio": "Radioteleskop"
+ }
+ },
+ "tents": {
+ "label": "Teltennoù"
+ },
+ "tidal": {
+ "label": "Dindan levezon ar mareoù",
+ "terms": "lanv,tre,tre ha lanv,chal,dichal,chal ha dichal,mare,reverzhi,lanvad,mareaj,morad,gourlen,dazre,daere,uhelvor,mor,meurvor,levezon"
},
"to": {
"label": "Da"
},
"toilets": {
- "label": "Privezioù"
+ "label": "Privezioù",
+ "terms": "sal-dour,privezioù"
},
"toilets/disposal": {
"options": {
"bucket": "Sailh",
- "chemical": "Chimik"
+ "chemical": "Chimik",
+ "pitlatrine": "Privezioù sec'h"
}
},
+ "toilets/handwashing": {
+ "label": "Gwalc'heris",
+ "terms": "gwalc'heris,dar,golc'heris,basin,gwalc'houer,golc'houer"
+ },
+ "toilets/menstrual_products": {
+ "label": "Produioù digoust evit ar mizioù da gaout",
+ "options": {
+ "limited": "En un nebeut logelloù hepken",
+ "no": "Ket",
+ "yes": "Ya, e pep logell"
+ },
+ "terms": "produioù digoust evit ar mizioù da gaout,produioù evit ar mizioù,mizioù,amzerioù,produioù digoust evit an amzerioù da gaout,produioù digoust evit ar mizioù hegerz,produioù digoust evit an amzerioù hegerz,produioù evit an amzerioù,produioù evit an amzerioù da gaout,produioù evit an amzerioù hegerz,produioù evit ar mizioù da gaout,produioù evit ar mizioù hegerz,serviedenn amzerioù,serviedennoù amzerioù,serviedenn yec'hedus,serviedennoù yec'hedus,tapon amzerioù,tapon mizioù,tapon,tampon,stouv,stouvoù,produ yec'hedel,produ yec'hedus,produ mizioù,produ amzerioù,serviedenn"
+ },
+ "toilets/position": {
+ "label": "Lec'hiadurioù",
+ "terms": "lec'hiadur,lec'h,lec'hiadurioù"
+ },
"toilets/wheelchair": {
"label": "Privezioù aes d'an dud dalc'het en o c'herzhed",
"options": {
@@ -1928,13 +3405,24 @@
"no": "Ket",
"yes": "Ya"
},
- "terms": "privezioù aes d'an dud dalc'het en o c'herzhed,wc,tdk"
+ "terms": "privezioù aes d'an dud dalc'het en o c'herzhed,wc,tdk,aes d'ar c'hadorioù-ruilh,hegerz,kador-ruilh,kadorioù-ruilh,d'ar c'hadorioù-ruilh,evit ar c'hadorioù-ruilh,kador rodek"
},
"toll": {
- "label": "Gwir-treizh"
+ "label": "Gwir-treizh",
+ "terms": "taos,impost,tailh"
},
"tomb": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "crypt": "Kev",
+ "dolmen": "Taol-vaen",
+ "mausoleum": "Kañvdi",
+ "pyramid": "Piramidenn",
+ "sarcophagus": "Laour",
+ "table": "Taol",
+ "tumulus": "Krugell",
+ "war_grave": "Bez-soudard war e-unan"
+ }
},
"tourism": {
"label": "Seurt"
@@ -1959,7 +3447,16 @@
"label": "Seurt"
},
"traffic_calming": {
- "label": "Seurt"
+ "label": "Seurt",
+ "options": {
+ "bump": "Skoilh torr-tizh",
+ "chicane": "Kammigell / chikan",
+ "hump": "Kein gwiz",
+ "mini_bumps": "Skoilhoù torr-tizh bihan"
+ }
+ },
+ "traffic_calming_road": {
+ "label": "Kein-gwiz"
},
"traffic_sign": {
"label": "Panell-henchañ"
@@ -1993,7 +3490,7 @@
"transformer": {
"label": "Seurt",
"options": {
- "yes": "Roll dianav"
+ "yes": "Perzh dianav"
}
},
"trees": {
@@ -2003,7 +3500,8 @@
"label": "Seurt"
},
"trolley_wire": {
- "label": "Funioù trolleybus"
+ "label": "Funioù trolleybus",
+ "terms": "orjalenn,linenn,tredan,linenn dredan,fun,funioù,trolley,trolleybus,katener"
},
"tunnel": {
"label": "Seurt",
@@ -2012,7 +3510,10 @@
"tunnel_combo": {
"label": "Seurt",
"options": {
- "culvert": "Kan-dour"
+ "avalanche_protector": "Gwarez enep-disac'h-erc'h",
+ "building_passage": "Treuzell",
+ "culvert": "Kan-dour",
+ "flooded": "Riboul beuzet"
}
},
"turning_circle": {
@@ -2023,18 +3524,38 @@
"options": {
"undefined": "Ket",
"yes": "Ya"
- }
+ },
+ "terms": "daoudu,tu,daou du,daou gostez"
},
"usage_rail": {
"label": "Seurt implij",
"options": {
+ "branch": "Eil skourr",
"industrial": "Greantel",
+ "main": "Pennañ",
"military": "Milour",
+ "test": "Hentad amprouiñ evit an trenioù nevez",
"tourism": "Touristelezh"
- }
+ },
+ "terms": "implij,arver,arverañ,implijout,servij,seurt"
},
"usage_waterway": {
- "label": "Seurt implij"
+ "label": "Seurt implij",
+ "options": {
+ "irrigation": "Kanouc'hell",
+ "transportation": "Treuzdougen"
+ }
+ },
+ "utility": {
+ "options": {
+ "gas": "Gaz",
+ "oil": "Eoul-douar",
+ "power": "Energiezh",
+ "sewerage": "Dourioù lous",
+ "street_lighting": "Goulaouiñ foran",
+ "telecom": "Pellgehentiñ",
+ "water": "Dour"
+ }
},
"valve": {
"label": "Seurt"
@@ -2053,15 +3574,52 @@
}
},
"vending": {
- "label": "Seurt marc'hadourezh"
+ "label": "Seurt marc'hadourezh",
+ "options": {
+ "bicycle_tube": "Bouzellennoù-rod marc'hoù-houarn",
+ "bread": "Bara",
+ "cigarettes": "Sigaretennoù",
+ "coffee": "Kafe",
+ "condoms": "Stevelloù",
+ "drinks": "Evajoù",
+ "e-cigarettes": "Sigaretennoù elektronek",
+ "eggs": "Vioù",
+ "electronics": "Dafar elektronek",
+ "elongated_coin": "Pezhioù (eñvorenn)",
+ "excrement_bags": "Seier kaoc'h-ki",
+ "feminine_hygiene": "Produioù evit an amzerioù",
+ "food": "Boued",
+ "fuel": "Esañs",
+ "ice_cream": "Dienn-skorn",
+ "ice_cubes": "Skornennoù",
+ "milk": "Laezh",
+ "newspapers": "Kazetennoù",
+ "parking_tickets": "Tikedennoù parkañ",
+ "pizza": "Pizza",
+ "public_transport_tickets": "Tikedennoù treuzdougen foran",
+ "stamps": "Timbroù",
+ "sweets": "Madigoù",
+ "water": "Dour mat da evañ"
+ }
+ },
+ "vhf": {
+ "label": "Chadenn VHF",
+ "terms": "chadenn,vhf,very high frequency"
+ },
+ "via": {
+ "label": "Dre"
+ },
+ "video_calls": {
+ "label": "Galvoù video"
},
"visibility": {
"label": "Gwelusted",
"options": {
- "area": "Ouzhpenn 20m (65tt)",
+ "area": "Tremen 20m (65tt)",
"house": "Betek 5m (16tt)",
"street": "Eus 5 da 20m (eus 16 da 65tt)"
- }
+ },
+ "terms": "gwelusted,hed-gwel,hewelded"
},
"volcano/status": {
"label": "Statud ar menez-tan",
@@ -2070,38 +3628,82 @@
}
},
"volcano/type": {
- "label": "Seurt menez-tan"
+ "label": "Seurt menez-tan",
+ "options": {
+ "shield": "Menez-tan skoed",
+ "stratovolcano": "Menez-tan gweleadek"
+ }
},
"voltage": {
"label": "Voltadur"
},
+ "voltage/primary": {
+ "label": "Voltadur pennañ",
+ "terms": "voltadur,stennadur,stegnadur,stignadur,pennañ,kentañ"
+ },
+ "voltage/secondary": {
+ "label": "Voltadur eil renk",
+ "terms": "voltadur,stennadur,stegnadur,stignadur,eil,eil renk,eil derez"
+ },
+ "voltage/tertiary": {
+ "label": "Voltadur trede renk",
+ "terms": "voltadur,stennadur,stegnadur,stignadur,trede,trede renk,trede derez"
+ },
"wall": {
"label": "Seurt"
},
"waste": {
- "label": "Lastez"
+ "label": "Lastez",
+ "options": {
+ "cigarettes": "Sigaretennoù",
+ "dog_excrement": "Kaoc'h-ki",
+ "organic": "Glazach",
+ "trash": "Lastez"
+ }
},
"water": {
"label": "Seurt"
},
+ "water_point": {
+ "label": "Lec'h dour"
+ },
"water_source": {
- "label": "Mammenn dour"
+ "label": "Mammenn dour",
+ "options": {
+ "main": "San dour",
+ "pond": "Stank",
+ "river": "Stêr",
+ "stream": "Gwazh",
+ "water_tank": "Sitern dour"
+ }
},
"water_tank/volume": {
"label": "Volum (litroù)",
- "placeholder": "10000, 20000, 30000…"
+ "placeholder": "10000, 20000, 30000…",
+ "terms": "ec'honenn,tolzennad,volum,egorenn,egor,litr,litroù"
},
"waterway": {
"label": "Seurt"
},
"website": {
"label": "Lec'hienn",
- "placeholder": "https://skouer.bzh/"
+ "placeholder": "https://skouer.bzh",
+ "terms": "internet,lec'hienn,kenrouedad,web"
+ },
+ "website/menu": {
+ "label": "Liamm war-zu al lañser",
+ "placeholder": "https://skouer.bzh",
+ "terms": "liamm,war-zu,war-du,etrezek,al lañser,ar bajenn degemer,an degemer"
},
"wetland": {
"label": "Seurt",
"options": {
+ "bog": "Taouarc'heg",
"mangrove": "Mangrovenn",
+ "marsh": "Geunioù",
+ "saltmarsh": "Palud-holen",
+ "swamp": "Paludenn",
+ "tidalflat": "Morfont",
"wet_meadow": "Pradenn c'hleb"
}
},
@@ -2111,269 +3713,616 @@
"limited": "Bevennet",
"no": "Ket",
"yes": "Ya"
- }
+ },
+ "terms": "aes d'ar c'hadorioù-ruilh,hegerz,kador-ruilh,kadorioù-ruilh,d'ar c'hadorioù-ruilh,evit ar c'hadorioù-ruilh,aes d'an dud dalc'het en o c'herzhed,tdk,moned,kador rodek"
},
"width": {
- "label": "Ledander (Metroù)"
+ "label": "Ledander (metroù)",
+ "terms": "ledanded,ledander,metr,metroù"
},
"wikidata": {
- "label": "Wikidata"
+ "label": "Wikidata",
+ "terms": "wikidata"
},
"wikimedia_commons": {
"label": "Pajenn Wikimedia Commons",
- "placeholder": "Teul:Skouer.jpg"
+ "placeholder": "Teul:Skouer.jpg",
+ "terms": "wikimedia,commons,pajenn,pennad"
},
"wikipedia": {
- "label": "Wikipedia"
+ "label": "Wikipedia",
+ "terms": "wikipedia"
},
"windings": {
"placeholder": "1, 2, 3..."
},
"windings/auto": {
+ "label": "Unandreuzfurmer",
"options": {
"no": "Ket",
"undefined": "\"Ket\" dre ziouer",
"yes": "Ya"
- }
+ },
+ "terms": "unandreuzfurmer,treuzfurmer"
},
"windings/configuration": {
"options": {
- "delta": "Delta",
+ "delta": "Tric'horn",
"leblanc": "Leblanc",
"open": "Digor",
+ "open-delta": "Tric'horn digor",
"scott": "Scott",
- "star": "Star / Wye",
+ "star": "Sterenn",
"zigzag": "Kamm-digamm"
}
}
},
"presets": {
"address": {
- "name": "Chomlec'h"
+ "name": "Chomlec'h",
+ "terms": "chomlec'h,lec'h,kêr,chom,lec'hiadur"
+ },
+ "advertising": {
+ "name": "Benveg brudañ",
+ "terms": "ardivink,benveg,bruderezh,brudañ"
+ },
+ "advertising/billboard": {
+ "name": "Panell vrudañ",
+ "terms": "bruderezh,brudañ,panell,pub,skritell"
+ },
+ "advertising/board": {
+ "name": "Panell skritellañ",
+ "terms": "panell,bruderezh,skritell,skritellañ,brudañ,titouroù,titouriñ,keloù,kelaouenn"
},
"aerialway/cable_car": {
- "name": "Fungarr"
+ "name": "Fungarr",
+ "terms": "karr-fun,fungarr"
+ },
+ "aerialway/chair_lift": {
+ "name": "Fungador",
+ "terms": "skiañ,ski,funsacherez,fungador,kador"
},
"aerialway/drag_lift": {
- "name": "Fungador",
- "terms": "skiañ,ski,funsacherez,fungador"
+ "name": "Teleski",
+ "terms": "skiañ,ski,funsacherez,fungador,kador,teleski"
+ },
+ "aerialway/gondola": {
+ "name": "Funlogell",
+ "terms": "skiañ,ski,funsacherez,fungador,funlogell,fungarr"
+ },
+ "aerialway/magic_carpet": {
+ "name": "Tapis-ruilh",
+ "terms": "tapis-ruilh"
+ },
+ "aerialway/platter": {
+ "name": "Teleski unplas",
+ "terms": "teleski,unplas"
+ },
+ "aerialway/zip_line": {
+ "name": "Tirolianenn",
+ "terms": "tirolianenn,tirolian"
+ },
+ "aeroway": {
+ "name": "Elfenn aerel"
},
"aeroway/aerodrome": {
"name": "Aerborzh",
"terms": "aerborzh"
},
"aeroway/apron": {
- "name": "Tarmak"
+ "name": "Tarmak",
+ "terms": "tarmak,aerborzh,karr-nij,kirri-nij,avioñ,nijerez,nijva"
+ },
+ "aeroway/hangar": {
+ "terms": "etrepaouez,karrdi,sanailh,hangar,skiber,lab"
},
"aeroway/helipad": {
"name": "Biñsporzh",
- "terms": "biñsporzh"
+ "terms": "biñsporzh,biñsaskell,askell-dro,askell-viñs"
},
"aeroway/runway": {
- "name": "Pradva"
+ "name": "Pradva",
+ "terms": "dibradañ,pradva,nijerez,karr-nij,kirri-nij,aerborzh,nijva,diskenn,douarañ,pradañ,leuriañ,parañ,hent,hentad"
+ },
+ "aeroway/spaceport": {
+ "name": "Kreizenn aeregor",
+ "terms": "spasporzh,egorborzh,spasborzh,kreizenn spas,kreizenn egor,kreizenn aeregor"
+ },
+ "aeroway/taxiway": {
+ "name": "Hent-tremen",
+ "terms": "taxiway,hent-tremen"
+ },
+ "aeroway/windsock": {
+ "name": "Mañch-aer",
+ "terms": "mañch-aer,milgin-aer"
+ },
+ "amenity": {
+ "name": "Danframmoù"
},
"amenity/animal_shelter": {
"name": "Bod-loened",
"terms": "kevredad gwarez al loened,kgl,bod,bod-loened,loen,loen-ti,loen moumoun,moumoun,perc'hennañ,adopsion,advabañ,advugelañ"
},
+ "amenity/arts_centre": {
+ "name": "Kreizenn arz ha sevenadur",
+ "terms": "arz,arzel,sevenadur,sevenadurel,kreizenn"
+ },
"amenity/atm": {
- "name": "Bilhedaouer"
+ "name": "Bilhedaouer",
+ "terms": "atm,dasparzher,arc'hant,argant,ingaler,emgefre,emgefreek"
+ },
+ "amenity/baking_oven": {
+ "name": "Forn dre geuneud",
+ "terms": "forn dre geuneud,forn,fornigell,poazhañ,pobañ,forn koad,forn dre goad,keuneud"
},
"amenity/bank": {
"name": "Ti-bank",
- "terms": "ti-bank,arc'hanti"
+ "terms": "ti-bank,arc'hanti,bank"
},
"amenity/bar": {
- "name": "Tavarn"
+ "name": "Tavarn",
+ "terms": "tavarn,pub,bar,ostaleri"
},
"amenity/bar/lgbtq": {
- "name": "Tavarn LGDTQ+"
+ "name": "Tavarn LGDTQ+",
+ "terms": "tavarn,bar,pub,ostaleri,lgbt,lgdt,lgbt+,lgdt+,lgbtq,lgdtq,lgbtq+,lgdtq+,lgbtqia+,lgdtqea+,gae,lesbian,gay"
+ },
+ "amenity/bbq": {
+ "name": "Regezer/grill",
+ "terms": "regezer,grill,suilhañ,rosta,krazañ,regeziñ"
},
"amenity/bench": {
- "name": "Bank"
+ "name": "Bank",
+ "terms": "bank,skaon"
},
"amenity/bicycle_parking": {
- "name": "Parklec'h marc'hoù-houarn"
+ "name": "Parklec'h marc'hoù-houarn",
+ "terms": "belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,parkañ,parklec'h,parklec'h beloioù"
},
"amenity/bicycle_parking/building": {
"name": "Karrdi marc'hoù-houarn",
- "terms": "parklec'h,karrdi,marc'h-houarn"
+ "terms": "parklec'h,karrdi,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,parkañ,parklec'h beloioù,garaj"
},
"amenity/bicycle_parking/lockers": {
- "name": "Kadranasoù marc'hoù-houarn",
- "terms": "marc'h-houarn,pluenn,kadranas,krabotinell"
+ "name": "Kombodoù marc'hoù-houarn",
+ "terms": "marc'h-houarn,kombod"
},
"amenity/bicycle_parking/shed": {
"name": "Goudor marc'hoù-houarn",
"terms": "goudor,loch,marc'h-houarn"
},
"amenity/bicycle_rental": {
- "name": "Marc'hoù-houarn da feurmiñ"
+ "name": "Marc'hoù-houarn da feurmiñ",
+ "terms": "belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,gwerzhañ,stal,feurmiñ,da feurmiñ"
+ },
+ "amenity/bicycle_wash": {
+ "name": "Gwalc'hañ marc'hoù-houarn",
+ "terms": "mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,beloioù,marc'h-houarn,gwalc'hañ,naetaat,kempenn"
+ },
+ "amenity/binoculars": {
+ "name": "Lunedoù hirwel"
+ },
+ "amenity/boat_rental": {
+ "name": "Bigi da feurmiñ"
},
"amenity/bus_station": {
"name": "Arsav-dibenn bus"
},
"amenity/cafe": {
"name": "Ti-kafe",
- "terms": "ti-kafe,kafedi,ti-evañ"
+ "terms": "ti-kafe,kafedi,ti-evañ,kafe,café"
},
"amenity/cafe/bubble_tea": {
"name": "Tavarn bubble-tea"
},
"amenity/cafe/coffee_shop": {
- "name": "Ti-kafe"
+ "name": "Ti-kafe",
+ "terms": "kafe,stal-gafe,stal kafe,evaj,evajoù,ti-kafe,café,tavarn"
},
"amenity/car_pooling": {
"name": "Leur-genweturañ"
},
+ "amenity/car_rental": {
+ "name": "Kirri da feurmiñ",
+ "terms": "karr,feurmiñ,kirri,karbed,karr-tan,kirri-tan,da feurmiñ,gwetur"
+ },
+ "amenity/car_wash": {
+ "name": "Porzh gwalc'hiñ kirri",
+ "terms": "porzh,gwalc'hiñ,karbed,karr-tan,kirri-tan,gwetur,karr,kirri,gwalc'herezh"
+ },
"amenity/casino": {
- "name": "Kazino"
+ "name": "Kazino",
+ "terms": "kazino,arc'hant,c'hoari,argant"
+ },
+ "amenity/childcare": {
+ "name": "Magouri",
+ "terms": "magouri,kraou,bugale,bugel,babig,ober war-dro,plediñ,diwallañ"
},
"amenity/cinema": {
"name": "Sinema",
- "terms": "sinema,fiñvskeudenndi,fiñvskeudennva"
+ "terms": "sinema,fiñvskeudenndi,fiñvskeudennva,film,c'hoariva"
+ },
+ "amenity/clinic": {
+ "name": "Liesklinikenn",
+ "terms": "klinikenn,liesklinikenn"
},
"amenity/clinic/abortion": {
- "name": "Klinikenn diforc'hidigezh"
+ "name": "Klinikenn diforc'hidigezh",
+ "terms": "klinikenn diforc'hidigezh,klinikenn diforc'hañ"
+ },
+ "amenity/clinic/dialysis": {
+ "name": "Kreizenn dializenn",
+ "terms": "kreizenn,dializ,dializenn"
},
"amenity/clock": {
"name": "Eurier",
"terms": "amzer,eurier,montr,pandulenn,dihuner,horolaj"
},
- "amenity/college": {
- "name": "Tachenn skol deskadurezh uhel",
- "terms": "skol deskadurezh uhel,skol-veur,deskadurezh uhel"
+ "amenity/clock/sundial": {
+ "name": "Kadran",
+ "terms": "kadran,eurier-heol,horolaj-heol,horolaj,eurier,skeud,heol,amzer,eur"
},
"amenity/community_centre": {
"name": "Sal liezimplij"
},
+ "amenity/community_centre/community_hall": {
+ "name": "Sal liezimplij",
+ "terms": "sal liezimplij,liesimplij,liezimplij"
+ },
+ "amenity/community_centre/cultural_centre": {
+ "name": "Kreizenn sevenadurel",
+ "terms": "kreizenn sevenadurel"
+ },
+ "amenity/community_centre/family_centre": {
+ "name": "Kreizenn diegezhel",
+ "terms": "kreizenn diegezhel,kreizenn tiegezhioù,kreizenn diegezh,tiegezh,tiegezhioù,tiegezhel,diegezhel,kreizenn"
+ },
+ "amenity/community_centre/lgbtq": {
+ "name": "Kreizenn LGDTQ+"
+ },
+ "amenity/community_centre/youth_centre": {
+ "name": "Kreizenn yaouankiz"
+ },
+ "amenity/compressed_air": {
+ "name": "Aer wasket",
+ "terms": "aer,wasket,gwasket,kenwasket,moustret,voustret"
+ },
+ "amenity/conference_centre": {
+ "name": "Kreizenn ar c'hendalc'hioù",
+ "terms": "kreizenn ar c'hendalc'hioù,kendalc'hioù,kreizenn"
+ },
"amenity/courthouse": {
- "name": "Ti-barn"
+ "name": "Ti-barn",
+ "terms": "lez-varn,tu-barn,barn"
},
"amenity/coworking_space": {
"name": "Lec'h kenlabourat"
},
"amenity/crematorium": {
- "name": "Forn an ankoù"
+ "name": "Forn an Ankoù",
+ "terms": "bered,bez,ankoù,anaon,marv,mervel,kelan,douarañ,douaridigezh,kañv,ti-kañv,bolz-kañv,forn,forn an ankoù,forn deviñ korfoù,deviñ-korfoù,krematoriom,deviñ,suilhañ,leskiñ,tan"
+ },
+ "amenity/dentist": {
+ "name": "Dentour",
+ "terms": "dentour,dantour,mezeg-dent"
},
"amenity/doctors": {
- "name": "Doktor"
+ "name": "Doktor",
+ "terms": "doktor,mezeg,milchin,medisin,medisinour,louzaouer"
+ },
+ "amenity/doctors/allergology": {
+ "name": "Allergologour",
+ "terms": "allergologour,allergologiezh,allergologel,allergologourez,allergiezh"
+ },
+ "amenity/doctors/cardiology": {
+ "name": "Kalonour",
+ "terms": "kalon,kalonour,kalonouriezh,kardiologiezh,kardiologour,milchin,medisin,doktor,mezeg,mezekniezh,ospital,klañvdi,medisinerezh"
+ },
+ "amenity/doctors/child_psychiatry": {
+ "name": "Bredvezeg evit ar vugale hag ar grennarded",
+ "terms": "bredvezeg,psikiatrour,psikiatriezh,bredvezekniezh,bredvezegiezh,bugel,bugale,krennard,krennardez,krennardezed,krennarded,vugale,c'hrennard,grennardez,c'hrennardezed,grennarded"
+ },
+ "amenity/doctors/dermatology": {
+ "name": "Kroc'henour",
+ "terms": "kroc'henour,dermatologour,kroc'hen,dermatologiezh,kroc'henouriezh,kleñved,kleñved kroc'hen"
+ },
+ "amenity/doctors/gastroenterology": {
+ "name": "Koazhadour",
+ "terms": "milchin,medisin,doktor,mezeg,mezekniezh,ospital,klañvdi,medisinerezh,gastroenterologiezh,koazhadouriezh,gastroenterologour,koazhadour,gastroenterit,koazhadur,koazhañ,stomog,bouzelloù,bouzellenn,genoù,treizher,korzenn-voued"
+ },
+ "amenity/doctors/gynaecology": {
+ "name": "Amiegour/ginekologour",
+ "terms": "amiegour/ginekologour,amiegez,amiegourez,ginekologourez,ginekologour,benvezeg,benvezegez,benevour,benevourez,medisin ar merc'hed,plac'hed,merc'h,verc'h,blac'h,plac'h,maouez,vaouez,maouezed,vaouezed"
+ },
+ "amenity/doctors/haematology": {
+ "name": "Hematologour",
+ "terms": "hematologiezh,hematologour,gwadour,gwad"
+ },
+ "amenity/doctors/nephrology": {
+ "name": "Nefrologour",
+ "terms": "nefrologiezh,nefrologour"
+ },
+ "amenity/doctors/neurology": {
+ "name": "Neurologour",
+ "terms": "neuron,neurologour,neurologiezh,neurologel,empenn"
+ },
+ "amenity/doctors/neurosurgery": {
+ "name": "Neurosurjian",
+ "terms": "neurosurjian,surjian,neurologiezh"
+ },
+ "amenity/doctors/oncology": {
+ "name": "Onkologour",
+ "terms": "onkologour,onkologiezh,onkologel,krign,krign-bev"
+ },
+ "amenity/doctors/ophthalmology": {
+ "name": "Medisin an daoulagad",
+ "terms": "medisin an daoulagad,oftalmologour,oftalmologiezh,oftalmologel,mezegiezh an daoulagad"
+ },
+ "amenity/doctors/orthopaedics": {
+ "name": "Surjian ortopedek",
+ "terms": "ortopediezh,surjian,surjian ortopedek,ortopedek,ortopedist"
+ },
+ "amenity/doctors/otolaryngology": {
+ "name": "Otorinolarintologour",
+ "terms": "otorinolarintologour,otorinolarintologourez,otorinolarintologiezh"
+ },
+ "amenity/doctors/plastic_surgery": {
+ "name": "Surjian kenedel"
+ },
+ "amenity/doctors/podiatry": {
+ "name": "Podologour",
+ "terms": "podologour,ficher-treid,podologiezh"
+ },
+ "amenity/doctors/proctology": {
+ "name": "Proktologour",
+ "terms": "surjian kolonyoulc'hel,surjian,proktologour,doktor,proktologiezh"
+ },
+ "amenity/doctors/psychiatrist": {
+ "name": "Bredvezeg",
+ "terms": "bredvezeg,psikiatrour,psikiatriezh,bredvezekniezh,bredvezegiezh"
+ },
+ "amenity/doctors/pulmonology": {
+ "name": "Pneumologour",
+ "terms": "pneumologiezh,pneumologour,skeventour,skevent"
+ },
+ "amenity/doctors/rheumatology": {
+ "name": "Rumatologour",
+ "terms": "rumatologour,remm,rumatologiezh"
+ },
+ "amenity/doctors/surgery": {
+ "name": "Surjian hollek",
+ "terms": "surjian,doktor,hollek,surjianerezh"
+ },
+ "amenity/doctors/trauma": {
+ "name": "Surjian-traomatologour",
+ "terms": "surjian-traomatologour"
+ },
+ "amenity/doctors/urology": {
+ "name": "Urologour",
+ "terms": "urologour,urologiezh,urologel,troazh,mezeg ar troazh,mezeg,medisin ar troazh,troazhadouriezh"
+ },
+ "amenity/dog_toilet": {
+ "name": "Privezioù chas",
+ "terms": "privezioù chas,ki,kon,privezioù kon,privezioù evit ar chas,privezioù evit ar c'hon"
},
"amenity/dojo": {
- "name": "Dojo"
+ "name": "Dojo",
+ "terms": "dojo,arz-emgannañ,kannañ,dornañ,gouren,karate,judo"
},
"amenity/dressing_room": {
"name": "Gwiskva"
},
"amenity/drinking_water": {
- "name": "Dour Mat da Evañ",
- "terms": "dour mat da evañ"
+ "name": "Dour mat da evañ",
+ "terms": "dour mat da evañ,dour naet,dour prop,dour disaotr,dour distlabez,dour glan"
},
"amenity/driver_training": {
- "name": "Tachenn skol-vleinañ"
- },
- "amenity/driving_school": {
- "name": "Skol-vleinañ"
+ "name": "Tachenn skol-vleinañ",
+ "terms": "bleinañ,kirri-tan,karr-tan;gwetur,oto,skol vleinañ,skol-vleinañ,skol bleinañ,takad,tachenn,tachad"
},
"amenity/embassy": {
"name": "Kannati"
},
+ "amenity/exhibition_centre": {
+ "name": "Kreizenn diskouezadegoù",
+ "terms": "kreizenn diskouezadegoù,diskouezadegoù,diskouezadeg,diskouezva"
+ },
"amenity/fast_food": {
- "name": "Fast Food"
+ "name": "Preti fast-food",
+ "terms": "preti,ti-debriñ,fast-food,fast food,boued,boued-straed"
+ },
+ "amenity/fast_food/bagel": {
+ "name": "Ti-bagel"
+ },
+ "amenity/fast_food/burger": {
+ "name": "Ti-hamburger",
+ "terms": "preti,ti-debriñ,fast-food,fast food,hamburger,burger,boued,boued-straed"
+ },
+ "amenity/fast_food/cafeteria": {
+ "name": "Kafeteria",
+ "terms": "kantin,kafeteria"
+ },
+ "amenity/fast_food/chicken": {
+ "name": "Preti fast-food kig-yar",
+ "terms": "preti,ti-debriñ,fast-food,fast food,yar,kig-yar,yar fritet,boued,boued-straed"
+ },
+ "amenity/fast_food/donut": {
+ "name": "Ti-donut",
+ "terms": "preti,ti-debriñ,fast-food,fast food,donut,boued,boued-straed"
},
"amenity/fast_food/fish_and_chips": {
- "name": "Fish & Chips"
+ "name": "Ti Fish & Chips",
+ "terms": "preti,ti-debriñ,fast-food,fast food,fish and chips,fish & chips,fish&chips,boued,boued-straed"
+ },
+ "amenity/fast_food/hot_dog": {
+ "name": "Ti-hot-dog",
+ "terms": "hot-dog,hot dog,preti,ti-debriñ,fast-food,fast food,boued,boued-straed"
+ },
+ "amenity/fast_food/ice_cream": {
+ "name": "Ti-dienn-skorn"
+ },
+ "amenity/fast_food/juice": {
+ "name": "Ti-chug",
+ "terms": "preti,ti-debriñ,fast-food,fast food,boued,boued-straed,chug,chug-frouezh"
},
"amenity/fast_food/kebab": {
- "name": "Ti-kebab"
+ "name": "Ti-kebab",
+ "terms": "preti,ti-debriñ,fast-food,fast food,boued,boued-straed,kebab,dönner"
},
"amenity/fast_food/mexican": {
- "name": "Fast-food mec'hikan"
+ "name": "Preti fast-food mec'hikan",
+ "terms": "preti,ti-debriñ,fast-food,fast food,boued,boued-straed,mexik,mexiko,mexikan,mec'hiko,mec'hikan,tacos,fajita"
},
"amenity/fast_food/pizza": {
- "name": "Ti-pizza"
+ "name": "Ti-pizza",
+ "terms": "preti,ti-debriñ,fast-food,fast food,boued,boued-straed,pizza"
+ },
+ "amenity/fast_food/sandwich": {
+ "name": "Stal-sandwichoù",
+ "terms": "sandwich,ti-sandwich,preti,ti-debriñ,stal-sandwich,stal sandwichoù,fast food,fast-food,predoù war ar prim,pretierezh prim"
+ },
+ "amenity/ferry_terminal": {
+ "name": "Arsav-dibenn ferry"
},
"amenity/fire_station": {
- "name": "Kazarn Pomperien",
+ "name": "Kazarn pomperien",
"terms": "pomperien,pomper,pomperez,pomperezed,kazarn pomperien,kazarn ar bomperien,paotr an tan,plac'h an tan,saper-pomper,saper-pomperez,saper-pomper youlat,spy,tangwall,tan,mallusted,kreizenn tanioù-gwall ha sikourioù,kts,kreizenn sikour,gwarez a-enep an tanioù-gwall"
},
"amenity/fountain": {
- "name": "Feunteun"
+ "name": "Feunteun",
+ "terms": "feunteun,fetan,stivell,andon,feuntan"
},
"amenity/fuel": {
"name": "Porzh Servij"
},
+ "amenity/funeral_hall": {
+ "name": "Funerariom",
+ "terms": "funerariom"
+ },
"amenity/grave_yard": {
"name": "Bered"
},
+ "amenity/hookah_lounge": {
+ "name": "Tavarn chicha",
+ "terms": "chicha,tavarn,ostaleri,bar"
+ },
"amenity/hospital": {
- "name": "Tachenn ospital"
+ "name": "Tachenn ospital",
+ "terms": "ospital,klañvdi,tachenn"
+ },
+ "amenity/ice_cream": {
+ "name": "Stal dienn-skorn",
+ "terms": "dienn-skorn,koaven-skorn"
+ },
+ "amenity/ice_cream/frozen_yogurt": {
+ "name": "Stal yaourt skornet",
+ "terms": "preti,ti-debriñ,yaourt skornet,frozen yogurt,stal"
},
"amenity/internet_cafe": {
"name": "Siber-tavarn",
"terms": "sibertavarn,tavarn,stlenneg,ti-debriñ"
},
- "amenity/kindergarten": {
- "name": "Tachenn skol-vamm"
- },
- "amenity/language_school": {
- "name": "Skol yezhoù"
- },
"amenity/lavoir": {
"name": "Poull-kannañ"
},
+ "amenity/letter_box": {
+ "name": "Boest-lizhiri prevez"
+ },
"amenity/library": {
"name": "Levraoueg"
},
+ "amenity/lounger": {
+ "name": "Kador-hir",
+ "terms": "kador-hir,hirgador"
+ },
+ "amenity/love_hotel": {
+ "name": "Love Hotel",
+ "terms": "love hotel,leti karantez,karantez"
+ },
+ "amenity/luggage_locker": {
+ "name": "Kombod malizennoù",
+ "terms": "kombod malizennoù,kombod,malizennoù,malizenn"
+ },
"amenity/marketplace": {
"name": "Marc'had"
},
"amenity/monastery": {
"name": "Tachenn abati"
},
- "amenity/music_school": {
- "name": "Skol sonerezh"
+ "amenity/money_transfer": {
+ "name": "Treuzkas arc'hant",
+ "terms": "post,treuzkas,arc'hant,bank,ti-bank"
+ },
+ "amenity/mortuary": {
+ "name": "Morg",
+ "terms": "morg"
+ },
+ "amenity/motorcycle_parking": {
+ "name": "Parklec'h marc'hoù-tan"
+ },
+ "amenity/motorcycle_rental": {
+ "name": "Marc'hoù-tan da feurmiñ",
+ "terms": "marc'h-tan,marc'hoù-tan,mirc'hi-ten,c'hwil-tan,c'hwiled-tan,karbed,treuzdougen,moto,dezougen,feurmiñ,da feurmiñ,mekanik,machin,kenfeurmiñ"
},
"amenity/nightclub": {
"name": "Toull-noz",
"terms": "toull-noz,toull"
},
"amenity/nightclub/lgbtq": {
- "name": "Toull-noz LGDTQ+"
+ "name": "Toull-noz LGDTQ+",
+ "terms": "lgbt,lgdt,lgbt+,lgdt+,lgbtq,lgdtq,lgbtq+,lgdtq+,lgbtqia+,lgdtqea+,gae,lesbian,gay,dañsti,pladennaoueg,boest-noz,ribouldi,toull-noz,toull"
},
"amenity/nursing_home": {
"name": "Ti-diskuizh"
},
"amenity/parking": {
- "name": "Parklec'h"
+ "name": "Parklec'h",
+ "terms": "parkañ,karr,kirri,karr-tan,marc'h-tan,c'hwil-tan,alez,hent,parklec'h,plas,plas-parkañ"
},
"amenity/parking/park_ride": {
"name": "Parklec'h-eskemm"
},
"amenity/parking/underground": {
- "name": "Parklec'h dindandouar"
+ "name": "Parklec'h dindandouar",
+ "terms": "parkañ,parklec'h,dindandouar,dindan-douar"
},
"amenity/parking_space": {
- "name": "Plasenn parkañ",
- "terms": "parklec'h,plasenn,parkañ,karr-tan,gwetur,karbed,plasenn parkañ"
+ "name": "Plas parkañ",
+ "terms": "parklec'h,plasenn,parkañ,karr-tan,gwetur,karbed,plasenn parkañ,plas"
+ },
+ "amenity/parking_space/disabled": {
+ "name": "Parklec'h miret d'an dud dalc'het (TDK)",
+ "terms": "nammet,dalc'het,tdk,tud dalc'het,tud dalc'het en o c'herzhed,parkañ,plas,parklec'h"
+ },
+ "amenity/payment_centre": {
+ "name": "Kreizenn baeañ",
+ "terms": "kreizenn,paeañ,baeañ,baeamant,paeamant"
+ },
+ "amenity/pharmacy": {
+ "name": "Apotikerezh"
},
"amenity/photo_booth": {
- "name": "Fotomaton"
+ "name": "Fotomaton",
+ "terms": "fotomaton,luc'hskeudennerez,foto,fotoioù,kamera"
},
"amenity/place_of_worship": {
- "name": "Lec'h Azeuliñ",
- "terms": "lec'h azeuliñ,lec'h sakr"
+ "name": "Lec'h azeuliñ",
+ "terms": "lec'h azeuliñ,lec'h sakr,azeuliñ,meuliñ,relijion,katolik,muzulman,yuzev,templ,iliz,moskeenn,sinagogenn,orator,ti-pediñ,pediñ,azeulva,azeuldi,neved,ti-azeul"
},
"amenity/place_of_worship/buddhist": {
"name": "Templ Boudaat",
"terms": "templ boudaat"
},
"amenity/place_of_worship/christian": {
- "name": "Iliz Kristen",
+ "name": "Iliz kristen",
"terms": "iliz kristen"
},
+ "amenity/place_of_worship/christian/jehovahs_witness": {
+ "name": "Sal Rouantelezh Testoù Jehovah"
+ },
"amenity/place_of_worship/christian/la_luz_del_mundo": {
- "name": "Templ La Luz del Mundo"
+ "name": "Templ La Luz del Mundo",
+ "terms": "templ la luz del mundo,iliz la luz del mundo,templ,la luz del mundo"
},
"amenity/place_of_worship/hindu": {
"name": "Templ hindou",
@@ -2381,45 +4330,61 @@
},
"amenity/place_of_worship/jewish": {
"name": "Sinagogenn",
- "terms": "sinagogenn"
+ "terms": "sinagogenn,yuzev,yuzeviezh"
},
"amenity/place_of_worship/muslim": {
"name": "Moskeenn",
- "terms": "moskeenn"
+ "terms": "moskeenn,muzulman"
},
"amenity/place_of_worship/shinto": {
- "name": "Aoter chinto"
+ "name": "Aoter chinto",
+ "terms": "templ shinto,templ chinto,aoter shinto,aoter chinto,shinto,chinto"
},
"amenity/place_of_worship/sikh": {
- "name": "Templ sikh"
+ "name": "Templ sikh",
+ "terms": "templ,azeuldi,ti-azeuliñ,sikh"
},
"amenity/place_of_worship/taoist": {
- "name": "Templ daoat"
+ "name": "Templ daoat",
+ "terms": "templ,azeuldi,ti-azeuliñ,taoism,taoour,taour,taoat,taoad,taoist"
},
"amenity/planetarium": {
- "name": "Planetariom"
+ "name": "Planetariom",
+ "terms": "planetariom,sterennaoueg"
},
"amenity/police": {
"name": "Ti-polis",
- "terms": "ti-polis,staelva-polis,post-polis"
+ "terms": "ti-polis,staelva-polis,post-polis,polis,lezenn"
},
"amenity/polling_station": {
"name": "Burev-votiñ pad"
},
"amenity/post_box": {
- "name": "Boest-lizhiri (kas)"
+ "name": "Boest-lizhiri (kas)",
+ "terms": "boest-lizhiri,lizhiri,lizher,boest kas,kas,post,ti-post"
},
"amenity/post_office": {
- "name": "Ti-post"
+ "name": "Ti-post",
+ "terms": "lizher,lizhiri,boest-post,post,ti-post,paotr-al-lizhiri,faktor,kaser-lizheroù"
},
"amenity/prison": {
- "name": "Tachenn doull-bac'h"
+ "name": "Tachenn doull-bac'h",
+ "terms": "prizon,prison,toull,toull-bac'h,bac'h,takad,tachenn,tachad,takad un toull-bac'h"
},
"amenity/pub": {
- "name": "Pub"
+ "name": "Pub",
+ "terms": "tavarn,pub,ostaleri,ti-evañ"
+ },
+ "amenity/pub/irish": {
+ "name": "Tavarn iwerzhonat",
+ "terms": "pub,iwerzhon,iwerzhonek,iwerzhonat,tavarn,bar,ostaleri"
},
"amenity/pub/lgbtq": {
- "name": "Pub LGDTQ+"
+ "name": "Pub LGDTQ+",
+ "terms": "tavarn,pub,ostaleri,lgbt,lgdt,lgbt+,lgdt+,lgbtq,lgdtq,lgbtq+,lgdtq+,lgbtqia+,lgdtqea+,gae,lesbian,gay"
+ },
+ "amenity/pub/microbrewery": {
+ "name": "Tavarn breserezh"
},
"amenity/public_bath": {
"name": "Kibelldi foran"
@@ -2434,178 +4399,434 @@
"name": "Kontener glasach"
},
"amenity/recycling_centre": {
- "name": "Kreizenn adaozañ"
+ "name": "Kreizenn adaozañ",
+ "terms": "kreizenn adaozañ,kreizenn,adaozañ"
},
"amenity/recycling_container": {
- "name": "Kontener adaozañ"
+ "name": "Kontener adaozañ",
+ "terms": "kontener adaozañ,kontener,adaozañ,poubellenn,endalc'her"
},
"amenity/refugee_site": {
"name": "Kamp repuidi",
"terms": "kamp repuidi"
},
+ "amenity/research_institute": {
+ "name": "Arnodva enklask"
+ },
"amenity/restaurant": {
"name": "Preti",
- "terms": "preti,ti-debriñ"
+ "terms": "preti,ti-debriñ,debriñ,boued,lein,merenn,koan,kafe,merenn-vihan,adkoan,adverenn,gortozenn"
},
"amenity/restaurant/american": {
- "name": "Ti-debriñ amerikan"
+ "name": "Ti-debriñ amerikan",
+ "terms": "preti,ti-debriñ,debriñ,boued,hamburger,fritez,hot-dog,diner,drive-in,grill,steakhouse,amerika,amerikan,norzhamerika,norzhamerikan"
},
"amenity/restaurant/asian": {
- "name": "Preti aziat"
+ "name": "Preti aziat",
+ "terms": "preti,ti-debriñ,debriñ,boued,sina,japan,azia,sushi,aziat,korae,vietnam,thailand,laos,kambodja"
},
- "amenity/restaurant/barbeque": {
- "name": "Ti-debriñ regezer"
+ "amenity/restaurant/barbecue": {
+ "name": "Ti-regeziñ",
+ "terms": "ti-regezer,ti-regeziñ,regezer,preti,ti-debriñ,bbq,grill,suilhañ,rosta,krazañ,regezenn,regeziñ"
},
"amenity/restaurant/chinese": {
- "name": "Preti sinat"
+ "name": "Preti sinat",
+ "terms": "preti,ti-debriñ,debriñ,boued,reter-pellañ,sina,sinat,bro-sina,china,chin"
},
"amenity/restaurant/french": {
"name": "Preti gall",
"terms": "preti,ti-debriñ,ostaleri,gall,galleg,frañs,bro-c'hall"
},
+ "amenity/restaurant/georgian": {
+ "name": "Preti jorjian",
+ "terms": "preti,ti-debriñ,debriñ,boued,europa,jorgian,jorjia,jorjianek"
+ },
"amenity/restaurant/german": {
- "name": "Preti alaman"
+ "name": "Preti alaman",
+ "terms": "preti,ti-debriñ,debriñ,boued,europa,alamagn,alaman"
},
"amenity/restaurant/greek": {
- "name": "Ti-debriñ gresat"
+ "name": "Ti-debriñ gresat",
+ "terms": "preti,ti-debriñ,debriñ,gresian,gres,bro-c'hres,hellaz,kreizdouarel,boued-mor,boued"
},
"amenity/restaurant/indian": {
- "name": "Preti indian"
+ "name": "Preti indian",
+ "terms": "preti,ti-debriñ,debriñ,boued,india,indian"
},
"amenity/restaurant/italian": {
- "name": "Preti italian"
+ "name": "Preti italian",
+ "terms": "preti,ti-debriñ,debriñ,boued,italia,italian,toazennoù,pizza,pasta,kreizdouarel"
},
"amenity/restaurant/japanese": {
- "name": "Preti japanat"
+ "name": "Preti japanat",
+ "terms": "preti,ti-debriñ,debriñ,boued,sushi,japan,japanat,azia,aziat"
+ },
+ "amenity/restaurant/korean": {
+ "name": "Preti korean",
+ "terms": "preti,ti-debriñ,debriñ,boued,korea,korean"
},
"amenity/restaurant/mexican": {
- "name": "Preti mec'hikan"
+ "name": "Preti mec'hikan",
+ "terms": "preti,ti-debriñ,boued,mexik,meksik,mexiko,meksiko,mexikan,mec'hiko,mec'hikan,tacos,fajita"
+ },
+ "amenity/restaurant/noodle": {
+ "terms": "preti,toazennoù,ti-debriñ"
},
"amenity/restaurant/pizza": {
- "name": "Ti-pizza"
+ "name": "Ti-pizza",
+ "terms": "preti,ti-debriñ,debriñ,boued,pizza,italia,italian"
+ },
+ "amenity/restaurant/ramen": {
+ "name": "Preti ramen",
+ "terms": "toazennoù,ramen,preti,ti-debriñ"
},
"amenity/restaurant/seafood": {
- "name": "Preti boued-mor"
+ "name": "Preti boued-mor",
+ "terms": "preti,ti-debriñ,debriñ,boued,boued-mor,mor,krank,kregin,krogen,legestr,chevr,gavr-mor,chifretez,blotvil,istr,blodeg,meskl"
+ },
+ "amenity/restaurant/spanish": {
+ "name": "Preti spagnol",
+ "terms": "spagn,kastilha,kastilhan,spagnol,preti,ti-debriñ"
},
"amenity/restaurant/sushi": {
- "name": "Preti sushi"
+ "name": "Preti sushi",
+ "terms": "preti,ti-debriñ,debriñ,japan,japanat,sushi,suchi,azia,aziat,boued,reter-pellañ,boued-mor"
},
"amenity/restaurant/thai": {
- "name": "Preti thai"
+ "name": "Preti thai",
+ "terms": "preti,ti-debriñ,debriñ,boued,thai,thailandat,thailand,azia,aziat,reter-pellañ,gevred azia,azia ar gevred"
},
"amenity/restaurant/turkish": {
- "name": "Preti turkat"
+ "name": "Preti turkat",
+ "terms": "preti,ti-debriñ,debriñ,boued,kreizdouarel,kebab,turkia,turk,turkat"
+ },
+ "amenity/restaurant/ukrainian": {
+ "name": "Preti ukrainat",
+ "terms": "preti,ti-debriñ,debriñ,boued,ukrainat,ukrainan,ukrainek,ukraina"
},
"amenity/restaurant/vietnamese": {
- "name": "Preti vietnamat"
- },
- "amenity/school": {
- "name": "Tachenn skol"
+ "name": "Preti vietnamat",
+ "terms": "preti,ti-debriñ,debriñ,boued,vietnam,vietnamat,viet nam,azia,aziat,reter-pellañ,gevred azia,azia ar gevred"
},
"amenity/shelter": {
- "name": "Goudor"
+ "name": "Goudor",
+ "terms": "bod,gwasked,goudor"
+ },
+ "amenity/shelter/gazebo": {
+ "terms": "gwelva,gazebo,kiosk,gwere"
+ },
+ "amenity/shelter/lean_to": {
+ "name": "Lab",
+ "terms": "lab,skiber,apoteiz"
+ },
+ "amenity/shelter/picnic_shelter": {
+ "name": "Goudor piknik"
+ },
+ "amenity/shelter/public_transport": {
+ "name": "Goudor treuzdougen foran"
},
"amenity/shower": {
- "name": "Strinkerezh"
+ "name": "Strinkerezh",
+ "terms": "strinkadennoù,strinkadenn"
},
"amenity/smoking_area": {
"name": "Takad Butunerien",
"terms": "butunerien,butun,takad,takad butunerien"
},
"amenity/social_centre": {
- "name": "Kreizenn sokial"
+ "name": "Kreizenn sokial",
+ "terms": "kreizenn sokial"
+ },
+ "amenity/social_facility": {
+ "name": "Diazezadur servijoù sokial"
+ },
+ "amenity/social_facility/assisted_living": {
+ "name": "Ti diskuizh",
+ "terms": "ti ar re gozh,ti diskuizh,ti ar retredidi,annez herberchiañ evit an dud oadet dalc'het,ahdod"
+ },
+ "amenity/social_facility/food_bank": {
+ "name": "Bank boued",
+ "terms": "bank-boued,bank,boued"
+ },
+ "amenity/social_facility/group_home": {
+ "name": "Ti ar re gozh",
+ "terms": "ti ar re gozh,kozh,kozhidi,re gozh,ahded,ehpad,gozhidi,ti kozh,ti ar gozhidi,tud kozh,ti tud kozh,ti an dud kozh"
+ },
+ "amenity/social_facility/homeless_shelter": {
+ "name": "Bod tud hep ti",
+ "terms": "bod tud hep ti"
},
"amenity/social_facility/nursing_home": {
- "name": "Ti-diskuizh"
+ "name": "Ti-diskuizh",
+ "terms": "ti-diskuizh,ti ar re gozh,retred,retredidi"
+ },
+ "amenity/stripclub": {
+ "name": "Strip club",
+ "terms": "klub,strip,diwiskañ,diwiskadenn"
+ },
+ "amenity/studio": {
+ "name": "Studio",
+ "terms": "studio,frammañ,sonerezh"
+ },
+ "amenity/studio/audio": {
+ "name": "Studio sonerezh",
+ "terms": "studio,frammañ,sonerezh,enrollañ"
},
"amenity/studio/radio": {
- "name": "Chadenn radio"
+ "name": "Chadenn radio",
+ "terms": "chadenn,skingomz,radio,savlec'h"
+ },
+ "amenity/studio/television": {
+ "terms": "chadenn,skinwel,tele,savlec'h"
+ },
+ "amenity/studio/video": {
+ "name": "Studio film",
+ "terms": "studio,treiñ,filmañ,film,fiñvskeudenniñ,fiñvskeudenn,fiñvskeudennerezh"
+ },
+ "amenity/taxi": {
+ "name": "Taksilec'h",
+ "terms": "taxi,taksi,lec'h taksi,stand,savlec'h,taksioù"
},
"amenity/telephone": {
- "name": "Pellgomzer"
+ "name": "Pellgomzer",
+ "terms": "telefon,pellgomz,pellgomzer,niver,niverenn,bellgomz"
},
"amenity/theatre": {
"name": "C'hoariva",
- "terms": "c'hoariva,teatr"
+ "terms": "c'hoariva,teatr,pezh c'hoari,c'hoari,aktour,sonerezh,trajedienn,drama,komedienn,fentc'hoari"
},
"amenity/theatre/type/amphi": {
- "name": "Selaouva"
+ "name": "Añfiteatr",
+ "terms": "añfiteatr,kelc'hva,selaouva,amfiteatr"
+ },
+ "amenity/ticket_validator": {
+ "name": "Stamper tikedennoù",
+ "terms": "stamper,gwiriekaer,tikedennoù"
},
"amenity/toilets": {
- "name": "Privezioù"
+ "name": "Privezioù",
+ "terms": "kibelldi,privezioù"
+ },
+ "amenity/toilets/disposal/flush": {
+ "name": "Privezioù gant skarzh-dour",
+ "terms": "skarzh-dour,kas-dour,skarzh dour,kas dour,privezioù"
+ },
+ "amenity/toilets/disposal/pitlatrine": {
+ "name": "Privezioù sec'h",
+ "terms": "privezioù sec'h"
+ },
+ "amenity/toilets/portable": {
+ "name": "Privezioù heloc'h",
+ "terms": "heloc'h,hezoug,distag,loc'h-diloc'h,fiñv,war-fiñv,war vale,red,privezioù"
},
"amenity/townhall": {
"name": "Ti-kêr",
"terms": "ti-kêr,maerdi"
},
"amenity/townhall/city": {
- "name": "Ti-kêr"
+ "name": "Ti-kêr",
+ "terms": "ti-kêr,maerdi,maer,adti-kêr"
},
- "amenity/university": {
- "name": "Tachenn skol-veur"
+ "amenity/trolley_bay": {
+ "name": "Goudor karrigelloù",
+ "terms": "goudor,gwasked,karrigelloù,porzh"
+ },
+ "amenity/vacuum_cleaner": {
+ "name": "Sunerezioù evit naetaat ar c'hirri-tan",
+ "terms": "sunerez,sunerezioù"
+ },
+ "amenity/vehicle_inspection": {
+ "name": "Kontroll teknikel",
+ "terms": "kontroll teknikel"
},
"amenity/vending_machine": {
"name": "Dasparzher emgefre",
"terms": "dasparzher,ingaler,emgefre,emgefreek"
},
"amenity/vending_machine/bicycle_tube": {
- "name": "Dasparzher bouzellennoù-rod"
+ "name": "Dasparzher bouzellennoù-rod",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,bandennoù-rod,marc'h-houarn"
+ },
+ "amenity/vending_machine/bread": {
+ "name": "Dasparzher bara",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,bara,baguette,bagetez"
+ },
+ "amenity/vending_machine/cigarettes": {
+ "name": "Dasparzher butunennoù",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,butun,sigaretenn,butunenn"
},
"amenity/vending_machine/coffee": {
- "name": "Greg emgefreek"
+ "name": "Greg emgefreek",
+ "terms": "greg,emgefre,dasparzher,ingaler,kafe,te,chokolad,dour,laezh,evaj,evaj tomm,emgefreek"
+ },
+ "amenity/vending_machine/condoms": {
+ "name": "Dasparzher stevelloù",
+ "terms": "ingaler,dasparzher,kondom,stevell,tog-lost,golo-lost,rev,revel"
+ },
+ "amenity/vending_machine/drinks": {
+ "name": "Ingaler evajoù",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,evaj,evachoù,evajoù,chug,dour,kafe,te,soda"
+ },
+ "amenity/vending_machine/eggs": {
+ "name": "Ingaler vioù",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,vi,vioù"
+ },
+ "amenity/vending_machine/excrement_bags": {
+ "name": "Dasparzher seier kaoc'h-ki",
+ "terms": "dasparzher seier kaoc'h-ki,ingaler seier kaoc'h-ki,sac'higoù,seier,sac'h,gaoc'h-ki,gaoc'h,kaoc'h,ki,chas,kon"
},
"amenity/vending_machine/feminine_hygiene": {
- "name": "Ingaler produioù evit an amzerioù"
+ "name": "Ingaler produioù evit an amzerioù",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,produioù,amzerioù,mizioù,stouvoù,stouv,serviedenn yec'hedus,serviedenn"
},
"amenity/vending_machine/food": {
- "name": "Dasparzher boued"
+ "name": "Dasparzher boued",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,boued,madigoù"
+ },
+ "amenity/vending_machine/food/snacks": {
+ "name": "Dasparzher lipouzerezhioù hag adpredoù",
+ "terms": "dasparzher lipouzerezhioù hag adpredoù,dasparzher,ingaler,lipouzerezhioù,madigoù,lipaj,adpredoù,adverenn,adpred,adkoan,snack,boued,kolasion,askoan,gortozenn,emgefreek,emgefre"
+ },
+ "amenity/vending_machine/fuel": {
+ "name": "Dasparzher esañs",
+ "terms": "dasparzher esañs,dasparzher trelosk,dasparzher dour-tan"
},
"amenity/vending_machine/ice_cream": {
- "name": "Dasparzher dienn-skorn"
+ "name": "Dasparzher dienn-skorn",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,dienn-skorn,koaven-skornet,skornenn,skorn,skornet"
+ },
+ "amenity/vending_machine/ice_cubes": {
+ "name": "Ingaler skorn",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,skorn,skornennoù,skornenn"
},
"amenity/vending_machine/newspapers": {
"name": "Dasparzher kazetennoù",
"terms": "kazetenn,dasparzher,ingaler"
},
"amenity/vending_machine/parking_tickets": {
- "name": "Ingaler tikedennoù parkañ"
+ "name": "Ingaler tikedennoù parkañ",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,parklec'h,parkañ,tikedenn,tikedennoù"
},
"amenity/vending_machine/pizza": {
- "name": "Dasparzher pizzaoù"
+ "name": "Dasparzher pizzaoù",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,pidza,pizza,pizzaoù"
+ },
+ "amenity/vending_machine/public_transport_tickets": {
+ "name": "Ingaler teulioù treuzdougen",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,parkañ,parklec'h,tikedenn,teul,treuzdougen"
+ },
+ "amenity/vending_machine/stamps": {
+ "name": "Dasparzher timbroù",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,timbr,timbroù,post,lizher,lizhiri"
+ },
+ "amenity/vending_machine/sweets": {
+ "name": "Dasparzher madigoù",
+ "terms": "emgefre,dasparzher,ingaler,emgefreek,boued,madigoù,lipouzerezh,lipaj,dasparzher madigoù,ingaler madigoù"
+ },
+ "amenity/veterinary": {
+ "name": "Mezeg-loened",
+ "terms": "klinikenn,ospital,loened,anevaled,mezeg,mezegez,milchin,medisin,medisinez,doktor"
+ },
+ "amenity/veterinary_pharmacy": {
+ "name": "Apotikerezh evit al loened",
+ "terms": "apotikerezh evit al loened"
+ },
+ "amenity/waste/dog_excrement": {
+ "name": "Poubellenn gaoc'h-ki",
+ "terms": "poubellenn gaoc'h-ki,kaoc'h-ki,kaoc'h"
},
"amenity/waste_basket": {
- "name": "Poubellenn-straed"
+ "name": "Poubellenn",
+ "terms": "poubellenn,pod-lastez"
+ },
+ "amenity/waste_disposal": {
+ "name": "Bailh lastez",
+ "terms": "boest,poubellenn,lastez,pod-lastez,bailh,kestenn"
},
"area": {
- "name": "Takad"
+ "name": "Takad",
+ "terms": "takad,lieskogn,lieskorn"
+ },
+ "area/footway": {
+ "name": "Takad hent kerzhet",
+ "terms": "hent,gwenodenn,pourmenadenn,kerzhet,kerzhourien,bale,hent-bale,takad"
},
"area/highway": {
- "name": "Takad hent"
+ "name": "Takad hent",
+ "terms": "takad hent,tachenn"
},
"attraction/amusement_ride": {
"name": "Manej"
},
+ "attraction/animal": {
+ "name": "Liorzhig-loened",
+ "terms": "kloz,lorzhig-loened,loened,enkloz,zoo,liorzh"
+ },
+ "attraction/big_wheel": {
+ "name": "Rod vras",
+ "terms": "rod vras"
+ },
"attraction/bumper_car": {
- "name": "Kirri tos-tos"
+ "name": "Kirri tos-tos",
+ "terms": "tos-tos,kirri,karr,stok,karr-stok,kirri-stok"
+ },
+ "attraction/bungee_jumping": {
+ "name": "Lammat gant ur stirenn",
+ "terms": "lammat gant ur stirenn,lamm,lammat,stirenn,bungee jumping"
},
"attraction/carousel": {
- "name": "Kezeg-koad"
+ "name": "Kezeg-koad",
+ "terms": "kazeg-vezevenn,kezeg-koad,manej,kezeg-mezevenn"
+ },
+ "attraction/kiddie_ride": {
+ "name": "Manej evit bugale"
},
"attraction/maze": {
- "name": "Milendall"
+ "name": "Milendall",
+ "terms": "milendall,mil-hent-dall,troielleg"
+ },
+ "attraction/pirate_ship": {
+ "name": "Lestr morlaeron",
+ "terms": "morbreizher,morlaer,morlaered,bag,lestr,bigi,c'hoari,dudi,tachenn c'hoari,park dudi,park c'hoari,tourist,touristel"
+ },
+ "attraction/roller_coaster": {
+ "name": "Karr sav-disav",
+ "terms": "sav-disav,kirri sav-disav,karr sav-disav,sav-diskenn"
},
"attraction/train": {
"name": "Tren bihan touristel",
"terms": "tren bihan touristel"
},
"attraction/water_slide": {
- "name": "Ruz-dour"
+ "name": "Ruz-revr-dour",
+ "terms": "ruz-revr dour,ruz-revr,dour,tobogan,tobogan-dour"
+ },
+ "barrier": {
+ "name": "Harz"
+ },
+ "barrier/block": {
+ "name": "Bloc'h",
+ "terms": "bloc'h,bloc'had,karreg,maen"
+ },
+ "barrier/bollard": {
+ "name": "Post",
+ "terms": "post"
+ },
+ "barrier/bollard_line": {
+ "name": "Steudad postoù",
+ "terms": "renkad,steudad,postoù,peulioù"
},
"barrier/border_control": {
- "name": "Post-harzoù"
+ "name": "Post-harzoù",
+ "terms": "post-harzoù"
},
"barrier/chain": {
- "name": "Chadenn"
+ "name": "Chadenn",
+ "terms": "chadenn"
+ },
+ "barrier/city_wall": {
+ "name": "Moger-dro",
+ "terms": "moger-dro"
},
"barrier/ditch": {
"name": "Klaz",
@@ -2633,11 +4854,32 @@
"name": "Garzh",
"terms": "garzh"
},
+ "barrier/kerb": {
+ "name": "Ker ar riblenn-straed",
+ "terms": "bord,riblenn,riblenn-straed,trotouer,bevenn"
+ },
"barrier/log": {
- "name": "Gwezenn kouezet"
+ "name": "Gwezenn kouezhet",
+ "terms": "gwezenn kouezhet,skoilh"
+ },
+ "barrier/retaining_wall": {
+ "name": "Moger-harp",
+ "terms": "moger-harp"
+ },
+ "barrier/stile": {
+ "name": "Skalier",
+ "terms": "skalier"
+ },
+ "barrier/turnstile": {
+ "name": "Draf-tro"
},
"barrier/wall": {
- "name": "Moger"
+ "name": "Moger",
+ "terms": "mur,moger"
+ },
+ "barrier/wall/noise_barrier": {
+ "name": "Mur eneptrouz",
+ "terms": "trouz,enep-trouz,eneptrouz,didrouz,mur,moger,chaoser"
},
"barrier/yes": {
"name": "Harz (n'eo ket spisaet)"
@@ -2646,21 +4888,39 @@
"name": "Harzoù"
},
"boundary/administrative": {
- "name": "Harzoù melestradurel"
+ "name": "Harzoù melestradurel",
+ "terms": "harz,harzoù,frontier,bevenn,melestradurel,melestradurezh,amaezhel"
+ },
+ "boundary/hazard": {
+ "name": "Takad dañjerus",
+ "terms": "leur,takad,dañjer,dañjerus,arvarus,lec'h"
},
"building": {
- "name": "Savadur"
+ "name": "Savadur",
+ "terms": "savadur,ti,batimant,savidigezh"
},
"building/apartments": {
- "name": "Kendi"
+ "name": "Kendi",
+ "terms": "ranndi,kendi,tiez,tioù,savadur"
+ },
+ "building/bakehouse": {
+ "name": "Forn-vara",
+ "terms": "forn,bara,forn-vara,forn vara"
+ },
+ "building/boathouse": {
+ "name": "Karrdi ar bigi",
+ "terms": "karrdi ar bigi,karrdi ar bagoù,hangar,bag,bagoù,bigi,sanailh,lab,skiber"
},
"building/bunker": {
"name": "Bunker"
},
"building/cabin": {
- "name": "Lochell",
+ "name": "Lochenn",
"terms": "loch,lochenn,kabanenn,log,logell,logenn,lojell"
},
+ "building/carport": {
+ "name": "Gwasked kirri"
+ },
"building/cathedral": {
"name": "Iliz-veur",
"terms": "iliz-veur"
@@ -2673,31 +4933,48 @@
"name": "Iliz",
"terms": "iliz"
},
+ "building/civic": {
+ "name": "Aveadur publik",
+ "terms": "aveerezh,aveadenn,aveadur,foran,publik"
+ },
"building/college": {
- "name": "Savadur deskadurezh-uhel"
+ "name": "Savadur deskadurezh-uhel",
+ "terms": "deskadurezh,deskadurezh uhel,skol-veur,savadur,ti"
},
"building/commercial": {
- "name": "Savadur koñvers"
+ "name": "Savadur koñvers",
+ "terms": "koñvers,kenwerzh,savadur,ti"
},
"building/construction": {
- "name": "Savadur war ober"
+ "name": "Savadur war ober",
+ "terms": "o sevel,sevel,takad,savidigezh,labourioù,labour,savadenn,savadur,tisaverezh,saver,tisaver,batis,ti,kendi,ranndi,konstruidigezh,savadurezh,tiadur,ober,obererezh,war ober,oc'h ober,o vezañ savet,o vezañ krouet"
+ },
+ "building/cowshed": {
+ "name": "Kraou-saout",
+ "terms": "kraou,saout,chatal,kraou-saout"
+ },
+ "building/detached": {
+ "name": "Ti distag",
+ "terms": "ti distag"
},
"building/dormitory": {
"name": "Kousklec'h",
"terms": "kousklec'h,kouskva,hunva"
},
"building/entrance": {
- "name": "Mont-tre / Mont-maez"
+ "name": "Mont-tre / mont-maez"
},
"building/farm": {
"name": "Ti-feurm",
- "terms": "ti-feurm,atant"
+ "terms": "feurm,tiegezh,ti,ti-feurm,atant,labour-douar,kêr"
},
"building/farm_auxiliary": {
- "name": "Savadur atant"
+ "name": "Savadur atant",
+ "terms": "savadur,feurm,tiegezh,ti,ti-feurm,atant,labour-douar,savidigezh"
},
"building/fire_station": {
- "name": "Kreizenn-sikour"
+ "name": "Kreizenn-sikour",
+ "terms": "kreizenn-sikour,kreizenn sikour,pomperien"
},
"building/garage": {
"name": "Karrdi",
@@ -2706,77 +4983,144 @@
"building/garages": {
"name": "Karrdioù"
},
+ "building/ger": {
+ "name": "Yourt",
+ "terms": "yourt,yurt"
+ },
"building/greenhouse": {
"name": "Ti-gwer",
"terms": "ti-gwer"
},
+ "building/hangar": {
+ "name": "Sanailh"
+ },
"building/hospital": {
"name": "Ospital",
"terms": "ospital,klañvdi"
},
"building/hotel": {
- "name": "Leti"
+ "name": "Leti",
+ "terms": "ostaleri,otel,hotel,leti,savadur,ti"
},
"building/house": {
- "name": "Ti"
+ "name": "Ti",
+ "terms": "savadur,ti,batimant,savidigezh,kêr"
+ },
+ "building/house/terraced": {
+ "name": "Ti e kêr",
+ "terms": "ti e kêr,ti e steudad,ostaleri vihan,ostel,otel,leti bihan"
},
"building/hut": {
- "name": "Log"
+ "name": "Log",
+ "terms": "logell,loch,log,lochenn,kabin,hut,kabanenn,logenn,ti-plouz"
},
"building/industrial": {
- "name": "Savadur greantel"
+ "name": "Savadur greantel",
+ "terms": "uzinoù,greantel,industriel,takad,tachenn,tachad"
},
"building/kindergarten": {
- "name": "Savadur skol-vamm"
+ "name": "Savadur skol-vamm",
+ "terms": "skol,skol kentañ derez,kentañ derez,skol-vamm,skol vamm,savadur,ti"
+ },
+ "building/manufacture": {
+ "name": "Savadur produerezh greantel"
},
"building/mosque": {
"name": "Moskeenn",
"terms": "moskeenn"
},
"building/office": {
- "name": "Burevioù"
+ "name": "Burevioù",
+ "terms": "savadur,burev"
},
"building/outbuilding": {
"name": "Pourpez"
},
+ "building/pavilion": {
+ "name": "Pavilhon"
+ },
"building/public": {
- "name": "Savadur foran"
+ "name": "Savadur foran",
+ "terms": "foran,publik,savadur,savadur publik"
},
"building/residential": {
- "name": "Savadur annez"
+ "name": "Savadur annez",
+ "terms": "ti,tiez,ranndi,annez,savadur"
},
"building/retail": {
- "name": "Savadur kenwerzhel"
+ "name": "Savadur kenwerzhel",
+ "terms": "kenwerzh,koñvers,ti,savadur"
+ },
+ "building/riding_hall": {
+ "name": "Aren marc'hegezh diabarzh",
+ "terms": "aren marc'hegezh diabarzh,aren,leur,stadion,marc'hegezh,marc'hegerezh,diabarzh"
},
"building/roof": {
- "name": "Toenn"
+ "name": "Toenn",
+ "terms": "to,toenn"
},
"building/ruins": {
- "name": "Dismantroù ur savadur"
+ "name": "Dismantroù ur savadur",
+ "terms": "dismantroù,savadur,ti,freuz,diskaret,distrujet"
},
"building/school": {
- "name": "Savadur skol"
+ "name": "Savadur skol",
+ "terms": "deskadurezh,savadur,skol"
+ },
+ "building/semidetached_house": {
+ "name": "Ti ambion"
+ },
+ "building/service": {
+ "name": "Savadur servij",
+ "terms": "savadur servij"
},
"building/shed": {
"name": "Loch"
},
+ "building/stable": {
+ "name": "Kraou-kezeg"
+ },
"building/stadium": {
- "name": "Stad"
+ "name": "Stad",
+ "terms": "stad,stadion,sportva"
+ },
+ "building/static_caravan": {
+ "name": "Ti heloc'h",
+ "terms": "ti heloc'h,ti treuzdougadus,karavanenn,ti"
+ },
+ "building/sty": {
+ "name": "Kraou-moc'h",
+ "terms": "kraou,kraou-moc'h"
},
"building/synagogue": {
- "name": "Sinagogenn"
+ "name": "Sinagogenn",
+ "terms": "sinagogenn,savadur sinagogenn"
},
"building/temple": {
- "name": "Templ"
+ "name": "Templ",
+ "terms": "templ"
+ },
+ "building/terrace": {
+ "name": "Steudad tiez e kêr",
+ "terms": "ti e kêr,ti e steudad,ostaleri vihan,ostel,otel,leti bihan,rezad,renkad,steudennad"
},
"building/train_station": {
"name": "Ti-gar"
},
+ "building/transportation": {
+ "name": "Savadur an treuzdougen foran"
+ },
"building/university": {
- "name": "Savadur skol-veur"
+ "name": "Savadur skol-veur",
+ "terms": "deskadurezh,deskadurezh uhel,skol-veur,savadur,ti"
+ },
+ "building/warehouse": {
+ "name": "Sanailh",
+ "terms": "etrepaouez,sanailh,hangar"
},
"building_part": {
- "name": "Rann ur savadur"
+ "name": "Rann ur savadur",
+ "terms": "darn,lodenn,rann,savadur,ti,perzh"
},
"building_point": {
"name": "Savadur"
@@ -2788,44 +5132,255 @@
"club": {
"name": "Klub"
},
+ "club/scout": {
+ "name": "Strollad skout",
+ "terms": "strollad,skout,skouted,skoutelezh"
+ },
"club/sport": {
- "name": "Klub sport"
+ "name": "Klub sport",
+ "terms": "sport,sportoù,dudi,c'hoari,klud,kleub,club,strollad"
+ },
+ "craft": {
+ "name": "Artizanerezh",
+ "terms": "artizanelezh,artizanerezh,artizanalezh,artizanel,dornvicherourezh,dornvicherelezh,dornvichererezh"
+ },
+ "craft/basket_maker": {
+ "name": "Frader paneroù",
+ "terms": "oberour,oberer,oberourez,obererez,paner,paneroù,farder,farderez,artizan,panerer,panererez"
+ },
+ "craft/beekeeper": {
+ "name": "Gwenaner",
+ "terms": "ruskenn,gwenan,mel,gwenaner"
},
"craft/blacksmith": {
"name": "Govel",
"terms": "govel"
},
+ "craft/boatbuilder": {
+ "name": "Saver-bigi",
+ "terms": "saver-bigi"
+ },
+ "craft/bookbinder": {
+ "name": "Koubler-levrioù",
+ "terms": "koubler-levrioù,koubler"
+ },
+ "craft/brewery": {
+ "name": "Breserezh artizanel",
+ "terms": "breserezh artizanel,dorn-vicherel"
+ },
+ "craft/carpenter": {
+ "name": "Kalvez",
+ "terms": "kalvez,kilvizerezh,koad,koadaj"
+ },
+ "craft/caterer": {
+ "name": "Tineller pretiour",
+ "terms": "tineller pretiour,tineller,pretiour"
+ },
"craft/chimney_sweeper": {
- "name": "Skarzher"
+ "name": "Skarzher-siminalioù",
+ "terms": "skarzher-siminalioù,dihuzilier,ramone"
+ },
+ "craft/cleaning": {
+ "name": "Servij naetaat",
+ "terms": "servij naetaat"
},
"craft/clockmaker": {
"name": "Horolajerezh",
"terms": "horolaj,eurier,moñcher,stal,montr,pandulenn,dihuner,horolajerezh"
},
+ "craft/confectionery": {
+ "name": "Koñfizer",
+ "terms": "koñfizer,koñfizerien,lipouzer,farder madigoù,koñfizerez,koñfizerezed,lipouzerez,farderez vadigoù,lipouzerezh,koñfizerezh"
+ },
"craft/distillery": {
- "name": "Strilherezh"
+ "name": "Strilherezh",
+ "terms": "strilherezh,brasaerezh"
+ },
+ "craft/dressmaker": {
+ "name": "Kemener",
+ "terms": "kemener"
},
"craft/electrician": {
- "name": "Tredaner"
+ "name": "Tredaner",
+ "terms": "tredaner,tredanerez"
},
"craft/gardener": {
- "name": "Liorzhour"
+ "name": "Liorzhour",
+ "terms": "liorzhour,liorzher,jardiner,liorzhourez,liorzherez,jardinerez,jardriner,jardrinerez"
+ },
+ "craft/glaziery": {
+ "name": "Gweraer",
+ "terms": "gwer,gweraer,gweraerez"
+ },
+ "craft/handicraft": {
+ "name": "Atalier artizanelezh",
+ "terms": "labourva,artizanelezh,artizanerezh,artizanalezh,artizanel,dornvicherourezh,dornvicherelezh,dornvichererezh,ti-labour,atalier,stal-labour,stal,dornvicherel"
+ },
+ "craft/hvac": {
+ "name": "Paotr/plac'h an tommerezh",
+ "terms": "paotr/plac'h an tommerezh,paotr an tommerezh"
},
"craft/joiner": {
- "name": "Kalvez"
+ "name": "Kalvez",
+ "terms": "kalvez,kilvizien,prenestrer,munuzer,kilvizerezh,munuzerezh,amunuzerezh,junter"
+ },
+ "craft/key_cutter": {
+ "name": "Alc'hwezer",
+ "terms": "alc'hwezer"
},
"craft/locksmith": {
"name": "Alc'hwezerezh"
},
+ "craft/metal_construction": {
+ "name": "Direr",
+ "terms": "direr"
+ },
"craft/painter": {
- "name": "Livour"
+ "name": "Livour",
+ "terms": "liver,livour,livouriezh,liverez,livourez"
+ },
+ "craft/photographer": {
+ "name": "Luc'hskeudenner",
+ "terms": "luc'hskeudenner,fotograf,fotografer,tenner,tennour,tenner-poltridi,tenner-poltredoù,tennour-poltridi,tennour-poltredoù"
+ },
+ "craft/photographic_laboratory": {
+ "name": "Labourva luc'hskeudennerezh",
+ "terms": "labourva,luc'hskeudennerezh,labourva luc'hskeudennerezh,fotografiezh,arnodva"
+ },
+ "craft/plasterer": {
+ "name": "Plastrer",
+ "terms": "plastr,plastrañ,plastrer,plastrerez,mañsoner,mañsonerez"
+ },
+ "craft/plumber": {
+ "name": "Plomer",
+ "terms": "plomer"
+ },
+ "craft/pottery": {
+ "name": "Poder",
+ "terms": "poder,poderezh"
+ },
+ "craft/rigger": {
+ "name": "Strammour",
+ "terms": "strammour"
+ },
+ "craft/roofer": {
+ "name": "Toer",
+ "terms": "toer"
+ },
+ "craft/saddler": {
+ "name": "Dibrer",
+ "terms": "dibr,dibrerez,dibrer,dibrerezh"
+ },
+ "craft/sailmaker": {
+ "name": "Gouelier",
+ "terms": "gouelier"
+ },
+ "craft/sawmill": {
+ "name": "Heskennerezh",
+ "terms": "heskennerezh,heskenner,mestr un heskennerezh"
+ },
+ "craft/scaffolder": {
+ "name": "Saver chafodajoù",
+ "terms": "saver chafodajoù,chafod,chafoder,chafodoù"
},
"craft/sculptor": {
"name": "Kizeller",
"terms": "kizeller,kizellour,skulter,skultour,maengizeller"
},
+ "craft/shoemaker": {
+ "name": "Botaouer",
+ "terms": "botaouer,kereon,kere,kereour"
+ },
+ "craft/signmaker": {
+ "name": "Paneller",
+ "terms": "paneller,panellour,farder,oberour,panelloù"
+ },
+ "craft/stonemason": {
+ "name": "Bener-maen",
+ "terms": "bener-maen,bener"
+ },
+ "craft/tailor": {
+ "name": "Kemener"
+ },
+ "craft/tiler": {
+ "name": "Karreller",
+ "terms": "kemener,kemenerez,kemenerezh"
+ },
+ "craft/tinsmith": {
+ "name": "Staener",
+ "terms": "staener"
+ },
+ "craft/upholsterer": {
+ "name": "Tapiser",
+ "terms": "tapiser,pallennoù,pallenn"
+ },
+ "craft/watchmaker": {
+ "name": "Horolajer",
+ "terms": "horolajer,eurier,eurierezh,horolajerezh"
+ },
+ "craft/window_construction": {
+ "name": "Prenestrer",
+ "terms": "prenestr,krouer,farder,saver,krouiñ,aozañ,sevel,stal,kalvez,kilvizerezh,munuzer,munuzerezh"
+ },
+ "craft/winery": {
+ "name": "Kav-gwin",
+ "terms": "kav-gwin,keller,selier,kav,gwin,chistr,sistr"
+ },
"demolished/building": {
- "name": "Savadur distrujet nevez zo"
+ "name": "Savadur nevez-distrujet"
+ },
+ "disc_golf/basket": {
+ "name": "Paner pladenn-c'holf",
+ "terms": "paner pladenn-c'holf,pladenn-c'holf,paner,baskodenn"
+ },
+ "disc_golf/hole": {
+ "name": "Toull pladenn-c'holf",
+ "terms": "toull,toull golf,golf,pladenn-c'holf"
+ },
+ "disused/amenity": {
+ "name": "Aveadur dilezet"
+ },
+ "disused/railway": {
+ "name": "Elfenn hent-houarn dilezet"
+ },
+ "disused/shop": {
+ "name": "Stal dilezet"
+ },
+ "education": {
+ "name": "Savadur deskadurezh",
+ "terms": "skol,deskadurezh,diazezadur,savadur,deskiñ"
+ },
+ "education/college": {
+ "name": "Tachenn skol deskadurezh uhel",
+ "terms": "skol deskadurezh uhel,skol-veur,deskadurezh uhel,tachenn,takad"
+ },
+ "education/dancing_school": {
+ "name": "Skol-dañs",
+ "terms": "skol,dañs,arzoù,skol-dañs,koroll"
+ },
+ "education/driving_school": {
+ "name": "Skol-vleinañ",
+ "terms": "skol,bleinañ,skol vleinañ"
+ },
+ "education/kindergarten": {
+ "name": "Tachenn skol-vamm",
+ "terms": "skol,skol kentañ derez,kentañ derez,skol-vamm,skol vamm,tachenn,takad"
+ },
+ "education/language_school": {
+ "name": "Skol yezhoù",
+ "terms": "yezh,yezhoù,langaj,skol,skol-veur,lise,skolaj"
+ },
+ "education/music_school": {
+ "name": "Skol sonerezh",
+ "terms": "skol,muzik,sonerezh"
+ },
+ "education/school": {
+ "name": "Tachenn skol",
+ "terms": "tachenn,skol,takad,skolaj,lise"
+ },
+ "education/university": {
+ "name": "Tachenn skol-veur",
+ "terms": "takad,tachenn,skol-veur"
},
"embankment": {
"name": "Savenn-douar"
@@ -2835,7 +5390,8 @@
"terms": "lec'h emzastum difrae"
},
"emergency/defibrillator": {
- "name": "Difibrilator"
+ "name": "Difibrilator",
+ "terms": "difibrilator"
},
"emergency/fire_extinguisher": {
"name": "Mouger-tan",
@@ -2849,6 +5405,26 @@
"name": "Genoù tan-gwall",
"terms": "genoù tan-gwall"
},
+ "emergency/fire_hydrant/underground": {
+ "name": "Genoù tan-gwall dindandouar",
+ "terms": "genoù tan-gwall dindandouar"
+ },
+ "emergency/fire_service_inlet": {
+ "name": "Kolonenn sec'h",
+ "terms": "kolonenn sec'h"
+ },
+ "emergency/first_aid_kit": {
+ "name": "Trousenn prederioù kentañ",
+ "terms": "prederioù kentañ,sikourioù kentañ,trousenn brederiañ,kit,sac'hig-yec'hed,sac'h-yec'hed"
+ },
+ "emergency/life_ring": {
+ "name": "Boue saveteiñ",
+ "terms": "boue,saveteiñ"
+ },
+ "emergency/lifeguard": {
+ "name": "Mestr-neuñvier",
+ "terms": "mestr-neuñv,mestr-neuñvier,saveteer"
+ },
"emergency/phone": {
"name": "Pellgomz difrae"
},
@@ -2856,65 +5432,143 @@
"name": "C'hwitellerez"
},
"entrance": {
- "name": "Mont-tre / Mont-maez"
+ "name": "Mont-tre / mont-maez"
},
"entrance/emergency": {
- "name": "Ermaez difrae"
+ "name": "Ermaez difrae",
+ "terms": "ermaez,er-maez,difrae,dor derc'hel"
},
"entrance/main": {
"name": "Moned pennañ"
},
"ford": {
- "name": "Roudouz"
+ "name": "Roudouz",
+ "terms": "roudouz,roudour"
},
"ford_line": {
"name": "Roudouz"
},
"golf/bunker": {
- "name": "Foz (golf)"
+ "name": "Foz (golf)",
+ "terms": "traezh,golf,foz,trap,griped"
+ },
+ "golf/cartpath": {
+ "name": "Hent karrigelloù-golf",
+ "terms": "karrigell,karrigenn,karr,kirri,hent,gwenodenn,roud,roudenn,karr golf,karr-golf,kirri golf,kirri-golf"
+ },
+ "golf/clubhouse": {
+ "name": "Ti-klub golf",
+ "terms": "club house,club-house,clubhouse,ti-klub,ti-kleub,ti ar c'hlub,ti ar c'hleub,oaled,golf,ti-golf,ti klub golf,bod,klub golf"
},
"golf/fairway": {
- "name": "Kanol-vor",
- "terms": "kanol-vor,naoz"
+ "name": "Fairway",
+ "terms": "fairway,kanol,golf"
},
"golf/green": {
- "name": "Glazenn bleustriñ"
+ "name": "Glazenn bleustriñ",
+ "terms": "glazenn bleustriñ,green"
},
"golf/hole": {
- "name": "Toull"
+ "name": "Toull",
+ "terms": "toull,toull golf,golf"
+ },
+ "golf/path": {
+ "name": "Gwenodenn tachenn golf",
+ "terms": "gwenodenn golf,gwenodenn,hent,golf"
},
"golf/tee": {
- "name": "Torgenn deroù"
+ "name": "Torgenn deroù",
+ "terms": "torgenn deroù,deroù"
},
"healthcare": {
- "name": "Pennospital"
+ "name": "Pennospital",
+ "terms": "pennospital,ospital,yec'hed,mezekniezh,medisinerezh"
},
"healthcare/alternative": {
- "name": "Mezegiezh dazeilat"
+ "name": "Mezegiezh dazeilat",
+ "terms": "mezegiezh dazeilat,mezekniezh,medisinerezh,alternativel,dazeilat,all,yec'hed"
+ },
+ "healthcare/alternative/acupuncture": {
+ "name": "Akupoentour",
+ "terms": "nadozwanerezh,nadozwaner,akupoentour,nadozwanerez,akupoentourez"
},
"healthcare/alternative/chiropractic": {
- "name": "Kiropraktour"
+ "name": "Kiropraktour",
+ "terms": "kiropraktour,kiropraktor,kiropraktourez,aozour,aozer,aozourez,aozerez,kiropraksiezh,kiropraktiezh"
+ },
+ "healthcare/alternative/homeopathy": {
+ "name": "Homeopat",
+ "terms": "homeopatiezh,homeopat"
+ },
+ "healthcare/alternative/naturopathy": {
+ "name": "Naturopat",
+ "terms": "naturopat,naturopatiezh"
+ },
+ "healthcare/alternative/osteopathy": {
+ "name": "Osteopat",
+ "terms": "osteopat,osteopatiezh,doktor,mezeg,milchin,medisin,askornour"
+ },
+ "healthcare/audiologist": {
+ "name": "Klevedour",
+ "terms": "klevedour,aodiologour"
+ },
+ "healthcare/birthing_center": {
+ "name": "Gwiliouderezh",
+ "terms": "gwiliouderezh,ti-gwilioudiñ,mammdi"
+ },
+ "healthcare/blood_donation": {
+ "name": "Kreizenn reiñ gwad",
+ "terms": "kreizenn reiñ gwad,reiñ gwad,a-youl vat,gwad"
},
"healthcare/dentist/orthodontics": {
- "name": "Kabined ortodontiezh"
+ "name": "Kabined ortodontiezh",
+ "terms": "kabined ortodontiezh,ortodontiezh,denteeunañ,denteeunerezh,ortodontek"
+ },
+ "healthcare/hospice": {
+ "name": "Ospis",
+ "terms": "ospis,ospiti,herberc'hdi,ospital"
},
"healthcare/laboratory": {
- "name": "Arnodva dielfennadurioù mezegel"
+ "name": "Arnodva dielfennadurioù mezegel",
+ "terms": "arnodva dielfennadurioù mezegel,dielfennañ,analizañ,imbourc'hva,mezegel,mezekniezh,medisinerezh,mezegiezh,ti-arnodiñ,labourva"
+ },
+ "healthcare/midwife": {
+ "name": "Amiegez",
+ "terms": "amiegez,amieg,matronez,babig,gwilioud"
+ },
+ "healthcare/occupational_therapist": {
+ "name": "Ergoterapeutour",
+ "terms": "ergoterapeutour,ergoterapeut,ergoterapour"
+ },
+ "healthcare/optometrist": {
+ "name": "Optometrour",
+ "terms": "optometrour,lunedour,lagadour,optometriezh,optometrourez,lunedourez,lagadourez"
},
"healthcare/physiotherapist": {
- "name": "Fizikyac'haour"
+ "name": "Fizikyac'haour",
+ "terms": "fizikyac'haour,kineziterapeut,kineziterapour,kine"
+ },
+ "healthcare/podiatrist": {
+ "name": "Podologour",
+ "terms": "podologour,ficher-treid,podologiezh"
},
"healthcare/psychotherapist": {
- "name": "Bredyac'haour"
+ "name": "Bredyac'haour",
+ "terms": "bredvezeg,bredyac'haour,psikoterapour"
},
"healthcare/speech_therapist": {
- "name": "Mezeg-al-lavar"
+ "name": "Mezeg-al-lavar",
+ "terms": "ortofonist,mezeg-al-lavar,ortofoniezh,ortofonour,ortofonourez,ortofonistez,mezegez-al-lavar,milchin-al-lavar,medisin-al-lavar,doktor-al-lavar,milchinez-al-lavar,medisinez-al-lavar,doktorez-al-lavar"
},
"healthcare/yes": {
"name": "Pennospital (n'eo ket spisaet)"
},
"highway": {
- "name": "Elfenn ar Gourhent"
+ "name": "Elfenn ur gourhent"
+ },
+ "highway/bridleway": {
+ "name": "Gwenodenn varc'hegezh",
+ "terms": "gwenodenn varc'hegezh,marc'hegezh,hent,mirc'hi,marc'h"
},
"highway/bus_stop": {
"name": "Arsav Bus"
@@ -2923,84 +5577,227 @@
"name": "Forzh bus",
"terms": "treuzdougen,treuzdougen foran,bus,karr-boutin,busway,forzh,hent"
},
+ "highway/construction": {
+ "name": "Hent war ober",
+ "terms": "o sevel,sevel,savidigezh,labourioù,labour,konstruidigezh,ober,obererezh,war ober,oc'h ober,o vezañ savet,o vezañ krouet,hent,gourhent,hent-tizh,straed,ru,banell,alez,bali,boulouard"
+ },
+ "highway/corridor": {
+ "name": "Trepas diabarzh",
+ "terms": "trepas diabarzh"
+ },
+ "highway/crossing": {
+ "name": "Treuzenn gerzhourien",
+ "terms": "treuzenn,kerzhourien,kerzhet,kerzherien,gerzhourien,gerzhet,gerzherien"
+ },
+ "highway/crossing/informal": {
+ "name": "Treuzenn nann-ofisiel"
+ },
+ "highway/crossing/traffic_signals": {
+ "name": "Treuzenn gerzhourien gant gouleier heñchañ",
+ "terms": "treuzenn,kerzhourien,kerzhet,kerzherien,gerzhourien,gerzhet,gerzherien,gouloù,triliv,panellerezh,gouleier,heñchañ"
+ },
+ "highway/crossing/uncontrolled": {
+ "name": "Treuzenn livet",
+ "terms": "treuzenn,merket,livet,treuzenn gerzhourien"
+ },
"highway/crossing/unmarked": {
- "name": "Treuzenn n'eo ket merket"
+ "name": "Treuzenn ha n'eo ket livet",
+ "terms": "treuzenn n'eo ket livet,treuzenn,merket,livet,treuzenn gerzhourien,n'eo ket livet,diliv,nann-livet,nann merket,n'eo ket merket"
},
"highway/cycleway": {
- "name": "Hent marc'hoù-houarn"
+ "name": "Hent marc'hoù-houarn",
+ "terms": "belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,hent,hentad,forzh,gwenodenn"
+ },
+ "highway/cycleway/bicycle_foot": {
+ "name": "Gwenodenn-vale ha marc'h-houarn",
+ "terms": "war-droad,war varc'h-houarn,marc'h-houarn,gwenodenn-vale,hent bale"
+ },
+ "highway/cycleway/crossing": {
+ "name": "Treuzenn marc'hoù-houarn"
+ },
+ "highway/cycleway/crossing/bicycle_foot": {
+ "name": "Treuzenn evit kerzhourien ha beloioù",
+ "terms": "treuzenn evit kerzhourien ha beloioù,treuzenn,treuzenn gerzhourien,gerzhourien,kerzhourien,marc'hoù-houarn,marc'h-houarn,varc'hoù-houarn,varc'h-houarn,belo,velo,beloioù,veloioù"
+ },
+ "highway/cycleway/crossing/traffic_signals": {
+ "name": "Treuzenn marc'hoù-houarn gant gouleier heñchañ",
+ "terms": "treuzenn marc'hoù-houarn gant gouleier heñchañ,treuzenn,marc'h-houarn,marc'hoù-houarn,gouloù,gouleier,triliv,heñchañ,panellerezh,belo,velo,beloioù,varc'h-houarn,varc'hoù-houarn"
+ },
+ "highway/cycleway/crossing/uncontrolled": {
+ "name": "Treuzenn marc'h-houarn livet",
+ "terms": "treuzenn livet,treuzenn,merket,livet,marc'hoù-houarn,marc'h-houarn,varc'hoù-houarn,varc'h-houarn,belo,velo,beloioù,veloioù"
},
"highway/cycleway/crossing/unmarked": {
- "name": "Treuzenn marc'h-houarn n'eo ket merket"
+ "name": "Treuzenn marc'h-houarn n'eo ket livet",
+ "terms": "treuzenn marc'h-houarn n'eo ket livet"
},
"highway/elevator": {
- "name": "Pignerez"
+ "name": "Pignerez",
+ "terms": "pignerez,saverez"
+ },
+ "highway/footway": {
+ "name": "Gwenodenn-vale",
+ "terms": "hent,gwenodenn,pourmenadenn,kerzhet,kerzhourien,bale,hent-bale"
+ },
+ "highway/footway/access_aisle": {
+ "name": "Gwenodenn-vale ur parklec'h",
+ "terms": "gwenodenn-vale ur parklec'h,gwenodenn-vale,parklec'h,parkañ,gwenodenn,hent-bale,hent kerzhet,kerzhet,kerzhourien"
+ },
+ "highway/footway/conveying": {
+ "name": "Tapis-ruilh",
+ "terms": "tapis-ruilh"
},
"highway/footway/crossing": {
- "name": "Treuzenn kerzhourien"
+ "name": "Treuzenn gerzhourien",
+ "terms": "treuzenn,treuzenn gerzhourien,kerzhourien,tud war droad"
+ },
+ "highway/footway/crossing/traffic_signals": {
+ "name": "Treuzenn gerzhourien gant gouleier heñchañ",
+ "terms": "treuzenn,kerzhourien,kerzhet,kerzherien,gerzhourien,gerzhet,gerzherien,gouloù,triliv,panellerezh,gouleier,heñchañ"
+ },
+ "highway/footway/crossing/uncontrolled": {
+ "name": "Treuzenn gerzherien livet",
+ "terms": "merket,livet,treuzenn,kerzhourien"
},
"highway/footway/crossing/unmarked": {
- "name": "Treuzenn n'eo ket merket"
+ "name": "Treuzenn n'eo ket livet",
+ "terms": "treuzenn n'eo ket livet,treuzenn,merket,livet,treuzenn gerzhourien,n'eo ket livet,diliv,nann-livet,nann merket,n'eo ket merket"
+ },
+ "highway/footway/informal": {
+ "name": "Gwenodenn gerzhet anfurmel"
},
"highway/footway/sidewalk": {
- "name": "Riblenn-straed"
+ "name": "Riblenn-straed",
+ "terms": "trotouer,riblenn-straed"
+ },
+ "highway/footway/traffic_island": {
+ "name": "Enezenn bod",
+ "terms": "enez bod"
},
"highway/give_way": {
- "name": "Panell \"lezit da dremen\""
+ "name": "Panell \"lezit da dremen\"",
+ "terms": "lezit da dremen,panell"
+ },
+ "highway/ladder": {
+ "name": "Skeul"
},
"highway/living_street": {
- "name": "Straed vev"
+ "name": "Straed vev",
+ "terms": "straed,bev,annez"
+ },
+ "highway/milestone": {
+ "name": "Maen-bonn",
+ "terms": "bonn,bonn kilometrek"
},
"highway/mini_roundabout": {
"name": "Kroashent-tro bihan",
"terms": "kroashent-tro bihan,kroashent-troig"
},
+ "highway/motorway": {
+ "name": "Gourhent",
+ "terms": "hent,hent-tizh,gourhent"
+ },
+ "highway/motorway_junction": {
+ "name": "Hent-maez / Eskemmer",
+ "terms": "ermaez,er-maez,bretell,hent-maez,eskemmer,kroashent,gourhent,hent-tizh,hent"
+ },
+ "highway/motorway_link": {
+ "name": "Bretell gourhent",
+ "terms": "bretell,mont tre,mont maez,mont e-maez,mont-tre,mont-maez,mont-e-maez,hent,gourhent,hent-tizh"
+ },
"highway/path": {
- "name": "Gwenodenn"
+ "name": "Gwenodenn",
+ "terms": "gwenodenn,hent"
+ },
+ "highway/path/boardwalk": {
+ "name": "Treuzell",
+ "terms": "kavagell,klouedenn-goad,klouedenn,pontenn"
+ },
+ "highway/path/crossing": {
+ "name": "Treuzenn evit kerzhourien ha beloioù"
+ },
+ "highway/path/informal": {
+ "name": "Gwenodenn anfurmel",
+ "terms": "gwenodenn,hent,anfurmel,dispis,amspis,primaozet,diardoù,straed"
},
"highway/pedestrian_area": {
- "name": "Takad kerzhet"
+ "name": "Takad kerzhet",
+ "terms": "kerzhet,kerzhourien,kerzherien,takad,tachenn,gerzhet,gerzhourien,gerzherien,straed"
},
"highway/pedestrian_line": {
- "name": "Straed kerzhet"
+ "name": "Straed kerzhet",
+ "terms": "kerzhet,kerzhourien,kerzherien,hent,gwenodenn,gerzhet,gerzhourien,gerzherien,straed"
},
"highway/primary": {
- "name": "Hent pennañ"
+ "name": "Hent pennañ",
+ "terms": "hent pennañ,brasañ"
+ },
+ "highway/primary_link": {
+ "name": "Bretell hent pennañ",
+ "terms": "hent pennañ,bretell,mont tre,mont maez,mont e-maez,mont-tre,mont-maez,mont-e-maez,hent,pennañ,hent-tizh,gourhent"
+ },
+ "highway/raceway/karting": {
+ "name": "Troiad karting",
+ "terms": "tro,troiad,leurenn,karting,hentad,kelc'hiad,roudad"
+ },
+ "highway/raceway/motocross": {
+ "name": "Roudenn moto-cross",
+ "terms": "hent,roudenn,motocross,moto-cross,tro,troiad,hentad,kelc'hiad,roudad"
},
"highway/residential": {
- "name": "Hent annez"
+ "name": "Hent annez",
+ "terms": "hent,straed,annez"
+ },
+ "highway/rest_area": {
+ "name": "Leur-diskuizh",
+ "terms": "leur-diskuizh,takad,tachad,tachenn,porzh-servij,porzh,diskuizh"
},
"highway/road": {
- "name": "Hent Dianav"
+ "name": "Hent dianav",
+ "terms": "hent,straed,hentad,dianav"
},
"highway/road/bridge": {
- "name": "Pont bleinet dianav"
+ "name": "Pont bleinet dianav",
+ "terms": "pont bleinet dianav,bleinet,hent,pont,karrbont,dianav"
},
"highway/secondary": {
- "name": "Hent eilrenk"
+ "name": "Hent eilrenk",
+ "terms": "eilrenk,hent,straed,hentad,eil renk"
+ },
+ "highway/secondary_link": {
+ "name": "Bretell hent a eil renk",
+ "terms": "hent a eil renk,bretell,mont tre,mont maez,mont e-maez,mont-tre,mont-maez,mont-e-maez,hent,eil renk,eilrenk,hent eilrenk"
},
"highway/service": {
- "name": "Hent moned"
+ "name": "Hent moned",
+ "terms": "hent,servij,straed,hentad"
},
"highway/service/alley": {
- "name": "Alez"
+ "name": "Alez",
+ "terms": "alez"
},
"highway/service/drive-through": {
- "name": "Servij \"drive\""
+ "name": "Servij \"drive\"",
+ "terms": "drive-through,drive,servij drive,servij \"drive\",blein-ha-boued"
},
"highway/service/driveway": {
- "name": "Alez"
+ "name": "Alez",
+ "terms": "alez,parkañ,parklec'h,karrdi,hent"
},
"highway/service/emergency_access": {
- "name": "Moned trummadoù"
+ "name": "Moned trummadoù",
+ "terms": "moned,mont e-barzh,mont tre,mont-tre,hent,trumm,trummadoù,mallus,a zifrae,difrae"
},
"highway/service/parking_aisle": {
- "name": "Plas-parkañ"
+ "name": "Alez parkañ",
+ "terms": "parkañ,karr,kirri,karr-tan,marc'h-tan,c'hwil-tan,alez,hent,parklec'h,plas,plas-parkañ"
},
"highway/service_area": {
"name": "Leur-servij teret"
},
"highway/services": {
- "name": "Takad servij"
+ "name": "Takad servij",
+ "terms": "tachenn,takad,tachad,servij"
},
"highway/speed_camera": {
"name": "Radar",
@@ -3008,222 +5805,544 @@
},
"highway/steps": {
"name": "Diri",
- "terms": "diri"
+ "terms": "diri,skalier"
},
"highway/steps/conveying": {
"name": "Diri-ruilh",
"terms": "diri-ruilh,eskalator"
},
"highway/stop": {
- "name": "Panell stop"
+ "name": "Panell stop",
+ "terms": "arsav,stop,panell"
},
"highway/street_lamp": {
- "name": "Post-lamp"
+ "name": "Post-lamp",
+ "terms": "gouloù,goulaouenn,post,lamp,straed"
},
"highway/tertiary": {
- "name": "Hent trederenk"
+ "name": "Hent trederenk",
+ "terms": "trederenk,hent,straed,hentad,trede renk"
+ },
+ "highway/tertiary_link": {
+ "name": "Bretell hent a drede renk",
+ "terms": "hent a drede renk,bretell,mont tre,mont maez,mont e-maez,mont-tre,mont-maez,mont-e-maez,hent,trede renk,trederenk,hent trederenk"
+ },
+ "highway/track": {
+ "name": "Hent-roud labour-douar / koad",
+ "terms": "hent-roud labour-douar / koad,hent,labour-douar,labour-douarel,koad,koadeg,maez,war ar maez,roudenn"
+ },
+ "highway/traffic_mirror": {
+ "name": "Melezour-hent",
+ "terms": "melezour,melezour surentez,melezour hent,hent,surentez"
},
"highway/traffic_signals": {
- "name": "Gouleier triliv"
+ "name": "Gouleier triliv",
+ "terms": "gouleier triliv"
+ },
+ "highway/trailhead": {
+ "name": "Penn ur wenodenn",
+ "terms": "penn,gwenodenn"
+ },
+ "highway/trunk_link": {
+ "name": "Bretell hent-tizh",
+ "terms": "hent-tizh,bretell,mont tre,mont maez,mont e-maez,mont-tre,mont-maez,mont-e-maez,hent"
+ },
+ "highway/turning_circle": {
+ "name": "Takad distreiñ",
+ "terms": "takad distreiñ,kelc'h distreiñ,kroashent-tro,kroashent-tro bihan"
},
"highway/unclassified": {
"name": "Hent eilrenk/direnk"
},
"historic": {
- "name": "Lec'h Istorel"
+ "name": "Lec'h Istorel",
+ "terms": "lec'h,lec'hienn,istorel"
},
"historic/archaeological_site": {
- "name": "Lec'hienn arkeologel"
+ "name": "Lec'hienn arkeologel",
+ "terms": "lec'h,lec'hienn,arkeologel,henoniel"
+ },
+ "historic/boundary_stone": {
+ "name": "Bonn harz",
+ "terms": "bonn,maen,harzoù,harzel,harz"
},
"historic/building": {
- "name": "Savadur istorel"
+ "name": "Savadur istorel",
+ "terms": "savadur,ti,istorel"
+ },
+ "historic/cannon": {
+ "name": "Kanol",
+ "terms": "kanol,kanon"
},
"historic/castle": {
- "name": "Kastell"
+ "name": "Kastell",
+ "terms": "kêr,kreñvlec'h,fort,kastell"
},
"historic/castle/fortress": {
- "name": "Kreñvlec'h istorel"
+ "name": "Kreñvlec'h istorel",
+ "terms": "fort,kreñvlec'h,kastell,istorel"
},
"historic/castle/palace": {
- "name": "Palez"
+ "name": "Palez",
+ "terms": "palez"
},
"historic/castle/stately": {
- "name": "Kastell"
+ "name": "Kastell",
+ "terms": "kastell"
+ },
+ "historic/city_gate": {
+ "name": "Dor kêr",
+ "terms": "dor kêr,dor ar gêr"
+ },
+ "historic/fort": {
+ "name": "Fort istorel",
+ "terms": "fort,kreñvlec'h,kastell,istorel"
},
"historic/manor": {
- "name": "Maner"
+ "name": "Maner",
+ "terms": "maner,ti,domani,kastell,palez,tudjentil"
},
"historic/memorial": {
- "name": "Kounlec'h"
+ "name": "Kounlec'h",
+ "terms": "koun,kounlec'h,maen-koun"
+ },
+ "historic/memorial/plaque": {
+ "name": "Plakenn-goun",
+ "terms": "koun,plakenn,plakenn goun,meuliñ,lidañ"
+ },
+ "historic/memorial/stolperstein-EU": {
+ "name": "Plakenn-goun Stolpersteine",
+ "terms": "plakenn-goun stolpersteine,stolpersteine,plakenn-eñvor,plakenn-vemor,plakenn,koun"
},
"historic/monument": {
- "name": "Monumant"
+ "name": "Monumant",
+ "terms": "monumant"
},
"historic/pillory": {
- "name": "Post-ar-vezh istorel"
+ "name": "Post-ar-vezh istorel",
+ "terms": "pilori,post-ar-vezh,post-torfedourien,post-an-dalc'h"
},
"historic/ruins": {
- "name": "Dismantroù"
+ "name": "Dismantroù",
+ "terms": "dismantroù"
},
"historic/tomb": {
"name": "Bez",
"terms": "bez,maen-koun"
},
"historic/wayside_cross": {
- "name": "Kalvar"
+ "name": "Kalvar",
+ "terms": "kroaz,kalvar"
+ },
+ "historic/wayside_shrine": {
+ "name": "Orator",
+ "terms": "orator,ti-pediñ"
},
"historic/wreck": {
- "name": "Peñse"
+ "name": "Peñse",
+ "terms": "peñse"
+ },
+ "indoor": {
+ "name": "Elfenn diabarzh"
+ },
+ "indoor/area": {
+ "name": "Takad diabarzh",
+ "terms": "takad,diabarzh,a-ziabarzh"
+ },
+ "indoor/corridor": {
+ "name": "Trepas diabarzh",
+ "terms": "trepas diabarzh,banell"
+ },
+ "indoor/corridor_line": {
+ "name": "Trepas diabarzh"
+ },
+ "indoor/door": {
+ "name": "Dor diabarzh",
+ "terms": "dor,diabarzh,a-ziabarzh"
},
"indoor/room": {
- "name": "Kambr"
+ "name": "Kambr",
+ "terms": "kambr"
+ },
+ "indoor/stairs": {
+ "name": "Skalieroù diabarzh"
+ },
+ "indoor/wall": {
+ "name": "Mur diabarzh",
+ "terms": "mur,moger,diabarzh,a-ziabarzh"
+ },
+ "internet_access/wlan": {
+ "name": "Poent moned Wi-Fi",
+ "terms": "poent-moned,poent moned,wifi,wi-fi,bonn,wlan,wi fi,takad"
},
"landuse": {
"name": "Elfenn implij an douar"
},
+ "landuse/allotments": {
+ "name": "Liorzhoù tiegezhel",
+ "terms": "liorzh tiegezh,liorzhoù tiegezhel,familh,jardin,jardinoù,tiegezh,menaj,atant,feurm,jardrin"
+ },
"landuse/aquaculture": {
- "name": "Dourc'hounezerezh"
+ "name": "Dourc'hounezerezh",
+ "terms": "dourc'hounidigezh,dourc'hounezerezh,pesketaerezh"
},
"landuse/basin": {
- "name": "Diazad"
+ "name": "Oglenn"
},
"landuse/brownfield": {
"name": "Tachenn fraost"
},
"landuse/cemetery": {
- "name": "Bered"
+ "name": "Bered",
+ "terms": "bered,bez,ankou,anaon,marv,mervel,kelan,douarañ,douaridigzh,kañv,ti-kañv,bolz-kañv"
+ },
+ "landuse/churchyard": {
+ "name": "Tachenn an iliz"
},
"landuse/commercial": {
- "name": "Takad koñvers"
+ "name": "Takad koñvers",
+ "terms": "koñvers,kenwerzh,takad,tachenn,tachad"
},
"landuse/construction": {
- "name": "Takad Sevel"
+ "name": "Takad sevel",
+ "terms": "sevel,takad,savidigezh,labourioù,labour,savadenn,savadur,tisaverezh,saver,tisaver,batis,ti,kendi,ranndi,konstruidigezh,savadurezh,tiadur,ober,obererezh"
+ },
+ "landuse/education": {
+ "name": "Takad deskadurezh",
+ "terms": "takad,kampus,skol,skolaj,lise,skol-veur,deskadurezh,deskiñ,kelenn"
},
"landuse/farm": {
"name": "Takad labour-douar"
},
"landuse/farmland": {
- "name": "Takad labour-douar"
+ "name": "Takad labour-douar",
+ "terms": "takad,feurm,tiegezh,ti,ti-feurm,atant,labour-douar,gounezerezh"
+ },
+ "landuse/farmyard": {
+ "name": "Takad ti-feurm",
+ "terms": "takad,feurm,tiegezh,ti,ti-feurm,atant,labour-douar"
+ },
+ "landuse/flowerbed": {
+ "name": "Bleuñveg",
+ "terms": "bleuñveg,bleunioù,bleuñv,bleunienn,flour,leur,leurenn"
+ },
+ "landuse/forest": {
+ "name": "Koad meret",
+ "terms": "koataerezh,koad,koadeg,koataer,koadoù,mererezh,merañ,meret,korvoiñ,korvoet,korvoerezh"
},
"landuse/grass": {
- "name": "Leton"
+ "name": "Leton",
+ "terms": "leton,geot"
+ },
+ "landuse/greenhouse_horticulture": {
+ "name": "Labour-douar dindan tiez-gwer",
+ "terms": "labour-douar,ti-gwer,tiez-gwer,liorzhouriezh"
},
"landuse/harbour": {
"name": "Havr",
"terms": "porzh,havr,bag"
},
"landuse/industrial": {
- "name": "Takad greantel"
+ "name": "Takad greantel",
+ "terms": "greantel,takad,tachenn,tachad,greant,industriel,uzinoù"
+ },
+ "landuse/industrial/scrap_yard": {
+ "name": "Drailhadeg kirri",
+ "terms": "karr,kirri,drailhañ,drailhadeg,dismantrañ,distrujañ,feuzañ,bered kirri"
},
"landuse/industrial/slaughterhouse": {
"name": "Lazhti",
"terms": "lazhti,abatouer,lazhdi,boserezh"
},
"landuse/landfill": {
- "name": "Diskarg"
+ "name": "Diskarg",
+ "terms": "diskarg,lastez,lastezerezh"
},
"landuse/meadow": {
"name": "Pradenn"
},
+ "landuse/meadow_orchard/meadow": {
+ "name": "Pradenn gant gwez-frouezh",
+ "terms": "pradenn gant gwez-frouezh,pradenn,foenneg,geoteg,peurvan,gwez,frouezh-gwezeg"
+ },
"landuse/military": {
- "name": "Takad Milourel"
+ "name": "Takad Milourel",
+ "terms": "arme,lu,milourel,soudardel,brezelel,bonn,takad"
+ },
+ "landuse/military/airfield": {
+ "name": "Nijva milourel",
+ "terms": "aerborzh,nijva,arme,milourel,lu,bon aervorel,tachenn-nij,soudard,milour,brezel,armeadel,brezelel,koñje,aerlu,morlu,tirlu"
},
"landuse/military/barracks": {
- "name": "Kazarn"
+ "name": "Kazarn",
+ "terms": "kazarn,kazarnioù"
},
"landuse/military/base": {
- "name": "Bon milour"
+ "name": "Bon milour",
+ "terms": "arme,lu,milourel,soudardel,brezelel,bonn,takad"
},
"landuse/military/base/navy": {
- "name": "Bon mor"
+ "name": "Bon mor",
+ "terms": "arme,lu,milourel,soudardel,brezelel,bonn,takad,morlu,morel,mor"
+ },
+ "landuse/military/danger_area": {
+ "name": "Takad dañjer milourel",
+ "terms": "takad dañjer milourel,arme,lu"
+ },
+ "landuse/military/obstacle_course": {
+ "name": "Hentad soudard",
+ "terms": "hentad soudard,skoilhoù,arme,lu"
+ },
+ "landuse/military/range": {
+ "name": "Stand tennañ milourel",
+ "terms": "stand tennañ milourel,arme,lu"
+ },
+ "landuse/military/training_area": {
+ "name": "Takad pleustriñ milourel",
+ "terms": "pleustradeg,pleustriñ,milourel,lu,arme,soudardel,brezelel,takad pleustriñ"
+ },
+ "landuse/orchard": {
+ "name": "Gwerje",
+ "terms": "berje,gwerje,gwerjez"
+ },
+ "landuse/plant_nursery": {
+ "name": "Spluseg",
+ "terms": "spluseg,magerezh,plant"
},
"landuse/pond": {
"name": "Poull"
},
"landuse/quarry": {
- "name": "Mengleuz"
+ "name": "Mengleuz",
+ "terms": "min,mengleuz"
+ },
+ "landuse/recreation_ground": {
+ "name": "Tachenn-c'hoari",
+ "terms": "tachenn-c'hoari,tachenn c'hoari,c'hoari,leur,leur-c'hoari,leurenn-c'hoari,leurenn,takad c'hoari"
},
"landuse/religious": {
- "name": "Takad relijiel"
+ "name": "Takad relijiel",
+ "terms": "relijiel,relijion,sakr,takad relijiel,takad"
},
"landuse/reservoir": {
"name": "Mirlec'h"
},
"landuse/residential": {
- "name": "Takad Annez"
+ "name": "Takad annez",
+ "terms": "takad,tiez,annez"
+ },
+ "landuse/residential/apartments": {
+ "name": "Ranndioù",
+ "terms": "ranndioù"
+ },
+ "landuse/retail": {
+ "name": "Takad koñvers",
+ "terms": "kenwerzh,koñvers"
},
"landuse/salt_pond": {
- "name": "Palud"
+ "name": "Palud",
+ "terms": "palud,holen,paludoù,paludoù-holen,palud-holen"
},
"landuse/vineyard": {
- "name": "Gwinieg"
+ "name": "Gwinieg",
+ "terms": "gwinieg,gwiniegi,gwin"
+ },
+ "landuse/winter_sports": {
+ "name": "Takad sportoù goañv",
+ "terms": "tachenn,tachad,takad,sport goañv,sportoù goañv"
},
"leisure": {
- "name": "Elfenn an Dudi"
+ "name": "Elfenn dudi"
+ },
+ "leisure/beach_resort": {
+ "name": "Kouronklec'h",
+ "terms": "kouronkañ,kouronklec'h,lec'h kouronkañ,hañvlec'h,kêr kouronkañ,touristel,touristerezh,touristañ,touristiñ,traezhenn,traezh,aod,hañv,vakañsoù"
+ },
+ "leisure/bleachers": {
+ "name": "Derezioù",
+ "terms": "derezioù,arvesterien,stad"
+ },
+ "leisure/bowling_alley": {
+ "name": "Bowling",
+ "terms": "bowling"
},
"leisure/common": {
"name": "Tachenn foran"
},
- "leisure/dancing_school": {
- "name": "Skol-dañs"
+ "leisure/dance": {
+ "name": "Sal dañs",
+ "terms": "sal,dañs,dañsal"
+ },
+ "leisure/dog_park": {
+ "name": "Park chas",
+ "terms": "liorzh,park,ki,chas"
},
"leisure/escape_game": {
- "name": "Escape Room"
+ "name": "Escape room (c'hoari achap)",
+ "terms": "escape room,c'hoari achap,escape-room"
+ },
+ "leisure/fishing": {
+ "name": "Lec'h pesketa",
+ "terms": "aod,pesk,pesketa,stêr,mor,boued mor,lec'h pesk"
+ },
+ "leisure/fitness_centre": {
+ "name": "Sal-sport",
+ "terms": "sal-sport,sport,sportoù,jiminas,pleustriñ,kigenn,kigennañ,kigennerezh"
+ },
+ "leisure/fitness_centre/yoga": {
+ "name": "Sal yoga",
+ "terms": "yoga,sal"
},
"leisure/fitness_station/parallel_bars": {
"name": "Divvarrenn genstur"
},
"leisure/garden": {
- "name": "Liorzh"
+ "name": "Liorzh",
+ "terms": "liorzh,jardin,atil,park,jardrin"
},
"leisure/garden/botanical": {
"name": "Liorzh-plant",
- "terms": "liorzh-plant,liorzh louzawouriezh"
+ "terms": "liorzh-plant,liorzh louzawouriezh,jardin,plant,louzoù,plantoù,louzaouennoù,jardin-plant,jardrin"
+ },
+ "leisure/garden/kitchen": {
+ "name": "Liorzh legumaj",
+ "terms": "liorzh legumaj,legumaj,jardin,jardin-legumaj,atil,liorzh-legumaj,jardrin"
},
"leisure/golf_course": {
- "name": "Tachenn golf"
+ "name": "Tachenn golf",
+ "terms": "golf,tachenn,tachenn c'holf,tachenn golf"
},
"leisure/horse_riding": {
"name": "Kreizenn varc'hegezh",
"terms": "kreizenn varc'hegezh,marc'h,kezeg,kazeg,marc'hegezh,marchosi,kraou,kraou-kezeg"
},
+ "leisure/hot_tub": {
+ "name": "Jakouzi",
+ "terms": "jacuzzi,jakouzi,kibell,kibell domm,kibellañ,poull,poull-neuial,tomm"
+ },
+ "leisure/ice_rink": {
+ "name": "Poull-ruzikat",
+ "terms": "poull-riklañ,poull-ruzikal,poull-ruzikat"
+ },
+ "leisure/marina": {
+ "name": "Porzh-bageal",
+ "terms": "marina,porzh,porzh-bageal,bag,bigi,bag-dre-lien,lien,martolod,mor"
+ },
"leisure/miniature_golf": {
- "name": "Minigolf"
+ "name": "Minigolf",
+ "terms": "minigolf,golf,mini-golf,mini golf"
},
"leisure/nature_reserve": {
- "name": "Gwarezva natur"
+ "name": "Gwarezva natur",
+ "terms": "gwarezva,mirva,natur"
},
"leisure/park": {
"name": "Park",
- "terms": "park,liorzh"
+ "terms": "park,liorzh,jardin,koad,plant,glasvez"
},
"leisure/picnic_table": {
- "name": "Taol biknik"
+ "name": "Taol biknik",
+ "terms": "piknik,piknikañ,taol"
},
"leisure/picnic_table/chess": {
- "name": "Taol wezboell"
+ "name": "Taol wezboell",
+ "terms": "taol wezboell,tablez echedoù,gwezboell,taol,tablez,echedoù"
+ },
+ "leisure/pitch": {
+ "name": "Tachenn sport",
+ "terms": "tachenn,sport,dudi"
},
"leisure/pitch/american_football": {
- "name": "Tachenn football amerikan"
+ "name": "Tachenn vell-droad amerikan",
+ "terms": "sport,tachenn,tachenn sport,foot,football,amerika,amerikan,mell-droad,mell-droad amerikan,sport amerikan,vell-droad,velldroad,melldroad"
},
"leisure/pitch/american_handball": {
"name": "Tachenn handball amerikan",
"terms": "tachenn handball amerikan,handball amerikan"
},
+ "leisure/pitch/archery": {
+ "name": "Tachenn gwaregañ",
+ "terms": "gwaregañ,kreizenn,tachad,takad,tachenn"
+ },
+ "leisure/pitch/athletics": {
+ "name": "Tachenn atleterezh"
+ },
+ "leisure/pitch/athletics/discus_throw": {
+ "name": "Tachenn bannañ ar bladenn",
+ "terms": "bannañ ar bladenn,bannañ pladenn,tachenn,tachad,takad,leur,leurenn"
+ },
+ "leisure/pitch/athletics/hammer_throw": {
+ "name": "Tachenn bannañ horzh",
+ "terms": "morzhol,teurel,bannañ,horzh,tachenn,takad"
+ },
+ "leisure/pitch/athletics/high_jump": {
+ "name": "Tachenn lammat a-serzh",
+ "terms": "lammat a-serzh,tachenn,tachad,takad,leur"
+ },
+ "leisure/pitch/athletics/javelin_throw": {
+ "name": "Tachenn bannañ goaf",
+ "terms": "takad,bannañ,teurel,goaf,bannañ goaf,tachenn"
+ },
+ "leisure/pitch/athletics/long_jump": {
+ "name": "Tachenn lammat a-hed",
+ "terms": "tachenn,tachad,takad,leurenn,leur,lamm a-hed,lammat a-hed"
+ },
+ "leisure/pitch/athletics/pole_vault": {
+ "name": "Tachenn lammat gant ar berchenn",
+ "terms": "lammat gant ar berchenn,tachenn,tachad,takad,leurenn,leur"
+ },
+ "leisure/pitch/athletics/shot_put": {
+ "name": "Tachenn bannañ ar pouez",
+ "terms": "tachenn,tachad,takad,leurenn,leur,bannañ ar pouez,teurel,pouez,pouezioù"
+ },
+ "leisure/pitch/athletics/triple_jump": {
+ "name": "Tachenn trilamm",
+ "terms": "tachenn,tachad,takad,leurenn,leur,trilamm,tri-lamm"
+ },
+ "leisure/pitch/australian_football": {
+ "name": "Tachenn vell-droad aostralian",
+ "terms": "sport,tachenn,tachenn sport,foot,football,aostralia,aostralian,mell-droad,mell-droad aostralian,sport aostralian,aostraliat,velldroad,melldroad,vell-droad"
+ },
+ "leisure/pitch/badminton": {
+ "name": "Tachenn badminton",
+ "terms": "tachenn,leurenn,leur,badminton"
+ },
"leisure/pitch/baseball": {
- "name": "Tachenn baseball"
+ "name": "Tachenn baseball",
+ "terms": "tachenn,tachenn baseball,baseball,base-ball"
},
"leisure/pitch/basketball": {
- "name": "Tachenn vasket"
+ "name": "Tachenn vasket",
+ "terms": "tachenn,basket,tachenn-vasket,tachenn vasket"
},
"leisure/pitch/beachvolleyball": {
- "name": "Tachenn traezhenn-volley-ball",
- "terms": "traezhenn,volley-ball,volley,volleyball"
+ "name": "Tachenn beach-volley",
+ "terms": "traezhenn,volley-ball,volley,volleyball,traezh,beach-volley,tachenn,sport,sportoù"
+ },
+ "leisure/pitch/chess": {
+ "name": "Tablez echedoù ramzel",
+ "terms": "taol wezboell,tablez echedoù,gwezboell,taol,tablez,echedoù,ramzel"
},
"leisure/pitch/cricket": {
"name": "Tachenn griked",
"terms": "kriked,sport,tachenn,tachenn griked"
},
+ "leisure/pitch/equestrian": {
+ "name": "Aren marc'hegezh/rodeo",
+ "terms": "aren,stad,marc'hañ,marc'hegezh,rodeo"
+ },
+ "leisure/pitch/field_hockey": {
+ "name": "Tachenn hockey war leton",
+ "terms": "leton,geot,war c'heot,hoke,hockey,tachenn sport,tachenn,sport,dudi,hockeyer,hokeier,skipailh"
+ },
+ "leisure/pitch/futsal": {
+ "name": "Tachenn futsal",
+ "terms": "sport,sportoù,dudi,futsal,tachenn"
+ },
+ "leisure/pitch/netball": {
+ "name": "Tachenn netball",
+ "terms": "sport,sportoù,dudi,netball,net-ball,tachenn"
+ },
"leisure/pitch/paintball": {
"name": "Tachenn paintball"
},
@@ -3234,7 +6353,16 @@
"name": "Skatepark"
},
"leisure/pitch/soccer": {
- "name": "Tachenn vell-droad"
+ "name": "Tachenn vell-droad",
+ "terms": "mell-droad,sport,tachenn,tachenn vell-droad,foot,football,velldroad,melldroad"
+ },
+ "leisure/pitch/softball": {
+ "name": "Tachenn softball",
+ "terms": "sport,tachenn,tachenn softball,softball"
+ },
+ "leisure/pitch/table_soccer": {
+ "name": "Taol mell-droad taol",
+ "terms": "taol mell-droad taol,mell-droad,taol,foot,football,babyfoot,baby-foot,babig,vabig"
},
"leisure/pitch/table_tennis": {
"name": "Taol dennis-taol",
@@ -3243,62 +6371,217 @@
"leisure/pitch/tennis": {
"name": "Tachenn dennis"
},
+ "leisure/pitch/volleyball": {
+ "name": "Tachenn volley-ball",
+ "terms": "sport,volley-ball,volley,volleyball,tachenn,sportoù"
+ },
"leisure/playground": {
- "name": "Porzh-c'hoari"
+ "name": "Porzh-c'hoari",
+ "terms": "porzh-c'hoari,c'hoari,tachenn-c'hoari"
+ },
+ "leisure/playground/indoor": {
+ "name": "Tachenn-c'hoari diabarzh",
+ "terms": "diabarzh,e-barzh,tachenn-c'hoari,porzh-c'hoari,c'hoari"
+ },
+ "leisure/resort": {
+ "name": "Kreizenn dudi"
},
"leisure/sauna": {
- "name": "Sauna"
+ "name": "Sauna",
+ "terms": "sauna,saona,sona"
+ },
+ "leisure/slipway": {
+ "name": "Kal morañ",
+ "terms": "kal,kal morañ,morañ,dour,stêr,bag,bigi,lakaat en dour,kal lakaat en dour,lestr,mor"
+ },
+ "leisure/slipway_drivable": {
+ "name": "Kal morañ (digor d'ar c'harbedoù)",
+ "terms": "kal,kal morañ,morañ,dour,stêr,bag,bigi,lakaat en dour,kal lakaat en dour,lestr,mor,karrhent,aes d'ar c'hirri,aes d'ar c'harbedoù,digor d'ar c'hirri,digor d'ar c'harbedoù,bleinapl"
},
"leisure/sports_centre": {
- "name": "Kreizenn-sport"
+ "name": "Kreizenn-sport",
+ "terms": "jiminas,sportoù,kreizenn,sport,dudi"
+ },
+ "leisure/sports_centre/climbing": {
+ "name": "Sal-krapañ"
+ },
+ "leisure/sports_centre/climbing_adventure": {
+ "name": "Park avantur",
+ "terms": "park avantur,park,avantur,park avanturioù,avanturioù,park troioù-kaer,troioù-kaer"
+ },
+ "leisure/sports_centre/shooting": {
+ "name": "Kreizenn-dennañ"
+ },
+ "leisure/sports_centre/swimming": {
+ "name": "Kreizenn-dour"
+ },
+ "leisure/sports_hall": {
+ "name": "Jiminas",
+ "terms": "jiminas,sport,sportoù,dudi,kreizenn,kreizenn-sport"
},
"leisure/stadium": {
- "name": "Stad"
+ "name": "Stad",
+ "terms": "arena,stadion,stad"
+ },
+ "leisure/swimming_area": {
+ "name": "Lec'h kouronkañ",
+ "terms": "lec'h,kouronkañ,neuial,neuñvial"
},
"leisure/swimming_pool": {
- "name": "Poull-neuial"
+ "name": "Poull-neuial",
+ "terms": "poull-neuial,poull-neuñvial,poull,kouronkva,poull-gouronkañ"
+ },
+ "leisure/track/athletics": {
+ "name": "Leurenn atleterezh"
+ },
+ "leisure/track/athletics/javelin_throw": {
+ "name": "Roudenn bannañ goaf",
+ "terms": "goaf,bannañ,roudenn,atleterezh"
+ },
+ "leisure/track/athletics/long_jump": {
+ "name": "Roudenn lammat a-hed",
+ "terms": "roudenn,hentad,lamm a-hed,lammat a-hed"
+ },
+ "leisure/track/athletics/pole_vault": {
+ "name": "Roudenn lammat gant ar berchenn",
+ "terms": "roudenn,lammat gant ar berchenn"
+ },
+ "leisure/track/athletics/running": {
+ "name": "Hent-red"
+ },
+ "leisure/track/athletics/sprint": {
+ "name": "Roudenn sprint",
+ "terms": "roudenn,redek,hentad,sprint,sprintañ"
+ },
+ "leisure/track/athletics/steeplechase": {
+ "name": "Roudenn redadeg-skoilhoù",
+ "terms": "roudenn,hentad,redadeg-skoilhoù,steeple"
+ },
+ "leisure/track/athletics/triple_jump": {
+ "name": "Roudenn tri-lamm",
+ "terms": "trilamm,tri-lamm,roudenn,atleterezh"
+ },
+ "leisure/track/cycling": {
+ "name": "Hentad marc'h-houarn",
+ "terms": "roudenn,roud,hent,hentad,belo,marc'h-houarn"
},
"leisure/track/horse_racing": {
- "name": "Marc'hva"
+ "name": "Marc'hva",
+ "terms": "marc'hva,marc'hegezh,marc'hegerezh,roudenn varc'hañ,marc'hañ,roudenn,roudenn varc'hegezh"
+ },
+ "leisure/track/running": {
+ "name": "Hent-red",
+ "terms": "hent-red,hent redek,redek,atleterezh,roudenn"
+ },
+ "leisure/trampoline_park": {
+ "name": "Park Trampolin",
+ "terms": "trampoline park,trampolin"
+ },
+ "leisure/water_park": {
+ "name": "Park dour"
},
"line": {
- "name": "Linenn"
+ "name": "Linenn",
+ "terms": "linenn,roudenn"
},
"man_made": {
- "name": "Elfenn Artifisiel"
+ "name": "Elfenn artifisiel"
+ },
+ "man_made/antenna": {
+ "name": "Stign skindredan",
+ "terms": "radioelektrek,stign,gwern,skindredan"
},
"man_made/beehive": {
- "name": "Ruskenn"
+ "name": "Ruskenn",
+ "terms": "ruskenn,gwenan"
+ },
+ "man_made/breakwater": {
+ "name": "Torr-gwagennoù",
+ "terms": "torr-gwagennoù,torr-houloù,diwagenner,torr-tonoù,harz-gwagennoù,harz-houloù,chaoser,sav-maen,sav-mein"
},
"man_made/bridge": {
- "name": "Gorread pont"
+ "name": "Gorread pont",
+ "terms": "takad pont,takad,tachenn,tachad,pont"
+ },
+ "man_made/cairn": {
+ "name": "Karn",
+ "terms": "karn"
+ },
+ "man_made/charge_point": {
+ "name": "Bonn adkargañ karbedoù tredan",
+ "terms": "bonn adkargañ karbedoù tredan,bonn-adkargañ,karbedoù,tredan,dre dan,kirri,karbed"
},
"man_made/chimney": {
- "name": "Siminal"
+ "name": "Siminal",
+ "terms": "siminal"
+ },
+ "man_made/compass_rose": {
+ "name": "Rod an avelioù",
+ "terms": "rod an avelioù,roud-avel,norzh,su,reter,kornôg,kornaoueg,gwalarn,biz,mervent,gevred,kreisteiz,hanternoz,sav-heol,kuzh-heol,pevar avel"
},
"man_made/crane": {
- "name": "Gavr"
+ "name": "Gavr",
+ "terms": "gavr,gavr-houarn,karr-gavr"
+ },
+ "man_made/crane/gantry_crane": {
+ "name": "Gavr embregata",
+ "terms": "gavr,gavr-houarn,karr-gavr,embregata,dafariñ,porched"
},
"man_made/cross": {
- "name": "Kroaz"
+ "name": "Kroaz",
+ "terms": "kalvar,kroaz,kroez"
+ },
+ "man_made/dovecote": {
+ "name": "Kouldri",
+ "terms": "kouldri"
+ },
+ "man_made/dyke": {
+ "name": "Dig",
+ "terms": "chaoser,sav-maen,dig"
},
"man_made/embankment": {
- "name": "Savenn-douar"
+ "name": "Savenn-douar",
+ "terms": "savenn,savenn-douar,sav-douar"
},
"man_made/flagpole": {
- "name": "Gwern banniel"
+ "name": "Gwern banniel",
+ "terms": "peul,gwern,banniel,post"
+ },
+ "man_made/fuel_pump": {
+ "name": "Post-esañs",
+ "terms": "post-esañs"
+ },
+ "man_made/gasometer": {
+ "name": "Endalc'her gaz",
+ "terms": "kloc'h gaz,endalc'her gaz,mirlec'h,etrepaouez,sanailh"
+ },
+ "man_made/groyne": {
+ "name": "Tañvouezenn-vor",
+ "terms": "tañvouez,tañvouezenn vor,tañvouezenn,lost,tañvouezenn-dour,tañvouezenn dour"
+ },
+ "man_made/insect_hotel": {
+ "name": "Leti amprevaned",
+ "terms": "leti amprevaned,leti,ostaleri,amprevaned"
},
"man_made/lighthouse": {
- "name": "Tour-tan"
+ "name": "Tour-tan",
+ "terms": "tour-tan"
},
"man_made/manhole": {
- "name": "Genoù kan-skarzh"
+ "name": "Genoù kan-skarzh",
+ "terms": "genoù kan-skarzh,genoù"
+ },
+ "man_made/manhole/drain": {
+ "name": "Kan-dastum",
+ "terms": "kan-dastum,dastum,dour,glav,skarzh"
},
"man_made/mast": {
- "name": "Peul"
+ "name": "Peul",
+ "terms": "gwern,peul,post,stign"
},
"man_made/mast/communication": {
- "name": "Peul pellgehentiñ"
+ "name": "Peul pellgehentiñ",
+ "terms": "peul pellgehentiñ,peul,tour,kehentiñ"
},
"man_made/mast/communication/radio": {
"name": "Peul skingas radio",
@@ -3308,162 +6591,452 @@
"name": "Peul skingas skinwel",
"terms": "gwern,peul,skingas,skinwel,radio,kehentiñ,pellgehentiñ,tele"
},
+ "man_made/mineshaft": {
+ "name": "Puñs mengleuz",
+ "terms": "puñs,mengleuz,kav"
+ },
+ "man_made/obelisk": {
+ "name": "Obeliskenn",
+ "terms": "peulvan,maen-hir,obeliskenn"
+ },
"man_made/observatory": {
- "name": "Arsellva"
+ "name": "Arsellva",
+ "terms": "arsellva,sellva,arvestva,arvestlec'h"
+ },
+ "man_made/petroleum_well": {
+ "name": "Puñs eoul-douar",
+ "terms": "puñs,eoul-douar,petrol,tireoul"
+ },
+ "man_made/pier": {
+ "name": "Chaoser",
+ "terms": "chaoser,sav-maen,kae,sav"
+ },
+ "man_made/pier/floating": {
+ "name": "Sav-maen war-neuñv",
+ "terms": "sav-maen war-neuñv,neuñv,mor,porzh,bag,bigi,lestr,chaoser,chaoser war-neuñv,chaoser-neuñv,sav-maen-neuñv"
},
"man_made/pipeline": {
- "name": "Gazsan / eoulsan"
+ "name": "Gazsan / eoulsan",
+ "terms": "gazsan,eoulsan,pipeline,tireoul,korzenn"
},
"man_made/pipeline/underground": {
- "name": "Eoulsan dindandouar"
+ "name": "Eoulsan dindandouar",
+ "terms": "dindandouar,eoulsan,petrol,korzenn,eoul-douar,tireoul,gaz,dindanvor"
+ },
+ "man_made/planter": {
+ "name": "Pladad legumaj",
+ "terms": "pladad,legumaj,liorzhad"
+ },
+ "man_made/quay": {
+ "name": "Kae",
+ "terms": "kae"
+ },
+ "man_made/satellite_dish": {
+ "name": "Stign loarel",
+ "terms": "stign,loarel,satelit,gwern"
},
"man_made/silo": {
"name": "Silo"
},
+ "man_made/storage_tank/water": {
+ "name": "Sitern dour",
+ "terms": "mirlec'h,oglenn,dour,sitern,beol"
+ },
+ "man_made/street_cabinet": {
+ "name": "Armel-straed",
+ "terms": "armel-straed,armel-dredan,armel dredan,tredan"
+ },
+ "man_made/street_cabinet/traffic_control": {
+ "name": "Sistem reoliañ an tremenerezh",
+ "terms": "sistem reoliañ an tremenerezh,tremeniri"
+ },
+ "man_made/street_cabinet/traffic_monitoring": {
+ "name": "Sistem kontrollañ an tremenerezh",
+ "terms": "sistem kontrollañ an tremenerezh,tremeniri"
+ },
+ "man_made/street_cabinet/transport_management": {
+ "name": "Sistem merañ an tremenerezh",
+ "terms": "sistem merañ an tremenerezh,tremeniri"
+ },
+ "man_made/surveillance": {
+ "name": "Benveg evezhiañ",
+ "terms": "benveg evezhiañ,ardivink,evezhiañ,evezh,kamera,mekanik"
+ },
"man_made/surveillance/camera": {
- "name": "Kamera-evezhiañ"
+ "name": "Kamera-evezhiañ",
+ "terms": "kamera,evezhiañ,evezh,diwall,eveshaat,plediñ,surentez,merañ,webcam,video,fiñvskeudenner,gwarez,anaoudegezh,marilh,cctv"
+ },
+ "man_made/telescope": {
+ "name": "Teleskop",
+ "terms": "teleskop,pellseller"
+ },
+ "man_made/telescope/optical": {
+ "name": "Teleskop optikel",
+ "terms": "optik,optikel,teleskop,pellseller"
+ },
+ "man_made/telescope/radio": {
+ "name": "Radioteleskop",
+ "terms": "radioteleskop,teleskop,pellseller,radio,skin"
},
"man_made/tower": {
- "name": "Tour"
+ "name": "Tour",
+ "terms": "tour,savadur,skraber-oabl"
},
"man_made/tower/bell_tower": {
- "name": "Kloc'hdi"
+ "name": "Kloc'hdi",
+ "terms": "iliz,kloc'hdi,tour,tour-iliz"
+ },
+ "man_made/tower/communication": {
+ "name": "Tour kehentiñ",
+ "terms": "tour,peul,pellgehentiñ,kehentiñ"
+ },
+ "man_made/tower/defensive": {
+ "name": "Tour kreñv",
+ "terms": "tour,tour-meur,kreñv,kreñvlec'h"
},
"man_made/tower/diving": {
- "name": "Splujell"
+ "name": "Splujell",
+ "terms": "splujell"
},
"man_made/tower/minaret": {
- "name": "Minared"
+ "name": "Minared",
+ "terms": "islam,moskeenn,minared,muzulman,tour"
+ },
+ "man_made/tower/pagoda": {
+ "name": "Pagodenn",
+ "terms": "pagodenn,azeuliñ,azeulva"
},
"man_made/tunnel": {
- "name": "Takad riboul"
+ "name": "Takad riboul",
+ "terms": "takad,riboul,tunel"
+ },
+ "man_made/video_wall": {
+ "name": "Skramm niverel",
+ "terms": "del,skramm,ramzel,niverek,niverel"
},
"man_made/wastewater_plant": {
- "name": "Purlec'h"
+ "name": "Purlec'h",
+ "terms": "purlec'h,dour lous,dourioù lous"
+ },
+ "man_made/water_tap": {
+ "name": "Kog-dour",
+ "terms": "kog-dour,kog dour,kog,dour,brikezenn,tuellenn,touchenn"
},
"man_made/water_tower": {
- "name": "Kastell-dour"
+ "name": "Kastell-dour",
+ "terms": "kastell-dour"
+ },
+ "man_made/water_well": {
+ "name": "Puñs",
+ "terms": "puñs,dour,mammenn,eienenn"
+ },
+ "man_made/water_works": {
+ "name": "Uzin dour mat da evañ",
+ "terms": "dour,dour da evañ,dour mat da evañ,uzin"
},
"man_made/watermill": {
- "name": "Milin-dour"
+ "name": "Milin-dour",
+ "terms": "milin,melin,meilh,milin-dour,melin-dour,meilh-dour,dour"
},
"man_made/windmill": {
- "name": "Milin"
+ "name": "Milin",
+ "terms": "milin,melin,meilh,avel"
},
"man_made/works": {
"name": "Labouradeg",
"terms": "labouradeg,uzin,greanti"
},
"man_made/works/brewery": {
- "name": "Breserezh greantel"
+ "name": "Breserezh greantel",
+ "terms": "breserezh greantel"
},
"man_made/yes": {
"name": "Elfenn denel (n'eo ket spisaet)"
},
+ "military/bunker": {
+ "name": "Bunker milourel",
+ "terms": "bunker,milourel,brezel,brezelel,blockhaus"
+ },
+ "military/checkpoint": {
+ "name": "Post-kontrollañ milourel",
+ "terms": "post-kontrollañ milourel,brezel,brezelel,arme,lu,milour"
+ },
+ "military/nuclear_explosion_site": {
+ "name": "Lec'hienn tarzhadenn nukleel",
+ "terms": "lec'hienn tarzhadenn nukleel,derc'hanel,tarzhañ"
+ },
+ "military/office": {
+ "name": "Burev milourel",
+ "terms": "burev,tuta,milourel,arme,an arme"
+ },
+ "military/trench": {
+ "name": "Foz milourel",
+ "terms": "foz,milourel,milour,arme,lu,brezelel,brezel,fozell,foz-difenn,klaz"
+ },
"natural": {
"name": "Elfenn naturel"
},
+ "natural/bare_rock": {
+ "name": "Takad roc'hellek",
+ "terms": "roc'h,reier,takad,roc'hell,roc'hellek,karreg,kerreg"
+ },
"natural/bay": {
- "name": "Bae"
+ "name": "Bae",
+ "terms": "bae,mor,pleg-mor,pleg,konk,ouf"
},
"natural/beach": {
- "name": "Traezhenn"
+ "name": "Traezhenn",
+ "terms": "traezh,aod,arvor,mor,traezhenn,sablenn"
+ },
+ "natural/cape": {
+ "name": "Beg",
+ "terms": "kab,beg,penn,beg-douar"
},
"natural/cave_entrance": {
- "name": "Moned kav"
+ "name": "Moned kav",
+ "terms": "moned kav,moned ur c'hav,kav,kevier,mont-tre,moned,mont e-barzh,ur c'hev,ur c'hav,kev,ar c'hav,ar c'hev"
},
"natural/cliff": {
- "name": "Tornaod"
+ "name": "Tornaod",
+ "terms": "tornaod"
},
"natural/coastline": {
"name": "Aod",
- "terms": "aod"
+ "terms": "aod,mor,arvor,tornaod,traezhenn,reier,kerreg,traezh"
+ },
+ "natural/geyser": {
+ "name": "Gourstivell",
+ "terms": "gourstivell,geiser,plomenn"
},
"natural/glacier": {
- "name": "Skorneg"
+ "name": "Skorneg",
+ "terms": "skorneg,glacier,skorn,klereg"
},
"natural/grassland": {
- "name": "Prad naturel"
+ "name": "Prad naturel",
+ "terms": "prad,pradenn,lann,geot,geotenn,geoteg,foenneg,peurvan"
},
"natural/heath": {
- "name": "Lann"
+ "name": "Lann",
+ "terms": "lann,brugeg"
+ },
+ "natural/hot_spring": {
+ "name": "Mammenn domm",
+ "terms": "dour,gwazh,stêr,dourredenn,dour zomm,mammenn,tomm,poull,lenn,mor,stank,geyser,gourstivell,stivell,feunteun,fetan"
},
"natural/mud": {
- "name": "Fank"
+ "name": "Fank",
+ "terms": "fank,pri,bouilhenn,morfont,kailhar"
+ },
+ "natural/peak": {
+ "name": "Lein",
+ "terms": "lein,beg,bre,menez,blein,kern,penn"
+ },
+ "natural/peninsula": {
+ "name": "Gourenez",
+ "terms": "gourenez,gourenezenn,ledenez"
},
"natural/reef": {
- "name": "Karreg"
+ "name": "Karreg",
+ "terms": "karreg"
+ },
+ "natural/ridge": {
+ "name": "Kribenn",
+ "terms": "kribenn,kribell"
+ },
+ "natural/rock": {
+ "name": "Karreg",
+ "terms": "karreg"
+ },
+ "natural/saddle": {
+ "name": "Ode",
+ "terms": "ode,treuzenn,tremen"
},
"natural/sand": {
- "name": "Traezh"
+ "name": "Traezh",
+ "terms": "traezh,gwast,dezerzh,traezhenn,gouelec'h"
},
"natural/scrub": {
"name": "Brouskoad",
"terms": "brouskoad,bod,strouezh,krin"
},
+ "natural/shingle": {
+ "name": "Bili",
+ "terms": "bili,bilienn,reier,roc'hoù,maen-bili,mein-vili"
+ },
+ "natural/shrub": {
+ "name": "Bodenn",
+ "terms": "bod,bodenn"
+ },
+ "natural/spring": {
+ "name": "Mammenn",
+ "terms": "dour,mammenn,gwazh,dourredenn,red,stêr,eienenn"
+ },
"natural/strait": {
- "name": "Strizh-mor"
+ "name": "Strizh-mor",
+ "terms": "strizh,strizh-mor,strizhenn,naoz"
},
"natural/tree": {
- "name": "Gwezenn"
+ "name": "Gwezenn",
+ "terms": "gwez,gwezenn"
+ },
+ "natural/tree/broadleaved": {
+ "name": "Gwezenn deliaouek"
+ },
+ "natural/tree/broadleaved/deciduous": {
+ "name": "Gwezenn deliaouek (delioù dibad)",
+ "terms": "kouezhapl,dibad,gwezenn deliaouek"
+ },
+ "natural/tree/broadleaved/evergreen": {
+ "name": "Gwezenn deliaouek (delioù padus)"
+ },
+ "natural/tree/needleleaved": {
+ "name": "Gwezenn delioù pin"
+ },
+ "natural/tree/needleleaved/deciduous": {
+ "name": "Gwezenn delioù pin (dibad)"
+ },
+ "natural/tree/needleleaved/evergreen": {
+ "name": "Gwezenn delioù pin (padus)",
+ "terms": "padus,gwezenn delioù pin"
+ },
+ "natural/tree_row": {
+ "name": "Renkad gwez",
+ "terms": "steudad,renkad,gwez,garzh"
},
"natural/tree_stump": {
- "name": "Souchenn"
+ "name": "Skod",
+ "terms": "souchenn,gwez,gwezenn,skod,pennskod,skos,skodenn,skosenn,kef,penngef,penngos,souch"
},
"natural/valley": {
- "name": "Traoñienn"
+ "name": "Traoñienn",
+ "terms": "traoñ,traoñienn,saon,saonenn,stankenn,stank,flondrenn"
},
"natural/volcano": {
- "name": "Menez-tan"
+ "name": "Menez-tan",
+ "terms": "menez-tan,menez tan,meneztan,tanvenez"
},
"natural/water": {
- "name": "Dour"
+ "name": "Dour",
+ "terms": "dour,water"
},
"natural/water/basin": {
- "name": "Diazad"
+ "name": "Oglenn",
+ "terms": "poull,diazad dour,diazad,stank,oglenn"
},
"natural/water/canal": {
- "name": "Takad kanol"
+ "name": "Takad kanol",
+ "terms": "kanol,takad kanol"
},
"natural/water/lake": {
"name": "Lenn",
- "terms": "lenn"
+ "terms": "lenn,poull,stank,loc'h"
+ },
+ "natural/water/moat": {
+ "name": "Douvezioù",
+ "terms": "douvez,douvezioù,touflez,touflezioù"
+ },
+ "natural/water/oxbow": {
+ "name": "Brec'h marv",
+ "terms": "brec'h marv,lenn oxbow,oxbow,brec'h,stêr"
},
"natural/water/pond": {
- "name": "Stank"
+ "name": "Stank",
+ "terms": "poull,lenn,stank,mirlenn"
},
"natural/water/reservoir": {
- "name": "Mirlec'h"
+ "name": "Mirlec'h",
+ "terms": "mirlec'h,mirlenn,dour"
},
"natural/water/river": {
- "name": "Takad stêr"
+ "name": "Takad stêr",
+ "terms": "takad stêr,stêr"
},
"natural/water/stream": {
- "name": "Takad gwazh"
+ "name": "Takad ur gwazh",
+ "terms": "takad gwazh,takad ur gwazh,gwazh,gwazhienn,stêr,tachad gwazh,tachad ur gwazh,dourredenn,ruzelenn,richer,goaratenn,gwazh-dour,gouer,gouerenn"
},
"natural/water/wastewater": {
- "name": "Poull dourioù lous"
+ "name": "Poull dourioù lous",
+ "terms": "poull dourioù lous,oglenn,dourioù lous"
},
"natural/wetland": {
- "name": "Takad gleb"
+ "name": "Takad gleb",
+ "terms": "takad gleb,tachad gleb,geun,geunioù"
+ },
+ "natural/wetland/bog": {
+ "name": "Taouarc'heg",
+ "terms": "palud,paludenn,geun,geunioù,taouarc'heg"
+ },
+ "natural/wetland/mangrove": {
+ "name": "Mangrovenn",
+ "terms": "mangrovenn"
+ },
+ "natural/wetland/marsh": {
+ "name": "Geunioù",
+ "terms": "palud,paludenn,geun,geunioù"
+ },
+ "natural/wetland/saltmarsh": {
+ "name": "Palud-holen",
+ "terms": "palud,paludenn,geun,geunioù,salin"
+ },
+ "natural/wetland/swamp": {
+ "name": "Paludenn",
+ "terms": "palud,paludenn,geun,geunioù"
+ },
+ "natural/wetland/tidalflat": {
+ "name": "Morfont",
+ "terms": "morfont,lec'hideg,lanv ha tre,chal ha dichal"
},
"natural/wetland/wet_meadow": {
- "name": "Pradenn c'hleb"
+ "name": "Pradenn c'hleb",
+ "terms": "pradenn c'hleb,pradenn,kompezenn,lann"
},
"natural/wood": {
- "name": "Koad naturel"
+ "name": "Koad naturel",
+ "terms": "koad,koadeg,forest,naturel"
},
"noexit/yes": {
- "name": "Hep ermaez"
+ "name": "Difourk ebet",
+ "terms": "ermaez ebet,hep ermaez,difourk ebet,hent-dall"
},
"office": {
- "name": "Burev"
+ "name": "Burev",
+ "terms": "burev,ajañs"
+ },
+ "office/accountant": {
+ "name": "Kontour",
+ "terms": "kontour,konter"
+ },
+ "office/administrative": {
+ "name": "Burev melestradurel"
+ },
+ "office/adoption_agency": {
+ "name": "Ajañs advugelañ",
+ "terms": "ajañs,advabañ,advugelañ,burev"
+ },
+ "office/advertising_agency": {
+ "name": "Ajañs bruderezh",
+ "terms": "burev,ajañs,bruderezh,brudañ"
+ },
+ "office/architect": {
+ "name": "Tisavour",
+ "terms": "tisavour,savour,arkitektour,tisavourez,savourez,arkitektourez,ti,burev,embregerezh"
},
"office/association": {
- "name": "Burev aozadur e-maez-gouarnamant"
+ "name": "Burev aozadur e-maez-gouarnamant",
+ "terms": "burev aozadur e-maez-gouarnamant,ngo,ong"
+ },
+ "office/charity": {
+ "terms": "burev,aozadur,diazezadur,aluzen,karitez"
},
"office/coworking": {
- "name": "Lec'h kenlabourat"
+ "name": "Lec'h kenlabourat",
+ "terms": "lec'h kenlabourat,coworking,lec'h-labourat boutin"
+ },
+ "office/diplomatic": {
+ "name": "Savadur diplomatek",
+ "terms": "burev,aozadur,savadur,kannadiezh,kannati,kanndi,diplomatiezh,kannadouriezh,diplomatek"
},
"office/diplomatic/consulate": {
"name": "Koñsuldi",
@@ -3473,17 +7046,56 @@
"name": "Kannati",
"terms": "kannati,kannadi,ambasader,kannad,kannder,paseporzh,diplomatiezh,kannadouriezh,kannadour,viza"
},
+ "office/diplomatic/liaison": {
+ "name": "Burev liammañ",
+ "terms": "burev liammañ"
+ },
+ "office/educational_institution": {
+ "name": "Kreizenn stummañ",
+ "terms": "kreizenn,stummañ,deskadurezh,ensavadur,kelenn,deskiñ,skol"
+ },
+ "office/employment_agency": {
+ "name": "Ajañs implijout",
+ "terms": "ajañs implijout,pol implij,labour,micher,ajañs labour"
+ },
+ "office/energy_supplier": {
+ "name": "Pourvezer tredan",
+ "terms": "pourvezer tredan,pourvezer,tredan,pourchaser,pourchaser tredan"
+ },
+ "office/engineer": {
+ "name": "Ijiner"
+ },
"office/estate_agent": {
- "name": "Ajañs-tiez"
+ "name": "Ajañs-tiez",
+ "terms": "ajañs-tiez,tiez,tier,ajañs-tier"
},
"office/financial_advisor": {
- "name": "Kuzulier-arc'hant"
+ "name": "Kuzulier-arc'hant",
+ "terms": "kuzulier-arc'hant,kuzulier,arc'hant"
+ },
+ "office/forestry": {
+ "name": "Mererezh ar c'hoadoù",
+ "terms": "mererezh ar c'hoadoù,koadoù,forest,forestoù,merañ,kempenn,burev,ajañs,ar c'hoadoù,koad,koadeier,ar c'hoadeier,mererezh"
+ },
+ "office/foundation": {
+ "name": "Diazezadur",
+ "terms": "burev,diazezadur,kevredigezh,aozadur"
},
"office/government": {
- "name": "Melestradurezh publik"
+ "name": "Melestradurezh publik",
+ "terms": "melestradurezh publik"
+ },
+ "office/government/prosecutor": {
+ "name": "Burev ar prokulor meur",
+ "terms": "burev ar prokulor meur"
},
"office/government/tax": {
- "name": "Ti an tailhoù"
+ "name": "Ti an tailhoù",
+ "terms": "ti an tailhoù"
+ },
+ "office/graphic_design": {
+ "name": "Grafour",
+ "terms": "grafist,grafour"
},
"office/insurance": {
"name": "Ajañs asurañs"
@@ -3492,7 +7104,8 @@
"name": "Noter"
},
"office/moving_company": {
- "name": "Embregerezh dilojadeg"
+ "name": "Embregerezh dilojañ",
+ "terms": "embregerezh dilojañ,dilojadenn,dilojañ,burev,embregerezh,dilojer,dilojerien,dilojadeg,diannez,diannezañ,diannezer,diannezerien"
},
"office/newspaper": {
"name": "Kazetenn"
@@ -3501,7 +7114,8 @@
"name": "Burev AMG"
},
"office/notary": {
- "name": "Noter"
+ "name": "Noter",
+ "terms": "noter,burev,ti an noter"
},
"office/physician": {
"name": "Medisin"
@@ -3509,11 +7123,37 @@
"office/political_party": {
"name": "Burev strollad politikel"
},
+ "office/private_investigator": {
+ "name": "Enklasker prevez",
+ "terms": "enklasker,prevez,burev,embregerezh,imbourc'her"
+ },
"office/quango": {
"name": "Burev hanter-AMG"
},
+ "office/religion": {
+ "name": "Burev relijiel",
+ "terms": "burev,diazezadur,relijion,kristen,muzulman,yuzev,boudist,taoist,relijiel,feiz,azeuliñ,ensavadur"
+ },
+ "office/research": {
+ "name": "Aozadur enklask skiantel"
+ },
+ "office/security": {
+ "name": "Ajañs surentez prevez"
+ },
+ "office/surveyor": {
+ "name": "Mentoniour"
+ },
"office/tax_advisor": {
- "name": "Burev kuzulier-arc'hant"
+ "name": "Burev kuzulier-arc'hant",
+ "terms": "burev,kuzulier,arc'hant,taosoù,tailhoù,yalc'h"
+ },
+ "office/telecommunication": {
+ "name": "Ajañs pellgehenterezh",
+ "terms": "ajañs pellgehenterezh,ajañs,pellgehenterezh,burev,pellgehentiñ"
+ },
+ "office/therapist": {
+ "name": "Yac'hadour",
+ "terms": "terapour,terapeut,yac'haour,terapeutour,yac'hadour,mezeg,mezeger"
},
"office/travel_agent": {
"name": "Ajañs-veaj"
@@ -3522,6 +7162,10 @@
"name": "Burev sindikad",
"terms": "burev sindikad,sindikad"
},
+ "office/water_utility": {
+ "name": "Ajañs an dour",
+ "terms": "ajañs an dour,burev,ajañs,ofis,kompagnunezh,dour,an dour"
+ },
"office/yes": {
"name": "Burev (n'eo ket spisaet)"
},
@@ -3531,75 +7175,137 @@
"pipeline/valve": {
"name": "Begel eoulsan"
},
+ "piste/downhill": {
+ "name": "Roudenn ski alpat",
+ "terms": "skiañ,ski alpat,diskenn,dinaou,roudenn,hentad,ski,ski-diskenn"
+ },
+ "piste/nordic": {
+ "name": "Roudenn ski treuz-bro",
+ "terms": "treuz-bro,treuz bro,skiañ,ski,roudenn,hentad"
+ },
"place": {
"name": "Lec'h"
},
"place/city": {
- "name": "Kêr Vras"
+ "name": "Kêr vras"
},
"place/farm": {
"name": "Atant"
},
"place/hamlet": {
- "name": "Pennkêr"
+ "name": "Pennkêr",
+ "terms": "pennkêr,kêriadenn"
},
"place/island": {
"name": "Enez",
- "terms": "enez,enezenn"
+ "terms": "enez,enezenn,douar,inizi,enezeg,enezig,atoll"
+ },
+ "place/islet": {
+ "name": "Enezig",
+ "terms": "enezenn,enez,inizi,enezig,enezeg"
},
"place/isolated_dwelling": {
"name": "Annez distro"
},
+ "place/locality": {
+ "name": "Kêriadenn didud"
+ },
+ "place/neighbourhood": {
+ "name": "Karter",
+ "terms": "karter,ranngêr,arondisamant"
+ },
"place/square": {
"name": "Skwar",
"terms": "skwar,plasenn"
},
+ "place/suburb": {
+ "name": "Bannlev",
+ "terms": "bannlev"
+ },
"place/town": {
- "name": "Kêr"
+ "name": "Kêr",
+ "terms": "kêr,kumun,keoded"
},
"place/village": {
- "name": "Kêriadenn"
+ "name": "Kêriadenn",
+ "terms": "kêriadenn,bourc'h,gwig,gwilajenn,bourgadenn"
+ },
+ "playground": {
+ "name": "Dafar c'hoari"
+ },
+ "playground/climbingwall": {
+ "name": "C'hoari moger grapañ"
+ },
+ "playground/sandpit": {
+ "name": "Bailh traezh",
+ "terms": "bailh,traezh,c'hoari,porzh-c'hoari,bugale,bugel"
+ },
+ "playground/seesaw": {
+ "name": "C'hoari-skañbouez"
},
"playground/slide": {
- "name": "Ruz-revr"
+ "name": "Ruz-revr",
+ "terms": "ruz-revr,ruz"
},
"playground/swing": {
- "name": "Brañsigell"
+ "name": "Brañsigell",
+ "terms": "brañsigell,brañskell,brañsell"
},
"playground/teenshelter": {
"name": "Repu evit krennarded"
},
"playground/trampoline": {
- "name": "Trampolin"
+ "name": "Trampolin",
+ "terms": "trampoline,lien-lamm,lien-lammat,trampolin"
+ },
+ "playground/zipwire": {
+ "name": "C'hoari tirolianenn",
+ "terms": "tirolianenn,tirolian,c'hoari,bugale,dudi,park"
},
"point": {
- "name": "Poent"
+ "name": "Poent",
+ "terms": "poent,skoulm"
},
"polling_station": {
"name": "Burev-votiñ berrbad"
},
"power": {
- "name": "Elfenn Dredanel"
+ "name": "Elfenn dredanel"
+ },
+ "power/cable": {
+ "name": "Fun dredan"
+ },
+ "power/cable/underground": {
+ "name": "Fun dredan dindandouar",
+ "terms": "fun,orjalenn,dindandouar,dindanvor,tredan,linenn,elektrek"
},
"power/catenary_mast": {
"name": "Post katener",
"terms": "post katener,aerfun,katener"
},
+ "power/generator": {
+ "name": "Tredanerez"
+ },
"power/generator/method/photovoltaic": {
"name": "Panell-heol",
"terms": "panell-heol,heoldredan,fotovoltaek"
},
"power/generator/method/photovoltaic/location/roof": {
- "name": "Panell-heol an doen"
+ "name": "Panell-heol war an doenn"
},
"power/generator/source/hydro": {
- "name": "Rod-avel"
+ "name": "Rod-dour"
},
"power/generator/source/nuclear": {
- "name": "Reaktor nukleel"
+ "name": "Reaktor nukleel",
+ "terms": "reaktor nukleel,dazloc'her,derc'hanva,kreizenn nukleel,derc'hanel"
},
"power/generator/source/wind": {
- "name": "Rod-avel"
+ "name": "Rod-avel",
+ "terms": "rod avel,rod,avel,rod-avel,tour avel,tour-avel"
+ },
+ "power/line": {
+ "name": "Linenn dredan"
},
"power/plant": {
"name": "Tachenn greizenn dredan"
@@ -3614,7 +7320,8 @@
"name": "Kreizenn dre zour"
},
"power/plant/source/nuclear": {
- "name": "Kreizenn nukleel"
+ "name": "Kreizenn nukleel",
+ "terms": "nukleel,nukleüs,derc'han,derc'hanva,kreizenn dredan,tredan"
},
"power/plant/source/oil": {
"name": "Kreizenn dermek dre eoul-douar"
@@ -3626,60 +7333,91 @@
"power/plant/source/waste": {
"name": "Pulluc'hva al lastez"
},
+ "power/plant/source/wind": {
+ "name": "Park rodoù-avel",
+ "terms": "rod-avel,rod avel,park rodoù-avel,tour-avel,tourioù-avel,park tourioù-avel"
+ },
+ "power/pole": {
+ "name": "Peul tredan",
+ "terms": "peul,tredan,post"
+ },
+ "power/tower": {
+ "name": "Tour tredan"
+ },
+ "power/transformer": {
+ "name": "Treuzfurmer",
+ "terms": "treuzfurmer"
+ },
"public_transport/platform": {
- "name": "Kae treuzdougen foran"
+ "name": "Kae treuzdougen foran",
+ "terms": "kae treuzdougen foran,dezougen,treuzdougen,kae,savenn,foran,publik"
},
"public_transport/platform/bus": {
- "name": "Kae bus"
+ "name": "Kae bus",
+ "terms": "bus,karr-boutin,savenn,kae"
},
"public_transport/platform/bus_point": {
- "name": "Arsav Bus"
+ "name": "Arsav Bus",
+ "terms": "arsav,ehan,bus,karr-boutin"
},
"public_transport/platform/bus_tram_point": {
"name": "Arsav Tramgarr & Bus",
"terms": "arsav tramgarr & bus"
},
"public_transport/platform/ferry": {
- "name": "Kae ferryoù"
+ "name": "Kae ferryoù",
+ "terms": "mordreizher,bag,ferry,kae,karrlestr"
},
"public_transport/platform/ferry_point": {
"name": "Arsav / kae ferry"
},
"public_transport/platform/light_rail": {
- "name": "Kae metro skañv"
+ "name": "Kae metro skañv",
+ "terms": "metro,tren,tram,tramgarr,metro skañv,tren skañv,arsav,kae,savenn"
},
"public_transport/platform/light_rail_point": {
"name": "Arsav / kae metro skañv"
},
"public_transport/platform/monorail": {
- "name": "Kae unroudenn"
+ "name": "Kae unroudenn",
+ "terms": "arsav,kae,savenn,unroudenn"
},
"public_transport/platform/monorail_point": {
"name": "Arsav / kae unroudenn"
},
"public_transport/platform/subway": {
- "name": "Kae metro"
+ "name": "Kae metro",
+ "terms": "arsav,kae,savenn,tren,metro,tren-buzhug"
},
"public_transport/platform/subway_point": {
"name": "Arsav / kae metro"
},
"public_transport/platform/train": {
- "name": "Kae tren"
+ "name": "Kae tren",
+ "terms": "arsav,kae,savenn,tren,ti-gar,gar,porzh-houarn"
},
"public_transport/platform/train_point": {
"name": "Arsav / kae tren"
},
"public_transport/platform/tram": {
- "name": "Kae tramgarr"
+ "name": "Kae tramgarr",
+ "terms": "arsav,kae,savenn,tram,tramgarr"
},
"public_transport/platform/tram_point": {
- "name": "Arsav / kae tramgarr"
+ "name": "Arsav / kae tramgarr",
+ "terms": "arsav / kae tramgarr,dezougen,treuzdougen,kae,savenn,ehan,arsav,tram"
},
"public_transport/platform/trolleybus": {
- "name": "Kae trolleybus"
+ "name": "Kae trolleybus",
+ "terms": "kae trolleybus,savenn,arsav,trollebus"
},
"public_transport/platform/trolleybus_point": {
- "name": "Arsav trolleybus"
+ "name": "Arsav trolleybus",
+ "terms": "trolleybus,savenn,arsav,ehan,trollebus"
+ },
+ "public_transport/platform_point": {
+ "name": "Arsav / kae treuzdougen foran",
+ "terms": "arsav / kae treuzdougen foran,dezougen,treuzdougen,kae,savenn,foran,publik,ehan,arsav"
},
"public_transport/station_bus": {
"name": "Arsav-dibenn bus"
@@ -3694,71 +7432,125 @@
"name": "Arsav unroudenn"
},
"public_transport/station_subway": {
- "name": "Arsav metro"
+ "name": "Arsav metro",
+ "terms": "arsav,ehan,metro,tren-buzhug"
},
"public_transport/station_train": {
- "name": "Ti-gar"
+ "name": "Ti-gar",
+ "terms": "porzh-houarn,gar,ti-gar"
},
"public_transport/station_train_halt": {
- "name": "Ti-gar (arsav diwar c'houlenn)"
+ "name": "Ti-gar (arsav diwar c'houlenn)",
+ "terms": "ti-gar,gar,porzh-houarn,arsav,diwar c'houlenn,goulenn"
},
"public_transport/station_tram": {
- "name": "Arsav tramgarr"
+ "name": "Arsav tramgarr",
+ "terms": "arsav,ehan,tram,tramgarr"
},
"public_transport/station_trolleybus": {
- "name": "Arsav-dibenn trolleybus"
+ "name": "Arsav-dibenn trolleybus",
+ "terms": "arsav-dibenn trolleybus,arsav,ehan,dibenn,terminus,fin,trolleybus,trollebus"
+ },
+ "public_transport/stop_area": {
+ "name": "Takad arsav",
+ "terms": "takad,arsav,arsaviñ,ehan,lec'h"
},
"public_transport/stop_position_bus": {
- "name": "Lec'h ma'z ehan ar bus"
+ "name": "Lec'h ehan ar bus",
+ "terms": "lec'h ehan ar bus,lec'h-ehan,lec'h-arsav,arsav,lec'h arsav,lec'h ehan,bus,karr-boutin,kirri-boutin"
},
"public_transport/stop_position_ferry": {
- "name": "Lec'h ma'z arsav ar ferryoù"
+ "name": "Lec'h arsav ar ferry",
+ "terms": "lec'h arsav ar ferry,lec'h-ehan,lec'h-arsav,arsav,ferry,mordreizher,lec'h arsav,lec'h ehan"
},
"public_transport/stop_position_light_rail": {
- "name": "Lec'h ma'z ehan ar metro skañv"
+ "name": "Lec'h ehan ar metro skañv",
+ "terms": "lec'h ma'z ehan ar metro skañv,lec'h-ehan,lec'h-arsav,arsav"
},
"public_transport/stop_position_monorail": {
- "name": "Lec'h ma'z ehan an unroudenn"
+ "name": "Lec'h ehan an unroudenn",
+ "terms": "lec'h ma'z ehan an unroudenn,lec'h-ehan,lec'h-arsav,arsav"
},
"public_transport/stop_position_subway": {
- "name": "Lec'h ma harz ar metro"
+ "name": "Lec'h ehan ar metro",
+ "terms": "lec'h ma'z ehan ar metro,lec'h-ehan,lec'h-arsav,arsav"
},
"public_transport/stop_position_train": {
- "name": "Lec'h ma'z ehan an tren"
+ "name": "Lec'h ehan an tren",
+ "terms": "lec'h ma'z ehan an tren,lec'h-ehan,lec'h-arsav,arsav,tren"
},
"public_transport/stop_position_tram": {
- "name": "Lec'h ma ehan an tramgarr"
+ "name": "Lec'h ehan an tramgarr",
+ "terms": "lec'h ma'z ehan an tramgarr,lec'h-ehan,lec'h-arsav,arsav"
},
"public_transport/stop_position_trolleybus": {
- "name": "Lec'h ma'z ehan an trolleybus"
+ "name": "Lec'h ehan an trolleybus",
+ "terms": "lec'h ma'z ehan an trolleybus,lec'h-ehan,lec'h-arsav,arsav"
},
"railway": {
- "name": "Elfenn an Hent-houarn"
+ "name": "Elfenn hent-houarn"
},
"railway/abandoned": {
"name": "Hent-houarn dilezet",
"terms": "hent-houarn dilezet"
},
+ "railway/buffer_stop": {
+ "name": "Harz penn-linenn",
+ "terms": "harz penn-linenn"
+ },
+ "railway/construction": {
+ "name": "Hent-houarn war ober",
+ "terms": "o sevel,sevel,savidigezh,labourioù,labour,konstruidigezh,ober,obererezh,war ober,oc'h ober,o vezañ savet,o vezañ krouet,hent-houarn,tren,karr-houarn,hentoù-houarn,porzh-houarn,gar,ti-gar"
+ },
"railway/crossing": {
- "name": "Kroashent-houarn"
+ "name": "Kroashent-houarn",
+ "terms": "kroashent-houarn"
},
"railway/disused": {
- "name": "Hent-houarn dilezet"
+ "name": "Hent-houarn dilezet",
+ "terms": "hent-houarn,dilezet,hent-houarn dilezet"
+ },
+ "railway/funicular": {
+ "name": "Hent-houarn fundren",
+ "terms": "forzh,hentad,hent-houarn,tren dre fun,fundren,fun-dren"
},
"railway/halt": {
"name": "Ti-gar (arsav diwar c'houlenn)"
},
+ "railway/level_crossing": {
+ "name": "Kroashent-houarn",
+ "terms": "kroashent-houarn"
+ },
"railway/light_rail": {
- "name": "Forzh metro skañv"
+ "name": "Forzh metro skañv",
+ "terms": "forzh,hent,hentad,hent-houarn,tren,tram,tramgarr,metro,metro-skañv"
+ },
+ "railway/milestone": {
+ "name": "Maen-bonn tren",
+ "terms": "maen-bonn tren"
+ },
+ "railway/miniature": {
+ "name": "Hent trenig bihan",
+ "terms": "forzh,hent,hentad,hent-houarn,tren,tren bihan,trenig"
},
"railway/monorail": {
- "name": "Forzh unroudenn"
+ "name": "Forzh unroudenn",
+ "terms": "forzh,hent,hentad,hent-houarn,unroudenn"
+ },
+ "railway/monorail/hanging": {
+ "name": "Forzh unroudenn a-ispilh",
+ "terms": "forzh unroudenn a-ispilh,forzh,hent,hentad,hent-houarn,unroudenn,ispilh,a-ispilh,a-istribilh,istribilh,e-kroug"
},
"railway/platform": {
"name": "Kae ti-gar"
},
+ "railway/preserved": {
+ "name": "Hent-houarn touristel",
+ "terms": "hent-houarn touristel"
+ },
"railway/rail": {
- "name": "Hent-houarn"
+ "name": "Hent-houarn",
+ "terms": "forzh,hent,hentad,hent-houarn,tren"
},
"railway/rail/highspeed": {
"name": "Forzh tren tizh bras",
@@ -3768,188 +7560,626 @@
"name": "Porzh-houarn"
},
"railway/subway": {
- "name": "Forzh metro"
+ "name": "Forzh metro",
+ "terms": "forzh,hent,hentad,hent-houarn,tren-buzhug,dindandouar,metro"
},
"railway/subway_entrance": {
- "name": "Moned metro"
+ "name": "Moned metro",
+ "terms": "moned metro"
+ },
+ "railway/train_wash": {
+ "name": "Porzh gwalc'hiñ trenioù",
+ "terms": "porzh,gwalc'hiñ,tren,gwalc'herezh"
},
"railway/tram": {
- "name": "Forzh tramgarr"
+ "name": "Forzh tramgarr",
+ "terms": "tramgarr,tram,hent,hent-houarn,forzh"
+ },
+ "railway/tram_stop": {
+ "name": "Lec'hiadur ehan an tramgarr"
+ },
+ "railway/turntable": {
+ "name": "Hent-houarn distreiñ",
+ "terms": "hent-houarn distreiñ,hentad,hent"
},
"relation": {
- "name": "Darempred"
+ "name": "Darempred",
+ "terms": "darempred,kenere,daveadur,kendarempred"
+ },
+ "roller_coaster/track": {
+ "name": "Forzh karr sav-disav",
+ "terms": "forzh karr sav-disav,hentenn,hent,roudenn,sav-disav,sav-diskenn"
},
"route/ferry": {
- "name": "Hentad ferry"
+ "name": "Hentad ferry",
+ "terms": "hentad,hent,roudenn,mordreizher,ferry,karrlestr"
+ },
+ "seamark": {
+ "name": "Balizenn"
+ },
+ "seamark/buoy_lateral/green": {
+ "name": "Boue gwer",
+ "terms": "boue,gwer,glas,balizenn,arouez-aod"
+ },
+ "seamark/buoy_lateral/red": {
+ "name": "Boue ruz",
+ "terms": "boue,ruz,balizenn,arouez-aod"
+ },
+ "seamark/mooring": {
+ "name": "Eren"
},
"shop": {
- "name": "Stal"
+ "name": "Stal",
+ "terms": "stal,stalioù,magazenn,marc'had,gourmarc'had,gourstal,adstal,gwerzhañ,prenañ,gwerzher,pratik,embregerezh,staliaoua,prenadenn,aradenn"
+ },
+ "shop/agrarian": {
+ "name": "Stal dafar labour-douar",
+ "terms": "stal dafar labour-douar"
+ },
+ "shop/alcohol": {
+ "name": "Stal alkool",
+ "terms": "alkool,bier,gwin,sistr,chistr,vodka,evaj kreñv,hini kreñv,likor,korev,koreñv"
},
"shop/anime": {
- "name": "Stal mangaoù ha anime"
+ "name": "Stal mangaoù hag anime",
+ "terms": "stal mangaoù hag anime,stal,manga,anime"
},
"shop/antiques": {
"name": "Hendraour",
"terms": "hendraour"
},
+ "shop/appliance": {
+ "name": "Stal mekanikoù tredan",
+ "terms": "stal mekanikoù tredan,mekanikoù,ardivinkoù"
+ },
+ "shop/art": {
+ "name": "Stal-arz",
+ "terms": "stal-arz,arz,stal arz"
+ },
+ "shop/bag": {
+ "name": "Stal malizennoù ha seier",
+ "terms": "stal malizennoù ha seier,sac'h,seier,malizenn,stal valizennoù"
+ },
"shop/bakery": {
- "name": "Pastezerezh"
+ "name": "Bouloñjerezh",
+ "terms": "pastezerezh,baraerdi,baraerezh,ti-bara,stal-vara,bouloñjeri,poberezh"
+ },
+ "shop/bathroom_furnishing": {
+ "name": "Stal dafar sal-gibellañ",
+ "terms": "stal dafar sal-gibellañ"
+ },
+ "shop/beauty": {
+ "name": "Kenederezh",
+ "terms": "kenederezh,stal gened,kened,stal-gened"
+ },
+ "shop/bed": {
+ "name": "Stal dafar gwele",
+ "terms": "stal dafar gwele,gweleoù,gwele,matarasenn,stal vatarasennoù,matarasennoù"
+ },
+ "shop/beverages": {
+ "name": "Stal-evajoù",
+ "terms": "evaj,evajoù,chug,dour,soda"
},
"shop/bicycle": {
- "name": "Stal Marc'h-houarn"
+ "name": "Stal marc'hoù-houarn",
+ "terms": "belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,stal,gwerzher"
},
"shop/boat": {
- "name": "Stal vigi"
+ "name": "Stal-vigi",
+ "terms": "stal,bag,bigi"
},
"shop/books": {
- "name": "Levrdi"
+ "name": "Levrdi",
+ "terms": "levr,levrdi,gwerzher levrioù"
+ },
+ "shop/boutique": {
+ "name": "Stalig"
},
"shop/butcher": {
- "name": "Kigerezh"
+ "name": "Kigerezh",
+ "terms": "kigerezh,kiger,kigerez,stal-gig"
+ },
+ "shop/camera": {
+ "name": "Stal dafar luc'hskeudennerezh"
+ },
+ "shop/candles": {
+ "name": "Stal-vouji",
+ "terms": "boujienn,goulaouenn-goar,goulaouenn,koar,kantol-elfenniñ,kantol,enaouell,bouji,gouloù-koar"
},
"shop/cannabis": {
- "name": "Stal ganabiz"
+ "name": "Stal ganabiz",
+ "terms": "stal ganabiz,kanabiz,kanab,ganab,stal ganab"
+ },
+ "shop/car": {
+ "name": "Gwerzher kirri",
+ "terms": "karr-tan,karr,gwetur,karbed,gwerzher,stal,gwerzhañ,kirri"
+ },
+ "shop/car/second_hand": {
+ "name": "Marc'hadour aotreet kirri eildorn",
+ "terms": "marc'hadour aotreet kirri eildorn,gwerzher,karr,kirri,eildorn,eil-dorn,eil dorn,argwerzh,war azgwerzh,marc'hadour,karbedoù,karbed"
+ },
+ "shop/car_repair": {
+ "name": "Karrdi kirri",
+ "terms": "karrdi,karr-tan,karr,tangarrdi,ti-kirri,stal,gwetur,karbed,kirri"
},
"shop/cheese": {
- "name": "Formajerezh",
- "terms": "formajerezh"
+ "name": "Fourmajerezh",
+ "terms": "fourmajerezh"
+ },
+ "shop/chemist": {
+ "name": "Lezapotikerezh",
+ "terms": "apotiker,apotikerezh"
+ },
+ "shop/chocolate": {
+ "name": "Chokolader",
+ "terms": "stal,chokolad,chokoladerezh,chokolader"
},
"shop/clothes": {
- "name": "Stal Dilhad"
+ "name": "Stal-dilhad",
+ "terms": "dilhad,gwiskamant,gwiskañ,bragoù,brozh,t-shirt,krez-t,dindan-dilhad,bragoù-bihan,slip,bragez,lavreg,brennidenn,krepez,krubuilh,stammenn,roched,hiviz"
+ },
+ "shop/clothes/second_hand": {
+ "name": "Stal dilhad eildorn",
+ "terms": "stal,dilhad,eildorn,eil-dorn,eil dorn,adaozet,takonerezh,frip,friperezh"
+ },
+ "shop/clothes/suits": {
+ "name": "Stal-wiskamantoù",
+ "terms": "gwiskamant,dilhad,dilhad sul,abid"
},
"shop/clothes/underwear": {
- "name": "Stad dindan-dilhad"
+ "name": "Stal dindan-dilhad",
+ "terms": "stal,stalig,dindan-dilhad,bragoù-bihan,bragoù-dindan,slip,bragoù,lavreg,bragez"
+ },
+ "shop/clothes/wedding": {
+ "name": "Stal dilhad dimeziñ",
+ "terms": "stal,dilhad,zilhad,dimeziñ,eured,priedelezh,dimez,dimezenn,euredenn"
+ },
+ "shop/clothes/workwear": {
+ "name": "Stal dilhad labour",
+ "terms": "dilhad labour,stal,zilhad"
},
"shop/coffee": {
- "name": "Stal gafe"
+ "name": "Stal-gafe",
+ "terms": "kafe,stal-gafe,stal kafe,evaj,evajoù,ti-kafe,café,tavarn"
},
"shop/computer": {
- "name": "Stal Urzhiater"
+ "name": "Stal-urzhiataerezh",
+ "terms": "urzhiataer,urzhiater,stlenneg,urzhiataerezh,hezoug,mekanik,elektronek"
},
"shop/confectionery": {
- "name": "Stal Vadigoù"
+ "name": "Stal-vadigoù",
+ "terms": "madigoù,madig,limig,sukrerezh,sukr,chewing-gum,sunig,sunigell,koñfizer,koñfizerien,lipouzer,farder madigoù,koñfizerez,koñfizerezed,lipouzerez,farderez vadigoù,lipouzerezh,koñfizerezh"
+ },
+ "shop/convenience": {
+ "name": "Ispiserezh / gourstalig"
+ },
+ "shop/copyshop": {
+ "name": "Luc'heilañ ha moullañ"
+ },
+ "shop/cosmetics": {
+ "name": "Stal produioù kened",
+ "terms": "stal produioù kened,kenedel,genedel,liv-dremm,kañfarluchoù,dremmliv,dremmlivaj"
+ },
+ "shop/craft": {
+ "name": "Stal arzoù krouiñ",
+ "terms": "arz,krouiñ,stal"
+ },
+ "shop/curtain": {
+ "name": "Stal-rideoz",
+ "terms": "rideoz,stal,gouel,stign"
+ },
+ "shop/dairy": {
+ "name": "Diennerezh",
+ "terms": "diennerezh,koavenerezh,boued-laezh,stal,koaven,dienn,laezh,keuz,fourmaj"
+ },
+ "shop/deli": {
+ "name": "Ispiserezh fin"
+ },
+ "shop/department_store": {
+ "name": "Stal vras"
+ },
+ "shop/doityourself": {
+ "name": "Stal-vitellat",
+ "terms": "stal vitellat,bitellat,bitell,stal"
+ },
+ "shop/doors": {
+ "name": "Stal dorioù",
+ "terms": "stal,dor,dorioù"
+ },
+ "shop/dry_cleaning": {
+ "name": "Stal-fererezh",
+ "terms": "fererezh,stal,stal-fererezh,pressing,naetaerezh,naetaer"
},
"shop/e-cigarette": {
"name": "Stal sigaretennoù elektronek",
"terms": "sigaretenn elektronek,sigaretenn,butun,butuniñ,stal,vape,aezhenn,e-sigaretenn,burezh,burezhat"
},
+ "shop/electrical": {
+ "name": "Stal dafar tredanek",
+ "terms": "stal dafar tredanek,aveadur,tredan,ardivinkoù,trevnadoù,tredanel,dafar,mekanikoù,elektrek,aveadur ti"
+ },
+ "shop/electronics": {
+ "name": "Stal mekanikoù tredan hag elektronek",
+ "terms": "stal mekanikoù tredan hag elektronek,tredanek,aveadur,tredan,ardivinkoù,trevnadoù,tredanel,dafar,mekanikoù,elektrek,aveadur ti"
+ },
+ "shop/erotic": {
+ "name": "Sex-shop",
+ "terms": "sex-shop,sex,shop,revel,reizhel,stal,erotek,gadal,orgedus,c'hadal,orgedel"
+ },
"shop/erotic/lgbtq": {
- "name": "Sex-shop LGDTQ+"
+ "name": "Sex-shop LGDTQ+",
+ "terms": "sex-toy,sex-shop,lgdte,lgdt,lgdt+,lgdtq+,lgdtqe+,lgdtqe,lgdte+,lgbt,lgbti,lgbtqi,lgbtqia,lgbtq,lgbt+,lgbti+,lgbtqi+,lgbtqia+,lgbtq+,gadaliezh,erotek,erotegezh,oregederezh,rev,reizh"
+ },
+ "shop/fabric": {
+ "name": "Stal wiadoù",
+ "terms": "stal wiadoù,danvez,danvezioù,gwiadennoù,gwiadenn,gwiad,gwiadoù,lien,lienad,mezhur,gwriat,stal,wiadennoù,wiadenn,wiad,wiadoù"
+ },
+ "shop/farm": {
+ "name": "Stand frouezh ha legumaj",
+ "terms": "stand frouezh ha legumaj,stal,staliad,frouezh,legumaj"
+ },
+ "shop/fashion": {
+ "name": "Stal-gizioù"
},
"shop/fireplace": {
- "name": "Stal oaledoù"
+ "name": "Stal oaledoù",
+ "terms": "stal oaledoù,oaled,siminal,siminalioù,oaledoù"
},
"shop/fishing": {
- "name": "Stal pesketa"
+ "name": "Stal-besketa",
+ "terms": "stal besketa,danvez pesketa,pesketa,pesketaerezh,stal,stal-besketa"
},
"shop/florist": {
- "name": "Stal Vleunioù"
+ "name": "Stal-vleunioù",
+ "terms": "bleunioù,vleunioù,stal,bleuñv,vleuñv,bokedour"
+ },
+ "shop/frame": {
+ "name": "Stal enframmadur",
+ "terms": "stal,enframmadur,frammoù,stern,steuñv"
+ },
+ "shop/frozen_food": {
+ "name": "Stal boued skornet",
+ "terms": "boued skornet"
+ },
+ "shop/funeral_directors": {
+ "name": "Lidoù kañv",
+ "terms": "kañv,lid,liderezh,kañvlidoù,bezier,douarañ"
},
"shop/furniture": {
- "name": "Stal Arrebeuri"
+ "name": "Stal-arrebeuri",
+ "terms": "arrebeuri,gourvez-vank,taol,kador,sez,bank,armel,sofa,kredañs,pres"
+ },
+ "shop/garden_centre": {
+ "name": "Liorzherezh",
+ "terms": "liorzherezh,liorzhdi,jardineri,jardinerezh,stal liorzhañ,stal jardinat,stal jardinañ,stal,dafar liorzhañ,dafar jardinañ,liorzhañ,jardinañ,jardinat,jardrin,jardrinat,jardrinañ"
+ },
+ "shop/gift": {
+ "name": "Stal-brofoù",
+ "terms": "profañ,prof,profadenn,stal,donezon,road"
+ },
+ "shop/greengrocer": {
+ "name": "Marc'hadour frouezh ha legumaj"
},
"shop/hairdresser": {
- "name": "Perukenner"
+ "name": "Perukenner",
+ "terms": "perukenner,ficher,ficherez,blev,ficher-blev,ficherez-vlev,peruker,troc'her,troc'herez,troc'her-blev,troc'herez-vlev,barver,perukerezh,perukennerezh"
+ },
+ "shop/hairdresser/barber": {
+ "name": "Barver",
+ "terms": "barver,perukenner"
+ },
+ "shop/hairdresser_supply": {
+ "name": "Stal dafar perukenner",
+ "terms": "perukenner,ficher,ficherez,blev,ficher-blev,ficherez-vlev,peruker,troc'her,troc'herez,troc'her-blev,troc'herez-vlev,barver,perukerezh,perukennerezh,stal dafar perukenner,kribañ,gribañ,fichañ"
+ },
+ "shop/hardware": {
+ "name": "Kinkailherezh"
+ },
+ "shop/hearing_aids": {
+ "name": "Protezour-klevet"
+ },
+ "shop/hifi": {
+ "name": "Stal danvez hifi",
+ "terms": "hifi,kleweled,stal"
+ },
+ "shop/honey": {
+ "name": "Stal-vel",
+ "terms": "mel,stal,gwenaner,gwenanerez,gwenanerezh"
},
"shop/hunting": {
- "name": "Stal jiboez"
+ "name": "Stal jiboez",
+ "terms": "chaseal,chas,jiboez,stal"
+ },
+ "shop/interior_decoration": {
+ "name": "Stal kinklañ diabarzh"
},
"shop/jewelry": {
- "name": "Stal-vravrigoù"
+ "name": "Stal-vravrigoù",
+ "terms": "bravig,stal vravigoù,diamant,aour,arc'hant,kolier,tro-c'houzoug,tro-c'hoûg,karkan,kelc'hienn,tro-vrec'h,troioù-brec'h,kelc'h-brec'h,montr,kloc'hig-skouarn,brageriz,kelc'henn,anell,gwalenn,gwalenn-skouarn,kloc'hig,bizoù,bizoù-divskouarn"
},
"shop/kiosk": {
"name": "Kiosk"
},
+ "shop/kitchen": {
+ "name": "Stal keginoù",
+ "terms": "kegin,stal-gegin,stal kegin,stal geginoù,stal,keginoù,keginañ,kuizin,kuizinoù,dafar keginañ"
+ },
+ "shop/laundry": {
+ "name": "Kanndi",
+ "terms": "kannañ,kanndi,kannerezh"
+ },
+ "shop/laundry/self_service": {
+ "name": "Kanndi emgefre",
+ "terms": "kannañ,kanndi,emgefre,emgefreek,emservij"
+ },
+ "shop/leather": {
+ "name": "Marokiner",
+ "terms": "lêr,gavrgen,marokiner,marokinerez,marokinerezh"
+ },
+ "shop/lighting": {
+ "name": "Stal lampoù"
+ },
"shop/locksmith": {
- "name": "Alc'hwezerezh"
+ "name": "Alc'hwezerezh",
+ "terms": "alc'hwezerezh,alc'hwezer,alc'hwezerez,alc'hwez"
+ },
+ "shop/lottery": {
+ "name": "Lotiri"
},
"shop/mall": {
- "name": "Kreizenn Genwerzh"
+ "name": "Kreizenn genwerzh",
+ "terms": "kreizenn genwerzh,kreizenn-genwerzh,koñvers,kenwerzh,stal,kreizenn goñvers,kreizenn-goñvers"
+ },
+ "shop/massage": {
+ "name": "Saloñs merata"
+ },
+ "shop/mobile_phone": {
+ "name": "Stal pellgomzerioù hezoug",
+ "terms": "hezoug,telefon,pellgomz,pellgomzer"
+ },
+ "shop/money_lender": {
+ "name": "Prester",
+ "terms": "prester,arc'hant"
+ },
+ "shop/motorcycle": {
+ "name": "Gwerzher marc'hoù-tan"
+ },
+ "shop/motorcycle_repair": {
+ "name": "Karrdi marc'hoù-tan"
},
"shop/music": {
- "name": "Stal-sonerezh"
+ "name": "Stal-sonerezh",
+ "terms": "sonerezh,muzik,taboulin,trompilh,piano,violoñs,binvioù tos,ograou,telenn,gitar,violoñsell,biolin,gourrebed,gourvioloñs,alto,cd,vinyl,pladenn zu,pladennoù du,vinil,pladenn,sede,gitar tredan,klevell,uhelgomzer,binvioù,ostilhoù,binviji"
+ },
+ "shop/musical_instrument": {
+ "name": "Stal binvioù sonerezh",
+ "terms": "muzik,sonerezh,stal,binviji,benvegoù,binvioù,binviji-seniñ,benvegoù-seniñ,binvioù-seniñ,seniñ"
+ },
+ "shop/newsagent": {
+ "name": "Stalig kazetennoù"
+ },
+ "shop/nutrition_supplements": {
+ "name": "Stal klokaennoù boued"
+ },
+ "shop/nuts": {
+ "name": "Stal-graoñ",
+ "terms": "kraoñ,kraoñenn,kelvez,stal,greun,frouezh,frouezh sec'h"
},
"shop/optician": {
- "name": "Ti al Lunedour"
+ "name": "Luneder",
+ "terms": "lunedoù,luneder,lunedour"
+ },
+ "shop/outpost": {
+ "name": "Stal produioù gwerzhet enlinenn",
+ "terms": "enlinenn,pickup,pick up,pick-up,stal produioù,ar genrouedad,kenrouedad,gwerzhet enlinenn,stalig,stal"
},
"shop/paint": {
- "name": "Stal livadur"
+ "name": "Stal livadur",
+ "terms": "stal,liv,livadur,livoù,livadurioù"
+ },
+ "shop/party": {
+ "name": "Stal dafar gouelioù"
+ },
+ "shop/pasta": {
+ "name": "Stal doazennoù",
+ "terms": "toazennoù,pasta,spaghetti,toaz,toazenn,doazennoù,basta,doaz,doazenn,stal"
},
"shop/pastry": {
"name": "Pastezerezh",
"terms": "gwasteller,pastezer,pastezour,pastezerezh,gwastell,kwign,stal-bastezer"
},
+ "shop/pawnbroker": {
+ "name": "Prester ouzh gouestl",
+ "terms": "prester ouzh gouestl,prester ouzh teulioù"
+ },
"shop/perfumery": {
"name": "Porfumerezh",
"terms": "porfumerezh,porfum,frond,c'hwezh-vat"
},
+ "shop/pet": {
+ "name": "Stal-loened",
+ "terms": "loen,aneval,kazh,kizhier,chas,ki,stlejvil,boc'h-dev,hamster,razh-segal,razh"
+ },
"shop/photo": {
- "name": "Stal luc'hskeudennerezh"
+ "name": "Stal luc'hskeudennerezh",
+ "terms": "foto,kamera,luc'hskeudenner,luc'hskeudennerezh,fiñvskeudenn"
+ },
+ "shop/pottery": {
+ "name": "Stal-boderezh",
+ "terms": "poderezh,feilhañserezh,porselenerezh,prierezh"
+ },
+ "shop/printer_ink": {
+ "name": "Stal liv moullerez"
+ },
+ "shop/psychic": {
+ "name": "Mediom",
+ "terms": "pellsantour,mediom"
},
"shop/pyrotechnics": {
"name": "Stal tanioù-arvest",
"terms": "stal tanioù-arvest,tan-arvest"
},
+ "shop/religion": {
+ "name": "Stal relijiel",
+ "terms": "stal relijiel"
+ },
+ "shop/rental": {
+ "name": "Stal feurmiñ"
+ },
+ "shop/repair": {
+ "terms": "kere,kereon,kereour,botaouer"
+ },
+ "shop/rice": {
+ "name": "Stal-riz",
+ "terms": "stal,stal-riz,riz,preti,marc'had"
+ },
+ "shop/scuba_diving": {
+ "name": "Stal danvez splujañ",
+ "terms": "splujañ,splujerezh,soubañ,splujiñ,mor,dindanvor,beuziñ"
+ },
"shop/seafood": {
- "name": "Stal boued-mor"
+ "name": "Stal boued-mor",
+ "terms": "stal,boued-mor,peskerezh,stal-besked"
+ },
+ "shop/sewing": {
+ "name": "Stal dilhad kozh",
+ "terms": "stal dilhad kozh,dilhad kozh,takonerezh"
+ },
+ "shop/shoe_repair": {
+ "name": "Kereour",
+ "terms": "kereour,botoù,kere,botaouer"
+ },
+ "shop/shoes": {
+ "name": "Stal-votoù",
+ "terms": "botez,botoù,botoù-lêr,stal botoù,stal votoù,stal-votoù"
+ },
+ "shop/spices": {
+ "name": "Stal spisoù",
+ "terms": "stal-spisoù,spisoù,temz,demz,sasun"
+ },
+ "shop/sports": {
+ "name": "Stal danvez sport",
+ "terms": "sport,sportoù,danvez sport,atletour,atleterezh,gourenour,gourenerezh,gouennelerezh"
+ },
+ "shop/stationery": {
+ "name": "Paperaerezh",
+ "terms": "paperaerezh"
},
"shop/supermarket": {
"name": "Gourmarc'had",
- "terms": "gourmarc'had"
+ "terms": "gourmarc'had,stal,marc'had"
},
"shop/supermarket/organic": {
- "name": "Gourmarc'had biologel"
+ "name": "Gourmarc'had biologel",
+ "terms": "gourmarc'had biologel,bio,biologel,biologek,marc'had,gourmarc'had"
+ },
+ "shop/swimming_pool": {
+ "name": "Stal dafar poull-neuial",
+ "terms": "stal dafar poull-neuial,poull-neuial,neuial"
},
"shop/tailor": {
- "name": "Kemener"
+ "name": "Kemener",
+ "terms": "kemener,dilhad,gwriat"
+ },
+ "shop/tattoo": {
+ "name": "Tatouerezh",
+ "terms": "tatouerezh,kroc'henlivadur,tatouadur,tatouiñ,saloñs,stal,liv,livadur,ankr,ink"
},
"shop/tea": {
- "name": "Stal te"
+ "name": "Stal te",
+ "terms": "te,stal,stal-te,stal-de"
+ },
+ "shop/ticket": {
+ "name": "Gwerzher bilhedoù",
+ "terms": "gwerzher bilhedoù,tikedenn,tikedennoù,bilhedoù,bilhed,gwerzher"
+ },
+ "shop/tiles": {
+ "name": "Stal-garrelladur",
+ "terms": "stal-garrelladur,karrelladur,karrellerezh,garrellerezh,karrezadur,garrezadur,garrellañ,karrellañ,karrezañ,garrezañ"
+ },
+ "shop/tobacco": {
+ "name": "Stal-vutun",
+ "terms": "butun,stal-vutun,stal butun"
+ },
+ "shop/tool_hire": {
+ "name": "Binviji da feurmiñ",
+ "terms": "binviji da feurmiñ,binviji,ostilhoù,binvioù,feurmiñ"
},
"shop/toys": {
- "name": "Stal c'hoarielloù"
+ "name": "Stal c'hoarielloù",
+ "terms": "c'hoari,c'hoariell,nanarzh,neñneñ,arzhig,arzhig feur,doudou"
},
"shop/trade": {
"name": "Braswerzher",
"terms": "braswerzher,marc'hadour dre-vras,groser,marc'hadour,gwerzher,stal,koñvers"
},
"shop/travel_agency": {
- "name": "Ajañs-veaj"
+ "name": "Ajañs-veaj",
+ "terms": "ajañs,beaj,beajiñ"
+ },
+ "shop/trophy": {
+ "name": "Stal trofeoù",
+ "terms": "koun-trec'h,trofe,stal,stal-drofeoù"
+ },
+ "shop/tyres": {
+ "name": "Stal bandennoù-rod",
+ "terms": "pneumatek,bandenn,bandenn-rod,karr,kirri"
+ },
+ "shop/vacant": {
+ "name": "Stal dilezet",
+ "terms": "stal dilezet,vak"
},
"shop/vacuum_cleaner": {
"name": "Stal sunerezioù",
"terms": "stal sunerezioù,stal sunerezioù-poultr"
},
+ "shop/variety_store": {
+ "name": "Rabati",
+ "terms": "rabati,rabat,gwerzhañ war raval,marc'had-mat"
+ },
+ "shop/video": {
+ "name": "Klub-video"
+ },
"shop/video_games": {
"name": "Stal c'hoarioù-video",
"terms": "stal c'hoarioù-video"
},
"shop/watches": {
"name": "Horolajerezh",
- "terms": "horolajerezh"
+ "terms": "horolajerezh,stal horolajoù,horolajoù,eurieroù,montroù"
},
"shop/water": {
- "name": "Stal dour mat da evañ"
+ "name": "Stal dour mat da evañ",
+ "terms": "stal dour mat da evañ,dour,stal zour,stal dour"
+ },
+ "shop/weapons": {
+ "name": "Armerezh",
+ "terms": "armerezh,harnezerezh,stal-armoù,fuzuilhoù"
},
"shop/wigs": {
"name": "Stal perukennoù",
"terms": "stal perukennoù"
},
"shop/wine": {
- "name": "Kav-gwin",
- "terms": "kav-gwin,stal gwin"
+ "name": "Stal gwin",
+ "terms": "kav-gwin,stal win,gwin,alkool,chistr,sistr,bier,korev,stal-gwin,kav gwin"
},
"shop/yes": {
"name": "Stal (n'eo ket spisaet)"
},
+ "telecom": {
+ "name": "Dafar pellgehentiñ"
+ },
"telecom/data_center": {
- "name": "Bank titouroù"
+ "name": "Kreizenn roadennoù",
+ "terms": "kreizenn roadennoù,bank roadennoù,data centre,data center"
},
"tourism": {
"name": "Elfenn Douristel"
},
"tourism/alpine_hut": {
- "name": "Bod"
+ "name": "Bod",
+ "terms": "bod"
},
"tourism/aquarium": {
"name": "Akwariom",
@@ -3960,12 +8190,21 @@
"terms": "oberenn arz,oberenn arzel"
},
"tourism/artwork/bust": {
- "name": "Korf-bras"
+ "name": "Korf-bras",
+ "terms": "korf-bras,kef"
},
"tourism/artwork/graffiti": {
"name": "Grafiti",
"terms": "grafiti,skrivachoù"
},
+ "tourism/artwork/installation": {
+ "name": "Staliadur arzel",
+ "terms": "staliadur,arzoù,arz,arzel,staliañ"
+ },
+ "tourism/artwork/mural": {
+ "name": "Murlivadur",
+ "terms": "freskenn,liverezh,livadur,mur,moger,liv,freskenn-voger"
+ },
"tourism/artwork/sculpture": {
"name": "Kizelladur",
"terms": "kizelladur,skultadur"
@@ -3974,18 +8213,33 @@
"name": "Delwenn",
"terms": "delwenn"
},
+ "tourism/attraction": {
+ "name": "Dedenn touristel",
+ "terms": "dedenn touristel,touristel"
+ },
+ "tourism/camp_pitch": {
+ "name": "Plas kampiñ",
+ "terms": "kampiñ,camping,tachenn gampiñ,tachenn-gampiñ,lec'h kampiñ,plas,karr-kampiñ,camping-car,kirri-kampiñ,takad,karavanenn,leur-servij,leur-kampiñ,parkañ,vakañsoù"
+ },
"tourism/camp_site": {
"name": "Takad kampiñ",
"terms": "takad kampiñ,lec'h kampiñ"
},
"tourism/camp_site/backcountry": {
- "name": "Tachenn-gampiñ gouez"
+ "name": "Tachenn-gampiñ gouez",
+ "terms": "tachenn-gampiñ gouez"
},
"tourism/caravan_site": {
- "name": "Leur kirri-kampiñ"
+ "name": "Leur kirri-kampiñ",
+ "terms": "leur kirri-kampiñ,leur,parklec'h,leurenn,takad,tachenn,kampiñ,karr-kampiñ,kirri-kampiñ"
},
"tourism/gallery": {
- "name": "Diskouezva arz"
+ "name": "Palier arz",
+ "terms": "diskouezva,palier,arz,diskouezadeg"
+ },
+ "tourism/guest_house": {
+ "name": "Kambr ostizien",
+ "terms": "kambr ostizien"
},
"tourism/hostel": {
"name": "Herberc'h",
@@ -4000,7 +8254,8 @@
"terms": "titouroù"
},
"tourism/information/board": {
- "name": "Panell titouroù"
+ "name": "Panell titouroù",
+ "terms": "panell titouroù"
},
"tourism/information/board/welcome_sign": {
"name": "Panell degemer",
@@ -4012,7 +8267,7 @@
},
"tourism/motel": {
"name": "Motel",
- "terms": "motel"
+ "terms": "motel,leti"
},
"tourism/museum": {
"name": "Mirdi",
@@ -4027,7 +8282,8 @@
"terms": "lec'h piknikañ"
},
"tourism/viewpoint": {
- "name": "Gwelva"
+ "name": "Gwelva",
+ "terms": "gwelva"
},
"tourism/zoo": {
"name": "Zoo",
@@ -4037,113 +8293,223 @@
"name": "Safari",
"terms": "safari"
},
+ "tourism/zoo/wildlife": {
+ "name": "Mirva natur",
+ "terms": "mirva,natur,naturel,park,gwarezva,gwareziñ,mirout"
+ },
+ "traffic_calming": {
+ "name": "Gorrekaer",
+ "terms": "gorrekaer,skoilh torr-tizh"
+ },
"traffic_calming/bump": {
- "name": "Kein gwiz",
- "terms": "kein gwiz"
+ "name": "Skoilh torr-tizh",
+ "terms": "kein gwiz,skoilh torr-tizh,gorrekaer"
+ },
+ "traffic_calming/chicane": {
+ "name": "Kammigell / chikan",
+ "terms": "kammigell,chikan,broc'h,broc'hadeg"
},
"traffic_calming/hump": {
"name": "Kein gwiz",
- "terms": "kein gwiz"
+ "terms": "kein gwiz,kein-gwiz"
},
"traffic_calming/mini_bumps": {
- "name": "Gorrekaerioù bihan"
+ "name": "Gorrekaerioù bihan",
+ "terms": "skoilhoù torr-tizh bihan,skoilhoùigoù torr-tizh,skoilh torr-tizh,gorrekaerioù bihan,gorrekaerioùigoù"
+ },
+ "traffic_calming/yes": {
+ "name": "Gorrekaer (n'eo ket spisaet)"
},
"traffic_sign": {
- "name": "Panell-henchañ"
+ "name": "Panell-henchañ",
+ "terms": "panell-henchañ"
+ },
+ "traffic_sign/city_limit": {
+ "name": "Panell gêr",
+ "terms": "panell gêr,panell degemer,panell kêr"
},
"traffic_sign/maxspeed": {
- "name": "Panell bevenn tizh"
+ "name": "Panell bevenn tizh",
+ "terms": "panell bevenn tizh,bevenn tizh"
},
"type/boundary": {
- "name": "Harzoù"
+ "name": "Harzoù",
+ "terms": "harzoù,harz,bevenn"
},
"type/boundary/administrative": {
- "name": "Harzoù melestradurel"
+ "name": "Harzoù melestradurel",
+ "terms": "harz,harzoù,frontier,bevenn,melestradurel,melestradurezh,amaezhel"
},
"type/multipolygon": {
- "name": "Lieskorn"
+ "name": "Lieskorn",
+ "terms": "liestu,liestuek,liestueg,lieskogn,lieskorn,lieskogneg,lieskognek,lieskorneg,lieskornek"
},
"type/restriction/no_left_turn": {
- "name": "Arabat treiñ a-gleiz"
+ "name": "Arabat treiñ a-gleiz",
+ "terms": "arabat treiñ a-gleiz,na dreiñ a-gleiz"
+ },
+ "type/restriction/no_right_turn": {
+ "name": "Arabat treiñ a-zehoù",
+ "terms": "arabat treiñ a-zehoù,na dreiñ a-zehoù"
+ },
+ "type/restriction/no_straight_on": {
+ "name": "Arabat mont war-eeun",
+ "terms": "arabat mont war-eeun,na vont war-eeun"
},
"type/restriction/no_u_turn": {
- "name": "Hanter-dro ebet"
+ "name": "Hanter-dro ebet",
+ "terms": "hanter-dro ebet,na ober hanter-dro,arabat ober hanter-dro"
},
"type/restriction/only_left_turn": {
- "name": "Ret eo treiñ a-gleiz"
+ "name": "Ret eo treiñ a-gleiz",
+ "terms": "ret eo treiñ a-gleiz"
+ },
+ "type/restriction/only_right_turn": {
+ "name": "Ret eo treiñ a-zehoù",
+ "terms": "ret eo treiñ a-zehoù"
+ },
+ "type/restriction/only_straight_on": {
+ "name": "Ret eo mont war-eeun",
+ "terms": "ret eo mont war-eeun"
},
"type/restriction/only_u_turn": {
- "name": "Hanter-dro nemetken"
+ "name": "Hanter-dro nemetken",
+ "terms": "hanter-dro,rediet,hanter-dro hepken,hanter-dro nemetken"
},
"type/route": {
- "name": "Hentad"
+ "name": "Hentad",
+ "terms": "hent,hentad,roudenn"
},
"type/route/bicycle": {
- "name": "Hentad marc'h-houarn"
+ "name": "Hentad marc'h-houarn",
+ "terms": "belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,hent,hentad,forzh,gwenodenn"
},
"type/route/bus": {
- "name": "Hentad bus"
+ "name": "Hentad bus",
+ "terms": "hentad bus"
},
"type/route/ferry": {
- "name": "Hentad ferry"
+ "name": "Hentad ferry",
+ "terms": "hentad,hent,roudenn,mordreizher,ferry,karrlestr"
},
"type/route/hiking": {
- "name": "Hentad tro-vale"
+ "name": "Hentad tro-vale",
+ "terms": "hentad tro-vale,tro-vale,bale,hent bale,hent,gwenodenn,vale"
},
"type/route/horse": {
- "name": "Hentad marc'hegezh"
+ "name": "Hentad marc'hegezh",
+ "terms": "hentad marc'hegezh,hent bale,hent,gwenodenn,vale,marc'hañ,varc'hegezh,varc'hañ"
},
"type/route/light_rail": {
- "name": "Hentad metro skañv"
+ "name": "Hentad metro skañv",
+ "terms": "hentad metro skañv"
},
"type/route/monorail": {
- "name": "Hentad unroudenn"
+ "name": "Hentad unroudenn",
+ "terms": "hentad unroudenn,monorail"
},
"type/route/mtb": {
- "name": "Hentad MTB"
+ "name": "Hentad MTB",
+ "terms": "hentad mtb,mtb,vtt"
},
"type/route/pipeline": {
- "name": "Hentad eoulsan"
+ "name": "Hentad eoulsan",
+ "terms": "gazsan,eoulsan,pipeline,tireoul,korzenn,roudenn,hent,hentad"
},
"type/route/piste": {
- "name": "Hentad ski"
+ "name": "Hentad/roudenn ski",
+ "terms": "hentad ski,ski,roudenn ski,roudenn,skiañ,skiiñ"
},
"type/route/railway": {
- "name": "Hentad hent-houarn"
+ "name": "Hentad hent-houarn",
+ "terms": "hent-houarn,hentad"
+ },
+ "type/route/road": {
+ "terms": "hentad,roudenn,troiad,hent"
},
"type/route/subway": {
- "name": "Hentad metro"
+ "name": "Hentad metro",
+ "terms": "hentad metro,hentad,metro,tren-buzhug,hent,roudenn"
},
"type/route/train": {
- "name": "Hentad tren"
+ "name": "Hentad tren",
+ "terms": "hentad tren,hentad,forzh,troiad,roudenn,tren,karr-houarn,trenioù"
},
"type/route/tram": {
- "name": "Hentad tramgarr"
+ "name": "Hentad tramgarr",
+ "terms": "hentad tramgarr,hentad,tramgarr,tramway,hent,roudenn"
},
"type/route/trolleybus": {
"name": "Hentad trolleybus",
"terms": "linenn trolleybus,hentad trolleybus"
},
+ "type/route_master": {
+ "name": "Hentad kar",
+ "terms": "hentad kar"
+ },
+ "type/site": {
+ "name": "Lec'hienn",
+ "terms": "lec'hienn"
+ },
"type/waterway": {
- "name": "Dourredenn"
+ "name": "Dourredenn",
+ "terms": "dourredenn,stêr,gwazh,kanol"
},
"waterway": {
"name": "Elfenn dourel"
},
+ "waterway/boatyard": {
+ "name": "Chanter-bigi",
+ "terms": "chanter-bigi,chanter-bagoù,chanterioù-bigi,bag,bagoù,bigi,sevel,chanter,chanterioù"
+ },
"waterway/canal": {
- "name": "Kanol"
+ "name": "Kanol",
+ "terms": "kanol,san"
+ },
+ "waterway/canal/lock": {
+ "name": "Skluz kanol",
+ "terms": "skluz,kanol"
},
"waterway/dam": {
- "name": "Stankell"
+ "name": "Stankell",
+ "terms": "stankell,fardell"
+ },
+ "waterway/ditch": {
+ "name": "Foz",
+ "terms": "foz,fozell,kleuz,kleuziad"
+ },
+ "waterway/dock": {
+ "name": "Darsenn / Poull-sec'h"
+ },
+ "waterway/drain": {
+ "name": "Kanol-skarzh"
+ },
+ "waterway/lock_gate": {
+ "name": "Dor-skluz",
+ "terms": "dor-skluz,dor,skluz"
+ },
+ "waterway/milestone": {
+ "name": "Maen-bonn stêr"
},
"waterway/river": {
- "name": "Stêr"
+ "name": "Stêr",
+ "terms": "stêr,avon,stêrioù,ster,sterioù,richer,rivier,gwazh,aven,stêriad,dourredenn"
},
"waterway/stream": {
- "name": "Gwazh"
+ "name": "Gwazh",
+ "terms": "stêr,avon,stêrioù,ster,sterioù,richer,rivier,gwazh,aven,stêriad,gwazh-dour,dourredenn,ruzelenn,goaratenn,gouer,gouerenn"
+ },
+ "waterway/water_point": {
+ "name": "Dour mat da evañ war vor",
+ "terms": "dour mat da evañ war vor,evabl,mat da evañ,dour,war vor,war vag"
},
"waterway/waterfall": {
- "name": "Lamm-dour"
+ "name": "Lamm-dour",
+ "terms": "lamm-dour,lammdour,gwallamm,kouezh-dour"
+ },
+ "waterway/weir": {
+ "name": "Treuzoù (dour)",
+ "terms": "stankell,treuz,treuzoù"
}
}
}
diff --git a/dist/translations/br.min.json b/dist/translations/br.min.json
index 19dd211a..b5d741de 100644
--- a/dist/translations/br.min.json
+++ b/dist/translations/br.min.json
@@ -1 +1 @@
-{"br":{"presets":{"categories":{"category-barrier":{"name":"Elfennoù harzoù"},"category-building":{"name":"Elfennoù savadurioù"},"category-golf":{"name":"Elfennoù golf"},"category-landuse":{"name":"Elfennoù implij an douar"},"category-natural":{"name":"Elfennoù an endro"},"category-path":{"name":"Hentoùigoù"},"category-playground":{"name":"Dafar porzh-c'hoari"},"category-rail":{"name":"Hentoù-houarn"},"category-restriction":{"name":"Elfennoù bevennet"},"category-road_major":{"name":"Hentoù pennañ"},"category-road_minor":{"name":"Hentoù eilrenk"},"category-road_service":{"name":"Hentoù moned"},"category-route":{"name":"Elfennoù-hent"},"category-water":{"name":"Ledennadoù dour"},"category-waterway":{"name":"Dourredennoù"}},"fields":{"access":{"label":"Aotren ar moned","options":{"customers":{"title":"Pratikoù"},"destination":{"title":"Pal"},"no":{"title":"Difennet"},"permit":{"title":"Aotre"},"private":{"title":"Prevez"},"unknown":{"title":"Dianav"},"yes":{"title":"Aotreet"}},"placeholder":"N'eo ket spisaet","terms":"moned aotreet","types":{"access":"Holl","bicycle":"Marc'hoù-houarn ","foot":"War droad","horse":"Kezeg","motor_vehicle":"Karbedoù-tan"}},"access_aisle":{"label":"Seurt"},"access_simple":{"label":"Moned aotreet","options":{"customers":"Pratikoù nemetken","no":"Hini ebet","permit":"Nemet gant un aotre","private":"Prevez","unknown":"Dianav","yes":"Foran"},"terms":"moned aotreet"},"activity":{"label":"Obererezh","options":{"bicycle":"Marc'hhouarnerezh","hiking":"Baleerezh","horse":"Marc'hegezh","mtb":"MTB (marc'h-houarn treuz bro)","ski":"Ski"}},"addr/interpolation":{"label":"Seurt","options":{"all":"Holl","alphabetic":"En urzh al lizherenneg","even":"Par","odd":"Ampar"}},"address":{"label":"Chomlec'h","placeholders":{"city":"Kêr","city!jp":"Kêr/Kêriadenn/Karter arbennik Tokyo","city!vn":"Kêr/Kêriadenn","conscriptionnumber":"123","country":"Bro","county":"Kontelezh","county!jp":"Distrig","district":"Distrig","district!vn":"Arondisamant/Kêriadenn/Distrig","floor":"Estaj","hamlet":"Pennkêr","housename":"Anv an ti","housenumber":"123","housenumber!jp":"Niver ar savadur","neighbourhood":"Karter","neighbourhood!jp":"Chōme/Aza/Koaza","postcode":"Kod-post","province":"Proviñs","province!cn":"Proviñs/Kumun/Rannvro Emren/Rannvro Velestradurel Arbennik","province!jp":"Prefeti","quarter":"Ranngêr","quarter!jp":"Ōaza/Machi","state":"Stad","street":"Straed","subdistrict":"Isdistrig","subdistrict!vn":"Karter/Kumun/Kêriadenn","suburb":"Bannlev","suburb!jp":"Karter","unit":"Unanenn"},"terms":"chomlec'h"},"aerialway":{"label":"Seurt"},"aerialway/access":{"label":"Moned","options":{"both":"An daou","entry":"Monedigezh","exit":"Ermaez"}},"aerialway/capacity":{"placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Padelezh (munut)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Tommet"},"aerialway/occupancy":{"label":"Niver a blasoù","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Moned (hañv)","options":{"both":"An daou","entry":"Monedigezh","exit":"Ermaez"}},"aeroway":{"label":"Seurt"},"agrarian":{"label":"Produioù"},"air_conditioning":{"label":"Aerreizherezh","terms":"aerreizherezh,aerreizhañ"},"amenity":{"label":"Seurt"},"animal_boarding":{"label":"Evit loened"},"animal_breeding":{"label":"Evit loened"},"animal_shelter":{"label":"Evit loened"},"architect":{"label":"Tisavour","terms":"tisavour,savour,arkitektour,tisavourez,savourez,arkitektourez"},"area/highway":{"label":"Seurt"},"artist":{"label":"Arzour"},"artwork_type":{"label":"Seurt"},"atm":{"label":"Bilhedaouer"},"attraction":{"label":"Seurt"},"automated":{"label":"Emgefreek"},"baby_feeding":{"options":{"no":"Hini ebet"}},"backcountry":{"label":"Ski louarn"},"bar":{"label":"Tavarn","terms":"tavarn,tavarnig,ostaleri"},"barrier":{"label":"Seurt"},"barrier_planter":{"label":"Harz","options":{"planter":"Ya","undefined":"Ket"}},"basin":{"label":"Seurt"},"bath/type":{"label":"Arbennigezh"},"beauty":{"label":"Servijoù","options":{"spa":"Spa-deiz","tanning":"Rouzañ","waxing":"Divleviñ dre gloar"}},"bench":{"label":"Bank","terms":"bank,skaoñ"},"bicycle_parking":{"label":"Seurt","options":{"building":"En ur savadur","shed":"Loch serret"}},"bin":{"label":"Poubellenn"},"blind":{"label":"Moned an dud dall","options":{"limited":"Bevennet","no":"Ket","yes":"Ya"},"terms":"moned an dud dall,moned ar re zall"},"blood_components":{"options":{"plasma":"plasma"}},"board_type":{"label":"Seurt"},"bollard":{"label":"Seurt"},"boules":{"label":"Seurt"},"boundary":{"label":"Seurt"},"brand":{"label":"Merk"},"bridge":{"label":"Seurt","placeholder":"Dre ziouer"},"bridge/support":{"label":"Seurt"},"bridge_combo":{"label":"Seurt"},"building":{"label":"Savadur"},"building/flats":{"placeholder":"2, 4, 6, 8..."},"building/levels":{"label":"Estajoù","placeholder":"2, 4, 6..."},"building/levels/underground":{"label":"Estajoù dindandouar","placeholder":"2, 4, 6...","terms":"estajoù dindandouar"},"building/material":{"label":"Danvez"},"building/part":{"label":"Rann ur savadur"},"building/prefabricated":{"label":"Ragoberiet","terms":"ragoberiet"},"bunker_type":{"label":"Seurt"},"cables":{"label":"Funioù","placeholder":"1, 2, 3..."},"cai_scale-IT":{"options":{"T":"T: Touristel"},"placeholder":"T, E, EE, …"},"camera/direction":{"label":"Tu (derezioù gant roud ar bizied)","placeholder":"45, 90, 180, 270"},"camera/type":{"label":"Seurt kamera","options":{"fixed":"Dreset"}},"capacity":{"placeholder":"50, 100, 200..."},"capacity/caravans":{"placeholder":"10, 20, 50..."},"capacity/disabled_parking":{"placeholder":"1, 2, 3..."},"capacity/persons":{"placeholder":"50, 100, 200..."},"capacity/tents":{"placeholder":"10, 20, 50..."},"capacity_parking":{"placeholder":"10, 20, 30..."},"capacity_volume":{"placeholder":"50, 100, 200..."},"castle_type":{"label":"Seurt","options":{"castrum":"Kreñvlec'h roman","fortress":"Kreñvlec'h","kremlin":"Kremlin","palace":"Palez"}},"changing_table":{"label":"Taol-vailhuriñ"},"charge_fee":{"placeholder":"1 EUR, 5 USD, 10 JPY…"},"charge_toll":{"placeholder":"1 EUR, 5 USD, 10 JPY…"},"check_date":{"placeholder":"BBBB-MM-DD"},"circumference":{"placeholder":"1m, 20cm, 30mt…"},"clothes":{"label":"Dilhadoù"},"club":{"label":"Seurt"},"collector":{"label":"Ergorennoù"},"colour":{"label":"Liv","terms":"liv"},"comment":{"label":"Kemennadenn an hollad cheñchamantoù","placeholder":"Deskrivadur berr ho tegasadennoù (rediet)"},"communication_multi":{"label":"Seurt kehentiñ","terms":"seurt kehentiñ"},"construction":{"label":"Seurt"},"consulate":{"label":"Seurt"},"contact/webcam":{"label":"URL ar webcam","placeholder":"http://skouer.bzh/"},"conveying":{"options":{"backward":"War-gil","forward":"War-raok"}},"conveying_escalator":{"label":"Diri-ruilh"},"country":{"label":"Bro"},"country_flag":{"label":"Bro ar banniel"},"couplings":{"placeholder":"1, 2, 3..."},"covered":{"label":"Gwaskedet"},"covered_no":{"options":{"no":"Ket","undefined":"\"Ket\" dre ziouer","yes":"Ya"}},"craft":{"label":"Seurt"},"crane/type":{"label":"Seurt gavr"},"crop":{"options":{"asparagus":"Asperjez","barley":"Heiz","beet":"Beterabez","cassava":"Maniok","coffee":"Kafe","cotton":"Kotoñs","cranberries":"Lus","flowers":"Bleunioù","grape":"Rezin","grass":"Geot","hop":"Houpez","lavender":"Lavand","maize":"Maiz","potato":"Avaloù-douar","rape":"Kolza","rice":"Riz","soy":"Soja","strawberry":"Sivi","sugar_beet":"Beterabez sukr","sunflower":"Troioù-heol","tea":"Te","tobacco":"Butun","vegetable":"Legumaj","wheat":"Ed"}},"crossing":{"label":"Seurt"},"crossing/barrier":{"options":{"full":"Leun","no":"Ket","yes":"Ya"}},"crossing/bell":{"label":"Kloc'h"},"crossing/markings":{"options":{"no":"N'eo ket merket","pictograms":"Piktogrammoù livet"}},"crossing_raised":{"options":{"table":"Ya","undefined":"Ket"}},"cuisine":{"label":"Keginerezh","options":{"american":"Amerikan","asian":"Aziat","bubble_tea":"Bubble Tea","burger":"Hamburger","cake":"Gwastell","chicken":"Kig-yar","chinese":"Sinat","chocolate":"Chokolad","coffee_shop":"Stal-gafe","dessert":"Dezerzh","donut":"Donut","fish":"Pesk","french":"Gall","german":"Alaman","greek":"Gresian","hot_dog":"Hot-Dog","ice_cream":"Dienn-skorn","indian":"Indian","indonesian":"Indoneziat","italian":"Italian","japanese":"Japanat","juice":"Chug","kebab":"Kebab","korean":"Korean","lebanese":"Libanat","malaysian":"Malezianat","mexican":"Mec'hikan","pankcake":"Krampouezh","pasta":"Toazennoù","pizza":"Pizza","polish":"Polonat","portuguese":"Portugalat","regional":"Rannvroel","russian":"Rusian","salad":"Saladenn","sandwich":"Sandwich","seafood":"Boued mor","spanish":"Spagnolat","sushi":"Sushi","taiwanese":"Taiwanat","thai":"Thai","turkish":"Turkat","vietnamese":"Vietnamat"}},"currency_multi":{"label":"Seurt moneiz"},"cutting":{"label":"Seurt","placeholder":"Dre ziouer"},"cycle_network":{"label":"Rouedad"},"cycleway":{"label":"Hent marc'h-houarn"},"date":{"label":"Deiziad"},"defibrillator/location":{"label":"Lec'hiadur resis"},"delivery":{"label":"Degasadenn"},"departures_board":{"options":{"no":"Hini ebet","timetable":"Implij-amzer","yes":"Ya"}},"depth":{"label":"Donder (metroù)"},"description":{"label":"Deskrivadur"},"destination":{"label":"Palioù"},"devices":{"label":"Benvegoù","placeholder":"1, 2, 3..."},"diameter":{"label":"Treuzkiz","placeholder":"5mm, 10cm, 15mt…"},"diameter_crown":{"placeholder":"4 m, 9', …"},"diet_multi":{"options":{"gluten_free":"Dic'hluten","halal":"Halal","kosher":"Kacher","lactose_free":"Hep laktoz","pescetarian":"Debrer pesk","vegan":"Vegan","vegetarian":"Vejetarian"}},"diplomatic":{"label":"Seurt"},"diplomatic/services":{"label":"Servijoù"},"direction":{"label":"Tu (derezioù gant roud ar bizied)","placeholder":"45, 90, 180, 270"},"direction_clock":{"label":"War-zu","options":{"anticlockwise":"Gant roud gin ar bizied","clockwise":"Gant roud ar bizied"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"options":{"backward":"War-gil","both":"An daou / An holl","forward":"War-eeun"}},"display":{"options":{"digital":"Niverek","sundial":"Horolaj-heol"}},"distance":{"label":"Pellder"},"disused/amenity":{"label":"Seurt"},"disused/railway":{"label":"Seurt"},"disused/shop":{"label":"Seurt"},"dock":{"label":"Seurt"},"dog":{"label":"Chas","options":{"leashed":"Dalc'het en o roll nemetken","no":"Difennet","yes":"Aotreet"}},"door":{"label":"Dor"},"door_type":{"label":"Seurt"},"drink_multi":{"label":"Evajoù"},"drive_through":{"label":"Servij \"drive\""},"duration":{"label":"Padelezh","placeholder":"00:00"},"ele":{"label":"Uhelder (metroù)","terms":"uhelder (metroù)"},"electrified":{"options":{"no":"Ket","yes":"Ya (n'eo ket spisaet)"}},"email":{"label":"Chomlec'h postel","placeholder":"skouer@skouer.bzh","terms":"chomlec'h,chomlec'h postel,internet,kenrouedad,lizher,post elektronek"},"embankment":{"label":"Seurt","placeholder":"Dre ziouer"},"embassy":{"label":"Seurt","options":{"yes":"Kannati"}},"emergency_combo":{"label":"Seurt"},"emergency_ward_entrance":{"label":"Seurt"},"enforcement":{"label":"Seurt"},"entrance":{"label":"Seurt","options":{"emergency":"Dor-dec'hel","entrance":"Moned hepken","exit":"Ermaez hepken","garage":"Dor garrdi","main":"Pennañ","service":"Servij","yes":"N'eo ket spisaet"}},"fax":{"label":"Pelleiler","placeholder":"+31 42 123 4567"},"fence_type":{"label":"Seurt"},"fire_hydrant/diameter":{"label":"Treuzkiz (mm, in, pe lizherennoù)"},"fire_hydrant/position":{"options":{"parking_lot":"Parklec'h","sidewalk":"Riblenn-straed"}},"fire_hydrant/pressure":{"label":"Gwask (bar)"},"fire_hydrant/type":{"label":"Furm","options":{"underground":"Dindandouar","wall":"Moger"}},"fireplace":{"label":"Oaled"},"fishing":{"label":"Pesketa"},"fixme":{"label":"Da reizhañ"},"flag/name":{"label":"Anv ar banniel"},"flag/type":{"label":"Seurt banniel"},"flashing_lights":{"options":{"no":"Ket","yes":"Ya"}},"ford":{"label":"Seurt","placeholder":"Dre ziouer"},"fountain":{"label":"Seurt"},"from":{"label":"Deus"},"fuel":{"label":"Esañs"},"fuel/fuel_multi":{"label":"Seurt esañs","options":{"GTL_diesel":"Diesel GTL","LH2":"Higrogen liñvel","adblue":"AdBlue / AUS 32","biodiesel":"Biodiesel","cng":" Gaz naturel kenwasket (GNK)","diesel":"Diesel","e10":"Esañs E10","e85":"Esañs E85","h70":"Gaz hidrogen (700 bar)","lpg":"Gaz naturel liñvennet (GNL)","octane_100":"Gazeoul (Oktan 100)","octane_80":"Gazeoul (Oktan 80)","octane_85":"Gazeoul (Oktan 85)","octane_87":"Gazeoul (Oktan 87)","octane_88":"Gazeoul (Oktan 88)","octane_89":"Gazeoul (Oktan 89)","octane_90":"Gazeoul (Oktan 90)","octane_91":"Gazeoul (Oktan 91)","octane_92":"Gazeoul (Oktan 92)","octane_93":"Gazeoul (Oktan 93)","octane_95":"Gazeoul (Oktan 95)","octane_97":"Gazeoul (Oktan 97)","octane_98":"Gazeoul (Oktan 98)","propane":"Propan"}},"gambling":{"label":"C'hoarioù"},"garden/type":{"label":"Seurt liorzh"},"gender":{"label":"Reizh","options":{"female":"Plac'h","male":"Gour"},"placeholder":"Dianav"},"generator/method":{"options":{"barrage":"Mordredanva","combustion":"Devidigezh","fusion":"Uniadur nukleel","photovoltaic":"Fotovoltaeg","thermal":"Energiezh termek an heol","water-pumped-storage":"Poull-stokañ","water-storage":"Mirlec'h","wind_turbine":"Rod-avel"}},"generator/output/electricity":{"placeholder":"50 MW, 100 MW, 200 MW..."},"generator/source":{"label":"Mammenn","options":{"biofuel":"Bevdrelosk","biogas":"Biogaz","coal":"Glaou","diesel":"Diesel","gas":"Gaz naturel","gasoline":"Esañs","geothermal":"Geotermiezh","hydro":"Dourdredan","nuclear":"Energiezh nukleel","oil":"Eoul-douar","solar":"Skinadur-heol","tidal":"Mordredan","waste":"Lastez","wave":"Gwagenndredan","wind":"Avel"}},"generator/type":{"label":"Seurt"},"government":{"label":"Seurt"},"guest_house":{"label":"Seurt"},"handicap":{"label":"Ampech","placeholder":"1-18"},"hashtags":{"label":"Hashtagoù","placeholder":"#skouer"},"healthcare":{"label":"Seurt"},"healthcare/speciality":{"label":"Arbennigezhioù","options":{"abortion":"Diforc'hidigezh","acupuncture":"Akupoentouriezh","allergology":"Allergiezh & berranal","anaesthetics":"Anesteziologiezh","angiology":"Angiologiezh","aromatherapy":"Aromaterapiezh","ayurveda":"Ayurveda","biochemistry":"Biokimiezh","biology":"Bevoniezh","cardiology":"Kalonouriezh","child_psychiatry":"Kreizenn vredvezegel evit ar vugale hag ar grennarded","dental_oral_maxillo_facial_surgery":"Surjianerezh an dent, ar genoù hag ar javed","dermatology":"Kroc'henouriezh","diabetology":"Diabetologiezh","endocrinology":"Endokrinologiezh","gastroenterology":"Gastroenterologiezh","gynaecology":"Gwiliouderezh & benvezegiezh","haematology":"Hematologiezh","hepatology":"Hepatologiezh","herbalism":"Louzaouerezh","homeopathy":"Homeopatiezh","hydrotherapy":"Hidroterapiezh","hypnosis":"Teoghun","infectious_diseases":"Kleñved poreüs","intensive":"Prederioù askoridik","nephrology":"Nefrologiezh","neurology":"Neurologiezh","neuropsychiatry":"Neuropsikiatriezh","neurosurgery":"Neurosurjianerezh","oncology":"Onkologiezh","ophthalmology":"Lagadouriezh","orthodontics":"Ortodontiezh","osteopathy":"Osteopatiezh","otolaryngology":"Skouarn, fri & gouzoug","palliative":"Prederioù habaskaus","pathology":"Patologiezh","plastic_surgery":"Surjianerezh neuziañ","psychiatry":"Psikiatriezh","radiology":"Radiologiezh","rheumatology":"Medisinerezh ar remm","stomatology":"Stomatologiezh","traditional_chinese_medicine":"Mezegiezh hengounel sinat","tuina":"Tuī ná","urology":"Urologiezh","vaccination":"Vaksinadur"}},"height":{"label":"Uhelded (metroù)"},"height_building":{"label":"Uhelder ar savadur (metroù)"},"highspeed":{"label":"Tizh bras"},"highway":{"label":"Seurt"},"highway_cartpath":{"label":"Seurt roudenn"},"historic":{"label":"Seurt"},"historic/civilization":{"label":"Sevenadurezh istorel"},"holding_position/type":{"label":"Seurt"},"hoops":{"placeholder":"1, 2, 4..."},"horse_dressage":{"options":{"equestrian":"Ya","undefined":"Ket"}},"horse_riding":{"label":"Marc'hegezh","options":{"horse_riding":"Ya","undefined":"Ket"}},"horse_scale":{"options":{"common":"Aes: kudenn pe diaester ebet. (dre ziouer)"},"placeholder":"Diaes, dañjerus"},"horse_stables":{"options":{"stables":"Ya","undefined":"Ket"}},"image":{"label":"Skeudenn","placeholder":"https://skouer.bzh/foto.jpg","terms":"skeudenn,luc'hskeudenn,imaj"},"incline":{"label":"Dinaou"},"indoor_type":{"label":"Seurt"},"industrial":{"label":"Seurt"},"information":{"label":"Seurt"},"inscription":{"label":"Enskrivadur"},"internet_access":{"label":"Kennask Internet","options":{"no":"Ket","wlan":"Wifi","yes":"Ya"}},"internet_access/fee":{"label":"Moned ouzh ar genrouedad","options":{"customers":"Pratikoù nemetken","no":"Digoust","yes":"Paeet"}},"internet_access/ssid":{"label":"Anv ar rouedad Wifi"},"junction_line":{"options":{"circular":"Kroashent-tro","roundabout":"Kroashent-tro"}},"kerb/height":{"label":"Uhelder"},"kitchen":{"label":"Kegin"},"kneipp_water_cure_multi":{"label":"Seurt diazad"},"label":{"label":"Label"},"lamp_mount":{"label":"Menez"},"lamp_type":{"label":"Seurt"},"landuse":{"label":"Seurt"},"lanes":{"label":"Forzhioù","placeholder":"1, 2, 3..."},"language_multi":{"label":"Yezhoù"},"layer":{"label":"Gwiskad","placeholder":"0"},"leaf_cycle":{"options":{"deciduous":"Dibad","evergreen":"Padus","mixed":"Mesket","semi_deciduous":"Hanter dibad","semi_evergreen":"Hanter padus"}},"leaf_type":{"label":"Seurt delienn","options":{"leafless":"Dizelienn","mixed":"Mesket"}},"leaf_type_singular":{"label":"Seurt delienn"},"leisure":{"label":"Seurt"},"length":{"label":"Hirder (Metroù)"},"liaison":{"label":"Seurt"},"lit":{"label":"Sklêrijennet"},"location":{"label":"Lec'hiadur"},"lock":{"label":"Skluz"},"lockable":{"label":"a brenn"},"locked":{"label":"Prennet"},"man_made":{"label":"Seurt"},"manhole":{"label":"Seurt"},"map_type":{"label":"Seurt"},"mapillary":{"label":"ID skeudenn Mapillary"},"marker":{"label":"Seurt"},"material":{"label":"Danvez"},"maxheight":{"label":"Uhelder uhelañ"},"maxspeed":{"label":"Bevenn Tizh","placeholder":"40, 50, 60..."},"maxspeed/advisory":{"placeholder":"40, 50, 60..."},"maxspeed/hgv":{"label":"Bevenn tizh kirri-samm","placeholder":"40, 50, 60..."},"maxweight":{"label":"Pouez uhelañ"},"maxwidth":{"label":"Ledander uhelañ"},"memorial":{"label":"Seurt"},"microbrewery":{"label":"Mikro-vreserezh"},"military_service":{"label":"Koñje"},"minspeed":{"label":"Bevenn tizh izelañ","placeholder":"20, 30, 40..."},"mtb/scale":{"label":"Diaester MTB","placeholder":"0, 1, 2, 3..."},"mtb/scale/imba":{"options":{"0":"⚪ Aesañ (kelc'h gwenn)","1":"🟢 Aes (kelc'h gwer)","3":"◆ Diaes (romb du)","4":"◆◆ Diaes-tre (daou romb du)"},"placeholder":"Aes, etre, diaes..."},"mtb/scale/uphill":{"placeholder":"0, 1, 2, 3..."},"museum":{"label":"Seurt"},"name":{"label":"Anv","placeholder":"Anv boutin (ma'z eus unan)"},"natural":{"label":"Naturel"},"network":{"label":"Rouedad"},"network/type":{"label":"Seurt rouedad"},"network_bicycle":{"options":{"icn":"Etrebroadel","lcn":"Lec'hel","ncn":"Broadel","rcn":"Rannvroel"},"placeholder":"Lec'hel, rannvroel, broadel, etrebroadel"},"network_foot":{"options":{"iwn":"Etrebroadel","lwn":"Lec'hel","nwn":"Broadel","rwn":"Rannvroel"},"placeholder":"Lec'hel, rannvroel, broadel, etrebroadel"},"network_horse":{"options":{"ihn":"Etrebroadel","lhn":"Lec'hel","nhn":"Broadel","rhn":"Rannvroel"},"placeholder":"Lec'hel, rannvroel, broadel, etrebroadel"},"network_road":{"label":"Rouedad"},"not/name":{"label":"Anvioù zo n'int ket mat"},"note":{"label":"Notenn"},"office":{"label":"Seurt"},"oneway":{"label":"Untu","options":{"no":"Ket","undefined":"\"Ket\" dre ziouer","yes":"Ya"},"terms":"untu,hent untu"},"oneway/bicycle":{"label":"Untu (marc'hoù-houarn)"},"oneway_yes":{"options":{"no":"Ket","undefined":"\"Ya\" dre ziouer","yes":"Ya"}},"opening_date":{"placeholder":"BBBB-MM-DD"},"opening_hours":{"label":"Eurioù","placeholder":"Dianav"},"operator":{"label":"Korvoer"},"operator/type":{"label":"Seurt korvoer"},"organic":{"label":"Produioù biologel","options":{"no":"Hini ebet","only":"Nemet","yes":"Reoù"}},"par":{"label":"Par","placeholder":"3, 4, 5..."},"parcel_pickup":{"options":{"no":"Ket","undefined":"\"Ya\" dre ziouer","yes":"Ya"}},"parking":{"label":"Seurt","options":{"sheds":"Lochoù","surface":"A-us d'an douar","underground":"Dindandouar"}},"parking_entrance":{"label":"Seurt"},"parking_space":{"label":"Seurt"},"payment_multi":{"label":"Seurt paeamant","options":{"alipay":"Alipay","american_express":"American Express","apple_pay":"Apple Pay","cash":"Arc'hant laosk","cheque":"Chekenn","coins":"pezhioù ","contactless":"Paeañ hep touch","credit_cards":"Kartenn-gred","debit_cards":"Kartenn-baeañ","discover_card":"Discover","dkv":"DKV","ep_easycard":"悠遊卡EasyCard","ep_geldkarte":"GeldKarte","ep_ipass":"iPASS一卡通","girocard":"Girocard","google_pay":"Google Pay","jcb":"JCB","maestro":"Maestro","mastercard":"Mastercard","mastercard_contactless":"Mastercard distok","notes":"Bilhedoù-bank","paypal":"PayPal","unionpay":"UnionPay","uta":"UTA","v_pay":"V Pay","visa":"Visa","visa_debit":"Visa Debit","visa_electron":"Visa Electron","wechat":"WeChat Pay"}},"phases":{"placeholder":"1, 2, 3..."},"phone":{"label":"Pellgomzer","placeholder":"+31 42 123 4567"},"pipeline":{"label":"Seurt"},"piste/difficulty":{"label":"Diaester","options":{"advanced":"Araokaet","easy":"Aes","expert":"Ampart","intermediate":"Etre","novice":"Evit an deraouidi"},"placeholder":"Aes, etre, araokaet..."},"piste/difficulty_downhill":{"options":{"easy":"Aes (kelc'h gwer)"},"placeholder":"Aes, etre, araokaet..."},"piste/difficulty_nordic":{"placeholder":"Aes, etre, araokaet..."},"piste/difficulty_skitour":{"options":{"easy":"Aes - WS: dinaou 30-35°"},"placeholder":"Aes, etre, araokaet..."},"piste/grooming":{"options":{"backcountry":"Ski louarn","scooter":"Skouter/moto-erc'h","skating":"Skate "}},"piste/grooming_nordic":{"options":{"skating":"Skateañ"}},"piste/type":{"label":"Seurt","options":{"hike":"Tro-vale","ice_skate":"Riklerezh","playground":"Porzh-c'hoari","sled":"Luj","sleigh":"Stlejell"}},"place":{"label":"Seurt"},"plant":{"label":"Plantenn"},"plant/output":{"options":{"cold_air":"Aer yen","cold_water":"Dour yen","compressed_air":"Aer moustret","electricity":"Tredan","hot_air":"Aer tomm","hot_water":"Dour zomm","steam":"Aezhenn"}},"plant/output/electricity":{"placeholder":"500 MW, 1000 MW, 2000 MW..."},"playground":{"label":"Seurt"},"plots":{"placeholder":"10, 20, 30..."},"polling_station":{"label":"Burev-votiñ"},"population":{"label":"Poblañs"},"population/date":{"label":"Deiziad ar poblañs","placeholder":"BBBB-MM-DD"},"post":{"label":"Chomlec'h Degasadenn"},"power":{"label":"Seurt"},"preschool":{"label":"Skol-vamm"},"product":{"label":"Produioù"},"public_bookcase/type":{"label":"Seurt"},"pump":{"options":{"no":"Hini ebet","yes":"Ya"}},"railway":{"label":"Seurt"},"railway/signal/direction":{"options":{"backward":"War-gil","both":"An daou / An holl","forward":"War-raok"}},"real_fire-GB-IE":{"label":"Gwir tan"},"recycling_accepts":{"options":{"clothes":"Dilhad","cooking_oil":"Eoul keginañ","green_waste":"Glasach","paper":"Paper","plastic":"Plastik"}},"recycling_type":{"label":"Seurt","options":{"centre":"Kreizenn adaozañ","container":"Kontener adaozañ"}},"ref":{"label":"Kod anaout"},"ref/isil":{"label":"Kod ISIL"},"ref_disc_golf_hole":{"placeholder":"1-18"},"ref_golf_hole":{"placeholder":"1-18"},"ref_platform":{"label":"Niver ar c'hae"},"ref_road_number":{"label":"Niver an hent"},"ref_room_number":{"label":"Niver ar c'hambr"},"ref_route":{"label":"Niver an hentad"},"ref_runway":{"placeholder":"da skouer: 01L/19R"},"ref_stop_position":{"label":"Niver an arsav"},"ref_taxiway":{"label":"Anv an hent-taksi","placeholder":"da skouer: A5"},"relation":{"label":"Seurt"},"religion":{"label":"Relijion","options":{"bahai":"Baha'i","buddhist":"Boudaad","christian":"Kristen","hindu":"Hindou","jain":"Jain","jewish":"Yuzev","muslim":"Muzulman","none":"Hep relijion","pagan":"Pagan","shinto":"Chinto","sikh":"Sikh","taoist":"Daoour","tenrikyo":"Tenrikyo"}},"reservation":{"options":{"recommended":"Aliet","required":"Rekis"}},"residential":{"label":"Seurt"},"resort":{"label":"Seurt"},"restriction":{"label":"Seurt"},"roof/colour":{"label":"Liv an doenn"},"room":{"label":"Seurt"},"rooms":{"label":"Kambroù"},"route":{"label":"Seurt"},"route_master":{"label":"Seurt"},"ruins":{"label":"Seurt"},"salt":{"label":"Holenet"},"screen":{"label":"Skrammoù","placeholder":"1, 4, 8…"},"scuba_diving":{"label":"Servijoù"},"seamark/beacon_isolated_danger/shape":{"label":"Furm"},"seamark/beacon_lateral/category":{"label":"Rummad","options":{"port":"Babourzh","starboard":"Stribourzh"}},"seamark/beacon_lateral/colour":{"label":"Liv","options":{"green":"Gwer","grey":"Louet","red":"Ruz"}},"seamark/beacon_lateral/shape":{"label":"Furm"},"seamark/beacon_lateral/system":{"options":{"iala-a":"IALA A","iala-b":"IALA B","other":"All"}},"seamark/buoy_lateral/category":{"label":"Rummad","options":{"port":"Babourzh","starboard":"Stribourzh"}},"seamark/buoy_lateral/colour":{"label":"Liv","options":{"green":"Gwer","green;red;green":"Gwer-Ruz-Gwer","green;white;green;white":"Gwer-Gwenn-Gwer-Gwenn","red":"Ruz","red;green;red":"Ruz-Gwer-Ruz","red;white;red;white":"Ruz-Gwenn-Ruz-Gwenn","white":"Gwenn","yellow":"Melen"}},"seamark/buoy_lateral/shape":{"label":"Furm"},"seamark/buoy_lateral/system":{"options":{"iala-a":"IALA A","iala-b":"IALA B","other":"All"}},"seamark/mooring/category":{"label":"Rummad"},"seamark/rescue_station/category":{"options":{"aircraft":"Aerlestr","radio":"Chadenn radio"}},"seamark/wreck/category":{"label":"Rummad"},"seats":{"label":"Plasoù","placeholder":"2, 4, 6..."},"second_hand":{"options":{"no":"Ket","only":"Nemet","yes":"Ya"},"placeholder":"Ya, Ket, Nemet"},"service":{"label":"Seurt","options":{"alley":"Straedig","drive-through":"Servij \"drive\"","driveway":"Alez","emergency_access":"Moned trummadoù","parking_aisle":"Plas parkañ"}},"service/bicycle":{"label":"Servijoù marc'hhouarnerezh"},"service/vehicle":{"label":"Servijoù"},"service_rail":{"label":"Seurt servij"},"shelter":{"label":"Goudor"},"shelter_type":{"label":"Seurt"},"shop":{"label":"Seurt"},"shower":{"label":"Strinkerezh"},"siren/type":{"label":"Seurt","options":{"electronic":"Tredanel","other":"All"}},"site":{"label":"Seurt"},"smoking":{"label":"Butuniñ","options":{"no":"Arabat butuniñ e pep lec'h"},"placeholder":"Ket, Disrannet, Ya..."},"sms":{"label":"SMS"},"social_facility":{"label":"Seurt"},"source":{"label":"Mammennoù","options":{"aerial imagery":"Skeudenn-aer","gps":"GPS","local knowledge":"Gouiziegezh lec'hel","osm notes":"Notennoù OpenStreetMap"}},"source/population":{"label":"Mammenn ar poblañs"},"sport":{"label":"Sportoù"},"sport_ice":{"label":"Sportoù","options":{"curling":"Curling","ice_hockey":"Hockey","ice_skating":"Riklerezh","multi":"Lies"}},"sport_pub":{"label":"Sportoù","options":{"billiards":"Bilhard","darts":"Biroùigoù"}},"sport_racing_motor":{"label":"Sportoù","options":{"karting":"Karting"}},"sport_racing_nonmotor":{"label":"Sportoù","options":{"bmx":"BMX","cycling":"Marc'hhouarnerezh","running":"Redek"}},"stars":{"label":"Stered"},"start_date":{"label":"Deiziad an deraouenn","placeholder":"BBBB-MM-DD"},"step_count":{"label":"Niver a ziri"},"stile":{"label":"Seurt"},"stop":{"label":"Seurt arsav","options":{"all":"Holl roudennoù","minor":"Hent eilrenk"}},"street_cabinet":{"label":"Seurt"},"stroller":{"options":{"no":"Ket","yes":"Ya"}},"structure":{"options":{"bridge":"Pont","ford":"Roudouz","tunnel":"Riboul"},"placeholder":"Dianav"},"structure_waterway":{"options":{"tunnel":"Riboul"},"placeholder":"Dianav"},"studio":{"label":"Seurt"},"subject":{"label":"Danvez"},"subject/wikidata":{"label":"Wikidata an danvez"},"substation":{"label":"Seurt","options":{"industrial":"Greantel"}},"substation_pipeline":{"label":"Seurt","options":{"valve":"Begel"}},"surface":{"label":"Gorread","options":{"asphalt":"Asfalt","concrete":"Betoñs","dirt":"Douar","grass":"Leton","gravel":"Grouan","ground":"Leur","metal":"Metal","paved":"Teret","salt":"Holenet","sand":"Traezh","unpaved":"Nann-teret","wood":"Koad","woodchips":"Skolp"}},"surveillance/type":{"label":"Seurt evezherezh","options":{"camera":"Kamera","guard":"Gward"}},"surveillance/zone":{"label":"Takad evezhiet"},"survey_point/structure":{"options":{"cairn":"Karn","medallion":"Medalenn","pillar":"Piler","plaque":"Plakenn","pole":"Post"}},"swimming_pool":{"label":"Seurt"},"switch":{"label":"Seurt","options":{"disconnector":"Distager","mechanical":"Mekanikel"}},"takeaway":{"label":"Da gas ganeoc'h","options":{"no":"Ket","only":"Nemet da gas ganeoc'h","yes":"Ya"},"placeholder":"Ya, Ket, Nemet da gas ganeoc'h..."},"taxon":{"label":"Takson"},"tee":{"label":"Seurt/liv an te"},"telecom":{"label":"Seurt"},"to":{"label":"Da"},"toilets":{"label":"Privezioù"},"toilets/disposal":{"options":{"bucket":"Sailh","chemical":"Chimik"}},"toilets/wheelchair":{"label":"Privezioù aes d'an dud dalc'het en o c'herzhed","options":{"limited":"Bevennet","no":"Ket","yes":"Ya"},"terms":"privezioù aes d'an dud dalc'het en o c'herzhed,wc,tdk"},"toll":{"label":"Gwir-treizh"},"tomb":{"label":"Seurt"},"tourism":{"label":"Seurt"},"tower/construction":{"label":"Savidigezh"},"tower/platforms":{"label":"Savennoù","placeholder":"1, 2, 3..."},"tower/type":{"label":"Seurt"},"townhall/type":{"label":"Seurt"},"tracktype":{"label":"Seurt forzh"},"trade":{"label":"Seurt"},"traffic_calming":{"label":"Seurt"},"traffic_sign":{"label":"Panell-henchañ"},"traffic_sign/direction":{"options":{"backward":"War-gil","both":"An daou / An holl","forward":"War-raok"}},"traffic_signals":{"label":"Seurt"},"traffic_signals/direction":{"options":{"backward":"War-gil","both":"An daou / An holl","forward":"War-raok"}},"traffic_signals/sound":{"options":{"no":"Ket","yes":"Ya"}},"trail_visibility":{"placeholder":"Dispar, mat, fall..."},"transformer":{"label":"Seurt","options":{"yes":"Roll dianav"}},"trees":{"label":"Gwez"},"trench":{"label":"Seurt"},"trolley_wire":{"label":"Funioù trolleybus"},"tunnel":{"label":"Seurt","placeholder":"Dre ziouer"},"tunnel_combo":{"label":"Seurt","options":{"culvert":"Kan-dour"}},"turning_circle":{"label":"Furm"},"two_sided":{"label":"Daoudu","options":{"undefined":"Ket","yes":"Ya"}},"usage_rail":{"label":"Seurt implij","options":{"industrial":"Greantel","military":"Milour","tourism":"Touristelezh"}},"usage_waterway":{"label":"Seurt implij"},"valve":{"label":"Seurt"},"vehicles":{"label":"Karbedoù","options":{"bus":"Bus","ferry":"Ferry","light_rail":"Metro skañv","monorail":"Unroudenn","subway":"Metro","train":"Tren","tram":"Tramgarr","trolleybus":"Trolleybus"}},"vending":{"label":"Seurt marc'hadourezh"},"visibility":{"label":"Gwelusted","options":{"area":"Ouzhpenn 20m (65tt)","house":"Betek 5m (16tt)","street":"Eus 5 da 20m (eus 16 da 65tt)"}},"volcano/status":{"label":"Statud ar menez-tan","options":{"active":"Oberiant"}},"volcano/type":{"label":"Seurt menez-tan"},"voltage":{"label":"Voltadur"},"wall":{"label":"Seurt"},"waste":{"label":"Lastez"},"water":{"label":"Seurt"},"water_source":{"label":"Mammenn dour"},"water_tank/volume":{"label":"Volum (litroù)","placeholder":"10000, 20000, 30000…"},"waterway":{"label":"Seurt"},"website":{"label":"Lec'hienn","placeholder":"https://skouer.bzh/"},"wetland":{"label":"Seurt","options":{"mangrove":"Mangrovenn","wet_meadow":"Pradenn c'hleb"}},"wheelchair":{"label":"Moned kadorioù-ruilh","options":{"limited":"Bevennet","no":"Ket","yes":"Ya"}},"width":{"label":"Ledander (Metroù)"},"wikidata":{"label":"Wikidata"},"wikimedia_commons":{"label":"Pajenn Wikimedia Commons","placeholder":"Teul:Skouer.jpg"},"wikipedia":{"label":"Wikipedia"},"windings":{"placeholder":"1, 2, 3..."},"windings/auto":{"options":{"no":"Ket","undefined":"\"Ket\" dre ziouer","yes":"Ya"}},"windings/configuration":{"options":{"delta":"Delta","leblanc":"Leblanc","open":"Digor","scott":"Scott","star":"Star / Wye","zigzag":"Kamm-digamm"}}},"presets":{"address":{"name":"Chomlec'h"},"aerialway/cable_car":{"name":"Fungarr"},"aerialway/drag_lift":{"name":"Fungador","terms":"skiañ,ski,funsacherez,fungador"},"aeroway/aerodrome":{"name":"Aerborzh","terms":"aerborzh"},"aeroway/apron":{"name":"Tarmak"},"aeroway/helipad":{"name":"Biñsporzh","terms":"biñsporzh"},"aeroway/runway":{"name":"Pradva"},"amenity/animal_shelter":{"name":"Bod-loened","terms":"kevredad gwarez al loened,kgl,bod,bod-loened,loen,loen-ti,loen moumoun,moumoun,perc'hennañ,adopsion,advabañ,advugelañ"},"amenity/atm":{"name":"Bilhedaouer"},"amenity/bank":{"name":"Ti-bank","terms":"ti-bank,arc'hanti"},"amenity/bar":{"name":"Tavarn"},"amenity/bar/lgbtq":{"name":"Tavarn LGDTQ+"},"amenity/bench":{"name":"Bank"},"amenity/bicycle_parking":{"name":"Parklec'h marc'hoù-houarn"},"amenity/bicycle_parking/building":{"name":"Karrdi marc'hoù-houarn","terms":"parklec'h,karrdi,marc'h-houarn"},"amenity/bicycle_parking/lockers":{"name":"Kadranasoù marc'hoù-houarn","terms":"marc'h-houarn,pluenn,kadranas,krabotinell"},"amenity/bicycle_parking/shed":{"name":"Goudor marc'hoù-houarn","terms":"goudor,loch,marc'h-houarn"},"amenity/bicycle_rental":{"name":"Marc'hoù-houarn da feurmiñ"},"amenity/bus_station":{"name":"Arsav-dibenn bus"},"amenity/cafe":{"name":"Ti-kafe","terms":"ti-kafe,kafedi,ti-evañ"},"amenity/cafe/bubble_tea":{"name":"Tavarn bubble-tea"},"amenity/cafe/coffee_shop":{"name":"Ti-kafe"},"amenity/car_pooling":{"name":"Leur-genweturañ"},"amenity/casino":{"name":"Kazino"},"amenity/cinema":{"name":"Sinema","terms":"sinema,fiñvskeudenndi,fiñvskeudennva"},"amenity/clinic/abortion":{"name":"Klinikenn diforc'hidigezh"},"amenity/clock":{"name":"Eurier","terms":"amzer,eurier,montr,pandulenn,dihuner,horolaj"},"amenity/college":{"name":"Tachenn skol deskadurezh uhel","terms":"skol deskadurezh uhel,skol-veur,deskadurezh uhel"},"amenity/community_centre":{"name":"Sal liezimplij"},"amenity/courthouse":{"name":"Ti-barn"},"amenity/coworking_space":{"name":"Lec'h kenlabourat"},"amenity/crematorium":{"name":"Forn an ankoù"},"amenity/doctors":{"name":"Doktor"},"amenity/dojo":{"name":"Dojo"},"amenity/dressing_room":{"name":"Gwiskva"},"amenity/drinking_water":{"name":"Dour Mat da Evañ","terms":"dour mat da evañ"},"amenity/driver_training":{"name":"Tachenn skol-vleinañ"},"amenity/driving_school":{"name":"Skol-vleinañ"},"amenity/embassy":{"name":"Kannati"},"amenity/fast_food":{"name":"Fast Food"},"amenity/fast_food/fish_and_chips":{"name":"Fish & Chips"},"amenity/fast_food/kebab":{"name":"Ti-kebab"},"amenity/fast_food/mexican":{"name":"Fast-food mec'hikan"},"amenity/fast_food/pizza":{"name":"Ti-pizza"},"amenity/fire_station":{"name":"Kazarn Pomperien","terms":"pomperien,pomper,pomperez,pomperezed,kazarn pomperien,kazarn ar bomperien,paotr an tan,plac'h an tan,saper-pomper,saper-pomperez,saper-pomper youlat,spy,tangwall,tan,mallusted,kreizenn tanioù-gwall ha sikourioù,kts,kreizenn sikour,gwarez a-enep an tanioù-gwall"},"amenity/fountain":{"name":"Feunteun"},"amenity/fuel":{"name":"Porzh Servij"},"amenity/grave_yard":{"name":"Bered"},"amenity/hospital":{"name":"Tachenn ospital"},"amenity/internet_cafe":{"name":"Siber-tavarn","terms":"sibertavarn,tavarn,stlenneg,ti-debriñ"},"amenity/kindergarten":{"name":"Tachenn skol-vamm"},"amenity/language_school":{"name":"Skol yezhoù"},"amenity/lavoir":{"name":"Poull-kannañ"},"amenity/library":{"name":"Levraoueg"},"amenity/marketplace":{"name":"Marc'had"},"amenity/monastery":{"name":"Tachenn abati"},"amenity/music_school":{"name":"Skol sonerezh"},"amenity/nightclub":{"name":"Toull-noz","terms":"toull-noz,toull"},"amenity/nightclub/lgbtq":{"name":"Toull-noz LGDTQ+"},"amenity/nursing_home":{"name":"Ti-diskuizh"},"amenity/parking":{"name":"Parklec'h"},"amenity/parking/park_ride":{"name":"Parklec'h-eskemm"},"amenity/parking/underground":{"name":"Parklec'h dindandouar"},"amenity/parking_space":{"name":"Plasenn parkañ","terms":"parklec'h,plasenn,parkañ,karr-tan,gwetur,karbed,plasenn parkañ"},"amenity/photo_booth":{"name":"Fotomaton"},"amenity/place_of_worship":{"name":"Lec'h Azeuliñ","terms":"lec'h azeuliñ,lec'h sakr"},"amenity/place_of_worship/buddhist":{"name":"Templ Boudaat","terms":"templ boudaat"},"amenity/place_of_worship/christian":{"name":"Iliz Kristen","terms":"iliz kristen"},"amenity/place_of_worship/christian/la_luz_del_mundo":{"name":"Templ La Luz del Mundo"},"amenity/place_of_worship/hindu":{"name":"Templ hindou","terms":"kovil,devasthana,mandir,kshetram,alayam,aoter,templ,lec'h santel"},"amenity/place_of_worship/jewish":{"name":"Sinagogenn","terms":"sinagogenn"},"amenity/place_of_worship/muslim":{"name":"Moskeenn","terms":"moskeenn"},"amenity/place_of_worship/shinto":{"name":"Aoter chinto"},"amenity/place_of_worship/sikh":{"name":"Templ sikh"},"amenity/place_of_worship/taoist":{"name":"Templ daoat"},"amenity/planetarium":{"name":"Planetariom"},"amenity/police":{"name":"Ti-polis","terms":"ti-polis,staelva-polis,post-polis"},"amenity/polling_station":{"name":"Burev-votiñ pad"},"amenity/post_box":{"name":"Boest-lizhiri (kas)"},"amenity/post_office":{"name":"Ti-post"},"amenity/prison":{"name":"Tachenn doull-bac'h"},"amenity/pub":{"name":"Pub"},"amenity/pub/lgbtq":{"name":"Pub LGDTQ+"},"amenity/public_bath":{"name":"Kibelldi foran"},"amenity/recycling":{"name":"Lec'h adaozañ"},"amenity/recycling/container/electrical_items":{"name":"Kontener lastez aveadurioù tredan hag elektronek"},"amenity/recycling/container/green_waste":{"name":"Kontener glasach"},"amenity/recycling_centre":{"name":"Kreizenn adaozañ"},"amenity/recycling_container":{"name":"Kontener adaozañ"},"amenity/refugee_site":{"name":"Kamp repuidi","terms":"kamp repuidi"},"amenity/restaurant":{"name":"Preti","terms":"preti,ti-debriñ"},"amenity/restaurant/american":{"name":"Ti-debriñ amerikan"},"amenity/restaurant/asian":{"name":"Preti aziat"},"amenity/restaurant/barbeque":{"name":"Ti-debriñ regezer"},"amenity/restaurant/chinese":{"name":"Preti sinat"},"amenity/restaurant/french":{"name":"Preti gall","terms":"preti,ti-debriñ,ostaleri,gall,galleg,frañs,bro-c'hall"},"amenity/restaurant/german":{"name":"Preti alaman"},"amenity/restaurant/greek":{"name":"Ti-debriñ gresat"},"amenity/restaurant/indian":{"name":"Preti indian"},"amenity/restaurant/italian":{"name":"Preti italian"},"amenity/restaurant/japanese":{"name":"Preti japanat"},"amenity/restaurant/mexican":{"name":"Preti mec'hikan"},"amenity/restaurant/pizza":{"name":"Ti-pizza"},"amenity/restaurant/seafood":{"name":"Preti boued-mor"},"amenity/restaurant/sushi":{"name":"Preti sushi"},"amenity/restaurant/thai":{"name":"Preti thai"},"amenity/restaurant/turkish":{"name":"Preti turkat"},"amenity/restaurant/vietnamese":{"name":"Preti vietnamat"},"amenity/school":{"name":"Tachenn skol"},"amenity/shelter":{"name":"Goudor"},"amenity/shower":{"name":"Strinkerezh"},"amenity/smoking_area":{"name":"Takad Butunerien","terms":"butunerien,butun,takad,takad butunerien"},"amenity/social_centre":{"name":"Kreizenn sokial"},"amenity/social_facility/nursing_home":{"name":"Ti-diskuizh"},"amenity/studio/radio":{"name":"Chadenn radio"},"amenity/telephone":{"name":"Pellgomzer"},"amenity/theatre":{"name":"C'hoariva","terms":"c'hoariva,teatr"},"amenity/theatre/type/amphi":{"name":"Selaouva"},"amenity/toilets":{"name":"Privezioù"},"amenity/townhall":{"name":"Ti-kêr","terms":"ti-kêr,maerdi"},"amenity/townhall/city":{"name":"Ti-kêr"},"amenity/university":{"name":"Tachenn skol-veur"},"amenity/vending_machine":{"name":"Dasparzher emgefre","terms":"dasparzher,ingaler,emgefre,emgefreek"},"amenity/vending_machine/bicycle_tube":{"name":"Dasparzher bouzellennoù-rod"},"amenity/vending_machine/coffee":{"name":"Greg emgefreek"},"amenity/vending_machine/feminine_hygiene":{"name":"Ingaler produioù evit an amzerioù"},"amenity/vending_machine/food":{"name":"Dasparzher boued"},"amenity/vending_machine/ice_cream":{"name":"Dasparzher dienn-skorn"},"amenity/vending_machine/newspapers":{"name":"Dasparzher kazetennoù","terms":"kazetenn,dasparzher,ingaler"},"amenity/vending_machine/parking_tickets":{"name":"Ingaler tikedennoù parkañ"},"amenity/vending_machine/pizza":{"name":"Dasparzher pizzaoù"},"amenity/waste_basket":{"name":"Poubellenn-straed"},"area":{"name":"Takad"},"area/highway":{"name":"Takad hent"},"attraction/amusement_ride":{"name":"Manej"},"attraction/bumper_car":{"name":"Kirri tos-tos"},"attraction/carousel":{"name":"Kezeg-koad"},"attraction/maze":{"name":"Milendall"},"attraction/train":{"name":"Tren bihan touristel","terms":"tren bihan touristel"},"attraction/water_slide":{"name":"Ruz-dour"},"barrier/border_control":{"name":"Post-harzoù"},"barrier/chain":{"name":"Chadenn"},"barrier/ditch":{"name":"Klaz","terms":"klaz,foz,fozell"},"barrier/entrance":{"name":"Mont-tre"},"barrier/fence":{"name":"Kloued","terms":"kloued,peulgae,kael"},"barrier/gate":{"name":"Porrastell","terms":"porrastell,dor-dall,porched"},"barrier/guard_rail":{"name":"Aspled","terms":"ramparzh,aspled,garid"},"barrier/handrail":{"name":"Ramparzh"},"barrier/hedge":{"name":"Garzh","terms":"garzh"},"barrier/log":{"name":"Gwezenn kouezet"},"barrier/wall":{"name":"Moger"},"barrier/yes":{"name":"Harz (n'eo ket spisaet)"},"boundary":{"name":"Harzoù"},"boundary/administrative":{"name":"Harzoù melestradurel"},"building":{"name":"Savadur"},"building/apartments":{"name":"Kendi"},"building/bunker":{"name":"Bunker"},"building/cabin":{"name":"Lochell","terms":"loch,lochenn,kabanenn,log,logell,logenn,lojell"},"building/cathedral":{"name":"Iliz-veur","terms":"iliz-veur"},"building/chapel":{"name":"Chapel","terms":"chapel,ti-pediñ"},"building/church":{"name":"Iliz","terms":"iliz"},"building/college":{"name":"Savadur deskadurezh-uhel"},"building/commercial":{"name":"Savadur koñvers"},"building/construction":{"name":"Savadur war ober"},"building/dormitory":{"name":"Kousklec'h","terms":"kousklec'h,kouskva,hunva"},"building/entrance":{"name":"Mont-tre / Mont-maez"},"building/farm":{"name":"Ti-feurm","terms":"ti-feurm,atant"},"building/farm_auxiliary":{"name":"Savadur atant"},"building/fire_station":{"name":"Kreizenn-sikour"},"building/garage":{"name":"Karrdi","terms":"karrdi"},"building/garages":{"name":"Karrdioù"},"building/greenhouse":{"name":"Ti-gwer","terms":"ti-gwer"},"building/hospital":{"name":"Ospital","terms":"ospital,klañvdi"},"building/hotel":{"name":"Leti"},"building/house":{"name":"Ti"},"building/hut":{"name":"Log"},"building/industrial":{"name":"Savadur greantel"},"building/kindergarten":{"name":"Savadur skol-vamm"},"building/mosque":{"name":"Moskeenn","terms":"moskeenn"},"building/office":{"name":"Burevioù"},"building/outbuilding":{"name":"Pourpez"},"building/public":{"name":"Savadur foran"},"building/residential":{"name":"Savadur annez"},"building/retail":{"name":"Savadur kenwerzhel"},"building/roof":{"name":"Toenn"},"building/ruins":{"name":"Dismantroù ur savadur"},"building/school":{"name":"Savadur skol"},"building/shed":{"name":"Loch"},"building/stadium":{"name":"Stad"},"building/synagogue":{"name":"Sinagogenn"},"building/temple":{"name":"Templ"},"building/train_station":{"name":"Ti-gar"},"building/university":{"name":"Savadur skol-veur"},"building_part":{"name":"Rann ur savadur"},"building_point":{"name":"Savadur"},"cemetery/grave":{"name":"Bez","terms":"bez"},"club":{"name":"Klub"},"club/sport":{"name":"Klub sport"},"craft/blacksmith":{"name":"Govel","terms":"govel"},"craft/chimney_sweeper":{"name":"Skarzher"},"craft/clockmaker":{"name":"Horolajerezh","terms":"horolaj,eurier,moñcher,stal,montr,pandulenn,dihuner,horolajerezh"},"craft/distillery":{"name":"Strilherezh"},"craft/electrician":{"name":"Tredaner"},"craft/gardener":{"name":"Liorzhour"},"craft/joiner":{"name":"Kalvez"},"craft/locksmith":{"name":"Alc'hwezerezh"},"craft/painter":{"name":"Livour"},"craft/sculptor":{"name":"Kizeller","terms":"kizeller,kizellour,skulter,skultour,maengizeller"},"demolished/building":{"name":"Savadur distrujet nevez zo"},"embankment":{"name":"Savenn-douar"},"emergency/assembly_point":{"name":"Lec'h emzastum difrae","terms":"lec'h emzastum difrae"},"emergency/defibrillator":{"name":"Difibrilator"},"emergency/fire_extinguisher":{"name":"Mouger-tan","terms":"mouger-tan"},"emergency/fire_hose":{"name":"Korzenn eneptan","terms":"stal oaledoù,oaled,siminal"},"emergency/fire_hydrant":{"name":"Genoù tan-gwall","terms":"genoù tan-gwall"},"emergency/phone":{"name":"Pellgomz difrae"},"emergency/siren":{"name":"C'hwitellerez"},"entrance":{"name":"Mont-tre / Mont-maez"},"entrance/emergency":{"name":"Ermaez difrae"},"entrance/main":{"name":"Moned pennañ"},"ford":{"name":"Roudouz"},"ford_line":{"name":"Roudouz"},"golf/bunker":{"name":"Foz (golf)"},"golf/fairway":{"name":"Kanol-vor","terms":"kanol-vor,naoz"},"golf/green":{"name":"Glazenn bleustriñ"},"golf/hole":{"name":"Toull"},"golf/tee":{"name":"Torgenn deroù"},"healthcare":{"name":"Pennospital"},"healthcare/alternative":{"name":"Mezegiezh dazeilat"},"healthcare/alternative/chiropractic":{"name":"Kiropraktour"},"healthcare/dentist/orthodontics":{"name":"Kabined ortodontiezh"},"healthcare/laboratory":{"name":"Arnodva dielfennadurioù mezegel"},"healthcare/physiotherapist":{"name":"Fizikyac'haour"},"healthcare/psychotherapist":{"name":"Bredyac'haour"},"healthcare/speech_therapist":{"name":"Mezeg-al-lavar"},"healthcare/yes":{"name":"Pennospital (n'eo ket spisaet)"},"highway":{"name":"Elfenn ar Gourhent"},"highway/bus_stop":{"name":"Arsav Bus"},"highway/busway":{"name":"Forzh bus","terms":"treuzdougen,treuzdougen foran,bus,karr-boutin,busway,forzh,hent"},"highway/crossing/unmarked":{"name":"Treuzenn n'eo ket merket"},"highway/cycleway":{"name":"Hent marc'hoù-houarn"},"highway/cycleway/crossing/unmarked":{"name":"Treuzenn marc'h-houarn n'eo ket merket"},"highway/elevator":{"name":"Pignerez"},"highway/footway/crossing":{"name":"Treuzenn kerzhourien"},"highway/footway/crossing/unmarked":{"name":"Treuzenn n'eo ket merket"},"highway/footway/sidewalk":{"name":"Riblenn-straed"},"highway/give_way":{"name":"Panell \"lezit da dremen\""},"highway/living_street":{"name":"Straed vev"},"highway/mini_roundabout":{"name":"Kroashent-tro bihan","terms":"kroashent-tro bihan,kroashent-troig"},"highway/path":{"name":"Gwenodenn"},"highway/pedestrian_area":{"name":"Takad kerzhet"},"highway/pedestrian_line":{"name":"Straed kerzhet"},"highway/primary":{"name":"Hent pennañ"},"highway/residential":{"name":"Hent annez"},"highway/road":{"name":"Hent Dianav"},"highway/road/bridge":{"name":"Pont bleinet dianav"},"highway/secondary":{"name":"Hent eilrenk"},"highway/service":{"name":"Hent moned"},"highway/service/alley":{"name":"Alez"},"highway/service/drive-through":{"name":"Servij \"drive\""},"highway/service/driveway":{"name":"Alez"},"highway/service/emergency_access":{"name":"Moned trummadoù"},"highway/service/parking_aisle":{"name":"Plas-parkañ"},"highway/service_area":{"name":"Leur-servij teret"},"highway/services":{"name":"Takad servij"},"highway/speed_camera":{"name":"Radar","terms":"radar,bevenn-tizh"},"highway/steps":{"name":"Diri","terms":"diri"},"highway/steps/conveying":{"name":"Diri-ruilh","terms":"diri-ruilh,eskalator"},"highway/stop":{"name":"Panell stop"},"highway/street_lamp":{"name":"Post-lamp"},"highway/tertiary":{"name":"Hent trederenk"},"highway/traffic_signals":{"name":"Gouleier triliv"},"highway/unclassified":{"name":"Hent eilrenk/direnk"},"historic":{"name":"Lec'h Istorel"},"historic/archaeological_site":{"name":"Lec'hienn arkeologel"},"historic/building":{"name":"Savadur istorel"},"historic/castle":{"name":"Kastell"},"historic/castle/fortress":{"name":"Kreñvlec'h istorel"},"historic/castle/palace":{"name":"Palez"},"historic/castle/stately":{"name":"Kastell"},"historic/manor":{"name":"Maner"},"historic/memorial":{"name":"Kounlec'h"},"historic/monument":{"name":"Monumant"},"historic/pillory":{"name":"Post-ar-vezh istorel"},"historic/ruins":{"name":"Dismantroù"},"historic/tomb":{"name":"Bez","terms":"bez,maen-koun"},"historic/wayside_cross":{"name":"Kalvar"},"historic/wreck":{"name":"Peñse"},"indoor/room":{"name":"Kambr"},"landuse":{"name":"Elfenn implij an douar"},"landuse/aquaculture":{"name":"Dourc'hounezerezh"},"landuse/basin":{"name":"Diazad"},"landuse/brownfield":{"name":"Tachenn fraost"},"landuse/cemetery":{"name":"Bered"},"landuse/commercial":{"name":"Takad koñvers"},"landuse/construction":{"name":"Takad Sevel"},"landuse/farm":{"name":"Takad labour-douar"},"landuse/farmland":{"name":"Takad labour-douar"},"landuse/grass":{"name":"Leton"},"landuse/harbour":{"name":"Havr","terms":"porzh,havr,bag"},"landuse/industrial":{"name":"Takad greantel"},"landuse/industrial/slaughterhouse":{"name":"Lazhti","terms":"lazhti,abatouer,lazhdi,boserezh"},"landuse/landfill":{"name":"Diskarg"},"landuse/meadow":{"name":"Pradenn"},"landuse/military":{"name":"Takad Milourel"},"landuse/military/barracks":{"name":"Kazarn"},"landuse/military/base":{"name":"Bon milour"},"landuse/military/base/navy":{"name":"Bon mor"},"landuse/pond":{"name":"Poull"},"landuse/quarry":{"name":"Mengleuz"},"landuse/religious":{"name":"Takad relijiel"},"landuse/reservoir":{"name":"Mirlec'h"},"landuse/residential":{"name":"Takad Annez"},"landuse/salt_pond":{"name":"Palud"},"landuse/vineyard":{"name":"Gwinieg"},"leisure":{"name":"Elfenn an Dudi"},"leisure/common":{"name":"Tachenn foran"},"leisure/dancing_school":{"name":"Skol-dañs"},"leisure/escape_game":{"name":"Escape Room"},"leisure/fitness_station/parallel_bars":{"name":"Divvarrenn genstur"},"leisure/garden":{"name":"Liorzh"},"leisure/garden/botanical":{"name":"Liorzh-plant","terms":"liorzh-plant,liorzh louzawouriezh"},"leisure/golf_course":{"name":"Tachenn golf"},"leisure/horse_riding":{"name":"Kreizenn varc'hegezh","terms":"kreizenn varc'hegezh,marc'h,kezeg,kazeg,marc'hegezh,marchosi,kraou,kraou-kezeg"},"leisure/miniature_golf":{"name":"Minigolf"},"leisure/nature_reserve":{"name":"Gwarezva natur"},"leisure/park":{"name":"Park","terms":"park,liorzh"},"leisure/picnic_table":{"name":"Taol biknik"},"leisure/picnic_table/chess":{"name":"Taol wezboell"},"leisure/pitch/american_football":{"name":"Tachenn football amerikan"},"leisure/pitch/american_handball":{"name":"Tachenn handball amerikan","terms":"tachenn handball amerikan,handball amerikan"},"leisure/pitch/baseball":{"name":"Tachenn baseball"},"leisure/pitch/basketball":{"name":"Tachenn vasket"},"leisure/pitch/beachvolleyball":{"name":"Tachenn traezhenn-volley-ball","terms":"traezhenn,volley-ball,volley,volleyball"},"leisure/pitch/cricket":{"name":"Tachenn griked","terms":"kriked,sport,tachenn,tachenn griked"},"leisure/pitch/paintball":{"name":"Tachenn paintball"},"leisure/pitch/shooting":{"name":"Stand tennañ"},"leisure/pitch/skateboard":{"name":"Skatepark"},"leisure/pitch/soccer":{"name":"Tachenn vell-droad"},"leisure/pitch/table_tennis":{"name":"Taol dennis-taol","terms":"ping pong,tennis-daol,taol,taol dennis-daol"},"leisure/pitch/tennis":{"name":"Tachenn dennis"},"leisure/playground":{"name":"Porzh-c'hoari"},"leisure/sauna":{"name":"Sauna"},"leisure/sports_centre":{"name":"Kreizenn-sport"},"leisure/stadium":{"name":"Stad"},"leisure/swimming_pool":{"name":"Poull-neuial"},"leisure/track/horse_racing":{"name":"Marc'hva"},"line":{"name":"Linenn"},"man_made":{"name":"Elfenn Artifisiel"},"man_made/beehive":{"name":"Ruskenn"},"man_made/bridge":{"name":"Gorread pont"},"man_made/chimney":{"name":"Siminal"},"man_made/crane":{"name":"Gavr"},"man_made/cross":{"name":"Kroaz"},"man_made/embankment":{"name":"Savenn-douar"},"man_made/flagpole":{"name":"Gwern banniel"},"man_made/lighthouse":{"name":"Tour-tan"},"man_made/manhole":{"name":"Genoù kan-skarzh"},"man_made/mast":{"name":"Peul"},"man_made/mast/communication":{"name":"Peul pellgehentiñ"},"man_made/mast/communication/radio":{"name":"Peul skingas radio","terms":"gwern,peul,skingas,skingomz,radio,kehentiñ,pellgehentiñ"},"man_made/mast/communication/television":{"name":"Peul skingas skinwel","terms":"gwern,peul,skingas,skinwel,radio,kehentiñ,pellgehentiñ,tele"},"man_made/observatory":{"name":"Arsellva"},"man_made/pipeline":{"name":"Gazsan / eoulsan"},"man_made/pipeline/underground":{"name":"Eoulsan dindandouar"},"man_made/silo":{"name":"Silo"},"man_made/surveillance/camera":{"name":"Kamera-evezhiañ"},"man_made/tower":{"name":"Tour"},"man_made/tower/bell_tower":{"name":"Kloc'hdi"},"man_made/tower/diving":{"name":"Splujell"},"man_made/tower/minaret":{"name":"Minared"},"man_made/tunnel":{"name":"Takad riboul"},"man_made/wastewater_plant":{"name":"Purlec'h"},"man_made/water_tower":{"name":"Kastell-dour"},"man_made/watermill":{"name":"Milin-dour"},"man_made/windmill":{"name":"Milin"},"man_made/works":{"name":"Labouradeg","terms":"labouradeg,uzin,greanti"},"man_made/works/brewery":{"name":"Breserezh greantel"},"man_made/yes":{"name":"Elfenn denel (n'eo ket spisaet)"},"natural":{"name":"Elfenn naturel"},"natural/bay":{"name":"Bae"},"natural/beach":{"name":"Traezhenn"},"natural/cave_entrance":{"name":"Moned kav"},"natural/cliff":{"name":"Tornaod"},"natural/coastline":{"name":"Aod","terms":"aod"},"natural/glacier":{"name":"Skorneg"},"natural/grassland":{"name":"Prad naturel"},"natural/heath":{"name":"Lann"},"natural/mud":{"name":"Fank"},"natural/reef":{"name":"Karreg"},"natural/sand":{"name":"Traezh"},"natural/scrub":{"name":"Brouskoad","terms":"brouskoad,bod,strouezh,krin"},"natural/strait":{"name":"Strizh-mor"},"natural/tree":{"name":"Gwezenn"},"natural/tree_stump":{"name":"Souchenn"},"natural/valley":{"name":"Traoñienn"},"natural/volcano":{"name":"Menez-tan"},"natural/water":{"name":"Dour"},"natural/water/basin":{"name":"Diazad"},"natural/water/canal":{"name":"Takad kanol"},"natural/water/lake":{"name":"Lenn","terms":"lenn"},"natural/water/pond":{"name":"Stank"},"natural/water/reservoir":{"name":"Mirlec'h"},"natural/water/river":{"name":"Takad stêr"},"natural/water/stream":{"name":"Takad gwazh"},"natural/water/wastewater":{"name":"Poull dourioù lous"},"natural/wetland":{"name":"Takad gleb"},"natural/wetland/wet_meadow":{"name":"Pradenn c'hleb"},"natural/wood":{"name":"Koad naturel"},"noexit/yes":{"name":"Hep ermaez"},"office":{"name":"Burev"},"office/association":{"name":"Burev aozadur e-maez-gouarnamant"},"office/coworking":{"name":"Lec'h kenlabourat"},"office/diplomatic/consulate":{"name":"Koñsuldi","terms":"koñsul,koñsuldi,koñsuliezh,paseporzh,diplomatiezh,kannadouriezh,kannadour,viza"},"office/diplomatic/embassy":{"name":"Kannati","terms":"kannati,kannadi,ambasader,kannad,kannder,paseporzh,diplomatiezh,kannadouriezh,kannadour,viza"},"office/estate_agent":{"name":"Ajañs-tiez"},"office/financial_advisor":{"name":"Kuzulier-arc'hant"},"office/government":{"name":"Melestradurezh publik"},"office/government/tax":{"name":"Ti an tailhoù"},"office/insurance":{"name":"Ajañs asurañs"},"office/lawyer/notary":{"name":"Noter"},"office/moving_company":{"name":"Embregerezh dilojadeg"},"office/newspaper":{"name":"Kazetenn"},"office/ngo":{"name":"Burev AMG"},"office/notary":{"name":"Noter"},"office/physician":{"name":"Medisin"},"office/political_party":{"name":"Burev strollad politikel"},"office/quango":{"name":"Burev hanter-AMG"},"office/tax_advisor":{"name":"Burev kuzulier-arc'hant"},"office/travel_agent":{"name":"Ajañs-veaj"},"office/union":{"name":"Burev sindikad","terms":"burev sindikad,sindikad"},"office/yes":{"name":"Burev (n'eo ket spisaet)"},"pipeline":{"name":"Elfenn eoulsan"},"pipeline/valve":{"name":"Begel eoulsan"},"place":{"name":"Lec'h"},"place/city":{"name":"Kêr Vras"},"place/farm":{"name":"Atant"},"place/hamlet":{"name":"Pennkêr"},"place/island":{"name":"Enez","terms":"enez,enezenn"},"place/isolated_dwelling":{"name":"Annez distro"},"place/square":{"name":"Skwar","terms":"skwar,plasenn"},"place/town":{"name":"Kêr"},"place/village":{"name":"Kêriadenn"},"playground/slide":{"name":"Ruz-revr"},"playground/swing":{"name":"Brañsigell"},"playground/teenshelter":{"name":"Repu evit krennarded"},"playground/trampoline":{"name":"Trampolin"},"point":{"name":"Poent"},"polling_station":{"name":"Burev-votiñ berrbad"},"power":{"name":"Elfenn Dredanel"},"power/catenary_mast":{"name":"Post katener","terms":"post katener,aerfun,katener"},"power/generator/method/photovoltaic":{"name":"Panell-heol","terms":"panell-heol,heoldredan,fotovoltaek"},"power/generator/method/photovoltaic/location/roof":{"name":"Panell-heol an doen"},"power/generator/source/hydro":{"name":"Rod-avel"},"power/generator/source/nuclear":{"name":"Reaktor nukleel"},"power/generator/source/wind":{"name":"Rod-avel"},"power/plant":{"name":"Tachenn greizenn dredan"},"power/plant/source/coal":{"name":"Kreizenn dermek dre c'hlaou"},"power/plant/source/gas":{"name":"Kreizenn dermek dre c'haz"},"power/plant/source/hydro":{"name":"Kreizenn dre zour"},"power/plant/source/nuclear":{"name":"Kreizenn nukleel"},"power/plant/source/oil":{"name":"Kreizenn dermek dre eoul-douar"},"power/plant/source/solar":{"name":"Kreizenn heoldredan","terms":"kreizenn heoldredan"},"power/plant/source/waste":{"name":"Pulluc'hva al lastez"},"public_transport/platform":{"name":"Kae treuzdougen foran"},"public_transport/platform/bus":{"name":"Kae bus"},"public_transport/platform/bus_point":{"name":"Arsav Bus"},"public_transport/platform/bus_tram_point":{"name":"Arsav Tramgarr & Bus","terms":"arsav tramgarr & bus"},"public_transport/platform/ferry":{"name":"Kae ferryoù"},"public_transport/platform/ferry_point":{"name":"Arsav / kae ferry"},"public_transport/platform/light_rail":{"name":"Kae metro skañv"},"public_transport/platform/light_rail_point":{"name":"Arsav / kae metro skañv"},"public_transport/platform/monorail":{"name":"Kae unroudenn"},"public_transport/platform/monorail_point":{"name":"Arsav / kae unroudenn"},"public_transport/platform/subway":{"name":"Kae metro"},"public_transport/platform/subway_point":{"name":"Arsav / kae metro"},"public_transport/platform/train":{"name":"Kae tren"},"public_transport/platform/train_point":{"name":"Arsav / kae tren"},"public_transport/platform/tram":{"name":"Kae tramgarr"},"public_transport/platform/tram_point":{"name":"Arsav / kae tramgarr"},"public_transport/platform/trolleybus":{"name":"Kae trolleybus"},"public_transport/platform/trolleybus_point":{"name":"Arsav trolleybus"},"public_transport/station_bus":{"name":"Arsav-dibenn bus"},"public_transport/station_ferry":{"name":"Arsav-dibenn ferry"},"public_transport/station_light_rail":{"name":"Arsav metro skañv"},"public_transport/station_monorail":{"name":"Arsav unroudenn"},"public_transport/station_subway":{"name":"Arsav metro"},"public_transport/station_train":{"name":"Ti-gar"},"public_transport/station_train_halt":{"name":"Ti-gar (arsav diwar c'houlenn)"},"public_transport/station_tram":{"name":"Arsav tramgarr"},"public_transport/station_trolleybus":{"name":"Arsav-dibenn trolleybus"},"public_transport/stop_position_bus":{"name":"Lec'h ma'z ehan ar bus"},"public_transport/stop_position_ferry":{"name":"Lec'h ma'z arsav ar ferryoù"},"public_transport/stop_position_light_rail":{"name":"Lec'h ma'z ehan ar metro skañv"},"public_transport/stop_position_monorail":{"name":"Lec'h ma'z ehan an unroudenn"},"public_transport/stop_position_subway":{"name":"Lec'h ma harz ar metro"},"public_transport/stop_position_train":{"name":"Lec'h ma'z ehan an tren"},"public_transport/stop_position_tram":{"name":"Lec'h ma ehan an tramgarr"},"public_transport/stop_position_trolleybus":{"name":"Lec'h ma'z ehan an trolleybus"},"railway":{"name":"Elfenn an Hent-houarn"},"railway/abandoned":{"name":"Hent-houarn dilezet","terms":"hent-houarn dilezet"},"railway/crossing":{"name":"Kroashent-houarn"},"railway/disused":{"name":"Hent-houarn dilezet"},"railway/halt":{"name":"Ti-gar (arsav diwar c'houlenn)"},"railway/light_rail":{"name":"Forzh metro skañv"},"railway/monorail":{"name":"Forzh unroudenn"},"railway/platform":{"name":"Kae ti-gar"},"railway/rail":{"name":"Hent-houarn"},"railway/rail/highspeed":{"name":"Forzh tren tizh bras","terms":"tren tizh bras,ttb,hent-houarn,tren"},"railway/station":{"name":"Porzh-houarn"},"railway/subway":{"name":"Forzh metro"},"railway/subway_entrance":{"name":"Moned metro"},"railway/tram":{"name":"Forzh tramgarr"},"relation":{"name":"Darempred"},"route/ferry":{"name":"Hentad ferry"},"shop":{"name":"Stal"},"shop/anime":{"name":"Stal mangaoù ha anime"},"shop/antiques":{"name":"Hendraour","terms":"hendraour"},"shop/bakery":{"name":"Pastezerezh"},"shop/bicycle":{"name":"Stal Marc'h-houarn"},"shop/boat":{"name":"Stal vigi"},"shop/books":{"name":"Levrdi"},"shop/butcher":{"name":"Kigerezh"},"shop/cannabis":{"name":"Stal ganabiz"},"shop/cheese":{"name":"Formajerezh","terms":"formajerezh"},"shop/clothes":{"name":"Stal Dilhad"},"shop/clothes/underwear":{"name":"Stad dindan-dilhad"},"shop/coffee":{"name":"Stal gafe"},"shop/computer":{"name":"Stal Urzhiater"},"shop/confectionery":{"name":"Stal Vadigoù"},"shop/e-cigarette":{"name":"Stal sigaretennoù elektronek","terms":"sigaretenn elektronek,sigaretenn,butun,butuniñ,stal,vape,aezhenn,e-sigaretenn,burezh,burezhat"},"shop/erotic/lgbtq":{"name":"Sex-shop LGDTQ+"},"shop/fireplace":{"name":"Stal oaledoù"},"shop/fishing":{"name":"Stal pesketa"},"shop/florist":{"name":"Stal Vleunioù"},"shop/furniture":{"name":"Stal Arrebeuri"},"shop/hairdresser":{"name":"Perukenner"},"shop/hunting":{"name":"Stal jiboez"},"shop/jewelry":{"name":"Stal-vravrigoù"},"shop/kiosk":{"name":"Kiosk"},"shop/locksmith":{"name":"Alc'hwezerezh"},"shop/mall":{"name":"Kreizenn Genwerzh"},"shop/music":{"name":"Stal-sonerezh"},"shop/optician":{"name":"Ti al Lunedour"},"shop/paint":{"name":"Stal livadur"},"shop/pastry":{"name":"Pastezerezh","terms":"gwasteller,pastezer,pastezour,pastezerezh,gwastell,kwign,stal-bastezer"},"shop/perfumery":{"name":"Porfumerezh","terms":"porfumerezh,porfum,frond,c'hwezh-vat"},"shop/photo":{"name":"Stal luc'hskeudennerezh"},"shop/pyrotechnics":{"name":"Stal tanioù-arvest","terms":"stal tanioù-arvest,tan-arvest"},"shop/seafood":{"name":"Stal boued-mor"},"shop/supermarket":{"name":"Gourmarc'had","terms":"gourmarc'had"},"shop/supermarket/organic":{"name":"Gourmarc'had biologel"},"shop/tailor":{"name":"Kemener"},"shop/tea":{"name":"Stal te"},"shop/toys":{"name":"Stal c'hoarielloù"},"shop/trade":{"name":"Braswerzher","terms":"braswerzher,marc'hadour dre-vras,groser,marc'hadour,gwerzher,stal,koñvers"},"shop/travel_agency":{"name":"Ajañs-veaj"},"shop/vacuum_cleaner":{"name":"Stal sunerezioù","terms":"stal sunerezioù,stal sunerezioù-poultr"},"shop/video_games":{"name":"Stal c'hoarioù-video","terms":"stal c'hoarioù-video"},"shop/watches":{"name":"Horolajerezh","terms":"horolajerezh"},"shop/water":{"name":"Stal dour mat da evañ"},"shop/wigs":{"name":"Stal perukennoù","terms":"stal perukennoù"},"shop/wine":{"name":"Kav-gwin","terms":"kav-gwin,stal gwin"},"shop/yes":{"name":"Stal (n'eo ket spisaet)"},"telecom/data_center":{"name":"Bank titouroù"},"tourism":{"name":"Elfenn Douristel"},"tourism/alpine_hut":{"name":"Bod"},"tourism/aquarium":{"name":"Akwariom","terms":"akwariom,doureg"},"tourism/artwork":{"name":"Oberenn arz","terms":"oberenn arz,oberenn arzel"},"tourism/artwork/bust":{"name":"Korf-bras"},"tourism/artwork/graffiti":{"name":"Grafiti","terms":"grafiti,skrivachoù"},"tourism/artwork/sculpture":{"name":"Kizelladur","terms":"kizelladur,skultadur"},"tourism/artwork/statue":{"name":"Delwenn","terms":"delwenn"},"tourism/camp_site":{"name":"Takad kampiñ","terms":"takad kampiñ,lec'h kampiñ"},"tourism/camp_site/backcountry":{"name":"Tachenn-gampiñ gouez"},"tourism/caravan_site":{"name":"Leur kirri-kampiñ"},"tourism/gallery":{"name":"Diskouezva arz"},"tourism/hostel":{"name":"Herberc'h","terms":"herberc'h,herberc'h yaouankiz,ostaleri,hundi"},"tourism/hotel":{"name":"Leti","terms":"leti,otel,ostaleri"},"tourism/information":{"name":"Titouroù","terms":"titouroù"},"tourism/information/board":{"name":"Panell titouroù"},"tourism/information/board/welcome_sign":{"name":"Panell degemer","terms":"panell degemer"},"tourism/information/map":{"name":"Kartenn","terms":"kartenn"},"tourism/motel":{"name":"Motel","terms":"motel"},"tourism/museum":{"name":"Mirdi","terms":"mirdi"},"tourism/museum/history":{"name":"Mirdi istor","terms":"mirdi istor"},"tourism/picnic_site":{"name":"Lec'h piknikañ","terms":"lec'h piknikañ"},"tourism/viewpoint":{"name":"Gwelva"},"tourism/zoo":{"name":"Zoo","terms":"zoo,liorzh-loened,gouezvilva"},"tourism/zoo/safari":{"name":"Safari","terms":"safari"},"traffic_calming/bump":{"name":"Kein gwiz","terms":"kein gwiz"},"traffic_calming/hump":{"name":"Kein gwiz","terms":"kein gwiz"},"traffic_calming/mini_bumps":{"name":"Gorrekaerioù bihan"},"traffic_sign":{"name":"Panell-henchañ"},"traffic_sign/maxspeed":{"name":"Panell bevenn tizh"},"type/boundary":{"name":"Harzoù"},"type/boundary/administrative":{"name":"Harzoù melestradurel"},"type/multipolygon":{"name":"Lieskorn"},"type/restriction/no_left_turn":{"name":"Arabat treiñ a-gleiz"},"type/restriction/no_u_turn":{"name":"Hanter-dro ebet"},"type/restriction/only_left_turn":{"name":"Ret eo treiñ a-gleiz"},"type/restriction/only_u_turn":{"name":"Hanter-dro nemetken"},"type/route":{"name":"Hentad"},"type/route/bicycle":{"name":"Hentad marc'h-houarn"},"type/route/bus":{"name":"Hentad bus"},"type/route/ferry":{"name":"Hentad ferry"},"type/route/hiking":{"name":"Hentad tro-vale"},"type/route/horse":{"name":"Hentad marc'hegezh"},"type/route/light_rail":{"name":"Hentad metro skañv"},"type/route/monorail":{"name":"Hentad unroudenn"},"type/route/mtb":{"name":"Hentad MTB"},"type/route/pipeline":{"name":"Hentad eoulsan"},"type/route/piste":{"name":"Hentad ski"},"type/route/railway":{"name":"Hentad hent-houarn"},"type/route/subway":{"name":"Hentad metro"},"type/route/train":{"name":"Hentad tren"},"type/route/tram":{"name":"Hentad tramgarr"},"type/route/trolleybus":{"name":"Hentad trolleybus","terms":"linenn trolleybus,hentad trolleybus"},"type/waterway":{"name":"Dourredenn"},"waterway":{"name":"Elfenn dourel"},"waterway/canal":{"name":"Kanol"},"waterway/dam":{"name":"Stankell"},"waterway/river":{"name":"Stêr"},"waterway/stream":{"name":"Gwazh"},"waterway/waterfall":{"name":"Lamm-dour"}}}}}
\ No newline at end of file
+{"br":{"presets":{"categories":{"category-barrier":{"name":"Elfennoù harzoù"},"category-building":{"name":"Elfennoù savadurioù"},"category-golf":{"name":"Elfennoù golf"},"category-landuse":{"name":"Elfennoù implij an douar"},"category-natural":{"name":"Elfennoù an endro"},"category-path":{"name":"Hentoùigoù"},"category-playground":{"name":"Dafar c'hoari"},"category-rail":{"name":"Hentoù-houarn"},"category-restriction":{"name":"Elfennoù bevenniñ"},"category-road_major":{"name":"Hentoù pennañ"},"category-road_minor":{"name":"Hentoù eilrenk"},"category-road_service":{"name":"Hentoù moned"},"category-route":{"name":"Elfennoù-hent"},"category-utility":{"name":"Rouedadoù dasparzh..."},"category-water":{"name":"Ledennadoù dour"},"category-waterway":{"name":"Dourredennoù"}},"fields":{"access":{"label":"Aotren moned","options":{"customers":{"description":"Moned aotreet d'ar pratikoù hepken pa erruont","title":"Pratikoù"},"designated":{"description":"Moned aotreet hervez panelloù pe lezennoù lec'hel"},"destination":{"title":"Pal"},"dismount":{"description":"Moned aotreet met ret eo d'an dremenidi diskenn"},"no":{"description":"Moned berzet d'an dud diavaez","title":"Difennet"},"permissive":{"title":"Moned damasantet"},"permit":{"title":"Aotre"},"private":{"title":"Prevez"},"unknown":{"title":"Dianav"},"yes":{"title":"Aotreet"}},"placeholder":"N'eo ket spisaet","terms":"moned aotreet","types":{"access":"Holl","bicycle":"Marc'hoù-houarn ","foot":"War droad","horse":"Kezeg","motor_vehicle":"Karbedoù-tan"}},"access_aisle":{"label":"Seurt"},"access_simple":{"label":"Moned aotreet","options":{"customers":"Pratikoù nemetken","no":"Hini ebet","permissive":"Moned damasantet","permit":"Nemet gant un aotre","private":"Prevez","unknown":"Dianav","yes":"Foran"},"terms":"moned aotreet"},"activity":{"label":"Obererezh","options":{"bicycle":"Marc'hhouarnerezh","hiking":"Baleerezh","horse":"Marc'hegezh","mtb":"MTB (marc'h-houarn treuz bro)","ski":"Ski"}},"addr/interpolation":{"label":"Seurt","options":{"all":"Holl","alphabetic":"En urzh al lizherenneg","even":"Par","odd":"Ampar"}},"address":{"label":"Chomlec'h","placeholders":{"block_number":"Niverenn ar bloc'h","block_number!jp":"Bloc'h niver","city":"Kêr","city!jp":"Kêr/Kêriadenn/Karter arbennik Tokyo","city!vn":"Kêr/Kêriadenn","conscriptionnumber":"123","country":"Bro","county":"Kontelezh","county!jp":"Distrig","district":"Distrig","district!vn":"Arondisamant/Kêriadenn/Distrig","floor":"Estaj","hamlet":"Pennkêr","housename":"Anv an ti","housenumber":"123","housenumber!jp":"Niver ar savadur","neighbourhood":"Karter","neighbourhood!jp":"Machi/Chōme/Aza/Koaza","place":"Lec'h","postcode":"Kod-post","province":"Proviñs","province!cn":"Proviñs/Kumun/Rannvro Emren/Rannvro Velestradurel Arbennik","province!jp":"Prefeti","quarter":"Ranngêr","quarter!jp":"Ōaza (karter)","state":"Stad","street":"Straed","subdistrict":"Isdistrig","subdistrict!vn":"Karter/Kumun/Kêriadenn","suburb":"Bannlev","suburb!jp":"Karter pe bastell-vro (政令市)","town":"Kêr","unit":"Unanenn"},"terms":"chomlec'h,adres"},"advertising":{"label":"Seurt"},"aerialway":{"label":"Seurt"},"aerialway/access":{"label":"Moned","options":{"both":"An daou","entry":"Monedigezh","exit":"Ermaez"}},"aerialway/bubble":{"label":"Goloet/toet"},"aerialway/capacity":{"label":"Barregezh (dre eurvezh)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Padelezh (munut)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Tommet"},"aerialway/occupancy":{"label":"Niver a blasoù","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Moned (hañv)","options":{"both":"An daou","entry":"Monedigezh","exit":"Ermaez"}},"aeroway":{"label":"Seurt"},"agrarian":{"label":"Produioù"},"air_conditioning":{"label":"Aerreizherezh","terms":"aerreizherezh,aerreizhañ"},"aircraft/type":{"label":"Seurt","options":{"glider":"Plaverez","helicopter":"Biñsaskell","military":"Milour"}},"alt_name":{"label":"Anv all","terms":"anv all,anv alternativel"},"amenity":{"label":"Seurt"},"animal_boarding":{"label":"Evit loened"},"animal_breeding":{"label":"Evit loened"},"animal_shelter":{"label":"Evit loened"},"archaeological_site":{"label":"Seurt","options":{"baths":"Kibelldi","city":"Kêr istorel","crannog":"Crannóg","enclosure":"Kloz","fortification":"Kreñvvoger","megalith":"Meurvaen","necropolis":"Bered-veur","petroglyph":"Engravadur maen","roman_circus":"Sirk roman","roman_villa":"Kenkiz roman","settlement":"Lec'hienn istorel","tumulus":"Krugell"}},"architect":{"label":"Tisavour","terms":"tisavour,savour,arkitektour,tisavourez,savourez,arkitektourez"},"area/highway":{"label":"Seurt"},"armrest":{"label":"Brenkoù","options":{"no":"Brenk ebet","undefined":"Dianav"}},"artist":{"label":"Arzour"},"artwork_type":{"label":"Seurt","options":{"bust":"Korf-bras","graffiti":"Grafiti","installation":"Staliadur arzel","mosaic":"Marelladur","mural":"Murlivadur","painting":"Livadur","sculpture":"Kizelladur","statue":"Delwenn","tilework":"Karrellerezh"}},"athletics_pitch":{"label":"Darvoud","options":{"discus_throw":"Bannañ ar bladenn","hammer_throw":"Bannañ horzh","high_jump":"Lammat a-serzh","javelin_throw":"Bannañ goaf","long_jump":"Lammat a-hed","pole_vault":"Lammat gant ar berchenn","shot_put":"Bannañ ar pouez","triple_jump":"Trilamm"}},"athletics_track":{"label":"Darvoud","options":{"javelin_throw":"Bannañ goaf","long_jump":"Lammat a-hed","pole_vault":"Lammat gant ar berchenn","running":"Redek","sprint":"Sprint","steeplechase":"Redadeg-skoilhoù / steeple","triple_jump":"Trilamm"}},"atm":{"label":"Bilhedaouer"},"attraction":{"label":"Seurt","options":{"amusement_ride":"Manej","animal":"Liorzhig-loened","big_wheel":"Rod vras","bumper_car":"Kirri tos-tos","bungee_jumping":"Lammat gant ur stirenn","carousel":"Kezeg-koad","kiddie_ride":"Manej evit bugale","maze":"Milendall","pirate_ship":"Lestr morlaeron","roller_coaster":"Karr sav-disav","train":"Trenig","water_slide":"Ruz-revr-dour"}},"automated":{"label":"Emgefreek"},"baby_feeding":{"label":"Takad magañ babigoù","options":{"no":"Hini ebet"},"terms":"magañ,babigoù,takad,tachenn,tachad,lec'h,bronnañ,reiñ bronn"},"baby_seat":{"label":"Kador vabigoù"},"backcountry":{"label":"Ski louarn","terms":"kador,sez,babigoù,bugale,kador vugale,kador-vugale,kador-vabigoù,babiged"},"backrest":{"label":"Kein"},"bar":{"label":"Tavarn","terms":"tavarn,tavarnig,ostaleri,bar"},"barrier":{"label":"Seurt","options":{"bollard":"Post","chain":"Chadenn","city_wall":"Moger-dro","ditch":"Kleuz","entrance":"Mont-tre","fence":"Kloued","gate":"Porrastell ","guard_rail":"Aspled","hedge":"Garzh","kerb":"Rizenn ar riblenn-straed","retaining_wall":"Moger-harp","stile":"Skalier","turnstile":"Draf-tro","wall":"Moger"}},"barrier_planter":{"label":"Harz","options":{"planter":"Ya","undefined":"Ket"}},"basin":{"label":"Seurt","options":{"evaporation":"Poull-aezhennañ","infiltration":"Poull-ensilañ","retention":"Poull-kronniañ"}},"bath/type":{"label":"Arbennigezh","options":{"hammam":"Hammam","hot_spring":"Mammenn domm","lake":"Lenn","onsen":"Onsen"}},"beauty":{"label":"Servijoù","options":{"cosmetics":"Porfumerezh","spa":"Spa-deiz","tanning":"Rouzañ","waxing":"Divleviñ dre gloar"}},"bench":{"label":"Bank","terms":"bank,skaoñ"},"bicycle_parking":{"label":"Seurt","options":{"building":"En ur savadur","lockers":"Kombodoù hiniennel","shed":"Loch serret"}},"bicycle_road":{"label":"Straed evit marc'hoù-houarn","options":{"undefined":"Ket","yes":"Ya"},"terms":"straed evit marc'hoù-houarn,marc'hoù-houarn,straed,hent,roudenn,hentig,gwenodenn,marc'h-houarn,belo,beloioù,divrodeg,divrodegoù"},"bin":{"label":"Poubellenn","terms":"lastez,pod,pod-lastez,poubellenn"},"blind":{"label":"Moned an dud dall","options":{"limited":"Bevennet","no":"Ket","yes":"Ya"},"terms":"moned an dud dall,moned ar re zall,dall,moned"},"blood_components":{"options":{"plasma":"plasma","platelets":"plaketennoù","stemcells":"standilhon kellig diazez"}},"board_type":{"label":"Seurt","options":{"art":"Arz","astronomy":"Steredoniezh","geology":"Douarouriezh","history":"Istor","nature":"Natur","notice":"Panell skritellañ","plants":"Plant","welcome_sign":"Panell degemer","wildlife":"Loened gouez"}},"bollard":{"label":"Seurt"},"books":{"label":"Seurt levrioù","terms":"seurt levrioù"},"bottle":{"label":"Leuniañ boutailhoù","terms":"leuniañ boutailhoù,leuniañ,boutailhad,boutailh,boutailhoù,boutailhadoù,leuniañ ar boutailhoù,leuniañ ar boutailhadoù"},"boules":{"label":"Seurt"},"boundary":{"label":"Seurt"},"branch_brand":{"label":"Skourr"},"brand":{"label":"Merk","terms":"merk,embregerezh,stal"},"brewery":{"label":"Merkoù bier gwerzhet","terms":"bier,gwerzh,gwerzhet,gwerzhañ,merk,merkoù"},"bridge":{"label":"Seurt","placeholder":"Dre ziouer"},"bridge/ref":{"label":"Niverenn ar pont","terms":"anavezer,kod,koad anaout,niverenn,niver,pont,niverenn ar pont"},"bridge/support":{"label":"Seurt"},"bridge_combo":{"label":"Seurt","options":{"aqueduct":"Pont-dour","boardwalk":"Treuzell","viaduct":"Karrbont"}},"building":{"label":"Savadur","options":{"apartments":"Kendi","boathouse":"Karrdi ar bigi","bunker":"Bunker","cabin":"Logell","carport":"Gwasked kirri","cathedral":"Iliz-veur","chapel":"Chapel","church":"Iliz","civic":"Aveadur publik","college":"Savadur deskadurezh-uhel","commercial":"Savadur koñvers","construction":"Savadur war ober","cowshed":"Kraou-saout","detached":"Ti distag","dormitory":"Kousklec'h ","farm":"Ti-feurm","farm_auxiliary":"Savadur atant","fire_station":"Kreizenn-sikour","garage":"Karrdi","garages":"Karrdioù","ger":"Yourt","greenhouse":"Ti-gwer","hangar":"Sanailh","hospital":"Ospital","hotel":"Leti","house":"Ti","hut":"Lochenn","industrial":"Savadur greantel","kindergarten":"Skol-vamm","manufacture":"Savadur produerezh greantel","mosque":"Moskeenn","office":"Burevioù","outbuilding":"Pourpez","pavilion":"Pavilhon","public":"Savadur foran","residential":"Savadur annez","retail":"Savadur kenwerzhel","riding_hall":"Aren marc'hegezh","roof":"Toenn","ruins":"Dismantroù","school":"Skol","semidetached_house":"Ti ambion","service":"Savadur servij","shed":"Kabanenn","stable":"Kraou-kezeg","stadium":"Stad","static_caravan":"Karavanenn","sty":"Kraou-moc'h","synagogue":"Sinagogenn","temple":"Templ","terrace":"Renkad tiez","train_station":"Ti-gar","transportation":"Savadur an treuzdougen foran","university":"Skol-veur","warehouse":"Sanailh"},"terms":"savadur,ti,batimant,savidigezh"},"building/flats":{"placeholder":"2, 4, 6, 8..."},"building/levels":{"label":"Estajoù","placeholder":"2, 4, 6...","terms":"estajoù,estaj,laez,solier,solieradur"},"building/levels/underground":{"label":"Estajoù dindandouar","placeholder":"2, 4, 6...","terms":"estajoù dindandouar"},"building/material":{"label":"Danvez","terms":"dafar,danvez,materi,danvezenn,derc'hvoud"},"building/part":{"label":"Rann ur savadur"},"building/prefabricated":{"label":"Ragoberiet","terms":"ragoberiet"},"bunker_type":{"label":"Seurt"},"cables":{"label":"Funioù","placeholder":"1, 2, 3..."},"cai_scale-IT":{"options":{"E":"E: Evit baleerien","EE":"EE: Evit baleerien ampart","T":"T: Touristel"},"placeholder":"T, E, EE, …"},"camera/direction":{"label":"Durc'hadur (derezioù gant roud ar bizied)","placeholder":"45, 90, 180, 270"},"camera/type":{"label":"Seurt kamera","options":{"fixed":"Dreset"}},"camp_site":{"label":"Seurt"},"capacity":{"label":"Barregezh","placeholder":"50, 100, 200...","terms":"dalc'had,dalc'h,plasoù,kadorioù,gobed"},"capacity/caravans":{"label":"Plasoù kampiñ (karavanennoù / kirri-kampiñ)","placeholder":"10, 20, 50..."},"capacity/disabled_parking":{"label":"Plasoù evit an dud dalc'het (TDK)","placeholder":"1, 2, 3..."},"capacity/persons":{"label":"Barregezh (tud)","placeholder":"50, 100, 200..."},"capacity/tents":{"label":"Plasoù (teltennoù)","placeholder":"10, 20, 50..."},"capacity_parking":{"label":"Plasoù en holl","placeholder":"10, 20, 30..."},"capacity_volume":{"label":"Barregezh (metr-kub)","placeholder":"50, 100, 200..."},"caravans":{"label":"Karavanennoù / kirri-kampiñ"},"castle_type":{"label":"Seurt","options":{"castrum":"Kreñvlec'h roman","defensive":"Kastell difenn","fortress":"Kreñvlec'h","kremlin":"Kremlin","manor":"Maner","palace":"Palez","shiro":"Shiro (kreñvlec'h japanat)"}},"ceremonial_gate":{"label":"Seurt"},"changing_table":{"label":"Taol-vailhuriñ"},"charge_fee":{"label":"Koust","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"pegement,sammad,koust,priz"},"charge_toll":{"label":"Koust","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"pegement,sammad,koust,priz,tailh"},"check_date":{"label":"Deiziad gwiriet da ziwezhañ","placeholder":"BBBB-MM-DD","terms":"deiziad gwiriet da ziwezhañ"},"circumference":{"placeholder":"1m, 20cm, 30mt…"},"climbing/length":{"label":"Hirder (metroù)","terms":"hirder,hirded,metr,metroù"},"clothes":{"label":"Dilhadoù","options":{"babies":"Dilhad babigoù","children":"Dilhad bugale","denim":"Dilhad e jean","fur":"Dilhad feur","hats":"Togoù","maternity":"Dilhad evit dougerezed","men":"Dilhad paotred","motorcycle":"Dilhad marc'h-tan","oversize":"Dilhadoù a vent vras","socks":"Loeroù","sports":"Dilhad sport","swimwear":"Dilhad kouronkañ","traditional":"Gwiskamantoù hengounel","underwear":"Dindan-dilhad","wedding":"Dilhad dimeziñ","women":"Dilhad merc'hed","workwear":"Dilhad labour"},"terms":"dilhad,gwiskamant,pourc'h,gwisk"},"club":{"label":"Seurt"},"collection_times":{"label":"Eurioù dastum","terms":"eurioù dastum"},"collector":{"label":"Ergorennoù","options":{"coins":"Pezhioù","comics":"Bannoù-treset","stamps":"Timbroù"}},"colour":{"label":"Liv","terms":"liv"},"comment":{"label":"Kemennadenn an hollad cheñchamantoù","placeholder":"Deskrivadur berr ho tegasadennoù (rediet)"},"communication_multi":{"label":"Seurt kehentiñ","terms":"seurt kehentiñ"},"community_centre":{"label":"Seurt","options":{"community_hall":"Sal liezimplij","cultural_centre":"Kreizenn sevenadurel","family_centre":"Kreizenn diegezhel","youth_centre":"Kreizenn yaouankiz"}},"construction":{"label":"Seurt"},"consulate":{"label":"Seurt","options":{"consulate_general":"Koñsuldi meur","honorary_consul":"Koñsul a enor","residence":"Annez ar c'hoñsul","yes":"Koñsuldi"}},"contact/facebook":{"label":"Anv-implijer Facebook pe URL","placeholder":"https://www.facebook.com/KoñversLec'hel","terms":"anv implijer,anv-implijer facebook,ere,liamm,url"},"contact/webcam":{"label":"URL ar webcam","placeholder":"http://skouer.bzh/"},"content":{"label":"Endalc'h"},"conveying":{"options":{"backward":"War-gil","forward":"War-raok"}},"conveying_escalator":{"label":"Diri-ruilh"},"count":{"label":"Niver a elfennoù"},"country":{"label":"Bro"},"country_flag":{"label":"Bro ar banniel"},"couplings":{"placeholder":"1, 2, 3..."},"covered":{"label":"Gwaskedet","terms":"goloet,gwaskedet,gwaredet,goudoret,toet"},"covered_no":{"options":{"no":"Ket","undefined":"\"Ket\" dre ziouer","yes":"Ya"}},"craft":{"label":"Seurt","options":{"basket_maker":"Frader paneroù","beekeeper":"Gwenaner","blacksmith":"Govel","boatbuilder":"Saver-bigi","bookbinder":"Koubler-levrioù","brewery":"Breserezh","builder":"Mañsoner","carpenter":"Kalvez","caterer":"Tineller pretiour","chimney_sweeper":"Skarzher-siminalioù","cleaning":"Servij naetaat ","clockmaker":"Horolajerezh","confectionery":"Koñfizer","distillery":"Strilherezh","dressmaker":"Kemener","electrician":"Tredaner","gardener":"Liorzhour","glaziery":"Gweraer","grinding_mill":"Milin","handicraft":"Dornvicherour","hvac":"Paotr/plac'h an tommerezh","jeweller":"Bravigour","joiner":"Kalvez","key_cutter":"Alc'hwezer","locksmith":"Alc'hwezerezh","metal_construction":"Direr","painter":"Livour","photographer":"Luc'hskeudenner","photographic_laboratory":"Labourva luc'hskeudennerezh","plasterer":"Plastrer","plumber":"Plomer","pottery":"Poder","rigger":"Strammour","roofer":"Toer","saddler":"Dibrer","sailmaker":"Gouelier","sawmill":"Heskennerezh","scaffolder":"Saver chafodajoù","sculptor":"Kizeller","shoemaker":"Botaouer","signmaker":"Paneller","stonemason":"Bener-maen","tailor":"Kemener","tiler":"Karreller","tinsmith":"Staener","upholsterer":"Tapiser","watchmaker":"Horolajer","window_construction":"Prenestrer","winery":"Kav-gwin"}},"crane/type":{"label":"Seurt gavr","options":{"gantry_crane":"Gavr embregata"}},"crop":{"label":"Gounidigezh","options":{"asparagus":"Asperjez","barley":"Heiz","beet":"Beterabez","cassava":"Maniok","coffee":"Kafe","cotton":"Kotoñs","cranberries":"Lus","flowers":"Bleunioù","grape":"Rezin","grass":"Geot","hop":"Houpez","lavender":"Lavand","maize":"Maiz","potato":"Avaloù-douar","rape":"Kolza","rice":"Riz","soy":"Soja","strawberry":"Sivi","sugar_beet":"Beterabez sukr","sugarcane":"Korz-sukr","sunflower":"Troioù-heol","tea":"Te","tobacco":"Butun","vegetable":"Legumaj","wheat":"Ed"}},"crossing":{"label":"Seurt","options":{"traffic_signals":"Treuzenn gant gouleier triliv","uncontrolled":"Livadurioù hepken","unmarked":"Hep livioù na gouleier heñchañ"}},"crossing/barrier":{"options":{"full":"Leun","no":"Ket","yes":"Ya"}},"crossing/bell":{"label":"Kloc'h"},"crossing/island":{"label":"Enezenn bod"},"crossing/light":{"label":"Gouloù"},"crossing/markings":{"label":"Livadurioù an dreuzenn","options":{"ladder":"Skeul gant barrennoù a-hed","ladder:skewed":"Skeud gant barrennoù a-dreuz","no":"N'eo ket livet","pictograms":"Piktogrammoù livet","yes":"Livadur generek","zebra":"Barrennoù a-hed"}},"crossing_raised":{"options":{"table":"Ya","undefined":"Ket"}},"cuisine":{"label":"Keginerezh","options":{"african":"Afrikan","american":"Amerikan","arab":"Arab","argentinian":"Arc'hantinat","asian":"Aziat","barbecue":"Regezer","bavarian":"Bavariat","brazilian":"Brazilian","bubble_tea":"Bubble Tea","burger":"Hamburger","cake":"Gwastell","caribbean":"Karibek","chicken":"Kig-yar","chinese":"Sinat","coffee_shop":"Stal-gafe","crepe":"Krampouezh","curry":"Kari","dessert":"Dezerzh","donut":"Donut","european":"Europat","filipino":"Filipinat","fish":"Pesk","fish_and_chips":"Fish & Chips","french":"Gall","fries":"Fritez","frozen_yogurt":"Yaourt skornet","georgian":"Jorjian","german":"Alaman","greek":"Gresian","hawaiian":"Hawaiiat","hot_dog":"Hot-Dog","ice_cream":"Dienn-skorn","indian":"Indian","indonesian":"Indoneziat","italian":"Italian","japanese":"Japanat","juice":"Chug","kebab":"Kebab","korean":"Korean","lebanese":"Libanat","malaysian":"Malezianat","mediterranean":"Kreizdouarel","mexican":"Mec'hikan","middle_eastern":"Reter-nesañ","moroccan":"Marokat","oriental":"Bed ar reter","pancake":"Krampouezh","pasta":"Toazennoù","pastry":"Pastezerezhioù","persian":"Pers","peruvian":"Perouat","pizza":"Pizza","polish":"Polonat","portuguese":"Portugalat","ramen":"Ramen","regional":"Rannvroel","russian":"Rusian","salad":"Saladenn","sandwich":"Sandwich","sausage":"Silzig","seafood":"Boued mor","soup":"Soubenn","spanish":"Spagnolat","sushi":"Sushi","taiwanese":"Taiwanat","tapas":"Tapas","tea":"Te","tex-mex":"Tex-Mex","thai":"Thai","turkish":"Turkat","ukrainian":"Ukrainat","vietnamese":"Vietnamat","western":"Bed ar c'hornôg","wings":"Eskell yar"},"terms":"boued,gastronomiezh,keginañ,keginerezh,bouedoniezh"},"currency_multi":{"label":"Seurt moneiz","terms":"seurt,moneiz"},"cutting":{"label":"Seurt","placeholder":"Dre ziouer"},"cycle_barrier":{"label":"Seurt"},"cycle_barrier/installation":{"label":"Staliadur","options":{"fixed":"Dreset"}},"cycle_network":{"label":"Rouedad"},"cycleway":{"label":"Hent marc'h-houarn","options":{"lane":{"title":"Hent marc'h-houarn standard"},"no":{"description":"Hent marc'h-houarn ebet","title":"Hini ebet"},"track":{"title":"Roudenn marc'h -houarn"}},"types":{"cycleway:left":"Tu kleiz","cycleway:right":"Tu dehou"}},"date":{"label":"Deiziad"},"defibrillator/location":{"label":"Lec'hiadur resis"},"delivery":{"label":"Degasadenn","terms":"degas,degasadenn,degasadennoù"},"denomination":{"label":"Kredenn","terms":"kredenn,relijion,feiz"},"denotation":{"label":"Talvoudegezh","terms":"talvoudegezh"},"departures_board":{"options":{"no":"Hini ebet","realtime":"Amzer wirion","timetable":"Implij-amzer","yes":"Ya"}},"depot":{"label":"Seurt"},"depth":{"label":"Donder (metroù)"},"description":{"label":"Deskrivadur","terms":"deskrivadur,deskrivadenn,taolennadur,diskrivadur,diskrivadenn,diverradur,diverradenn,berrskrid"},"destination":{"label":"Palioù"},"destination_waterway":{"label":"Pal"},"devices":{"label":"Benvegoù","placeholder":"1, 2, 3..."},"diameter":{"label":"Treuzkiz","placeholder":"5mm, 10cm, 15mt…","terms":"diametr,treuzkiz"},"diameter_crown":{"placeholder":"4 m, 9', …"},"diet_multi":{"label":"Seurt reol-voued","options":{"gluten_free":"Dic'hluten","halal":"Halal","kosher":"Kacher","lactose_free":"Hep laktoz","pescetarian":"Debrer pesk","vegan":"Vegan","vegetarian":"Vejetarian"},"terms":"boued,rejim,reol-voued,reol voued"},"diplomatic":{"label":"Seurt","options":{"consulate":"Koñsuldi","embassy":"Kannati","liaison":"Burev liammañ"}},"diplomatic/services":{"label":"Servijoù"},"direction":{"label":"Durc'hadur (derezioù gant roud ar bizied)","placeholder":"45, 90, 180, 270"},"direction_cardinal-US-CA-NZ":{"label":"War-zu","options":{"east":"War-zu ar Reter","north":"War-zu an Norzh","south":"War-zu ar Su","west":"War-zu ar C'hornôg"},"terms":"tu,war-zu,da,da belec'h,bleinadur,etrezek,war-du,tuadur,sturiadur,durc'hadur"},"direction_clock":{"label":"War-zu","options":{"anticlockwise":"Gant roud gin ar bizied","clockwise":"Gant roud ar bizied"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"options":{"backward":"War-gil","both":"An daou / An holl","forward":"War-eeun"}},"display":{"options":{"digital":"Niverek","sundial":"Kadran"}},"distance":{"label":"Hed","terms":"hed,pellder"},"disused/amenity":{"label":"Seurt"},"disused/railway":{"label":"Seurt"},"disused/shop":{"label":"Seurt"},"dock":{"label":"Seurt"},"dock/height":{"label":"Uhelder a c'hae (metroù)","terms":"kar,uhelded,uhelder,uhelder ar c'hae,uhelded ar c'hae"},"dock/width":{"label":"Ledander ar c'hae (metroù)","terms":"ledander ar c'hae,ledanded ar c'hae,ledanded,ledander,kae"},"dog":{"label":"Chas","options":{"leashed":"Dalc'het en o roll nemetken","no":"Difennet","unleashed":"Roll-chas diret","yes":"Aotreet"}},"dog_check":{"label":"Azasaet d'ar chas","terms":"chas,ki,kon,ar c'hon,evit ar chas,azasaet d'ar chas,d'ar c'hon"},"door":{"label":"Dor"},"door/height":{"label":"Uhelder an nor (metroù)","terms":"uhelder an nor,uhelded an nor"},"door/width":{"label":"Ledander an nor (metroù)","terms":"ledander an nor,ledanded an nor,led an nor"},"door_type":{"label":"Seurt"},"drink_multi":{"label":"Evajoù"},"drinking_water":{"label":"Mat da evañ","terms":"mat da evañ"},"drinking_water_available":{"label":"Dour mat da evañ da gaout","terms":"dour mat da evañ da gaout,dour,hegerz,dour mat da evañ,evabl"},"drive_through":{"label":"Servij \"drive\"","terms":"drive-through,drive,servij drive,servij \"drive\",blein-ha-boued"},"duration":{"label":"Padelezh","placeholder":"00:00","terms":"amzer,pad,padelezh,e-pad,padvezh,mare"},"education":{"label":"Seurt","options":{"college":"Deskadurezh uhel","dancing_school":"Skol-dañs","driving_school":"Skol-vleinañ","kindergarten":"Skol-vamm","language_school":"Skol yezhoù","music_school":"Skol sonerezh","school":"Skol","university":"Skol-veur"}},"ele":{"label":"Uhelder (metroù)","terms":"uhelder (metroù)"},"electrified":{"label":"Tredanañ","options":{"no":"Ket","rail":"Railhoù tredanet","yes":"Ya (n'eo ket spisaet)"},"terms":"tredan,tredanadur,tredanañ,elektrisite,elektrifiet"},"email":{"label":"Chomlec'h postel","placeholder":"skouer@skouer.bzh","terms":"chomlec'h,chomlec'h postel,internet,kenrouedad,lizher,post elektronek"},"embankment":{"label":"Seurt","placeholder":"Dre ziouer"},"embassy":{"label":"Seurt","options":{"mission":"Kannati","nunciature":"Noñsti abostolek","residence":"Annez diplomatek","yes":"Kannati"}},"emergency":{"label":"Mallus"},"emergency_combo":{"label":"Seurt"},"emergency_ward_entrance":{"label":"Seurt"},"enforcement":{"label":"Seurt"},"entrance":{"label":"Seurt","options":{"emergency":"Dor-dec'hel","entrance":"Moned hepken","exit":"Ermaez hepken","garage":"Dor garrdi","main":"Pennañ","secondary":"A eil renk","service":"Servij","staircase":"Skalieroù","yes":"N'eo ket spisaet"},"terms":"seurt,rizh"},"except":{"label":"Nemedennoù"},"expressway-US":{"label":"Hent-tizh","terms":"hent,hent-tizh,hent tizh,gourhent,hentoù"},"fax":{"label":"Pelleiler","placeholder":"+31 42 123 4567","terms":"fax,pelleiler,pelleilañ"},"fee":{"label":"Da baeañ","terms":"paeañ,da baeañ"},"fence_type":{"label":"Seurt"},"fhrs/id-GB":{"label":"Kod-anaout FHRS (Food Hygiene Rating Scheme, R.U. hepken)","terms":"id fhrs,fhrs id,kod fhrs,anaouder fhrs,kod anaout fhrs,kod-anaout fhrs,food hygiene rating scheme"},"fire_hydrant/diameter":{"label":"Treuzkiz (mm, in, pe lizherennoù)","terms":"treuzkiz (mm,md,pe lizherennoù),treuzkiz"},"fire_hydrant/position":{"label":"Lec'hiadur","options":{"green":"Glasvez","parking_lot":"Parklec'h","sidewalk":"Riblenn-straed"}},"fire_hydrant/pressure":{"label":"Gwask (bar)","terms":"gwask,moustr,(bar),bar,aerwask"},"fire_hydrant/type":{"label":"Furm","options":{"underground":"Dindandouar","wall":"Moger"}},"fire_mains":{"options":{"no":"Ket","yes":"Seurt dianav"}},"fire_service_inlet":{"label":"Furm","options":{"underground":"Dindandouar","wall":"Moger"},"terms":"furm,stumm"},"fire_sprinkler":{"options":{"no":"Ket","yes":"Seurt dianav"}},"fireplace":{"label":"Oaled"},"fishing":{"label":"Pesketa","terms":"pesketa,pesked,pesk,pesketaerez,pesketaer,pesketaerezh"},"fitness_station":{"label":"Seurt aveadur"},"fixme":{"label":"Da reizhañ","terms":"da reizhañ,da zresañ,dresañ,reizhañ,da zifaziañ,difaziañ,fix,fix me,fixme"},"flag/name":{"label":"Anv ar banniel"},"flag/type":{"label":"Seurt banniel"},"flag/wikidata":{"label":"Wikidata ar banniel"},"flashing_lights":{"options":{"no":"Ket","yes":"Ya"}},"floating":{"label":"War-neuñv"},"footrest":{"label":"Skabell"},"ford":{"label":"Seurt","placeholder":"Dre ziouer"},"fountain":{"label":"Seurt"},"from":{"label":"Eus"},"fuel":{"label":"Esañs"},"fuel/fuel_multi":{"label":"Seurt esañs","options":{"GTL_diesel":"Diesel GTL","HGV_diesel":"Diesel kirri-samm","LH2":"Higrogen liñvel","adblue":"AdBlue / AUS 32","biodiesel":"Biodiesel","cng":" Gaz naturel kenwasket (GNK)","diesel":"Diesel","e10":"Esañs E10","e5":"Esañs E5","e85":"Esañs E85","h70":"Gaz hidrogen (700 bar)","octane_100":"Gazeoul (Oktan 100)","octane_80":"Gazeoul (Oktan 80)","octane_85":"Gazeoul (Oktan 85)","octane_87":"Gazeoul (Oktan 87)","octane_88":"Gazeoul (Oktan 88)","octane_89":"Gazeoul (Oktan 89)","octane_90":"Gazeoul (Oktan 90)","octane_91":"Gazeoul (Oktan 91)","octane_92":"Gazeoul (Oktan 92)","octane_93":"Gazeoul (Oktan 93)","octane_95":"Gazeoul (Oktan 95)","octane_97":"Gazeoul (Oktan 97)","octane_98":"Gazeoul (Oktan 98)","propane":"Propan"}},"gambling":{"label":"C'hoarioù"},"garden/type":{"label":"Seurt liorzh"},"gender":{"label":"Reizh","options":{"female":"Merc'h","male":"Gour","unisex":"Pep den"},"placeholder":"Dianav","terms":"reizh,rev,jener,plac'h,paotr,merc'h,maouez,gwaz,par,parez,seks,gour,benel,gourel"},"generator/method":{"options":{"barrage":"Mordredanva","combustion":"Devidigezh","fission":"Rannadur nukleel","fusion":"Uniadur nukleel","gasification":"Gazifiañ","photovoltaic":"Fotovoltaeg","stream":"Mordredan (lanv ha tre)","thermal":"Energiezh termek an heol","water-pumped-storage":"Poull-stokañ","water-storage":"Mirlec'h","wind_turbine":"Rod-avel"}},"generator/output/electricity":{"label":"Galloudezh","placeholder":"50 MW, 100 MW, 200 MW..."},"generator/source":{"label":"Mammenn","options":{"battery":"Daspugner","biofuel":"Bevdrelosk","biogas":"Biogaz","biomass":"Danvez plant","coal":"Glaou","diesel":"Diesel","gas":"Gaz naturel","gasoline":"Esañs","geothermal":"Geotermiezh","hydro":"Dourdredan","nuclear":"Energiezh nukleel","oil":"Eoul-douar","solar":"Skinadur-heol","tidal":"Mordredan","waste":"Lastez","wave":"Gwagenndredan","wind":"Avel"}},"generator/type":{"label":"Seurt"},"genus":{"label":"Genad","placeholder":"Acer, Platanus, Quercus …","terms":"genad,bevoniezh"},"gnis/feature_id-US":{"label":"ID an elfenn GNIS"},"government":{"label":"Seurt"},"grape_variety":{"label":"Gouennad gwini"},"group_only":{"label":"Strolladoù hepken"},"guest_house":{"label":"Seurt"},"handicap":{"label":"Ampech","placeholder":"1-18"},"handrail":{"label":"Ramparzh"},"handrest":{"label":"Brenk"},"hashtags":{"label":"Hashtagoù","placeholder":"#skouer"},"hazard_boundary":{"options":{"archery_range":"Saezhoù","avalanche":"Disac'had","biohazard":"Riskl biologel","contamination":"Kontammadur kimiek","hole":"Toull","minefield":"Minoù","nuclear":"Nukleel / skinoberiant","quicksand":"Lonktraezh"}},"healthcare":{"label":"Seurt","options":{"alternative":"Mezegiezh dazeilat","audiologist":"Klevedour","birthing_centre":"Gwiliouderezh","blood_bank":"Bank gwad","blood_donation":"Kreizenn reiñ gwad","clinic":"Klinikenn","dentist":"Dentour","dialysis":"Kreizenn dializenn","doctor":"Doktor","hospice":"Ospis","hospital":"Ospital","laboratory":"Arnodva dielfennadurioù mezegel","midwife":"Amiegez","nurse":"Klañvdiour/ez","occupational_therapist":"Ergoterapeutour","optometrist":"Optometrour","pharmacy":"Apotikerezh","physiotherapist":"Fizikyac'haour","podiatrist":"Podologour","psychotherapist":"Bredyac'haour","speech_therapist":"Mezeg-al-lavar","vaccination_centre":"Kreizenn vaksinañ"}},"healthcare/speciality":{"label":"Arbennigezhioù","options":{"abortion":"Diforc'hidigezh","acupuncture":"Akupoentouriezh","allergology":"Allergiezh & berranal","anaesthetics":"Anesteziologiezh","angiology":"Angiologiezh","aromatherapy":"Aromaterapiezh","ayurveda":"Ayurveda","biochemistry":"Biokimiezh","biology":"Bevoniezh","blood_check":"Savadenn wad","cardiology":"Kalonouriezh","child_psychiatry":"Kreizenn vredvezegel evit ar vugale hag ar grennarded","chiropractic":"Kiropraksiezh","community":"Yec'hed foran","dental_oral_maxillo_facial_surgery":"Surjianerezh an dent, ar genoù hag ar javed","dermatology":"Kroc'henouriezh","dermatovenereology":"Kroc'hen-venerologiezh","diabetology":"Diabetologiezh","endocrinology":"Endokrinologiezh","gastroenterology":"Gastroenterologiezh","gynaecology":"Gwiliouderezh & benvezegiezh","haematology":"Hematologiezh","hepatology":"Hepatologiezh","herbalism":"Louzaouerezh","homeopathy":"Homeopatiezh","hydrotherapy":"Hidroterapiezh","hypnosis":"Teoghun","infectious_diseases":"Kleñved poreüs","intensive":"Prederioù askoridik","naturopathy":"Medisinerezh naturel","neonatology":"Nevezc'hanouriezh","nephrology":"Nefrologiezh","neurology":"Neurologiezh","neuropsychiatry":"Neuropsikiatriezh","neurosurgery":"Neurosurjianerezh","oncology":"Onkologiezh","ophthalmology":"Lagadouriezh","orthodontics":"Ortodontiezh","orthopaedics":"Surjianerezh ortopedek","osteopathy":"Osteopatiezh","otolaryngology":"Skouarn, fri & gouzoug","paediatric_surgery":"Surjianerezh pediatrek","paediatrics":"Pediatriezh","palliative":"Prederioù habaskaus","pathology":"Patologiezh","physiatry":"Mezegiezh fizikel hag azgouestaat","plastic_surgery":"Surjianerezh neuziañ","proctology":"Surjianerezh kolonyoulc'hel","psychiatry":"Psikiatriezh","pulmonology":"Pneumologiezh","radiology":"Radiologiezh","reiki":"Reiki","rheumatology":"Medisinerezh ar remm","shiatsu":"Chiatsu","stomatology":"Stomatologiezh","surgery":"Surjianerezh hollek","traditional_chinese_medicine":"Mezegiezh hengounel sinat","trauma":" Surjianerezh traomatologel","tuina":"Tuī ná","unani":"Medisinerezh yunani","urology":"Urologiezh","vaccination":"Vaksinadur"}},"heating":{"label":"Tommerezh"},"height":{"label":"Uhelded (metroù)","terms":"uhelder,uhelded,metr,metroù,sav,krec'h,uhelenn"},"height_building":{"label":"Uhelder ar savadur (metroù)","terms":"savadur,ti,batimant,savidigezh,uhelder,uhelded,metr,metroù,sav,krec'h,uhelenn"},"highchair":{"label":"Kador-zebriñ"},"highspeed":{"label":"Tizh bras"},"highway":{"label":"Seurt"},"highway_cartpath":{"label":"Seurt roudenn","options":{"service":"Hent moned"}},"historic":{"label":"Seurt","options":{"archaeological_site":"Lec'hienn arkeologel","bomb_crater":"Krater bombezenn","boundary_stone":"Maen-harz","building":"Savadur istorel","castle":"Kastell","charcoal_pile":"Krugell c'hlaou","church":"Iliz","city_gate":"Dor kêr","citywalls":"Moger-dro","fort":"Fort istorel","manor":"Maner","memorial":"Kounlec'h","milestone":"Bonn kilometrek","millstone":"Maen-milin","mine":"Mengleuz","mine_shaft":"Mengleuz","monument":"Monumant","pillory":"Post-ar-vezh istorel","railway":"Hent-houarn","ruins":"Dismantroù","tomb":"Bez","wayside_cross":"Kalvar","wayside_shrine":"Orator","wreck":"Peñse"}},"historic/civilization":{"label":"Sevenadurezh istorel"},"historic/wreck/date_sunk":{"label":"Deiziad e oa peñseet"},"historic/wreck/visible_at_high_tide":{"label":"A-wel pa vez lanv"},"historic/wreck/visible_at_low_tide":{"label":"A-wel pa vez tre"},"holding_position/type":{"label":"Seurt","options":{"runway":"Pradva"}},"hoops":{"placeholder":"1, 2, 4..."},"horse_riding":{"label":"Kreizenn varc'hegezh","options":{"horse_riding":"Ya","undefined":"Ket"}},"horse_scale":{"label":"Diaester marc'hegezh","options":{"common":"Aes: kudenn pe diaester ebet. (dre ziouer)"},"placeholder":"Diaes, dañjerus","terms":"diaester marc'hegezh,marc'hañ"},"hot_water":{"label":"Dour zomm"},"house":{"label":"Seurt savadur"},"iata":{"label":"Kod aerborzh IATA"},"icao":{"label":"Kod aerborzh ICAO"},"image":{"label":"Skeudenn","placeholder":"https://skouer.bzh/foto.jpg","terms":"skeudenn,luc'hskeudenn,imaj,foto"},"incline":{"label":"Dinaou"},"indoor":{"label":"En diabarzh"},"indoor_type":{"label":"Seurt"},"industrial":{"label":"Seurt"},"information":{"label":"Seurt"},"inscription":{"label":"Enskrivadur"},"internet_access":{"label":"Kennask Internet","options":{"no":"Ket","wlan":"Wifi","yes":"Ya"},"terms":"wifi,internet,kenrouedad,kennask,moned"},"internet_access/fee":{"options":{"customers":"Pratikoù nemetken","no":"Digoust","yes":"Paeet"}},"internet_access/ssid":{"label":"Anv ar rouedad Wifi","terms":"wifi,ssid,rouedad,internet,kenrouedad,anv,anv ar rouedad,web"},"irrigation_pivot":{"options":{"pivot":"Ya","undefined":"Ket"}},"junction_line":{"options":{"circular":"Kroashent-tro","roundabout":"Kroashent-tro"}},"kerb":{"label":"Bord an trotouer","options":{"no":{"title":"Ket"},"yes":{"title":"Ya"}},"terms":"bord,riblenn,riblenn-straed,trotouer,bevenn,bord an trotoer,bord an trotouer,rizenn an trotouer,bord ar riblenn-straed"},"kerb/height":{"label":"Uhelder"},"kerb/kerb_barrier":{"label":"Seurt"},"kitchen":{"label":"Kegin","terms":"kegin,kuizin"},"kneipp_water_cure_multi":{"label":"Seurt oglennoù"},"label":{"label":"Label"},"lamp_mount":{"label":"Menez"},"lamp_type":{"label":"Seurt"},"landuse":{"label":"Seurt"},"lanes":{"label":"Forzhioù","placeholder":"1, 2, 3...","terms":"forzhioù,forzh,hentad,hent"},"language_multi":{"label":"Yezhoù"},"layer":{"label":"Gwiskad","placeholder":"0","terms":"gwisk,gwiskad,gwelead,treuzfolenn"},"layer_1":{"placeholder":"0"},"leaf_cycle":{"label":"Fenologiezh an delioù","options":{"deciduous":"Dibad","evergreen":"Padus","mixed":"Mesket","semi_deciduous":"Hanter dibad","semi_evergreen":"Hanter padus"},"terms":"delienn,delioù,fenologiezh,fenologiezh an delioù"},"leaf_type":{"label":"Seurt delienn","options":{"leafless":"Dizelienn","mixed":"Mesket"},"terms":"seurt,delienn,deil"},"leaf_type_singular":{"label":"Seurt delienn","terms":"seurt,delienn,deil"},"leisure":{"label":"Seurt"},"length":{"label":"Hirder (metroù)","terms":"hirder,hirded,metr,metroù"},"level":{"label":"Estaj","terms":"live,estaj,solier,rez-an-douar,adraoñ"},"level_semi":{"label":"Estajoù","terms":"liveoù,estajoù,estaj,solier,rez-an-douar,adraoñ"},"liaison":{"label":"Seurt"},"lifeguard":{"label":"Seurt"},"lifeguard_check":{"label":"Mestr-neuñvier"},"lift_gate/type":{"label":"Seurt"},"lit":{"label":"Sklêrijennet","terms":"sklêrijennet,gouloù,goulaouet,sklaeriet,splannet"},"loc_name":{"label":"Anv lec'hel","terms":"anv lec'hel"},"location":{"label":"Lec'hiadur","terms":"lec'h,pelec'h,e-men,lec'hiadur"},"location_pool":{"options":{"indoor":"En diabarzh","outdoor":"En diavaez","roof":"War an doenn"}},"lock":{"label":"Skluz"},"lockable":{"label":"A brenn","terms":"prennabl,prennus,a brenn"},"locked":{"label":"Prennet"},"man_made":{"label":"Seurt"},"manhole":{"label":"Seurt"},"manufacturer":{"label":"Oberour","terms":"aozer,oberour,oberiataer,farder,saver"},"map_type":{"label":"Seurt","options":{"topo":"Kartenn dopografek"}},"mapillary":{"label":"ID skeudenn Mapillary","terms":"kod anaout,id,skeudenn,mapillary"},"marker":{"label":"Seurt","options":{"aerial":{"description":"Graet evit bout gwelet diouzh an neñv.","title":"Aerel"},"ground":{"title":"Leur"},"pedestal":{"title":"Sichenn"},"plate":{"title":"Plakenn"},"post":{"title":"Peul"},"stone":{"title":"Maen"}}},"material":{"label":"Danvez","options":{"aluminium":"Aluminiom","brass":"Kouevr melen","brick":"Brikenn","bronze":"Arem","concrete":"Betoñs","dry_stone":"Maen dijunt","glass":"Gwer","granite":"Greunit","iron":"Houarn","limestone":"Maen-raz","marble":"Marbr","metal":"Metal","plastic":"Plastik","reinforced_concrete":"Betoñs houarnet","rock":"Roc'h","sand":"Traezh","sandstone":"Krag","soil":"Douar","steel":"Dir","stone":"Maen","wood":"Koad"},"terms":"dafar,danvez,materi,danvezenn,derc'hvoud"},"mattress":{"label":"Matarasennoù da gaout"},"maxaxleload_bridge":{"label":"Pouez uhelañ an ahel","terms":"ahel,pouez uc'hek,pouez uhelañ an ahel"},"maxheight":{"label":"Uhelder bevennet","terms":"uhelder bevennet,uhelder,uhelded,uc'hek,uhelañ"},"maxlength":{"label":"Hirder bevennet","terms":"hirder,hirded,bevennet,uhelañ,uc'hek"},"maxspeed":{"label":"Bevenn Tizh","placeholder":"40, 50, 60...","terms":"bevenn tizh,tizh,buander,herr"},"maxspeed/advisory":{"label":"Tizh erbedet","placeholder":"40, 50, 60..."},"maxspeed/hgv":{"label":"Bevenn tizh kirri-samm","placeholder":"40, 50, 60..."},"maxstay":{"label":"Amzer bevennet","terms":"pad,bevennet,amzer"},"maxweight":{"label":"Pouez bevennet","terms":"pouez,bevennet,uc'hek,uhelañ"},"maxwidth":{"label":"Ledander bevennet","terms":"ledander,ledanded,bevennet,uc'hek,uhelañ"},"maxwidth/physical":{"label":"Ledander bevennet"},"memorial":{"label":"Seurt","options":{"bust":"Korf-bras","cross":"Kroaz-koun","obelisk":"Obeliskenn","plaque":"Plakenn-goun","sculpture":"Kizelladur","statue":"Delwenn","stele":"Maen-koun","stolperstein":"Stolperstein","stone":"Maen","war_memorial":"Kounlec'h brezel"}},"memorial/addr":{"label":"Chomlec'h tostañ","terms":"chomlec'h tostañ,chomlec'h,tostañ,nesañ"},"message":{"label":"Kemennad","terms":"kemenn,kemennad,kemennadenn,evezhiadenn,enskrivadenn,enskrivadur,engravadur,engravadenn,testenn"},"microbrewery":{"label":"Mikro-vreserezh","terms":"mikrovreserezh,breserezh,bresañ,bier,alkool,artizanel"},"military_service":{"label":"Koñje","options":{"air_force":"Aerlu","army":"Arme","coast_guard":"Gward-aod","marines":"Marines","navy":"Morlu"}},"min_age":{"label":"Oad bevennet","terms":"oad,bevennet,izek,izelañ"},"minspeed":{"label":"Bevenn tizh izelañ","placeholder":"20, 30, 40...","terms":"bevenn tizh izelañ,bevenn tizh,tizh,buander,herr,izelañ"},"mobile":{"label":"Pellgomzer hezoug","placeholder":"+33 7 12 34 56 78","terms":"pellgomzer,pellgomz,hezoug"},"model/wikidata":{"label":"Wikidata ar patrom","terms":"wikidata ar patrom,patrom,wikidata,wikiroadennoù"},"mooring":{"label":"Eren","options":{"commercial":"Kenwerzhel","guest":"Kouvidi","no":"Ket","private":"Prevez","yes":"Ya"}},"mtb/scale":{"label":"Diaester MTB","placeholder":"0, 1, 2, 3..."},"mtb/scale/imba":{"options":{"0":"⚪ Aesañ (kelc'h gwenn)","1":"🟢 Aes (kelc'h gwer)","2":"🟦 Etre (karrez glas)","3":"◆ Diaes (romb du)","4":"◆◆ Diaes-tre (daou romb du)"},"placeholder":"Aes, etre, diaes..."},"mtb/scale/uphill":{"placeholder":"0, 1, 2, 3..."},"museum":{"label":"Seurt"},"name":{"label":"Anv","placeholder":"Anv boutin (ma'z eus unan)","terms":"anv"},"nat_name":{"label":"Anv broadel","terms":"anv broadel"},"natural":{"label":"Naturel"},"network":{"label":"Rouedad","terms":"rouedad"},"network/type":{"label":"Seurt rouedad"},"network_bicycle":{"label":"Rummad ar rouedad","options":{"icn":"Etrebroadel","lcn":"Lec'hel","ncn":"Broadel","rcn":"Rannvroel"},"placeholder":"Lec'hel, rannvroel, broadel, etrebroadel"},"network_foot":{"label":"Rummad ar rouedad","options":{"iwn":"Etrebroadel","lwn":"Lec'hel","nwn":"Broadel","rwn":"Rannvroel"},"placeholder":"Lec'hel, rannvroel, broadel, etrebroadel"},"network_horse":{"label":"Rummad ar rouedad","options":{"ihn":"Etrebroadel","lhn":"Lec'hel","nhn":"Broadel","rhn":"Rannvroel"},"placeholder":"Lec'hel, rannvroel, broadel, etrebroadel"},"network_road":{"label":"Rouedad"},"not/name":{"label":"Anvioù direizh","terms":"anv,direizh,fall,fals,falc'h,gaou,a-dreuz,diwir"},"note":{"label":"Notenn","terms":"kemennadenn,kemenn,evezhiadenn,notenn"},"nudism":{"label":"Noazhkorfegezh","options":{"customary":"Kustum","no":"Difennet","obligatory":"Rediet","permissive":"Damasantet","yes":"Aotreet"},"terms":"noazh,noazhkorfegezh,naturour,naturegezh"},"office":{"label":"Seurt","options":{"accountant":"Kontour","adoption_agency":"Ajañs advugelañ","advertising_agency":"Ajañs bruderezh","architect":"Tisavour","association":"Burev aozadur e-maez-gouarnamant","construction_company":"Embregerezh savadurezh","coworking":"Lec'h-labourat boutin","diplomatic":"Savadur diplomatek","educational_institution":"Kreizenn stummañ","employment_agency":"Ajañs implijout","energy_supplier":"Pourvezer tredan","engineer":"Ijiner","estate_agent":"Ajañs tiez","financial_advisor":"Kuzulier-arc'hant","forestry":"Mererezh ar c'hoadoù","foundation":"Diazezadur","government":"Melestradurezh publik","graphic_design":"Grafour","insurance":"Ajañs asurañs","moving_company":"Embregerezh dilojadeg","newspaper":"Kazetenn","ngo":"Burev AMG","notary":"Noter","physician":"Medisin","political_party":"Burev strollad politikel","private_investigator":"Burev enklasker prevez","quango":"Burev hanter-AMG","religion":"Burev relijiel","research":"Aozadur enklask skiantel","security":"Ajañs surentez prevez","surveyor":"Mentoniour","tax_advisor":"Burev kuzulier kemedel","telecommunication":"Ajañs pellgehenterezh","therapist":"Yac'hadour","travel_agent":"Ajañs-veaj","union":"Burev sindikad","water_utility":"Ajañs an dour"}},"official_name":{"label":"Anv ofisiel","terms":"anv ofisiel,anv kefridiel"},"oneway":{"label":"Untu","options":{"no":"Ket","undefined":"\"Ket\" dre ziouer","yes":"Ya"},"terms":"untu,hent untu"},"oneway/bicycle":{"label":"Untu (marc'hoù-houarn)","terms":"untu,marc'hoù-houarn,belo,beloioù,marc'h-houarn,hent untu"},"oneway_yes":{"options":{"no":"Ket","undefined":"\"Ya\" dre ziouer","yes":"Ya"}},"opening_date":{"label":"Deiziad digeriñ raktreset","placeholder":"BBBB-MM-DD"},"opening_hours":{"label":"Eurioù","placeholder":"Dianav"},"opening_hours/drive_through":{"label":"Eurioù digeriñ an drive","placeholder":"Memes eurioù digeriñ hag ar stal","terms":"eurioù digeriñ an drive,servij drive,drive,eurioù,digor,digeriñ,digoriñ"},"operator":{"label":"Korvoer"},"operator/type":{"label":"Seurt korvoer"},"organic":{"label":"Produioù biologel","options":{"no":"Hini ebet","only":"Nemet","yes":"Reoù"}},"orientation/orientation_parking":{"label":"Durc'hadur"},"par":{"label":"Par","placeholder":"3, 4, 5..."},"parcel_pickup":{"options":{"no":"Ket","undefined":"\"Ya\" dre ziouer","yes":"Ya"}},"parking":{"label":"Seurt","options":{"rooftop":{"title":"Toenn"},"sheds":{"title":"Lochoù"},"surface":{"title":"A-us d'an douar"},"underground":{"title":"Dindandouar"}}},"parking/side/orientation":{"label":"Durc'hadur parkañ","options":{"parallel":"A-stur gant ar straed"},"terms":"durc'hadur,tu,reteradur,tuadur","types":{"parking:left:orientation":"Tu kleiz","parking:right:orientation":"Tu dehou"}},"parking/side/parking":{"label":"Parkañ","options":{"no":"Ket","yes":"Ya (n'eo ket spisaet)"},"terms":"parkañ,parklec'h","types":{"parking:left":"Tu kleiz","parking:right":"Tu dehou"}},"parking_entrance":{"label":"Seurt"},"parking_space":{"label":"Seurt"},"payment_multi":{"label":"Doare paeañ","options":{"alipay":"Alipay","american_express":"American Express","app":"Arload pellgomz hezoug","apple_pay":"Apple Pay","bancomat":"Bancomat","blik":"Blik","cards":"Kartenn-baeañ","cash":"Arc'hant laosk","cheque":"Chekenn","coins":"pezhioù ","contactless":"Paeañ hep touch","credit_cards":"Kartenn-gred","cryptocurrencies":"Kriptomoneiz","debit_cards":"Kartenn-baeañ","discover_card":"Discover","dkv":"DKV","electronic_purses":"Doug-moneiz elektronek","ep_easycard":"悠遊卡EasyCard","ep_geldkarte":"GeldKarte","ep_ipass":"iPASS一卡通","girocard":"Girocard","google_pay":"Google Pay","jcb":"JCB","maestro":"Maestro","mastercard":"Mastercard","mastercard_contactless":"Mastercard distok","notes":"Bilhedoù-bank","paypal":"PayPal","prepaid_ticket":"Tikedenn paeet en a-raok","telephone_cards":"Kartenn bellgomz","unionpay":"UnionPay","uta":"UTA","v_pay":"V Pay","visa":"Visa","visa_debit":"Visa Debit","visa_electron":"Visa Electron","wechat":"WeChat Pay"},"terms":"seurt paeamant,paeañ,seurt,paeamant,paeamantoù,doare paeamant,doare paeañ"},"phases":{"placeholder":"1, 2, 3..."},"phone":{"label":"Pellgomzer","placeholder":"+000 0000 0000 0000","terms":"telefon,pellgomz,pellgomzer,niver,niverenn,bellgomz"},"picnic_table":{"label":"Taol biknik","terms":"piknik,piknikañ,taol,biknikañ,biknik"},"pipeline":{"label":"Seurt"},"piste/difficulty":{"label":"Diaester","options":{"advanced":"Araokaet","easy":"Aes","expert":"Ampart","intermediate":"Etre","novice":"Evit an deraouidi"},"placeholder":"Aes, etre, araokaet..."},"piste/difficulty_downhill":{"options":{"easy":"Aes (kelc'h gwer)"},"placeholder":"Aes, etre, araokaet..."},"piste/difficulty_nordic":{"placeholder":"Aes, etre, araokaet..."},"piste/difficulty_skitour":{"options":{"easy":"Aes - WS: dinaou 30-35°"},"placeholder":"Aes, etre, araokaet..."},"piste/grooming":{"options":{"backcountry":"Ski louarn","scooter":"Skouter/moto-erc'h","skating":"Skate "}},"piste/grooming_nordic":{"options":{"scooter":"Skouter/moto-erc'h","skating":"Skateañ"}},"piste/type":{"label":"Seurt","options":{"hike":"Tro-vale","ice_skate":"Riklerezh","playground":"Tachenn-c'hoari","sled":"Luj","sleigh":"Stlejell"}},"place":{"label":"Seurt"},"plant":{"label":"Plantenn"},"plant/output":{"options":{"cold_air":"Aer yen","cold_water":"Dour yen","compressed_air":"Aer wasket","electricity":"Tredan","hot_air":"Aer domm","hot_water":"Dour zomm","steam":"Aezhenn","vacuum":"Goullonder"}},"plant/output/electricity":{"placeholder":"500 MW, 1000 MW, 2000 MW..."},"plant/source":{"label":"Mammenn dredan"},"playground":{"label":"Seurt"},"playground/theme":{"label":"Tem","terms":"tem,danvez,dodenn"},"plots":{"placeholder":"10, 20, 30..."},"polling_station":{"label":"Burev-votiñ"},"population":{"label":"Poblañs"},"population/date":{"label":"Deiziad ar poblañs","placeholder":"BBBB-MM-DD"},"portable":{"label":"Heloc'h","terms":"heloc'h,hezoug,distag,loc'h-diloc'h,fiñv,war-fiñv,war vale,red"},"post":{"label":"Chomlec'h Degasadenn"},"post_box/type":{"label":"Seurt","options":{"lamp":"Staget ouzh ur post","wall":"Staget ouzh ur voger"},"terms":"seurt,rizh"},"power":{"label":"Seurt"},"preschool":{"label":"Skol-vamm"},"produce":{"label":"Trevadoù"},"product":{"label":"Produioù","terms":"gounid,trevad,trevadoù,boued"},"public_bookcase/type":{"label":"Seurt"},"pump":{"label":"Pomp","options":{"manual":"Pomp dorn","no":"Hini ebet","powered":"Pomp emgefre","yes":"Ya"}},"railway":{"label":"Seurt"},"railway/position":{"label":"Lec'hiadur ar bonn"},"railway/signal/direction":{"options":{"backward":"War-gil","both":"An daou / An holl","forward":"War-raok"}},"railway/track_ref":{"label":"Niverenn ar forzh"},"ramp":{"label":"Krapenn voned","options":{"no":"Ket","yes":"Ya"},"terms":"krapenn,voned,moned,dinaou,vonet"},"rcn_ref":{"label":"Kod marc'hoù-houarn"},"real_fire-GB-IE":{"label":"Tan gwirion","terms":"gwir,gwirion,tan"},"recycling_accepts":{"label":"A zegemer","options":{"batteries":"Podoù-tredan","cans":"Kanetennoù","cardboard":"Kartoñs","clothes":"Dilhad","cooking_oil":"Eoul keginañ","engine_oil":"Eoul keflusker","glass":"A bep seurt a wer (gwer-strink, prenestroù, melezourioù, h.a.)","glass_bottles":"Boutailhoù ha podoù gwer","green_waste":"Glasach","paper":"Paper","plastic":"Plastik","plastic_bottles":"Boutailhoù plastik","scrap_metal":"Hernach","shoes":"Botoù"}},"recycling_type":{"label":"Seurt","options":{"centre":"Kreizenn adaozañ","container":"Kontener adaozañ"}},"ref":{"label":"Kod anaout"},"ref/FR/siret-FR":{"label":"Niverenn SIRET","terms":"siret,siren,kod,niver,niverenn"},"ref/isil":{"label":"Kod ISIL","terms":"kod isil,isil,identifiant international normalisé pour les bibliothèques et les organismes apparentés,iso 15511,international standard identifier for libraries and related organisations"},"ref/linz/place_id-NZ":{"label":"Kod anaout NZBG","terms":"nzgb,kod,id,anaouder,kod anaout,anaout,niver,niverenn"},"ref/vatin":{"label":"Niverenn anaout TGO","terms":"niverenn anaout tgo,tgo,tva,niver,niverenn,kod,kod anaout"},"ref_disc_golf_hole":{"label":"Niverenn an toull","placeholder":"1-18"},"ref_golf_hole":{"label":"Niverenn an toull","placeholder":"1-18"},"ref_platform":{"label":"Niverenn ar c'hae"},"ref_rail":{"label":"Niverenn al linenn","terms":"niverenn al linenn"},"ref_road_number":{"label":"Niverenn an hent","terms":"niverenn an hent,kod"},"ref_room_number":{"label":"Niverenn ar c'hambr"},"ref_route":{"label":"Niverenn an hentad","terms":"niverenn an hent,kod,anaout"},"ref_runway":{"label":"Niverenn ar pradva","placeholder":"da skouer: 01L/19R"},"ref_stop_position":{"label":"Niverenn an arsav"},"ref_taxiway":{"label":"Anv an hent-tremen","placeholder":"da skouer: A5"},"reg_name":{"label":"Anv rannvroel","terms":"anv rannvroel"},"relation":{"label":"Seurt"},"religion":{"label":"Relijion","options":{"bahai":"Baha'i","buddhist":"Boudaad","chinese_folk":"Kredenn-bobl sinat","christian":"Kristen","confucian":"Konfusian","hindu":"Hindou","jain":"Jain","jewish":"Yuzev","muslim":"Muzulman","none":"Hep relijion","pagan":"Pagan","shinto":"Chinto","sikh":"Sikh","taoist":"Daoour","tenrikyo":"Tenrikyo","vietnamese_folk":"Kredenn-bobl vietnamat","voodoo":"Voudou"},"terms":"kredenn,feiz,relijion,hengredenn"},"reservation":{"options":{"no":"Nann degemeret","recommended":"Aliet","required":"Rekis","yes":"Degemeret"},"terms":"mirout,miradenn"},"residential":{"label":"Seurt"},"resort":{"label":"Seurt"},"resource":{"label":"Danvez","options":{"clay":"Pri","coal":"Glaou","gold":"Aour","gravel":"Grouan","iron_ore":"Kailh-houarn","limestone":"Maen-raz","peat":"Taouarc'h","sand":"Traezh"}},"restriction":{"label":"Seurt"},"restrictions":{"label":"Arabat treiñ"},"roller_coaster/track":{"label":"Seurt","options":{"maintenance":{"title":"Ratreañ"}}},"roof/colour":{"label":"Liv an doenn","terms":"liv an doenn"},"roof/height":{"label":"Uhelder an doenn (metroù)","terms":"uhelded,uhelder,uhelded an doenn,uhelder an doenn,uhel"},"roof/shape":{"label":"Stumm an doenn","options":{"flat":"Plat","onion":"Ognon","pyramidal":"Piramidenn","round":"Kelc'hiek"},"terms":"stumm an doenn,toenn,furm an doenn,stumm,furm"},"room":{"label":"Seurt"},"rooms":{"label":"Kambroù"},"rotor/diameter":{"label":"Treuzkiz ar bannoù (metroù)","terms":"bannoù,rotor,palez,treuzkiz"},"route":{"label":"Seurt"},"route_master":{"label":"Seurt"},"royal_cypher-GB":{"label":"Lizherennoù roueel","options":{"CIIIR":"CIIIR (Charlez III)","EIIR":"EIIR (Elesbed II)","EVIIIR":"EVIIIR (Edouarzh VIII)","EVIIR":"EVIIR (Edouarzh VII)","GR":"GR (Jorj V)","GVIR":"GVIR (Jorj VI)","VR":"VR (Victoria)","no":"Ket","scottish_crown":"Kurunenn Bro-Skos"}},"ruins":{"label":"Seurt"},"rwn_ref":{"label":"Kod ar gerzhourien"},"sac_scale":{"options":{"hiking":"T1: Bale"}},"salt":{"label":"Holenet","terms":"holen,holenet"},"sample_collection":{"label":"Seurt standilhonoù"},"screen":{"label":"Skrammoù","placeholder":"1, 4, 8…"},"scuba_diving":{"label":"Servijoù"},"seamark/beacon_isolated_danger/shape":{"label":"Furm"},"seamark/beacon_lateral/category":{"label":"Rummad","options":{"danger_left":"Dañjer a-gleiz","danger_right":"Dañjer a-zehoù","port":"Babourzh","starboard":"Stribourzh"}},"seamark/beacon_lateral/colour":{"label":"Liv","options":{"green":"Gwer","grey":"Louet","red":"Ruz"}},"seamark/beacon_lateral/shape":{"label":"Furm"},"seamark/beacon_lateral/system":{"label":"Sistem","options":{"iala-a":"IALA A","iala-b":"IALA B","other":"All"}},"seamark/buoy_lateral/category":{"label":"Rummad","options":{"danger_left":"Dañjer a-gleiz","danger_right":"Dañjer a-zehoù","port":"Babourzh","starboard":"Stribourzh"}},"seamark/buoy_lateral/colour":{"label":"Liv","options":{"green":"Gwer","green;red;green":"Gwer-Ruz-Gwer","green;white;green;white":"Gwer-Gwenn-Gwer-Gwenn","red":"Ruz","red;green;red":"Ruz-Gwer-Ruz","red;white;red;white":"Ruz-Gwenn-Ruz-Gwenn","white":"Gwenn","yellow":"Melen"}},"seamark/buoy_lateral/shape":{"label":"Furm"},"seamark/buoy_lateral/system":{"label":"Sistem","options":{"iala-a":"IALA A","iala-b":"IALA B","other":"All"}},"seamark/harbour/category_marina":{"options":{"marina":"Ya","marina_no_facilities":"Ket"}},"seamark/mooring/category":{"label":"Rummad"},"seamark/rescue_station/category":{"options":{"aircraft":"Aerlestr","first_aid":"Prederioù kentañ","hovercraft":"Dourruzer","lifeboat_on_mooring":"Kanod-argoll a-ere","radio":"Chadenn radio"}},"seamark/type":{"label":"Balizenn","terms":"balizenn,mor,dour,bag,lestr,bigi,balizenn-vor,porzh"},"seamark/wreck/category":{"label":"Rummad"},"seasonal":{"label":"Diouzh ar c'houlz"},"seats":{"label":"Plasoù","placeholder":"2, 4, 6..."},"second_hand":{"options":{"no":"Ket","only":"Nemet","yes":"Ya"},"placeholder":"Ya, Ket, Nemet"},"self_service":{"label":"Emservij"},"service":{"label":"Seurt","options":{"alley":"Straedig","drive-through":"Servij \"drive\"","driveway":"Alez","emergency_access":"Moned trummadoù","parking_aisle":"Alez parkañ"}},"service/bicycle":{"label":"Servijoù marc'hhouarnerezh","terms":"belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,servijoù,stal"},"service/vehicle":{"label":"Servijoù"},"service_rail":{"label":"Seurt servij","terms":"seurt servij"},"shelter":{"label":"Goudor"},"shelter_type":{"label":"Seurt"},"shoes":{"label":"Botoù"},"shop":{"label":"Seurt"},"short_name":{"label":"Anv berr","terms":"anv berr"},"shower":{"label":"Strinkerezh","terms":"strinkerezhioù,strinkerezh"},"side":{"label":"Tu"},"siren/purpose":{"label":"Pal"},"siren/type":{"label":"Seurt","options":{"electronic":"Tredanel","other":"All"}},"site":{"label":"Seurt"},"smoking":{"label":"Butuniñ","options":{"no":"Arabat butuniñ e pep lec'h","outside":"Aotreet en diavaez","yes":"Aotreet e pep lec'h"},"placeholder":"Ket, Disrannet, Ya...","terms":"butun,butuniñ,butunat"},"smoothness":{"options":{"horrible":"Karbed treuz bro pounner","intermediate":"Rodoù: belo-kêr, kador-ruilh, c'hwil-tan"},"placeholder":"Rodigoù, rodoù, treuz bro..."},"sms":{"label":"SMS","terms":"sms,kemenn,kemennadenn,lizher"},"social_facility":{"label":"Seurt","options":{"day_care":"Magouri","food_bank":"Bank boued","nursing_home":"Ti-diskuizh","shelter":"Bod"}},"social_facility_for":{"label":"Tud skoazellet","options":{"child":"Bugale","drug_addicted":"Tud suj d'an drammoù","homeless":"Tud hep ti na aoz","juvenile":"Tud yaouank","migrant":"Divroidi","orphan":"Emzivaded","refugee":"Repuidi","senior":"Tud war an oad","unemployed":"Tud dilabour","veteran":"Soudarded kozh","victim":"Reuzidi torfed","woman":"Merc'hed"}},"source":{"label":"Mammennoù","options":{"aerial imagery":"Skeudenn-aer","gps":"GPS","local knowledge":"Gouiziegezh lec'hel","osm notes":"Notennoù OpenStreetMap","streetlevel imagery":"Skeudennoù-straed","survey":"Sontadeg"}},"source/population":{"label":"Mammenn ar poblañs"},"species":{"label":"Spesad","placeholder":"Acer platanoides, Quercus robur, …","terms":"spesad"},"species/wikidata":{"label":"Wikidata ar spesad","terms":"wikidata,spesad,loen,aneval"},"sport":{"label":"Sportoù","options":{"american_football":"Mell-droad amerikan","athletics":"Atleterezh","badminton":"Badminton","baseball":"Baseball","basketball":"Basket-ball","beachvolleyball":"Beach-volley","bmx":"BMX","boules":"Bouloù","canoe":"Kanoe-kaiak","chess":"Echedoù","climbing":"Krapañ","cricket":"Kriked","curling":"Curling","cycling":"Marc'hhouarnerezh","darts":"Birigoù","disc_golf":"Pladenn-c'holf","dog_racing":"Redadeg chas","equestrian":"Marc'hegezh","fitness":"Jiminas yac'haat","free_flying":"Bolc'haskell / deltaplaver","futsal":"Futsal","gaelic_games":"C'hoarioù gouezelek","golf":"Golf","gymnastics":"Jiminas","horse_racing":"Redadeg kezeg","ice_hockey":"Hockey","ice_skating":"Riklerezh","karting":"Karting","motocross":"Motocross","motor":"Sportoù dre geflusker","multi":"Sport amstrizh","netball":"Netball","padel":"Padel","pelota":"Polot euskarat","running":"Redek","scuba_diving":"Splujañ","shooting":"Tennañ","skateboard":"Skateboard (plankenn-ruilh)","skiing":"Ski","soccer":"Mell-droad","softball":"Softball","swimming":"Neuial","table_tennis":"Tennis-taol","tennis":"Tennis","volleyball":"Volley-ball","yoga":"Yoga"}},"sport/sport_ice":{"label":"Sportoù"},"sport/sport_pub":{"label":"Sportoù","terms":"sport,sportoù,dudi,c'hoari"},"sport/sport_racing_motor":{"label":"Sportoù"},"sport/sport_racing_nonmotor":{"label":"Sportoù"},"stars":{"label":"Stered","terms":"stered"},"start_date":{"label":"Deiziad an deraouenn","placeholder":"BBBB-MM-DD","terms":"deiziad,deiz,deroù"},"static_caravans":{"label":"Tiez heloc'h"},"step_count":{"label":"Niver a ziri","terms":"niver a ziri,diri,dar,pazennoù,derez"},"stile":{"label":"Seurt"},"stop":{"label":"Seurt arsav","options":{"all":"Holl roudennoù","minor":"Hent eilrenk"}},"street_cabinet":{"label":"Seurt","terms":"seurt"},"stroller":{"label":"Aes d'ar c'harrigoù-babigoù","options":{"limited":"Bevennet","no":"Ket","yes":"Ya"},"terms":"aes d'ar c'harrigoù-babigoù,hegerz,karrigoù-babigoù,d'ar c'harrigoù-babigoù"},"structure":{"label":"Frammadur","options":{"bridge":"Pont","cutting":"Klaz","embankment":"Savenn-douar","ford":"Roudouz","tunnel":"Riboul"},"placeholder":"Dianav","terms":"frammadur"},"structure_canal":{"label":"Frammadur","options":{"bridge":"Pont","tunnel":"Riboul"},"placeholder":"Dianav"},"structure_power":{"label":"Frammadur","options":{"lattice":"Treilh"}},"structure_waterway":{"label":"Frammadur","options":{"tunnel":"Riboul"},"placeholder":"Dianav"},"studio":{"label":"Seurt"},"subject":{"label":"Danvez","terms":"sujed,ergorenn"},"subject/wikidata":{"label":"Wikidata an danvez","terms":"wikidata,danvez,sujed"},"substance":{"label":"Danvez","options":{"fuel":"Esañs","gas":"Gaz naturel","hot_water":"Dour zomm","rainwater":"Dour-glav","sewage":"Dourioù lous","water":"Dour mat da evañ"}},"substation":{"label":"Seurt","options":{"distribution":"Dasparzhañ rannvroel","industrial":"Greantel","minor_distribution":"Dasparzhañ lec'hel"}},"substation_pipeline":{"label":"Seurt","options":{"distribution":"Dasparzhañ rannvroel","industrial":"Greantel","measurement":"Muzulioù","minor_distribution":"Dasparzhañ lec'hel","valve":"Begel"}},"summit/cross":{"label":"Kalvar lein ur menez","terms":"lein,lein ar menez,lein ur menez,kalvar,kroaz"},"supervised":{"label":"Evezhiet","terms":"evezhiet,eveshaet"},"surface":{"label":"Gorread","options":{"artificial_turf":"Leton sintetek","asphalt":"Asfalt","clay":"Pri","concrete":"Betoñs","dirt":"Douar","fine_gravel":"Grouan munut","grass":"Leton","gravel":"Grouan","ground":"Leur","metal":"Metal","paved":"Teret","salt":"Holen","sand":"Traezh","sett":"Pavezioù benet","unpaved":"Nann-teret","wood":"Koad","woodchips":"Skolp"},"terms":"gorre,gorread,leur,gorreenn"},"surveillance":{"label":"Tra evezhiet","terms":"tra evezhiet"},"surveillance/type":{"label":"Seurt evezherezh","options":{"camera":"Kamera","guard":"Gward"}},"surveillance/zone":{"label":"Takad evezhiet"},"survey_point/purpose":{"label":"Pal","options":{"both":"An daou"}},"survey_point/structure":{"label":"Frammadur","options":{"block":"Bloc'h","cairn":"Karn","magnet":"Maen-touch dindandouar","medallion":"Medalenn","pillar":"Piler","plaque":"Plakenn","pole":"Post"}},"swimming_pool":{"label":"Seurt","options":{"kids":"Poull-neuial bugale","spa":"Spa","wave_pool":"Poull-neuial gwagennoù"}},"switch":{"label":"Seurt","options":{"circuit_breaker":"Distrollerez","disconnector":"Distager","mechanical":"Mekanikel"}},"takeaway":{"label":"Da gas ganeoc'h","options":{"no":"Ket","only":"Da gas ganeoc'h hepken","yes":"Ya"},"placeholder":"Ya, Ket, Da gas ganeoc'h hepken...","terms":"da gas,kas,da gas ganeoc'h,da gas ganit,to go"},"target":{"label":"Pal"},"taxi_vehicle":{"label":"Seurt karbed","options":{"motorcycle":{"title":"Marc'h-tan"}},"terms":"seurt karbed,seurt,karr,karbed,seurt ar c'harbed,seurt ar c'harr"},"taxon":{"label":"Takson","terms":"spesad,takson,aneval,loen"},"tee":{"label":"Seurt/liv an te"},"telecom":{"label":"Seurt","options":{"data_center":"Kreizenn roadennoù"}},"telescope/type":{"label":"Seurt","options":{"optical":"Teleskop optikel","radio":"Radioteleskop"}},"tents":{"label":"Teltennoù"},"tidal":{"label":"Dindan levezon ar mareoù","terms":"lanv,tre,tre ha lanv,chal,dichal,chal ha dichal,mare,reverzhi,lanvad,mareaj,morad,gourlen,dazre,daere,uhelvor,mor,meurvor,levezon"},"to":{"label":"Da"},"toilets":{"label":"Privezioù","terms":"sal-dour,privezioù"},"toilets/disposal":{"options":{"bucket":"Sailh","chemical":"Chimik","pitlatrine":"Privezioù sec'h"}},"toilets/handwashing":{"label":"Gwalc'heris","terms":"gwalc'heris,dar,golc'heris,basin,gwalc'houer,golc'houer"},"toilets/menstrual_products":{"label":"Produioù digoust evit ar mizioù da gaout","options":{"limited":"En un nebeut logelloù hepken","no":"Ket","yes":"Ya, e pep logell"},"terms":"produioù digoust evit ar mizioù da gaout,produioù evit ar mizioù,mizioù,amzerioù,produioù digoust evit an amzerioù da gaout,produioù digoust evit ar mizioù hegerz,produioù digoust evit an amzerioù hegerz,produioù evit an amzerioù,produioù evit an amzerioù da gaout,produioù evit an amzerioù hegerz,produioù evit ar mizioù da gaout,produioù evit ar mizioù hegerz,serviedenn amzerioù,serviedennoù amzerioù,serviedenn yec'hedus,serviedennoù yec'hedus,tapon amzerioù,tapon mizioù,tapon,tampon,stouv,stouvoù,produ yec'hedel,produ yec'hedus,produ mizioù,produ amzerioù,serviedenn"},"toilets/position":{"label":"Lec'hiadurioù","terms":"lec'hiadur,lec'h,lec'hiadurioù"},"toilets/wheelchair":{"label":"Privezioù aes d'an dud dalc'het en o c'herzhed","options":{"limited":"Bevennet","no":"Ket","yes":"Ya"},"terms":"privezioù aes d'an dud dalc'het en o c'herzhed,wc,tdk,aes d'ar c'hadorioù-ruilh,hegerz,kador-ruilh,kadorioù-ruilh,d'ar c'hadorioù-ruilh,evit ar c'hadorioù-ruilh,kador rodek"},"toll":{"label":"Gwir-treizh","terms":"taos,impost,tailh"},"tomb":{"label":"Seurt","options":{"crypt":"Kev","dolmen":"Taol-vaen","mausoleum":"Kañvdi","pyramid":"Piramidenn","sarcophagus":"Laour","table":"Taol","tumulus":"Krugell","war_grave":"Bez-soudard war e-unan"}},"tourism":{"label":"Seurt"},"tower/construction":{"label":"Savidigezh"},"tower/platforms":{"label":"Savennoù","placeholder":"1, 2, 3..."},"tower/type":{"label":"Seurt"},"townhall/type":{"label":"Seurt"},"tracktype":{"label":"Seurt forzh"},"trade":{"label":"Seurt"},"traffic_calming":{"label":"Seurt","options":{"bump":"Skoilh torr-tizh","chicane":"Kammigell / chikan","hump":"Kein gwiz","mini_bumps":"Skoilhoù torr-tizh bihan"}},"traffic_calming_road":{"label":"Kein-gwiz"},"traffic_sign":{"label":"Panell-henchañ"},"traffic_sign/direction":{"options":{"backward":"War-gil","both":"An daou / An holl","forward":"War-raok"}},"traffic_signals":{"label":"Seurt"},"traffic_signals/direction":{"options":{"backward":"War-gil","both":"An daou / An holl","forward":"War-raok"}},"traffic_signals/sound":{"options":{"no":"Ket","yes":"Ya"}},"trail_visibility":{"placeholder":"Dispar, mat, fall..."},"transformer":{"label":"Seurt","options":{"yes":"Perzh dianav"}},"trees":{"label":"Gwez"},"trench":{"label":"Seurt"},"trolley_wire":{"label":"Funioù trolleybus","terms":"orjalenn,linenn,tredan,linenn dredan,fun,funioù,trolley,trolleybus,katener"},"tunnel":{"label":"Seurt","placeholder":"Dre ziouer"},"tunnel_combo":{"label":"Seurt","options":{"avalanche_protector":"Gwarez enep-disac'h-erc'h","building_passage":"Treuzell","culvert":"Kan-dour","flooded":"Riboul beuzet"}},"turning_circle":{"label":"Furm"},"two_sided":{"label":"Daoudu","options":{"undefined":"Ket","yes":"Ya"},"terms":"daoudu,tu,daou du,daou gostez"},"usage_rail":{"label":"Seurt implij","options":{"branch":"Eil skourr","industrial":"Greantel","main":"Pennañ","military":"Milour","test":"Hentad amprouiñ evit an trenioù nevez","tourism":"Touristelezh"},"terms":"implij,arver,arverañ,implijout,servij,seurt"},"usage_waterway":{"label":"Seurt implij","options":{"irrigation":"Kanouc'hell","transportation":"Treuzdougen"}},"utility":{"options":{"gas":"Gaz","oil":"Eoul-douar","power":"Energiezh","sewerage":"Dourioù lous","street_lighting":"Goulaouiñ foran","telecom":"Pellgehentiñ","water":"Dour"}},"valve":{"label":"Seurt"},"vehicles":{"label":"Karbedoù","options":{"bus":"Bus","ferry":"Ferry","light_rail":"Metro skañv","monorail":"Unroudenn","subway":"Metro","train":"Tren","tram":"Tramgarr","trolleybus":"Trolleybus"}},"vending":{"label":"Seurt marc'hadourezh","options":{"bicycle_tube":"Bouzellennoù-rod marc'hoù-houarn","bread":"Bara","cigarettes":"Sigaretennoù","coffee":"Kafe","condoms":"Stevelloù","drinks":"Evajoù","e-cigarettes":"Sigaretennoù elektronek","eggs":"Vioù","electronics":"Dafar elektronek","elongated_coin":"Pezhioù (eñvorenn)","excrement_bags":"Seier kaoc'h-ki","feminine_hygiene":"Produioù evit an amzerioù","food":"Boued","fuel":"Esañs","ice_cream":"Dienn-skorn","ice_cubes":"Skornennoù","milk":"Laezh","newspapers":"Kazetennoù","parking_tickets":"Tikedennoù parkañ","pizza":"Pizza","public_transport_tickets":"Tikedennoù treuzdougen foran","stamps":"Timbroù","sweets":"Madigoù","water":"Dour mat da evañ"}},"vhf":{"label":"Chadenn VHF","terms":"chadenn,vhf,very high frequency"},"via":{"label":"Dre"},"video_calls":{"label":"Galvoù video"},"visibility":{"label":"Gwelusted","options":{"area":"Tremen 20m (65tt)","house":"Betek 5m (16tt)","street":"Eus 5 da 20m (eus 16 da 65tt)"},"terms":"gwelusted,hed-gwel,hewelded"},"volcano/status":{"label":"Statud ar menez-tan","options":{"active":"Oberiant"}},"volcano/type":{"label":"Seurt menez-tan","options":{"shield":"Menez-tan skoed","stratovolcano":"Menez-tan gweleadek"}},"voltage":{"label":"Voltadur"},"voltage/primary":{"label":"Voltadur pennañ","terms":"voltadur,stennadur,stegnadur,stignadur,pennañ,kentañ"},"voltage/secondary":{"label":"Voltadur eil renk","terms":"voltadur,stennadur,stegnadur,stignadur,eil,eil renk,eil derez"},"voltage/tertiary":{"label":"Voltadur trede renk","terms":"voltadur,stennadur,stegnadur,stignadur,trede,trede renk,trede derez"},"wall":{"label":"Seurt"},"waste":{"label":"Lastez","options":{"cigarettes":"Sigaretennoù","dog_excrement":"Kaoc'h-ki","organic":"Glazach","trash":"Lastez"}},"water":{"label":"Seurt"},"water_point":{"label":"Lec'h dour"},"water_source":{"label":"Mammenn dour","options":{"main":"San dour","pond":"Stank","river":"Stêr","stream":"Gwazh","water_tank":"Sitern dour"}},"water_tank/volume":{"label":"Volum (litroù)","placeholder":"10000, 20000, 30000…","terms":"ec'honenn,tolzennad,volum,egorenn,egor,litr,litroù"},"waterway":{"label":"Seurt"},"website":{"label":"Lec'hienn","placeholder":"https://skouer.bzh","terms":"internet,lec'hienn,kenrouedad,web"},"website/menu":{"label":"Liamm war-zu al lañser","placeholder":"https://skouer.bzh","terms":"liamm,war-zu,war-du,etrezek,al lañser,ar bajenn degemer,an degemer"},"wetland":{"label":"Seurt","options":{"bog":"Taouarc'heg","mangrove":"Mangrovenn","marsh":"Geunioù","saltmarsh":"Palud-holen","swamp":"Paludenn","tidalflat":"Morfont","wet_meadow":"Pradenn c'hleb"}},"wheelchair":{"label":"Moned kadorioù-ruilh","options":{"limited":"Bevennet","no":"Ket","yes":"Ya"},"terms":"aes d'ar c'hadorioù-ruilh,hegerz,kador-ruilh,kadorioù-ruilh,d'ar c'hadorioù-ruilh,evit ar c'hadorioù-ruilh,aes d'an dud dalc'het en o c'herzhed,tdk,moned,kador rodek"},"width":{"label":"Ledander (metroù)","terms":"ledanded,ledander,metr,metroù"},"wikidata":{"label":"Wikidata","terms":"wikidata"},"wikimedia_commons":{"label":"Pajenn Wikimedia Commons","placeholder":"Teul:Skouer.jpg","terms":"wikimedia,commons,pajenn,pennad"},"wikipedia":{"label":"Wikipedia","terms":"wikipedia"},"windings":{"placeholder":"1, 2, 3..."},"windings/auto":{"label":"Unandreuzfurmer","options":{"no":"Ket","undefined":"\"Ket\" dre ziouer","yes":"Ya"},"terms":"unandreuzfurmer,treuzfurmer"},"windings/configuration":{"options":{"delta":"Tric'horn","leblanc":"Leblanc","open":"Digor","open-delta":"Tric'horn digor","scott":"Scott","star":"Sterenn","zigzag":"Kamm-digamm"}}},"presets":{"address":{"name":"Chomlec'h","terms":"chomlec'h,lec'h,kêr,chom,lec'hiadur"},"advertising":{"name":"Benveg brudañ","terms":"ardivink,benveg,bruderezh,brudañ"},"advertising/billboard":{"name":"Panell vrudañ","terms":"bruderezh,brudañ,panell,pub,skritell"},"advertising/board":{"name":"Panell skritellañ","terms":"panell,bruderezh,skritell,skritellañ,brudañ,titouroù,titouriñ,keloù,kelaouenn"},"aerialway/cable_car":{"name":"Fungarr","terms":"karr-fun,fungarr"},"aerialway/chair_lift":{"name":"Fungador","terms":"skiañ,ski,funsacherez,fungador,kador"},"aerialway/drag_lift":{"name":"Teleski","terms":"skiañ,ski,funsacherez,fungador,kador,teleski"},"aerialway/gondola":{"name":"Funlogell","terms":"skiañ,ski,funsacherez,fungador,funlogell,fungarr"},"aerialway/magic_carpet":{"name":"Tapis-ruilh","terms":"tapis-ruilh"},"aerialway/platter":{"name":"Teleski unplas","terms":"teleski,unplas"},"aerialway/zip_line":{"name":"Tirolianenn","terms":"tirolianenn,tirolian"},"aeroway":{"name":"Elfenn aerel"},"aeroway/aerodrome":{"name":"Aerborzh","terms":"aerborzh"},"aeroway/apron":{"name":"Tarmak","terms":"tarmak,aerborzh,karr-nij,kirri-nij,avioñ,nijerez,nijva"},"aeroway/hangar":{"terms":"etrepaouez,karrdi,sanailh,hangar,skiber,lab"},"aeroway/helipad":{"name":"Biñsporzh","terms":"biñsporzh,biñsaskell,askell-dro,askell-viñs"},"aeroway/runway":{"name":"Pradva","terms":"dibradañ,pradva,nijerez,karr-nij,kirri-nij,aerborzh,nijva,diskenn,douarañ,pradañ,leuriañ,parañ,hent,hentad"},"aeroway/spaceport":{"name":"Kreizenn aeregor","terms":"spasporzh,egorborzh,spasborzh,kreizenn spas,kreizenn egor,kreizenn aeregor"},"aeroway/taxiway":{"name":"Hent-tremen","terms":"taxiway,hent-tremen"},"aeroway/windsock":{"name":"Mañch-aer","terms":"mañch-aer,milgin-aer"},"amenity":{"name":"Danframmoù"},"amenity/animal_shelter":{"name":"Bod-loened","terms":"kevredad gwarez al loened,kgl,bod,bod-loened,loen,loen-ti,loen moumoun,moumoun,perc'hennañ,adopsion,advabañ,advugelañ"},"amenity/arts_centre":{"name":"Kreizenn arz ha sevenadur","terms":"arz,arzel,sevenadur,sevenadurel,kreizenn"},"amenity/atm":{"name":"Bilhedaouer","terms":"atm,dasparzher,arc'hant,argant,ingaler,emgefre,emgefreek"},"amenity/baking_oven":{"name":"Forn dre geuneud","terms":"forn dre geuneud,forn,fornigell,poazhañ,pobañ,forn koad,forn dre goad,keuneud"},"amenity/bank":{"name":"Ti-bank","terms":"ti-bank,arc'hanti,bank"},"amenity/bar":{"name":"Tavarn","terms":"tavarn,pub,bar,ostaleri"},"amenity/bar/lgbtq":{"name":"Tavarn LGDTQ+","terms":"tavarn,bar,pub,ostaleri,lgbt,lgdt,lgbt+,lgdt+,lgbtq,lgdtq,lgbtq+,lgdtq+,lgbtqia+,lgdtqea+,gae,lesbian,gay"},"amenity/bbq":{"name":"Regezer/grill","terms":"regezer,grill,suilhañ,rosta,krazañ,regeziñ"},"amenity/bench":{"name":"Bank","terms":"bank,skaon"},"amenity/bicycle_parking":{"name":"Parklec'h marc'hoù-houarn","terms":"belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,parkañ,parklec'h,parklec'h beloioù"},"amenity/bicycle_parking/building":{"name":"Karrdi marc'hoù-houarn","terms":"parklec'h,karrdi,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,parkañ,parklec'h beloioù,garaj"},"amenity/bicycle_parking/lockers":{"name":"Kombodoù marc'hoù-houarn","terms":"marc'h-houarn,kombod"},"amenity/bicycle_parking/shed":{"name":"Goudor marc'hoù-houarn","terms":"goudor,loch,marc'h-houarn"},"amenity/bicycle_rental":{"name":"Marc'hoù-houarn da feurmiñ","terms":"belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,gwerzhañ,stal,feurmiñ,da feurmiñ"},"amenity/bicycle_wash":{"name":"Gwalc'hañ marc'hoù-houarn","terms":"mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,beloioù,marc'h-houarn,gwalc'hañ,naetaat,kempenn"},"amenity/binoculars":{"name":"Lunedoù hirwel"},"amenity/boat_rental":{"name":"Bigi da feurmiñ"},"amenity/bus_station":{"name":"Arsav-dibenn bus"},"amenity/cafe":{"name":"Ti-kafe","terms":"ti-kafe,kafedi,ti-evañ,kafe,café"},"amenity/cafe/bubble_tea":{"name":"Tavarn bubble-tea"},"amenity/cafe/coffee_shop":{"name":"Ti-kafe","terms":"kafe,stal-gafe,stal kafe,evaj,evajoù,ti-kafe,café,tavarn"},"amenity/car_pooling":{"name":"Leur-genweturañ"},"amenity/car_rental":{"name":"Kirri da feurmiñ","terms":"karr,feurmiñ,kirri,karbed,karr-tan,kirri-tan,da feurmiñ,gwetur"},"amenity/car_wash":{"name":"Porzh gwalc'hiñ kirri","terms":"porzh,gwalc'hiñ,karbed,karr-tan,kirri-tan,gwetur,karr,kirri,gwalc'herezh"},"amenity/casino":{"name":"Kazino","terms":"kazino,arc'hant,c'hoari,argant"},"amenity/childcare":{"name":"Magouri","terms":"magouri,kraou,bugale,bugel,babig,ober war-dro,plediñ,diwallañ"},"amenity/cinema":{"name":"Sinema","terms":"sinema,fiñvskeudenndi,fiñvskeudennva,film,c'hoariva"},"amenity/clinic":{"name":"Liesklinikenn","terms":"klinikenn,liesklinikenn"},"amenity/clinic/abortion":{"name":"Klinikenn diforc'hidigezh","terms":"klinikenn diforc'hidigezh,klinikenn diforc'hañ"},"amenity/clinic/dialysis":{"name":"Kreizenn dializenn","terms":"kreizenn,dializ,dializenn"},"amenity/clock":{"name":"Eurier","terms":"amzer,eurier,montr,pandulenn,dihuner,horolaj"},"amenity/clock/sundial":{"name":"Kadran","terms":"kadran,eurier-heol,horolaj-heol,horolaj,eurier,skeud,heol,amzer,eur"},"amenity/community_centre":{"name":"Sal liezimplij"},"amenity/community_centre/community_hall":{"name":"Sal liezimplij","terms":"sal liezimplij,liesimplij,liezimplij"},"amenity/community_centre/cultural_centre":{"name":"Kreizenn sevenadurel","terms":"kreizenn sevenadurel"},"amenity/community_centre/family_centre":{"name":"Kreizenn diegezhel","terms":"kreizenn diegezhel,kreizenn tiegezhioù,kreizenn diegezh,tiegezh,tiegezhioù,tiegezhel,diegezhel,kreizenn"},"amenity/community_centre/lgbtq":{"name":"Kreizenn LGDTQ+"},"amenity/community_centre/youth_centre":{"name":"Kreizenn yaouankiz"},"amenity/compressed_air":{"name":"Aer wasket","terms":"aer,wasket,gwasket,kenwasket,moustret,voustret"},"amenity/conference_centre":{"name":"Kreizenn ar c'hendalc'hioù","terms":"kreizenn ar c'hendalc'hioù,kendalc'hioù,kreizenn"},"amenity/courthouse":{"name":"Ti-barn","terms":"lez-varn,tu-barn,barn"},"amenity/coworking_space":{"name":"Lec'h kenlabourat"},"amenity/crematorium":{"name":"Forn an Ankoù","terms":"bered,bez,ankoù,anaon,marv,mervel,kelan,douarañ,douaridigezh,kañv,ti-kañv,bolz-kañv,forn,forn an ankoù,forn deviñ korfoù,deviñ-korfoù,krematoriom,deviñ,suilhañ,leskiñ,tan"},"amenity/dentist":{"name":"Dentour","terms":"dentour,dantour,mezeg-dent"},"amenity/doctors":{"name":"Doktor","terms":"doktor,mezeg,milchin,medisin,medisinour,louzaouer"},"amenity/doctors/allergology":{"name":"Allergologour","terms":"allergologour,allergologiezh,allergologel,allergologourez,allergiezh"},"amenity/doctors/cardiology":{"name":"Kalonour","terms":"kalon,kalonour,kalonouriezh,kardiologiezh,kardiologour,milchin,medisin,doktor,mezeg,mezekniezh,ospital,klañvdi,medisinerezh"},"amenity/doctors/child_psychiatry":{"name":"Bredvezeg evit ar vugale hag ar grennarded","terms":"bredvezeg,psikiatrour,psikiatriezh,bredvezekniezh,bredvezegiezh,bugel,bugale,krennard,krennardez,krennardezed,krennarded,vugale,c'hrennard,grennardez,c'hrennardezed,grennarded"},"amenity/doctors/dermatology":{"name":"Kroc'henour","terms":"kroc'henour,dermatologour,kroc'hen,dermatologiezh,kroc'henouriezh,kleñved,kleñved kroc'hen"},"amenity/doctors/gastroenterology":{"name":"Koazhadour","terms":"milchin,medisin,doktor,mezeg,mezekniezh,ospital,klañvdi,medisinerezh,gastroenterologiezh,koazhadouriezh,gastroenterologour,koazhadour,gastroenterit,koazhadur,koazhañ,stomog,bouzelloù,bouzellenn,genoù,treizher,korzenn-voued"},"amenity/doctors/gynaecology":{"name":"Amiegour/ginekologour","terms":"amiegour/ginekologour,amiegez,amiegourez,ginekologourez,ginekologour,benvezeg,benvezegez,benevour,benevourez,medisin ar merc'hed,plac'hed,merc'h,verc'h,blac'h,plac'h,maouez,vaouez,maouezed,vaouezed"},"amenity/doctors/haematology":{"name":"Hematologour","terms":"hematologiezh,hematologour,gwadour,gwad"},"amenity/doctors/nephrology":{"name":"Nefrologour","terms":"nefrologiezh,nefrologour"},"amenity/doctors/neurology":{"name":"Neurologour","terms":"neuron,neurologour,neurologiezh,neurologel,empenn"},"amenity/doctors/neurosurgery":{"name":"Neurosurjian","terms":"neurosurjian,surjian,neurologiezh"},"amenity/doctors/oncology":{"name":"Onkologour","terms":"onkologour,onkologiezh,onkologel,krign,krign-bev"},"amenity/doctors/ophthalmology":{"name":"Medisin an daoulagad","terms":"medisin an daoulagad,oftalmologour,oftalmologiezh,oftalmologel,mezegiezh an daoulagad"},"amenity/doctors/orthopaedics":{"name":"Surjian ortopedek","terms":"ortopediezh,surjian,surjian ortopedek,ortopedek,ortopedist"},"amenity/doctors/otolaryngology":{"name":"Otorinolarintologour","terms":"otorinolarintologour,otorinolarintologourez,otorinolarintologiezh"},"amenity/doctors/plastic_surgery":{"name":"Surjian kenedel"},"amenity/doctors/podiatry":{"name":"Podologour","terms":"podologour,ficher-treid,podologiezh"},"amenity/doctors/proctology":{"name":"Proktologour","terms":"surjian kolonyoulc'hel,surjian,proktologour,doktor,proktologiezh"},"amenity/doctors/psychiatrist":{"name":"Bredvezeg","terms":"bredvezeg,psikiatrour,psikiatriezh,bredvezekniezh,bredvezegiezh"},"amenity/doctors/pulmonology":{"name":"Pneumologour","terms":"pneumologiezh,pneumologour,skeventour,skevent"},"amenity/doctors/rheumatology":{"name":"Rumatologour","terms":"rumatologour,remm,rumatologiezh"},"amenity/doctors/surgery":{"name":"Surjian hollek","terms":"surjian,doktor,hollek,surjianerezh"},"amenity/doctors/trauma":{"name":"Surjian-traomatologour","terms":"surjian-traomatologour"},"amenity/doctors/urology":{"name":"Urologour","terms":"urologour,urologiezh,urologel,troazh,mezeg ar troazh,mezeg,medisin ar troazh,troazhadouriezh"},"amenity/dog_toilet":{"name":"Privezioù chas","terms":"privezioù chas,ki,kon,privezioù kon,privezioù evit ar chas,privezioù evit ar c'hon"},"amenity/dojo":{"name":"Dojo","terms":"dojo,arz-emgannañ,kannañ,dornañ,gouren,karate,judo"},"amenity/dressing_room":{"name":"Gwiskva"},"amenity/drinking_water":{"name":"Dour mat da evañ","terms":"dour mat da evañ,dour naet,dour prop,dour disaotr,dour distlabez,dour glan"},"amenity/driver_training":{"name":"Tachenn skol-vleinañ","terms":"bleinañ,kirri-tan,karr-tan;gwetur,oto,skol vleinañ,skol-vleinañ,skol bleinañ,takad,tachenn,tachad"},"amenity/embassy":{"name":"Kannati"},"amenity/exhibition_centre":{"name":"Kreizenn diskouezadegoù","terms":"kreizenn diskouezadegoù,diskouezadegoù,diskouezadeg,diskouezva"},"amenity/fast_food":{"name":"Preti fast-food","terms":"preti,ti-debriñ,fast-food,fast food,boued,boued-straed"},"amenity/fast_food/bagel":{"name":"Ti-bagel"},"amenity/fast_food/burger":{"name":"Ti-hamburger","terms":"preti,ti-debriñ,fast-food,fast food,hamburger,burger,boued,boued-straed"},"amenity/fast_food/cafeteria":{"name":"Kafeteria","terms":"kantin,kafeteria"},"amenity/fast_food/chicken":{"name":"Preti fast-food kig-yar","terms":"preti,ti-debriñ,fast-food,fast food,yar,kig-yar,yar fritet,boued,boued-straed"},"amenity/fast_food/donut":{"name":"Ti-donut","terms":"preti,ti-debriñ,fast-food,fast food,donut,boued,boued-straed"},"amenity/fast_food/fish_and_chips":{"name":"Ti Fish & Chips","terms":"preti,ti-debriñ,fast-food,fast food,fish and chips,fish & chips,fish&chips,boued,boued-straed"},"amenity/fast_food/hot_dog":{"name":"Ti-hot-dog","terms":"hot-dog,hot dog,preti,ti-debriñ,fast-food,fast food,boued,boued-straed"},"amenity/fast_food/ice_cream":{"name":"Ti-dienn-skorn"},"amenity/fast_food/juice":{"name":"Ti-chug","terms":"preti,ti-debriñ,fast-food,fast food,boued,boued-straed,chug,chug-frouezh"},"amenity/fast_food/kebab":{"name":"Ti-kebab","terms":"preti,ti-debriñ,fast-food,fast food,boued,boued-straed,kebab,dönner"},"amenity/fast_food/mexican":{"name":"Preti fast-food mec'hikan","terms":"preti,ti-debriñ,fast-food,fast food,boued,boued-straed,mexik,mexiko,mexikan,mec'hiko,mec'hikan,tacos,fajita"},"amenity/fast_food/pizza":{"name":"Ti-pizza","terms":"preti,ti-debriñ,fast-food,fast food,boued,boued-straed,pizza"},"amenity/fast_food/sandwich":{"name":"Stal-sandwichoù","terms":"sandwich,ti-sandwich,preti,ti-debriñ,stal-sandwich,stal sandwichoù,fast food,fast-food,predoù war ar prim,pretierezh prim"},"amenity/ferry_terminal":{"name":"Arsav-dibenn ferry"},"amenity/fire_station":{"name":"Kazarn pomperien","terms":"pomperien,pomper,pomperez,pomperezed,kazarn pomperien,kazarn ar bomperien,paotr an tan,plac'h an tan,saper-pomper,saper-pomperez,saper-pomper youlat,spy,tangwall,tan,mallusted,kreizenn tanioù-gwall ha sikourioù,kts,kreizenn sikour,gwarez a-enep an tanioù-gwall"},"amenity/fountain":{"name":"Feunteun","terms":"feunteun,fetan,stivell,andon,feuntan"},"amenity/fuel":{"name":"Porzh Servij"},"amenity/funeral_hall":{"name":"Funerariom","terms":"funerariom"},"amenity/grave_yard":{"name":"Bered"},"amenity/hookah_lounge":{"name":"Tavarn chicha","terms":"chicha,tavarn,ostaleri,bar"},"amenity/hospital":{"name":"Tachenn ospital","terms":"ospital,klañvdi,tachenn"},"amenity/ice_cream":{"name":"Stal dienn-skorn","terms":"dienn-skorn,koaven-skorn"},"amenity/ice_cream/frozen_yogurt":{"name":"Stal yaourt skornet","terms":"preti,ti-debriñ,yaourt skornet,frozen yogurt,stal"},"amenity/internet_cafe":{"name":"Siber-tavarn","terms":"sibertavarn,tavarn,stlenneg,ti-debriñ"},"amenity/lavoir":{"name":"Poull-kannañ"},"amenity/letter_box":{"name":"Boest-lizhiri prevez"},"amenity/library":{"name":"Levraoueg"},"amenity/lounger":{"name":"Kador-hir","terms":"kador-hir,hirgador"},"amenity/love_hotel":{"name":"Love Hotel","terms":"love hotel,leti karantez,karantez"},"amenity/luggage_locker":{"name":"Kombod malizennoù","terms":"kombod malizennoù,kombod,malizennoù,malizenn"},"amenity/marketplace":{"name":"Marc'had"},"amenity/monastery":{"name":"Tachenn abati"},"amenity/money_transfer":{"name":"Treuzkas arc'hant","terms":"post,treuzkas,arc'hant,bank,ti-bank"},"amenity/mortuary":{"name":"Morg","terms":"morg"},"amenity/motorcycle_parking":{"name":"Parklec'h marc'hoù-tan"},"amenity/motorcycle_rental":{"name":"Marc'hoù-tan da feurmiñ","terms":"marc'h-tan,marc'hoù-tan,mirc'hi-ten,c'hwil-tan,c'hwiled-tan,karbed,treuzdougen,moto,dezougen,feurmiñ,da feurmiñ,mekanik,machin,kenfeurmiñ"},"amenity/nightclub":{"name":"Toull-noz","terms":"toull-noz,toull"},"amenity/nightclub/lgbtq":{"name":"Toull-noz LGDTQ+","terms":"lgbt,lgdt,lgbt+,lgdt+,lgbtq,lgdtq,lgbtq+,lgdtq+,lgbtqia+,lgdtqea+,gae,lesbian,gay,dañsti,pladennaoueg,boest-noz,ribouldi,toull-noz,toull"},"amenity/nursing_home":{"name":"Ti-diskuizh"},"amenity/parking":{"name":"Parklec'h","terms":"parkañ,karr,kirri,karr-tan,marc'h-tan,c'hwil-tan,alez,hent,parklec'h,plas,plas-parkañ"},"amenity/parking/park_ride":{"name":"Parklec'h-eskemm"},"amenity/parking/underground":{"name":"Parklec'h dindandouar","terms":"parkañ,parklec'h,dindandouar,dindan-douar"},"amenity/parking_space":{"name":"Plas parkañ","terms":"parklec'h,plasenn,parkañ,karr-tan,gwetur,karbed,plasenn parkañ,plas"},"amenity/parking_space/disabled":{"name":"Parklec'h miret d'an dud dalc'het (TDK)","terms":"nammet,dalc'het,tdk,tud dalc'het,tud dalc'het en o c'herzhed,parkañ,plas,parklec'h"},"amenity/payment_centre":{"name":"Kreizenn baeañ","terms":"kreizenn,paeañ,baeañ,baeamant,paeamant"},"amenity/pharmacy":{"name":"Apotikerezh"},"amenity/photo_booth":{"name":"Fotomaton","terms":"fotomaton,luc'hskeudennerez,foto,fotoioù,kamera"},"amenity/place_of_worship":{"name":"Lec'h azeuliñ","terms":"lec'h azeuliñ,lec'h sakr,azeuliñ,meuliñ,relijion,katolik,muzulman,yuzev,templ,iliz,moskeenn,sinagogenn,orator,ti-pediñ,pediñ,azeulva,azeuldi,neved,ti-azeul"},"amenity/place_of_worship/buddhist":{"name":"Templ Boudaat","terms":"templ boudaat"},"amenity/place_of_worship/christian":{"name":"Iliz kristen","terms":"iliz kristen"},"amenity/place_of_worship/christian/jehovahs_witness":{"name":"Sal Rouantelezh Testoù Jehovah"},"amenity/place_of_worship/christian/la_luz_del_mundo":{"name":"Templ La Luz del Mundo","terms":"templ la luz del mundo,iliz la luz del mundo,templ,la luz del mundo"},"amenity/place_of_worship/hindu":{"name":"Templ hindou","terms":"kovil,devasthana,mandir,kshetram,alayam,aoter,templ,lec'h santel"},"amenity/place_of_worship/jewish":{"name":"Sinagogenn","terms":"sinagogenn,yuzev,yuzeviezh"},"amenity/place_of_worship/muslim":{"name":"Moskeenn","terms":"moskeenn,muzulman"},"amenity/place_of_worship/shinto":{"name":"Aoter chinto","terms":"templ shinto,templ chinto,aoter shinto,aoter chinto,shinto,chinto"},"amenity/place_of_worship/sikh":{"name":"Templ sikh","terms":"templ,azeuldi,ti-azeuliñ,sikh"},"amenity/place_of_worship/taoist":{"name":"Templ daoat","terms":"templ,azeuldi,ti-azeuliñ,taoism,taoour,taour,taoat,taoad,taoist"},"amenity/planetarium":{"name":"Planetariom","terms":"planetariom,sterennaoueg"},"amenity/police":{"name":"Ti-polis","terms":"ti-polis,staelva-polis,post-polis,polis,lezenn"},"amenity/polling_station":{"name":"Burev-votiñ pad"},"amenity/post_box":{"name":"Boest-lizhiri (kas)","terms":"boest-lizhiri,lizhiri,lizher,boest kas,kas,post,ti-post"},"amenity/post_office":{"name":"Ti-post","terms":"lizher,lizhiri,boest-post,post,ti-post,paotr-al-lizhiri,faktor,kaser-lizheroù"},"amenity/prison":{"name":"Tachenn doull-bac'h","terms":"prizon,prison,toull,toull-bac'h,bac'h,takad,tachenn,tachad,takad un toull-bac'h"},"amenity/pub":{"name":"Pub","terms":"tavarn,pub,ostaleri,ti-evañ"},"amenity/pub/irish":{"name":"Tavarn iwerzhonat","terms":"pub,iwerzhon,iwerzhonek,iwerzhonat,tavarn,bar,ostaleri"},"amenity/pub/lgbtq":{"name":"Pub LGDTQ+","terms":"tavarn,pub,ostaleri,lgbt,lgdt,lgbt+,lgdt+,lgbtq,lgdtq,lgbtq+,lgdtq+,lgbtqia+,lgdtqea+,gae,lesbian,gay"},"amenity/pub/microbrewery":{"name":"Tavarn breserezh"},"amenity/public_bath":{"name":"Kibelldi foran"},"amenity/recycling":{"name":"Lec'h adaozañ"},"amenity/recycling/container/electrical_items":{"name":"Kontener lastez aveadurioù tredan hag elektronek"},"amenity/recycling/container/green_waste":{"name":"Kontener glasach"},"amenity/recycling_centre":{"name":"Kreizenn adaozañ","terms":"kreizenn adaozañ,kreizenn,adaozañ"},"amenity/recycling_container":{"name":"Kontener adaozañ","terms":"kontener adaozañ,kontener,adaozañ,poubellenn,endalc'her"},"amenity/refugee_site":{"name":"Kamp repuidi","terms":"kamp repuidi"},"amenity/research_institute":{"name":"Arnodva enklask"},"amenity/restaurant":{"name":"Preti","terms":"preti,ti-debriñ,debriñ,boued,lein,merenn,koan,kafe,merenn-vihan,adkoan,adverenn,gortozenn"},"amenity/restaurant/american":{"name":"Ti-debriñ amerikan","terms":"preti,ti-debriñ,debriñ,boued,hamburger,fritez,hot-dog,diner,drive-in,grill,steakhouse,amerika,amerikan,norzhamerika,norzhamerikan"},"amenity/restaurant/asian":{"name":"Preti aziat","terms":"preti,ti-debriñ,debriñ,boued,sina,japan,azia,sushi,aziat,korae,vietnam,thailand,laos,kambodja"},"amenity/restaurant/barbecue":{"name":"Ti-regeziñ","terms":"ti-regezer,ti-regeziñ,regezer,preti,ti-debriñ,bbq,grill,suilhañ,rosta,krazañ,regezenn,regeziñ"},"amenity/restaurant/chinese":{"name":"Preti sinat","terms":"preti,ti-debriñ,debriñ,boued,reter-pellañ,sina,sinat,bro-sina,china,chin"},"amenity/restaurant/french":{"name":"Preti gall","terms":"preti,ti-debriñ,ostaleri,gall,galleg,frañs,bro-c'hall"},"amenity/restaurant/georgian":{"name":"Preti jorjian","terms":"preti,ti-debriñ,debriñ,boued,europa,jorgian,jorjia,jorjianek"},"amenity/restaurant/german":{"name":"Preti alaman","terms":"preti,ti-debriñ,debriñ,boued,europa,alamagn,alaman"},"amenity/restaurant/greek":{"name":"Ti-debriñ gresat","terms":"preti,ti-debriñ,debriñ,gresian,gres,bro-c'hres,hellaz,kreizdouarel,boued-mor,boued"},"amenity/restaurant/indian":{"name":"Preti indian","terms":"preti,ti-debriñ,debriñ,boued,india,indian"},"amenity/restaurant/italian":{"name":"Preti italian","terms":"preti,ti-debriñ,debriñ,boued,italia,italian,toazennoù,pizza,pasta,kreizdouarel"},"amenity/restaurant/japanese":{"name":"Preti japanat","terms":"preti,ti-debriñ,debriñ,boued,sushi,japan,japanat,azia,aziat"},"amenity/restaurant/korean":{"name":"Preti korean","terms":"preti,ti-debriñ,debriñ,boued,korea,korean"},"amenity/restaurant/mexican":{"name":"Preti mec'hikan","terms":"preti,ti-debriñ,boued,mexik,meksik,mexiko,meksiko,mexikan,mec'hiko,mec'hikan,tacos,fajita"},"amenity/restaurant/noodle":{"terms":"preti,toazennoù,ti-debriñ"},"amenity/restaurant/pizza":{"name":"Ti-pizza","terms":"preti,ti-debriñ,debriñ,boued,pizza,italia,italian"},"amenity/restaurant/ramen":{"name":"Preti ramen","terms":"toazennoù,ramen,preti,ti-debriñ"},"amenity/restaurant/seafood":{"name":"Preti boued-mor","terms":"preti,ti-debriñ,debriñ,boued,boued-mor,mor,krank,kregin,krogen,legestr,chevr,gavr-mor,chifretez,blotvil,istr,blodeg,meskl"},"amenity/restaurant/spanish":{"name":"Preti spagnol","terms":"spagn,kastilha,kastilhan,spagnol,preti,ti-debriñ"},"amenity/restaurant/sushi":{"name":"Preti sushi","terms":"preti,ti-debriñ,debriñ,japan,japanat,sushi,suchi,azia,aziat,boued,reter-pellañ,boued-mor"},"amenity/restaurant/thai":{"name":"Preti thai","terms":"preti,ti-debriñ,debriñ,boued,thai,thailandat,thailand,azia,aziat,reter-pellañ,gevred azia,azia ar gevred"},"amenity/restaurant/turkish":{"name":"Preti turkat","terms":"preti,ti-debriñ,debriñ,boued,kreizdouarel,kebab,turkia,turk,turkat"},"amenity/restaurant/ukrainian":{"name":"Preti ukrainat","terms":"preti,ti-debriñ,debriñ,boued,ukrainat,ukrainan,ukrainek,ukraina"},"amenity/restaurant/vietnamese":{"name":"Preti vietnamat","terms":"preti,ti-debriñ,debriñ,boued,vietnam,vietnamat,viet nam,azia,aziat,reter-pellañ,gevred azia,azia ar gevred"},"amenity/shelter":{"name":"Goudor","terms":"bod,gwasked,goudor"},"amenity/shelter/gazebo":{"terms":"gwelva,gazebo,kiosk,gwere"},"amenity/shelter/lean_to":{"name":"Lab","terms":"lab,skiber,apoteiz"},"amenity/shelter/picnic_shelter":{"name":"Goudor piknik"},"amenity/shelter/public_transport":{"name":"Goudor treuzdougen foran"},"amenity/shower":{"name":"Strinkerezh","terms":"strinkadennoù,strinkadenn"},"amenity/smoking_area":{"name":"Takad Butunerien","terms":"butunerien,butun,takad,takad butunerien"},"amenity/social_centre":{"name":"Kreizenn sokial","terms":"kreizenn sokial"},"amenity/social_facility":{"name":"Diazezadur servijoù sokial"},"amenity/social_facility/assisted_living":{"name":"Ti diskuizh","terms":"ti ar re gozh,ti diskuizh,ti ar retredidi,annez herberchiañ evit an dud oadet dalc'het,ahdod"},"amenity/social_facility/food_bank":{"name":"Bank boued","terms":"bank-boued,bank,boued"},"amenity/social_facility/group_home":{"name":"Ti ar re gozh","terms":"ti ar re gozh,kozh,kozhidi,re gozh,ahded,ehpad,gozhidi,ti kozh,ti ar gozhidi,tud kozh,ti tud kozh,ti an dud kozh"},"amenity/social_facility/homeless_shelter":{"name":"Bod tud hep ti","terms":"bod tud hep ti"},"amenity/social_facility/nursing_home":{"name":"Ti-diskuizh","terms":"ti-diskuizh,ti ar re gozh,retred,retredidi"},"amenity/stripclub":{"name":"Strip club","terms":"klub,strip,diwiskañ,diwiskadenn"},"amenity/studio":{"name":"Studio","terms":"studio,frammañ,sonerezh"},"amenity/studio/audio":{"name":"Studio sonerezh","terms":"studio,frammañ,sonerezh,enrollañ"},"amenity/studio/radio":{"name":"Chadenn radio","terms":"chadenn,skingomz,radio,savlec'h"},"amenity/studio/television":{"terms":"chadenn,skinwel,tele,savlec'h"},"amenity/studio/video":{"name":"Studio film","terms":"studio,treiñ,filmañ,film,fiñvskeudenniñ,fiñvskeudenn,fiñvskeudennerezh"},"amenity/taxi":{"name":"Taksilec'h","terms":"taxi,taksi,lec'h taksi,stand,savlec'h,taksioù"},"amenity/telephone":{"name":"Pellgomzer","terms":"telefon,pellgomz,pellgomzer,niver,niverenn,bellgomz"},"amenity/theatre":{"name":"C'hoariva","terms":"c'hoariva,teatr,pezh c'hoari,c'hoari,aktour,sonerezh,trajedienn,drama,komedienn,fentc'hoari"},"amenity/theatre/type/amphi":{"name":"Añfiteatr","terms":"añfiteatr,kelc'hva,selaouva,amfiteatr"},"amenity/ticket_validator":{"name":"Stamper tikedennoù","terms":"stamper,gwiriekaer,tikedennoù"},"amenity/toilets":{"name":"Privezioù","terms":"kibelldi,privezioù"},"amenity/toilets/disposal/flush":{"name":"Privezioù gant skarzh-dour","terms":"skarzh-dour,kas-dour,skarzh dour,kas dour,privezioù"},"amenity/toilets/disposal/pitlatrine":{"name":"Privezioù sec'h","terms":"privezioù sec'h"},"amenity/toilets/portable":{"name":"Privezioù heloc'h","terms":"heloc'h,hezoug,distag,loc'h-diloc'h,fiñv,war-fiñv,war vale,red,privezioù"},"amenity/townhall":{"name":"Ti-kêr","terms":"ti-kêr,maerdi"},"amenity/townhall/city":{"name":"Ti-kêr","terms":"ti-kêr,maerdi,maer,adti-kêr"},"amenity/trolley_bay":{"name":"Goudor karrigelloù","terms":"goudor,gwasked,karrigelloù,porzh"},"amenity/vacuum_cleaner":{"name":"Sunerezioù evit naetaat ar c'hirri-tan","terms":"sunerez,sunerezioù"},"amenity/vehicle_inspection":{"name":"Kontroll teknikel","terms":"kontroll teknikel"},"amenity/vending_machine":{"name":"Dasparzher emgefre","terms":"dasparzher,ingaler,emgefre,emgefreek"},"amenity/vending_machine/bicycle_tube":{"name":"Dasparzher bouzellennoù-rod","terms":"emgefre,dasparzher,ingaler,emgefreek,bandennoù-rod,marc'h-houarn"},"amenity/vending_machine/bread":{"name":"Dasparzher bara","terms":"emgefre,dasparzher,ingaler,emgefreek,bara,baguette,bagetez"},"amenity/vending_machine/cigarettes":{"name":"Dasparzher butunennoù","terms":"emgefre,dasparzher,ingaler,emgefreek,butun,sigaretenn,butunenn"},"amenity/vending_machine/coffee":{"name":"Greg emgefreek","terms":"greg,emgefre,dasparzher,ingaler,kafe,te,chokolad,dour,laezh,evaj,evaj tomm,emgefreek"},"amenity/vending_machine/condoms":{"name":"Dasparzher stevelloù","terms":"ingaler,dasparzher,kondom,stevell,tog-lost,golo-lost,rev,revel"},"amenity/vending_machine/drinks":{"name":"Ingaler evajoù","terms":"emgefre,dasparzher,ingaler,emgefreek,evaj,evachoù,evajoù,chug,dour,kafe,te,soda"},"amenity/vending_machine/eggs":{"name":"Ingaler vioù","terms":"emgefre,dasparzher,ingaler,emgefreek,vi,vioù"},"amenity/vending_machine/excrement_bags":{"name":"Dasparzher seier kaoc'h-ki","terms":"dasparzher seier kaoc'h-ki,ingaler seier kaoc'h-ki,sac'higoù,seier,sac'h,gaoc'h-ki,gaoc'h,kaoc'h,ki,chas,kon"},"amenity/vending_machine/feminine_hygiene":{"name":"Ingaler produioù evit an amzerioù","terms":"emgefre,dasparzher,ingaler,emgefreek,produioù,amzerioù,mizioù,stouvoù,stouv,serviedenn yec'hedus,serviedenn"},"amenity/vending_machine/food":{"name":"Dasparzher boued","terms":"emgefre,dasparzher,ingaler,emgefreek,boued,madigoù"},"amenity/vending_machine/food/snacks":{"name":"Dasparzher lipouzerezhioù hag adpredoù","terms":"dasparzher lipouzerezhioù hag adpredoù,dasparzher,ingaler,lipouzerezhioù,madigoù,lipaj,adpredoù,adverenn,adpred,adkoan,snack,boued,kolasion,askoan,gortozenn,emgefreek,emgefre"},"amenity/vending_machine/fuel":{"name":"Dasparzher esañs","terms":"dasparzher esañs,dasparzher trelosk,dasparzher dour-tan"},"amenity/vending_machine/ice_cream":{"name":"Dasparzher dienn-skorn","terms":"emgefre,dasparzher,ingaler,emgefreek,dienn-skorn,koaven-skornet,skornenn,skorn,skornet"},"amenity/vending_machine/ice_cubes":{"name":"Ingaler skorn","terms":"emgefre,dasparzher,ingaler,emgefreek,skorn,skornennoù,skornenn"},"amenity/vending_machine/newspapers":{"name":"Dasparzher kazetennoù","terms":"kazetenn,dasparzher,ingaler"},"amenity/vending_machine/parking_tickets":{"name":"Ingaler tikedennoù parkañ","terms":"emgefre,dasparzher,ingaler,emgefreek,parklec'h,parkañ,tikedenn,tikedennoù"},"amenity/vending_machine/pizza":{"name":"Dasparzher pizzaoù","terms":"emgefre,dasparzher,ingaler,emgefreek,pidza,pizza,pizzaoù"},"amenity/vending_machine/public_transport_tickets":{"name":"Ingaler teulioù treuzdougen","terms":"emgefre,dasparzher,ingaler,emgefreek,parkañ,parklec'h,tikedenn,teul,treuzdougen"},"amenity/vending_machine/stamps":{"name":"Dasparzher timbroù","terms":"emgefre,dasparzher,ingaler,emgefreek,timbr,timbroù,post,lizher,lizhiri"},"amenity/vending_machine/sweets":{"name":"Dasparzher madigoù","terms":"emgefre,dasparzher,ingaler,emgefreek,boued,madigoù,lipouzerezh,lipaj,dasparzher madigoù,ingaler madigoù"},"amenity/veterinary":{"name":"Mezeg-loened","terms":"klinikenn,ospital,loened,anevaled,mezeg,mezegez,milchin,medisin,medisinez,doktor"},"amenity/veterinary_pharmacy":{"name":"Apotikerezh evit al loened","terms":"apotikerezh evit al loened"},"amenity/waste/dog_excrement":{"name":"Poubellenn gaoc'h-ki","terms":"poubellenn gaoc'h-ki,kaoc'h-ki,kaoc'h"},"amenity/waste_basket":{"name":"Poubellenn","terms":"poubellenn,pod-lastez"},"amenity/waste_disposal":{"name":"Bailh lastez","terms":"boest,poubellenn,lastez,pod-lastez,bailh,kestenn"},"area":{"name":"Takad","terms":"takad,lieskogn,lieskorn"},"area/footway":{"name":"Takad hent kerzhet","terms":"hent,gwenodenn,pourmenadenn,kerzhet,kerzhourien,bale,hent-bale,takad"},"area/highway":{"name":"Takad hent","terms":"takad hent,tachenn"},"attraction/amusement_ride":{"name":"Manej"},"attraction/animal":{"name":"Liorzhig-loened","terms":"kloz,lorzhig-loened,loened,enkloz,zoo,liorzh"},"attraction/big_wheel":{"name":"Rod vras","terms":"rod vras"},"attraction/bumper_car":{"name":"Kirri tos-tos","terms":"tos-tos,kirri,karr,stok,karr-stok,kirri-stok"},"attraction/bungee_jumping":{"name":"Lammat gant ur stirenn","terms":"lammat gant ur stirenn,lamm,lammat,stirenn,bungee jumping"},"attraction/carousel":{"name":"Kezeg-koad","terms":"kazeg-vezevenn,kezeg-koad,manej,kezeg-mezevenn"},"attraction/kiddie_ride":{"name":"Manej evit bugale"},"attraction/maze":{"name":"Milendall","terms":"milendall,mil-hent-dall,troielleg"},"attraction/pirate_ship":{"name":"Lestr morlaeron","terms":"morbreizher,morlaer,morlaered,bag,lestr,bigi,c'hoari,dudi,tachenn c'hoari,park dudi,park c'hoari,tourist,touristel"},"attraction/roller_coaster":{"name":"Karr sav-disav","terms":"sav-disav,kirri sav-disav,karr sav-disav,sav-diskenn"},"attraction/train":{"name":"Tren bihan touristel","terms":"tren bihan touristel"},"attraction/water_slide":{"name":"Ruz-revr-dour","terms":"ruz-revr dour,ruz-revr,dour,tobogan,tobogan-dour"},"barrier":{"name":"Harz"},"barrier/block":{"name":"Bloc'h","terms":"bloc'h,bloc'had,karreg,maen"},"barrier/bollard":{"name":"Post","terms":"post"},"barrier/bollard_line":{"name":"Steudad postoù","terms":"renkad,steudad,postoù,peulioù"},"barrier/border_control":{"name":"Post-harzoù","terms":"post-harzoù"},"barrier/chain":{"name":"Chadenn","terms":"chadenn"},"barrier/city_wall":{"name":"Moger-dro","terms":"moger-dro"},"barrier/ditch":{"name":"Klaz","terms":"klaz,foz,fozell"},"barrier/entrance":{"name":"Mont-tre"},"barrier/fence":{"name":"Kloued","terms":"kloued,peulgae,kael"},"barrier/gate":{"name":"Porrastell","terms":"porrastell,dor-dall,porched"},"barrier/guard_rail":{"name":"Aspled","terms":"ramparzh,aspled,garid"},"barrier/handrail":{"name":"Ramparzh"},"barrier/hedge":{"name":"Garzh","terms":"garzh"},"barrier/kerb":{"name":"Ker ar riblenn-straed","terms":"bord,riblenn,riblenn-straed,trotouer,bevenn"},"barrier/log":{"name":"Gwezenn kouezhet","terms":"gwezenn kouezhet,skoilh"},"barrier/retaining_wall":{"name":"Moger-harp","terms":"moger-harp"},"barrier/stile":{"name":"Skalier","terms":"skalier"},"barrier/turnstile":{"name":"Draf-tro"},"barrier/wall":{"name":"Moger","terms":"mur,moger"},"barrier/wall/noise_barrier":{"name":"Mur eneptrouz","terms":"trouz,enep-trouz,eneptrouz,didrouz,mur,moger,chaoser"},"barrier/yes":{"name":"Harz (n'eo ket spisaet)"},"boundary":{"name":"Harzoù"},"boundary/administrative":{"name":"Harzoù melestradurel","terms":"harz,harzoù,frontier,bevenn,melestradurel,melestradurezh,amaezhel"},"boundary/hazard":{"name":"Takad dañjerus","terms":"leur,takad,dañjer,dañjerus,arvarus,lec'h"},"building":{"name":"Savadur","terms":"savadur,ti,batimant,savidigezh"},"building/apartments":{"name":"Kendi","terms":"ranndi,kendi,tiez,tioù,savadur"},"building/bakehouse":{"name":"Forn-vara","terms":"forn,bara,forn-vara,forn vara"},"building/boathouse":{"name":"Karrdi ar bigi","terms":"karrdi ar bigi,karrdi ar bagoù,hangar,bag,bagoù,bigi,sanailh,lab,skiber"},"building/bunker":{"name":"Bunker"},"building/cabin":{"name":"Lochenn","terms":"loch,lochenn,kabanenn,log,logell,logenn,lojell"},"building/carport":{"name":"Gwasked kirri"},"building/cathedral":{"name":"Iliz-veur","terms":"iliz-veur"},"building/chapel":{"name":"Chapel","terms":"chapel,ti-pediñ"},"building/church":{"name":"Iliz","terms":"iliz"},"building/civic":{"name":"Aveadur publik","terms":"aveerezh,aveadenn,aveadur,foran,publik"},"building/college":{"name":"Savadur deskadurezh-uhel","terms":"deskadurezh,deskadurezh uhel,skol-veur,savadur,ti"},"building/commercial":{"name":"Savadur koñvers","terms":"koñvers,kenwerzh,savadur,ti"},"building/construction":{"name":"Savadur war ober","terms":"o sevel,sevel,takad,savidigezh,labourioù,labour,savadenn,savadur,tisaverezh,saver,tisaver,batis,ti,kendi,ranndi,konstruidigezh,savadurezh,tiadur,ober,obererezh,war ober,oc'h ober,o vezañ savet,o vezañ krouet"},"building/cowshed":{"name":"Kraou-saout","terms":"kraou,saout,chatal,kraou-saout"},"building/detached":{"name":"Ti distag","terms":"ti distag"},"building/dormitory":{"name":"Kousklec'h","terms":"kousklec'h,kouskva,hunva"},"building/entrance":{"name":"Mont-tre / mont-maez"},"building/farm":{"name":"Ti-feurm","terms":"feurm,tiegezh,ti,ti-feurm,atant,labour-douar,kêr"},"building/farm_auxiliary":{"name":"Savadur atant","terms":"savadur,feurm,tiegezh,ti,ti-feurm,atant,labour-douar,savidigezh"},"building/fire_station":{"name":"Kreizenn-sikour","terms":"kreizenn-sikour,kreizenn sikour,pomperien"},"building/garage":{"name":"Karrdi","terms":"karrdi"},"building/garages":{"name":"Karrdioù"},"building/ger":{"name":"Yourt","terms":"yourt,yurt"},"building/greenhouse":{"name":"Ti-gwer","terms":"ti-gwer"},"building/hangar":{"name":"Sanailh"},"building/hospital":{"name":"Ospital","terms":"ospital,klañvdi"},"building/hotel":{"name":"Leti","terms":"ostaleri,otel,hotel,leti,savadur,ti"},"building/house":{"name":"Ti","terms":"savadur,ti,batimant,savidigezh,kêr"},"building/house/terraced":{"name":"Ti e kêr","terms":"ti e kêr,ti e steudad,ostaleri vihan,ostel,otel,leti bihan"},"building/hut":{"name":"Log","terms":"logell,loch,log,lochenn,kabin,hut,kabanenn,logenn,ti-plouz"},"building/industrial":{"name":"Savadur greantel","terms":"uzinoù,greantel,industriel,takad,tachenn,tachad"},"building/kindergarten":{"name":"Savadur skol-vamm","terms":"skol,skol kentañ derez,kentañ derez,skol-vamm,skol vamm,savadur,ti"},"building/manufacture":{"name":"Savadur produerezh greantel"},"building/mosque":{"name":"Moskeenn","terms":"moskeenn"},"building/office":{"name":"Burevioù","terms":"savadur,burev"},"building/outbuilding":{"name":"Pourpez"},"building/pavilion":{"name":"Pavilhon"},"building/public":{"name":"Savadur foran","terms":"foran,publik,savadur,savadur publik"},"building/residential":{"name":"Savadur annez","terms":"ti,tiez,ranndi,annez,savadur"},"building/retail":{"name":"Savadur kenwerzhel","terms":"kenwerzh,koñvers,ti,savadur"},"building/riding_hall":{"name":"Aren marc'hegezh diabarzh","terms":"aren marc'hegezh diabarzh,aren,leur,stadion,marc'hegezh,marc'hegerezh,diabarzh"},"building/roof":{"name":"Toenn","terms":"to,toenn"},"building/ruins":{"name":"Dismantroù ur savadur","terms":"dismantroù,savadur,ti,freuz,diskaret,distrujet"},"building/school":{"name":"Savadur skol","terms":"deskadurezh,savadur,skol"},"building/semidetached_house":{"name":"Ti ambion"},"building/service":{"name":"Savadur servij","terms":"savadur servij"},"building/shed":{"name":"Loch"},"building/stable":{"name":"Kraou-kezeg"},"building/stadium":{"name":"Stad","terms":"stad,stadion,sportva"},"building/static_caravan":{"name":"Ti heloc'h","terms":"ti heloc'h,ti treuzdougadus,karavanenn,ti"},"building/sty":{"name":"Kraou-moc'h","terms":"kraou,kraou-moc'h"},"building/synagogue":{"name":"Sinagogenn","terms":"sinagogenn,savadur sinagogenn"},"building/temple":{"name":"Templ","terms":"templ"},"building/terrace":{"name":"Steudad tiez e kêr","terms":"ti e kêr,ti e steudad,ostaleri vihan,ostel,otel,leti bihan,rezad,renkad,steudennad"},"building/train_station":{"name":"Ti-gar"},"building/transportation":{"name":"Savadur an treuzdougen foran"},"building/university":{"name":"Savadur skol-veur","terms":"deskadurezh,deskadurezh uhel,skol-veur,savadur,ti"},"building/warehouse":{"name":"Sanailh","terms":"etrepaouez,sanailh,hangar"},"building_part":{"name":"Rann ur savadur","terms":"darn,lodenn,rann,savadur,ti,perzh"},"building_point":{"name":"Savadur"},"cemetery/grave":{"name":"Bez","terms":"bez"},"club":{"name":"Klub"},"club/scout":{"name":"Strollad skout","terms":"strollad,skout,skouted,skoutelezh"},"club/sport":{"name":"Klub sport","terms":"sport,sportoù,dudi,c'hoari,klud,kleub,club,strollad"},"craft":{"name":"Artizanerezh","terms":"artizanelezh,artizanerezh,artizanalezh,artizanel,dornvicherourezh,dornvicherelezh,dornvichererezh"},"craft/basket_maker":{"name":"Frader paneroù","terms":"oberour,oberer,oberourez,obererez,paner,paneroù,farder,farderez,artizan,panerer,panererez"},"craft/beekeeper":{"name":"Gwenaner","terms":"ruskenn,gwenan,mel,gwenaner"},"craft/blacksmith":{"name":"Govel","terms":"govel"},"craft/boatbuilder":{"name":"Saver-bigi","terms":"saver-bigi"},"craft/bookbinder":{"name":"Koubler-levrioù","terms":"koubler-levrioù,koubler"},"craft/brewery":{"name":"Breserezh artizanel","terms":"breserezh artizanel,dorn-vicherel"},"craft/carpenter":{"name":"Kalvez","terms":"kalvez,kilvizerezh,koad,koadaj"},"craft/caterer":{"name":"Tineller pretiour","terms":"tineller pretiour,tineller,pretiour"},"craft/chimney_sweeper":{"name":"Skarzher-siminalioù","terms":"skarzher-siminalioù,dihuzilier,ramone"},"craft/cleaning":{"name":"Servij naetaat","terms":"servij naetaat"},"craft/clockmaker":{"name":"Horolajerezh","terms":"horolaj,eurier,moñcher,stal,montr,pandulenn,dihuner,horolajerezh"},"craft/confectionery":{"name":"Koñfizer","terms":"koñfizer,koñfizerien,lipouzer,farder madigoù,koñfizerez,koñfizerezed,lipouzerez,farderez vadigoù,lipouzerezh,koñfizerezh"},"craft/distillery":{"name":"Strilherezh","terms":"strilherezh,brasaerezh"},"craft/dressmaker":{"name":"Kemener","terms":"kemener"},"craft/electrician":{"name":"Tredaner","terms":"tredaner,tredanerez"},"craft/gardener":{"name":"Liorzhour","terms":"liorzhour,liorzher,jardiner,liorzhourez,liorzherez,jardinerez,jardriner,jardrinerez"},"craft/glaziery":{"name":"Gweraer","terms":"gwer,gweraer,gweraerez"},"craft/handicraft":{"name":"Atalier artizanelezh","terms":"labourva,artizanelezh,artizanerezh,artizanalezh,artizanel,dornvicherourezh,dornvicherelezh,dornvichererezh,ti-labour,atalier,stal-labour,stal,dornvicherel"},"craft/hvac":{"name":"Paotr/plac'h an tommerezh","terms":"paotr/plac'h an tommerezh,paotr an tommerezh"},"craft/joiner":{"name":"Kalvez","terms":"kalvez,kilvizien,prenestrer,munuzer,kilvizerezh,munuzerezh,amunuzerezh,junter"},"craft/key_cutter":{"name":"Alc'hwezer","terms":"alc'hwezer"},"craft/locksmith":{"name":"Alc'hwezerezh"},"craft/metal_construction":{"name":"Direr","terms":"direr"},"craft/painter":{"name":"Livour","terms":"liver,livour,livouriezh,liverez,livourez"},"craft/photographer":{"name":"Luc'hskeudenner","terms":"luc'hskeudenner,fotograf,fotografer,tenner,tennour,tenner-poltridi,tenner-poltredoù,tennour-poltridi,tennour-poltredoù"},"craft/photographic_laboratory":{"name":"Labourva luc'hskeudennerezh","terms":"labourva,luc'hskeudennerezh,labourva luc'hskeudennerezh,fotografiezh,arnodva"},"craft/plasterer":{"name":"Plastrer","terms":"plastr,plastrañ,plastrer,plastrerez,mañsoner,mañsonerez"},"craft/plumber":{"name":"Plomer","terms":"plomer"},"craft/pottery":{"name":"Poder","terms":"poder,poderezh"},"craft/rigger":{"name":"Strammour","terms":"strammour"},"craft/roofer":{"name":"Toer","terms":"toer"},"craft/saddler":{"name":"Dibrer","terms":"dibr,dibrerez,dibrer,dibrerezh"},"craft/sailmaker":{"name":"Gouelier","terms":"gouelier"},"craft/sawmill":{"name":"Heskennerezh","terms":"heskennerezh,heskenner,mestr un heskennerezh"},"craft/scaffolder":{"name":"Saver chafodajoù","terms":"saver chafodajoù,chafod,chafoder,chafodoù"},"craft/sculptor":{"name":"Kizeller","terms":"kizeller,kizellour,skulter,skultour,maengizeller"},"craft/shoemaker":{"name":"Botaouer","terms":"botaouer,kereon,kere,kereour"},"craft/signmaker":{"name":"Paneller","terms":"paneller,panellour,farder,oberour,panelloù"},"craft/stonemason":{"name":"Bener-maen","terms":"bener-maen,bener"},"craft/tailor":{"name":"Kemener"},"craft/tiler":{"name":"Karreller","terms":"kemener,kemenerez,kemenerezh"},"craft/tinsmith":{"name":"Staener","terms":"staener"},"craft/upholsterer":{"name":"Tapiser","terms":"tapiser,pallennoù,pallenn"},"craft/watchmaker":{"name":"Horolajer","terms":"horolajer,eurier,eurierezh,horolajerezh"},"craft/window_construction":{"name":"Prenestrer","terms":"prenestr,krouer,farder,saver,krouiñ,aozañ,sevel,stal,kalvez,kilvizerezh,munuzer,munuzerezh"},"craft/winery":{"name":"Kav-gwin","terms":"kav-gwin,keller,selier,kav,gwin,chistr,sistr"},"demolished/building":{"name":"Savadur nevez-distrujet"},"disc_golf/basket":{"name":"Paner pladenn-c'holf","terms":"paner pladenn-c'holf,pladenn-c'holf,paner,baskodenn"},"disc_golf/hole":{"name":"Toull pladenn-c'holf","terms":"toull,toull golf,golf,pladenn-c'holf"},"disused/amenity":{"name":"Aveadur dilezet"},"disused/railway":{"name":"Elfenn hent-houarn dilezet"},"disused/shop":{"name":"Stal dilezet"},"education":{"name":"Savadur deskadurezh","terms":"skol,deskadurezh,diazezadur,savadur,deskiñ"},"education/college":{"name":"Tachenn skol deskadurezh uhel","terms":"skol deskadurezh uhel,skol-veur,deskadurezh uhel,tachenn,takad"},"education/dancing_school":{"name":"Skol-dañs","terms":"skol,dañs,arzoù,skol-dañs,koroll"},"education/driving_school":{"name":"Skol-vleinañ","terms":"skol,bleinañ,skol vleinañ"},"education/kindergarten":{"name":"Tachenn skol-vamm","terms":"skol,skol kentañ derez,kentañ derez,skol-vamm,skol vamm,tachenn,takad"},"education/language_school":{"name":"Skol yezhoù","terms":"yezh,yezhoù,langaj,skol,skol-veur,lise,skolaj"},"education/music_school":{"name":"Skol sonerezh","terms":"skol,muzik,sonerezh"},"education/school":{"name":"Tachenn skol","terms":"tachenn,skol,takad,skolaj,lise"},"education/university":{"name":"Tachenn skol-veur","terms":"takad,tachenn,skol-veur"},"embankment":{"name":"Savenn-douar"},"emergency/assembly_point":{"name":"Lec'h emzastum difrae","terms":"lec'h emzastum difrae"},"emergency/defibrillator":{"name":"Difibrilator","terms":"difibrilator"},"emergency/fire_extinguisher":{"name":"Mouger-tan","terms":"mouger-tan"},"emergency/fire_hose":{"name":"Korzenn eneptan","terms":"stal oaledoù,oaled,siminal"},"emergency/fire_hydrant":{"name":"Genoù tan-gwall","terms":"genoù tan-gwall"},"emergency/fire_hydrant/underground":{"name":"Genoù tan-gwall dindandouar","terms":"genoù tan-gwall dindandouar"},"emergency/fire_service_inlet":{"name":"Kolonenn sec'h","terms":"kolonenn sec'h"},"emergency/first_aid_kit":{"name":"Trousenn prederioù kentañ","terms":"prederioù kentañ,sikourioù kentañ,trousenn brederiañ,kit,sac'hig-yec'hed,sac'h-yec'hed"},"emergency/life_ring":{"name":"Boue saveteiñ","terms":"boue,saveteiñ"},"emergency/lifeguard":{"name":"Mestr-neuñvier","terms":"mestr-neuñv,mestr-neuñvier,saveteer"},"emergency/phone":{"name":"Pellgomz difrae"},"emergency/siren":{"name":"C'hwitellerez"},"entrance":{"name":"Mont-tre / mont-maez"},"entrance/emergency":{"name":"Ermaez difrae","terms":"ermaez,er-maez,difrae,dor derc'hel"},"entrance/main":{"name":"Moned pennañ"},"ford":{"name":"Roudouz","terms":"roudouz,roudour"},"ford_line":{"name":"Roudouz"},"golf/bunker":{"name":"Foz (golf)","terms":"traezh,golf,foz,trap,griped"},"golf/cartpath":{"name":"Hent karrigelloù-golf","terms":"karrigell,karrigenn,karr,kirri,hent,gwenodenn,roud,roudenn,karr golf,karr-golf,kirri golf,kirri-golf"},"golf/clubhouse":{"name":"Ti-klub golf","terms":"club house,club-house,clubhouse,ti-klub,ti-kleub,ti ar c'hlub,ti ar c'hleub,oaled,golf,ti-golf,ti klub golf,bod,klub golf"},"golf/fairway":{"name":"Fairway","terms":"fairway,kanol,golf"},"golf/green":{"name":"Glazenn bleustriñ","terms":"glazenn bleustriñ,green"},"golf/hole":{"name":"Toull","terms":"toull,toull golf,golf"},"golf/path":{"name":"Gwenodenn tachenn golf","terms":"gwenodenn golf,gwenodenn,hent,golf"},"golf/tee":{"name":"Torgenn deroù","terms":"torgenn deroù,deroù"},"healthcare":{"name":"Pennospital","terms":"pennospital,ospital,yec'hed,mezekniezh,medisinerezh"},"healthcare/alternative":{"name":"Mezegiezh dazeilat","terms":"mezegiezh dazeilat,mezekniezh,medisinerezh,alternativel,dazeilat,all,yec'hed"},"healthcare/alternative/acupuncture":{"name":"Akupoentour","terms":"nadozwanerezh,nadozwaner,akupoentour,nadozwanerez,akupoentourez"},"healthcare/alternative/chiropractic":{"name":"Kiropraktour","terms":"kiropraktour,kiropraktor,kiropraktourez,aozour,aozer,aozourez,aozerez,kiropraksiezh,kiropraktiezh"},"healthcare/alternative/homeopathy":{"name":"Homeopat","terms":"homeopatiezh,homeopat"},"healthcare/alternative/naturopathy":{"name":"Naturopat","terms":"naturopat,naturopatiezh"},"healthcare/alternative/osteopathy":{"name":"Osteopat","terms":"osteopat,osteopatiezh,doktor,mezeg,milchin,medisin,askornour"},"healthcare/audiologist":{"name":"Klevedour","terms":"klevedour,aodiologour"},"healthcare/birthing_center":{"name":"Gwiliouderezh","terms":"gwiliouderezh,ti-gwilioudiñ,mammdi"},"healthcare/blood_donation":{"name":"Kreizenn reiñ gwad","terms":"kreizenn reiñ gwad,reiñ gwad,a-youl vat,gwad"},"healthcare/dentist/orthodontics":{"name":"Kabined ortodontiezh","terms":"kabined ortodontiezh,ortodontiezh,denteeunañ,denteeunerezh,ortodontek"},"healthcare/hospice":{"name":"Ospis","terms":"ospis,ospiti,herberc'hdi,ospital"},"healthcare/laboratory":{"name":"Arnodva dielfennadurioù mezegel","terms":"arnodva dielfennadurioù mezegel,dielfennañ,analizañ,imbourc'hva,mezegel,mezekniezh,medisinerezh,mezegiezh,ti-arnodiñ,labourva"},"healthcare/midwife":{"name":"Amiegez","terms":"amiegez,amieg,matronez,babig,gwilioud"},"healthcare/occupational_therapist":{"name":"Ergoterapeutour","terms":"ergoterapeutour,ergoterapeut,ergoterapour"},"healthcare/optometrist":{"name":"Optometrour","terms":"optometrour,lunedour,lagadour,optometriezh,optometrourez,lunedourez,lagadourez"},"healthcare/physiotherapist":{"name":"Fizikyac'haour","terms":"fizikyac'haour,kineziterapeut,kineziterapour,kine"},"healthcare/podiatrist":{"name":"Podologour","terms":"podologour,ficher-treid,podologiezh"},"healthcare/psychotherapist":{"name":"Bredyac'haour","terms":"bredvezeg,bredyac'haour,psikoterapour"},"healthcare/speech_therapist":{"name":"Mezeg-al-lavar","terms":"ortofonist,mezeg-al-lavar,ortofoniezh,ortofonour,ortofonourez,ortofonistez,mezegez-al-lavar,milchin-al-lavar,medisin-al-lavar,doktor-al-lavar,milchinez-al-lavar,medisinez-al-lavar,doktorez-al-lavar"},"healthcare/yes":{"name":"Pennospital (n'eo ket spisaet)"},"highway":{"name":"Elfenn ur gourhent"},"highway/bridleway":{"name":"Gwenodenn varc'hegezh","terms":"gwenodenn varc'hegezh,marc'hegezh,hent,mirc'hi,marc'h"},"highway/bus_stop":{"name":"Arsav Bus"},"highway/busway":{"name":"Forzh bus","terms":"treuzdougen,treuzdougen foran,bus,karr-boutin,busway,forzh,hent"},"highway/construction":{"name":"Hent war ober","terms":"o sevel,sevel,savidigezh,labourioù,labour,konstruidigezh,ober,obererezh,war ober,oc'h ober,o vezañ savet,o vezañ krouet,hent,gourhent,hent-tizh,straed,ru,banell,alez,bali,boulouard"},"highway/corridor":{"name":"Trepas diabarzh","terms":"trepas diabarzh"},"highway/crossing":{"name":"Treuzenn gerzhourien","terms":"treuzenn,kerzhourien,kerzhet,kerzherien,gerzhourien,gerzhet,gerzherien"},"highway/crossing/informal":{"name":"Treuzenn nann-ofisiel"},"highway/crossing/traffic_signals":{"name":"Treuzenn gerzhourien gant gouleier heñchañ","terms":"treuzenn,kerzhourien,kerzhet,kerzherien,gerzhourien,gerzhet,gerzherien,gouloù,triliv,panellerezh,gouleier,heñchañ"},"highway/crossing/uncontrolled":{"name":"Treuzenn livet","terms":"treuzenn,merket,livet,treuzenn gerzhourien"},"highway/crossing/unmarked":{"name":"Treuzenn ha n'eo ket livet","terms":"treuzenn n'eo ket livet,treuzenn,merket,livet,treuzenn gerzhourien,n'eo ket livet,diliv,nann-livet,nann merket,n'eo ket merket"},"highway/cycleway":{"name":"Hent marc'hoù-houarn","terms":"belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,hent,hentad,forzh,gwenodenn"},"highway/cycleway/bicycle_foot":{"name":"Gwenodenn-vale ha marc'h-houarn","terms":"war-droad,war varc'h-houarn,marc'h-houarn,gwenodenn-vale,hent bale"},"highway/cycleway/crossing":{"name":"Treuzenn marc'hoù-houarn"},"highway/cycleway/crossing/bicycle_foot":{"name":"Treuzenn evit kerzhourien ha beloioù","terms":"treuzenn evit kerzhourien ha beloioù,treuzenn,treuzenn gerzhourien,gerzhourien,kerzhourien,marc'hoù-houarn,marc'h-houarn,varc'hoù-houarn,varc'h-houarn,belo,velo,beloioù,veloioù"},"highway/cycleway/crossing/traffic_signals":{"name":"Treuzenn marc'hoù-houarn gant gouleier heñchañ","terms":"treuzenn marc'hoù-houarn gant gouleier heñchañ,treuzenn,marc'h-houarn,marc'hoù-houarn,gouloù,gouleier,triliv,heñchañ,panellerezh,belo,velo,beloioù,varc'h-houarn,varc'hoù-houarn"},"highway/cycleway/crossing/uncontrolled":{"name":"Treuzenn marc'h-houarn livet","terms":"treuzenn livet,treuzenn,merket,livet,marc'hoù-houarn,marc'h-houarn,varc'hoù-houarn,varc'h-houarn,belo,velo,beloioù,veloioù"},"highway/cycleway/crossing/unmarked":{"name":"Treuzenn marc'h-houarn n'eo ket livet","terms":"treuzenn marc'h-houarn n'eo ket livet"},"highway/elevator":{"name":"Pignerez","terms":"pignerez,saverez"},"highway/footway":{"name":"Gwenodenn-vale","terms":"hent,gwenodenn,pourmenadenn,kerzhet,kerzhourien,bale,hent-bale"},"highway/footway/access_aisle":{"name":"Gwenodenn-vale ur parklec'h","terms":"gwenodenn-vale ur parklec'h,gwenodenn-vale,parklec'h,parkañ,gwenodenn,hent-bale,hent kerzhet,kerzhet,kerzhourien"},"highway/footway/conveying":{"name":"Tapis-ruilh","terms":"tapis-ruilh"},"highway/footway/crossing":{"name":"Treuzenn gerzhourien","terms":"treuzenn,treuzenn gerzhourien,kerzhourien,tud war droad"},"highway/footway/crossing/traffic_signals":{"name":"Treuzenn gerzhourien gant gouleier heñchañ","terms":"treuzenn,kerzhourien,kerzhet,kerzherien,gerzhourien,gerzhet,gerzherien,gouloù,triliv,panellerezh,gouleier,heñchañ"},"highway/footway/crossing/uncontrolled":{"name":"Treuzenn gerzherien livet","terms":"merket,livet,treuzenn,kerzhourien"},"highway/footway/crossing/unmarked":{"name":"Treuzenn n'eo ket livet","terms":"treuzenn n'eo ket livet,treuzenn,merket,livet,treuzenn gerzhourien,n'eo ket livet,diliv,nann-livet,nann merket,n'eo ket merket"},"highway/footway/informal":{"name":"Gwenodenn gerzhet anfurmel"},"highway/footway/sidewalk":{"name":"Riblenn-straed","terms":"trotouer,riblenn-straed"},"highway/footway/traffic_island":{"name":"Enezenn bod","terms":"enez bod"},"highway/give_way":{"name":"Panell \"lezit da dremen\"","terms":"lezit da dremen,panell"},"highway/ladder":{"name":"Skeul"},"highway/living_street":{"name":"Straed vev","terms":"straed,bev,annez"},"highway/milestone":{"name":"Maen-bonn","terms":"bonn,bonn kilometrek"},"highway/mini_roundabout":{"name":"Kroashent-tro bihan","terms":"kroashent-tro bihan,kroashent-troig"},"highway/motorway":{"name":"Gourhent","terms":"hent,hent-tizh,gourhent"},"highway/motorway_junction":{"name":"Hent-maez / Eskemmer","terms":"ermaez,er-maez,bretell,hent-maez,eskemmer,kroashent,gourhent,hent-tizh,hent"},"highway/motorway_link":{"name":"Bretell gourhent","terms":"bretell,mont tre,mont maez,mont e-maez,mont-tre,mont-maez,mont-e-maez,hent,gourhent,hent-tizh"},"highway/path":{"name":"Gwenodenn","terms":"gwenodenn,hent"},"highway/path/boardwalk":{"name":"Treuzell","terms":"kavagell,klouedenn-goad,klouedenn,pontenn"},"highway/path/crossing":{"name":"Treuzenn evit kerzhourien ha beloioù"},"highway/path/informal":{"name":"Gwenodenn anfurmel","terms":"gwenodenn,hent,anfurmel,dispis,amspis,primaozet,diardoù,straed"},"highway/pedestrian_area":{"name":"Takad kerzhet","terms":"kerzhet,kerzhourien,kerzherien,takad,tachenn,gerzhet,gerzhourien,gerzherien,straed"},"highway/pedestrian_line":{"name":"Straed kerzhet","terms":"kerzhet,kerzhourien,kerzherien,hent,gwenodenn,gerzhet,gerzhourien,gerzherien,straed"},"highway/primary":{"name":"Hent pennañ","terms":"hent pennañ,brasañ"},"highway/primary_link":{"name":"Bretell hent pennañ","terms":"hent pennañ,bretell,mont tre,mont maez,mont e-maez,mont-tre,mont-maez,mont-e-maez,hent,pennañ,hent-tizh,gourhent"},"highway/raceway/karting":{"name":"Troiad karting","terms":"tro,troiad,leurenn,karting,hentad,kelc'hiad,roudad"},"highway/raceway/motocross":{"name":"Roudenn moto-cross","terms":"hent,roudenn,motocross,moto-cross,tro,troiad,hentad,kelc'hiad,roudad"},"highway/residential":{"name":"Hent annez","terms":"hent,straed,annez"},"highway/rest_area":{"name":"Leur-diskuizh","terms":"leur-diskuizh,takad,tachad,tachenn,porzh-servij,porzh,diskuizh"},"highway/road":{"name":"Hent dianav","terms":"hent,straed,hentad,dianav"},"highway/road/bridge":{"name":"Pont bleinet dianav","terms":"pont bleinet dianav,bleinet,hent,pont,karrbont,dianav"},"highway/secondary":{"name":"Hent eilrenk","terms":"eilrenk,hent,straed,hentad,eil renk"},"highway/secondary_link":{"name":"Bretell hent a eil renk","terms":"hent a eil renk,bretell,mont tre,mont maez,mont e-maez,mont-tre,mont-maez,mont-e-maez,hent,eil renk,eilrenk,hent eilrenk"},"highway/service":{"name":"Hent moned","terms":"hent,servij,straed,hentad"},"highway/service/alley":{"name":"Alez","terms":"alez"},"highway/service/drive-through":{"name":"Servij \"drive\"","terms":"drive-through,drive,servij drive,servij \"drive\",blein-ha-boued"},"highway/service/driveway":{"name":"Alez","terms":"alez,parkañ,parklec'h,karrdi,hent"},"highway/service/emergency_access":{"name":"Moned trummadoù","terms":"moned,mont e-barzh,mont tre,mont-tre,hent,trumm,trummadoù,mallus,a zifrae,difrae"},"highway/service/parking_aisle":{"name":"Alez parkañ","terms":"parkañ,karr,kirri,karr-tan,marc'h-tan,c'hwil-tan,alez,hent,parklec'h,plas,plas-parkañ"},"highway/service_area":{"name":"Leur-servij teret"},"highway/services":{"name":"Takad servij","terms":"tachenn,takad,tachad,servij"},"highway/speed_camera":{"name":"Radar","terms":"radar,bevenn-tizh"},"highway/steps":{"name":"Diri","terms":"diri,skalier"},"highway/steps/conveying":{"name":"Diri-ruilh","terms":"diri-ruilh,eskalator"},"highway/stop":{"name":"Panell stop","terms":"arsav,stop,panell"},"highway/street_lamp":{"name":"Post-lamp","terms":"gouloù,goulaouenn,post,lamp,straed"},"highway/tertiary":{"name":"Hent trederenk","terms":"trederenk,hent,straed,hentad,trede renk"},"highway/tertiary_link":{"name":"Bretell hent a drede renk","terms":"hent a drede renk,bretell,mont tre,mont maez,mont e-maez,mont-tre,mont-maez,mont-e-maez,hent,trede renk,trederenk,hent trederenk"},"highway/track":{"name":"Hent-roud labour-douar / koad","terms":"hent-roud labour-douar / koad,hent,labour-douar,labour-douarel,koad,koadeg,maez,war ar maez,roudenn"},"highway/traffic_mirror":{"name":"Melezour-hent","terms":"melezour,melezour surentez,melezour hent,hent,surentez"},"highway/traffic_signals":{"name":"Gouleier triliv","terms":"gouleier triliv"},"highway/trailhead":{"name":"Penn ur wenodenn","terms":"penn,gwenodenn"},"highway/trunk_link":{"name":"Bretell hent-tizh","terms":"hent-tizh,bretell,mont tre,mont maez,mont e-maez,mont-tre,mont-maez,mont-e-maez,hent"},"highway/turning_circle":{"name":"Takad distreiñ","terms":"takad distreiñ,kelc'h distreiñ,kroashent-tro,kroashent-tro bihan"},"highway/unclassified":{"name":"Hent eilrenk/direnk"},"historic":{"name":"Lec'h Istorel","terms":"lec'h,lec'hienn,istorel"},"historic/archaeological_site":{"name":"Lec'hienn arkeologel","terms":"lec'h,lec'hienn,arkeologel,henoniel"},"historic/boundary_stone":{"name":"Bonn harz","terms":"bonn,maen,harzoù,harzel,harz"},"historic/building":{"name":"Savadur istorel","terms":"savadur,ti,istorel"},"historic/cannon":{"name":"Kanol","terms":"kanol,kanon"},"historic/castle":{"name":"Kastell","terms":"kêr,kreñvlec'h,fort,kastell"},"historic/castle/fortress":{"name":"Kreñvlec'h istorel","terms":"fort,kreñvlec'h,kastell,istorel"},"historic/castle/palace":{"name":"Palez","terms":"palez"},"historic/castle/stately":{"name":"Kastell","terms":"kastell"},"historic/city_gate":{"name":"Dor kêr","terms":"dor kêr,dor ar gêr"},"historic/fort":{"name":"Fort istorel","terms":"fort,kreñvlec'h,kastell,istorel"},"historic/manor":{"name":"Maner","terms":"maner,ti,domani,kastell,palez,tudjentil"},"historic/memorial":{"name":"Kounlec'h","terms":"koun,kounlec'h,maen-koun"},"historic/memorial/plaque":{"name":"Plakenn-goun","terms":"koun,plakenn,plakenn goun,meuliñ,lidañ"},"historic/memorial/stolperstein-EU":{"name":"Plakenn-goun Stolpersteine","terms":"plakenn-goun stolpersteine,stolpersteine,plakenn-eñvor,plakenn-vemor,plakenn,koun"},"historic/monument":{"name":"Monumant","terms":"monumant"},"historic/pillory":{"name":"Post-ar-vezh istorel","terms":"pilori,post-ar-vezh,post-torfedourien,post-an-dalc'h"},"historic/ruins":{"name":"Dismantroù","terms":"dismantroù"},"historic/tomb":{"name":"Bez","terms":"bez,maen-koun"},"historic/wayside_cross":{"name":"Kalvar","terms":"kroaz,kalvar"},"historic/wayside_shrine":{"name":"Orator","terms":"orator,ti-pediñ"},"historic/wreck":{"name":"Peñse","terms":"peñse"},"indoor":{"name":"Elfenn diabarzh"},"indoor/area":{"name":"Takad diabarzh","terms":"takad,diabarzh,a-ziabarzh"},"indoor/corridor":{"name":"Trepas diabarzh","terms":"trepas diabarzh,banell"},"indoor/corridor_line":{"name":"Trepas diabarzh"},"indoor/door":{"name":"Dor diabarzh","terms":"dor,diabarzh,a-ziabarzh"},"indoor/room":{"name":"Kambr","terms":"kambr"},"indoor/stairs":{"name":"Skalieroù diabarzh"},"indoor/wall":{"name":"Mur diabarzh","terms":"mur,moger,diabarzh,a-ziabarzh"},"internet_access/wlan":{"name":"Poent moned Wi-Fi","terms":"poent-moned,poent moned,wifi,wi-fi,bonn,wlan,wi fi,takad"},"landuse":{"name":"Elfenn implij an douar"},"landuse/allotments":{"name":"Liorzhoù tiegezhel","terms":"liorzh tiegezh,liorzhoù tiegezhel,familh,jardin,jardinoù,tiegezh,menaj,atant,feurm,jardrin"},"landuse/aquaculture":{"name":"Dourc'hounezerezh","terms":"dourc'hounidigezh,dourc'hounezerezh,pesketaerezh"},"landuse/basin":{"name":"Oglenn"},"landuse/brownfield":{"name":"Tachenn fraost"},"landuse/cemetery":{"name":"Bered","terms":"bered,bez,ankou,anaon,marv,mervel,kelan,douarañ,douaridigzh,kañv,ti-kañv,bolz-kañv"},"landuse/churchyard":{"name":"Tachenn an iliz"},"landuse/commercial":{"name":"Takad koñvers","terms":"koñvers,kenwerzh,takad,tachenn,tachad"},"landuse/construction":{"name":"Takad sevel","terms":"sevel,takad,savidigezh,labourioù,labour,savadenn,savadur,tisaverezh,saver,tisaver,batis,ti,kendi,ranndi,konstruidigezh,savadurezh,tiadur,ober,obererezh"},"landuse/education":{"name":"Takad deskadurezh","terms":"takad,kampus,skol,skolaj,lise,skol-veur,deskadurezh,deskiñ,kelenn"},"landuse/farm":{"name":"Takad labour-douar"},"landuse/farmland":{"name":"Takad labour-douar","terms":"takad,feurm,tiegezh,ti,ti-feurm,atant,labour-douar,gounezerezh"},"landuse/farmyard":{"name":"Takad ti-feurm","terms":"takad,feurm,tiegezh,ti,ti-feurm,atant,labour-douar"},"landuse/flowerbed":{"name":"Bleuñveg","terms":"bleuñveg,bleunioù,bleuñv,bleunienn,flour,leur,leurenn"},"landuse/forest":{"name":"Koad meret","terms":"koataerezh,koad,koadeg,koataer,koadoù,mererezh,merañ,meret,korvoiñ,korvoet,korvoerezh"},"landuse/grass":{"name":"Leton","terms":"leton,geot"},"landuse/greenhouse_horticulture":{"name":"Labour-douar dindan tiez-gwer","terms":"labour-douar,ti-gwer,tiez-gwer,liorzhouriezh"},"landuse/harbour":{"name":"Havr","terms":"porzh,havr,bag"},"landuse/industrial":{"name":"Takad greantel","terms":"greantel,takad,tachenn,tachad,greant,industriel,uzinoù"},"landuse/industrial/scrap_yard":{"name":"Drailhadeg kirri","terms":"karr,kirri,drailhañ,drailhadeg,dismantrañ,distrujañ,feuzañ,bered kirri"},"landuse/industrial/slaughterhouse":{"name":"Lazhti","terms":"lazhti,abatouer,lazhdi,boserezh"},"landuse/landfill":{"name":"Diskarg","terms":"diskarg,lastez,lastezerezh"},"landuse/meadow":{"name":"Pradenn"},"landuse/meadow_orchard/meadow":{"name":"Pradenn gant gwez-frouezh","terms":"pradenn gant gwez-frouezh,pradenn,foenneg,geoteg,peurvan,gwez,frouezh-gwezeg"},"landuse/military":{"name":"Takad Milourel","terms":"arme,lu,milourel,soudardel,brezelel,bonn,takad"},"landuse/military/airfield":{"name":"Nijva milourel","terms":"aerborzh,nijva,arme,milourel,lu,bon aervorel,tachenn-nij,soudard,milour,brezel,armeadel,brezelel,koñje,aerlu,morlu,tirlu"},"landuse/military/barracks":{"name":"Kazarn","terms":"kazarn,kazarnioù"},"landuse/military/base":{"name":"Bon milour","terms":"arme,lu,milourel,soudardel,brezelel,bonn,takad"},"landuse/military/base/navy":{"name":"Bon mor","terms":"arme,lu,milourel,soudardel,brezelel,bonn,takad,morlu,morel,mor"},"landuse/military/danger_area":{"name":"Takad dañjer milourel","terms":"takad dañjer milourel,arme,lu"},"landuse/military/obstacle_course":{"name":"Hentad soudard","terms":"hentad soudard,skoilhoù,arme,lu"},"landuse/military/range":{"name":"Stand tennañ milourel","terms":"stand tennañ milourel,arme,lu"},"landuse/military/training_area":{"name":"Takad pleustriñ milourel","terms":"pleustradeg,pleustriñ,milourel,lu,arme,soudardel,brezelel,takad pleustriñ"},"landuse/orchard":{"name":"Gwerje","terms":"berje,gwerje,gwerjez"},"landuse/plant_nursery":{"name":"Spluseg","terms":"spluseg,magerezh,plant"},"landuse/pond":{"name":"Poull"},"landuse/quarry":{"name":"Mengleuz","terms":"min,mengleuz"},"landuse/recreation_ground":{"name":"Tachenn-c'hoari","terms":"tachenn-c'hoari,tachenn c'hoari,c'hoari,leur,leur-c'hoari,leurenn-c'hoari,leurenn,takad c'hoari"},"landuse/religious":{"name":"Takad relijiel","terms":"relijiel,relijion,sakr,takad relijiel,takad"},"landuse/reservoir":{"name":"Mirlec'h"},"landuse/residential":{"name":"Takad annez","terms":"takad,tiez,annez"},"landuse/residential/apartments":{"name":"Ranndioù","terms":"ranndioù"},"landuse/retail":{"name":"Takad koñvers","terms":"kenwerzh,koñvers"},"landuse/salt_pond":{"name":"Palud","terms":"palud,holen,paludoù,paludoù-holen,palud-holen"},"landuse/vineyard":{"name":"Gwinieg","terms":"gwinieg,gwiniegi,gwin"},"landuse/winter_sports":{"name":"Takad sportoù goañv","terms":"tachenn,tachad,takad,sport goañv,sportoù goañv"},"leisure":{"name":"Elfenn dudi"},"leisure/beach_resort":{"name":"Kouronklec'h","terms":"kouronkañ,kouronklec'h,lec'h kouronkañ,hañvlec'h,kêr kouronkañ,touristel,touristerezh,touristañ,touristiñ,traezhenn,traezh,aod,hañv,vakañsoù"},"leisure/bleachers":{"name":"Derezioù","terms":"derezioù,arvesterien,stad"},"leisure/bowling_alley":{"name":"Bowling","terms":"bowling"},"leisure/common":{"name":"Tachenn foran"},"leisure/dance":{"name":"Sal dañs","terms":"sal,dañs,dañsal"},"leisure/dog_park":{"name":"Park chas","terms":"liorzh,park,ki,chas"},"leisure/escape_game":{"name":"Escape room (c'hoari achap)","terms":"escape room,c'hoari achap,escape-room"},"leisure/fishing":{"name":"Lec'h pesketa","terms":"aod,pesk,pesketa,stêr,mor,boued mor,lec'h pesk"},"leisure/fitness_centre":{"name":"Sal-sport","terms":"sal-sport,sport,sportoù,jiminas,pleustriñ,kigenn,kigennañ,kigennerezh"},"leisure/fitness_centre/yoga":{"name":"Sal yoga","terms":"yoga,sal"},"leisure/fitness_station/parallel_bars":{"name":"Divvarrenn genstur"},"leisure/garden":{"name":"Liorzh","terms":"liorzh,jardin,atil,park,jardrin"},"leisure/garden/botanical":{"name":"Liorzh-plant","terms":"liorzh-plant,liorzh louzawouriezh,jardin,plant,louzoù,plantoù,louzaouennoù,jardin-plant,jardrin"},"leisure/garden/kitchen":{"name":"Liorzh legumaj","terms":"liorzh legumaj,legumaj,jardin,jardin-legumaj,atil,liorzh-legumaj,jardrin"},"leisure/golf_course":{"name":"Tachenn golf","terms":"golf,tachenn,tachenn c'holf,tachenn golf"},"leisure/horse_riding":{"name":"Kreizenn varc'hegezh","terms":"kreizenn varc'hegezh,marc'h,kezeg,kazeg,marc'hegezh,marchosi,kraou,kraou-kezeg"},"leisure/hot_tub":{"name":"Jakouzi","terms":"jacuzzi,jakouzi,kibell,kibell domm,kibellañ,poull,poull-neuial,tomm"},"leisure/ice_rink":{"name":"Poull-ruzikat","terms":"poull-riklañ,poull-ruzikal,poull-ruzikat"},"leisure/marina":{"name":"Porzh-bageal","terms":"marina,porzh,porzh-bageal,bag,bigi,bag-dre-lien,lien,martolod,mor"},"leisure/miniature_golf":{"name":"Minigolf","terms":"minigolf,golf,mini-golf,mini golf"},"leisure/nature_reserve":{"name":"Gwarezva natur","terms":"gwarezva,mirva,natur"},"leisure/park":{"name":"Park","terms":"park,liorzh,jardin,koad,plant,glasvez"},"leisure/picnic_table":{"name":"Taol biknik","terms":"piknik,piknikañ,taol"},"leisure/picnic_table/chess":{"name":"Taol wezboell","terms":"taol wezboell,tablez echedoù,gwezboell,taol,tablez,echedoù"},"leisure/pitch":{"name":"Tachenn sport","terms":"tachenn,sport,dudi"},"leisure/pitch/american_football":{"name":"Tachenn vell-droad amerikan","terms":"sport,tachenn,tachenn sport,foot,football,amerika,amerikan,mell-droad,mell-droad amerikan,sport amerikan,vell-droad,velldroad,melldroad"},"leisure/pitch/american_handball":{"name":"Tachenn handball amerikan","terms":"tachenn handball amerikan,handball amerikan"},"leisure/pitch/archery":{"name":"Tachenn gwaregañ","terms":"gwaregañ,kreizenn,tachad,takad,tachenn"},"leisure/pitch/athletics":{"name":"Tachenn atleterezh"},"leisure/pitch/athletics/discus_throw":{"name":"Tachenn bannañ ar bladenn","terms":"bannañ ar bladenn,bannañ pladenn,tachenn,tachad,takad,leur,leurenn"},"leisure/pitch/athletics/hammer_throw":{"name":"Tachenn bannañ horzh","terms":"morzhol,teurel,bannañ,horzh,tachenn,takad"},"leisure/pitch/athletics/high_jump":{"name":"Tachenn lammat a-serzh","terms":"lammat a-serzh,tachenn,tachad,takad,leur"},"leisure/pitch/athletics/javelin_throw":{"name":"Tachenn bannañ goaf","terms":"takad,bannañ,teurel,goaf,bannañ goaf,tachenn"},"leisure/pitch/athletics/long_jump":{"name":"Tachenn lammat a-hed","terms":"tachenn,tachad,takad,leurenn,leur,lamm a-hed,lammat a-hed"},"leisure/pitch/athletics/pole_vault":{"name":"Tachenn lammat gant ar berchenn","terms":"lammat gant ar berchenn,tachenn,tachad,takad,leurenn,leur"},"leisure/pitch/athletics/shot_put":{"name":"Tachenn bannañ ar pouez","terms":"tachenn,tachad,takad,leurenn,leur,bannañ ar pouez,teurel,pouez,pouezioù"},"leisure/pitch/athletics/triple_jump":{"name":"Tachenn trilamm","terms":"tachenn,tachad,takad,leurenn,leur,trilamm,tri-lamm"},"leisure/pitch/australian_football":{"name":"Tachenn vell-droad aostralian","terms":"sport,tachenn,tachenn sport,foot,football,aostralia,aostralian,mell-droad,mell-droad aostralian,sport aostralian,aostraliat,velldroad,melldroad,vell-droad"},"leisure/pitch/badminton":{"name":"Tachenn badminton","terms":"tachenn,leurenn,leur,badminton"},"leisure/pitch/baseball":{"name":"Tachenn baseball","terms":"tachenn,tachenn baseball,baseball,base-ball"},"leisure/pitch/basketball":{"name":"Tachenn vasket","terms":"tachenn,basket,tachenn-vasket,tachenn vasket"},"leisure/pitch/beachvolleyball":{"name":"Tachenn beach-volley","terms":"traezhenn,volley-ball,volley,volleyball,traezh,beach-volley,tachenn,sport,sportoù"},"leisure/pitch/chess":{"name":"Tablez echedoù ramzel","terms":"taol wezboell,tablez echedoù,gwezboell,taol,tablez,echedoù,ramzel"},"leisure/pitch/cricket":{"name":"Tachenn griked","terms":"kriked,sport,tachenn,tachenn griked"},"leisure/pitch/equestrian":{"name":"Aren marc'hegezh/rodeo","terms":"aren,stad,marc'hañ,marc'hegezh,rodeo"},"leisure/pitch/field_hockey":{"name":"Tachenn hockey war leton","terms":"leton,geot,war c'heot,hoke,hockey,tachenn sport,tachenn,sport,dudi,hockeyer,hokeier,skipailh"},"leisure/pitch/futsal":{"name":"Tachenn futsal","terms":"sport,sportoù,dudi,futsal,tachenn"},"leisure/pitch/netball":{"name":"Tachenn netball","terms":"sport,sportoù,dudi,netball,net-ball,tachenn"},"leisure/pitch/paintball":{"name":"Tachenn paintball"},"leisure/pitch/shooting":{"name":"Stand tennañ"},"leisure/pitch/skateboard":{"name":"Skatepark"},"leisure/pitch/soccer":{"name":"Tachenn vell-droad","terms":"mell-droad,sport,tachenn,tachenn vell-droad,foot,football,velldroad,melldroad"},"leisure/pitch/softball":{"name":"Tachenn softball","terms":"sport,tachenn,tachenn softball,softball"},"leisure/pitch/table_soccer":{"name":"Taol mell-droad taol","terms":"taol mell-droad taol,mell-droad,taol,foot,football,babyfoot,baby-foot,babig,vabig"},"leisure/pitch/table_tennis":{"name":"Taol dennis-taol","terms":"ping pong,tennis-daol,taol,taol dennis-daol"},"leisure/pitch/tennis":{"name":"Tachenn dennis"},"leisure/pitch/volleyball":{"name":"Tachenn volley-ball","terms":"sport,volley-ball,volley,volleyball,tachenn,sportoù"},"leisure/playground":{"name":"Porzh-c'hoari","terms":"porzh-c'hoari,c'hoari,tachenn-c'hoari"},"leisure/playground/indoor":{"name":"Tachenn-c'hoari diabarzh","terms":"diabarzh,e-barzh,tachenn-c'hoari,porzh-c'hoari,c'hoari"},"leisure/resort":{"name":"Kreizenn dudi"},"leisure/sauna":{"name":"Sauna","terms":"sauna,saona,sona"},"leisure/slipway":{"name":"Kal morañ","terms":"kal,kal morañ,morañ,dour,stêr,bag,bigi,lakaat en dour,kal lakaat en dour,lestr,mor"},"leisure/slipway_drivable":{"name":"Kal morañ (digor d'ar c'harbedoù)","terms":"kal,kal morañ,morañ,dour,stêr,bag,bigi,lakaat en dour,kal lakaat en dour,lestr,mor,karrhent,aes d'ar c'hirri,aes d'ar c'harbedoù,digor d'ar c'hirri,digor d'ar c'harbedoù,bleinapl"},"leisure/sports_centre":{"name":"Kreizenn-sport","terms":"jiminas,sportoù,kreizenn,sport,dudi"},"leisure/sports_centre/climbing":{"name":"Sal-krapañ"},"leisure/sports_centre/climbing_adventure":{"name":"Park avantur","terms":"park avantur,park,avantur,park avanturioù,avanturioù,park troioù-kaer,troioù-kaer"},"leisure/sports_centre/shooting":{"name":"Kreizenn-dennañ"},"leisure/sports_centre/swimming":{"name":"Kreizenn-dour"},"leisure/sports_hall":{"name":"Jiminas","terms":"jiminas,sport,sportoù,dudi,kreizenn,kreizenn-sport"},"leisure/stadium":{"name":"Stad","terms":"arena,stadion,stad"},"leisure/swimming_area":{"name":"Lec'h kouronkañ","terms":"lec'h,kouronkañ,neuial,neuñvial"},"leisure/swimming_pool":{"name":"Poull-neuial","terms":"poull-neuial,poull-neuñvial,poull,kouronkva,poull-gouronkañ"},"leisure/track/athletics":{"name":"Leurenn atleterezh"},"leisure/track/athletics/javelin_throw":{"name":"Roudenn bannañ goaf","terms":"goaf,bannañ,roudenn,atleterezh"},"leisure/track/athletics/long_jump":{"name":"Roudenn lammat a-hed","terms":"roudenn,hentad,lamm a-hed,lammat a-hed"},"leisure/track/athletics/pole_vault":{"name":"Roudenn lammat gant ar berchenn","terms":"roudenn,lammat gant ar berchenn"},"leisure/track/athletics/running":{"name":"Hent-red"},"leisure/track/athletics/sprint":{"name":"Roudenn sprint","terms":"roudenn,redek,hentad,sprint,sprintañ"},"leisure/track/athletics/steeplechase":{"name":"Roudenn redadeg-skoilhoù","terms":"roudenn,hentad,redadeg-skoilhoù,steeple"},"leisure/track/athletics/triple_jump":{"name":"Roudenn tri-lamm","terms":"trilamm,tri-lamm,roudenn,atleterezh"},"leisure/track/cycling":{"name":"Hentad marc'h-houarn","terms":"roudenn,roud,hent,hentad,belo,marc'h-houarn"},"leisure/track/horse_racing":{"name":"Marc'hva","terms":"marc'hva,marc'hegezh,marc'hegerezh,roudenn varc'hañ,marc'hañ,roudenn,roudenn varc'hegezh"},"leisure/track/running":{"name":"Hent-red","terms":"hent-red,hent redek,redek,atleterezh,roudenn"},"leisure/trampoline_park":{"name":"Park Trampolin","terms":"trampoline park,trampolin"},"leisure/water_park":{"name":"Park dour"},"line":{"name":"Linenn","terms":"linenn,roudenn"},"man_made":{"name":"Elfenn artifisiel"},"man_made/antenna":{"name":"Stign skindredan","terms":"radioelektrek,stign,gwern,skindredan"},"man_made/beehive":{"name":"Ruskenn","terms":"ruskenn,gwenan"},"man_made/breakwater":{"name":"Torr-gwagennoù","terms":"torr-gwagennoù,torr-houloù,diwagenner,torr-tonoù,harz-gwagennoù,harz-houloù,chaoser,sav-maen,sav-mein"},"man_made/bridge":{"name":"Gorread pont","terms":"takad pont,takad,tachenn,tachad,pont"},"man_made/cairn":{"name":"Karn","terms":"karn"},"man_made/charge_point":{"name":"Bonn adkargañ karbedoù tredan","terms":"bonn adkargañ karbedoù tredan,bonn-adkargañ,karbedoù,tredan,dre dan,kirri,karbed"},"man_made/chimney":{"name":"Siminal","terms":"siminal"},"man_made/compass_rose":{"name":"Rod an avelioù","terms":"rod an avelioù,roud-avel,norzh,su,reter,kornôg,kornaoueg,gwalarn,biz,mervent,gevred,kreisteiz,hanternoz,sav-heol,kuzh-heol,pevar avel"},"man_made/crane":{"name":"Gavr","terms":"gavr,gavr-houarn,karr-gavr"},"man_made/crane/gantry_crane":{"name":"Gavr embregata","terms":"gavr,gavr-houarn,karr-gavr,embregata,dafariñ,porched"},"man_made/cross":{"name":"Kroaz","terms":"kalvar,kroaz,kroez"},"man_made/dovecote":{"name":"Kouldri","terms":"kouldri"},"man_made/dyke":{"name":"Dig","terms":"chaoser,sav-maen,dig"},"man_made/embankment":{"name":"Savenn-douar","terms":"savenn,savenn-douar,sav-douar"},"man_made/flagpole":{"name":"Gwern banniel","terms":"peul,gwern,banniel,post"},"man_made/fuel_pump":{"name":"Post-esañs","terms":"post-esañs"},"man_made/gasometer":{"name":"Endalc'her gaz","terms":"kloc'h gaz,endalc'her gaz,mirlec'h,etrepaouez,sanailh"},"man_made/groyne":{"name":"Tañvouezenn-vor","terms":"tañvouez,tañvouezenn vor,tañvouezenn,lost,tañvouezenn-dour,tañvouezenn dour"},"man_made/insect_hotel":{"name":"Leti amprevaned","terms":"leti amprevaned,leti,ostaleri,amprevaned"},"man_made/lighthouse":{"name":"Tour-tan","terms":"tour-tan"},"man_made/manhole":{"name":"Genoù kan-skarzh","terms":"genoù kan-skarzh,genoù"},"man_made/manhole/drain":{"name":"Kan-dastum","terms":"kan-dastum,dastum,dour,glav,skarzh"},"man_made/mast":{"name":"Peul","terms":"gwern,peul,post,stign"},"man_made/mast/communication":{"name":"Peul pellgehentiñ","terms":"peul pellgehentiñ,peul,tour,kehentiñ"},"man_made/mast/communication/radio":{"name":"Peul skingas radio","terms":"gwern,peul,skingas,skingomz,radio,kehentiñ,pellgehentiñ"},"man_made/mast/communication/television":{"name":"Peul skingas skinwel","terms":"gwern,peul,skingas,skinwel,radio,kehentiñ,pellgehentiñ,tele"},"man_made/mineshaft":{"name":"Puñs mengleuz","terms":"puñs,mengleuz,kav"},"man_made/obelisk":{"name":"Obeliskenn","terms":"peulvan,maen-hir,obeliskenn"},"man_made/observatory":{"name":"Arsellva","terms":"arsellva,sellva,arvestva,arvestlec'h"},"man_made/petroleum_well":{"name":"Puñs eoul-douar","terms":"puñs,eoul-douar,petrol,tireoul"},"man_made/pier":{"name":"Chaoser","terms":"chaoser,sav-maen,kae,sav"},"man_made/pier/floating":{"name":"Sav-maen war-neuñv","terms":"sav-maen war-neuñv,neuñv,mor,porzh,bag,bigi,lestr,chaoser,chaoser war-neuñv,chaoser-neuñv,sav-maen-neuñv"},"man_made/pipeline":{"name":"Gazsan / eoulsan","terms":"gazsan,eoulsan,pipeline,tireoul,korzenn"},"man_made/pipeline/underground":{"name":"Eoulsan dindandouar","terms":"dindandouar,eoulsan,petrol,korzenn,eoul-douar,tireoul,gaz,dindanvor"},"man_made/planter":{"name":"Pladad legumaj","terms":"pladad,legumaj,liorzhad"},"man_made/quay":{"name":"Kae","terms":"kae"},"man_made/satellite_dish":{"name":"Stign loarel","terms":"stign,loarel,satelit,gwern"},"man_made/silo":{"name":"Silo"},"man_made/storage_tank/water":{"name":"Sitern dour","terms":"mirlec'h,oglenn,dour,sitern,beol"},"man_made/street_cabinet":{"name":"Armel-straed","terms":"armel-straed,armel-dredan,armel dredan,tredan"},"man_made/street_cabinet/traffic_control":{"name":"Sistem reoliañ an tremenerezh","terms":"sistem reoliañ an tremenerezh,tremeniri"},"man_made/street_cabinet/traffic_monitoring":{"name":"Sistem kontrollañ an tremenerezh","terms":"sistem kontrollañ an tremenerezh,tremeniri"},"man_made/street_cabinet/transport_management":{"name":"Sistem merañ an tremenerezh","terms":"sistem merañ an tremenerezh,tremeniri"},"man_made/surveillance":{"name":"Benveg evezhiañ","terms":"benveg evezhiañ,ardivink,evezhiañ,evezh,kamera,mekanik"},"man_made/surveillance/camera":{"name":"Kamera-evezhiañ","terms":"kamera,evezhiañ,evezh,diwall,eveshaat,plediñ,surentez,merañ,webcam,video,fiñvskeudenner,gwarez,anaoudegezh,marilh,cctv"},"man_made/telescope":{"name":"Teleskop","terms":"teleskop,pellseller"},"man_made/telescope/optical":{"name":"Teleskop optikel","terms":"optik,optikel,teleskop,pellseller"},"man_made/telescope/radio":{"name":"Radioteleskop","terms":"radioteleskop,teleskop,pellseller,radio,skin"},"man_made/tower":{"name":"Tour","terms":"tour,savadur,skraber-oabl"},"man_made/tower/bell_tower":{"name":"Kloc'hdi","terms":"iliz,kloc'hdi,tour,tour-iliz"},"man_made/tower/communication":{"name":"Tour kehentiñ","terms":"tour,peul,pellgehentiñ,kehentiñ"},"man_made/tower/defensive":{"name":"Tour kreñv","terms":"tour,tour-meur,kreñv,kreñvlec'h"},"man_made/tower/diving":{"name":"Splujell","terms":"splujell"},"man_made/tower/minaret":{"name":"Minared","terms":"islam,moskeenn,minared,muzulman,tour"},"man_made/tower/pagoda":{"name":"Pagodenn","terms":"pagodenn,azeuliñ,azeulva"},"man_made/tunnel":{"name":"Takad riboul","terms":"takad,riboul,tunel"},"man_made/video_wall":{"name":"Skramm niverel","terms":"del,skramm,ramzel,niverek,niverel"},"man_made/wastewater_plant":{"name":"Purlec'h","terms":"purlec'h,dour lous,dourioù lous"},"man_made/water_tap":{"name":"Kog-dour","terms":"kog-dour,kog dour,kog,dour,brikezenn,tuellenn,touchenn"},"man_made/water_tower":{"name":"Kastell-dour","terms":"kastell-dour"},"man_made/water_well":{"name":"Puñs","terms":"puñs,dour,mammenn,eienenn"},"man_made/water_works":{"name":"Uzin dour mat da evañ","terms":"dour,dour da evañ,dour mat da evañ,uzin"},"man_made/watermill":{"name":"Milin-dour","terms":"milin,melin,meilh,milin-dour,melin-dour,meilh-dour,dour"},"man_made/windmill":{"name":"Milin","terms":"milin,melin,meilh,avel"},"man_made/works":{"name":"Labouradeg","terms":"labouradeg,uzin,greanti"},"man_made/works/brewery":{"name":"Breserezh greantel","terms":"breserezh greantel"},"man_made/yes":{"name":"Elfenn denel (n'eo ket spisaet)"},"military/bunker":{"name":"Bunker milourel","terms":"bunker,milourel,brezel,brezelel,blockhaus"},"military/checkpoint":{"name":"Post-kontrollañ milourel","terms":"post-kontrollañ milourel,brezel,brezelel,arme,lu,milour"},"military/nuclear_explosion_site":{"name":"Lec'hienn tarzhadenn nukleel","terms":"lec'hienn tarzhadenn nukleel,derc'hanel,tarzhañ"},"military/office":{"name":"Burev milourel","terms":"burev,tuta,milourel,arme,an arme"},"military/trench":{"name":"Foz milourel","terms":"foz,milourel,milour,arme,lu,brezelel,brezel,fozell,foz-difenn,klaz"},"natural":{"name":"Elfenn naturel"},"natural/bare_rock":{"name":"Takad roc'hellek","terms":"roc'h,reier,takad,roc'hell,roc'hellek,karreg,kerreg"},"natural/bay":{"name":"Bae","terms":"bae,mor,pleg-mor,pleg,konk,ouf"},"natural/beach":{"name":"Traezhenn","terms":"traezh,aod,arvor,mor,traezhenn,sablenn"},"natural/cape":{"name":"Beg","terms":"kab,beg,penn,beg-douar"},"natural/cave_entrance":{"name":"Moned kav","terms":"moned kav,moned ur c'hav,kav,kevier,mont-tre,moned,mont e-barzh,ur c'hev,ur c'hav,kev,ar c'hav,ar c'hev"},"natural/cliff":{"name":"Tornaod","terms":"tornaod"},"natural/coastline":{"name":"Aod","terms":"aod,mor,arvor,tornaod,traezhenn,reier,kerreg,traezh"},"natural/geyser":{"name":"Gourstivell","terms":"gourstivell,geiser,plomenn"},"natural/glacier":{"name":"Skorneg","terms":"skorneg,glacier,skorn,klereg"},"natural/grassland":{"name":"Prad naturel","terms":"prad,pradenn,lann,geot,geotenn,geoteg,foenneg,peurvan"},"natural/heath":{"name":"Lann","terms":"lann,brugeg"},"natural/hot_spring":{"name":"Mammenn domm","terms":"dour,gwazh,stêr,dourredenn,dour zomm,mammenn,tomm,poull,lenn,mor,stank,geyser,gourstivell,stivell,feunteun,fetan"},"natural/mud":{"name":"Fank","terms":"fank,pri,bouilhenn,morfont,kailhar"},"natural/peak":{"name":"Lein","terms":"lein,beg,bre,menez,blein,kern,penn"},"natural/peninsula":{"name":"Gourenez","terms":"gourenez,gourenezenn,ledenez"},"natural/reef":{"name":"Karreg","terms":"karreg"},"natural/ridge":{"name":"Kribenn","terms":"kribenn,kribell"},"natural/rock":{"name":"Karreg","terms":"karreg"},"natural/saddle":{"name":"Ode","terms":"ode,treuzenn,tremen"},"natural/sand":{"name":"Traezh","terms":"traezh,gwast,dezerzh,traezhenn,gouelec'h"},"natural/scrub":{"name":"Brouskoad","terms":"brouskoad,bod,strouezh,krin"},"natural/shingle":{"name":"Bili","terms":"bili,bilienn,reier,roc'hoù,maen-bili,mein-vili"},"natural/shrub":{"name":"Bodenn","terms":"bod,bodenn"},"natural/spring":{"name":"Mammenn","terms":"dour,mammenn,gwazh,dourredenn,red,stêr,eienenn"},"natural/strait":{"name":"Strizh-mor","terms":"strizh,strizh-mor,strizhenn,naoz"},"natural/tree":{"name":"Gwezenn","terms":"gwez,gwezenn"},"natural/tree/broadleaved":{"name":"Gwezenn deliaouek"},"natural/tree/broadleaved/deciduous":{"name":"Gwezenn deliaouek (delioù dibad)","terms":"kouezhapl,dibad,gwezenn deliaouek"},"natural/tree/broadleaved/evergreen":{"name":"Gwezenn deliaouek (delioù padus)"},"natural/tree/needleleaved":{"name":"Gwezenn delioù pin"},"natural/tree/needleleaved/deciduous":{"name":"Gwezenn delioù pin (dibad)"},"natural/tree/needleleaved/evergreen":{"name":"Gwezenn delioù pin (padus)","terms":"padus,gwezenn delioù pin"},"natural/tree_row":{"name":"Renkad gwez","terms":"steudad,renkad,gwez,garzh"},"natural/tree_stump":{"name":"Skod","terms":"souchenn,gwez,gwezenn,skod,pennskod,skos,skodenn,skosenn,kef,penngef,penngos,souch"},"natural/valley":{"name":"Traoñienn","terms":"traoñ,traoñienn,saon,saonenn,stankenn,stank,flondrenn"},"natural/volcano":{"name":"Menez-tan","terms":"menez-tan,menez tan,meneztan,tanvenez"},"natural/water":{"name":"Dour","terms":"dour,water"},"natural/water/basin":{"name":"Oglenn","terms":"poull,diazad dour,diazad,stank,oglenn"},"natural/water/canal":{"name":"Takad kanol","terms":"kanol,takad kanol"},"natural/water/lake":{"name":"Lenn","terms":"lenn,poull,stank,loc'h"},"natural/water/moat":{"name":"Douvezioù","terms":"douvez,douvezioù,touflez,touflezioù"},"natural/water/oxbow":{"name":"Brec'h marv","terms":"brec'h marv,lenn oxbow,oxbow,brec'h,stêr"},"natural/water/pond":{"name":"Stank","terms":"poull,lenn,stank,mirlenn"},"natural/water/reservoir":{"name":"Mirlec'h","terms":"mirlec'h,mirlenn,dour"},"natural/water/river":{"name":"Takad stêr","terms":"takad stêr,stêr"},"natural/water/stream":{"name":"Takad ur gwazh","terms":"takad gwazh,takad ur gwazh,gwazh,gwazhienn,stêr,tachad gwazh,tachad ur gwazh,dourredenn,ruzelenn,richer,goaratenn,gwazh-dour,gouer,gouerenn"},"natural/water/wastewater":{"name":"Poull dourioù lous","terms":"poull dourioù lous,oglenn,dourioù lous"},"natural/wetland":{"name":"Takad gleb","terms":"takad gleb,tachad gleb,geun,geunioù"},"natural/wetland/bog":{"name":"Taouarc'heg","terms":"palud,paludenn,geun,geunioù,taouarc'heg"},"natural/wetland/mangrove":{"name":"Mangrovenn","terms":"mangrovenn"},"natural/wetland/marsh":{"name":"Geunioù","terms":"palud,paludenn,geun,geunioù"},"natural/wetland/saltmarsh":{"name":"Palud-holen","terms":"palud,paludenn,geun,geunioù,salin"},"natural/wetland/swamp":{"name":"Paludenn","terms":"palud,paludenn,geun,geunioù"},"natural/wetland/tidalflat":{"name":"Morfont","terms":"morfont,lec'hideg,lanv ha tre,chal ha dichal"},"natural/wetland/wet_meadow":{"name":"Pradenn c'hleb","terms":"pradenn c'hleb,pradenn,kompezenn,lann"},"natural/wood":{"name":"Koad naturel","terms":"koad,koadeg,forest,naturel"},"noexit/yes":{"name":"Difourk ebet","terms":"ermaez ebet,hep ermaez,difourk ebet,hent-dall"},"office":{"name":"Burev","terms":"burev,ajañs"},"office/accountant":{"name":"Kontour","terms":"kontour,konter"},"office/administrative":{"name":"Burev melestradurel"},"office/adoption_agency":{"name":"Ajañs advugelañ","terms":"ajañs,advabañ,advugelañ,burev"},"office/advertising_agency":{"name":"Ajañs bruderezh","terms":"burev,ajañs,bruderezh,brudañ"},"office/architect":{"name":"Tisavour","terms":"tisavour,savour,arkitektour,tisavourez,savourez,arkitektourez,ti,burev,embregerezh"},"office/association":{"name":"Burev aozadur e-maez-gouarnamant","terms":"burev aozadur e-maez-gouarnamant,ngo,ong"},"office/charity":{"terms":"burev,aozadur,diazezadur,aluzen,karitez"},"office/coworking":{"name":"Lec'h kenlabourat","terms":"lec'h kenlabourat,coworking,lec'h-labourat boutin"},"office/diplomatic":{"name":"Savadur diplomatek","terms":"burev,aozadur,savadur,kannadiezh,kannati,kanndi,diplomatiezh,kannadouriezh,diplomatek"},"office/diplomatic/consulate":{"name":"Koñsuldi","terms":"koñsul,koñsuldi,koñsuliezh,paseporzh,diplomatiezh,kannadouriezh,kannadour,viza"},"office/diplomatic/embassy":{"name":"Kannati","terms":"kannati,kannadi,ambasader,kannad,kannder,paseporzh,diplomatiezh,kannadouriezh,kannadour,viza"},"office/diplomatic/liaison":{"name":"Burev liammañ","terms":"burev liammañ"},"office/educational_institution":{"name":"Kreizenn stummañ","terms":"kreizenn,stummañ,deskadurezh,ensavadur,kelenn,deskiñ,skol"},"office/employment_agency":{"name":"Ajañs implijout","terms":"ajañs implijout,pol implij,labour,micher,ajañs labour"},"office/energy_supplier":{"name":"Pourvezer tredan","terms":"pourvezer tredan,pourvezer,tredan,pourchaser,pourchaser tredan"},"office/engineer":{"name":"Ijiner"},"office/estate_agent":{"name":"Ajañs-tiez","terms":"ajañs-tiez,tiez,tier,ajañs-tier"},"office/financial_advisor":{"name":"Kuzulier-arc'hant","terms":"kuzulier-arc'hant,kuzulier,arc'hant"},"office/forestry":{"name":"Mererezh ar c'hoadoù","terms":"mererezh ar c'hoadoù,koadoù,forest,forestoù,merañ,kempenn,burev,ajañs,ar c'hoadoù,koad,koadeier,ar c'hoadeier,mererezh"},"office/foundation":{"name":"Diazezadur","terms":"burev,diazezadur,kevredigezh,aozadur"},"office/government":{"name":"Melestradurezh publik","terms":"melestradurezh publik"},"office/government/prosecutor":{"name":"Burev ar prokulor meur","terms":"burev ar prokulor meur"},"office/government/tax":{"name":"Ti an tailhoù","terms":"ti an tailhoù"},"office/graphic_design":{"name":"Grafour","terms":"grafist,grafour"},"office/insurance":{"name":"Ajañs asurañs"},"office/lawyer/notary":{"name":"Noter"},"office/moving_company":{"name":"Embregerezh dilojañ","terms":"embregerezh dilojañ,dilojadenn,dilojañ,burev,embregerezh,dilojer,dilojerien,dilojadeg,diannez,diannezañ,diannezer,diannezerien"},"office/newspaper":{"name":"Kazetenn"},"office/ngo":{"name":"Burev AMG"},"office/notary":{"name":"Noter","terms":"noter,burev,ti an noter"},"office/physician":{"name":"Medisin"},"office/political_party":{"name":"Burev strollad politikel"},"office/private_investigator":{"name":"Enklasker prevez","terms":"enklasker,prevez,burev,embregerezh,imbourc'her"},"office/quango":{"name":"Burev hanter-AMG"},"office/religion":{"name":"Burev relijiel","terms":"burev,diazezadur,relijion,kristen,muzulman,yuzev,boudist,taoist,relijiel,feiz,azeuliñ,ensavadur"},"office/research":{"name":"Aozadur enklask skiantel"},"office/security":{"name":"Ajañs surentez prevez"},"office/surveyor":{"name":"Mentoniour"},"office/tax_advisor":{"name":"Burev kuzulier-arc'hant","terms":"burev,kuzulier,arc'hant,taosoù,tailhoù,yalc'h"},"office/telecommunication":{"name":"Ajañs pellgehenterezh","terms":"ajañs pellgehenterezh,ajañs,pellgehenterezh,burev,pellgehentiñ"},"office/therapist":{"name":"Yac'hadour","terms":"terapour,terapeut,yac'haour,terapeutour,yac'hadour,mezeg,mezeger"},"office/travel_agent":{"name":"Ajañs-veaj"},"office/union":{"name":"Burev sindikad","terms":"burev sindikad,sindikad"},"office/water_utility":{"name":"Ajañs an dour","terms":"ajañs an dour,burev,ajañs,ofis,kompagnunezh,dour,an dour"},"office/yes":{"name":"Burev (n'eo ket spisaet)"},"pipeline":{"name":"Elfenn eoulsan"},"pipeline/valve":{"name":"Begel eoulsan"},"piste/downhill":{"name":"Roudenn ski alpat","terms":"skiañ,ski alpat,diskenn,dinaou,roudenn,hentad,ski,ski-diskenn"},"piste/nordic":{"name":"Roudenn ski treuz-bro","terms":"treuz-bro,treuz bro,skiañ,ski,roudenn,hentad"},"place":{"name":"Lec'h"},"place/city":{"name":"Kêr vras"},"place/farm":{"name":"Atant"},"place/hamlet":{"name":"Pennkêr","terms":"pennkêr,kêriadenn"},"place/island":{"name":"Enez","terms":"enez,enezenn,douar,inizi,enezeg,enezig,atoll"},"place/islet":{"name":"Enezig","terms":"enezenn,enez,inizi,enezig,enezeg"},"place/isolated_dwelling":{"name":"Annez distro"},"place/locality":{"name":"Kêriadenn didud"},"place/neighbourhood":{"name":"Karter","terms":"karter,ranngêr,arondisamant"},"place/square":{"name":"Skwar","terms":"skwar,plasenn"},"place/suburb":{"name":"Bannlev","terms":"bannlev"},"place/town":{"name":"Kêr","terms":"kêr,kumun,keoded"},"place/village":{"name":"Kêriadenn","terms":"kêriadenn,bourc'h,gwig,gwilajenn,bourgadenn"},"playground":{"name":"Dafar c'hoari"},"playground/climbingwall":{"name":"C'hoari moger grapañ"},"playground/sandpit":{"name":"Bailh traezh","terms":"bailh,traezh,c'hoari,porzh-c'hoari,bugale,bugel"},"playground/seesaw":{"name":"C'hoari-skañbouez"},"playground/slide":{"name":"Ruz-revr","terms":"ruz-revr,ruz"},"playground/swing":{"name":"Brañsigell","terms":"brañsigell,brañskell,brañsell"},"playground/teenshelter":{"name":"Repu evit krennarded"},"playground/trampoline":{"name":"Trampolin","terms":"trampoline,lien-lamm,lien-lammat,trampolin"},"playground/zipwire":{"name":"C'hoari tirolianenn","terms":"tirolianenn,tirolian,c'hoari,bugale,dudi,park"},"point":{"name":"Poent","terms":"poent,skoulm"},"polling_station":{"name":"Burev-votiñ berrbad"},"power":{"name":"Elfenn dredanel"},"power/cable":{"name":"Fun dredan"},"power/cable/underground":{"name":"Fun dredan dindandouar","terms":"fun,orjalenn,dindandouar,dindanvor,tredan,linenn,elektrek"},"power/catenary_mast":{"name":"Post katener","terms":"post katener,aerfun,katener"},"power/generator":{"name":"Tredanerez"},"power/generator/method/photovoltaic":{"name":"Panell-heol","terms":"panell-heol,heoldredan,fotovoltaek"},"power/generator/method/photovoltaic/location/roof":{"name":"Panell-heol war an doenn"},"power/generator/source/hydro":{"name":"Rod-dour"},"power/generator/source/nuclear":{"name":"Reaktor nukleel","terms":"reaktor nukleel,dazloc'her,derc'hanva,kreizenn nukleel,derc'hanel"},"power/generator/source/wind":{"name":"Rod-avel","terms":"rod avel,rod,avel,rod-avel,tour avel,tour-avel"},"power/line":{"name":"Linenn dredan"},"power/plant":{"name":"Tachenn greizenn dredan"},"power/plant/source/coal":{"name":"Kreizenn dermek dre c'hlaou"},"power/plant/source/gas":{"name":"Kreizenn dermek dre c'haz"},"power/plant/source/hydro":{"name":"Kreizenn dre zour"},"power/plant/source/nuclear":{"name":"Kreizenn nukleel","terms":"nukleel,nukleüs,derc'han,derc'hanva,kreizenn dredan,tredan"},"power/plant/source/oil":{"name":"Kreizenn dermek dre eoul-douar"},"power/plant/source/solar":{"name":"Kreizenn heoldredan","terms":"kreizenn heoldredan"},"power/plant/source/waste":{"name":"Pulluc'hva al lastez"},"power/plant/source/wind":{"name":"Park rodoù-avel","terms":"rod-avel,rod avel,park rodoù-avel,tour-avel,tourioù-avel,park tourioù-avel"},"power/pole":{"name":"Peul tredan","terms":"peul,tredan,post"},"power/tower":{"name":"Tour tredan"},"power/transformer":{"name":"Treuzfurmer","terms":"treuzfurmer"},"public_transport/platform":{"name":"Kae treuzdougen foran","terms":"kae treuzdougen foran,dezougen,treuzdougen,kae,savenn,foran,publik"},"public_transport/platform/bus":{"name":"Kae bus","terms":"bus,karr-boutin,savenn,kae"},"public_transport/platform/bus_point":{"name":"Arsav Bus","terms":"arsav,ehan,bus,karr-boutin"},"public_transport/platform/bus_tram_point":{"name":"Arsav Tramgarr & Bus","terms":"arsav tramgarr & bus"},"public_transport/platform/ferry":{"name":"Kae ferryoù","terms":"mordreizher,bag,ferry,kae,karrlestr"},"public_transport/platform/ferry_point":{"name":"Arsav / kae ferry"},"public_transport/platform/light_rail":{"name":"Kae metro skañv","terms":"metro,tren,tram,tramgarr,metro skañv,tren skañv,arsav,kae,savenn"},"public_transport/platform/light_rail_point":{"name":"Arsav / kae metro skañv"},"public_transport/platform/monorail":{"name":"Kae unroudenn","terms":"arsav,kae,savenn,unroudenn"},"public_transport/platform/monorail_point":{"name":"Arsav / kae unroudenn"},"public_transport/platform/subway":{"name":"Kae metro","terms":"arsav,kae,savenn,tren,metro,tren-buzhug"},"public_transport/platform/subway_point":{"name":"Arsav / kae metro"},"public_transport/platform/train":{"name":"Kae tren","terms":"arsav,kae,savenn,tren,ti-gar,gar,porzh-houarn"},"public_transport/platform/train_point":{"name":"Arsav / kae tren"},"public_transport/platform/tram":{"name":"Kae tramgarr","terms":"arsav,kae,savenn,tram,tramgarr"},"public_transport/platform/tram_point":{"name":"Arsav / kae tramgarr","terms":"arsav / kae tramgarr,dezougen,treuzdougen,kae,savenn,ehan,arsav,tram"},"public_transport/platform/trolleybus":{"name":"Kae trolleybus","terms":"kae trolleybus,savenn,arsav,trollebus"},"public_transport/platform/trolleybus_point":{"name":"Arsav trolleybus","terms":"trolleybus,savenn,arsav,ehan,trollebus"},"public_transport/platform_point":{"name":"Arsav / kae treuzdougen foran","terms":"arsav / kae treuzdougen foran,dezougen,treuzdougen,kae,savenn,foran,publik,ehan,arsav"},"public_transport/station_bus":{"name":"Arsav-dibenn bus"},"public_transport/station_ferry":{"name":"Arsav-dibenn ferry"},"public_transport/station_light_rail":{"name":"Arsav metro skañv"},"public_transport/station_monorail":{"name":"Arsav unroudenn"},"public_transport/station_subway":{"name":"Arsav metro","terms":"arsav,ehan,metro,tren-buzhug"},"public_transport/station_train":{"name":"Ti-gar","terms":"porzh-houarn,gar,ti-gar"},"public_transport/station_train_halt":{"name":"Ti-gar (arsav diwar c'houlenn)","terms":"ti-gar,gar,porzh-houarn,arsav,diwar c'houlenn,goulenn"},"public_transport/station_tram":{"name":"Arsav tramgarr","terms":"arsav,ehan,tram,tramgarr"},"public_transport/station_trolleybus":{"name":"Arsav-dibenn trolleybus","terms":"arsav-dibenn trolleybus,arsav,ehan,dibenn,terminus,fin,trolleybus,trollebus"},"public_transport/stop_area":{"name":"Takad arsav","terms":"takad,arsav,arsaviñ,ehan,lec'h"},"public_transport/stop_position_bus":{"name":"Lec'h ehan ar bus","terms":"lec'h ehan ar bus,lec'h-ehan,lec'h-arsav,arsav,lec'h arsav,lec'h ehan,bus,karr-boutin,kirri-boutin"},"public_transport/stop_position_ferry":{"name":"Lec'h arsav ar ferry","terms":"lec'h arsav ar ferry,lec'h-ehan,lec'h-arsav,arsav,ferry,mordreizher,lec'h arsav,lec'h ehan"},"public_transport/stop_position_light_rail":{"name":"Lec'h ehan ar metro skañv","terms":"lec'h ma'z ehan ar metro skañv,lec'h-ehan,lec'h-arsav,arsav"},"public_transport/stop_position_monorail":{"name":"Lec'h ehan an unroudenn","terms":"lec'h ma'z ehan an unroudenn,lec'h-ehan,lec'h-arsav,arsav"},"public_transport/stop_position_subway":{"name":"Lec'h ehan ar metro","terms":"lec'h ma'z ehan ar metro,lec'h-ehan,lec'h-arsav,arsav"},"public_transport/stop_position_train":{"name":"Lec'h ehan an tren","terms":"lec'h ma'z ehan an tren,lec'h-ehan,lec'h-arsav,arsav,tren"},"public_transport/stop_position_tram":{"name":"Lec'h ehan an tramgarr","terms":"lec'h ma'z ehan an tramgarr,lec'h-ehan,lec'h-arsav,arsav"},"public_transport/stop_position_trolleybus":{"name":"Lec'h ehan an trolleybus","terms":"lec'h ma'z ehan an trolleybus,lec'h-ehan,lec'h-arsav,arsav"},"railway":{"name":"Elfenn hent-houarn"},"railway/abandoned":{"name":"Hent-houarn dilezet","terms":"hent-houarn dilezet"},"railway/buffer_stop":{"name":"Harz penn-linenn","terms":"harz penn-linenn"},"railway/construction":{"name":"Hent-houarn war ober","terms":"o sevel,sevel,savidigezh,labourioù,labour,konstruidigezh,ober,obererezh,war ober,oc'h ober,o vezañ savet,o vezañ krouet,hent-houarn,tren,karr-houarn,hentoù-houarn,porzh-houarn,gar,ti-gar"},"railway/crossing":{"name":"Kroashent-houarn","terms":"kroashent-houarn"},"railway/disused":{"name":"Hent-houarn dilezet","terms":"hent-houarn,dilezet,hent-houarn dilezet"},"railway/funicular":{"name":"Hent-houarn fundren","terms":"forzh,hentad,hent-houarn,tren dre fun,fundren,fun-dren"},"railway/halt":{"name":"Ti-gar (arsav diwar c'houlenn)"},"railway/level_crossing":{"name":"Kroashent-houarn","terms":"kroashent-houarn"},"railway/light_rail":{"name":"Forzh metro skañv","terms":"forzh,hent,hentad,hent-houarn,tren,tram,tramgarr,metro,metro-skañv"},"railway/milestone":{"name":"Maen-bonn tren","terms":"maen-bonn tren"},"railway/miniature":{"name":"Hent trenig bihan","terms":"forzh,hent,hentad,hent-houarn,tren,tren bihan,trenig"},"railway/monorail":{"name":"Forzh unroudenn","terms":"forzh,hent,hentad,hent-houarn,unroudenn"},"railway/monorail/hanging":{"name":"Forzh unroudenn a-ispilh","terms":"forzh unroudenn a-ispilh,forzh,hent,hentad,hent-houarn,unroudenn,ispilh,a-ispilh,a-istribilh,istribilh,e-kroug"},"railway/platform":{"name":"Kae ti-gar"},"railway/preserved":{"name":"Hent-houarn touristel","terms":"hent-houarn touristel"},"railway/rail":{"name":"Hent-houarn","terms":"forzh,hent,hentad,hent-houarn,tren"},"railway/rail/highspeed":{"name":"Forzh tren tizh bras","terms":"tren tizh bras,ttb,hent-houarn,tren"},"railway/station":{"name":"Porzh-houarn"},"railway/subway":{"name":"Forzh metro","terms":"forzh,hent,hentad,hent-houarn,tren-buzhug,dindandouar,metro"},"railway/subway_entrance":{"name":"Moned metro","terms":"moned metro"},"railway/train_wash":{"name":"Porzh gwalc'hiñ trenioù","terms":"porzh,gwalc'hiñ,tren,gwalc'herezh"},"railway/tram":{"name":"Forzh tramgarr","terms":"tramgarr,tram,hent,hent-houarn,forzh"},"railway/tram_stop":{"name":"Lec'hiadur ehan an tramgarr"},"railway/turntable":{"name":"Hent-houarn distreiñ","terms":"hent-houarn distreiñ,hentad,hent"},"relation":{"name":"Darempred","terms":"darempred,kenere,daveadur,kendarempred"},"roller_coaster/track":{"name":"Forzh karr sav-disav","terms":"forzh karr sav-disav,hentenn,hent,roudenn,sav-disav,sav-diskenn"},"route/ferry":{"name":"Hentad ferry","terms":"hentad,hent,roudenn,mordreizher,ferry,karrlestr"},"seamark":{"name":"Balizenn"},"seamark/buoy_lateral/green":{"name":"Boue gwer","terms":"boue,gwer,glas,balizenn,arouez-aod"},"seamark/buoy_lateral/red":{"name":"Boue ruz","terms":"boue,ruz,balizenn,arouez-aod"},"seamark/mooring":{"name":"Eren"},"shop":{"name":"Stal","terms":"stal,stalioù,magazenn,marc'had,gourmarc'had,gourstal,adstal,gwerzhañ,prenañ,gwerzher,pratik,embregerezh,staliaoua,prenadenn,aradenn"},"shop/agrarian":{"name":"Stal dafar labour-douar","terms":"stal dafar labour-douar"},"shop/alcohol":{"name":"Stal alkool","terms":"alkool,bier,gwin,sistr,chistr,vodka,evaj kreñv,hini kreñv,likor,korev,koreñv"},"shop/anime":{"name":"Stal mangaoù hag anime","terms":"stal mangaoù hag anime,stal,manga,anime"},"shop/antiques":{"name":"Hendraour","terms":"hendraour"},"shop/appliance":{"name":"Stal mekanikoù tredan","terms":"stal mekanikoù tredan,mekanikoù,ardivinkoù"},"shop/art":{"name":"Stal-arz","terms":"stal-arz,arz,stal arz"},"shop/bag":{"name":"Stal malizennoù ha seier","terms":"stal malizennoù ha seier,sac'h,seier,malizenn,stal valizennoù"},"shop/bakery":{"name":"Bouloñjerezh","terms":"pastezerezh,baraerdi,baraerezh,ti-bara,stal-vara,bouloñjeri,poberezh"},"shop/bathroom_furnishing":{"name":"Stal dafar sal-gibellañ","terms":"stal dafar sal-gibellañ"},"shop/beauty":{"name":"Kenederezh","terms":"kenederezh,stal gened,kened,stal-gened"},"shop/bed":{"name":"Stal dafar gwele","terms":"stal dafar gwele,gweleoù,gwele,matarasenn,stal vatarasennoù,matarasennoù"},"shop/beverages":{"name":"Stal-evajoù","terms":"evaj,evajoù,chug,dour,soda"},"shop/bicycle":{"name":"Stal marc'hoù-houarn","terms":"belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,stal,gwerzher"},"shop/boat":{"name":"Stal-vigi","terms":"stal,bag,bigi"},"shop/books":{"name":"Levrdi","terms":"levr,levrdi,gwerzher levrioù"},"shop/boutique":{"name":"Stalig"},"shop/butcher":{"name":"Kigerezh","terms":"kigerezh,kiger,kigerez,stal-gig"},"shop/camera":{"name":"Stal dafar luc'hskeudennerezh"},"shop/candles":{"name":"Stal-vouji","terms":"boujienn,goulaouenn-goar,goulaouenn,koar,kantol-elfenniñ,kantol,enaouell,bouji,gouloù-koar"},"shop/cannabis":{"name":"Stal ganabiz","terms":"stal ganabiz,kanabiz,kanab,ganab,stal ganab"},"shop/car":{"name":"Gwerzher kirri","terms":"karr-tan,karr,gwetur,karbed,gwerzher,stal,gwerzhañ,kirri"},"shop/car/second_hand":{"name":"Marc'hadour aotreet kirri eildorn","terms":"marc'hadour aotreet kirri eildorn,gwerzher,karr,kirri,eildorn,eil-dorn,eil dorn,argwerzh,war azgwerzh,marc'hadour,karbedoù,karbed"},"shop/car_repair":{"name":"Karrdi kirri","terms":"karrdi,karr-tan,karr,tangarrdi,ti-kirri,stal,gwetur,karbed,kirri"},"shop/cheese":{"name":"Fourmajerezh","terms":"fourmajerezh"},"shop/chemist":{"name":"Lezapotikerezh","terms":"apotiker,apotikerezh"},"shop/chocolate":{"name":"Chokolader","terms":"stal,chokolad,chokoladerezh,chokolader"},"shop/clothes":{"name":"Stal-dilhad","terms":"dilhad,gwiskamant,gwiskañ,bragoù,brozh,t-shirt,krez-t,dindan-dilhad,bragoù-bihan,slip,bragez,lavreg,brennidenn,krepez,krubuilh,stammenn,roched,hiviz"},"shop/clothes/second_hand":{"name":"Stal dilhad eildorn","terms":"stal,dilhad,eildorn,eil-dorn,eil dorn,adaozet,takonerezh,frip,friperezh"},"shop/clothes/suits":{"name":"Stal-wiskamantoù","terms":"gwiskamant,dilhad,dilhad sul,abid"},"shop/clothes/underwear":{"name":"Stal dindan-dilhad","terms":"stal,stalig,dindan-dilhad,bragoù-bihan,bragoù-dindan,slip,bragoù,lavreg,bragez"},"shop/clothes/wedding":{"name":"Stal dilhad dimeziñ","terms":"stal,dilhad,zilhad,dimeziñ,eured,priedelezh,dimez,dimezenn,euredenn"},"shop/clothes/workwear":{"name":"Stal dilhad labour","terms":"dilhad labour,stal,zilhad"},"shop/coffee":{"name":"Stal-gafe","terms":"kafe,stal-gafe,stal kafe,evaj,evajoù,ti-kafe,café,tavarn"},"shop/computer":{"name":"Stal-urzhiataerezh","terms":"urzhiataer,urzhiater,stlenneg,urzhiataerezh,hezoug,mekanik,elektronek"},"shop/confectionery":{"name":"Stal-vadigoù","terms":"madigoù,madig,limig,sukrerezh,sukr,chewing-gum,sunig,sunigell,koñfizer,koñfizerien,lipouzer,farder madigoù,koñfizerez,koñfizerezed,lipouzerez,farderez vadigoù,lipouzerezh,koñfizerezh"},"shop/convenience":{"name":"Ispiserezh / gourstalig"},"shop/copyshop":{"name":"Luc'heilañ ha moullañ"},"shop/cosmetics":{"name":"Stal produioù kened","terms":"stal produioù kened,kenedel,genedel,liv-dremm,kañfarluchoù,dremmliv,dremmlivaj"},"shop/craft":{"name":"Stal arzoù krouiñ","terms":"arz,krouiñ,stal"},"shop/curtain":{"name":"Stal-rideoz","terms":"rideoz,stal,gouel,stign"},"shop/dairy":{"name":"Diennerezh","terms":"diennerezh,koavenerezh,boued-laezh,stal,koaven,dienn,laezh,keuz,fourmaj"},"shop/deli":{"name":"Ispiserezh fin"},"shop/department_store":{"name":"Stal vras"},"shop/doityourself":{"name":"Stal-vitellat","terms":"stal vitellat,bitellat,bitell,stal"},"shop/doors":{"name":"Stal dorioù","terms":"stal,dor,dorioù"},"shop/dry_cleaning":{"name":"Stal-fererezh","terms":"fererezh,stal,stal-fererezh,pressing,naetaerezh,naetaer"},"shop/e-cigarette":{"name":"Stal sigaretennoù elektronek","terms":"sigaretenn elektronek,sigaretenn,butun,butuniñ,stal,vape,aezhenn,e-sigaretenn,burezh,burezhat"},"shop/electrical":{"name":"Stal dafar tredanek","terms":"stal dafar tredanek,aveadur,tredan,ardivinkoù,trevnadoù,tredanel,dafar,mekanikoù,elektrek,aveadur ti"},"shop/electronics":{"name":"Stal mekanikoù tredan hag elektronek","terms":"stal mekanikoù tredan hag elektronek,tredanek,aveadur,tredan,ardivinkoù,trevnadoù,tredanel,dafar,mekanikoù,elektrek,aveadur ti"},"shop/erotic":{"name":"Sex-shop","terms":"sex-shop,sex,shop,revel,reizhel,stal,erotek,gadal,orgedus,c'hadal,orgedel"},"shop/erotic/lgbtq":{"name":"Sex-shop LGDTQ+","terms":"sex-toy,sex-shop,lgdte,lgdt,lgdt+,lgdtq+,lgdtqe+,lgdtqe,lgdte+,lgbt,lgbti,lgbtqi,lgbtqia,lgbtq,lgbt+,lgbti+,lgbtqi+,lgbtqia+,lgbtq+,gadaliezh,erotek,erotegezh,oregederezh,rev,reizh"},"shop/fabric":{"name":"Stal wiadoù","terms":"stal wiadoù,danvez,danvezioù,gwiadennoù,gwiadenn,gwiad,gwiadoù,lien,lienad,mezhur,gwriat,stal,wiadennoù,wiadenn,wiad,wiadoù"},"shop/farm":{"name":"Stand frouezh ha legumaj","terms":"stand frouezh ha legumaj,stal,staliad,frouezh,legumaj"},"shop/fashion":{"name":"Stal-gizioù"},"shop/fireplace":{"name":"Stal oaledoù","terms":"stal oaledoù,oaled,siminal,siminalioù,oaledoù"},"shop/fishing":{"name":"Stal-besketa","terms":"stal besketa,danvez pesketa,pesketa,pesketaerezh,stal,stal-besketa"},"shop/florist":{"name":"Stal-vleunioù","terms":"bleunioù,vleunioù,stal,bleuñv,vleuñv,bokedour"},"shop/frame":{"name":"Stal enframmadur","terms":"stal,enframmadur,frammoù,stern,steuñv"},"shop/frozen_food":{"name":"Stal boued skornet","terms":"boued skornet"},"shop/funeral_directors":{"name":"Lidoù kañv","terms":"kañv,lid,liderezh,kañvlidoù,bezier,douarañ"},"shop/furniture":{"name":"Stal-arrebeuri","terms":"arrebeuri,gourvez-vank,taol,kador,sez,bank,armel,sofa,kredañs,pres"},"shop/garden_centre":{"name":"Liorzherezh","terms":"liorzherezh,liorzhdi,jardineri,jardinerezh,stal liorzhañ,stal jardinat,stal jardinañ,stal,dafar liorzhañ,dafar jardinañ,liorzhañ,jardinañ,jardinat,jardrin,jardrinat,jardrinañ"},"shop/gift":{"name":"Stal-brofoù","terms":"profañ,prof,profadenn,stal,donezon,road"},"shop/greengrocer":{"name":"Marc'hadour frouezh ha legumaj"},"shop/hairdresser":{"name":"Perukenner","terms":"perukenner,ficher,ficherez,blev,ficher-blev,ficherez-vlev,peruker,troc'her,troc'herez,troc'her-blev,troc'herez-vlev,barver,perukerezh,perukennerezh"},"shop/hairdresser/barber":{"name":"Barver","terms":"barver,perukenner"},"shop/hairdresser_supply":{"name":"Stal dafar perukenner","terms":"perukenner,ficher,ficherez,blev,ficher-blev,ficherez-vlev,peruker,troc'her,troc'herez,troc'her-blev,troc'herez-vlev,barver,perukerezh,perukennerezh,stal dafar perukenner,kribañ,gribañ,fichañ"},"shop/hardware":{"name":"Kinkailherezh"},"shop/hearing_aids":{"name":"Protezour-klevet"},"shop/hifi":{"name":"Stal danvez hifi","terms":"hifi,kleweled,stal"},"shop/honey":{"name":"Stal-vel","terms":"mel,stal,gwenaner,gwenanerez,gwenanerezh"},"shop/hunting":{"name":"Stal jiboez","terms":"chaseal,chas,jiboez,stal"},"shop/interior_decoration":{"name":"Stal kinklañ diabarzh"},"shop/jewelry":{"name":"Stal-vravrigoù","terms":"bravig,stal vravigoù,diamant,aour,arc'hant,kolier,tro-c'houzoug,tro-c'hoûg,karkan,kelc'hienn,tro-vrec'h,troioù-brec'h,kelc'h-brec'h,montr,kloc'hig-skouarn,brageriz,kelc'henn,anell,gwalenn,gwalenn-skouarn,kloc'hig,bizoù,bizoù-divskouarn"},"shop/kiosk":{"name":"Kiosk"},"shop/kitchen":{"name":"Stal keginoù","terms":"kegin,stal-gegin,stal kegin,stal geginoù,stal,keginoù,keginañ,kuizin,kuizinoù,dafar keginañ"},"shop/laundry":{"name":"Kanndi","terms":"kannañ,kanndi,kannerezh"},"shop/laundry/self_service":{"name":"Kanndi emgefre","terms":"kannañ,kanndi,emgefre,emgefreek,emservij"},"shop/leather":{"name":"Marokiner","terms":"lêr,gavrgen,marokiner,marokinerez,marokinerezh"},"shop/lighting":{"name":"Stal lampoù"},"shop/locksmith":{"name":"Alc'hwezerezh","terms":"alc'hwezerezh,alc'hwezer,alc'hwezerez,alc'hwez"},"shop/lottery":{"name":"Lotiri"},"shop/mall":{"name":"Kreizenn genwerzh","terms":"kreizenn genwerzh,kreizenn-genwerzh,koñvers,kenwerzh,stal,kreizenn goñvers,kreizenn-goñvers"},"shop/massage":{"name":"Saloñs merata"},"shop/mobile_phone":{"name":"Stal pellgomzerioù hezoug","terms":"hezoug,telefon,pellgomz,pellgomzer"},"shop/money_lender":{"name":"Prester","terms":"prester,arc'hant"},"shop/motorcycle":{"name":"Gwerzher marc'hoù-tan"},"shop/motorcycle_repair":{"name":"Karrdi marc'hoù-tan"},"shop/music":{"name":"Stal-sonerezh","terms":"sonerezh,muzik,taboulin,trompilh,piano,violoñs,binvioù tos,ograou,telenn,gitar,violoñsell,biolin,gourrebed,gourvioloñs,alto,cd,vinyl,pladenn zu,pladennoù du,vinil,pladenn,sede,gitar tredan,klevell,uhelgomzer,binvioù,ostilhoù,binviji"},"shop/musical_instrument":{"name":"Stal binvioù sonerezh","terms":"muzik,sonerezh,stal,binviji,benvegoù,binvioù,binviji-seniñ,benvegoù-seniñ,binvioù-seniñ,seniñ"},"shop/newsagent":{"name":"Stalig kazetennoù"},"shop/nutrition_supplements":{"name":"Stal klokaennoù boued"},"shop/nuts":{"name":"Stal-graoñ","terms":"kraoñ,kraoñenn,kelvez,stal,greun,frouezh,frouezh sec'h"},"shop/optician":{"name":"Luneder","terms":"lunedoù,luneder,lunedour"},"shop/outpost":{"name":"Stal produioù gwerzhet enlinenn","terms":"enlinenn,pickup,pick up,pick-up,stal produioù,ar genrouedad,kenrouedad,gwerzhet enlinenn,stalig,stal"},"shop/paint":{"name":"Stal livadur","terms":"stal,liv,livadur,livoù,livadurioù"},"shop/party":{"name":"Stal dafar gouelioù"},"shop/pasta":{"name":"Stal doazennoù","terms":"toazennoù,pasta,spaghetti,toaz,toazenn,doazennoù,basta,doaz,doazenn,stal"},"shop/pastry":{"name":"Pastezerezh","terms":"gwasteller,pastezer,pastezour,pastezerezh,gwastell,kwign,stal-bastezer"},"shop/pawnbroker":{"name":"Prester ouzh gouestl","terms":"prester ouzh gouestl,prester ouzh teulioù"},"shop/perfumery":{"name":"Porfumerezh","terms":"porfumerezh,porfum,frond,c'hwezh-vat"},"shop/pet":{"name":"Stal-loened","terms":"loen,aneval,kazh,kizhier,chas,ki,stlejvil,boc'h-dev,hamster,razh-segal,razh"},"shop/photo":{"name":"Stal luc'hskeudennerezh","terms":"foto,kamera,luc'hskeudenner,luc'hskeudennerezh,fiñvskeudenn"},"shop/pottery":{"name":"Stal-boderezh","terms":"poderezh,feilhañserezh,porselenerezh,prierezh"},"shop/printer_ink":{"name":"Stal liv moullerez"},"shop/psychic":{"name":"Mediom","terms":"pellsantour,mediom"},"shop/pyrotechnics":{"name":"Stal tanioù-arvest","terms":"stal tanioù-arvest,tan-arvest"},"shop/religion":{"name":"Stal relijiel","terms":"stal relijiel"},"shop/rental":{"name":"Stal feurmiñ"},"shop/repair":{"terms":"kere,kereon,kereour,botaouer"},"shop/rice":{"name":"Stal-riz","terms":"stal,stal-riz,riz,preti,marc'had"},"shop/scuba_diving":{"name":"Stal danvez splujañ","terms":"splujañ,splujerezh,soubañ,splujiñ,mor,dindanvor,beuziñ"},"shop/seafood":{"name":"Stal boued-mor","terms":"stal,boued-mor,peskerezh,stal-besked"},"shop/sewing":{"name":"Stal dilhad kozh","terms":"stal dilhad kozh,dilhad kozh,takonerezh"},"shop/shoe_repair":{"name":"Kereour","terms":"kereour,botoù,kere,botaouer"},"shop/shoes":{"name":"Stal-votoù","terms":"botez,botoù,botoù-lêr,stal botoù,stal votoù,stal-votoù"},"shop/spices":{"name":"Stal spisoù","terms":"stal-spisoù,spisoù,temz,demz,sasun"},"shop/sports":{"name":"Stal danvez sport","terms":"sport,sportoù,danvez sport,atletour,atleterezh,gourenour,gourenerezh,gouennelerezh"},"shop/stationery":{"name":"Paperaerezh","terms":"paperaerezh"},"shop/supermarket":{"name":"Gourmarc'had","terms":"gourmarc'had,stal,marc'had"},"shop/supermarket/organic":{"name":"Gourmarc'had biologel","terms":"gourmarc'had biologel,bio,biologel,biologek,marc'had,gourmarc'had"},"shop/swimming_pool":{"name":"Stal dafar poull-neuial","terms":"stal dafar poull-neuial,poull-neuial,neuial"},"shop/tailor":{"name":"Kemener","terms":"kemener,dilhad,gwriat"},"shop/tattoo":{"name":"Tatouerezh","terms":"tatouerezh,kroc'henlivadur,tatouadur,tatouiñ,saloñs,stal,liv,livadur,ankr,ink"},"shop/tea":{"name":"Stal te","terms":"te,stal,stal-te,stal-de"},"shop/ticket":{"name":"Gwerzher bilhedoù","terms":"gwerzher bilhedoù,tikedenn,tikedennoù,bilhedoù,bilhed,gwerzher"},"shop/tiles":{"name":"Stal-garrelladur","terms":"stal-garrelladur,karrelladur,karrellerezh,garrellerezh,karrezadur,garrezadur,garrellañ,karrellañ,karrezañ,garrezañ"},"shop/tobacco":{"name":"Stal-vutun","terms":"butun,stal-vutun,stal butun"},"shop/tool_hire":{"name":"Binviji da feurmiñ","terms":"binviji da feurmiñ,binviji,ostilhoù,binvioù,feurmiñ"},"shop/toys":{"name":"Stal c'hoarielloù","terms":"c'hoari,c'hoariell,nanarzh,neñneñ,arzhig,arzhig feur,doudou"},"shop/trade":{"name":"Braswerzher","terms":"braswerzher,marc'hadour dre-vras,groser,marc'hadour,gwerzher,stal,koñvers"},"shop/travel_agency":{"name":"Ajañs-veaj","terms":"ajañs,beaj,beajiñ"},"shop/trophy":{"name":"Stal trofeoù","terms":"koun-trec'h,trofe,stal,stal-drofeoù"},"shop/tyres":{"name":"Stal bandennoù-rod","terms":"pneumatek,bandenn,bandenn-rod,karr,kirri"},"shop/vacant":{"name":"Stal dilezet","terms":"stal dilezet,vak"},"shop/vacuum_cleaner":{"name":"Stal sunerezioù","terms":"stal sunerezioù,stal sunerezioù-poultr"},"shop/variety_store":{"name":"Rabati","terms":"rabati,rabat,gwerzhañ war raval,marc'had-mat"},"shop/video":{"name":"Klub-video"},"shop/video_games":{"name":"Stal c'hoarioù-video","terms":"stal c'hoarioù-video"},"shop/watches":{"name":"Horolajerezh","terms":"horolajerezh,stal horolajoù,horolajoù,eurieroù,montroù"},"shop/water":{"name":"Stal dour mat da evañ","terms":"stal dour mat da evañ,dour,stal zour,stal dour"},"shop/weapons":{"name":"Armerezh","terms":"armerezh,harnezerezh,stal-armoù,fuzuilhoù"},"shop/wigs":{"name":"Stal perukennoù","terms":"stal perukennoù"},"shop/wine":{"name":"Stal gwin","terms":"kav-gwin,stal win,gwin,alkool,chistr,sistr,bier,korev,stal-gwin,kav gwin"},"shop/yes":{"name":"Stal (n'eo ket spisaet)"},"telecom":{"name":"Dafar pellgehentiñ"},"telecom/data_center":{"name":"Kreizenn roadennoù","terms":"kreizenn roadennoù,bank roadennoù,data centre,data center"},"tourism":{"name":"Elfenn Douristel"},"tourism/alpine_hut":{"name":"Bod","terms":"bod"},"tourism/aquarium":{"name":"Akwariom","terms":"akwariom,doureg"},"tourism/artwork":{"name":"Oberenn arz","terms":"oberenn arz,oberenn arzel"},"tourism/artwork/bust":{"name":"Korf-bras","terms":"korf-bras,kef"},"tourism/artwork/graffiti":{"name":"Grafiti","terms":"grafiti,skrivachoù"},"tourism/artwork/installation":{"name":"Staliadur arzel","terms":"staliadur,arzoù,arz,arzel,staliañ"},"tourism/artwork/mural":{"name":"Murlivadur","terms":"freskenn,liverezh,livadur,mur,moger,liv,freskenn-voger"},"tourism/artwork/sculpture":{"name":"Kizelladur","terms":"kizelladur,skultadur"},"tourism/artwork/statue":{"name":"Delwenn","terms":"delwenn"},"tourism/attraction":{"name":"Dedenn touristel","terms":"dedenn touristel,touristel"},"tourism/camp_pitch":{"name":"Plas kampiñ","terms":"kampiñ,camping,tachenn gampiñ,tachenn-gampiñ,lec'h kampiñ,plas,karr-kampiñ,camping-car,kirri-kampiñ,takad,karavanenn,leur-servij,leur-kampiñ,parkañ,vakañsoù"},"tourism/camp_site":{"name":"Takad kampiñ","terms":"takad kampiñ,lec'h kampiñ"},"tourism/camp_site/backcountry":{"name":"Tachenn-gampiñ gouez","terms":"tachenn-gampiñ gouez"},"tourism/caravan_site":{"name":"Leur kirri-kampiñ","terms":"leur kirri-kampiñ,leur,parklec'h,leurenn,takad,tachenn,kampiñ,karr-kampiñ,kirri-kampiñ"},"tourism/gallery":{"name":"Palier arz","terms":"diskouezva,palier,arz,diskouezadeg"},"tourism/guest_house":{"name":"Kambr ostizien","terms":"kambr ostizien"},"tourism/hostel":{"name":"Herberc'h","terms":"herberc'h,herberc'h yaouankiz,ostaleri,hundi"},"tourism/hotel":{"name":"Leti","terms":"leti,otel,ostaleri"},"tourism/information":{"name":"Titouroù","terms":"titouroù"},"tourism/information/board":{"name":"Panell titouroù","terms":"panell titouroù"},"tourism/information/board/welcome_sign":{"name":"Panell degemer","terms":"panell degemer"},"tourism/information/map":{"name":"Kartenn","terms":"kartenn"},"tourism/motel":{"name":"Motel","terms":"motel,leti"},"tourism/museum":{"name":"Mirdi","terms":"mirdi"},"tourism/museum/history":{"name":"Mirdi istor","terms":"mirdi istor"},"tourism/picnic_site":{"name":"Lec'h piknikañ","terms":"lec'h piknikañ"},"tourism/viewpoint":{"name":"Gwelva","terms":"gwelva"},"tourism/zoo":{"name":"Zoo","terms":"zoo,liorzh-loened,gouezvilva"},"tourism/zoo/safari":{"name":"Safari","terms":"safari"},"tourism/zoo/wildlife":{"name":"Mirva natur","terms":"mirva,natur,naturel,park,gwarezva,gwareziñ,mirout"},"traffic_calming":{"name":"Gorrekaer","terms":"gorrekaer,skoilh torr-tizh"},"traffic_calming/bump":{"name":"Skoilh torr-tizh","terms":"kein gwiz,skoilh torr-tizh,gorrekaer"},"traffic_calming/chicane":{"name":"Kammigell / chikan","terms":"kammigell,chikan,broc'h,broc'hadeg"},"traffic_calming/hump":{"name":"Kein gwiz","terms":"kein gwiz,kein-gwiz"},"traffic_calming/mini_bumps":{"name":"Gorrekaerioù bihan","terms":"skoilhoù torr-tizh bihan,skoilhoùigoù torr-tizh,skoilh torr-tizh,gorrekaerioù bihan,gorrekaerioùigoù"},"traffic_calming/yes":{"name":"Gorrekaer (n'eo ket spisaet)"},"traffic_sign":{"name":"Panell-henchañ","terms":"panell-henchañ"},"traffic_sign/city_limit":{"name":"Panell gêr","terms":"panell gêr,panell degemer,panell kêr"},"traffic_sign/maxspeed":{"name":"Panell bevenn tizh","terms":"panell bevenn tizh,bevenn tizh"},"type/boundary":{"name":"Harzoù","terms":"harzoù,harz,bevenn"},"type/boundary/administrative":{"name":"Harzoù melestradurel","terms":"harz,harzoù,frontier,bevenn,melestradurel,melestradurezh,amaezhel"},"type/multipolygon":{"name":"Lieskorn","terms":"liestu,liestuek,liestueg,lieskogn,lieskorn,lieskogneg,lieskognek,lieskorneg,lieskornek"},"type/restriction/no_left_turn":{"name":"Arabat treiñ a-gleiz","terms":"arabat treiñ a-gleiz,na dreiñ a-gleiz"},"type/restriction/no_right_turn":{"name":"Arabat treiñ a-zehoù","terms":"arabat treiñ a-zehoù,na dreiñ a-zehoù"},"type/restriction/no_straight_on":{"name":"Arabat mont war-eeun","terms":"arabat mont war-eeun,na vont war-eeun"},"type/restriction/no_u_turn":{"name":"Hanter-dro ebet","terms":"hanter-dro ebet,na ober hanter-dro,arabat ober hanter-dro"},"type/restriction/only_left_turn":{"name":"Ret eo treiñ a-gleiz","terms":"ret eo treiñ a-gleiz"},"type/restriction/only_right_turn":{"name":"Ret eo treiñ a-zehoù","terms":"ret eo treiñ a-zehoù"},"type/restriction/only_straight_on":{"name":"Ret eo mont war-eeun","terms":"ret eo mont war-eeun"},"type/restriction/only_u_turn":{"name":"Hanter-dro nemetken","terms":"hanter-dro,rediet,hanter-dro hepken,hanter-dro nemetken"},"type/route":{"name":"Hentad","terms":"hent,hentad,roudenn"},"type/route/bicycle":{"name":"Hentad marc'h-houarn","terms":"belo,beloioù,marc'h-houarn,mirc'hi-houarn,marc'hhouarnerezh,marc'hoù-houarn,hent,hentad,forzh,gwenodenn"},"type/route/bus":{"name":"Hentad bus","terms":"hentad bus"},"type/route/ferry":{"name":"Hentad ferry","terms":"hentad,hent,roudenn,mordreizher,ferry,karrlestr"},"type/route/hiking":{"name":"Hentad tro-vale","terms":"hentad tro-vale,tro-vale,bale,hent bale,hent,gwenodenn,vale"},"type/route/horse":{"name":"Hentad marc'hegezh","terms":"hentad marc'hegezh,hent bale,hent,gwenodenn,vale,marc'hañ,varc'hegezh,varc'hañ"},"type/route/light_rail":{"name":"Hentad metro skañv","terms":"hentad metro skañv"},"type/route/monorail":{"name":"Hentad unroudenn","terms":"hentad unroudenn,monorail"},"type/route/mtb":{"name":"Hentad MTB","terms":"hentad mtb,mtb,vtt"},"type/route/pipeline":{"name":"Hentad eoulsan","terms":"gazsan,eoulsan,pipeline,tireoul,korzenn,roudenn,hent,hentad"},"type/route/piste":{"name":"Hentad/roudenn ski","terms":"hentad ski,ski,roudenn ski,roudenn,skiañ,skiiñ"},"type/route/railway":{"name":"Hentad hent-houarn","terms":"hent-houarn,hentad"},"type/route/road":{"terms":"hentad,roudenn,troiad,hent"},"type/route/subway":{"name":"Hentad metro","terms":"hentad metro,hentad,metro,tren-buzhug,hent,roudenn"},"type/route/train":{"name":"Hentad tren","terms":"hentad tren,hentad,forzh,troiad,roudenn,tren,karr-houarn,trenioù"},"type/route/tram":{"name":"Hentad tramgarr","terms":"hentad tramgarr,hentad,tramgarr,tramway,hent,roudenn"},"type/route/trolleybus":{"name":"Hentad trolleybus","terms":"linenn trolleybus,hentad trolleybus"},"type/route_master":{"name":"Hentad kar","terms":"hentad kar"},"type/site":{"name":"Lec'hienn","terms":"lec'hienn"},"type/waterway":{"name":"Dourredenn","terms":"dourredenn,stêr,gwazh,kanol"},"waterway":{"name":"Elfenn dourel"},"waterway/boatyard":{"name":"Chanter-bigi","terms":"chanter-bigi,chanter-bagoù,chanterioù-bigi,bag,bagoù,bigi,sevel,chanter,chanterioù"},"waterway/canal":{"name":"Kanol","terms":"kanol,san"},"waterway/canal/lock":{"name":"Skluz kanol","terms":"skluz,kanol"},"waterway/dam":{"name":"Stankell","terms":"stankell,fardell"},"waterway/ditch":{"name":"Foz","terms":"foz,fozell,kleuz,kleuziad"},"waterway/dock":{"name":"Darsenn / Poull-sec'h"},"waterway/drain":{"name":"Kanol-skarzh"},"waterway/lock_gate":{"name":"Dor-skluz","terms":"dor-skluz,dor,skluz"},"waterway/milestone":{"name":"Maen-bonn stêr"},"waterway/river":{"name":"Stêr","terms":"stêr,avon,stêrioù,ster,sterioù,richer,rivier,gwazh,aven,stêriad,dourredenn"},"waterway/stream":{"name":"Gwazh","terms":"stêr,avon,stêrioù,ster,sterioù,richer,rivier,gwazh,aven,stêriad,gwazh-dour,dourredenn,ruzelenn,goaratenn,gouer,gouerenn"},"waterway/water_point":{"name":"Dour mat da evañ war vor","terms":"dour mat da evañ war vor,evabl,mat da evañ,dour,war vor,war vag"},"waterway/waterfall":{"name":"Lamm-dour","terms":"lamm-dour,lammdour,gwallamm,kouezh-dour"},"waterway/weir":{"name":"Treuzoù (dour)","terms":"stankell,treuz,treuzoù"}}}}}
\ No newline at end of file
diff --git a/dist/translations/bs.json b/dist/translations/bs.json
index 14e969b9..0f7383b2 100644
--- a/dist/translations/bs.json
+++ b/dist/translations/bs.json
@@ -19,6 +19,9 @@
"private": {
"title": "Privatan"
},
+ "unknown": {
+ "title": "Nepoznato"
+ },
"yes": {
"title": "Dozvoljeno"
}
@@ -30,16 +33,40 @@
"motor_vehicle": "Motorna vozila"
}
},
+ "access_aisle": {
+ "label": "Vrsta"
+ },
+ "access_simple": {
+ "options": {
+ "no": "Ništa",
+ "permissive": "Propustljiv",
+ "private": "Privatan",
+ "unknown": "Nepoznato"
+ }
+ },
+ "addr/interpolation": {
+ "label": "Vrsta"
+ },
"address": {
"label": "Adresa",
"placeholders": {
"city": "Grad",
- "street": "Ulica"
+ "conscriptionnumber": "123",
+ "country": "Zemlja",
+ "hamlet": "Zaselak",
+ "housename": "Naziv",
+ "housenumber": "123",
+ "place": "Mjesto",
+ "street": "Ulica",
+ "town": "Gradić"
}
},
"admin_level": {
"label": "Administrativni nivo"
},
+ "advertising": {
+ "label": "Vrsta"
+ },
"aerialway": {
"label": "Vrsta"
},
@@ -70,9 +97,23 @@
"aeroway": {
"label": "Vrsta"
},
+ "aircraft/type": {
+ "label": "Vrsta"
+ },
"amenity": {
"label": "Vrsta"
},
+ "archaeological_site": {
+ "label": "Vrsta"
+ },
+ "area/highway": {
+ "label": "Vrsta"
+ },
+ "armrest": {
+ "options": {
+ "undefined": "Nepoznato"
+ }
+ },
"artist": {
"label": "Javna umjetnost"
},
@@ -82,52 +123,279 @@
"atm": {
"label": "Bankomat"
},
+ "attraction": {
+ "label": "Vrsta"
+ },
+ "baby_feeding": {
+ "options": {
+ "no": "Ništa"
+ }
+ },
"backrest": {
"label": "Naslon za leđa"
},
+ "bar": {
+ "label": "Bar"
+ },
"barrier": {
+ "label": "Vrsta",
+ "options": {
+ "bollard": "Bitva",
+ "cattle_grid": "Rešetke za stoku",
+ "city_wall": "Gradski zid",
+ "cycle_barrier": "Biciklistička prepreka",
+ "ditch": "Jarak",
+ "entrance": "Ulaz",
+ "fence": "Ograda",
+ "gate": "Kapija",
+ "hedge": "Živa ograda",
+ "kissing_gate": "Kapija (sa dvoje vrata)",
+ "retaining_wall": "Potporni zid",
+ "stile": "Prelaz preko ograde",
+ "toll_booth": "Naplatna rampa",
+ "wall": "Zid"
+ }
+ },
+ "barrier_planter": {
+ "label": "Barijera"
+ },
+ "basin": {
"label": "Vrsta"
},
+ "bath/type": {
+ "options": {
+ "lake": "Jezero"
+ }
+ },
+ "bench": {
+ "label": "Klupa"
+ },
"bicycle_parking": {
"label": "Vrsta"
},
+ "board_type": {
+ "label": "Vrsta"
+ },
+ "bollard": {
+ "label": "Vrsta"
+ },
+ "boules": {
+ "label": "Vrsta"
+ },
"boundary": {
"label": "Vrsta"
},
+ "bridge": {
+ "label": "Vrsta"
+ },
+ "bridge/support": {
+ "label": "Vrsta"
+ },
+ "bridge_combo": {
+ "label": "Vrsta"
+ },
"building": {
- "label": "Građevina"
+ "label": "Građevina",
+ "options": {
+ "bunker": "Bunker",
+ "commercial": "Poslovna zgrada",
+ "garage": "Garaža",
+ "house": "Kuća",
+ "hut": "Koliba",
+ "industrial": "Industrijska građevina",
+ "residential": "Stambena zgrada"
+ }
+ },
+ "building/levels": {
+ "label": "Nivoi",
+ "placeholder": "2, 4, 6..."
+ },
+ "building/levels/underground": {
+ "placeholder": "2, 4, 6..."
+ },
+ "bunker_type": {
+ "label": "Vrsta"
+ },
+ "cables": {
+ "placeholder": "1, 2, 3..."
+ },
+ "camp_site": {
+ "label": "Vrsta"
},
"capacity": {
"label": "Kapacitet",
"placeholder": "50, 100, 200..."
},
+ "capacity/disabled_parking": {
+ "placeholder": "1, 2, 3..."
+ },
+ "capacity/persons": {
+ "placeholder": "50, 100, 200..."
+ },
+ "capacity_volume": {
+ "placeholder": "50, 100, 200..."
+ },
+ "castle_type": {
+ "label": "Vrsta"
+ },
+ "club": {
+ "label": "Vrsta"
+ },
"collection_times": {
"label": "Vremena skupljanja"
},
+ "community_centre": {
+ "label": "Vrsta"
+ },
"construction": {
"label": "Vrsta"
},
+ "consulate": {
+ "label": "Vrsta"
+ },
"country": {
"label": "Zemlja"
},
+ "couplings": {
+ "placeholder": "1, 2, 3..."
+ },
"covered": {
"label": "Pokriveno"
},
+ "craft": {
+ "label": "Vrsta",
+ "options": {
+ "beekeeper": "Pčelar",
+ "blacksmith": "Kovač",
+ "boatbuilder": "Brodograditelj",
+ "bookbinder": "Knjigovezac",
+ "brewery": "Pivara",
+ "carpenter": "Stolar",
+ "caterer": "Ugostitelj",
+ "clockmaker": "Proizvođač satova",
+ "dressmaker": "Izrada haljina",
+ "electrician": "Električar",
+ "gardener": "Vrtlar",
+ "hvac": "HVAC",
+ "insulation": "Izolator",
+ "key_cutter": "Izrada ključeva",
+ "locksmith": "Bravar",
+ "photographer": "Fotograf",
+ "plumber": "Vodoinstalater",
+ "roofer": "Krovopokrivač",
+ "saddler": "Sedlar",
+ "stonemason": "Klesar",
+ "tailor": "Krojač",
+ "window_construction": "Izrada prozora"
+ }
+ },
+ "crop": {
+ "options": {
+ "grass": "Travnjak"
+ }
+ },
"crossing": {
"label": "Vrsta"
},
+ "cutting": {
+ "label": "Vrsta"
+ },
+ "cycle_barrier": {
+ "label": "Vrsta"
+ },
+ "cycle_network": {
+ "label": "Mreža"
+ },
+ "cycleway": {
+ "options": {
+ "no": {
+ "title": "Ništa"
+ }
+ }
+ },
"denomination": {
"label": "Vjeroispovjest"
},
"denotation": {
"label": "Označavanje"
},
+ "departures_board": {
+ "options": {
+ "no": "Ništa"
+ }
+ },
+ "depot": {
+ "label": "Vrsta"
+ },
"description": {
"label": "Opis"
},
+ "destination_waterway": {
+ "label": "Odredište"
+ },
+ "devices": {
+ "placeholder": "1, 2, 3..."
+ },
+ "diplomatic": {
+ "label": "Vrsta",
+ "options": {
+ "embassy": "Ambasada"
+ }
+ },
+ "direction_cardinal-US-CA-NZ": {
+ "label": "Pravac"
+ },
+ "direction_clock": {
+ "label": "Pravac",
+ "options": {
+ "anticlockwise": "U smjeru suprotnom od kazaljke na satu",
+ "clockwise": "U smjeru kazaljke na satu"
+ }
+ },
+ "disused/amenity": {
+ "label": "Vrsta"
+ },
+ "disused/railway": {
+ "label": "Vrsta"
+ },
+ "disused/shop": {
+ "label": "Vrsta"
+ },
+ "dock": {
+ "label": "Vrsta"
+ },
+ "dog": {
+ "options": {
+ "yes": "Dozvoljeno"
+ }
+ },
+ "door_type": {
+ "label": "Vrsta"
+ },
+ "drive_through": {
+ "label": "Drive-in"
+ },
+ "embankment": {
+ "label": "Vrsta"
+ },
+ "embassy": {
+ "label": "Vrsta",
+ "options": {
+ "yes": "Ambasada"
+ }
+ },
"emergency": {
"label": "Hitna"
},
+ "emergency_combo": {
+ "label": "Vrsta"
+ },
+ "emergency_ward_entrance": {
+ "label": "Vrsta"
+ },
+ "enforcement": {
+ "label": "Vrsta"
+ },
"entrance": {
"label": "Vrsta"
},
@@ -138,11 +406,41 @@
"fee": {
"label": "Provizija"
},
+ "fence_type": {
+ "label": "Vrsta"
+ },
+ "fire_hydrant/position": {
+ "options": {
+ "sidewalk": "Trotoar"
+ }
+ },
+ "fire_hydrant/type": {
+ "options": {
+ "wall": "Zid"
+ }
+ },
+ "fire_service_inlet": {
+ "options": {
+ "wall": "Zid"
+ }
+ },
"fixme": {
"label": "Popravi me"
},
+ "ford": {
+ "label": "Vrsta"
+ },
+ "fountain": {
+ "label": "Vrsta"
+ },
+ "gender": {
+ "placeholder": "Nepoznato"
+ },
"generator/method": {
- "label": "Način"
+ "label": "Način",
+ "options": {
+ "water-storage": "Rezervoar"
+ }
},
"generator/source": {
"label": "Izvor"
@@ -150,19 +448,61 @@
"generator/type": {
"label": "Vrsta"
},
+ "government": {
+ "label": "Vrsta"
+ },
+ "guest_house": {
+ "label": "Vrsta"
+ },
"handicap": {
"label": "Hendikep",
"placeholder": "1-18"
},
+ "healthcare": {
+ "label": "Vrsta",
+ "options": {
+ "clinic": "Klinika",
+ "dentist": "Zubar",
+ "doctor": "Doktor"
+ }
+ },
"highway": {
"label": "Vrsta"
},
+ "highway_cartpath": {
+ "options": {
+ "service": "Servisna cesta"
+ }
+ },
"historic": {
- "label": "Vrsta"
+ "label": "Vrsta",
+ "options": {
+ "archaeological_site": "Arheološko područje",
+ "boundary_stone": "Granični kamen",
+ "castle": "Dvorac",
+ "memorial": "Memorijal",
+ "monument": "Spomenik",
+ "railway": "Željeznička pruga",
+ "ruins": "Ruševine",
+ "wayside_cross": "Krajputaš ili stećak",
+ "wayside_shrine": "Hram pored puta"
+ }
+ },
+ "holding_position/type": {
+ "label": "Vrsta",
+ "options": {
+ "runway": "Pista"
+ }
},
"incline": {
"label": "Nagib"
},
+ "indoor_type": {
+ "label": "Vrsta"
+ },
+ "industrial": {
+ "label": "Vrsta"
+ },
"information": {
"label": "Vrsta"
},
@@ -173,6 +513,12 @@
"wlan": "WiFi"
}
},
+ "kerb/kerb_barrier": {
+ "label": "Vrsta"
+ },
+ "lamp_type": {
+ "label": "Vrsta"
+ },
"landuse": {
"label": "Vrsta"
},
@@ -186,6 +532,18 @@
"leisure": {
"label": "Vrsta"
},
+ "level_semi": {
+ "label": "Nivoi"
+ },
+ "liaison": {
+ "label": "Vrsta"
+ },
+ "lifeguard": {
+ "label": "Vrsta"
+ },
+ "lift_gate/type": {
+ "label": "Vrsta"
+ },
"lit": {
"label": "Osvijetljeno"
},
@@ -195,10 +553,44 @@
"man_made": {
"label": "Vrsta"
},
+ "manhole": {
+ "label": "Vrsta"
+ },
+ "map_type": {
+ "label": "Vrsta"
+ },
+ "marker": {
+ "label": "Vrsta"
+ },
+ "material": {
+ "options": {
+ "wood": "Šuma"
+ }
+ },
"maxspeed": {
"label": "Ograničenje brzine",
"placeholder": "40, 50, 60..."
},
+ "maxspeed/advisory": {
+ "placeholder": "40, 50, 60..."
+ },
+ "maxspeed/hgv": {
+ "placeholder": "40, 50, 60..."
+ },
+ "memorial": {
+ "label": "Vrsta"
+ },
+ "mobile": {
+ "placeholder": "+31 42 123 4567"
+ },
+ "mooring": {
+ "options": {
+ "private": "Privatan"
+ }
+ },
+ "museum": {
+ "label": "Vrsta"
+ },
"name": {
"label": "Naziv",
"placeholder": "Uobičajeni naziv (ukoliko postoji)"
@@ -209,21 +601,52 @@
"network": {
"label": "Mreža"
},
+ "network_road": {
+ "label": "Mreža"
+ },
"note": {
"label": "Bilješka"
},
+ "nudism": {
+ "options": {
+ "designated": "Namjenski",
+ "no": "Zabranjeno",
+ "permissive": "Propustljiv",
+ "yes": "Dozvoljeno"
+ }
+ },
"office": {
- "label": "Vrsta"
+ "label": "Vrsta",
+ "options": {
+ "educational_institution": "Obrazovna institucija",
+ "employment_agency": "Agencija za zapošljavanje",
+ "estate_agent": "Agencija za nekretnine",
+ "financial": "Finansijski ured",
+ "government": "Vladin ured",
+ "insurance": "Ured za osiguranje",
+ "lawyer": "Pravni ured",
+ "ngo": "Ured NVO",
+ "physician": "Ljekar",
+ "research": "Ured za istraživanje",
+ "telecommunication": "Ured telekoma",
+ "travel_agent": "Putnička agencija"
+ }
},
"oneway": {
"label": "Jednosmjerno"
},
"opening_hours": {
- "label": "Sati"
+ "label": "Sati",
+ "placeholder": "Nepoznato"
},
"operator": {
"label": "Operator"
},
+ "organic": {
+ "options": {
+ "no": "Ništa"
+ }
+ },
"par": {
"label": "Par",
"placeholder": "3, 4, 5..."
@@ -232,10 +655,27 @@
"label": "Podsticaj parkiranja"
},
"parking": {
+ "label": "Vrsta",
+ "options": {
+ "surface": {
+ "title": "Površina"
+ }
+ }
+ },
+ "parking_entrance": {
"label": "Vrsta"
},
+ "parking_space": {
+ "label": "Vrsta"
+ },
+ "phases": {
+ "placeholder": "1, 2, 3..."
+ },
"phone": {
- "placeholder": "+31 42 123 4567"
+ "label": "Telefon"
+ },
+ "pipeline": {
+ "label": "Vrsta"
},
"piste/difficulty": {
"label": "Težina"
@@ -244,35 +684,105 @@
"label": "Održavanje"
},
"piste/type": {
- "label": "Vrsta"
+ "label": "Vrsta",
+ "options": {
+ "playground": "Igralište"
+ }
},
"place": {
"label": "Vrsta"
},
+ "playground": {
+ "label": "Vrsta"
+ },
+ "post_box/type": {
+ "label": "Vrsta"
+ },
"power": {
"label": "Vrsta"
},
+ "public_bookcase/type": {
+ "label": "Vrsta"
+ },
+ "pump": {
+ "options": {
+ "no": "Ništa"
+ }
+ },
"railway": {
"label": "Vrsta"
},
+ "recycling_type": {
+ "label": "Vrsta"
+ },
+ "ref_disc_golf_hole": {
+ "placeholder": "1-18"
+ },
+ "ref_golf_hole": {
+ "placeholder": "1-18"
+ },
"relation": {
"label": "Vrsta"
},
"religion": {
- "label": "Religija"
+ "label": "Religija",
+ "options": {
+ "buddhist": "Budizam",
+ "christian": "Kršćanstvo",
+ "hindu": "Hinduizam",
+ "jewish": "Judaizam",
+ "muslim": "Islam",
+ "shinto": "Šintoizam",
+ "taoist": "Taoizam"
+ }
+ },
+ "residential": {
+ "label": "Vrsta"
+ },
+ "resort": {
+ "label": "Vrsta"
},
"restriction": {
"label": "Vrsta"
},
+ "roller_coaster/track": {
+ "label": "Vrsta"
+ },
+ "room": {
+ "label": "Vrsta"
+ },
"route": {
"label": "Vrsta"
},
"route_master": {
"label": "Vrsta"
},
- "service": {
+ "ruins": {
"label": "Vrsta"
},
+ "seamark/beacon_lateral/system": {
+ "options": {
+ "other": "Drugo"
+ }
+ },
+ "seamark/buoy_lateral/system": {
+ "options": {
+ "other": "Drugo"
+ }
+ },
+ "seats": {
+ "placeholder": "2, 4, 6..."
+ },
+ "service": {
+ "label": "Vrsta",
+ "options": {
+ "alley": "Uska ulica",
+ "drive-through": "Drive-in",
+ "driveway": "Prilaz",
+ "emergency_access": "Pristup za hitne slučajeve",
+ "parking_aisle": "Prolaz kroz parking"
+ }
+ },
"shelter": {
"label": "Sklonište"
},
@@ -282,6 +792,32 @@
"shop": {
"label": "Vrsta"
},
+ "siren/type": {
+ "label": "Vrsta",
+ "options": {
+ "other": "Drugo"
+ }
+ },
+ "site": {
+ "label": "Vrsta"
+ },
+ "social_facility": {
+ "label": "Vrsta",
+ "options": {
+ "shelter": "Sklonište"
+ }
+ },
+ "sport": {
+ "options": {
+ "golf": "Golf"
+ }
+ },
+ "stile": {
+ "label": "Vrsta"
+ },
+ "street_cabinet": {
+ "label": "Vrsta"
+ },
"structure": {
"label": "Struktura",
"options": {
@@ -292,24 +828,153 @@
},
"placeholder": "Nepoznato"
},
+ "structure_canal": {
+ "label": "Struktura",
+ "options": {
+ "bridge": "Most",
+ "tunnel": "Tunel"
+ },
+ "placeholder": "Nepoznato"
+ },
+ "structure_power": {
+ "label": "Struktura"
+ },
+ "structure_waterway": {
+ "label": "Struktura",
+ "options": {
+ "tunnel": "Tunel"
+ },
+ "placeholder": "Nepoznato"
+ },
+ "studio": {
+ "label": "Vrsta"
+ },
+ "substance": {
+ "options": {
+ "water": "Voda za piće"
+ }
+ },
+ "substation": {
+ "label": "Vrsta"
+ },
+ "substation_pipeline": {
+ "label": "Vrsta"
+ },
"supervised": {
"label": "Pod nadzorom"
},
"surface": {
- "label": "Površina"
+ "label": "Površina",
+ "options": {
+ "grass": "Travnjak",
+ "wood": "Šuma"
+ }
+ },
+ "survey_point/structure": {
+ "label": "Struktura",
+ "options": {
+ "block": "Blok"
+ }
+ },
+ "swimming_pool": {
+ "label": "Vrsta"
+ },
+ "switch": {
+ "label": "Vrsta"
+ },
+ "telecom": {
+ "label": "Vrsta"
+ },
+ "telescope/type": {
+ "label": "Vrsta"
+ },
+ "toilets": {
+ "label": "Toaleti"
},
"toilets/disposal": {
"label": "Način odlaganja otpada iz toaleta"
},
+ "tomb": {
+ "label": "Vrsta"
+ },
"tourism": {
"label": "Vrsta"
},
+ "tower/construction": {
+ "label": "Građevinsko područje"
+ },
+ "tower/platforms": {
+ "placeholder": "1, 2, 3..."
+ },
+ "tower/type": {
+ "label": "Vrsta"
+ },
+ "townhall/type": {
+ "label": "Vrsta"
+ },
+ "trade": {
+ "label": "Vrsta"
+ },
+ "traffic_calming": {
+ "label": "Vrsta"
+ },
+ "traffic_signals": {
+ "label": "Vrsta"
+ },
"trail_visibility": {
"label": "Vidljivost traga"
},
+ "transformer": {
+ "label": "Vrsta"
+ },
+ "trench": {
+ "label": "Vrsta"
+ },
+ "tunnel": {
+ "label": "Vrsta"
+ },
+ "tunnel_combo": {
+ "label": "Vrsta"
+ },
+ "usage_rail": {
+ "options": {
+ "tourism": "Turizam"
+ }
+ },
+ "utility": {
+ "options": {
+ "power": "Energija",
+ "water": "Voda"
+ }
+ },
+ "valve": {
+ "label": "Vrsta"
+ },
+ "vehicles": {
+ "options": {
+ "monorail": "Pruga sa jednim kolosijekom",
+ "subway": "Podzemna željeznica",
+ "tram": "Tramvaj"
+ }
+ },
+ "vending": {
+ "options": {
+ "water": "Voda za piće"
+ }
+ },
+ "wall": {
+ "label": "Vrsta"
+ },
"water": {
"label": "Vrsta"
},
+ "water_source": {
+ "options": {
+ "pond": "Ribnjak",
+ "river": "Rijeka",
+ "stream": "Potok"
+ }
+ },
"waterway": {
"label": "Vrsta"
},
@@ -324,6 +989,9 @@
},
"wikipedia": {
"label": "Wikipedia"
+ },
+ "windings": {
+ "placeholder": "1, 2, 3..."
}
},
"presets": {
@@ -413,6 +1081,10 @@
"name": "Zubar",
"terms": "zubar,stomatolog"
},
+ "amenity/doctors": {
+ "name": "Doktor",
+ "terms": "doktor,ljekar"
+ },
"amenity/drinking_water": {
"name": "Voda za piće",
"terms": "voda za piće,pitka voda"
@@ -499,9 +1171,9 @@
"name": "Gradska vijećnica",
"terms": "gradska vijećnica,vijećnica"
},
- "amenity/waste_basket": {
- "name": "Kanta za otpatke",
- "terms": "kanta za otpatke,posuda za otpatke,kanta za smeće"
+ "amenity/vending_machine": {
+ "name": "Automat",
+ "terms": "automat,automat za prodaju pića,automat sa pićem,automat sa slatkišima"
},
"area": {
"name": "Područje",
@@ -550,10 +1222,6 @@
"name": "Kapija (sa dvoje vrata)",
"terms": "kapija sa dvoje vrata"
},
- "barrier/lift_gate": {
- "name": "Kapija (koja se podiže)",
- "terms": "kapija koja se podiže,podižuća kapija"
- },
"barrier/retaining_wall": {
"name": "Potporni zid",
"terms": "potporni zid,zid za zadržavanje"
@@ -570,6 +1238,9 @@
"name": "Zid",
"terms": "zid,zidić,bedem"
},
+ "boundary": {
+ "name": "Granica"
+ },
"boundary/administrative": {
"name": "Admninistrativna granica",
"terms": "administrativna granica,administrativna linija"
@@ -578,6 +1249,9 @@
"name": "Građevina",
"terms": "zgrada,građevina,kuća"
},
+ "building/bunker": {
+ "name": "Bunker"
+ },
"building/commercial": {
"name": "Poslovna zgrada",
"terms": "poslovna zgrada,zgrada firme"
@@ -602,6 +1276,9 @@
"name": "Stambena zgrada",
"terms": "stambena zgrada,zgrada za stanovanje"
},
+ "building_point": {
+ "name": "Građevina"
+ },
"craft/beekeeper": {
"name": "Pčelar"
},
@@ -693,6 +1370,10 @@
"name": "Rupa za golf",
"terms": "golf rupa,rupa za golf loptice"
},
+ "golf/lateral_water_hazard": {
+ "name": "Vodena opasnost sa strane",
+ "terms": "opasnost of vode sa strane,voda sa strane"
+ },
"golf/rough": {
"name": "Rough",
"terms": "područje \"divlje\" trave van igre,trava van golf terena"
@@ -701,10 +1382,18 @@
"name": "Tee Box",
"terms": "\"tee\" kutija,kutija područja na početku rupe"
},
+ "golf/water_hazard": {
+ "name": "Vodena opasnost",
+ "terms": "opasnost od vode,vodena opasnost"
+ },
"highway/bridleway": {
"name": "Konjska staza",
"terms": "konjska staza,konjička staza,konjski trag"
},
+ "highway/crossing": {
+ "name": "Prelaz",
+ "terms": "prelaz,pješački prelaz"
+ },
"highway/cycleway": {
"name": "Biciklistička staza",
"terms": "biciklistička staza,staza za bicikle"
@@ -713,6 +1402,10 @@
"name": "Pješačka staza",
"terms": "pješačka staza,staza,ugažena staza"
},
+ "highway/footway/sidewalk": {
+ "name": "Trotoar",
+ "terms": "trotoar"
+ },
"highway/living_street": {
"name": "Stambena ulica",
"terms": "ulica u stambenom naselju"
@@ -868,14 +1561,28 @@
"name": "Livada",
"terms": "livada,prirodni travnjak"
},
+ "landuse/military/barracks": {
+ "name": "Kasarna",
+ "terms": "kasarna,zgrada kasarne"
+ },
+ "landuse/military/range": {
+ "name": "Strelište",
+ "terms": "strelište,vojni poligon,poligon za vojne vježbe"
+ },
"landuse/orchard": {
"name": "Voćnjak",
"terms": "voćnjak,uzgoj voća"
},
+ "landuse/pond": {
+ "name": "Ribnjak"
+ },
"landuse/quarry": {
"name": "Rudnik",
"terms": "kamenolom,vađenje kamena"
},
+ "landuse/reservoir": {
+ "name": "Rezervoar"
+ },
"landuse/vineyard": {
"name": "Vinograd",
"terms": "vinograd,uzgoj grožđa"
@@ -961,7 +1668,8 @@
"terms": "šumski prosjek,prosjek kroz šumu"
},
"man_made/embankment": {
- "name": "Nasip"
+ "name": "Nasip",
+ "terms": "nasip"
},
"man_made/flagpole": {
"name": "Jarbol",
@@ -987,6 +1695,10 @@
"name": "Toranj",
"terms": "toranj,kula"
},
+ "man_made/tower/observation": {
+ "name": "Osmatračnica",
+ "terms": "osmatračnica,toranj za osmatranje,platforma za osmatranje,toranj za turiste,protupožarni toranj"
+ },
"man_made/wastewater_plant": {
"name": "Postrojenje za obradu otpadnih voda",
"terms": "postrojenje za obradu otpadnih voda,prerada otpadnih voda"
@@ -1055,6 +1767,10 @@
"name": "Voda",
"terms": "voda"
},
+ "natural/water/basin": {
+ "name": "Sliv",
+ "terms": "sliv,bazen"
+ },
"natural/water/lake": {
"name": "Jezero",
"terms": "jezero,vodom ispunjena kopnena depresija"
@@ -1078,6 +1794,10 @@
"office/administrative": {
"name": "Administrativni ured"
},
+ "office/diplomatic/embassy": {
+ "name": "Ambasada",
+ "terms": "ambasada,konzulat,predstavništvo strane zemlje"
+ },
"office/educational_institution": {
"name": "Obrazovna institucija",
"terms": "obrazovna institucija,institucija obrazovanja,institucija za obrazovanje"
@@ -1147,6 +1867,9 @@
"name": "Lokalitet",
"terms": "lokalitet,specifično mjesto"
},
+ "place/square": {
+ "name": "Kvadrat"
+ },
"place/town": {
"name": "Gradić",
"terms": "gradić,mali grad,manje urbano područje"
@@ -1175,6 +1898,10 @@
"name": "Naponski stub",
"terms": "naponski stub,stub el. napajanja"
},
+ "power/substation": {
+ "name": "Trafo stanica",
+ "terms": "trafo,trafo stanica"
+ },
"power/tower": {
"name": "Visokonaponski dalekovod",
"terms": "visokonaponski dalekovod,visokonaponski toranj"
@@ -1183,6 +1910,9 @@
"name": "Transformator",
"terms": "transformator,transformator el. energije"
},
+ "public_transport/platform/bus_point": {
+ "terms": "autobuska stanica,autobusko stajalište"
+ },
"railway/abandoned": {
"name": "Napuštena željeznica",
"terms": "napuštena željeznička pruga,napuštena željeznica"
@@ -1358,6 +2088,9 @@
"name": "Supermarket",
"terms": "supermarket,prodaja robe široke potrošnje"
},
+ "shop/tailor": {
+ "name": "Krojač"
+ },
"shop/toys": {
"name": "Prodavnica igračaka",
"terms": "prodavnica igračaka,radnja za prodaju igračaka"
@@ -1371,7 +2104,8 @@
"terms": "prodavnica guma,radnja za prodaju auto-guma"
},
"shop/vacant": {
- "name": "Prodavnica za iznajmljivanje"
+ "name": "Prodavnica za iznajmljivanje",
+ "terms": "prodavnica za iznajmljivanje,prodavnica za najam"
},
"shop/video": {
"name": "Video klub",
@@ -1438,7 +2172,8 @@
"terms": "administrativna granica,administrativna linija"
},
"type/multipolygon": {
- "name": "Multipoligon"
+ "name": "Multipoligon",
+ "terms": "multipoligon,mnogougaonik"
},
"type/restriction": {
"name": "Zabrana",
@@ -1488,6 +2223,10 @@
"name": "Informacije o rutama",
"terms": "informacije o rutama,informacije o trasama"
},
+ "type/waterway": {
+ "name": "Vodotok",
+ "terms": "vodotok,vodeni tok"
+ },
"waterway/canal": {
"name": "Kanal",
"terms": "kanal,prokop"
diff --git a/dist/translations/bs.min.json b/dist/translations/bs.min.json
index 921cf215..82a49376 100644
--- a/dist/translations/bs.min.json
+++ b/dist/translations/bs.min.json
@@ -1 +1 @@
-{"bs":{"presets":{"fields":{"access":{"options":{"designated":{"title":"Namjenski"},"destination":{"title":"Odredište"},"no":{"title":"Zabranjeno"},"permissive":{"title":"Propustljiv"},"private":{"title":"Privatan"},"yes":{"title":"Dozvoljeno"}},"types":{"bicycle":"Bicikli","foot":"Pješke","horse":"Konji","motor_vehicle":"Motorna vozila"}},"address":{"label":"Adresa","placeholders":{"city":"Grad","street":"Ulica"}},"admin_level":{"label":"Administrativni nivo"},"aerialway":{"label":"Vrsta"},"aerialway/access":{"label":"Pristup"},"aerialway/bubble":{"label":"Balon"},"aerialway/capacity":{"label":"Kapacitet (po satu)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Trajanje (u minutama)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Zagrijano"},"aerialway/occupancy":{"label":"Zauzeće","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Pristup (ljeto)"},"aeroway":{"label":"Vrsta"},"amenity":{"label":"Vrsta"},"artist":{"label":"Javna umjetnost"},"artwork_type":{"label":"Vrsta"},"atm":{"label":"Bankomat"},"backrest":{"label":"Naslon za leđa"},"barrier":{"label":"Vrsta"},"bicycle_parking":{"label":"Vrsta"},"boundary":{"label":"Vrsta"},"building":{"label":"Građevina"},"capacity":{"label":"Kapacitet","placeholder":"50, 100, 200..."},"collection_times":{"label":"Vremena skupljanja"},"construction":{"label":"Vrsta"},"country":{"label":"Zemlja"},"covered":{"label":"Pokriveno"},"crossing":{"label":"Vrsta"},"denomination":{"label":"Vjeroispovjest"},"denotation":{"label":"Označavanje"},"description":{"label":"Opis"},"emergency":{"label":"Hitna"},"entrance":{"label":"Vrsta"},"fax":{"label":"Faks","placeholder":"+31 42 123 4567"},"fee":{"label":"Provizija"},"fixme":{"label":"Popravi me"},"generator/method":{"label":"Način"},"generator/source":{"label":"Izvor"},"generator/type":{"label":"Vrsta"},"handicap":{"label":"Hendikep","placeholder":"1-18"},"highway":{"label":"Vrsta"},"historic":{"label":"Vrsta"},"incline":{"label":"Nagib"},"information":{"label":"Vrsta"},"internet_access":{"options":{"terminal":"Terminal","wired":"Kablovski","wlan":"WiFi"}},"landuse":{"label":"Vrsta"},"lanes":{"label":"Saobraćajne trake","placeholder":"1, 2, 3..."},"layer":{"label":"Sloj"},"leisure":{"label":"Vrsta"},"lit":{"label":"Osvijetljeno"},"location":{"label":"Lokacija"},"man_made":{"label":"Vrsta"},"maxspeed":{"label":"Ograničenje brzine","placeholder":"40, 50, 60..."},"name":{"label":"Naziv","placeholder":"Uobičajeni naziv (ukoliko postoji)"},"natural":{"label":"Prirodno"},"network":{"label":"Mreža"},"note":{"label":"Bilješka"},"office":{"label":"Vrsta"},"oneway":{"label":"Jednosmjerno"},"opening_hours":{"label":"Sati"},"operator":{"label":"Operator"},"par":{"label":"Par","placeholder":"3, 4, 5..."},"park_ride":{"label":"Podsticaj parkiranja"},"parking":{"label":"Vrsta"},"phone":{"placeholder":"+31 42 123 4567"},"piste/difficulty":{"label":"Težina"},"piste/grooming":{"label":"Održavanje"},"piste/type":{"label":"Vrsta"},"place":{"label":"Vrsta"},"power":{"label":"Vrsta"},"railway":{"label":"Vrsta"},"relation":{"label":"Vrsta"},"religion":{"label":"Religija"},"restriction":{"label":"Vrsta"},"route":{"label":"Vrsta"},"route_master":{"label":"Vrsta"},"service":{"label":"Vrsta"},"shelter":{"label":"Sklonište"},"shelter_type":{"label":"Vrsta"},"shop":{"label":"Vrsta"},"structure":{"label":"Struktura","options":{"bridge":"Most","cutting":"Usjek","embankment":"Nasip","tunnel":"Tunel"},"placeholder":"Nepoznato"},"supervised":{"label":"Pod nadzorom"},"surface":{"label":"Površina"},"toilets/disposal":{"label":"Način odlaganja otpada iz toaleta"},"tourism":{"label":"Vrsta"},"trail_visibility":{"label":"Vidljivost traga"},"water":{"label":"Vrsta"},"waterway":{"label":"Vrsta"},"website":{"label":"Internet stranica"},"wetland":{"label":"Vrsta"},"wheelchair":{"label":"Prilaz za invalidska kolica"},"wikipedia":{"label":"Wikipedia"}},"presets":{"address":{"name":"Adresa","terms":"adresa,prebivalište"},"aeroway/aerodrome":{"name":"Aerodrom","terms":"aerodrom,zračna luka"},"aeroway/hangar":{"name":"Hangar","terms":"hangar"},"aeroway/helipad":{"name":"Heliodrom","terms":"heliodrom,sletište/uzletište za helikopter"},"aeroway/runway":{"name":"Pista","terms":"pista,sletište/uzletište za avione"},"aeroway/taxiway":{"name":"Staza za vožnju","terms":"rulna staza,staza za vožnju aviona"},"amenity":{"name":"Pogodnost"},"amenity/arts_centre":{"name":"Centar za umjetnost","terms":"centar za umjetnost,umjetnički centar,art centar"},"amenity/atm":{"name":"Bankomat","terms":"bankomat,bankovni automat za novac"},"amenity/bank":{"name":"Banka","terms":"banka"},"amenity/bar":{"name":"Bar","terms":"bar,gostionica,pivnica"},"amenity/bench":{"name":"Klupa","terms":"klupa,klupica"},"amenity/bicycle_parking":{"name":"Parking bicikala","terms":"parking bicikala,mjesto za parkiranje bicikla"},"amenity/bicycle_rental":{"name":"Iznajmljivanje bicikala","terms":"iznajmljivanje bicikala,najam bicikla"},"amenity/boat_rental":{"name":"Iznajmljivanje plovila","terms":"iznajmljivanje čamaca,iznajmljivanje brodova,iznajmljivanje plovila"},"amenity/cafe":{"name":"Kafe","terms":"kafe,kafana,kafe-bar"},"amenity/car_rental":{"name":"Rent-a-car","terms":"iznajmljivanje automobila,najam automobila,rent-a-car"},"amenity/car_wash":{"name":"Autopraonica","terms":"autopraonica,samouslužna autopraonica,praonica automobila"},"amenity/cinema":{"name":"Kino","terms":"kino,kino dvorana,multipleks"},"amenity/clinic":{"name":"Klinika"},"amenity/courthouse":{"name":"Sudnica","terms":"sudnica,zgrada suda"},"amenity/dentist":{"name":"Zubar","terms":"zubar,stomatolog"},"amenity/drinking_water":{"name":"Voda za piće","terms":"voda za piće,pitka voda"},"amenity/embassy":{"name":"Ambasada"},"amenity/fast_food":{"name":"Fast Food","terms":"fast food,restoran brze hrane"},"amenity/fire_station":{"name":"Vatrogasna stanica","terms":"vatrogasna stanica,zgrada vatrogasne službe"},"amenity/fountain":{"name":"Fontana","terms":"fontana,česma,vodoskok"},"amenity/fuel":{"name":"Benzinska pumpa","terms":"benzinska pumpa,pumpa za gorivo"},"amenity/grave_yard":{"name":"Groblje","terms":"groblje,greblje,mezarje"},"amenity/library":{"name":"Biblioteka","terms":"biblioteka,knjižnica"},"amenity/marketplace":{"name":"Tržnica","terms":"tržnica,pijaca"},"amenity/place_of_worship":{"name":"Bogomolja","terms":"božja kuća,bogomolja,mjesto za molitvu,hram"},"amenity/place_of_worship/buddhist":{"name":"Budistički hram","terms":"budistički hram,budistička bogomolja"},"amenity/police":{"name":"Policija","terms":"policija,milicija,organi reda"},"amenity/post_office":{"name":"Pošta","terms":"pošta,poštanski ured,ispostava pošte"},"amenity/pub":{"name":"Pub","terms":"pub,kafana,pivnica"},"amenity/ranger_station":{"name":"Stanica rendžerske službe","terms":"rendžerska služba,stanica rendžerske službe,rendžerska stanica"},"amenity/restaurant":{"name":"Restoran","terms":"restoran,gostionica"},"amenity/shelter":{"name":"Sklonište","terms":"sklonište,zaklon"},"amenity/studio":{"name":"Studio"},"amenity/taxi":{"name":"Taxi stajalište","terms":"taxi štand,taxi stajalište"},"amenity/telephone":{"name":"Telefon","terms":"telefon,telefonska govornica"},"amenity/theatre":{"name":"Pozorište","terms":"teatar,pozorište"},"amenity/townhall":{"name":"Gradska vijećnica","terms":"gradska vijećnica,vijećnica"},"amenity/waste_basket":{"name":"Kanta za otpatke","terms":"kanta za otpatke,posuda za otpatke,kanta za smeće"},"area":{"name":"Područje","terms":"područje,zona,oblast"},"barrier":{"name":"Barijera","terms":"barijera,prepreka,pregrada"},"barrier/block":{"name":"Blok","terms":"blok"},"barrier/bollard":{"name":"Bitva","terms":"bitva,ormarić s priključcima"},"barrier/cattle_grid":{"name":"Rešetke za stoku","terms":"rešetke za stoku,ograda za stoku"},"barrier/city_wall":{"name":"Gradski zid","terms":"zid grada,gradski zid"},"barrier/cycle_barrier":{"name":"Biciklistička prepreka","terms":"barijera za bicikle,prepreka za bicikle"},"barrier/entrance":{"name":"Ulaz"},"barrier/fence":{"name":"Ograda","terms":"ograda,plot"},"barrier/gate":{"name":"Kapija","terms":"vrata,kapija"},"barrier/hedge":{"name":"Živa ograda","terms":"ograda,živica"},"barrier/kissing_gate":{"name":"Kapija (sa dvoje vrata)","terms":"kapija sa dvoje vrata"},"barrier/lift_gate":{"name":"Kapija (koja se podiže)","terms":"kapija koja se podiže,podižuća kapija"},"barrier/retaining_wall":{"name":"Potporni zid","terms":"potporni zid,zid za zadržavanje"},"barrier/stile":{"name":"Prelaz preko ograde","terms":"prelaz,prelaz preko ograde"},"barrier/toll_booth":{"name":"Naplatna rampa","terms":"naplatna rampa,naplatna kućica"},"barrier/wall":{"name":"Zid","terms":"zid,zidić,bedem"},"boundary/administrative":{"name":"Admninistrativna granica","terms":"administrativna granica,administrativna linija"},"building":{"name":"Građevina","terms":"zgrada,građevina,kuća"},"building/commercial":{"name":"Poslovna zgrada","terms":"poslovna zgrada,zgrada firme"},"building/garage":{"name":"Garaža","terms":"garaža"},"building/house":{"name":"Kuća","terms":"kuća,dom"},"building/hut":{"name":"Koliba","terms":"koliba,brvnara"},"building/industrial":{"name":"Industrijska građevina","terms":"industrijska građevina,pogon"},"building/residential":{"name":"Stambena zgrada","terms":"stambena zgrada,zgrada za stanovanje"},"craft/beekeeper":{"name":"Pčelar"},"craft/blacksmith":{"name":"Kovač"},"craft/boatbuilder":{"name":"Brodograditelj"},"craft/bookbinder":{"name":"Knjigovezac"},"craft/carpenter":{"name":"Stolar"},"craft/caterer":{"name":"Ugostitelj"},"craft/clockmaker":{"name":"Proizvođač satova"},"craft/dressmaker":{"name":"Izrada haljina"},"craft/electrician":{"name":"Električar"},"craft/gardener":{"name":"Vrtlar"},"craft/insulator":{"name":"Izolator"},"craft/key_cutter":{"name":"Izrada ključeva"},"craft/locksmith":{"name":"Bravar"},"craft/photographer":{"name":"Fotograf"},"craft/plumber":{"name":"Vodoinstalater"},"craft/roofer":{"name":"Krovopokrivač"},"craft/saddler":{"name":"Sedlar"},"craft/stonemason":{"name":"Klesar"},"craft/tailor":{"name":"Krojač"},"craft/window_construction":{"name":"Izrada prozora"},"embankment":{"name":"Nasip"},"emergency/ambulance_station":{"name":"Stanica hitne pomoći","terms":"stanica hitne pomoći,hitna pomoć,hitna medicinska pomoć"},"emergency/fire_hydrant":{"name":"Hidrant za požar","terms":"hidrant,hidrant za požar"},"emergency/phone":{"name":"Telefon za hitne slučajeve","terms":"telefon za hitne slučajeve,hitna telefonska linija"},"golf/bunker":{"name":"Pješčana zamka","terms":"pješčana zamka,pješčana klopka,bunker"},"golf/fairway":{"name":"Fairway","terms":"osnovni dio golf terena,glavni teren za golf"},"golf/green":{"name":"Putting Green","terms":"područje golf terena najbliže rupi"},"golf/hole":{"name":"Rupa za golf","terms":"golf rupa,rupa za golf loptice"},"golf/rough":{"name":"Rough","terms":"područje \"divlje\" trave van igre,trava van golf terena"},"golf/tee":{"name":"Tee Box","terms":"\"tee\" kutija,kutija područja na početku rupe"},"highway/bridleway":{"name":"Konjska staza","terms":"konjska staza,konjička staza,konjski trag"},"highway/cycleway":{"name":"Biciklistička staza","terms":"biciklistička staza,staza za bicikle"},"highway/footway":{"name":"Pješačka staza","terms":"pješačka staza,staza,ugažena staza"},"highway/living_street":{"name":"Stambena ulica","terms":"ulica u stambenom naselju"},"highway/mini_roundabout":{"name":"Mini kružni tok","terms":"mali kružni tok,mini kružni tok"},"highway/motorway":{"name":"Autoput","terms":"autoput,autocesta"},"highway/motorway_link":{"name":"Poveznica na autoput","terms":"poveznica na autoput,poveznica na autocestu"},"highway/path":{"name":"Staza","terms":"staza,puteljak"},"highway/primary":{"name":"Primarna cesta","terms":"glavna cesta,cesta od glavnog značaja"},"highway/primary_link":{"name":"Primarna poveznica","terms":"primarna poveznica,poveznica na primarnu cestu"},"highway/residential":{"name":"Rezidencijalna cesta","terms":"rezidencijalna cesta,cesta kroz naselje"},"highway/road":{"name":"Nepoznata cesta","terms":"nepoznata cesta,nepoznat put"},"highway/secondary":{"name":"Sekundarna cesta","terms":"sekundarna cesta,cesta od sekundarnog značaja"},"highway/secondary_link":{"name":"Sekundarna poveznica","terms":"poveznica na sekundarnu cestu,poveznica na cestu sekundarnog značaja"},"highway/service":{"name":"Servisna cesta","terms":"servisna cesta,cesta za opsluživanje"},"highway/service/alley":{"name":"Uska ulica","terms":"uska ulica,uličica"},"highway/service/drive-through":{"name":"Drive-in","terms":"drive-in,usluge za vozače"},"highway/service/driveway":{"name":"Prilaz","terms":"prilaz,pristupna cesta"},"highway/service/emergency_access":{"name":"Pristup za hitne slučajeve","terms":"pristup za hitne slučajeve,prilaz u slučaju nužde"},"highway/service/parking_aisle":{"name":"Prolaz kroz parking","terms":"prolaz kroz parking,parkiralište"},"highway/steps":{"name":"Stepenice","terms":"stepenice,stube"},"highway/stop":{"name":"Znak stop","terms":"znak stop,saobraćajni znak stop,saobraćajni znak zaustavljanja"},"highway/tertiary":{"name":"Tercijarna cesta","terms":"tercijarna cesta,cesta od tercijarnog značaja"},"highway/tertiary_link":{"name":"Tercijarna poveznica","terms":"poveznica na tercijarnu cestu,poveznica na cestu od tercijarnog značaja"},"highway/traffic_signals":{"name":"Saobraćajna signalizacija","terms":"saobraćajna signalizacija,semafori,saobraćajni znakovi"},"highway/trunk":{"name":"Brza cesta","terms":"brza cesta,državna cesta"},"highway/trunk_link":{"name":"Poveznica na brzu cestu","terms":"poveznica na brzu cestu,poveznica na državnu cestu"},"highway/turning_circle":{"name":"Krug za okretanje","terms":"krug za okretanje,polukružno okretanje"},"historic":{"name":"Historijsko mjesto","terms":"historijsko nalazište,historijsko područje"},"historic/archaeological_site":{"name":"Arheološko područje","terms":"arheološko nalazište,arheološko područje"},"historic/boundary_stone":{"name":"Granični kamen","terms":"granični kamen,međaš"},"historic/castle":{"name":"Dvorac","terms":"dvorac,zamak"},"historic/memorial":{"name":"Memorijal","terms":"memorijalni spomenik,memorijal"},"historic/monument":{"name":"Spomenik","terms":"spomenik"},"historic/ruins":{"name":"Ruševine","terms":"ruševine,historijske ruševine"},"historic/wayside_cross":{"name":"Krajputaš ili stećak","terms":"krajputaš,stećak,krst kraj puta"},"historic/wayside_shrine":{"name":"Hram pored puta","terms":"znamenje kraj puta,kapelica"},"landuse/basin":{"name":"Sliv"},"landuse/cemetery":{"name":"Groblje","terms":"groblje,greblje,mezarje"},"landuse/farmyard":{"name":"Seosko dvorište","terms":"seosko dvorište,dvorište imanja"},"landuse/grass":{"name":"Travnjak","terms":"trava,travnjak"},"landuse/meadow":{"name":"Livada","terms":"livada,prirodni travnjak"},"landuse/orchard":{"name":"Voćnjak","terms":"voćnjak,uzgoj voća"},"landuse/quarry":{"name":"Rudnik","terms":"kamenolom,vađenje kamena"},"landuse/vineyard":{"name":"Vinograd","terms":"vinograd,uzgoj grožđa"},"leisure/common":{"name":"Uobičajeno","terms":"uobičajeno,uobičajeno ime,uobičajeni naziv"},"leisure/dog_park":{"name":"Igralište za pse","terms":"igralište za pse,park za pse"},"leisure/garden":{"name":"Vrt","terms":"vrt,bašta"},"leisure/golf_course":{"name":"Golf teren","terms":"golf teren,igralište za golf"},"leisure/marina":{"name":"Marina","terms":"marina,vrsta pristaništa"},"leisure/park":{"name":"Park","terms":"park,održavana zelena površina"},"leisure/pitch":{"name":"Sportsko igralište","terms":"sportsko igralište,sportski teren"},"leisure/pitch/american_football":{"name":"Polje za američki fudbal","terms":"polje za američki fudbal,igralište za američki fudbal"},"leisure/pitch/basketball":{"name":"Košarkaški teren","terms":"košarkaški teren,igralište za košarku"},"leisure/pitch/skateboard":{"name":"Poligon za skateboard","terms":"poligon za skateboard,park za skateboard,poligon za klizanje"},"leisure/pitch/soccer":{"name":"Fudbalski teren","terms":"fudbalski teren,igralište za fudbal"},"leisure/pitch/tennis":{"name":"Teniski teren","terms":"teniski teren,igralište za tenis"},"leisure/pitch/volleyball":{"name":"Odbojkaški teren","terms":"odbojkaški teren,igralište za odbojku"},"leisure/playground":{"name":"Igralište","terms":"igralište,dječje igralište"},"leisure/slipway":{"name":"Navoz","terms":"navoz,navoz na šine"},"leisure/stadium":{"name":"Stadion","terms":"stadion,sportsko borilište"},"leisure/swimming_pool":{"name":"Bazen","terms":"bazen,bazen za plivanje,plivački bazen"},"line":{"name":"Linija","terms":"linija"},"man_made/breakwater":{"name":"Lukobran","terms":"lukobran,valolom,utvrda obale"},"man_made/cutline":{"name":"Prosjek","terms":"šumski prosjek,prosjek kroz šumu"},"man_made/embankment":{"name":"Nasip"},"man_made/flagpole":{"name":"Jarbol","terms":"jarbol,jarbol za zastavu"},"man_made/lighthouse":{"name":"Svjetionik","terms":"svjetionik,toranj za svjetlosnu navigaciju"},"man_made/pier":{"name":"Pristanište","terms":"pristanište,mol"},"man_made/pipeline":{"name":"Cjevovod","terms":"cjevovod,sistem cijevi za prenos materijala"},"man_made/survey_point":{"name":"Izviđačnica","terms":"izviđačnica,tačka izviđanja"},"man_made/tower":{"name":"Toranj","terms":"toranj,kula"},"man_made/wastewater_plant":{"name":"Postrojenje za obradu otpadnih voda","terms":"postrojenje za obradu otpadnih voda,prerada otpadnih voda"},"man_made/water_tower":{"name":"Vodo-toranj","terms":"vodo-toranj,vodeni toranj"},"man_made/water_works":{"name":"Vodosnadbjevanje","terms":"vodosnadbjevanje,snadbjevanje vodom"},"natural/bay":{"name":"Zaliv","terms":"zaliv,vodena površina okružena kopnom sa tri strane"},"natural/beach":{"name":"Plaža","terms":"plaža,obala za kupanje"},"natural/cliff":{"name":"Litica","terms":"litica,hrid,stijena"},"natural/coastline":{"name":"Obala","terms":"obala,obalno područje"},"natural/fell":{"name":"Planinska golet","terms":"nekultivirana zemlja na visokim nadmorskim visinama,neobrađena zemlja,visoki pašnjak"},"natural/glacier":{"name":"Glečer","terms":"glečer,ledenjak"},"natural/grassland":{"name":"Pašnjak","terms":"pašnjak,prirodni travnjak"},"natural/heath":{"name":"Vrijes","terms":"vrijes,vrijesište"},"natural/peak":{"name":"Vrh","terms":"vrh,kota"},"natural/scree":{"name":"Osulina","terms":"sipar,sipina,osulina,nakupina osutog oštrobridnog materijala"},"natural/scrub":{"name":"Gustiš","terms":"gustiš,šipražje,nisko raslinje"},"natural/spring":{"name":"Izvor","terms":"izvor,početak vodenog toka"},"natural/tree":{"name":"Drvo","terms":"drvo,stablo"},"natural/water":{"name":"Voda","terms":"voda"},"natural/water/lake":{"name":"Jezero","terms":"jezero,vodom ispunjena kopnena depresija"},"natural/water/pond":{"name":"Ribnjak","terms":"ribnjak,bara,plitka vodena masa"},"natural/water/reservoir":{"name":"Rezervoar","terms":"rezervoar,spremište vode"},"natural/wetland":{"name":"Močvara","terms":"močvara,tresetište,mrtvaja"},"office":{"name":"Ured","terms":"ured,uslužni ured"},"office/administrative":{"name":"Administrativni ured"},"office/educational_institution":{"name":"Obrazovna institucija","terms":"obrazovna institucija,institucija obrazovanja,institucija za obrazovanje"},"office/employment_agency":{"name":"Agencija za zapošljavanje","terms":"agencija za zapošljavanje,ured za zapošljavanje,agencija za posredovanje u zapošljavanju"},"office/estate_agent":{"name":"Agencija za nekretnine","terms":"agencija za nekretnine,agencija za posredovanje u prodaji nekretnina"},"office/financial":{"name":"Finansijski ured","terms":"finansijski ured,ured za finansije"},"office/government":{"name":"Vladin ured","terms":"ured vlade,vladin ured"},"office/insurance":{"name":"Ured za osiguranje","terms":"ured za osiguranje,kancelarija za osiguranje"},"office/lawyer":{"name":"Pravni ured","terms":"pravni ured,pravna kancelarija"},"office/ngo":{"name":"Ured NVO","terms":"nevladin ured,ured nvo,nvo kancelarija"},"office/physician":{"name":"Ljekar"},"office/research":{"name":"Ured za istraživanje","terms":"ured za istraživanje,istraživački ured,istraživačka kancelarija"},"office/telecommunication":{"name":"Ured telekoma","terms":"ured telekoma,ured telekom operatera,kancelarija telekom operatera"},"office/travel_agent":{"name":"Putnička agencija"},"place":{"name":"Mjesto"},"place/city":{"name":"Grad","terms":"grad,urbano naselje"},"place/hamlet":{"name":"Zaselak","terms":"seoce,malo selo,zaselak"},"place/island":{"name":"Ostrvo","terms":"ostrvo,kopno okruženo vodom"},"place/isolated_dwelling":{"name":"Izolirano stanovanje","terms":"izolirano stanovanje,udaljene kuće"},"place/locality":{"name":"Lokalitet","terms":"lokalitet,specifično mjesto"},"place/town":{"name":"Gradić","terms":"gradić,mali grad,manje urbano područje"},"place/village":{"name":"Selo","terms":"selo,veće selo"},"point":{"name":"Tačka","terms":"tačka"},"power/generator":{"name":"Generator električne energije","terms":"generator el. energije,generator"},"power/line":{"name":"Energetski vod","terms":"energetski vod,naponski vod,elektroenergetska linija"},"power/minor_line":{"name":"Manji energetski vod","terms":"manji energetski vod,mali energetski vod"},"power/pole":{"name":"Naponski stub","terms":"naponski stub,stub el. napajanja"},"power/tower":{"name":"Visokonaponski dalekovod","terms":"visokonaponski dalekovod,visokonaponski toranj"},"power/transformer":{"name":"Transformator","terms":"transformator,transformator el. energije"},"railway/abandoned":{"name":"Napuštena željeznica","terms":"napuštena željeznička pruga,napuštena željeznica"},"railway/disused":{"name":"Nekorištena željeznica","terms":"nekorištena željeznička pruga,nekorištena željeznica"},"railway/subway_entrance":{"name":"Ulaz u podzemnu željeznicu","terms":"ulaz u podzemnu željeznicu,ulaz podzemne željeznice"},"relation":{"name":"Relacija","terms":"relacija,odnos objekata u skupu"},"route/ferry":{"name":"Trajektna ruta","terms":"trajektna ruta,ruta trajekta"},"shop":{"name":"Prodavnica","terms":"prodavnica,mjesto za prodaju roba i usluga"},"shop/alcohol":{"name":"Prodavnica alkoholnih pića","terms":"prodavnica alkohola,prodavnica alkoholnih pića"},"shop/bakery":{"name":"Pekara","terms":"pekara,proizvodnja i prodaja pekarskih proizvoda"},"shop/beauty":{"name":"Salon ljepote","terms":"salon ljepote,kozmetički salon"},"shop/beverages":{"name":"Prodavnica pića","terms":"prodavnica pića,radnja za prodaju pića"},"shop/bicycle":{"name":"Prodavnica bicikala","terms":"prodavnica bicikala,radnja za prodaju bicikala"},"shop/boutique":{"name":"Butik"},"shop/butcher":{"name":"Mesar","terms":"mesar,radnja za prodaju mesa"},"shop/car":{"name":"Salon automobila","terms":"salon automobila,dileri za prodaju automobila"},"shop/car_parts":{"name":"Prodavnica auto dijelova","terms":"radnja za prodaju autodijelova,prodaja dijelova za automobile"},"shop/car_repair":{"name":"Auto servis","terms":"auto servis,radnja za popravku automobila"},"shop/clothes":{"name":"Prodavnica odjeće","terms":"prodavnica odjeće,radnja za prodaju odjeće"},"shop/computer":{"name":"Prodavnica računara","terms":"radnja za prodaju računara,prodaja računara i računarske opreme"},"shop/convenience":{"name":"Bakalnica","terms":"bakalnica,dragstor,prodavnica,granap"},"shop/department_store":{"name":"Robna kuća","terms":"robna kuća,prodajni centar"},"shop/doityourself":{"name":"Sve za kuću","terms":"sve za kuću,prodaja dijelova za \"uradi sam\" radove"},"shop/electronics":{"name":"Prodavnica elektronike","terms":"prodavnica elektronike,radnja za prodaju elektronskih uređaja"},"shop/farm":{"name":"Štand proizvodnje","terms":"štand proizvodnje,štand proizvođača"},"shop/florist":{"name":"Cvjećar","terms":"cvjećara,radnja za prodaju cvijeća"},"shop/furniture":{"name":"Salon namještaja","terms":"prodavnica namještaja,radnja za prodaju namještaja"},"shop/garden_centre":{"name":"Centar za baštovanstvo","terms":"centar za baštovanstvo,centar za vrtlarstvo"},"shop/gift":{"name":"Prodavnica suvenira","terms":"prodavnica suvenira,prodavnica poklona"},"shop/greengrocer":{"name":"Zelenara","terms":"zelenara,radnja za prodaju zeleni"},"shop/hairdresser":{"name":"Frizer","terms":"frizer,frizerski salon"},"shop/hardware":{"name":"Prodavnica željezarije","terms":"prodavnica željezarije,gvožđara"},"shop/hifi":{"name":"HiFi prodavnica","terms":"hifi prodavnica,radnja za prodaju hifi uređaja"},"shop/laundry":{"name":"Praonica","terms":"praonica,servis za pranje rublja"},"shop/locksmith":{"name":"Bravar","terms":"bravar,kopiranje ključeva,bravarija"},"shop/mall":{"name":"Tržni centar","terms":"tržni centar,supermarket,hipermarket"},"shop/mobile_phone":{"name":"Prodavnica mobilnih uređaja","terms":"prodavnica mobilnih uređaja,radnja za prodaju mobitela"},"shop/motorcycle":{"name":"Salon motocikala","terms":"salon motocikala,radnja za prodaju motocikala"},"shop/music":{"name":"Muzička prodavnica","terms":"muzička prodavnica,prodaja muzičke opreme i muzike"},"shop/optician":{"name":"Optičar","terms":"optičar,optičarska radnja"},"shop/pet":{"name":"Prodavnica kućnih ljubnimaca","terms":"prodavnica kućnih ljubimaca,prodaja hrane za kućne ljubimce"},"shop/photo":{"name":"Fotografska radnja","terms":"fotografska radnja,fotograf,izrada fotografija"},"shop/shoes":{"name":"Prodavnica obuće","terms":"prodavnica obuće,salon obuće,prodavnica cipela"},"shop/sports":{"name":"Prodavnica sportske opreme","terms":"prodavnica sportske opreme,radnja za prodaju sportske opreme"},"shop/stationery":{"name":"Prodavnica kancelarijske opreme","terms":"prodaja kancelarijske opreme,radnja za prodaju kancelarijskog materijala"},"shop/supermarket":{"name":"Supermarket","terms":"supermarket,prodaja robe široke potrošnje"},"shop/toys":{"name":"Prodavnica igračaka","terms":"prodavnica igračaka,radnja za prodaju igračaka"},"shop/travel_agency":{"name":"Putnička agencija","terms":"putnička agencija,turistička agencija"},"shop/tyres":{"name":"Prodavnica guma","terms":"prodavnica guma,radnja za prodaju auto-guma"},"shop/vacant":{"name":"Prodavnica za iznajmljivanje"},"shop/video":{"name":"Video klub","terms":"videoklub,videoteka"},"tourism/artwork":{"name":"Umjetničko djelo","terms":"umjetničko djelo,umjetnina"},"tourism/attraction":{"name":"Turistička atrakcija","terms":"turistička atrakcija,spomenici kulture i prirode"},"tourism/caravan_site":{"name":"Kamp park","terms":"kamp park,autokamp"},"tourism/guest_house":{"name":"Gostinjska kuća","terms":"gostinjska kuća,gostinjski dom"},"tourism/hostel":{"name":"Hostel","terms":"hostel,prenoćište"},"tourism/hotel":{"name":"Hotel","terms":"hotel,svratište"},"tourism/information":{"name":"Informacije","terms":"informacije,turističke informacije"},"tourism/motel":{"name":"Motel","terms":"motel,motor hotel"},"tourism/museum":{"name":"Muzej","terms":"muzej,ustanova za čuvanje i izlaganje starina"},"tourism/picnic_site":{"name":"Izletište","terms":"izletište,mjesto za piknik"},"tourism/theme_park":{"name":"Tematski park","terms":"tematski park,park sa posebnim sadržajima"},"tourism/viewpoint":{"name":"Vidikovac","terms":"vidikovac,pogled"},"tourism/zoo":{"name":"Zoološki vrt","terms":"zoološki vrt,zoo vrt"},"type/boundary":{"name":"Granica","terms":"granica,linija,linija razgraničenja"},"type/boundary/administrative":{"name":"Admninistrativna granica","terms":"administrativna granica,administrativna linija"},"type/multipolygon":{"name":"Multipoligon"},"type/restriction":{"name":"Zabrana","terms":"zabrana,zabrana za vozila"},"type/route":{"name":"Ruta","terms":"ruta,trasa,maršruta"},"type/route/bus":{"name":"Bus ruta","terms":"autobuska trasa,autobuska ruta"},"type/route/detour":{"name":"Ruta zaobilaznice","terms":"zaobilazna trasa,zaobilazna ruta"},"type/route/ferry":{"name":"Trajektna ruta","terms":"trajektna trasa,trajektna ruta"},"type/route/hiking":{"name":"Planinarska ruta","terms":"planinarska ruta,pješačka ruta,ruta za šetnju"},"type/route/pipeline":{"name":"Cjevovodna ruta","terms":"cjevovodna trasa,cjevovodna ruta"},"type/route/power":{"name":"Energetska ruta","terms":"trasa napajanja,ruta napajanja"},"type/route/road":{"name":"Cestovna ruta","terms":"cestovna trasa,cestovna ruta"},"type/route/train":{"name":"Željeznička ruta","terms":"željeznička trasa,željeznička ruta,trasa voza"},"type/route/tram":{"name":"Tramvajska ruta","terms":"tramvajska trasa,tramvajska ruta"},"type/route_master":{"name":"Informacije o rutama","terms":"informacije o rutama,informacije o trasama"},"waterway/canal":{"name":"Kanal","terms":"kanal,prokop"},"waterway/dam":{"name":"Brana","terms":"brana,ustava,nasip"},"waterway/ditch":{"name":"Jarak","terms":"jarak,rov,prokop"},"waterway/drain":{"name":"Odvod","terms":"odvod,slivnik"},"waterway/river":{"name":"Rijeka","terms":"rijeka,riječni tok"},"waterway/stream":{"name":"Potok","terms":"potok,manji vodotok"},"waterway/weir":{"name":"Ustava","terms":"ustava,barijera preko rijeke"}}}}}
\ No newline at end of file
+{"bs":{"presets":{"fields":{"access":{"options":{"designated":{"title":"Namjenski"},"destination":{"title":"Odredište"},"no":{"title":"Zabranjeno"},"permissive":{"title":"Propustljiv"},"private":{"title":"Privatan"},"unknown":{"title":"Nepoznato"},"yes":{"title":"Dozvoljeno"}},"types":{"bicycle":"Bicikli","foot":"Pješke","horse":"Konji","motor_vehicle":"Motorna vozila"}},"access_aisle":{"label":"Vrsta"},"access_simple":{"options":{"no":"Ništa","permissive":"Propustljiv","private":"Privatan","unknown":"Nepoznato"}},"addr/interpolation":{"label":"Vrsta"},"address":{"label":"Adresa","placeholders":{"city":"Grad","conscriptionnumber":"123","country":"Zemlja","hamlet":"Zaselak","housename":"Naziv","housenumber":"123","place":"Mjesto","street":"Ulica","town":"Gradić"}},"admin_level":{"label":"Administrativni nivo"},"advertising":{"label":"Vrsta"},"aerialway":{"label":"Vrsta"},"aerialway/access":{"label":"Pristup"},"aerialway/bubble":{"label":"Balon"},"aerialway/capacity":{"label":"Kapacitet (po satu)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Trajanje (u minutama)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Zagrijano"},"aerialway/occupancy":{"label":"Zauzeće","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Pristup (ljeto)"},"aeroway":{"label":"Vrsta"},"aircraft/type":{"label":"Vrsta"},"amenity":{"label":"Vrsta"},"archaeological_site":{"label":"Vrsta"},"area/highway":{"label":"Vrsta"},"armrest":{"options":{"undefined":"Nepoznato"}},"artist":{"label":"Javna umjetnost"},"artwork_type":{"label":"Vrsta"},"atm":{"label":"Bankomat"},"attraction":{"label":"Vrsta"},"baby_feeding":{"options":{"no":"Ništa"}},"backrest":{"label":"Naslon za leđa"},"bar":{"label":"Bar"},"barrier":{"label":"Vrsta","options":{"bollard":"Bitva","cattle_grid":"Rešetke za stoku","city_wall":"Gradski zid","cycle_barrier":"Biciklistička prepreka","ditch":"Jarak","entrance":"Ulaz","fence":"Ograda","gate":"Kapija","hedge":"Živa ograda","kissing_gate":"Kapija (sa dvoje vrata)","retaining_wall":"Potporni zid","stile":"Prelaz preko ograde","toll_booth":"Naplatna rampa","wall":"Zid"}},"barrier_planter":{"label":"Barijera"},"basin":{"label":"Vrsta"},"bath/type":{"options":{"lake":"Jezero"}},"bench":{"label":"Klupa"},"bicycle_parking":{"label":"Vrsta"},"board_type":{"label":"Vrsta"},"bollard":{"label":"Vrsta"},"boules":{"label":"Vrsta"},"boundary":{"label":"Vrsta"},"bridge":{"label":"Vrsta"},"bridge/support":{"label":"Vrsta"},"bridge_combo":{"label":"Vrsta"},"building":{"label":"Građevina","options":{"bunker":"Bunker","commercial":"Poslovna zgrada","garage":"Garaža","house":"Kuća","hut":"Koliba","industrial":"Industrijska građevina","residential":"Stambena zgrada"}},"building/levels":{"label":"Nivoi","placeholder":"2, 4, 6..."},"building/levels/underground":{"placeholder":"2, 4, 6..."},"bunker_type":{"label":"Vrsta"},"cables":{"placeholder":"1, 2, 3..."},"camp_site":{"label":"Vrsta"},"capacity":{"label":"Kapacitet","placeholder":"50, 100, 200..."},"capacity/disabled_parking":{"placeholder":"1, 2, 3..."},"capacity/persons":{"placeholder":"50, 100, 200..."},"capacity_volume":{"placeholder":"50, 100, 200..."},"castle_type":{"label":"Vrsta"},"club":{"label":"Vrsta"},"collection_times":{"label":"Vremena skupljanja"},"community_centre":{"label":"Vrsta"},"construction":{"label":"Vrsta"},"consulate":{"label":"Vrsta"},"country":{"label":"Zemlja"},"couplings":{"placeholder":"1, 2, 3..."},"covered":{"label":"Pokriveno"},"craft":{"label":"Vrsta","options":{"beekeeper":"Pčelar","blacksmith":"Kovač","boatbuilder":"Brodograditelj","bookbinder":"Knjigovezac","brewery":"Pivara","carpenter":"Stolar","caterer":"Ugostitelj","clockmaker":"Proizvođač satova","dressmaker":"Izrada haljina","electrician":"Električar","gardener":"Vrtlar","hvac":"HVAC","insulation":"Izolator","key_cutter":"Izrada ključeva","locksmith":"Bravar","photographer":"Fotograf","plumber":"Vodoinstalater","roofer":"Krovopokrivač","saddler":"Sedlar","stonemason":"Klesar","tailor":"Krojač","window_construction":"Izrada prozora"}},"crop":{"options":{"grass":"Travnjak"}},"crossing":{"label":"Vrsta"},"cutting":{"label":"Vrsta"},"cycle_barrier":{"label":"Vrsta"},"cycle_network":{"label":"Mreža"},"cycleway":{"options":{"no":{"title":"Ništa"}}},"denomination":{"label":"Vjeroispovjest"},"denotation":{"label":"Označavanje"},"departures_board":{"options":{"no":"Ništa"}},"depot":{"label":"Vrsta"},"description":{"label":"Opis"},"destination_waterway":{"label":"Odredište"},"devices":{"placeholder":"1, 2, 3..."},"diplomatic":{"label":"Vrsta","options":{"embassy":"Ambasada"}},"direction_cardinal-US-CA-NZ":{"label":"Pravac"},"direction_clock":{"label":"Pravac","options":{"anticlockwise":"U smjeru suprotnom od kazaljke na satu","clockwise":"U smjeru kazaljke na satu"}},"disused/amenity":{"label":"Vrsta"},"disused/railway":{"label":"Vrsta"},"disused/shop":{"label":"Vrsta"},"dock":{"label":"Vrsta"},"dog":{"options":{"yes":"Dozvoljeno"}},"door_type":{"label":"Vrsta"},"drive_through":{"label":"Drive-in"},"embankment":{"label":"Vrsta"},"embassy":{"label":"Vrsta","options":{"yes":"Ambasada"}},"emergency":{"label":"Hitna"},"emergency_combo":{"label":"Vrsta"},"emergency_ward_entrance":{"label":"Vrsta"},"enforcement":{"label":"Vrsta"},"entrance":{"label":"Vrsta"},"fax":{"label":"Faks","placeholder":"+31 42 123 4567"},"fee":{"label":"Provizija"},"fence_type":{"label":"Vrsta"},"fire_hydrant/position":{"options":{"sidewalk":"Trotoar"}},"fire_hydrant/type":{"options":{"wall":"Zid"}},"fire_service_inlet":{"options":{"wall":"Zid"}},"fixme":{"label":"Popravi me"},"ford":{"label":"Vrsta"},"fountain":{"label":"Vrsta"},"gender":{"placeholder":"Nepoznato"},"generator/method":{"label":"Način","options":{"water-storage":"Rezervoar"}},"generator/source":{"label":"Izvor"},"generator/type":{"label":"Vrsta"},"government":{"label":"Vrsta"},"guest_house":{"label":"Vrsta"},"handicap":{"label":"Hendikep","placeholder":"1-18"},"healthcare":{"label":"Vrsta","options":{"clinic":"Klinika","dentist":"Zubar","doctor":"Doktor"}},"highway":{"label":"Vrsta"},"highway_cartpath":{"options":{"service":"Servisna cesta"}},"historic":{"label":"Vrsta","options":{"archaeological_site":"Arheološko područje","boundary_stone":"Granični kamen","castle":"Dvorac","memorial":"Memorijal","monument":"Spomenik","railway":"Željeznička pruga","ruins":"Ruševine","wayside_cross":"Krajputaš ili stećak","wayside_shrine":"Hram pored puta"}},"holding_position/type":{"label":"Vrsta","options":{"runway":"Pista"}},"incline":{"label":"Nagib"},"indoor_type":{"label":"Vrsta"},"industrial":{"label":"Vrsta"},"information":{"label":"Vrsta"},"internet_access":{"options":{"terminal":"Terminal","wired":"Kablovski","wlan":"WiFi"}},"kerb/kerb_barrier":{"label":"Vrsta"},"lamp_type":{"label":"Vrsta"},"landuse":{"label":"Vrsta"},"lanes":{"label":"Saobraćajne trake","placeholder":"1, 2, 3..."},"layer":{"label":"Sloj"},"leisure":{"label":"Vrsta"},"level_semi":{"label":"Nivoi"},"liaison":{"label":"Vrsta"},"lifeguard":{"label":"Vrsta"},"lift_gate/type":{"label":"Vrsta"},"lit":{"label":"Osvijetljeno"},"location":{"label":"Lokacija"},"man_made":{"label":"Vrsta"},"manhole":{"label":"Vrsta"},"map_type":{"label":"Vrsta"},"marker":{"label":"Vrsta"},"material":{"options":{"wood":"Šuma"}},"maxspeed":{"label":"Ograničenje brzine","placeholder":"40, 50, 60..."},"maxspeed/advisory":{"placeholder":"40, 50, 60..."},"maxspeed/hgv":{"placeholder":"40, 50, 60..."},"memorial":{"label":"Vrsta"},"mobile":{"placeholder":"+31 42 123 4567"},"mooring":{"options":{"private":"Privatan"}},"museum":{"label":"Vrsta"},"name":{"label":"Naziv","placeholder":"Uobičajeni naziv (ukoliko postoji)"},"natural":{"label":"Prirodno"},"network":{"label":"Mreža"},"network_road":{"label":"Mreža"},"note":{"label":"Bilješka"},"nudism":{"options":{"designated":"Namjenski","no":"Zabranjeno","permissive":"Propustljiv","yes":"Dozvoljeno"}},"office":{"label":"Vrsta","options":{"educational_institution":"Obrazovna institucija","employment_agency":"Agencija za zapošljavanje","estate_agent":"Agencija za nekretnine","financial":"Finansijski ured","government":"Vladin ured","insurance":"Ured za osiguranje","lawyer":"Pravni ured","ngo":"Ured NVO","physician":"Ljekar","research":"Ured za istraživanje","telecommunication":"Ured telekoma","travel_agent":"Putnička agencija"}},"oneway":{"label":"Jednosmjerno"},"opening_hours":{"label":"Sati","placeholder":"Nepoznato"},"operator":{"label":"Operator"},"organic":{"options":{"no":"Ništa"}},"par":{"label":"Par","placeholder":"3, 4, 5..."},"park_ride":{"label":"Podsticaj parkiranja"},"parking":{"label":"Vrsta","options":{"surface":{"title":"Površina"}}},"parking_entrance":{"label":"Vrsta"},"parking_space":{"label":"Vrsta"},"phases":{"placeholder":"1, 2, 3..."},"phone":{"label":"Telefon"},"pipeline":{"label":"Vrsta"},"piste/difficulty":{"label":"Težina"},"piste/grooming":{"label":"Održavanje"},"piste/type":{"label":"Vrsta","options":{"playground":"Igralište"}},"place":{"label":"Vrsta"},"playground":{"label":"Vrsta"},"post_box/type":{"label":"Vrsta"},"power":{"label":"Vrsta"},"public_bookcase/type":{"label":"Vrsta"},"pump":{"options":{"no":"Ništa"}},"railway":{"label":"Vrsta"},"recycling_type":{"label":"Vrsta"},"ref_disc_golf_hole":{"placeholder":"1-18"},"ref_golf_hole":{"placeholder":"1-18"},"relation":{"label":"Vrsta"},"religion":{"label":"Religija","options":{"buddhist":"Budizam","christian":"Kršćanstvo","hindu":"Hinduizam","jewish":"Judaizam","muslim":"Islam","shinto":"Šintoizam","taoist":"Taoizam"}},"residential":{"label":"Vrsta"},"resort":{"label":"Vrsta"},"restriction":{"label":"Vrsta"},"roller_coaster/track":{"label":"Vrsta"},"room":{"label":"Vrsta"},"route":{"label":"Vrsta"},"route_master":{"label":"Vrsta"},"ruins":{"label":"Vrsta"},"seamark/beacon_lateral/system":{"options":{"other":"Drugo"}},"seamark/buoy_lateral/system":{"options":{"other":"Drugo"}},"seats":{"placeholder":"2, 4, 6..."},"service":{"label":"Vrsta","options":{"alley":"Uska ulica","drive-through":"Drive-in","driveway":"Prilaz","emergency_access":"Pristup za hitne slučajeve","parking_aisle":"Prolaz kroz parking"}},"shelter":{"label":"Sklonište"},"shelter_type":{"label":"Vrsta"},"shop":{"label":"Vrsta"},"siren/type":{"label":"Vrsta","options":{"other":"Drugo"}},"site":{"label":"Vrsta"},"social_facility":{"label":"Vrsta","options":{"shelter":"Sklonište"}},"sport":{"options":{"golf":"Golf"}},"stile":{"label":"Vrsta"},"street_cabinet":{"label":"Vrsta"},"structure":{"label":"Struktura","options":{"bridge":"Most","cutting":"Usjek","embankment":"Nasip","tunnel":"Tunel"},"placeholder":"Nepoznato"},"structure_canal":{"label":"Struktura","options":{"bridge":"Most","tunnel":"Tunel"},"placeholder":"Nepoznato"},"structure_power":{"label":"Struktura"},"structure_waterway":{"label":"Struktura","options":{"tunnel":"Tunel"},"placeholder":"Nepoznato"},"studio":{"label":"Vrsta"},"substance":{"options":{"water":"Voda za piće"}},"substation":{"label":"Vrsta"},"substation_pipeline":{"label":"Vrsta"},"supervised":{"label":"Pod nadzorom"},"surface":{"label":"Površina","options":{"grass":"Travnjak","wood":"Šuma"}},"survey_point/structure":{"label":"Struktura","options":{"block":"Blok"}},"swimming_pool":{"label":"Vrsta"},"switch":{"label":"Vrsta"},"telecom":{"label":"Vrsta"},"telescope/type":{"label":"Vrsta"},"toilets":{"label":"Toaleti"},"toilets/disposal":{"label":"Način odlaganja otpada iz toaleta"},"tomb":{"label":"Vrsta"},"tourism":{"label":"Vrsta"},"tower/construction":{"label":"Građevinsko područje"},"tower/platforms":{"placeholder":"1, 2, 3..."},"tower/type":{"label":"Vrsta"},"townhall/type":{"label":"Vrsta"},"trade":{"label":"Vrsta"},"traffic_calming":{"label":"Vrsta"},"traffic_signals":{"label":"Vrsta"},"trail_visibility":{"label":"Vidljivost traga"},"transformer":{"label":"Vrsta"},"trench":{"label":"Vrsta"},"tunnel":{"label":"Vrsta"},"tunnel_combo":{"label":"Vrsta"},"usage_rail":{"options":{"tourism":"Turizam"}},"utility":{"options":{"power":"Energija","water":"Voda"}},"valve":{"label":"Vrsta"},"vehicles":{"options":{"monorail":"Pruga sa jednim kolosijekom","subway":"Podzemna željeznica","tram":"Tramvaj"}},"vending":{"options":{"water":"Voda za piće"}},"wall":{"label":"Vrsta"},"water":{"label":"Vrsta"},"water_source":{"options":{"pond":"Ribnjak","river":"Rijeka","stream":"Potok"}},"waterway":{"label":"Vrsta"},"website":{"label":"Internet stranica"},"wetland":{"label":"Vrsta"},"wheelchair":{"label":"Prilaz za invalidska kolica"},"wikipedia":{"label":"Wikipedia"},"windings":{"placeholder":"1, 2, 3..."}},"presets":{"address":{"name":"Adresa","terms":"adresa,prebivalište"},"aeroway/aerodrome":{"name":"Aerodrom","terms":"aerodrom,zračna luka"},"aeroway/hangar":{"name":"Hangar","terms":"hangar"},"aeroway/helipad":{"name":"Heliodrom","terms":"heliodrom,sletište/uzletište za helikopter"},"aeroway/runway":{"name":"Pista","terms":"pista,sletište/uzletište za avione"},"aeroway/taxiway":{"name":"Staza za vožnju","terms":"rulna staza,staza za vožnju aviona"},"amenity":{"name":"Pogodnost"},"amenity/arts_centre":{"name":"Centar za umjetnost","terms":"centar za umjetnost,umjetnički centar,art centar"},"amenity/atm":{"name":"Bankomat","terms":"bankomat,bankovni automat za novac"},"amenity/bank":{"name":"Banka","terms":"banka"},"amenity/bar":{"name":"Bar","terms":"bar,gostionica,pivnica"},"amenity/bench":{"name":"Klupa","terms":"klupa,klupica"},"amenity/bicycle_parking":{"name":"Parking bicikala","terms":"parking bicikala,mjesto za parkiranje bicikla"},"amenity/bicycle_rental":{"name":"Iznajmljivanje bicikala","terms":"iznajmljivanje bicikala,najam bicikla"},"amenity/boat_rental":{"name":"Iznajmljivanje plovila","terms":"iznajmljivanje čamaca,iznajmljivanje brodova,iznajmljivanje plovila"},"amenity/cafe":{"name":"Kafe","terms":"kafe,kafana,kafe-bar"},"amenity/car_rental":{"name":"Rent-a-car","terms":"iznajmljivanje automobila,najam automobila,rent-a-car"},"amenity/car_wash":{"name":"Autopraonica","terms":"autopraonica,samouslužna autopraonica,praonica automobila"},"amenity/cinema":{"name":"Kino","terms":"kino,kino dvorana,multipleks"},"amenity/clinic":{"name":"Klinika"},"amenity/courthouse":{"name":"Sudnica","terms":"sudnica,zgrada suda"},"amenity/dentist":{"name":"Zubar","terms":"zubar,stomatolog"},"amenity/doctors":{"name":"Doktor","terms":"doktor,ljekar"},"amenity/drinking_water":{"name":"Voda za piće","terms":"voda za piće,pitka voda"},"amenity/embassy":{"name":"Ambasada"},"amenity/fast_food":{"name":"Fast Food","terms":"fast food,restoran brze hrane"},"amenity/fire_station":{"name":"Vatrogasna stanica","terms":"vatrogasna stanica,zgrada vatrogasne službe"},"amenity/fountain":{"name":"Fontana","terms":"fontana,česma,vodoskok"},"amenity/fuel":{"name":"Benzinska pumpa","terms":"benzinska pumpa,pumpa za gorivo"},"amenity/grave_yard":{"name":"Groblje","terms":"groblje,greblje,mezarje"},"amenity/library":{"name":"Biblioteka","terms":"biblioteka,knjižnica"},"amenity/marketplace":{"name":"Tržnica","terms":"tržnica,pijaca"},"amenity/place_of_worship":{"name":"Bogomolja","terms":"božja kuća,bogomolja,mjesto za molitvu,hram"},"amenity/place_of_worship/buddhist":{"name":"Budistički hram","terms":"budistički hram,budistička bogomolja"},"amenity/police":{"name":"Policija","terms":"policija,milicija,organi reda"},"amenity/post_office":{"name":"Pošta","terms":"pošta,poštanski ured,ispostava pošte"},"amenity/pub":{"name":"Pub","terms":"pub,kafana,pivnica"},"amenity/ranger_station":{"name":"Stanica rendžerske službe","terms":"rendžerska služba,stanica rendžerske službe,rendžerska stanica"},"amenity/restaurant":{"name":"Restoran","terms":"restoran,gostionica"},"amenity/shelter":{"name":"Sklonište","terms":"sklonište,zaklon"},"amenity/studio":{"name":"Studio"},"amenity/taxi":{"name":"Taxi stajalište","terms":"taxi štand,taxi stajalište"},"amenity/telephone":{"name":"Telefon","terms":"telefon,telefonska govornica"},"amenity/theatre":{"name":"Pozorište","terms":"teatar,pozorište"},"amenity/townhall":{"name":"Gradska vijećnica","terms":"gradska vijećnica,vijećnica"},"amenity/vending_machine":{"name":"Automat","terms":"automat,automat za prodaju pića,automat sa pićem,automat sa slatkišima"},"area":{"name":"Područje","terms":"područje,zona,oblast"},"barrier":{"name":"Barijera","terms":"barijera,prepreka,pregrada"},"barrier/block":{"name":"Blok","terms":"blok"},"barrier/bollard":{"name":"Bitva","terms":"bitva,ormarić s priključcima"},"barrier/cattle_grid":{"name":"Rešetke za stoku","terms":"rešetke za stoku,ograda za stoku"},"barrier/city_wall":{"name":"Gradski zid","terms":"zid grada,gradski zid"},"barrier/cycle_barrier":{"name":"Biciklistička prepreka","terms":"barijera za bicikle,prepreka za bicikle"},"barrier/entrance":{"name":"Ulaz"},"barrier/fence":{"name":"Ograda","terms":"ograda,plot"},"barrier/gate":{"name":"Kapija","terms":"vrata,kapija"},"barrier/hedge":{"name":"Živa ograda","terms":"ograda,živica"},"barrier/kissing_gate":{"name":"Kapija (sa dvoje vrata)","terms":"kapija sa dvoje vrata"},"barrier/retaining_wall":{"name":"Potporni zid","terms":"potporni zid,zid za zadržavanje"},"barrier/stile":{"name":"Prelaz preko ograde","terms":"prelaz,prelaz preko ograde"},"barrier/toll_booth":{"name":"Naplatna rampa","terms":"naplatna rampa,naplatna kućica"},"barrier/wall":{"name":"Zid","terms":"zid,zidić,bedem"},"boundary":{"name":"Granica"},"boundary/administrative":{"name":"Admninistrativna granica","terms":"administrativna granica,administrativna linija"},"building":{"name":"Građevina","terms":"zgrada,građevina,kuća"},"building/bunker":{"name":"Bunker"},"building/commercial":{"name":"Poslovna zgrada","terms":"poslovna zgrada,zgrada firme"},"building/garage":{"name":"Garaža","terms":"garaža"},"building/house":{"name":"Kuća","terms":"kuća,dom"},"building/hut":{"name":"Koliba","terms":"koliba,brvnara"},"building/industrial":{"name":"Industrijska građevina","terms":"industrijska građevina,pogon"},"building/residential":{"name":"Stambena zgrada","terms":"stambena zgrada,zgrada za stanovanje"},"building_point":{"name":"Građevina"},"craft/beekeeper":{"name":"Pčelar"},"craft/blacksmith":{"name":"Kovač"},"craft/boatbuilder":{"name":"Brodograditelj"},"craft/bookbinder":{"name":"Knjigovezac"},"craft/carpenter":{"name":"Stolar"},"craft/caterer":{"name":"Ugostitelj"},"craft/clockmaker":{"name":"Proizvođač satova"},"craft/dressmaker":{"name":"Izrada haljina"},"craft/electrician":{"name":"Električar"},"craft/gardener":{"name":"Vrtlar"},"craft/insulator":{"name":"Izolator"},"craft/key_cutter":{"name":"Izrada ključeva"},"craft/locksmith":{"name":"Bravar"},"craft/photographer":{"name":"Fotograf"},"craft/plumber":{"name":"Vodoinstalater"},"craft/roofer":{"name":"Krovopokrivač"},"craft/saddler":{"name":"Sedlar"},"craft/stonemason":{"name":"Klesar"},"craft/tailor":{"name":"Krojač"},"craft/window_construction":{"name":"Izrada prozora"},"embankment":{"name":"Nasip"},"emergency/ambulance_station":{"name":"Stanica hitne pomoći","terms":"stanica hitne pomoći,hitna pomoć,hitna medicinska pomoć"},"emergency/fire_hydrant":{"name":"Hidrant za požar","terms":"hidrant,hidrant za požar"},"emergency/phone":{"name":"Telefon za hitne slučajeve","terms":"telefon za hitne slučajeve,hitna telefonska linija"},"golf/bunker":{"name":"Pješčana zamka","terms":"pješčana zamka,pješčana klopka,bunker"},"golf/fairway":{"name":"Fairway","terms":"osnovni dio golf terena,glavni teren za golf"},"golf/green":{"name":"Putting Green","terms":"područje golf terena najbliže rupi"},"golf/hole":{"name":"Rupa za golf","terms":"golf rupa,rupa za golf loptice"},"golf/lateral_water_hazard":{"name":"Vodena opasnost sa strane","terms":"opasnost of vode sa strane,voda sa strane"},"golf/rough":{"name":"Rough","terms":"područje \"divlje\" trave van igre,trava van golf terena"},"golf/tee":{"name":"Tee Box","terms":"\"tee\" kutija,kutija područja na početku rupe"},"golf/water_hazard":{"name":"Vodena opasnost","terms":"opasnost od vode,vodena opasnost"},"highway/bridleway":{"name":"Konjska staza","terms":"konjska staza,konjička staza,konjski trag"},"highway/crossing":{"name":"Prelaz","terms":"prelaz,pješački prelaz"},"highway/cycleway":{"name":"Biciklistička staza","terms":"biciklistička staza,staza za bicikle"},"highway/footway":{"name":"Pješačka staza","terms":"pješačka staza,staza,ugažena staza"},"highway/footway/sidewalk":{"name":"Trotoar","terms":"trotoar"},"highway/living_street":{"name":"Stambena ulica","terms":"ulica u stambenom naselju"},"highway/mini_roundabout":{"name":"Mini kružni tok","terms":"mali kružni tok,mini kružni tok"},"highway/motorway":{"name":"Autoput","terms":"autoput,autocesta"},"highway/motorway_link":{"name":"Poveznica na autoput","terms":"poveznica na autoput,poveznica na autocestu"},"highway/path":{"name":"Staza","terms":"staza,puteljak"},"highway/primary":{"name":"Primarna cesta","terms":"glavna cesta,cesta od glavnog značaja"},"highway/primary_link":{"name":"Primarna poveznica","terms":"primarna poveznica,poveznica na primarnu cestu"},"highway/residential":{"name":"Rezidencijalna cesta","terms":"rezidencijalna cesta,cesta kroz naselje"},"highway/road":{"name":"Nepoznata cesta","terms":"nepoznata cesta,nepoznat put"},"highway/secondary":{"name":"Sekundarna cesta","terms":"sekundarna cesta,cesta od sekundarnog značaja"},"highway/secondary_link":{"name":"Sekundarna poveznica","terms":"poveznica na sekundarnu cestu,poveznica na cestu sekundarnog značaja"},"highway/service":{"name":"Servisna cesta","terms":"servisna cesta,cesta za opsluživanje"},"highway/service/alley":{"name":"Uska ulica","terms":"uska ulica,uličica"},"highway/service/drive-through":{"name":"Drive-in","terms":"drive-in,usluge za vozače"},"highway/service/driveway":{"name":"Prilaz","terms":"prilaz,pristupna cesta"},"highway/service/emergency_access":{"name":"Pristup za hitne slučajeve","terms":"pristup za hitne slučajeve,prilaz u slučaju nužde"},"highway/service/parking_aisle":{"name":"Prolaz kroz parking","terms":"prolaz kroz parking,parkiralište"},"highway/steps":{"name":"Stepenice","terms":"stepenice,stube"},"highway/stop":{"name":"Znak stop","terms":"znak stop,saobraćajni znak stop,saobraćajni znak zaustavljanja"},"highway/tertiary":{"name":"Tercijarna cesta","terms":"tercijarna cesta,cesta od tercijarnog značaja"},"highway/tertiary_link":{"name":"Tercijarna poveznica","terms":"poveznica na tercijarnu cestu,poveznica na cestu od tercijarnog značaja"},"highway/traffic_signals":{"name":"Saobraćajna signalizacija","terms":"saobraćajna signalizacija,semafori,saobraćajni znakovi"},"highway/trunk":{"name":"Brza cesta","terms":"brza cesta,državna cesta"},"highway/trunk_link":{"name":"Poveznica na brzu cestu","terms":"poveznica na brzu cestu,poveznica na državnu cestu"},"highway/turning_circle":{"name":"Krug za okretanje","terms":"krug za okretanje,polukružno okretanje"},"historic":{"name":"Historijsko mjesto","terms":"historijsko nalazište,historijsko područje"},"historic/archaeological_site":{"name":"Arheološko područje","terms":"arheološko nalazište,arheološko područje"},"historic/boundary_stone":{"name":"Granični kamen","terms":"granični kamen,međaš"},"historic/castle":{"name":"Dvorac","terms":"dvorac,zamak"},"historic/memorial":{"name":"Memorijal","terms":"memorijalni spomenik,memorijal"},"historic/monument":{"name":"Spomenik","terms":"spomenik"},"historic/ruins":{"name":"Ruševine","terms":"ruševine,historijske ruševine"},"historic/wayside_cross":{"name":"Krajputaš ili stećak","terms":"krajputaš,stećak,krst kraj puta"},"historic/wayside_shrine":{"name":"Hram pored puta","terms":"znamenje kraj puta,kapelica"},"landuse/basin":{"name":"Sliv"},"landuse/cemetery":{"name":"Groblje","terms":"groblje,greblje,mezarje"},"landuse/farmyard":{"name":"Seosko dvorište","terms":"seosko dvorište,dvorište imanja"},"landuse/grass":{"name":"Travnjak","terms":"trava,travnjak"},"landuse/meadow":{"name":"Livada","terms":"livada,prirodni travnjak"},"landuse/military/barracks":{"name":"Kasarna","terms":"kasarna,zgrada kasarne"},"landuse/military/range":{"name":"Strelište","terms":"strelište,vojni poligon,poligon za vojne vježbe"},"landuse/orchard":{"name":"Voćnjak","terms":"voćnjak,uzgoj voća"},"landuse/pond":{"name":"Ribnjak"},"landuse/quarry":{"name":"Rudnik","terms":"kamenolom,vađenje kamena"},"landuse/reservoir":{"name":"Rezervoar"},"landuse/vineyard":{"name":"Vinograd","terms":"vinograd,uzgoj grožđa"},"leisure/common":{"name":"Uobičajeno","terms":"uobičajeno,uobičajeno ime,uobičajeni naziv"},"leisure/dog_park":{"name":"Igralište za pse","terms":"igralište za pse,park za pse"},"leisure/garden":{"name":"Vrt","terms":"vrt,bašta"},"leisure/golf_course":{"name":"Golf teren","terms":"golf teren,igralište za golf"},"leisure/marina":{"name":"Marina","terms":"marina,vrsta pristaništa"},"leisure/park":{"name":"Park","terms":"park,održavana zelena površina"},"leisure/pitch":{"name":"Sportsko igralište","terms":"sportsko igralište,sportski teren"},"leisure/pitch/american_football":{"name":"Polje za američki fudbal","terms":"polje za američki fudbal,igralište za američki fudbal"},"leisure/pitch/basketball":{"name":"Košarkaški teren","terms":"košarkaški teren,igralište za košarku"},"leisure/pitch/skateboard":{"name":"Poligon za skateboard","terms":"poligon za skateboard,park za skateboard,poligon za klizanje"},"leisure/pitch/soccer":{"name":"Fudbalski teren","terms":"fudbalski teren,igralište za fudbal"},"leisure/pitch/tennis":{"name":"Teniski teren","terms":"teniski teren,igralište za tenis"},"leisure/pitch/volleyball":{"name":"Odbojkaški teren","terms":"odbojkaški teren,igralište za odbojku"},"leisure/playground":{"name":"Igralište","terms":"igralište,dječje igralište"},"leisure/slipway":{"name":"Navoz","terms":"navoz,navoz na šine"},"leisure/stadium":{"name":"Stadion","terms":"stadion,sportsko borilište"},"leisure/swimming_pool":{"name":"Bazen","terms":"bazen,bazen za plivanje,plivački bazen"},"line":{"name":"Linija","terms":"linija"},"man_made/breakwater":{"name":"Lukobran","terms":"lukobran,valolom,utvrda obale"},"man_made/cutline":{"name":"Prosjek","terms":"šumski prosjek,prosjek kroz šumu"},"man_made/embankment":{"name":"Nasip","terms":"nasip"},"man_made/flagpole":{"name":"Jarbol","terms":"jarbol,jarbol za zastavu"},"man_made/lighthouse":{"name":"Svjetionik","terms":"svjetionik,toranj za svjetlosnu navigaciju"},"man_made/pier":{"name":"Pristanište","terms":"pristanište,mol"},"man_made/pipeline":{"name":"Cjevovod","terms":"cjevovod,sistem cijevi za prenos materijala"},"man_made/survey_point":{"name":"Izviđačnica","terms":"izviđačnica,tačka izviđanja"},"man_made/tower":{"name":"Toranj","terms":"toranj,kula"},"man_made/tower/observation":{"name":"Osmatračnica","terms":"osmatračnica,toranj za osmatranje,platforma za osmatranje,toranj za turiste,protupožarni toranj"},"man_made/wastewater_plant":{"name":"Postrojenje za obradu otpadnih voda","terms":"postrojenje za obradu otpadnih voda,prerada otpadnih voda"},"man_made/water_tower":{"name":"Vodo-toranj","terms":"vodo-toranj,vodeni toranj"},"man_made/water_works":{"name":"Vodosnadbjevanje","terms":"vodosnadbjevanje,snadbjevanje vodom"},"natural/bay":{"name":"Zaliv","terms":"zaliv,vodena površina okružena kopnom sa tri strane"},"natural/beach":{"name":"Plaža","terms":"plaža,obala za kupanje"},"natural/cliff":{"name":"Litica","terms":"litica,hrid,stijena"},"natural/coastline":{"name":"Obala","terms":"obala,obalno područje"},"natural/fell":{"name":"Planinska golet","terms":"nekultivirana zemlja na visokim nadmorskim visinama,neobrađena zemlja,visoki pašnjak"},"natural/glacier":{"name":"Glečer","terms":"glečer,ledenjak"},"natural/grassland":{"name":"Pašnjak","terms":"pašnjak,prirodni travnjak"},"natural/heath":{"name":"Vrijes","terms":"vrijes,vrijesište"},"natural/peak":{"name":"Vrh","terms":"vrh,kota"},"natural/scree":{"name":"Osulina","terms":"sipar,sipina,osulina,nakupina osutog oštrobridnog materijala"},"natural/scrub":{"name":"Gustiš","terms":"gustiš,šipražje,nisko raslinje"},"natural/spring":{"name":"Izvor","terms":"izvor,početak vodenog toka"},"natural/tree":{"name":"Drvo","terms":"drvo,stablo"},"natural/water":{"name":"Voda","terms":"voda"},"natural/water/basin":{"name":"Sliv","terms":"sliv,bazen"},"natural/water/lake":{"name":"Jezero","terms":"jezero,vodom ispunjena kopnena depresija"},"natural/water/pond":{"name":"Ribnjak","terms":"ribnjak,bara,plitka vodena masa"},"natural/water/reservoir":{"name":"Rezervoar","terms":"rezervoar,spremište vode"},"natural/wetland":{"name":"Močvara","terms":"močvara,tresetište,mrtvaja"},"office":{"name":"Ured","terms":"ured,uslužni ured"},"office/administrative":{"name":"Administrativni ured"},"office/diplomatic/embassy":{"name":"Ambasada","terms":"ambasada,konzulat,predstavništvo strane zemlje"},"office/educational_institution":{"name":"Obrazovna institucija","terms":"obrazovna institucija,institucija obrazovanja,institucija za obrazovanje"},"office/employment_agency":{"name":"Agencija za zapošljavanje","terms":"agencija za zapošljavanje,ured za zapošljavanje,agencija za posredovanje u zapošljavanju"},"office/estate_agent":{"name":"Agencija za nekretnine","terms":"agencija za nekretnine,agencija za posredovanje u prodaji nekretnina"},"office/financial":{"name":"Finansijski ured","terms":"finansijski ured,ured za finansije"},"office/government":{"name":"Vladin ured","terms":"ured vlade,vladin ured"},"office/insurance":{"name":"Ured za osiguranje","terms":"ured za osiguranje,kancelarija za osiguranje"},"office/lawyer":{"name":"Pravni ured","terms":"pravni ured,pravna kancelarija"},"office/ngo":{"name":"Ured NVO","terms":"nevladin ured,ured nvo,nvo kancelarija"},"office/physician":{"name":"Ljekar"},"office/research":{"name":"Ured za istraživanje","terms":"ured za istraživanje,istraživački ured,istraživačka kancelarija"},"office/telecommunication":{"name":"Ured telekoma","terms":"ured telekoma,ured telekom operatera,kancelarija telekom operatera"},"office/travel_agent":{"name":"Putnička agencija"},"place":{"name":"Mjesto"},"place/city":{"name":"Grad","terms":"grad,urbano naselje"},"place/hamlet":{"name":"Zaselak","terms":"seoce,malo selo,zaselak"},"place/island":{"name":"Ostrvo","terms":"ostrvo,kopno okruženo vodom"},"place/isolated_dwelling":{"name":"Izolirano stanovanje","terms":"izolirano stanovanje,udaljene kuće"},"place/locality":{"name":"Lokalitet","terms":"lokalitet,specifično mjesto"},"place/square":{"name":"Kvadrat"},"place/town":{"name":"Gradić","terms":"gradić,mali grad,manje urbano područje"},"place/village":{"name":"Selo","terms":"selo,veće selo"},"point":{"name":"Tačka","terms":"tačka"},"power/generator":{"name":"Generator električne energije","terms":"generator el. energije,generator"},"power/line":{"name":"Energetski vod","terms":"energetski vod,naponski vod,elektroenergetska linija"},"power/minor_line":{"name":"Manji energetski vod","terms":"manji energetski vod,mali energetski vod"},"power/pole":{"name":"Naponski stub","terms":"naponski stub,stub el. napajanja"},"power/substation":{"name":"Trafo stanica","terms":"trafo,trafo stanica"},"power/tower":{"name":"Visokonaponski dalekovod","terms":"visokonaponski dalekovod,visokonaponski toranj"},"power/transformer":{"name":"Transformator","terms":"transformator,transformator el. energije"},"public_transport/platform/bus_point":{"terms":"autobuska stanica,autobusko stajalište"},"railway/abandoned":{"name":"Napuštena željeznica","terms":"napuštena željeznička pruga,napuštena željeznica"},"railway/disused":{"name":"Nekorištena željeznica","terms":"nekorištena željeznička pruga,nekorištena željeznica"},"railway/subway_entrance":{"name":"Ulaz u podzemnu željeznicu","terms":"ulaz u podzemnu željeznicu,ulaz podzemne željeznice"},"relation":{"name":"Relacija","terms":"relacija,odnos objekata u skupu"},"route/ferry":{"name":"Trajektna ruta","terms":"trajektna ruta,ruta trajekta"},"shop":{"name":"Prodavnica","terms":"prodavnica,mjesto za prodaju roba i usluga"},"shop/alcohol":{"name":"Prodavnica alkoholnih pića","terms":"prodavnica alkohola,prodavnica alkoholnih pića"},"shop/bakery":{"name":"Pekara","terms":"pekara,proizvodnja i prodaja pekarskih proizvoda"},"shop/beauty":{"name":"Salon ljepote","terms":"salon ljepote,kozmetički salon"},"shop/beverages":{"name":"Prodavnica pića","terms":"prodavnica pića,radnja za prodaju pića"},"shop/bicycle":{"name":"Prodavnica bicikala","terms":"prodavnica bicikala,radnja za prodaju bicikala"},"shop/boutique":{"name":"Butik"},"shop/butcher":{"name":"Mesar","terms":"mesar,radnja za prodaju mesa"},"shop/car":{"name":"Salon automobila","terms":"salon automobila,dileri za prodaju automobila"},"shop/car_parts":{"name":"Prodavnica auto dijelova","terms":"radnja za prodaju autodijelova,prodaja dijelova za automobile"},"shop/car_repair":{"name":"Auto servis","terms":"auto servis,radnja za popravku automobila"},"shop/clothes":{"name":"Prodavnica odjeće","terms":"prodavnica odjeće,radnja za prodaju odjeće"},"shop/computer":{"name":"Prodavnica računara","terms":"radnja za prodaju računara,prodaja računara i računarske opreme"},"shop/convenience":{"name":"Bakalnica","terms":"bakalnica,dragstor,prodavnica,granap"},"shop/department_store":{"name":"Robna kuća","terms":"robna kuća,prodajni centar"},"shop/doityourself":{"name":"Sve za kuću","terms":"sve za kuću,prodaja dijelova za \"uradi sam\" radove"},"shop/electronics":{"name":"Prodavnica elektronike","terms":"prodavnica elektronike,radnja za prodaju elektronskih uređaja"},"shop/farm":{"name":"Štand proizvodnje","terms":"štand proizvodnje,štand proizvođača"},"shop/florist":{"name":"Cvjećar","terms":"cvjećara,radnja za prodaju cvijeća"},"shop/furniture":{"name":"Salon namještaja","terms":"prodavnica namještaja,radnja za prodaju namještaja"},"shop/garden_centre":{"name":"Centar za baštovanstvo","terms":"centar za baštovanstvo,centar za vrtlarstvo"},"shop/gift":{"name":"Prodavnica suvenira","terms":"prodavnica suvenira,prodavnica poklona"},"shop/greengrocer":{"name":"Zelenara","terms":"zelenara,radnja za prodaju zeleni"},"shop/hairdresser":{"name":"Frizer","terms":"frizer,frizerski salon"},"shop/hardware":{"name":"Prodavnica željezarije","terms":"prodavnica željezarije,gvožđara"},"shop/hifi":{"name":"HiFi prodavnica","terms":"hifi prodavnica,radnja za prodaju hifi uređaja"},"shop/laundry":{"name":"Praonica","terms":"praonica,servis za pranje rublja"},"shop/locksmith":{"name":"Bravar","terms":"bravar,kopiranje ključeva,bravarija"},"shop/mall":{"name":"Tržni centar","terms":"tržni centar,supermarket,hipermarket"},"shop/mobile_phone":{"name":"Prodavnica mobilnih uređaja","terms":"prodavnica mobilnih uređaja,radnja za prodaju mobitela"},"shop/motorcycle":{"name":"Salon motocikala","terms":"salon motocikala,radnja za prodaju motocikala"},"shop/music":{"name":"Muzička prodavnica","terms":"muzička prodavnica,prodaja muzičke opreme i muzike"},"shop/optician":{"name":"Optičar","terms":"optičar,optičarska radnja"},"shop/pet":{"name":"Prodavnica kućnih ljubnimaca","terms":"prodavnica kućnih ljubimaca,prodaja hrane za kućne ljubimce"},"shop/photo":{"name":"Fotografska radnja","terms":"fotografska radnja,fotograf,izrada fotografija"},"shop/shoes":{"name":"Prodavnica obuće","terms":"prodavnica obuće,salon obuće,prodavnica cipela"},"shop/sports":{"name":"Prodavnica sportske opreme","terms":"prodavnica sportske opreme,radnja za prodaju sportske opreme"},"shop/stationery":{"name":"Prodavnica kancelarijske opreme","terms":"prodaja kancelarijske opreme,radnja za prodaju kancelarijskog materijala"},"shop/supermarket":{"name":"Supermarket","terms":"supermarket,prodaja robe široke potrošnje"},"shop/tailor":{"name":"Krojač"},"shop/toys":{"name":"Prodavnica igračaka","terms":"prodavnica igračaka,radnja za prodaju igračaka"},"shop/travel_agency":{"name":"Putnička agencija","terms":"putnička agencija,turistička agencija"},"shop/tyres":{"name":"Prodavnica guma","terms":"prodavnica guma,radnja za prodaju auto-guma"},"shop/vacant":{"name":"Prodavnica za iznajmljivanje","terms":"prodavnica za iznajmljivanje,prodavnica za najam"},"shop/video":{"name":"Video klub","terms":"videoklub,videoteka"},"tourism/artwork":{"name":"Umjetničko djelo","terms":"umjetničko djelo,umjetnina"},"tourism/attraction":{"name":"Turistička atrakcija","terms":"turistička atrakcija,spomenici kulture i prirode"},"tourism/caravan_site":{"name":"Kamp park","terms":"kamp park,autokamp"},"tourism/guest_house":{"name":"Gostinjska kuća","terms":"gostinjska kuća,gostinjski dom"},"tourism/hostel":{"name":"Hostel","terms":"hostel,prenoćište"},"tourism/hotel":{"name":"Hotel","terms":"hotel,svratište"},"tourism/information":{"name":"Informacije","terms":"informacije,turističke informacije"},"tourism/motel":{"name":"Motel","terms":"motel,motor hotel"},"tourism/museum":{"name":"Muzej","terms":"muzej,ustanova za čuvanje i izlaganje starina"},"tourism/picnic_site":{"name":"Izletište","terms":"izletište,mjesto za piknik"},"tourism/theme_park":{"name":"Tematski park","terms":"tematski park,park sa posebnim sadržajima"},"tourism/viewpoint":{"name":"Vidikovac","terms":"vidikovac,pogled"},"tourism/zoo":{"name":"Zoološki vrt","terms":"zoološki vrt,zoo vrt"},"type/boundary":{"name":"Granica","terms":"granica,linija,linija razgraničenja"},"type/boundary/administrative":{"name":"Admninistrativna granica","terms":"administrativna granica,administrativna linija"},"type/multipolygon":{"name":"Multipoligon","terms":"multipoligon,mnogougaonik"},"type/restriction":{"name":"Zabrana","terms":"zabrana,zabrana za vozila"},"type/route":{"name":"Ruta","terms":"ruta,trasa,maršruta"},"type/route/bus":{"name":"Bus ruta","terms":"autobuska trasa,autobuska ruta"},"type/route/detour":{"name":"Ruta zaobilaznice","terms":"zaobilazna trasa,zaobilazna ruta"},"type/route/ferry":{"name":"Trajektna ruta","terms":"trajektna trasa,trajektna ruta"},"type/route/hiking":{"name":"Planinarska ruta","terms":"planinarska ruta,pješačka ruta,ruta za šetnju"},"type/route/pipeline":{"name":"Cjevovodna ruta","terms":"cjevovodna trasa,cjevovodna ruta"},"type/route/power":{"name":"Energetska ruta","terms":"trasa napajanja,ruta napajanja"},"type/route/road":{"name":"Cestovna ruta","terms":"cestovna trasa,cestovna ruta"},"type/route/train":{"name":"Željeznička ruta","terms":"željeznička trasa,željeznička ruta,trasa voza"},"type/route/tram":{"name":"Tramvajska ruta","terms":"tramvajska trasa,tramvajska ruta"},"type/route_master":{"name":"Informacije o rutama","terms":"informacije o rutama,informacije o trasama"},"type/waterway":{"name":"Vodotok","terms":"vodotok,vodeni tok"},"waterway/canal":{"name":"Kanal","terms":"kanal,prokop"},"waterway/dam":{"name":"Brana","terms":"brana,ustava,nasip"},"waterway/ditch":{"name":"Jarak","terms":"jarak,rov,prokop"},"waterway/drain":{"name":"Odvod","terms":"odvod,slivnik"},"waterway/river":{"name":"Rijeka","terms":"rijeka,riječni tok"},"waterway/stream":{"name":"Potok","terms":"potok,manji vodotok"},"waterway/weir":{"name":"Ustava","terms":"ustava,barijera preko rijeke"}}}}}
\ No newline at end of file
diff --git a/dist/translations/ca.json b/dist/translations/ca.json
index b5a88b59..266ad70e 100644
--- a/dist/translations/ca.json
+++ b/dist/translations/ca.json
@@ -8,6 +8,9 @@
"category-building": {
"name": "Tipus d'edificis"
},
+ "category-climbing": {
+ "name": "Objectes d'Escalada"
+ },
"category-golf": {
"name": "Elements de golf"
},
@@ -163,20 +166,21 @@
"housenumber": "123",
"housenumber!jp": "Nº Edifici / Nº Lot",
"neighbourhood": "Barri",
- "neighbourhood!jp": "Chōme/Aza/Koaza",
+ "neighbourhood!jp": "Machi/Chōme/Aza/Koaza",
"place": "Lloc",
"postcode": "Codi postal",
"province": "Província",
"province!cn": "Província / Municipi / AR / SAR",
"province!jp": "Prefectura",
"quarter": "Quarter",
- "quarter!jp": "Ōaza/Machi",
+ "quarter!jp": "Ōaza",
"state": "Estat",
"street": "Carrer",
"subdistrict": "Subdistricte",
"subdistrict!vn": "Ward/Commune/Townlet",
"suburb": "Sector",
- "suburb!jp": "Suburbi",
+ "suburb!jp": "Ward (政令市)",
+ "town": "Ciutat",
"unit": "Unitat"
},
"terms": "ubicació,localització,direcció"
@@ -184,6 +188,9 @@
"admin_level": {
"label": "Nivell administratiu"
},
+ "advertising": {
+ "label": "Tipus"
+ },
"aerialway": {
"label": "Tipus"
},
@@ -231,6 +238,16 @@
"label": "Aire condicionat",
"terms": "aire condicionat,climatització,condicionament de l'aire,sistema de refredament,refrigeració"
},
+ "aircraft/type": {
+ "label": "Tipus",
+ "options": {
+ "helicopter": "Helicòpter",
+ "military": "Militar"
+ }
+ },
+ "alt_name": {
+ "label": "Nom Alternatiu"
+ },
"amenity": {
"label": "Tipus"
},
@@ -244,7 +261,22 @@
"label": "Per a animals"
},
"archaeological_site": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "baths": "Banys",
+ "city": "Ciutat Històrica",
+ "crannog": "Crannog",
+ "enclosure": "Recinte",
+ "fortification": "Fortificació",
+ "hut_circle": "Cabana circular",
+ "megalith": "Megàlit",
+ "necropolis": "Necròpoli",
+ "petroglyph": "Petròglif",
+ "roman_circus": "Circ romà",
+ "roman_villa": "Vila romana",
+ "settlement": "Assentament històric",
+ "tumulus": "Túmul"
+ }
},
"architect": {
"label": "Arquitecte",
@@ -253,6 +285,14 @@
"area/highway": {
"label": "Tipus"
},
+ "armrest": {
+ "label": "Reposabraços",
+ "options": {
+ "no": "Sense reposabraços",
+ "undefined": "Desconegut",
+ "yes": "Un o més reposabraços"
+ }
+ },
"artist": {
"label": "Artista"
},
@@ -274,11 +314,57 @@
"label": "Desnivell total",
"terms": "desnivell,guany d'elevació acumulat"
},
+ "athletics_pitch": {
+ "label": "Event",
+ "options": {
+ "discus_throw": "Llançament de disc",
+ "hammer_throw": "Llançament de martell",
+ "high_jump": "Salt d'alçada",
+ "javelin_throw": "Llançament de javelina",
+ "long_jump": "Salt de llargada",
+ "pole_vault": "Salt de perxa",
+ "shot_put": "Llançament de pes",
+ "triple_jump": "Triple salt"
+ }
+ },
+ "athletics_track": {
+ "label": "Event",
+ "options": {
+ "javelin_throw": "Llançament de javelina",
+ "long_jump": "Salt de llargada",
+ "pole_vault": "Salt de perxa",
+ "running": "Cursa a peu",
+ "sprint": "Cursa de velocitat",
+ "steeplechase": "Cursa d'obstacles",
+ "triple_jump": "Triple salt"
+ }
+ },
"atm": {
"label": "Caixer automàtic"
},
"attraction": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "alpine_coaster": "Muntanya russa Alpina",
+ "amusement_ride": "Atracció de fira",
+ "animal": "Recinte per a animals",
+ "big_wheel": "Roda de fira",
+ "bumper_car": "Autos de xoc",
+ "bungee_jumping": "Salt elàstic",
+ "carousel": "Cavallets",
+ "dark_ride": "Tren fantasma",
+ "drop_tower": "Torres de caiguda lliure",
+ "kiddie_ride": "Passeig infantil",
+ "log_flume": "Canal de troncs",
+ "maze": "Laberint",
+ "pirate_ship": "Passeig en vaixell pirata",
+ "river_rafting": "Passeig pels ràpids del riu",
+ "roller_coaster": "Muntanya russa",
+ "summer_toboggan": "Tobogan d'estiu",
+ "swing_carousel": "Gronxadors penjants",
+ "train": "Tren turístic",
+ "water_slide": "Tobogan d'aigua"
+ }
},
"automated": {
"label": "Automàtic"
@@ -300,14 +386,39 @@
"terms": "travessia,fora de pista"
},
"backrest": {
- "label": "Espatller"
+ "label": "Respatler"
},
"bar": {
"label": "Bar",
"terms": "bar,barra"
},
"barrier": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "block": "Bloc gran",
+ "bollard": "Piló",
+ "cattle_grid": "Reixat ",
+ "chain": "Cadena",
+ "city_wall": "Muralla",
+ "cycle_barrier": "Barrera per a ciclistes",
+ "ditch": "Cuneta",
+ "entrance": "Entrada",
+ "fence": "Tanca",
+ "gate": "Porta",
+ "guard_rail": "Guarda rail",
+ "hedge": "Tanca de bardissa",
+ "height_restrictor": "Restrictor de gàlib",
+ "jersey_barrier": "Barrera Jersey",
+ "kerb": "Vorada",
+ "kissing_gate": "Porta giratòria",
+ "lift_gate": "Porta barrera",
+ "retaining_wall": "Mur de contenció",
+ "stile": "Escaló",
+ "swing_gate": "Porta batent",
+ "toll_booth": "Peatge",
+ "turnstile": "Torniquet",
+ "wall": "Mur"
+ }
},
"barrier_planter": {
"label": "Barrera",
@@ -328,11 +439,15 @@
"bath/open_air": {
"label": "Aire Lliure"
},
- "bath/sand_bath": {
- "label": "Bany de sorra"
- },
"bath/type": {
- "label": "Especialitat"
+ "label": "Especialitat",
+ "options": {
+ "hammam": "Bany turc",
+ "hot_spring": "Font Càlida",
+ "lake": "Llac",
+ "onsen": "Onsen",
+ "thermal": "Bany Termal"
+ }
},
"beauty": {
"label": "Serveis",
@@ -361,6 +476,14 @@
"wall_loops": "Aparcabicis (aguanta només la roda)"
}
},
+ "bicycle_road": {
+ "label": "Ciclocarrer",
+ "options": {
+ "undefined": "No",
+ "yes": "Sí"
+ },
+ "terms": "bicicarril,carril bici,via ciclable,carrer per a bicicletes,carril compartit"
+ },
"bike_ride": {
"label": "Aparcament d'enllaç per a bicicletes",
"terms": "aparcament disuasori de bicicletes,aparca i monta,estaciona i monta"
@@ -411,6 +534,10 @@
"rising": "Piló Retràctil"
}
},
+ "books": {
+ "label": "Tipus de llibres",
+ "terms": "gènere literari,categoria de llibres"
+ },
"booth": {
"label": "Cabina",
"terms": "dues,ambdues,les dos"
@@ -432,24 +559,96 @@
"label": "Marca",
"terms": "marca"
},
- "brewery": {
- "label": "Cervesa de barril / tirada",
- "terms": "cervesa de barril,cervesa tirada"
- },
"bridge": {
"label": "Tipus",
"placeholder": "Predeterminat"
},
+ "bridge/ref": {
+ "label": "Número de pont",
+ "terms": "número de pont,identificador de pont,codi de pont,referència de pont"
+ },
"bridge/support": {
"label": "Tipus"
},
"bridge_combo": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "aqueduct": "Aqüeducte",
+ "cantilever": "Pont en mènsula",
+ "covered": "Pont cobert",
+ "movable": "Pont mòbil",
+ "viaduct": "Viaducte"
+ }
},
"building": {
"label": "Edifici",
+ "options": {
+ "allotment_house": "Casa de l'hort",
+ "apartments": "Edifici d'apartaments",
+ "barn": "Graner",
+ "boathouse": "Caseta per a vaixells",
+ "bungalow": "Bungalou",
+ "bunker": "Búnquer",
+ "cabin": "Cabina",
+ "carport": "Aixopluc",
+ "cathedral": "Catedral",
+ "chapel": "Capella",
+ "church": "Església",
+ "civic": "Edifici cívic",
+ "college": "Edifici d'una escola professional",
+ "commercial": "Edifici comercial",
+ "construction": "Edifici en construcció",
+ "cowshed": "Estable de vaques",
+ "detached": "Casa aïllada",
+ "dormitory": "Dormitoris",
+ "farm": "Casa a una granja",
+ "farm_auxiliary": "Edifici d'una granja",
+ "fire_station": "Edifici d'un parc de bombers",
+ "garage": "Garatge",
+ "garages": "Garatges",
+ "ger": "Iurta",
+ "grandstand": "Tribuna",
+ "greenhouse": "Hivernacle",
+ "hangar": "Hangar",
+ "hospital": "Edifici hospitalari",
+ "hotel": "Edifici d'un hotel",
+ "house": "Casa",
+ "houseboat": "Casa flotant",
+ "hut": "Cabana",
+ "industrial": "Edifici industrial",
+ "kindergarten": "Edifici de preescolar / llar d'infants",
+ "manufacture": "Edifici per a producció industrial",
+ "mosque": "Mesquita",
+ "office": "Edifci d'oficines",
+ "outbuilding": "Construcció annexa",
+ "pavilion": "Pavelló",
+ "public": "Edifici públic",
+ "residential": "Edifici residencial",
+ "retail": "Edifici comercial",
+ "roof": "Teulada",
+ "ruins": "Edifici en ruines",
+ "school": "Edifici escolar",
+ "semidetached_house": "Casa adossada",
+ "service": "Edifici de servei",
+ "shed": "Cobert",
+ "stable": "Estable",
+ "stadium": "Estadi",
+ "static_caravan": "Autocaravana",
+ "sty": "Porcellera",
+ "synagogue": "Sinagoga",
+ "temple": "Temple",
+ "terrace": "Cases en filera",
+ "train_station": "Edifici d'estació de tren",
+ "transportation": "Edifici per a transports",
+ "university": "Edifici universitari",
+ "warehouse": "Magatzem"
+ },
"terms": "edifici,construcció,casa,estructura"
},
+ "building/colour": {
+ "label": "Color de la façana",
+ "terms": "façana,color,edifici,color de l'edifici"
+ },
"building/flats": {
"label": "Unitats",
"placeholder": "2, 4, 6, 8..."
@@ -512,13 +711,24 @@
"panning": "Panoràmica"
}
},
+ "camp_site": {
+ "label": "Tipus",
+ "options": {
+ "serviced": {
+ "description": "Disposa de lavabos, aigua, dutxes i electricitat"
+ },
+ "standard": {
+ "description": "Disposa de lavabos i aigua dins o prop"
+ }
+ }
+ },
"capacity": {
"label": "Capacitat",
"placeholder": "50, 100, 200...",
"terms": "capacitat"
},
"capacity/caravans": {
- "label": "Capacitat (Caravanes)",
+ "label": "Capacitat (Autocaravana / Remolc d'acampada)",
"placeholder": "10, 20, 50..."
},
"capacity/disabled_parking": {
@@ -541,6 +751,10 @@
"label": "Capacitat (metres cúbics)",
"placeholder": "50, 100, 200..."
},
+ "caravans": {
+ "label": "Autocaravana / Remolc d'acampada",
+ "terms": "furgoneta camper,autocaravana,furgo camper,caravana camper,remolc de càmping,remolc camper,caravana de càmping,caravana remolcable"
+ },
"cash_in": {
"label": "Dipòsit"
},
@@ -573,25 +787,59 @@
},
"check_date": {
"label": "Data d'última revisió ",
- "placeholder": "AAAA-MM-DD"
+ "placeholder": "AAAA-MM-DD",
+ "terms": "reenquesta,enquesta,visita"
},
"circumference": {
"label": "Diàmetre a l'alçada de l'home",
"placeholder": "1 m, 20 cm, 30 \"…",
"terms": "diamatre a l'altura de l'home,dah"
},
+ "climbing/length": {
+ "label": "Llargada (metres)",
+ "terms": "longitud,metres,distància,dimensió,grandària,llarg"
+ },
+ "climbing/trad": {
+ "label": "Escalada tradicional"
+ },
"clothes": {
"label": "Roba",
+ "options": {
+ "babies": "Roba per a nadons",
+ "children": "Roba per a nens",
+ "denim": "Teixit texà",
+ "fur": "Roba de pelatge",
+ "hats": "Barrets",
+ "maternity": "Roba de maternitat",
+ "men": "Roba d'home",
+ "motorcycle": "Roba per a montar en moto",
+ "oversize": "Roba de talles grans",
+ "socks": "Calcetins",
+ "sports": "Roba d'esport",
+ "suits": "Vestits",
+ "swimwear": "Roba de bany",
+ "traditional": "Roba Tradicional / Vestuari Popular",
+ "underwear": "Llenceria",
+ "wedding": "Roba de boda",
+ "women": "Roba de dona",
+ "workwear": "Roba de feina"
+ },
"terms": "roba"
},
"club": {
"label": "Tipus"
},
"collection_times": {
- "label": "Horari de recollida"
+ "label": "Horari de recollida",
+ "terms": "horaris de recollida,horaris de col·lecció,horaris d'agafada,horaris de ramassada"
},
"collector": {
- "label": "Elements"
+ "label": "Elements",
+ "options": {
+ "coins": "Monedes",
+ "comics": "Còmics",
+ "stamps": "Segells"
+ }
},
"colour": {
"label": "Color",
@@ -605,6 +853,16 @@
"label": "Tipus de comunicació",
"terms": "mitjans,communicació,telèfon,correu,misstge,trucada,trucà,cridada,cridà,xat,chat,videotrucada,videotrucà,videocridada,videocridà,televisió,radio,fax,morse,telepatia,xifrat,reunions,braille,signes,sons,sorolls,carta,llenguatges,idiomes"
},
+ "community_centre": {
+ "label": "Tipus",
+ "options": {
+ "cultural_centre": "Centre cultural",
+ "family_centre": "Centre familiar",
+ "parish_hall": "Ajuntament pedani",
+ "village_hall": "Ajuntament",
+ "youth_centre": "Centre Juvenil"
+ }
+ },
"connectivity": {
"label": "Connectivitat"
},
@@ -612,11 +870,24 @@
"label": "Tipus"
},
"consulate": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "consular_agency": "Agència de Serveis Consulars",
+ "consular_office": "Oficina de Serveis Consulars",
+ "consulate_general": "Consulat General",
+ "honorary_consul": "Consul honorari",
+ "residence": "Residència oficial del Consul",
+ "yes": "Consulat"
+ }
},
"consulting": {
"label": "Expertesa"
},
+ "contact/facebook": {
+ "label": "Nom d'usuari de Facebook o URL",
+ "placeholder": "https://www.facebook.com/ComerçLocal",
+ "terms": "nom d'usuari de facebook,adreça d'usuari de facebook,identificador d'usuari de facebook,url de perfil de facebook,enllaç de perfil de facebook"
+ },
"contact/webcam": {
"label": "URL de la webcam",
"placeholder": "http://example.com/"
@@ -690,7 +961,7 @@
"key_cutter": "Fabricant de claus",
"locksmith": "Copisteria de claus",
"metal_construction": "Treballador del metall",
- "oil_mill": "Pou petrolífer",
+ "oil_mill": "Almàssera",
"painter": "Pintor",
"parquet_layer": "Instal·lador de parquet",
"photographer": "Fotògraf",
@@ -761,7 +1032,7 @@
"crossing": {
"label": "Tipus",
"options": {
- "traffic_signals": "Creumaent controlat per semàfors",
+ "traffic_signals": "Pas de vianants controlat per semàfors",
"uncontrolled": "Només senyalització horitzontal",
"unmarked": "Sense senyalització horitzontal o semàfors"
}
@@ -786,7 +1057,7 @@
"label": "Llums"
},
"crossing/markings": {
- "label": "Senyalització del creuament",
+ "label": "Senyalització del pas de vianants",
"options": {
"dashes": "Línies transversals discontínues",
"dots": "Línies transversals puntejades",
@@ -804,7 +1075,7 @@
"zebra:double": "Barres longitudinals dobles",
"zebra:paired": "Barres longitudinals emparellades"
},
- "terms": "pas de vianants,creuament,pas de peatons,pas de zebra"
+ "terms": "pas de vianants,creuament,pas de peatons,pas de zebra,marques horitzontals"
},
"crossing_raised": {
"label": "Elevat",
@@ -816,21 +1087,37 @@
"cuisine": {
"label": "Cuines",
"options": {
+ "african": "Africana",
"american": "Americana",
+ "arab": "Àrab",
+ "argentinian": "Argentina",
"asian": "Asiàtica",
+ "balkan": "Balcànica",
+ "barbecue": "Barbacoa",
+ "bavarian": "Bavaresa",
+ "brazilian": "Brasilera",
+ "brunch": "Esmorzar",
"bubble_tea": "Te de bombolles",
"burger": "Hamburgueseria",
"cake": "Pastís",
+ "caribbean": "Caribenca",
"chicken": "Pollastre",
"chinese": "Xinesa",
- "chocolate": "Xocolata",
"coffee_shop": "Cafeteria",
+ "crepe": "Crepe",
+ "curry": "Curri",
"dessert": "Postres",
+ "diner": "Diner americà",
"donut": "Donut",
+ "european": "Europea",
+ "filipino": "Filipí",
"fish": "Peix",
"french": "Francesa",
+ "frozen_yogurt": "Iogurt gelat",
+ "georgian": "Georgià",
"german": "Alemanya",
"greek": "Grega",
+ "hawaiian": "Hawaiana",
"hot_dog": "frankfurt",
"ice_cream": "Gelats",
"indian": "India",
@@ -842,24 +1129,44 @@
"korean": "Coreana",
"lebanese": "Libanesa",
"malaysian": "Malàisia",
+ "mediterranean": "Mediterrània",
"mexican": "Mexicana",
- "pankcake": "Crep americana",
+ "middle_eastern": "Orient mitjà",
+ "moroccan": "Marroquí",
+ "noodle": "Fideus",
+ "oriental": "Oriental",
+ "pancake": "Crep americana",
"pasta": "Pasta",
+ "pastry": "Rebosteria",
+ "persian": "Persa",
+ "peruvian": "Peruà",
"pizza": "Pizza",
"polish": "Polonesa",
"portuguese": "Portuguesa",
+ "ramen": "Ramen",
"regional": "Regional",
"russian": "Russa",
"salad": "Amanida",
"sandwich": "Entrepans",
+ "sausage": "Salsitxes",
"seafood": "Marisc",
+ "shawarma": "Shawarma",
+ "soba": "Soba",
+ "soup": "Sopa",
"spanish": "Espanyola",
"steak_house": "rostidor / graella",
"sushi": "Sushi",
"taiwanese": "Taiwanés",
+ "tapas": "Tapes",
+ "tea": "Te",
+ "tex-mex": "Tex-Mex",
"thai": "Thai",
"turkish": "Turca",
- "vietnamese": "Vietnamita"
+ "udon": "Udon",
+ "ukrainian": "Ucraïnès",
+ "vietnamese": "Vietnamita",
+ "western": "Occidental",
+ "wings": "Aletes de pollastre"
},
"terms": "cuina,tipus de menjar,gastronomia"
},
@@ -871,6 +1178,17 @@
"label": "Tipus",
"placeholder": "Predeterminat"
},
+ "cycle_barrier": {
+ "label": "Tipus",
+ "options": {
+ "double": "Doble"
+ }
+ },
+ "cycle_barrier/installation": {
+ "options": {
+ "fixed": "Fixa"
+ }
+ },
"cycle_network": {
"label": "Xarxa"
},
@@ -885,16 +1203,8 @@
"description": "Sense carril per a bicis",
"title": "Cap"
},
- "opposite": {
- "description": "Un carril bici que discorre en ambdós sentits en un carrer d'un sol sentit",
- "title": "Carril bici en sentit contrari"
- },
- "opposite_lane": {
- "description": "Un carril bici que discorre contrari al sentit de circulació",
- "title": "Carril bici contrari"
- },
"separate": {
- "description": "Indica que una via per a bicicletes ha estat mepejada com una geometria separada",
+ "description": "Indica que una via per a bicicletes ha estat mapejada com una geometria separada",
"title": "Carrilbici mapejat separadament"
},
"share_busway": {
@@ -920,6 +1230,9 @@
"dance/style": {
"label": "Estils de ball"
},
+ "dance/teaching": {
+ "label": "Ofereix classes de dansa"
+ },
"date": {
"label": "Data"
},
@@ -950,6 +1263,9 @@
"deposit/trolley": {
"label": "Dipòsit"
},
+ "depot": {
+ "label": "Tipus"
+ },
"depth": {
"label": "Profunditat (Metres)"
},
@@ -962,14 +1278,13 @@
"terms": "descripció,resumen"
},
"design": {
- "label": "Disseny",
- "terms": "disseny,diseny"
+ "label": "Disseny"
},
"destination": {
"label": "Destinacions"
},
"destination/ref": {
- "label": "Números de carretera de destinació"
+ "label": "Codi de la carretera de destinació"
},
"destination/symbol": {
"label": "Símbols de destinació"
@@ -1005,7 +1320,11 @@
"terms": "sense gluten,halal,kosher,koser,sense lactosa,pescetarià,cru,vegà,vegetariana,vegetarià"
},
"diplomatic": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "consulate": "Consulat",
+ "embassy": "Embaixada"
+ }
},
"diplomatic/services": {
"label": "Serveis"
@@ -1070,7 +1389,18 @@
"label": "Tipus"
},
"dock": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "drydock": "Dic Sec",
+ "floating": "Dic Sec Flotant"
+ }
+ },
+ "dock/height": {
+ "label": "Altura del moll (metres)"
+ },
+ "dock/width": {
+ "label": "Amplada del moll (metres)",
+ "terms": "longitud,metres,distància,dimensió,grandària,llarg"
},
"dog": {
"label": "Gossos",
@@ -1084,6 +1414,12 @@
"door": {
"label": "Porta"
},
+ "door/height": {
+ "label": "Altura de la porta (metres)"
+ },
+ "door/width": {
+ "label": "Amplada de la porta (metres)"
+ },
"door_type": {
"label": "Tipus"
},
@@ -1099,7 +1435,7 @@
"terms": "aigua potable,apta per al consum,aigua bebible"
},
"drive_through": {
- "label": "Autoservei.",
+ "label": "Servei d'atenció al cotxe",
"terms": "ventanilla,finestreta,ventanilla d'autoservei,ventanilla d'autoservici,finestreta d'autoservei,finestreta d'autoservici,finestra d'autoservei,finesta d'autoservici,autorestaurant"
},
"duration": {
@@ -1162,7 +1498,7 @@
"emergency": "Eixida d'Emergència",
"entrance": "Només Entrada",
"exit": "Només Eixida",
- "garage": "Porta de Garatge",
+ "garage": "Porta de garatge",
"home": "Residència Privada",
"main": "Principal",
"secondary": "Secundària",
@@ -1208,11 +1544,10 @@
"label": "Posició",
"options": {
"green": "Herba",
- "lane": "A la calçada",
+ "lane": "Carril de la calçada",
"parking_lot": "Lloc d'aparcament",
"sidewalk": "Vorera"
- },
- "terms": "posició,ubicació,localització"
+ }
},
"fire_hydrant/pressure": {
"label": "Pressió (bar)",
@@ -1227,6 +1562,31 @@
"wall": "Mur"
}
},
+ "fire_mains": {
+ "label": "Tipus de xarxa",
+ "options": {
+ "dry": "Xarxa dedicada (normalment seca)",
+ "no": "No",
+ "yes": "Tipus desconegut"
+ }
+ },
+ "fire_service_inlet": {
+ "label": "Forma",
+ "options": {
+ "pillar": "Pilar",
+ "pipe": "Tub Tapat",
+ "underground": "Subterrani",
+ "wall": "Paret"
+ }
+ },
+ "fire_sprinkler": {
+ "label": "Entrada dels aspersor contra incendis",
+ "options": {
+ "dry": "Dedicated Network (Normally Dry)",
+ "no": "No",
+ "yes": "Tipus desconegut"
+ }
+ },
"fireplace": {
"label": "Llar de foc"
},
@@ -1281,10 +1641,16 @@
"label": "Zona inundable",
"terms": "propens a inundacions,aigua"
},
+ "footrest": {
+ "label": "Reposapeus"
+ },
"ford": {
"label": "Tipus",
"placeholder": "Predeterminat"
},
+ "fortification_type": {
+ "label": "Tipus de fortificació"
+ },
"fountain": {
"label": "Tipus"
},
@@ -1305,14 +1671,16 @@
"HGV_diesel": "Gasoil per a camions",
"LH2": "Hidrogen Líquid",
"adblue": "AdBlue / AUS 32",
- "adblue:canister": "AdBlue / AUS 32 (venut en pots)",
+ "adblue:canister": "AdBlue / AUS 32 (venut en envasos)",
"biodiesel": "Biodièsel",
"cng": "Gas Natural Comprimit (GNC)",
"diesel": "Gasoil",
"e10": "Gasolina E10",
+ "e5": "Gasolina E5",
"e85": "Gasolina E85",
"h70": "Hidrogen Gaseos (700 bar)",
- "lpg": "Gas Liquat del Petroli (GLP)",
+ "lng": "Gas natural liquat (LNG)",
+ "lpg": "Gas liquat del petroli (LPG)",
"octane_100": "Gasolina 100 Octans",
"octane_80": "Gasolina 80 Octans",
"octane_85": "Gasolina 85 Octans",
@@ -1431,12 +1799,56 @@
"label": "Barana",
"terms": "barana,barandilla,passa mans"
},
+ "handrest": {
+ "label": "Reposamans"
+ },
"hashtags": {
"label": "Etiquetes",
"placeholder": "#exemple"
},
+ "hazard_boundary": {
+ "label": "Perill",
+ "options": {
+ "archery_range": "Fletxes",
+ "avalanche": "Allau",
+ "biohazard": "Perill biològic",
+ "contamination": "Contaminació química",
+ "electricity": "Descàrrega elèctrica",
+ "hole": "Forat",
+ "minefield": "Camp de mines",
+ "nuclear": "Nuclear / Radioactiva",
+ "quicksand": "Sorramoll",
+ "shooting_range": "Arma de foc"
+ }
+ },
"healthcare": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "alternative": "Medicina Alternativa",
+ "audiologist": "Adiòleg",
+ "birthing_centre": "Casa de maternitat",
+ "blood_bank": "Banc de Sang",
+ "blood_donation": "Centre de donació de sang",
+ "clinic": "Clínica",
+ "dentist": "Dentista",
+ "dialysis": "Centre de diàlisi",
+ "doctor": "Consultori",
+ "hospice": "Hospici",
+ "hospital": "Hospital",
+ "laboratory": "Laboratori Mèdic",
+ "midwife": "Llevador",
+ "nurse": "Infermera",
+ "occupational_therapist": "Terapeuta ocupacional",
+ "optometrist": "Optometrista",
+ "pharmacy": "Farmàcia",
+ "physiotherapist": "Fisioteràpia",
+ "podiatrist": "Podòleg",
+ "psychotherapist": "Psicoterapeuta",
+ "rehabilitation": "Instal·lació de rehabilitació",
+ "sample_collection": "Instal·lació de col·leccions de mostres",
+ "speech_therapist": "Logopeda",
+ "vaccination_centre": "Centre de vacunació"
+ }
},
"healthcare/speciality": {
"label": "Especialitats",
@@ -1467,11 +1879,11 @@
"dermatovenereology": "Dermatovenereologia",
"diabetology": "Diabetologia",
"diagnostic_radiology": "Diagnòstic Radiològic",
- "emergency": "Emergències",
+ "emergency": "Emergències\nUrgències",
"endocrinology": "Endocrinologia",
"fertility": "Fertilitat",
"gastroenterology": "Gastroenterologia",
- "general": "Medicina Familiar i Comunitaria",
+ "general": "Medicina general",
"geriatrics": "Medicina Geriàtrica",
"gynaecology": "Obestricia i Ginecologia",
"haematology": "Hematologia",
@@ -1503,7 +1915,7 @@
"palliative": "Cures Paliatives",
"pathology": "Anatomia Patològica",
"physiatry": "Medicinia Física i Rehabilitació",
- "plastic_surgery": "Cirurgia Plàstica",
+ "plastic_surgery": "Medicina Estètica",
"podiatry": "Podologia",
"proctology": "Cirugia Colorectal",
"psychiatry": "Psiquiatria",
@@ -1519,7 +1931,7 @@
"systemic": "Terapia sistèmica",
"traditional_chinese_medicine": "Medicina Tradicional Xinesa",
"transplant": "Trasplantament",
- "trauma": "Ortopèdia",
+ "trauma": "Traumatologia\nOrtopèdia",
"tropical": "Medicina Tropical",
"tuina": "Tui Na",
"unani": "Medicina Unani",
@@ -1562,7 +1974,34 @@
}
},
"historic": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "archaeological_site": "Jaciment Arqueològic",
+ "bomb_crater": "Cràter de bombes",
+ "boundary_stone": "Fita",
+ "building": "Edifici històric",
+ "castle": "Castell",
+ "charcoal_pile": "Pila de carbó",
+ "church": "Església",
+ "city_gate": "Porta de la vila",
+ "citywalls": "Muralla de la ciutat",
+ "fort": "Historic Fort",
+ "manor": "Casa senyorial",
+ "memorial": "Memorial",
+ "milestone": "Fita",
+ "millstone": "Mola de molí",
+ "mine": "Mina",
+ "mine_shaft": "Pou d'una mina",
+ "monument": "Monument",
+ "pillory": "Costell històric",
+ "railway": "Via del tren",
+ "ruins": "Ruïnes",
+ "shieling": "Refugi escocés de pastura",
+ "tomb": "Tomba",
+ "wayside_cross": "Creu al camí",
+ "wayside_shrine": "Santuari al camí",
+ "wreck": "Naufragi"
+ }
},
"historic/civilization": {
"label": "Civilització històrica"
@@ -1588,15 +2027,8 @@
"label": "Cistella de basquetbol",
"placeholder": "1, 2, 4..."
},
- "horse_dressage": {
- "label": "Doma clàssica",
- "options": {
- "equestrian": "Sí",
- "undefined": "No"
- }
- },
"horse_riding": {
- "label": "Equitació",
+ "label": "Centre hípic",
"options": {
"horse_riding": "Sí",
"undefined": "No"
@@ -1610,21 +2042,17 @@
"dangerous": "Perillos: Sols transitable per a genets i cavalls molt experimetats i amb bon oratge. Desmontat.",
"demanding": "Utilitzar amb precaució: Via irregular, ocasionalment passatges complicats",
"difficult": "Difícil: Via estreta i exposat. Pot tenir obstacles que passar-hi i passatges estrets.",
- "impossible": "Impossible: Camí o pont no transitable par a caballs. Massa estret, soport insuficient, obstables com escales. Perill de mort"
+ "impossible": "Intransitable: Camí o pont no transitable per cavalls. Massa estret, suport insuficient, obstacles com escales. Perill de vida."
},
"placeholder": "Difícil, perillós...",
"terms": "dificultat per a muntar a cavall,difucultat de l'equitació"
},
- "horse_stables": {
- "label": "Hípica",
- "options": {
- "stables": "Sí",
- "undefined": "No"
- }
- },
"hot_water": {
"label": "Aigua calenta"
},
+ "house": {
+ "label": "Tipus de casa"
+ },
"iata": {
"label": "Codi d'aeroport IATA"
},
@@ -1683,13 +2111,12 @@
"terms": "wifi,wlan,connexió a internet,router,internet,xarxa"
},
"internet_access/fee": {
- "label": "Accés a internet",
+ "label": "Taxa d'accés a Internet",
"options": {
"customers": "Només per a clients",
"no": "Gratuït",
"yes": "De pagament"
- },
- "terms": "wifi,wlan,connexió a internet,router,internet,xarxa,taxa"
+ }
},
"internet_access/ssid": {
"label": "Nom de la xarxa Wifi",
@@ -1699,6 +2126,12 @@
"label": "Interval",
"terms": "intermedi,entremig,lapse,periode"
},
+ "irrigation_pivot": {
+ "options": {
+ "pivot": "Sí",
+ "undefined": "No"
+ }
+ },
"junction/ref_oneway": {
"label": "Número de cruïlla",
"terms": "número de sortida,número d’ixida,nombre de sortida,nombre d’ixida,número d’eixida,nombre d’eixida"
@@ -1713,11 +2146,41 @@
"terms": "intersecció,ixida,eixida,sortida"
},
"kerb": {
- "label": "Gual"
+ "label": "Vorada",
+ "options": {
+ "flush": {
+ "description": "Una vorada rebaixada que està rasa, a l'altura de l'entorn.",
+ "title": "Rasa"
+ },
+ "lowered": {
+ "description": "Una vorada rebaixada o gual que pot ser traspassada per usuaris de cadires de rodes, no superior a uns pocs centímetres.",
+ "title": "Rebaixada"
+ },
+ "no": {
+ "description": "No hi ha cap vorada en aquesta ubicació.",
+ "title": "No"
+ },
+ "raised": {
+ "description": "Una vorada elevada que no pot ser traspassada fàcilment per usuaris de cadires de rodes, de més d'uns pocs centímetres.",
+ "title": "Elevada"
+ },
+ "rolled": {
+ "description": "Una vorada elevada amb vora arrodonida que facilita l'accés a cotxes o bicicletes, però no per a cadires de rodes.",
+ "title": "Forma de canal"
+ },
+ "yes": {
+ "description": "En aquest lloc hi ha algun tipus de vorada, sense saber si està elevada, rebaixada, rasa, etc.",
+ "title": "Sí"
+ }
+ },
+ "terms": "borda,vorera,marge de la carretera,cantó,llinatge"
},
"kerb/height": {
"label": "Alçada"
},
+ "kerb/kerb_barrier": {
+ "label": "Tipus"
+ },
"kitchen": {
"label": "Cuina",
"terms": "cuina,especialitat"
@@ -1754,6 +2217,9 @@
"placeholder": "0",
"terms": "capa"
},
+ "layer_1": {
+ "placeholder": "0"
+ },
"leaf_cycle": {
"label": "Cicle del fullatge",
"options": {
@@ -1802,8 +2268,18 @@
"terms": "autoescola,clases de conduir,carnet de conduir,auto"
},
"lifeguard": {
+ "label": "Tipus",
+ "options": {
+ "base": "Base de socorrisme",
+ "tower": "Torre de vigilància"
+ }
+ },
+ "lifeguard_check": {
"label": "Socorrista"
},
+ "lift_gate/type": {
+ "label": "Tipus"
+ },
"line_attachment": {
"label": "Fixació de la línia",
"terms": "soport de la línia,enganx de la línia"
@@ -1816,6 +2292,9 @@
"label": "Il·luminat",
"terms": "llum,fanal,farola,il·luminació"
},
+ "loc_name": {
+ "label": "Nom local"
+ },
"location": {
"label": "Ubicació",
"terms": "ubicació,localització"
@@ -1831,7 +2310,8 @@
"label": "Resclosa"
},
"lockable": {
- "label": "Bloquejable"
+ "label": "Bloquejable",
+ "terms": "tancable amb clau,amb sistema de bloqueig,amb seguretat,amb possibilitat de tancar"
},
"locked": {
"label": "Bloquejat"
@@ -1843,36 +2323,93 @@
"label": "Tipus"
},
"manufacturer": {
- "label": "Fabricant"
+ "label": "Fabricant",
+ "terms": "fabricant,productor,productor industrial,constructor,productor de productes"
},
"map_size": {
"label": "Cobertura"
},
"map_type": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "street": "Mapa de carreteres",
+ "topo": "Mapa topogràfic"
+ }
},
"mapillary": {
- "label": "ID de la imatge de Mapillary"
+ "label": "ID de la imatge de Mapillary",
+ "terms": "identificador d'imatge de mapillary,id d'imatge de mapillary,identificació d'imatge de mapillary"
},
"marker": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "aerial": {
+ "title": "Aeri"
+ },
+ "ground": {
+ "title": "Terra"
+ },
+ "plate": {
+ "title": "Placa"
+ },
+ "stone": {
+ "description": "Marques pintades o gravades sobre una pedra",
+ "title": "Pedra"
+ }
+ }
},
"material": {
- "label": "Material"
+ "label": "Material",
+ "options": {
+ "adobe": "Tova",
+ "aluminium": "Alumini",
+ "brass": "Llautó",
+ "brick": "Maó",
+ "bronze": "Bronze",
+ "concrete": "Ciment",
+ "dry_stone": "Pedra seca",
+ "glass": "Vidre",
+ "granite": "Granit",
+ "iron": "Ferro",
+ "limestone": "Pedra calcària",
+ "marble": "Marbre",
+ "metal": "Metall",
+ "plastic": "Plàstic",
+ "reinforced_concrete": "Ciment Reforçat",
+ "rock": "Roca",
+ "sand": "Sorra",
+ "sandstone": "Gres",
+ "soil": "Terra",
+ "steel": "Acer",
+ "stone": "Pedra",
+ "wood": "Fusta"
+ },
+ "terms": "matèria,substància,element,compost,component,matèria primera,material de construcció"
},
"mattress": {
- "label": "Matalassos disponibles"
+ "label": "Matalassos disponibles",
+ "terms": "matalassos disponibles,colchons disponibles,llits disponibles,mobles per dormir disponibles"
},
"max_age": {
"label": "Edat màxima",
"terms": "majoria d'edat,edat màxima"
},
+ "maxaxleload_bridge": {
+ "label": "Límit de pes de l'eix",
+ "terms": "límit de pes per eix,límit de pes per roda,límit de pes per eix motriu,restricció de pes per eix"
+ },
"maxheight": {
- "label": "Altura màxima"
+ "label": "Height Limit",
+ "terms": "límit d'altura,restricció d'altura,alçada màxima,límit de mida vertical"
+ },
+ "maxlength": {
+ "label": "Límit de longitud ",
+ "terms": "límit de longitud,restricció de longitud,mida màxima,límit de mida horitzontal"
},
"maxspeed": {
"label": "Límit de velocitat",
- "placeholder": "40, 50, 60..."
+ "placeholder": "40, 50, 60...",
+ "terms": "límit de velocitat,restricció de velocitat,velocitat màxima,límit de velocitat permès"
},
"maxspeed/advisory": {
"label": "Límit de velocitat recomanat",
@@ -1885,23 +2422,50 @@
"terms": "recomanació de velocitat per a camions"
},
"maxstay": {
- "label": "Estada màxima",
- "terms": "durada màxima,estacionament màxim,temps màxim"
+ "label": "Límit de temps",
+ "terms": "límit de temps,restricció de temps,termini de temps,durada màxima,límit de temps permès"
},
"maxweight": {
- "label": "Pes màxim"
+ "label": "Límit de pes"
},
"maxwidth": {
- "label": "Amplada màxima"
+ "label": "Width Limit"
+ },
+ "maxwidth/physical": {
+ "label": "Width Limit"
},
"memorial": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "blue_plaque": "Placa blava",
+ "bust": "Bust",
+ "cross": "Creu memorial",
+ "ghost_bike": "Bicicleta Fantasma",
+ "obelisk": "Obelisc",
+ "plaque": "Placa commemorativa",
+ "sculpture": "Esculptura",
+ "statue": "Estatua",
+ "stele": "Estela",
+ "stolperstein": "Llamborda de topada",
+ "stone": "Pedra",
+ "war_memorial": "Memorial de guerra"
+ }
+ },
+ "message": {
+ "label": "Missatge"
},
"microbrewery": {
"label": "Microcerveseria"
},
"military_service": {
- "label": "Sevei Militar"
+ "label": "Sevei Militar",
+ "options": {
+ "air_force": "Forces aèries",
+ "army": "Exèrcit de terra",
+ "coast_guard": "Guàrdia costanera",
+ "marines": "Marina",
+ "navy": "Armada"
+ }
},
"mimics": {
"label": "Imitació"
@@ -1914,7 +2478,13 @@
},
"minspeed": {
"label": "Límit de velocitat mínima",
- "placeholder": "20, 30, 40..."
+ "placeholder": "20, 30, 40...",
+ "terms": "límit de velocitat mínim,velocitat mínima obligatòria,velocitat mínima permesa,restricció de velocitat mínima"
+ },
+ "mobile": {
+ "label": "Telèfon mòbil",
+ "placeholder": "+34 623 245 547",
+ "terms": "telèfon mòbil,telèfon cel·lular,smartphone,dispositiu mòbil,telèfon intel·ligent."
},
"model": {
"label": "Model"
@@ -1922,6 +2492,16 @@
"monitoring_multi": {
"label": "Seguiment"
},
+ "mooring": {
+ "label": "Amarrament",
+ "options": {
+ "commercial": "Comercial",
+ "guest": "Convidats",
+ "no": "No",
+ "private": "Privat",
+ "yes": "Sí"
+ }
+ },
"mtb/scale": {
"label": "Dificultat per a bicicletes de muntanya",
"options": {
@@ -2014,8 +2594,71 @@
"note": {
"label": "Nota"
},
+ "nudism": {
+ "label": "Nudisme",
+ "options": {
+ "customary": "Costum",
+ "designated": "Designat",
+ "no": "Prohibit",
+ "obligatory": "Obligatori",
+ "permissive": "Permés",
+ "yes": "Permés"
+ },
+ "terms": "naturisme,estil de vida sense roba,recreació nua,opcional de roba,nudisme social"
+ },
"office": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "accountant": "Oficina d'un comptable",
+ "adoption_agency": "Agència d'adopció",
+ "advertising_agency": "Agència de publicitat",
+ "architect": "Oficina d'un arquitecte",
+ "association": "Organització sense ànim de lucre",
+ "charity": "Oficina de caritat",
+ "company": "Oficina d'una corporació",
+ "construction_company": "Oficina d'una empresa de construcció",
+ "consulting": "Oficina d'una consultoria",
+ "coworking": "Espai de 'Coworking'",
+ "diplomatic": "Oficina diplomàtica",
+ "educational_institution": "Institució Educativa",
+ "employment_agency": "Oficina de treball",
+ "energy_supplier": "Oficina d'una Distribuïdora Energètica",
+ "engineer": "Estudi d'enginyeria",
+ "estate_agent": "Agència immobiliària",
+ "financial": "Oficina d'una financera",
+ "financial_advisor": "Assessoria financera",
+ "forestry": "Oficina forestal",
+ "foundation": "Oficina d'una fundació",
+ "government": "Oficina governamental",
+ "graphic_design": "Estudi de disseny gràfic.",
+ "guide": "Oficina de guies turístics",
+ "insurance": "Oficina d'una Companyia Asseguradora",
+ "it": "Oficina de tecnologies de la informació",
+ "lawyer": "Bufet d'advocats",
+ "logistics": "Agència de transports",
+ "moving_company": "Companyia de mudances",
+ "newspaper": "Oficines d'un Diari",
+ "ngo": "Oficina d'una ONG",
+ "notary": "Notaria",
+ "physician": "Metge",
+ "political_party": "Seu d'un partit polític",
+ "private_investigator": "Oficina d'investigador privat",
+ "property_management": "Oficina de gestió de propietats",
+ "quango": "Oficina de quasi-ONG",
+ "religion": "Oficina religiosa",
+ "research": "Oficines d'R+D",
+ "security": "Oficina de seguretat",
+ "surveyor": "Oficina d'un agrimensor",
+ "tax_advisor": "Asesoria Fiscal",
+ "telecommunication": "Oficines d'una companyia de telecomunicacions",
+ "therapist": "Consulta d'un terapeuta",
+ "travel_agent": "Agència de viatges",
+ "union": "Oficina d'un sindicat",
+ "water_utility": "Oficina de la companyia d'aigua"
+ }
+ },
+ "official_name": {
+ "label": "Nom oficial"
},
"oneway": {
"label": "Sentit únic",
@@ -2050,8 +2693,9 @@
"label": "Horari",
"placeholder": "Desconegut"
},
- "opening_hours/covid19": {
- "label": "Horari durant la pandèmia de la COVID-19"
+ "opening_hours/drive_through": {
+ "label": "Horari del servei per a emportar",
+ "placeholder": "Igual que l'horari comercial habitual"
},
"operator": {
"label": "Operador"
@@ -2068,6 +2712,9 @@
},
"terms": "natural,orgànic,sense transgènics"
},
+ "orientation/orientation_parking": {
+ "label": "Orientació"
+ },
"outdoor_seating": {
"label": "Seient a l'aire lliure"
},
@@ -2093,24 +2740,78 @@
"parking": {
"label": "Tipus",
"options": {
- "carports": "Aixoplucs",
- "garage_boxes": "Boxs",
- "lane": "Adossat a la carretera",
- "layby": "Apartadero de descans",
- "multi-storey": "Diversos nivells",
- "rooftop": "Terrat",
- "sheds": "Garatges",
- "street_side": "Adjacent a la carretera",
- "surface": "Superfície",
- "underground": "Subterrani"
+ "carports": {
+ "title": "Aixoplucs"
+ },
+ "garage_boxes": {
+ "title": "Boxs"
+ },
+ "half_on_kerb": {
+ "description": "Aparcament parcialment a la vorera",
+ "title": "Parcialment en la vorera"
+ },
+ "lane": {
+ "title": "Carril adossat a la calçada"
+ },
+ "layby": {
+ "description": "Aparcament en una àrea de descans, al costat d'una carretera.",
+ "title": "Apartadero de descans"
+ },
+ "multi-storey": {
+ "title": "Diversos nivells"
+ },
+ "on_kerb": {
+ "description": "Aparcament a la vorera",
+ "title": "A la vorera"
+ },
+ "rooftop": {
+ "title": "Terrat"
+ },
+ "sheds": {
+ "title": "Garatges"
+ },
+ "shoulder": {
+ "title": "Voral"
+ },
+ "street_side": {
+ "title": "Adjacent a la carretera"
+ },
+ "surface": {
+ "title": "Superfície"
+ },
+ "underground": {
+ "description": "Aparcament subterrani",
+ "title": "Subterrani"
+ }
}
},
- "parking/orientation": {
- "label": "Orientació",
+ "parking/side/orientation": {
+ "label": "Orientació de l'aparcament",
"options": {
- "diagonal": "Diagonal respecte la carretera",
- "parallel": "Paral·lel a la carreterera",
- "perpendicular": "Perpendicular a la carretera"
+ "diagonal": "Diagonal en relació al carrer (~45°)",
+ "parallel": "Paral·lel al carrer",
+ "perpendicular": "Perpendicular a la carretera (~90°)"
+ },
+ "types": {
+ "parking:left:orientation": "Costat esquerre",
+ "parking:right:orientation": "Costat dreta"
+ }
+ },
+ "parking/side/parking": {
+ "label": "Aparcament",
+ "options": {
+ "half_on_kerb": "Parcialment en la vorera",
+ "lane": "Carrils adossats a ambdós costats de la calçada",
+ "no": "No",
+ "on_kerb": "A la vorera",
+ "separate": "Aparcament mapejat separadament",
+ "shoulder": "Voral",
+ "street_side": "Adjacent a la carretera",
+ "yes": "Si (sense especificar)"
+ },
+ "types": {
+ "parking:left": "Costat esquerre",
+ "parking:right": "Costat dreta"
}
},
"parking_entrance": {
@@ -2170,7 +2871,11 @@
},
"phone": {
"label": "Telèfon",
- "placeholder": "+31 42 123 4567"
+ "terms": "telèfon,número de telèfon"
+ },
+ "picnic_table": {
+ "label": "Taula de pícnic",
+ "terms": "pícnic. taula exterior,banc,parc,taula"
},
"pipeline": {
"label": "Tipus"
@@ -2271,6 +2976,7 @@
"label": "Mètode de generació"
},
"plant/output": {
+ "label": "Forma de sortida de potència",
"options": {
"cold_air": "Aire Gelat",
"cold_water": "Aigua Gelada",
@@ -2283,6 +2989,7 @@
}
},
"plant/output/electricity": {
+ "label": "Potència elèctrica de sortida",
"placeholder": "500 MW, 1000 MW, 2000 MW..."
},
"plant/source": {
@@ -2315,6 +3022,14 @@
"post": {
"label": "Adreça d'entrega"
},
+ "post_box/type": {
+ "label": "Tipus",
+ "options": {
+ "lamp": " fixat a un pal",
+ "wall": "fixat en una paret"
+ },
+ "terms": "tipo,tipus"
+ },
"power": {
"label": "Tipus"
},
@@ -2357,8 +3072,27 @@
"forward": "Endavant"
}
},
+ "railway/switch": {
+ "label": "Tipus de canvi d'agulles",
+ "options": {
+ "abt": "Canvi d'agulles d'Abt",
+ "default": "Canvi d'agulles normal",
+ "double_slip": "Canvi d'agulles doble",
+ "single_slip": "Canvi d'agulles simple",
+ "three_way": "Canvi d'agulles triple",
+ "wye": "Canvi d'agulles en forma de Y"
+ }
+ },
+ "railway/track_ref": {
+ "label": "Número de via"
+ },
"ramp": {
- "label": "Rampa d'obra"
+ "label": "Rampa d'obra",
+ "options": {
+ "no": "No",
+ "separate": "Mapejat per separat",
+ "yes": "Sí"
+ }
},
"real_fire-GB-IE": {
"label": "Ximeneia",
@@ -2393,7 +3127,8 @@
"placeholder": "Contenidor, Centre"
},
"ref": {
- "label": "Codi de referència"
+ "label": "Codi de referència",
+ "terms": "nomenclatura,nombre,número,referència"
},
"ref/isil": {
"label": "Codi ISIL"
@@ -2416,10 +3151,11 @@
"label": "Nombre d'encreuament"
},
"ref_platform": {
- "label": "Nombre de plataforma"
+ "label": "Nombre d'andana"
},
"ref_road_number": {
- "label": "Nombre de carretera"
+ "label": "Codi de la carretera",
+ "terms": "nomenclatura de la carretera,referència de la carretera,nombre de carretera,nombre de via,nombre de ruta"
},
"ref_room_number": {
"label": "Número d'habitació"
@@ -2431,6 +3167,9 @@
"label": "Número de pista",
"placeholder": "p.e. 01L/19R"
},
+ "ref_sector": {
+ "label": "Número de secció"
+ },
"ref_stop_position": {
"label": "Número de parada"
},
@@ -2454,6 +3193,7 @@
"hindu": "Hinduisme",
"jain": "Jainisme",
"jewish": "Judaisme",
+ "multifaith": "Multireligiós",
"muslim": "Muslumana",
"none": "No Religiós",
"pagan": "Paganisme",
@@ -2485,7 +3225,18 @@
"label": "Tipus"
},
"resource": {
- "label": "Recursos"
+ "label": "Recursos",
+ "options": {
+ "aggregate": "Agregat",
+ "clay": "Argila",
+ "coal": "Carbó",
+ "gold": "Or",
+ "gravel": "Grava",
+ "iron_ore": "Mineral de ferro",
+ "limestone": "Pedra calcària",
+ "peat": "Torba",
+ "sand": "Sorra"
+ }
},
"restriction": {
"label": "Tipus"
@@ -2493,8 +3244,31 @@
"restrictions": {
"label": "Restriccions de gir"
},
+ "roller_coaster/track": {
+ "label": "Tipus",
+ "options": {
+ "brake_run": {
+ "description": "Un tram dels raïls destinat a frenar o aturar els cotxes"
+ },
+ "maintenance": {
+ "title": "Manteniment"
+ },
+ "moving": {
+ "description": "Qualsevol tipus de raïls en moviment, com canviadors de raïl"
+ },
+ "station": {
+ "title": "Estació"
+ }
+ }
+ },
"roof/colour": {
- "label": "Color de la teulada"
+ "label": "Color de la teulada",
+ "terms": "color del teulat,color del sostre,tonalitat del terrat,matís de la coberta"
+ },
+ "roof/shape": {
+ "options": {
+ "dome": "Cúpula"
+ }
},
"room": {
"label": "Tipus"
@@ -2516,6 +3290,20 @@
"route_master": {
"label": "Tipus"
},
+ "royal_cypher-GB": {
+ "label": " Insígnia reial",
+ "options": {
+ "CIIIR": "CIIIR (Carles III)",
+ "EIIR": "EIIR (Elisabet II)",
+ "EVIIIR": "EVIIIR (Eduard VIII)",
+ "EVIIR": "EVIIR (Eduard VII)",
+ "GR": "GR (Jordi V)",
+ "GVIR": "GVIR (Jordi VI)",
+ "VR": "VR (Victòria)",
+ "no": "No",
+ "scottish_crown": "Corona escocesa"
+ }
+ },
"ruins": {
"label": "Tipus"
},
@@ -2582,9 +3370,14 @@
"seamark/buoy_lateral/category": {
"label": "Categoria",
"options": {
+ "channel_left": "Canal esquerre",
+ "channel_right": "Canal dret",
+ "danger_left": "Perill a l'esquerra",
+ "danger_right": "Perill a la dreta",
"port": "Bavor",
"preferred_channel_port": "Canal preferit a bavor",
- "preferred_channel_starboard": "Canal preferit a estribord"
+ "preferred_channel_starboard": "Canal preferit a estribord",
+ "starboard": "Estribor"
}
},
"seamark/buoy_lateral/colour": {
@@ -2611,6 +3404,12 @@
"other": "Altre"
}
},
+ "seamark/harbour/category_marina": {
+ "options": {
+ "marina": "Sí",
+ "marina_no_facilities": "No"
+ }
+ },
"seamark/mooring/category": {
"label": "Categoria"
},
@@ -2656,6 +3455,7 @@
"label": "Tipus",
"options": {
"alley": "Carreró",
+ "drive-through": "Via de servei al vehicle",
"driveway": "Via d'accés a una propietat",
"emergency_access": "Accés per a emergències",
"parking_aisle": "Carrer d'aparcament"
@@ -2695,6 +3495,13 @@
"label": "Dutxes",
"terms": "dutxes,aseo,sabó,dutxa,aigua"
},
+ "side": {
+ "label": "Costat",
+ "options": {
+ "left": "L'esquerra del ciclista",
+ "right": "La dreta del ciclista"
+ }
+ },
"siren/purpose": {
"label": "Propòsit"
},
@@ -2740,10 +3547,42 @@
"label": "SMS"
},
"social_facility": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "ambulatory_care": "Atenció ambulatòria",
+ "assisted_living": "Habitatge assistit",
+ "day_care": "Centre de dia",
+ "food_bank": "Banc d'aliments",
+ "group_home": "Habitatge grupal",
+ "nursing_home": "Residència d'ancians",
+ "shelter": "Refugi",
+ "workshop": "Centre ocupacional"
+ }
},
"social_facility_for": {
- "label": "Persones ateses"
+ "label": "Persones ateses",
+ "options": {
+ "abused": "Víctimes d'abusos",
+ "child": "Infants",
+ "dementia": "Persones que pateixen demència",
+ "disabled": "Persones amb discapacitat",
+ "diseased": "Persones que pateixen una malaltia",
+ "displaced": "Persones desplaçades per catàstrofes o conflictes",
+ "drug_addicted": "Persones amb drogodependència",
+ "homeless": "Persones sense llar",
+ "juvenile": "Joventut",
+ "mental_health": "Persones amb malaltia mental",
+ "migrant": "Persones migrants",
+ "orphan": "Orfes",
+ "refugee": "Persones refugiades",
+ "senior": "Ancians",
+ "terminally_ill": "Persones amb malalties terminals",
+ "underprivileged": "Persones en situació o risc d'exclusió social",
+ "unemployed": "Persones sense treball",
+ "veteran": "Gent major",
+ "victim": "Víctimes del delicte",
+ "woman": "Dones"
+ }
},
"source": {
"label": "Fonts",
@@ -2756,6 +3595,9 @@
"survey": "Exploració"
}
},
+ "source/population": {
+ "label": "Font de la població"
+ },
"species": {
"label": "Espècies"
},
@@ -2763,47 +3605,81 @@
"label": "Wikidata de l'espècie"
},
"sport": {
+ "label": "Esports",
+ "options": {
+ "10pin": "Birles de 10",
+ "9pin": "Birles de 9",
+ "american_football": "Futbol Americà",
+ "athletics": "Atletisme",
+ "badminton": "Bàdminton",
+ "baseball": "Beisbol",
+ "basketball": "Bàsquet",
+ "beachvolleyball": "Voleibol de platja",
+ "billiards": "Billars",
+ "bmx": "BMX",
+ "boules": "Petanca",
+ "bowls": "Joc de bitlles",
+ "canoe": "Piragüisme",
+ "chess": "Escacs",
+ "climbing": "Escalada",
+ "cricket": "Criquet",
+ "curling": "Cúrling",
+ "cycling": "Ciclisme",
+ "darts": "Dards",
+ "disc_golf": "Disc Golf",
+ "dog_racing": "Curses de gossos",
+ "equestrian": "Esports eqüestres",
+ "fitness": "Entrenament físic",
+ "free_flying": "Parapent / Ala delta",
+ "futsal": "Futbol sala",
+ "gaelic_games": "Esports gàelics",
+ "golf": "Golf",
+ "gymnastics": "Gimnàstica artística",
+ "handball": "Handbol",
+ "horse_racing": "Carrera de cavalls",
+ "ice_hockey": "Hoquei sobre gel",
+ "ice_skating": " Patinatge sobre gel",
+ "ice_stock": "Cúrling austríac",
+ "karting": "Kàrting",
+ "motocross": "Motocròs",
+ "motor": "Esports de motor",
+ "multi": "Altres esports no especificats",
+ "netball": "Netbol",
+ "orienteering": "Orientació",
+ "padel": "Pàdel",
+ "pelota": "Pilota",
+ "rugby_union": "Rugbi",
+ "running": "Raning",
+ "scuba_diving": "Submarinisme",
+ "shooting": "Tir",
+ "skateboard": "Monopatí de carrer",
+ "skiing": "Esquí",
+ "soccer": "Futbol",
+ "softball": "Softball",
+ "speedway": "Autòdrom per a moto cicletes",
+ "swimming": "Natació",
+ "table_tennis": "Ping-pong",
+ "tennis": "Tenis",
+ "volleyball": "Voleibol",
+ "yoga": "Ioga"
+ }
+ },
+ "sport/sport_ice": {
"label": "Esports"
},
- "sport_ice": {
+ "sport/sport_pub": {
"label": "Esports",
- "options": {
- "curling": "Cúrling",
- "ice_hockey": "Hockey sobre gel",
- "ice_skating": "Patinatge sobre gel",
- "ice_stock": "Cúrling bàvar",
- "multi": "Diversos"
- }
+ "terms": "activitats esportives,atletisme,activitats físiques,jocs,recreacions,competicions"
},
- "sport_pub": {
- "label": "Esports",
- "options": {
- "billiards": "Billar",
- "darts": "Dards",
- "table_soccer": "Futbolí"
- }
+ "sport/sport_racing_motor": {
+ "label": "Esports"
},
- "sport_racing_motor": {
- "label": "Esports",
- "options": {
- "karting": "Carting",
- "motocross": "Motocròs",
- "motor": "Esport de motor",
- "speedway": "Autòdrom per a moto cicletes"
- }
- },
- "sport_racing_nonmotor": {
- "label": "Esports",
- "options": {
- "bmx": "BMX",
- "cycling": "Ciclisme",
- "dog_racing": "Curses de gossos",
- "horse_racing": "Curses de cavalls",
- "running": "Correr"
- }
+ "sport/sport_racing_nonmotor": {
+ "label": "Esports"
},
"stars": {
- "label": "Estrelles"
+ "label": "Estrelles",
+ "terms": "estrelles,puntuacions,qualificacions,valoracions,puntuacions d'estrelles,classificacions"
},
"start_date": {
"label": "Data d'inici",
@@ -2811,7 +3687,8 @@
"terms": "data d'inici,data inicial,inici,des de"
},
"step_count": {
- "label": "Nombre de passes"
+ "label": "Nombre d'esglaons",
+ "terms": "nombre de passes,quantitat d'escalons,comptador d'escalades,passos realitzats"
},
"stile": {
"label": "Tipus"
@@ -2824,7 +3701,8 @@
}
},
"street_cabinet": {
- "label": "Tipus"
+ "label": "Tipus",
+ "terms": "tipo,tipus"
},
"stroller": {
"label": "Accés de cotxets",
@@ -2845,7 +3723,16 @@
},
"placeholder": "Desconegut"
},
+ "structure_canal": {
+ "label": "Estructura",
+ "options": {
+ "bridge": "Pont",
+ "tunnel": "Túnel"
+ },
+ "placeholder": "Desconegut"
+ },
"structure_power": {
+ "label": "Estructura",
"options": {
"lattice": "Gelosia",
"solid": "Sólida",
@@ -2869,7 +3756,16 @@
"label": "Wikidata del subjecte"
},
"substance": {
- "label": "Substància"
+ "label": "Substància",
+ "options": {
+ "fuel": "Combustible",
+ "gas": "Gas natural",
+ "hot_water": "Aigua calenta",
+ "oil": "Petroli cru",
+ "rainwater": "Aigua de pluja",
+ "sewage": "Aigües residuals",
+ "water": "Aigua potable"
+ }
},
"substation": {
"label": "Tipus",
@@ -2887,9 +3783,12 @@
"substation_pipeline": {
"label": "Tipus",
"options": {
+ "compression": "Compressió",
"distribution": "Distribució regional",
"industrial": "Industrial",
- "minor_distribution": "Distribució local"
+ "measurement": "Mesurament",
+ "minor_distribution": "Distribució local",
+ "transmission": "Transmisió"
}
},
"supervised": {
@@ -2903,6 +3802,7 @@
"options": {
"artificial_turf": "Gespa artificial",
"asphalt": "Asfalt",
+ "clay": "Argila",
"compacted": "Compactada",
"concrete": "Formigó",
"dirt": "Terra",
@@ -2931,7 +3831,7 @@
"options": {
"ALPR": "Lector de matrícules automàtic",
"camera": "Càmera",
- "guard": "Vigilat"
+ "guard": "Guàrdia"
}
},
"surveillance/zone": {
@@ -2941,21 +3841,31 @@
"label": "Data de l'última inspecció"
},
"survey_point/purpose": {
+ "label": "Propòsit",
"options": {
+ "both": "Ambdues",
"vertical": "Alineació Veritcal"
}
},
"survey_point/structure": {
"label": "Estructura",
"options": {
+ "beacon": "Balisa",
"block": "Bloc",
+ "cairn": "Fita\nPila de pedres\nPila de rocs",
+ "cut": "Retalla",
"magnet": "Iman",
"plaque": "Placa",
"pole": "Pal"
}
},
"swimming_pool": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "spa": "Spa",
+ "wading": "Xipolleig / Recreació",
+ "wave_pool": "Piscina d'ones"
+ }
},
"switch": {
"label": "Tipus",
@@ -2982,11 +3892,49 @@
"target": {
"label": "Objectiu"
},
+ "taxi_vehicle": {
+ "label": "Tipus de vehicle",
+ "options": {
+ "auto_rickshaw": {
+ "description": "Rickshaws motoritzats (per exemple, mototaxi, tricicle, tuctuc, bajaj, etc.)",
+ "title": "Mototaxi"
+ },
+ "cycle_rickshaw": {
+ "description": "Rickshaws a pedals (per exemple, padyak, tricitaxi, velotaxi, etc.)",
+ "title": "Bicitaxi"
+ },
+ "motorcar": {
+ "title": "Cotxe de motor"
+ },
+ "motorcycle": {
+ "title": "Motocicleta"
+ }
+ },
+ "terms": "tipus,tipus de vehicle,tipus d'auto,tipus de cotxe,tipus d'automòbil,tipus de transport"
+ },
"taxon": {
"label": "Tàxon"
},
+ "tee": {
+ "label": "Color o tipus de te"
+ },
"telecom": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "data_center": "Centre de dades",
+ "distribution_point": "Punt de distribució",
+ "exchange": "Canvi"
+ }
+ },
+ "telescope/type": {
+ "label": "Tipus",
+ "options": {
+ "optical": "Telescopi òptic",
+ "radio": "Radiotelescopi"
+ }
+ },
+ "tents": {
+ "label": "Tendes de campanya"
},
"tidal": {
"label": "Marea"
@@ -3009,6 +3957,11 @@
"toilets/handwashing": {
"label": "Rentamans"
},
+ "toilets/menstrual_products": {
+ "options": {
+ "no": "No"
+ }
+ },
"toilets/position": {
"label": "Posicions"
},
@@ -3024,7 +3977,17 @@
"label": "Peatge"
},
"tomb": {
- "label": "Tipus"
+ "label": "Tipus",
+ "options": {
+ "crypt": "Cripta",
+ "dolmen": "Dolmen",
+ "hypogeum": "Hipogeu",
+ "mausoleum": "Mausoleu",
+ "pyramid": "Piràmide",
+ "sarcophagus": "Sarcòfag",
+ "table": "Taula",
+ "tumulus": "Túmul"
+ }
},
"tourism": {
"label": "Tipus"
@@ -3032,6 +3995,9 @@
"tower/construction": {
"label": "Construcció"
},
+ "tower/platforms": {
+ "placeholder": "1, 2, 3…"
+ },
"tower/type": {
"label": "Tipus"
},
@@ -3055,9 +4021,20 @@
"traffic_calming": {
"label": "Tipus",
"options": {
- "table": "Pas elevat"
+ "bump": "Ressalt",
+ "chicane": "Chicane",
+ "choker": "Reductor d'amplada",
+ "cushion": "Coixí Berlinès",
+ "dip": "Gual",
+ "hump": "Esquena d'ase",
+ "mini_bumps": "Xinxeta reductora de velocitat",
+ "rumble_strip": "Bandes rugoses",
+ "table": "Pas de vianants elevat"
}
},
+ "traffic_calming_road": {
+ "label": "Pacificació del trànsit"
+ },
"traffic_sign": {
"label": "Senyal de trànsit"
},
@@ -3117,6 +4094,7 @@
"transformer": {
"label": "Tipus",
"options": {
+ "phase_angle_regulator": "Regulador d'angle de fase",
"yes": "Rol desconegut"
}
},
@@ -3135,7 +4113,7 @@
"options": {
"avalanche_protector": "Protector d'Allaus",
"building_passage": "Passatge per un edifici",
- "culvert": "Marc",
+ "culvert": "Canonada de drenatge",
"flooded": "Inundat"
}
},
@@ -3202,7 +4180,25 @@
}
},
"vending": {
- "label": "Tipus de mercaderies"
+ "label": "Tipus de mercaderies",
+ "options": {
+ "bread": "Pa",
+ "cigarettes": "Cigarrets",
+ "coffee": "Cafè",
+ "condoms": "Preservatius",
+ "drinks": "Begudes",
+ "eggs": "Ous",
+ "food": "Menjar",
+ "fuel": "Combustible",
+ "ice_cream": "Gelats",
+ "milk": "Llet",
+ "newspapers": "Premsa",
+ "pizza": "Pizza",
+ "public_transport_tickets": "Bitllets de transport públic",
+ "stamps": "Segells de correus",
+ "sweets": "Llepolies",
+ "water": "Aigua potable"
+ }
},
"vhf": {
"label": "Canal de VHF"
@@ -3253,7 +4249,12 @@
"label": "Tipus"
},
"waste": {
- "label": "Residus"
+ "label": "Residus",
+ "options": {
+ "cigarettes": "Cigarrets",
+ "dog_excrement": "Excrement de gos",
+ "organic": "Resta orgànica"
+ }
},
"water": {
"label": "Tipus"
@@ -3266,6 +4267,7 @@
"options": {
"pond": "Estany",
"river": "Riu",
+ "stream": "Rierol",
"water_tank": "Tanc d'aigua"
}
},
@@ -3280,6 +4282,9 @@
"label": "Lloc web",
"placeholder": "https://example.cat"
},
+ "website/menu": {
+ "placeholder": "https://example.cat"
+ },
"wetland": {
"label": "Tipus",
"options": {
@@ -3287,7 +4292,11 @@
"fen": "Mollera",
"mangrove": "Manglar",
"marsh": "Aiguamoll",
- "swamp": "Pantà"
+ "saltmarsh": "marjal salada costanera",
+ "string_bog": "Aiguamoll en forma de filaments",
+ "swamp": "Pantà",
+ "tidalflat": "Plana de marea",
+ "wet_meadow": "prat humit"
}
},
"wheelchair": {
@@ -3319,6 +4328,14 @@
"label": "Bobines",
"placeholder": "1, 2, 3..."
},
+ "windings/auto": {
+ "label": "Autotransformador",
+ "options": {
+ "no": "No",
+ "undefined": "Suposat que és No",
+ "yes": "Sí"
+ }
+ },
"windings/configuration": {
"label": "Configuració de bobines",
"options": {
@@ -3341,8 +4358,8 @@
"terms": "adreça,direcció,domicili"
},
"advertising/billboard": {
- "name": "Taulell",
- "terms": "cartellera"
+ "name": "Tanca publicitària",
+ "terms": "cartellera,taulell"
},
"advertising/board": {
"name": "Tauler de notificacions"
@@ -3412,6 +4429,9 @@
"name": "Pista d'enlairament/aterratge",
"terms": "pista d'enlairament,pista d'aterratge"
},
+ "aeroway/spaceport": {
+ "name": "Port espacial"
+ },
"aeroway/taxiway": {
"name": "Carrer de rodada",
"terms": "plataforma de rodada,carrer de taxi,pista de taxi,carrer de rodament,carrer de rodatge,carril de rodada,carril de rodatge"
@@ -3468,9 +4488,13 @@
"terms": "banc peatonal,banc per a asseure's,banc de carrer"
},
"amenity/bicycle_parking": {
- "name": "Aparcament per a bicicletes",
+ "name": "Aparcament per a bicicletes",
"terms": "aparcament per a bicicletes,àrea d'aparcament de bicicletes,estació de bicicletes públiques,parking de bicis,pàrquing de bicicletes,parking de bicicletes,pàrquing de bicis"
},
+ "amenity/bicycle_parking/building": {
+ "name": "Garatge per a bicicletes",
+ "terms": "estació de bicicletes,aparcament de bicicletes,ciclisme,bicicleta,aparcabicis"
+ },
"amenity/bicycle_rental": {
"name": "Lloguer de bicicletes",
"terms": "lloguer de bicicletes,servei de lloguer de bicicletes"
@@ -3500,7 +4524,8 @@
"terms": "lloguer de cotxes,servei de lloguer de turismes"
},
"amenity/car_sharing": {
- "name": "Estació de cotxes compartits"
+ "name": "Estació de cotxes compartits",
+ "terms": "punt de càrrega,estació de càrrega,càrrega,cotxe elèctric,vehicle elèctric,elèctric,cotxe,vehicle,zero emissions"
},
"amenity/car_wash": {
"name": "Rentat de cotxes",
@@ -3529,6 +4554,9 @@
"name": "Clínica d'avortament",
"terms": "interrupció,salut de la dona"
},
+ "amenity/clinic/dialysis": {
+ "name": "Centre de diàlisi"
+ },
"amenity/clinic/fertility": {
"name": "Clínica de fertilitat",
"terms": "ou,fertitlitat,reproducció,reproductiva,esperma,ovulació,clínica"
@@ -3540,16 +4568,27 @@
"amenity/clock/sundial": {
"name": "Rellotge solar"
},
- "amenity/college": {
- "name": "Escola professional",
- "terms": "universitat,estudis de grau"
- },
"amenity/community_centre": {
"name": "Centre Comunitari"
},
+ "amenity/community_centre/cultural_centre": {
+ "name": "Centre cultural"
+ },
+ "amenity/community_centre/family_centre": {
+ "name": "Centre familiar"
+ },
"amenity/community_centre/lgbtq": {
"name": "Centre comunitari LGBTQ+"
},
+ "amenity/community_centre/parish_hall": {
+ "name": "Ajuntament pedani"
+ },
+ "amenity/community_centre/village_hall": {
+ "name": "Ajuntament"
+ },
+ "amenity/community_centre/youth_centre": {
+ "name": "Centre Juvenil"
+ },
"amenity/compressed_air": {
"name": "Aire comprimit",
"terms": "aire comprimit,compressor d'aire,unflador de rodes"
@@ -3566,10 +4605,12 @@
"name": "Espai de coworking"
},
"amenity/crematorium": {
- "name": "Crematori"
+ "name": "Crematori",
+ "terms": "crematori,cementeri,funeraria,tanatori,cementiri"
},
"amenity/dentist": {
- "name": "Dentista"
+ "name": "Dentista",
+ "terms": "dentista,dents,dent,pròtesi"
},
"amenity/dive_centre": {
"name": "Centre de submarinisme",
@@ -3591,8 +4632,93 @@
"name": "Dermatòleg",
"terms": "dermatologia,pell,ungles,monyo,cabells"
},
- "amenity/doctors/gynaecology": {
- "name": "Ginecòleg"
+ "amenity/doctors/gastroenterology": {
+ "name": "gastroenteròleg",
+ "terms": "gastroenteròlega,budells,sistema digestiu,esòfag,gastrointestinal,tracte gastrointestinal,intestins,estómac"
+ },
+ "amenity/doctors/general": {
+ "name": "Metge d'atenció primària",
+ "terms": "metge de família,metge,atenció primària,cap"
+ },
+ "amenity/doctors/haematology": {
+ "name": "Hematòleg",
+ "terms": "hematòloga,anèmia,sang,òs,os,òssos,ossos,hematologia,leucèmia,linfoma"
+ },
+ "amenity/doctors/internal": {
+ "name": "Internista",
+ "terms": "medicina interna"
+ },
+ "amenity/doctors/nephrology": {
+ "name": "Nefròleg",
+ "terms": "nefròloga,ronyó,renal,ronyons"
+ },
+ "amenity/doctors/neurology": {
+ "name": "Neuròleg",
+ "terms": "cervell,nervis,sistema nerviós,neurologia,neurocirugia"
+ },
+ "amenity/doctors/neurosurgery": {
+ "name": "neurocirurgià",
+ "terms": "cervell,cirugia neurològica"
+ },
+ "amenity/doctors/oncology": {
+ "name": "Oncòleg",
+ "terms": "càncer,quimioteràpia,oncologia,tumor,radio teràpia,medicina nuclear"
+ },
+ "amenity/doctors/ophthalmology": {
+ "name": "Oftalmòleg",
+ "terms": "oftamòloga,ull,ulls,ulleres,lents,ocular,oftamologia,vista,òptica"
+ },
+ "amenity/doctors/orthopaedics": {
+ "name": "Cirugià ortopèdic",
+ "terms": "ortopèdia,cirguia ortopèdica"
+ },
+ "amenity/doctors/otolaryngology": {
+ "name": "Otorrinolaringòleg",
+ "terms": "otorrinolaringòloga,orella,audició,cap,coll,bescoll,nas,crani"
+ },
+ "amenity/doctors/paediatrics": {
+ "name": "Pediatra",
+ "terms": "pedriatre,adolescents,xiquets,xiquetes,nois,noies,al·lots,al·lotes,infantil,pediatria"
+ },
+ "amenity/doctors/pathology": {
+ "name": "Patòleg",
+ "terms": "autòpsia,anatomia,anatomia patológica,patologia anatòmica,patologia"
+ },
+ "amenity/doctors/plastic_surgery": {
+ "name": "Cirugià plàstic",
+ "terms": "cirugia estètica,cirugia cosmètica,cirugia cranifacial,cirugia craneofacial,cirugia plàstica,cirugia reconstructiva"
+ },
+ "amenity/doctors/podiatry": {
+ "name": "Podòleg",
+ "terms": "peu,peus,cama,cames,podologia,taló,turmell"
+ },
+ "amenity/doctors/proctology": {
+ "name": "Cirugià Colorectal",
+ "terms": "cul,coló,cólon,colorectal,recte,cirugia rectal"
+ },
+ "amenity/doctors/pulmonology": {
+ "name": "Pneumòleg",
+ "terms": "asma,pit,pulmó,pneumologia,pneumonia,neumonia,neumologia,pneumoleg,neumoleg,respieació,respiratiu,respirologia,respiratòri,medicin respiratòria,pulmòleg"
+ },
+ "amenity/doctors/radiology": {
+ "name": "Radiòleg",
+ "terms": "radiologia,tomografia,tac,resonància magnètica,ultrasons,ecografia,sonografia,ultrasonografia"
+ },
+ "amenity/doctors/rheumatology": {
+ "name": "Reumatòleg",
+ "terms": "reuma,lupus,osteoporosis,reumatologia"
+ },
+ "amenity/doctors/surgery": {
+ "name": "Cirugià general",
+ "terms": "cirugia"
+ },
+ "amenity/doctors/trauma": {
+ "name": "Cirugià de trauma",
+ "terms": "trauma,cirugia,fractura"
+ },
+ "amenity/doctors/urology": {
+ "name": "Uròleg",
+ "terms": "urologia,penis,próstata,reproducció,escrot,bebé"
},
"amenity/dojo": {
"name": "Dojo / Acadèmia d'arts marcials"
@@ -3602,16 +4728,13 @@
},
"amenity/drinking_water": {
"name": "Aigua apta per al consum",
- "terms": "aigua potable,aigua apta per al consum humà,aigua per beure,font"
+ "terms": "aigua potable,aigua apta per al consum humà,aigua per beure,font",
+ "aliases": "Font d'aigua potable"
},
"amenity/driver_training": {
"name": "Circuit de pràctiques per a conduir",
"terms": "autoescola,carnet,am,b,a1,cotxe,moto"
},
- "amenity/driving_school": {
- "name": "Autoescola",
- "terms": "autoescola,escola de conduir,escola de conducció"
- },
"amenity/embassy": {
"name": "Ambaixada"
},
@@ -3622,6 +4745,10 @@
"name": "Local de menjar ràpid",
"terms": "menjar ràpid,servei de menjar ràpid,restaurant de menjar ràpid,local de menjar ràpid"
},
+ "amenity/fast_food/burger": {
+ "name": "Hamburgueseria de menjar ràpid",
+ "terms": "hamburguesa com a menjar ràpid,desdejuni,dinar,sopar,asmorzar,autoservei,autorestaurant,menjar,parrilla,taula"
+ },
"amenity/fast_food/cafeteria": {
"name": "Cantina",
"terms": "cantina,refector,menjador escolar"
@@ -3654,8 +4781,8 @@
"terms": "caserna de bombers,base de bombers,estació de bombers"
},
"amenity/fountain": {
- "name": "Font",
- "terms": "font,aiguaneix,broll,brollador,deu,fontana,sortidor."
+ "name": "Font ornamental",
+ "terms": "fontana"
},
"amenity/fuel": {
"name": "Benzinera",
@@ -3663,7 +4790,7 @@
},
"amenity/gambling": {
"name": "Sala de Jocs",
- "terms": "apostes,bingo,blackjack,casino,pachinco,loteria,slots,joc d'atzar,escurabujaques,jocs d'atzar,apostar,joc"
+ "terms": "apostes,bingo,blackjack,casino,pachinco,loteria,slots,joc d'atzar,escurabujaques,jocs d'atzar,apostar,joc,saló de jocs"
},
"amenity/grave_yard": {
"name": "Cementiri",
@@ -3687,14 +4814,6 @@
"name": "Cibercafè",
"terms": "cifercafè,cafè d'internet,xatfeteria,cibercafè,cafè"
},
- "amenity/kindergarten": {
- "name": "Centre preescolar",
- "terms": "preescolar,jardí d'infància,guarderia"
- },
- "amenity/language_school": {
- "name": "Escola d'idiomes",
- "terms": "acadèmia d'idiomes,escola de llengües,acadèmia de llengües"
- },
"amenity/lavoir": {
"name": "Safareig",
"terms": "llavador"
@@ -3713,6 +4832,9 @@
"amenity/lounger": {
"name": "Gandula"
},
+ "amenity/love_hotel": {
+ "name": "Meublé"
+ },
"amenity/marketplace": {
"name": "Mercat",
"terms": "mercat,mercat veïnal,mercat de carrer"
@@ -3725,15 +4847,12 @@
},
"amenity/motorcycle_parking": {
"name": "Aparcament per a motocicletes",
- "terms": "estacionament de motos,parking de motos,aparcament de motos,estacionament per a motocicletes,parking de motocicletes"
+ "terms": "estacionament de motos,parking de motos,aparcament de motos,estacionament per a motocicletes,parking de motocicletes,motos"
},
"amenity/motorcycle_rental": {
"name": "Lloguer de motocicletes",
"aliases": "Lloguer de motos"
},
- "amenity/music_school": {
- "name": "Escola de música"
- },
"amenity/nightclub": {
"name": "Club nocturn",
"terms": "discoteca,oci nocturn,club de ball,club nocturn"
@@ -3746,7 +4865,7 @@
"name": "Llar d'avis"
},
"amenity/parcel_locker": {
- "name": "Armari intel·ligent",
+ "name": "Bústia intel·ligent",
"terms": "parcel locker,locker,parcel,paquets,bústia,comerç,comerç en línia,comerç online,bústia intel·ligent,casiller"
},
"amenity/parking": {
@@ -3767,7 +4886,7 @@
"name": "Espai d'aparcament"
},
"amenity/parking_space/disabled": {
- "name": "Espai d'aparcament accesible"
+ "name": "Espai d'aparcament accessible"
},
"amenity/payment_terminal": {
"name": "Terminal de pagament"
@@ -3833,15 +4952,13 @@
"terms": "bústia,bústia pública,correus,carta,servei de correus,enviament"
},
"amenity/post_depot": {
- "name": "Oficina de classificació"
+ "name": "Oficina de classificació",
+ "terms": "correus,procesament del correu postal,postal"
},
"amenity/post_office": {
"name": "Oficina de correus",
"terms": "oficina de correus,correus,edifici de correus,cartes,carters"
},
- "amenity/prep_school": {
- "name": "Classes de preparació / Classes de repàs"
- },
"amenity/prison": {
"name": "Terrenys d'una presó"
},
@@ -3852,12 +4969,21 @@
"amenity/pub/irish": {
"name": "Pub Irlandés"
},
+ "amenity/pub/lgbtq": {
+ "name": "Bar LGTBQ+",
+ "terms": "bar gay,bar lèsbic,lgtb,lgbtq bar,alterne"
+ },
+ "amenity/pub/microbrewery": {
+ "name": "Bar amb cervesa",
+ "terms": "alcohol,beguda,cervesa,birra,cerveseria"
+ },
"amenity/public_bath": {
"name": "Banys públic",
"terms": "banys públic,bany públic,banys,bany"
},
"amenity/public_bookcase": {
- "name": "Prestageria pública"
+ "name": "Prestatgeria pública",
+ "terms": "llibre,intercanvi,passallibres"
},
"amenity/ranger_station": {
"name": "Base d'Agents Rurals"
@@ -3870,12 +4996,9 @@
"terms": "biodegradable,biologic,compost,descomposable,contenidor de basura,residus de jardí,orgànic,basura,restes de menjar"
},
"amenity/recycling_centre": {
- "name": "Ecoparc",
+ "name": "Ecoparc/Deixalleria",
"terms": "centre de reciclatge,punt verd,punt net"
},
- "amenity/recycling_container": {
- "name": "Contenidor de reciclatge"
- },
"amenity/refugee_site": {
"name": "Camp de refugiats"
},
@@ -3947,10 +5070,6 @@
"amenity/sanitary_dump_station": {
"name": "Estació de buidatge de lavabos"
},
- "amenity/school": {
- "name": "Escola - Institut",
- "terms": "escola,ceip,ies,col·legi,institut,centre educatiu,guarderia"
- },
"amenity/shelter": {
"name": "Refugi"
},
@@ -3960,6 +5079,9 @@
"amenity/shelter/lean_to": {
"name": "Alpendre"
},
+ "amenity/shelter/public_transport": {
+ "name": "Marquesina"
+ },
"amenity/shower": {
"name": "Dutxa"
},
@@ -3973,20 +5095,28 @@
"name": "Centre social",
"terms": "comunitat,sense ànim de lucre,serveis socials,servicis socials"
},
+ "amenity/social_facility/ambulatory_care": {
+ "name": "Atenció ambulatòria",
+ "terms": "ambulatori,ambulatòria,cura ambulatòria,atenció ambulatòria"
+ },
+ "amenity/social_facility/assisted_living": {
+ "name": "Residència assistida per a gent major",
+ "terms": "residència assistida per a gent major,residència assistida per a gent gran,residència assistida per a anciants"
+ },
"amenity/social_facility/food_bank": {
"name": "Banc d'aliments",
"terms": "banc d'aliments,economat,menjador social"
},
"amenity/social_facility/group_home": {
- "name": "Residència d'avis",
+ "name": "Habitatge grupal d'ancians",
"terms": "geriàtric,residencia geriàtrica"
},
"amenity/social_facility/homeless_shelter": {
- "name": "Refugi per a indigents",
- "terms": "sense sostre,vagabund,indigent,sense casa"
+ "name": "Refugi per a persones sense llar",
+ "terms": "sense sostre,vagabund,indigent,sense casa,sense llar,sensellar"
},
"amenity/social_facility/nursing_home": {
- "name": "Llar d'avis",
+ "name": "Llar d'ancians",
"terms": "avis,ancians,residència d'ancians,residència d'avis,residència"
},
"amenity/studio": {
@@ -3995,8 +5125,13 @@
"amenity/studio/audio": {
"name": "Estudi de gravació"
},
+ "amenity/studio/radio": {
+ "name": "Estació de ràdio",
+ "terms": "ràdio am,ràdio fm,ràdio,emissió de ràdio,estúdio de ràdio,estació radiofònica"
+ },
"amenity/studio/television": {
- "name": "Estudis de Televisió"
+ "name": "Estudis de Televisió",
+ "terms": "televisió,emissió televisiva,estació de televisió,tv,estudi de televisió"
},
"amenity/studio/video": {
"name": "Estudis Cinematogràfics"
@@ -4013,13 +5148,16 @@
"name": "Teatre",
"terms": "cinema,sala de cine,complex de cines,edifici de cines"
},
- "amenity/theatre/type/amphi": {
- "name": "Amfiteatre"
+ "amenity/ticket_validator": {
+ "name": "Validador de bitllets"
},
"amenity/toilets": {
"name": "lavabo",
"terms": "lavabos,serveis,lavabos públics,w.c"
},
+ "amenity/toilets/disposal/pitlatrine": {
+ "name": "Latrina de Fossa"
+ },
"amenity/toilets/portable": {
"name": "Lavabo portàtil"
},
@@ -4031,10 +5169,6 @@
"name": "Ajuntament",
"aliases": "Casa consistorial\nCasa de la ciutat\nCasa de la vila\nPaeria\nAlcaldia\nCasa del comú\nBatllia\nBatlia"
},
- "amenity/university": {
- "name": "Campus universitari",
- "terms": "universitat,campus universitàri,grau,facultat,llicenciatura,càtedra,seminari"
- },
"amenity/vehicle_inspection": {
"name": "Inspecció de vehicles",
"terms": "itv"
@@ -4044,6 +5178,14 @@
"terms": "màquina expenedora,màquina de vènding",
"aliases": "Màquina de vènding\nMàquina de venda"
},
+ "amenity/vending_machine/bottle_return": {
+ "name": "Màquina de retorn d'ampolles",
+ "terms": "retorn d'ampolles,retorn de botelles,ampolles,botelles,reciclos,reciclatge"
+ },
+ "amenity/vending_machine/bread": {
+ "name": "Màquina expenedora de pà",
+ "terms": "pà,baguette,baguet"
+ },
"amenity/vending_machine/cigarettes": {
"name": "Màquina de tabac",
"terms": "cigarretes,tabac",
@@ -4076,8 +5218,8 @@
"amenity/vending_machine/food": {
"name": "Màquina expenedora de menjar"
},
- "amenity/vending_machine/fuel": {
- "name": "Sortidor de benzina"
+ "amenity/vending_machine/food/snacks": {
+ "name": "Màquina de vènding de comestibles"
},
"amenity/vending_machine/ice_cream": {
"name": "Expenedora de gelats"
@@ -4087,7 +5229,8 @@
"terms": "cubitos,cubs,gel"
},
"amenity/vending_machine/newspapers": {
- "name": "Màquina expenedora de diaris"
+ "name": "Màquina expenedora de diaris",
+ "terms": "diari,periòdic,premsa"
},
"amenity/vending_machine/parking_tickets": {
"name": "Màquina de cobrament del tiquet d'aparcament"
@@ -4099,10 +5242,8 @@
"name": "Màquina de venda de títols de transport públic"
},
"amenity/vending_machine/stamps": {
- "name": "Expenedora de segells"
- },
- "amenity/vending_machine/sweets": {
- "name": "Màquina de vènding de comestibles"
+ "name": "Màquina expenedora de segells",
+ "terms": "segell,correu,postal,correu postal"
},
"amenity/veterinary": {
"name": "Veterinari",
@@ -4112,8 +5253,7 @@
"name": "Paperera per a excrements de gos"
},
"amenity/waste_basket": {
- "name": "Paperera",
- "terms": "paperera,basura,paperera pública,contenidor,deixalles,brossa"
+ "name": "Paperera"
},
"amenity/waste_disposal": {
"name": "Contenidor d'escombraries"
@@ -4125,29 +5265,82 @@
"name": "Aigua potable d'autocaravana"
},
"amenity/watering_place": {
- "name": "Font d'aigua per animals"
+ "name": "Font d'aigua per animals (abeurador)",
+ "terms": "abeurador"
},
"area": {
"name": "Àrea",
"terms": "àrea"
},
+ "area/footway": {
+ "name": "Àrea de vianants"
+ },
+ "area/highway": {
+ "name": "Àrea de la carretera"
+ },
"attraction": {
"name": "Atracció"
},
"attraction/amusement_ride": {
"name": "Atracció de fira"
},
+ "attraction/animal": {
+ "name": "Recinte animal",
+ "terms": "anfibi,parc animal,aquarium,os,pardal,ocell,oroneta,peix,insecte,lleó,mamífer,mico,mono,pingüí,reptil,parc,tigre,zoo"
+ },
+ "attraction/big_wheel": {
+ "name": "Roda",
+ "terms": "nòria,sínia,fira,parc temàtic"
+ },
+ "attraction/bumper_car": {
+ "name": "Autos de xoc",
+ "terms": "cotxes de xoc"
+ },
+ "attraction/bungee_jumping": {
+ "name": "Salt elàstic",
+ "terms": "salt,botar,bot,bungee,puenting,pont,benji,corda elàstica,salt al buit,bungee jumping"
+ },
+ "attraction/carousel": {
+ "name": "Cavallets"
+ },
+ "attraction/dark_ride": {
+ "name": "Tren fantasma"
+ },
+ "attraction/drop_tower": {
+ "name": "Torres de caiguda lliure",
+ "terms": "caiguda lliure,caiguda,lliure,parc d'atraccions,atracció de fira,torre"
+ },
+ "attraction/kiddie_ride": {
+ "name": "Passeig infantil",
+ "terms": "passeig infantil,atracció per a xiquets,atracció per a nens"
+ },
+ "attraction/log_flume": {
+ "name": "Canal de troncs",
+ "terms": "parc d'atraccions,canal,troncs,atracció"
+ },
"attraction/maze": {
"name": "Laberint"
},
+ "attraction/pirate_ship": {
+ "name": "Passeig en vaixell pirata"
+ },
+ "attraction/river_rafting": {
+ "name": "Passeig pels ràpids del riu"
+ },
"attraction/roller_coaster": {
"name": "Muntanya russa"
},
+ "attraction/summer_toboggan": {
+ "name": "Tobogan d'estiu"
+ },
+ "attraction/swing_carousel": {
+ "name": "Gronxadors penjants"
+ },
"attraction/train": {
"name": "Tren turístic"
},
"attraction/water_slide": {
- "name": "tobogan d'aigua"
+ "name": "Tobogan d'aigua"
},
"barrier": {
"name": "Barrera",
@@ -4198,6 +5391,12 @@
"name": "Porta",
"terms": "porta d'embarcament d'avions,porta d'aeroport,porta"
},
+ "barrier/guard_rail": {
+ "name": "Guarda rail"
+ },
+ "barrier/handrail": {
+ "name": "Barana"
+ },
"barrier/hedge": {
"name": "Tanca de bardissa",
"terms": "seto,tanca de bardissa,valla de seto,valla verda,valla de plantes,tanca de plantes"
@@ -4205,20 +5404,35 @@
"barrier/height_restrictor": {
"name": "Restrictor de gàlib"
},
+ "barrier/jersey_barrier": {
+ "name": "Barrera Jersey"
+ },
"barrier/kerb": {
- "name": "Gual",
+ "name": "Vorada",
"terms": "vorera,bordillo,rebaix"
},
+ "barrier/kerb/flush": {
+ "name": "Vorada rasa",
+ "terms": "vorada al ras,vorada a ras,vorada ras,vorada rasa,gual ras"
+ },
+ "barrier/kerb/lowered": {
+ "name": "Vorada rebaixada/gual",
+ "terms": "vorada rebaixada,rebaix,gual rebaixat"
+ },
+ "barrier/kerb/raised": {
+ "name": "Vorada elevada",
+ "terms": "vorada elevada,vorada alçada,gual alçat,gual elevat,gual alt"
+ },
+ "barrier/kerb/rolled": {
+ "name": "Vorada enrotllada",
+ "terms": "forma de canal,canal,canal de paviment,vorada en forma de canal,vorada corbada,vora encorbada,vorada encorbada,gual en forma de canal,vorada enrotllada,gual enrotllat"
+ },
"barrier/kissing_gate": {
"name": "Porta giratòria",
"terms": "porta giratòria,porta sense retorn,accés giratori,porta de no retorn"
},
- "barrier/lift_gate": {
- "name": "Barrera per a vehicles",
- "terms": "porta d'ascensor"
- },
"barrier/log": {
- "name": "Arbre caigut"
+ "name": "Obstrucció per arbre caigut"
},
"barrier/motorcycle_barrier": {
"name": "Barrera per a motocicletes"
@@ -4231,13 +5445,20 @@
"terms": "mur de contenció,paret de contenció"
},
"barrier/stile": {
- "name": "esgraons",
- "terms": "escala de tanca"
+ "name": "Tanca amb escalons",
+ "terms": "escala de tanca,tanca amb esgraons,tanca amb esglaons"
+ },
+ "barrier/swing_gate": {
+ "name": "Porta batent"
},
"barrier/toll_booth": {
"name": "Peatge",
"terms": "peatge,autopista de peatge,cabina de peatge,estació de peatge,punt de peatge"
},
+ "barrier/turnstile": {
+ "name": "Torniquet d'accés",
+ "terms": "molinet"
+ },
"barrier/wall": {
"name": "Mur",
"terms": "mur,paret,muralla"
@@ -4261,13 +5482,23 @@
"name": "Edifici",
"terms": "edifici,bloc de pisos,nau industrial,centre comercial,oficines,bloc,casa,barraca"
},
+ "building/allotment_house": {
+ "name": "Casa de l'hort"
+ },
"building/apartments": {
"name": "Edifici d'apartaments",
"terms": "edifici d'apartaments,apartaments,pisos,bloc de pisos,bloc"
},
+ "building/bakehouse": {
+ "name": "Forn de pa"
+ },
"building/barn": {
"name": "Graner"
},
+ "building/boathouse": {
+ "name": "Caseta per a vaixells",
+ "terms": "vaixells,bots,barcos,enmgatzemar vaixelles"
+ },
"building/bungalow": {
"name": "Bungalou"
},
@@ -4278,6 +5509,10 @@
"name": "Cabana",
"terms": "cabina"
},
+ "building/carport": {
+ "name": "Aixopluc",
+ "terms": "pàrquing cobert,aparcament cobert,cobert,cotxe"
+ },
"building/cathedral": {
"name": "Edifici Catedralici"
},
@@ -4292,7 +5527,7 @@
"aliases": "Edifici públic"
},
"building/college": {
- "name": "Edifici d'escola professional"
+ "name": "Edifici d'una escola professional"
},
"building/commercial": {
"name": "Edifici comercial",
@@ -4302,8 +5537,11 @@
"name": "Edifici en construcció",
"terms": "edifici en construcció,edifici baix construcció"
},
+ "building/cowshed": {
+ "name": "Estable de vaques"
+ },
"building/detached": {
- "name": "Casa a quatre vents",
+ "name": "Casa aïllada",
"terms": "llar,casa,familiar,unifamiliar,residència,allotjament"
},
"building/dormitory": {
@@ -4320,18 +5558,30 @@
"name": "Edifici d'una granja"
},
"building/fire_station": {
- "name": "Edifici d'un parc de bombers"
+ "name": "Edifici d'un parc de bombers",
+ "terms": "bombers,emergències,foc,112"
},
"building/garage": {
- "name": "garatge",
+ "name": "Garatge",
"terms": "garatge"
},
"building/garages": {
"name": "Garatges"
},
+ "building/ger": {
+ "name": "Iurta",
+ "terms": "ger,yurta"
+ },
+ "building/grandstand": {
+ "name": "Tribuna",
+ "terms": "grada,seients,tribuna,estadi,camp,espectadors"
+ },
"building/greenhouse": {
"name": "Hivernacle"
},
+ "building/hangar": {
+ "name": "Hangar"
+ },
"building/hospital": {
"name": "Edifici hospitalari",
"terms": "edifici hospitalari,hospital,urgències,planta,consultes externes,uci,uvi,quiròfans"
@@ -4343,6 +5593,10 @@
"name": "Casa",
"terms": "casa"
},
+ "building/houseboat": {
+ "name": "Casa flotant",
+ "terms": "casa,familia,residència,habitatge"
+ },
"building/hut": {
"name": "Cabana",
"terms": "barraca"
@@ -4354,12 +5608,21 @@
"building/kindergarten": {
"name": "Edifici de preescolar"
},
+ "building/manufacture": {
+ "name": "Edifici per a producció industrial"
+ },
"building/mosque": {
"name": "Edifici d'una mesquita"
},
"building/office": {
"name": "Edifici d'oficines"
},
+ "building/outbuilding": {
+ "name": "Construcció annexa"
+ },
+ "building/pavilion": {
+ "name": "Pavelló"
+ },
"building/public": {
"name": "Edifici públic",
"terms": "edifici públic"
@@ -4369,7 +5632,7 @@
"terms": "edifici residencial"
},
"building/retail": {
- "name": "Edifici d'un comerç al detall",
+ "name": "Edifici comercial",
"terms": "tenda,botiga,comerç,edifici comercial,detall"
},
"building/roof": {
@@ -4384,7 +5647,8 @@
"terms": "escola,gimnàs,poliesportiu,aulari,seminaris,pati,esbarjo,aules,despatxos,tallers,ateliers,aules d'informàtica,classes,classe,sala de música,corredors,corredor,pasillo,pasillos,passadís,passadissos,sala de professors,recepció"
},
"building/semidetached_house": {
- "name": "Casa adossada"
+ "name": "Casa adossada",
+ "terms": "llar,casa,familiar,unifamiliar,residència,allotjament,urbanització"
},
"building/service": {
"name": "Edifici de serveis"
@@ -4399,21 +5663,23 @@
"name": "Edifici d'un estadi"
},
"building/static_caravan": {
- "name": "Caravana fixa",
- "terms": "casa prefabricada,trailer casa,cosa mòbil,caravana residencial,caravana estàtica"
+ "name": "Autocaravana"
+ },
+ "building/sty": {
+ "name": "Porcellera"
+ },
+ "building/synagogue": {
+ "name": "Sinagoga"
},
"building/temple": {
"name": "Edifici d'un temple"
},
- "building/terrace": {
- "name": "Cases unifamiliars",
- "terms": "llar,adossats,en filera,familiar,residència,allotjament"
- },
"building/train_station": {
"name": "Edifici d'estació de tren"
},
"building/transportation": {
- "name": "Edifici per a transports"
+ "name": "Edifici per a transports",
+ "terms": "estació,autobús,autocar,bus"
},
"building/university": {
"name": "Edifici universitari",
@@ -4429,9 +5695,24 @@
"building_point": {
"name": "Edifici"
},
+ "cemetery/grave": {
+ "name": "Tomba"
+ },
+ "cemetery/sector": {
+ "name": "Secció de cementiri"
+ },
+ "climbing/route": {
+ "name": "Ruta d'escalada"
+ },
+ "climbing/route_bottom": {
+ "name": "Inici de ruta d'escalada"
+ },
"club": {
"name": "Club"
},
+ "club/scout": {
+ "name": "Grup d'Scout"
+ },
"club/sport": {
"name": "Club d'esports",
"terms": "club,esport,associació,esportistes,deport,deportistes,associació d'esports"
@@ -4485,7 +5766,8 @@
"name": "Artesà de llaminadures"
},
"craft/distillery": {
- "name": "Destil·leria"
+ "name": "Destil·leria",
+ "terms": "alcohol,beguda,destileria,bourbon,ginebra,ron,licor,mezcal,espirituoses,begudes espirituoses,tequila,vodka,ratafia,cassalla,whiskey,whiski,whisky,vi"
},
"craft/dressmaker": {
"name": "Sastreria"
@@ -4495,7 +5777,10 @@
},
"craft/electronics_repair": {
"name": "Botiga de reparacions electròniques",
- "terms": "tenda de reparacions electròniques"
+ "terms": "tenda de reparacions electròniques,telèfon,reparació de mòbils,mòbil"
+ },
+ "craft/floorer": {
+ "name": "Instal·lador de sòls"
},
"craft/gardener": {
"name": "Jardiner"
@@ -4511,6 +5796,9 @@
"name": "Aïllador",
"terms": "aïllant,isolador"
},
+ "craft/joiner": {
+ "name": "Ebenista"
+ },
"craft/key_cutter": {
"name": "Fabricant de claus",
"terms": "duplicació de claus,copia de claus"
@@ -4525,6 +5813,9 @@
"name": "Pintor",
"terms": "pintor"
},
+ "craft/parquet_layer": {
+ "name": "Instal·lador de parquet"
+ },
"craft/photographer": {
"name": "Fotògraf",
"terms": "fotògraf"
@@ -4611,6 +5902,27 @@
"disused/shop": {
"name": "Botiga en desús"
},
+ "education/dancing_school": {
+ "name": "Escola de dança"
+ },
+ "education/driving_school": {
+ "name": "Autoescola"
+ },
+ "education/kindergarten": {
+ "name": "Parc de guarderia"
+ },
+ "education/language_school": {
+ "name": "Escola d'idiomes"
+ },
+ "education/music_school": {
+ "name": "Escola de música"
+ },
+ "education/school": {
+ "name": "Recinte escolar"
+ },
+ "education/university": {
+ "name": "Campus universitari"
+ },
"embankment": {
"name": "Terraplè"
},
@@ -4618,20 +5930,18 @@
"name": "Objecte d'emergència"
},
"emergency/ambulance_station": {
- "name": "Parada d'ambulàncies",
- "terms": "estació d'ambulàncies"
+ "name": "Estació d'ambulàncies",
+ "terms": "parada d'ambulàncies,emergències,ambulàncies,metge"
},
"emergency/assembly_point": {
- "name": "Punt de trobada d'emergència"
+ "name": "Punt de trobada d'emergència",
+ "terms": "emergencia,punt de trobada,punt d'emergències,trobada d'emergència"
},
"emergency/defibrillator": {
"name": "Desfibril·lador"
},
- "emergency/designated": {
- "name": "Accés per a emergències designat"
- },
- "emergency/destination": {
- "name": "Accés per a emergències només a destí"
+ "emergency/disaster_response": {
+ "name": "Estació de resposta a desastres"
},
"emergency/fire_extinguisher": {
"name": "Extintor"
@@ -4641,7 +5951,7 @@
},
"emergency/fire_hydrant": {
"name": "Boca d'incendis",
- "terms": "boca d'incendis,presa d'aigua per a bombers,incendi,bombers,sortida d'aigua,aigua"
+ "terms": "boca d'incendis,presa d'aigua per a bombers,incendi,bombers,sortida d'aigua,aigua,hidrant"
},
"emergency/first_aid_kit": {
"name": "Equip de primers auxilis"
@@ -4661,29 +5971,23 @@
"emergency/mountain_rescue": {
"name": "Rescat de muntanya"
},
- "emergency/no": {
- "name": "Accés per a emergències prohibit"
- },
- "emergency/official": {
- "name": "Accés per a emergències oficial"
- },
"emergency/phone": {
"name": "Telèfon per a emergències",
"terms": "telèfon d'emergències,sos,s.o.s"
},
- "emergency/private": {
- "name": "Accés per a emergències privat"
- },
"emergency/siren": {
"name": "Sirena"
},
+ "emergency/water_reservoir": {
+ "name": "Aigua reservada per a emergències"
+ },
+ "emergency/water_reservoir_covered": {
+ "name": "Aigua reservada per a emergències (subterrani)"
+ },
"emergency/water_tank": {
"name": "Dipòsit d'aigua d'emergència",
"terms": "tanc d'aigua,cisterna,dipòsit"
},
- "emergency/yes": {
- "name": "Accés per a emergències permès"
- },
"entrance": {
"name": "Entrada / Sortida",
"terms": "entrada,eixida,ixida,porta"
@@ -4697,6 +6001,9 @@
"entrance/main": {
"name": "Entrada principal"
},
+ "entrance/shop": {
+ "name": "Entrada a tenda"
+ },
"ford": {
"name": "Ford",
"terms": "gual"
@@ -4717,6 +6024,12 @@
"golf/hole": {
"name": "Forat"
},
+ "golf/lateral_water_hazard": {
+ "name": "Obstacle d'aigua lateral"
+ },
+ "golf/path": {
+ "name": "Camí per a vianants de Golf"
+ },
"golf/rough": {
"name": "Rough"
},
@@ -4732,21 +6045,38 @@
"healthcare/alternative": {
"name": "Medicina alternativa"
},
+ "healthcare/alternative/acupuncture": {
+ "name": "Practicant d'acupuntura"
+ },
"healthcare/alternative/chiropractic": {
"name": "Quiropràctic"
},
+ "healthcare/audiologist": {
+ "name": "Audiòleg"
+ },
"healthcare/birthing_center": {
"name": "Centre de parts"
},
"healthcare/blood_donation": {
"name": "Centre de donació de sang"
},
+ "healthcare/counselling": {
+ "name": "Centre d'assessorament"
+ },
+ "healthcare/dentist/orthodontics": {
+ "name": "Ortodontista",
+ "terms": "ortodòncia,braquets,aparato,dents,alineament dental,dent,bucal,boca"
+ },
"healthcare/hospice": {
"name": "Hospici"
},
"healthcare/laboratory": {
"name": "Laboratori mèdic"
},
+ "healthcare/midwife": {
+ "name": "Llevador",
+ "terms": "llevador,llevadora,doula,matrona,infermer obstetricoginecològic,infermera obstetricoginecològica"
+ },
"healthcare/occupational_therapist": {
"name": "Terapeuta ocupacional"
},
@@ -4757,12 +6087,19 @@
"healthcare/physiotherapist": {
"name": "Fisioterapeuta"
},
+ "healthcare/podiatrist": {
+ "name": "Podòleg",
+ "terms": "peu,peus,cama,cames,podologia,taló,turmell"
+ },
"healthcare/psychotherapist": {
"name": "Psicoterapeuta"
},
"healthcare/rehabilitation": {
"name": "Centre de reabilitació"
},
+ "healthcare/sample_collection": {
+ "name": "Instal·lació de col·leccions de mostres"
+ },
"healthcare/speech_therapist": {
"name": "Logopeda"
},
@@ -4776,30 +6113,37 @@
"name": "Camí de ferradura",
"terms": "camí de ferradura,cavall,camí eqüestre,via eqüestre,ferradura,via de ferradura"
},
+ "highway/bus_guideway": {
+ "name": "Via d'autobús"
+ },
"highway/bus_stop": {
"name": "Parada d'autobús",
"aliases": "Parada de bus"
},
+ "highway/busway": {
+ "name": "Camí d'autobús"
+ },
+ "highway/construction": {
+ "name": "Carretera en construcció"
+ },
"highway/corridor": {
"name": "Corredor interior"
},
"highway/crossing": {
- "name": "Pas de vianants"
+ "name": "Pas de vianants",
+ "terms": "travessera,cruïlla,pas de vianants,pas zebra,pas de peatons,pas de transeünts"
},
- "highway/crossing/marked": {
- "name": "Pas de vianants amb senyalització horitzontal"
+ "highway/crossing/informal": {
+ "name": "Camí informal"
},
"highway/crossing/traffic_signals": {
"name": "Pas de vianants controlat per semàfors"
},
"highway/crossing/uncontrolled": {
- "terms": "pas de vianants,pas de peatons"
+ "name": "Pas de vianants senyalitzat"
},
"highway/crossing/unmarked": {
- "name": "Creuament sense senyalització horitzontal"
- },
- "highway/crossing/zebra": {
- "name": "Pas de zebra"
+ "name": "Pas de vianants sense senyalització horitzontal"
},
"highway/cycleway": {
"name": "Carril Bici",
@@ -4814,12 +6158,31 @@
"highway/cycleway/crossing/bicycle_foot": {
"name": "Pas per a vianants i bicicletes"
},
- "highway/cycleway/crossing/marked": {
- "name": "Pas de bicicletes senyalitzat hortizontalment"
+ "highway/cycleway/crossing/traffic_signals": {
+ "name": "Creuament ciclista amb semàfor",
+ "terms": "semàfor,bici,bicicleta,pista ciclista,creuament ciclista"
+ },
+ "highway/cycleway/crossing/uncontrolled": {
+ "name": "Pas de bicicletes amb senyalització horitzontal"
},
"highway/cycleway/crossing/unmarked": {
"name": "Pas de bicicletes sense senyalització horitzontal"
},
+ "highway/cycleway/traffic_island": {
+ "name": "Illa de refugi per a ciclistes"
+ },
+ "highway/cycleway/traffic_island_shared": {
+ "name": "Illa de refugi per a ciclistes i vianants"
+ },
+ "highway/elevator": {
+ "name": "Ascensor"
+ },
+ "highway/elevator_line": {
+ "name": "Ascensor inclinat"
+ },
+ "highway/emergency_access_point": {
+ "name": "Punt d'accés d'emergència"
+ },
"highway/emergency_bay": {
"name": "Lloc d'aturada d'emergència",
"aliases": "Lloc de parada d'emergència"
@@ -4828,19 +6191,34 @@
"name": "Camí per a vianants",
"terms": "camí per a vianants,carrer peatonal,camí per a peatons,a peu,camí per caminar,vianant,vianants,peató,peatons,transeünt,transeünts,peatonal"
},
+ "highway/footway/access_aisle": {
+ "name": "Corredor d'accés"
+ },
+ "highway/footway/conveying": {
+ "name": "Camí per a vianants mòbil"
+ },
"highway/footway/crossing": {
"name": "Pas de vianants"
},
- "highway/footway/crossing/marked": {
- "name": "Pas de vianants amb senyalització horitzontal"
+ "highway/footway/crossing/traffic_signals": {
+ "name": "Pas de vianants controlat per semàfors"
},
- "highway/footway/crossing/zebra": {
- "name": "Pas de zebra"
+ "highway/footway/crossing/uncontrolled": {
+ "name": "Pas de vianants senyalitzat"
+ },
+ "highway/footway/crossing/unmarked": {
+ "name": "Pas de vianants sense senyalització horitzontal"
+ },
+ "highway/footway/informal": {
+ "name": "Camí de vianants informal"
},
"highway/footway/sidewalk": {
"name": "Vorera",
"terms": "vorera,voravia"
},
+ "highway/footway/traffic_island": {
+ "name": "Illa de refugi"
+ },
"highway/give_way": {
"name": "Senyal de cediu el pas"
},
@@ -4864,12 +6242,28 @@
"name": "Enllaç d'autopista",
"terms": "rampa,entrada,incorporació,baixada,addició,autopista,autovia,eix"
},
+ "highway/passing_place": {
+ "name": "Lloc de pas"
+ },
"highway/path": {
- "name": "Camí",
- "terms": "sender,corriol"
+ "name": "Sender",
+ "terms": "sender,corriol,senda,camí"
+ },
+ "highway/path/crossing": {
+ "name": "Pas per a vianants i bicicletes"
+ },
+ "highway/path/crossing/traffic_signals": {
+ "name": "Pas per a vianants i bicicletes amb senyals per a vianants"
+ },
+ "highway/path/crossing/uncontrolled": {
+ "name": "Pas per a vianants i bicicletes senyalitzat"
+ },
+ "highway/path/crossing/unmarked": {
+ "name": "Pas per a vianants i bicicletes sense senyalització"
},
"highway/path/informal": {
- "name": "Camí informal"
+ "name": "Camí informal",
+ "terms": "senda informal,sender informal"
},
"highway/pedestrian_area": {
"name": "Àrea de vianants"
@@ -4921,7 +6315,7 @@
},
"highway/service/drive-through": {
"name": "Via de servei al vehicle",
- "terms": "pas de vehicles,via d'autoservei"
+ "terms": "pas de vehicles,via d'autoservei,servei d'atenció a través del cotxe"
},
"highway/service/driveway": {
"name": "Via d'accés a una propietat",
@@ -4939,6 +6333,10 @@
"name": "Àrea de servei",
"terms": "motel,estació de servei,àrea de servei,parada de camioners,parada de camions,estació de servici,àrea de servici"
},
+ "highway/speed_camera": {
+ "name": "Radar de velocitat",
+ "terms": "radar,velocitat màxima,límit de velocitat,multa"
+ },
"highway/steps": {
"name": "Escales",
"terms": "esgraons,graons,escalinata,escala,escalons"
@@ -4965,7 +6363,8 @@
"terms": "peatge"
},
"highway/track": {
- "name": "Pista forestal / Via d'accés"
+ "name": "Pista forestal / Via d'accés",
+ "terms": "camí"
},
"highway/traffic_mirror": {
"name": "Mirall de trànsit"
@@ -5031,6 +6430,9 @@
"name": "Memorial",
"terms": "memorial"
},
+ "historic/memorial/blue_plaque-GB-IE": {
+ "name": "Placa blava"
+ },
"historic/memorial/plaque": {
"name": "Placa commemorativa"
},
@@ -5060,6 +6462,15 @@
"historic/wreck": {
"name": "Naufragi"
},
+ "indoor": {
+ "name": "Element d'interior"
+ },
+ "indoor/corridor": {
+ "name": "Corredor interior"
+ },
+ "indoor/corridor_line": {
+ "name": "Corredor interior"
+ },
"indoor/room": {
"name": "Habitació"
},
@@ -5110,7 +6521,7 @@
"name": "Zona Agrícola"
},
"landuse/farmyard": {
- "name": "Edificis de Granja",
+ "name": "Terrenys de Granja",
"terms": "granja,granges,galliner,estable,mas,masia,masoveria,ranxo,nau,naus,dipòsit,femta,fems,fem,porc,porcs,purí,purins,gallina,gallines,conill,conills,pinso,tancat,tanca,valles,valla"
},
"landuse/flowerbed": {
@@ -5120,7 +6531,8 @@
"name": "Bosc gestionat"
},
"landuse/garages": {
- "name": "Terreny per a garatges"
+ "name": "Terreny per a garatges",
+ "terms": "parking,aparcament,pàrquing"
},
"landuse/grass": {
"name": "Herba",
@@ -5136,7 +6548,8 @@
"name": "Port"
},
"landuse/industrial": {
- "name": "Zona Industrial"
+ "name": "Zona Industrial",
+ "terms": "polígon,polígon industrial,industrial,fàbrica,empresa,comerç,manufactura,dipòsit"
},
"landuse/industrial/scrap_yard": {
"name": "Desballestador de vehicles"
@@ -5156,10 +6569,12 @@
"name": "Zona Militar"
},
"landuse/military/airfield": {
- "name": "Aeròdrom militar"
+ "name": "Aeròdrom militar",
+ "terms": "aeròdrom,força àerea,aeronau,avió,aeroport,armada,base,comba,lluita,guerra,helicopter,heliport,marina,tropa"
},
"landuse/military/barracks": {
- "name": "Caserna militar"
+ "name": "Caserna militar",
+ "terms": "força aerea,base,lluita,guerra,guardia,marine,troà"
},
"landuse/military/base": {
"name": "Base militar"
@@ -5167,9 +6582,6 @@
"landuse/military/base/navy": {
"name": "Base naval"
},
- "landuse/military/danger_area": {
- "name": "Àrea de perill"
- },
"landuse/military/obstacle_course": {
"name": "Cursa d'obstacles militar"
},
@@ -5226,7 +6638,8 @@
"terms": "vinyar,vinyal,vinyet,vinya"
},
"landuse/winter_sports": {
- "name": "Zona d'esports d'hivern"
+ "name": "Zona d'esports d'hivern",
+ "terms": "pista,esquí,neu,eski,muntanya,resort,snowboard,tabla de neu"
},
"leisure": {
"name": "Element d'esbarjo"
@@ -5258,9 +6671,6 @@
"name": "Pista de ball",
"terms": "zona de ball"
},
- "leisure/dancing_school": {
- "name": "Escola de dansa"
- },
"leisure/dog_park": {
"name": "Parc Caní",
"terms": "pipi-can,parc per gossos"
@@ -5275,10 +6685,12 @@
"name": "Punt de pesca"
},
"leisure/fitness_centre": {
- "name": "Gimnàs / Centre de Fitness"
+ "name": "Gimnàs / Centre de Fitness",
+ "terms": "salut,saludable,gimnàs,esport,deport,pilates,estudio,peses,fort"
},
"leisure/fitness_centre/yoga": {
- "name": "Estudi de Yoga"
+ "name": "Estudi de Yoga",
+ "terms": "ioga,meditació,asana"
},
"leisure/fitness_station": {
"name": "Instal·lació exterior de Fitness"
@@ -5397,9 +6809,15 @@
"leisure/pitch/cricket": {
"name": "Camp de criquet"
},
+ "leisure/pitch/field_hockey": {
+ "name": "Camp d'hoquei"
+ },
"leisure/pitch/netball": {
"name": "Pista de netbol"
},
+ "leisure/pitch/padel": {
+ "name": "Pista de pàdel"
+ },
"leisure/pitch/rugby_league": {
"name": "Camp de la lliga de Rugbi"
},
@@ -5425,13 +6843,16 @@
"terms": "camp de tennis,pista de tennis"
},
"leisure/pitch/volleyball": {
- "name": "Camp de vòleibol",
+ "name": "Camp de voleibol",
"terms": "pista de voleibol,camp de voleibol"
},
"leisure/playground": {
"name": "Zona de jocs infantils",
"terms": "parc infantil"
},
+ "leisure/playground/indoor": {
+ "name": "Parc infantil interior"
+ },
"leisure/resort": {
"name": "Complex turístic",
"terms": "centre recreatiu,sanatori,esquí,snowboard,resort,vacances,vacacions,jocs d’hivern"
@@ -5447,7 +6868,8 @@
"name": "Grada (Nàutica)"
},
"leisure/sports_centre": {
- "name": "Complex esportiu"
+ "name": "Complex esportiu",
+ "terms": "poliesportiu,pavelló,pabelló,centre d'atletisme,atletisme,complexe,polideportiu"
},
"leisure/sports_centre/climbing": {
"name": "Gimnàs d'escalada"
@@ -5467,6 +6889,13 @@
"name": "Piscina",
"terms": "piscina"
},
+ "leisure/track/athletics/running": {
+ "name": "Pista atlètica"
+ },
+ "leisure/track/running": {
+ "name": "Pista atlètica",
+ "terms": "pista per córrer,pista d'atletisme,pista,córrer,atlètic,atlètica,atletisme"
+ },
"leisure/trampoline_park": {
"name": "Parc de Trampolins"
},
@@ -5511,9 +6940,26 @@
"man_made/chimney": {
"name": "Xemeneia"
},
+ "man_made/clearcut": {
+ "name": "Tala rasa d'arbres",
+ "terms": "tall,tala,bosc,arbre,fusta"
+ },
+ "man_made/compass_rose": {
+ "name": "Rosa dels vents",
+ "terms": "tramuntana,vent de port,gregal,llevant,xaloc,migjorn,garbí,llebeig,ponent,mestral,cerç,serè,nord,sud,est,oest,roseta dels vents,bruixola"
+ },
+ "man_made/courtyard": {
+ "name": "Pati interior"
+ },
"man_made/crane": {
"name": "Grua"
},
+ "man_made/crane/gantry_crane": {
+ "name": "Grua pòrtic"
+ },
+ "man_made/crane/portal_crane": {
+ "name": "Pont Grua"
+ },
"man_made/cross": {
"name": "Creu",
"terms": "creu,creueta"
@@ -5536,6 +6982,9 @@
"name": "Màstil",
"terms": "màstil"
},
+ "man_made/fuel_pump": {
+ "name": "Sortidor de benzina"
+ },
"man_made/gasometer": {
"name": "Gasòmetre"
},
@@ -5545,11 +6994,31 @@
},
"man_made/manhole": {
"name": "Pou de registre",
- "terms": "arqueta,pou,forat,telecomunicacions"
+ "terms": "arqueta,pou,forat,telecomunicacions,tapa de registre"
},
"man_made/manhole/drain": {
- "name": "Desguàs",
- "terms": "pluja,plutja,forat,aigua,desaigüe,tormenta,drenatge"
+ "name": "Embornal",
+ "terms": "albelló,pluja,forat,aigua,desaigüe,desaigüe pluvial,tempesta,drenatge,desguàs,claveguera,tapa de claveguera"
+ },
+ "man_made/manhole/gas": {
+ "name": "Pou de registre de gas",
+ "terms": "gas,arqueta,tapa"
+ },
+ "man_made/manhole/power": {
+ "name": "Pou de registre de la xarxa elèctrica",
+ "terms": "elèctric,electricitat,arqueta,tapa"
+ },
+ "man_made/manhole/sewer": {
+ "name": "Tapa de claveguera",
+ "terms": "arqueta de claveguera,claveguera,forat,aigües residuals,aigües brutes"
+ },
+ "man_made/mast/communication/radio": {
+ "name": "Màstil de comunicació de ràdio",
+ "terms": "antena de ràdio,torre de ràdio,màstil de ràdio,ràdio"
+ },
+ "man_made/mast/communication/television": {
+ "name": "Màstil de comunicació de televisió",
+ "terms": "màstil de televisió,televisió,antena de televisió"
},
"man_made/monitoring_station": {
"name": "Estació de seguiment"
@@ -5578,6 +7047,10 @@
"man_made/pipeline/underground": {
"name": "Canonada subterrània"
},
+ "man_made/planter": {
+ "name": "Maceter",
+ "terms": "maceta,maceter,jardinera"
+ },
"man_made/pumping_station": {
"name": "Estació de bombament"
},
@@ -5597,6 +7070,9 @@
"terms": "torre d'aigua,dipòsit d'aigua,cisterna",
"aliases": "Dipòsit d'aigua"
},
+ "man_made/street_cabinet": {
+ "name": "Armari de carrer"
+ },
"man_made/surveillance": {
"name": "Vigilància"
},
@@ -5607,10 +7083,19 @@
"name": "Punt referencial",
"terms": "punt de salvació,punt de salvament,punt d'evacuació"
},
+ "man_made/telescope/optical": {
+ "name": "Telescopi òptic"
+ },
+ "man_made/telescope/radio": {
+ "name": "Radiotelescopi"
+ },
"man_made/tower": {
"name": "Torre",
"terms": "torre,torres"
},
+ "man_made/tower/bell_tower": {
+ "name": "Campanar"
+ },
"man_made/tower/communication": {
"name": "Torre de comunicacions"
},
@@ -5670,7 +7155,7 @@
"name": "Element fet per l'home (Tipus sense especificar)"
},
"military/bunker": {
- "name": "Bunquer militar"
+ "name": "Búnquer militar"
},
"military/checkpoint": {
"name": "Punt de control militar"
@@ -5723,8 +7208,7 @@
"name": "Landa"
},
"natural/hot_spring": {
- "name": "Surgència termal",
- "aliases": "Aigües termals"
+ "name": "Surgència termal, Aigües termals"
},
"natural/mud": {
"name": "Argila",
@@ -5734,6 +7218,9 @@
"name": "Pic",
"terms": "pic,cim,cimadal,pollegó,agulla."
},
+ "natural/peninsula": {
+ "name": "Peninsula"
+ },
"natural/reef": {
"name": "Escull"
},
@@ -5761,8 +7248,12 @@
"natural/shrub": {
"name": "Arbust"
},
+ "natural/sinkhole": {
+ "name": "Dolina"
+ },
"natural/spring": {
- "name": "Font"
+ "name": "Font natural",
+ "terms": "deu,aiguaneix,brollador"
},
"natural/stone": {
"name": "Pedra solta / Bloc de pedra"
@@ -5774,6 +7265,17 @@
"name": "Arbre",
"terms": "arbre"
},
+ "natural/tree/broadleaved": {
+ "name": "Arbre planifoli"
+ },
+ "natural/tree/broadleaved/deciduous": {
+ "name": "Arbre planifoli (caducifoli)",
+ "terms": "caducifoli"
+ },
+ "natural/tree/broadleaved/evergreen": {
+ "name": "Arbre planifoli (fulla perenne)",
+ "terms": "perenne,perennifoli"
+ },
"natural/tree_row": {
"name": "Fila d'arbres"
},
@@ -5788,7 +7290,8 @@
"terms": "aigua"
},
"natural/water/basin": {
- "name": "Conca"
+ "name": "Conca",
+ "terms": "conca"
},
"natural/water/canal": {
"name": "Àrea de canal"
@@ -5800,6 +7303,9 @@
"natural/water/moat": {
"name": "Fossat"
},
+ "natural/water/oxbow": {
+ "name": "Braç mort"
+ },
"natural/water/pond": {
"name": "Estany",
"terms": "estany,bassa,bassal,llac,reserva,aljub"
@@ -5819,6 +7325,45 @@
"natural/wetland": {
"name": "Aiguamolls"
},
+ "natural/wetland/bog": {
+ "name": "Torbera"
+ },
+ "natural/wetland/fen": {
+ "name": "Mollera",
+ "terms": "aiguamoll alcalí,pantà d'aigua dolça,llacuna alcalina,zona humida amb aigua estancada"
+ },
+ "natural/wetland/mangrove": {
+ "name": "Manglar",
+ "terms": "manglar,bosc de mangles,palafolls,zona de palafolls,zona costanera de mangles"
+ },
+ "natural/wetland/marsh": {
+ "name": "Aiguamoll",
+ "terms": "marjal,aiguamoll,aiguabarreig,bassa"
+ },
+ "natural/wetland/reedbed": {
+ "name": "Canyissar",
+ "terms": "llucertar,llucera,llucertaral"
+ },
+ "natural/wetland/saltmarsh": {
+ "name": "marjal salada costanera",
+ "terms": "marjal salina costanera,aiguamoll salat costaner,marjal salada costanera"
+ },
+ "natural/wetland/string_bog": {
+ "name": "Aiguamoll en forma de filaments",
+ "terms": "marjal filiforme,aiguamoll en forma de filaments"
+ },
+ "natural/wetland/swamp": {
+ "name": "Pantà",
+ "terms": "pantà,marjal,aiguamoll,llacuna,bassa,brolla"
+ },
+ "natural/wetland/tidalflat": {
+ "name": "Plana de marea",
+ "terms": "platja de marea,platja mareal,zona de pleamar,plana de marea"
+ },
+ "natural/wetland/wet_meadow": {
+ "name": "prat humit",
+ "terms": "prat humit,prat palúdic,prada mullada"
+ },
"natural/wood": {
"name": "Bosc natural",
"terms": "bosc natural,bosc no gestionat,forestal,arbres",
@@ -5851,9 +7396,16 @@
"name": "Oficina d'una organització sense ànim de lucre",
"terms": "associació,ong,sense ànim de lucre,organització,societat"
},
+ "office/charity": {
+ "name": "Entitat caritativa",
+ "terms": "oficina de beneficència,entitat caritativa,seu d'organització benèfica,punt de suport caritatiu"
+ },
"office/company": {
"name": "Oficina corporativa"
},
+ "office/consulting": {
+ "name": "Oficina d'una consultoria"
+ },
"office/coworking": {
"name": "Espai de cotreball",
"aliases": "Espai de coworking\nEspai de treball compartit"
@@ -5865,18 +7417,27 @@
"name": "Consolat"
},
"office/diplomatic/embassy": {
- "name": "Ambaixada"
+ "name": "Ambaixada",
+ "terms": "ambaixada,consolat,missió diplomàtica,missió estrangera,alta comissió,missió permanent"
+ },
+ "office/diplomatic/liaison": {
+ "terms": "oficina de lligam,delegació,representació,sucursal,agència de connexió,missió diplomàtica"
},
"office/educational_institution": {
- "name": "Institució Educativa"
+ "name": "Institució Educativa",
+ "terms": "institució educativa,centre educatiu,escola,col·legi,universitat,acadèmia,institut"
},
"office/employment_agency": {
- "name": "Oficina de treball"
+ "name": "Oficina de treball",
+ "terms": "agència d'ocupació,empresa de treball temporal,agència de col·locació,servei d'intermediació laboral,faena,feina,treball,ocupació"
},
"office/energy_supplier": {
"name": "Oficina d'una Distribuïdora Energètica",
"terms": "distribuïdora elèctrica,companyia elèctrica,electricitat,gas,distribuïdora de gas"
},
+ "office/engineer": {
+ "name": "Oficina d'enginyeria"
+ },
"office/estate_agent": {
"name": "Agència immobiliària",
"terms": "immobiliària,propietat"
@@ -5905,6 +7466,12 @@
"name": "Registre civil",
"terms": "defunció,naiximent,naixement,certificat,funcionari"
},
+ "office/government/tax": {
+ "name": "Oficina tributària d'impostos/hisenda"
+ },
+ "office/graphic_design": {
+ "name": "Oficina de disseny gràfic"
+ },
"office/guide": {
"name": "Oficina de guies turístics"
},
@@ -5918,21 +7485,25 @@
},
"office/lawyer": {
"name": "Bufet d'advocats",
- "terms": "advocat,dret,jutge"
+ "terms": "advocat,dret,jutge,llei"
},
"office/lawyer/notary": {
"name": "Notaria"
},
+ "office/moving_company": {
+ "name": "Companyia de mudances"
+ },
"office/newspaper": {
"name": "Oficines d'un Diari",
- "terms": "sala de premsa,redacció"
+ "terms": "sala de premsa,redacció,diari,periòdic,premsa"
},
"office/ngo": {
"name": "Oficina d'una ONG",
"terms": "ong,organització no governamental,organització"
},
"office/notary": {
- "name": "Notaria"
+ "name": "Notaria",
+ "terms": "oficina del notari"
},
"office/physician": {
"name": "Metge"
@@ -5965,13 +7536,16 @@
"terms": "asesoria,comptable,tases,taxes,asesor,consultor"
},
"office/telecommunication": {
- "name": "Oficina de telecomunicacions",
+ "name": "Oficines d'una companyia de telecomunicacions",
"terms": "comunicació,proveïdor d'internet,xarxa,telèfon,veu,isp"
},
"office/therapist": {
"name": "Oficina de terapeuta",
"terms": "teràpia"
},
+ "office/translator": {
+ "name": "Oficina de traducció"
+ },
"office/travel_agent": {
"name": "Agència de viatges"
},
@@ -5985,14 +7559,23 @@
"office/yes": {
"name": "Oficina (Tipus sense especificar)"
},
+ "pipeline": {
+ "name": "Element de canalització"
+ },
+ "pipeline/substation": {
+ "name": "Subestació de gasoductes"
+ },
+ "pipeline/valve": {
+ "name": "Vàlvula de canonada"
+ },
"piste/ice_skate": {
"name": "Camí per patinatge sobre gel"
},
"piste/nordic": {
"name": "Camí per esquí de muntanya"
},
- "piste/piste": {
- "name": "Camí / pista per esports de neu"
+ "piste/sleigh": {
+ "name": "Camí per a trineus"
},
"place": {
"name": "Lloc"
@@ -6001,6 +7584,10 @@
"name": "Ciutat",
"terms": "ciutat,municipi"
},
+ "place/city_block": {
+ "name": "Illa urbana",
+ "aliases": "Illa de cases"
+ },
"place/farm": {
"name": "Granja"
},
@@ -6030,9 +7617,15 @@
"place/plot": {
"name": "Parcel·la"
},
+ "place/quarter": {
+ "name": "Subdistricte / Quarter"
+ },
"place/square": {
"name": "Plaça"
},
+ "place/suburb": {
+ "name": "Districte / Suburbi"
+ },
"place/town": {
"name": "Ciutat"
},
@@ -6066,6 +7659,9 @@
"name": "Pont penjant (Parc Infantil)",
"terms": "esbarjo,parc,parc infantil,pont"
},
+ "playground/climbingwall": {
+ "name": "Mur d'Escalada per a Jugar"
+ },
"playground/horizontal_bar": {
"name": "Barra horitzontal infantil"
},
@@ -6210,6 +7806,7 @@
},
"public_transport/platform/bus_point": {
"name": "Parada d'autobús",
+ "terms": "parada de bus,parada",
"aliases": "Parada de bus"
},
"public_transport/platform/bus_tram_point": {
@@ -6336,9 +7933,15 @@
"name": "Via fèrria abandonada",
"terms": "via ferroviaria abandonada,via de ferrocarril abandonada"
},
+ "railway/buffer_stop": {
+ "name": "Topall"
+ },
"railway/construction": {
"name": "Via fèrria en construcció"
},
+ "railway/crossing": {
+ "name": "Pas a nivell ferroviari"
+ },
"railway/disused": {
"name": "Via fèrria fora d'ús",
"terms": "via fèrria abandonada,via de tren fora d'ús,via de tren abandonada"
@@ -6356,6 +7959,9 @@
"railway/light_rail": {
"name": "Via de tren lleuger"
},
+ "railway/milestone": {
+ "name": "Fita quilomètrica ferroviaria"
+ },
"railway/monorail": {
"name": "Via de monoraïl"
},
@@ -6371,6 +7977,9 @@
"railway/rail": {
"name": "Via de tren"
},
+ "railway/rail/highspeed": {
+ "name": "Via de tren d'alta velocitat"
+ },
"railway/railway_crossing": {
"name": "cruïlla ferroviària"
},
@@ -6397,10 +8006,34 @@
"name": "Tramvia",
"terms": "tranvia,tram"
},
+ "railway/tram_crossing": {
+ "name": "Encreuament tramvia-camí"
+ },
+ "railway/tram_level_crossing": {
+ "name": "Encreuament tramvia-carretera"
+ },
+ "railway/tram_stop": {
+ "name": "Tram Stopping Position"
+ },
+ "railway/turntable": {
+ "name": "Plat giratori ferroviari",
+ "terms": "taula giratòria ferroviària,taula giratòria,placa giratòria,plataforma giratòria,plat giratori"
+ },
"relation": {
"name": "Relació",
"terms": "relació"
},
+ "roller_coaster/station": {
+ "name": "Estació de muntanya russa",
+ "terms": "caseta de muntanya russa,parada de muntanya russa,estació de muntanya russa"
+ },
+ "roller_coaster/support": {
+ "name": "Estructura de muntanya russa"
+ },
+ "roller_coaster/track": {
+ "name": "Raïl de muntanya russa",
+ "terms": "raïl de muntanya russa,via de muntanya russa,vies de muntanya russa,raïls de muntanya russa"
+ },
"route/ferry": {
"name": "Ruta de ferri"
},
@@ -6410,13 +8043,16 @@
"seamark/beacon_lateral": {
"name": "Far de canal"
},
+ "seamark/mooring": {
+ "name": "Amarrament"
+ },
"shop": {
"name": "Botiga",
"terms": "botiga,comerç,tenda"
},
"shop/agrarian": {
"name": "Agrobotiga",
- "terms": "botiga de suministres agrícoles,tenda de suministres agrícoles",
+ "terms": "botiga de suministres agrícoles,tenda de suministres agrícoles,agrotenda,cooperativa agrícola",
"aliases": "Cooperativa agrícola"
},
"shop/alcohol": {
@@ -6431,16 +8067,21 @@
"name": "Botiga d'antiguitats",
"terms": "tenda d'antiguitats,antiquari,vintage,història,vell,antic"
},
+ "shop/appliance": {
+ "name": "Botiga d'electrodomèstics",
+ "terms": "tenda d'electrodomèstics,electrodomèstic,aire condicionat,secadora,rentadora,llavadora,congelador,nevera,forn,estufa,refrigerador,cafetera,televisió"
+ },
"shop/art": {
"name": "Botiga d'art",
"terms": "art,exhibit,galeria,galeria d'art,exhibició"
},
"shop/baby_goods": {
"name": "Botiga per a nadons",
- "terms": "botiga per a bebès,tenda per a bebès,tenda per a nadons,bebè,nadó,bebé"
+ "terms": "botiga per a bebès,tenda per a bebès,tenda per a nadons,bebè,nadó,bebé,puericultura"
},
"shop/bag": {
- "name": "Botiga d'equipatges o bosses"
+ "name": "Botiga d'equipatges o bosses",
+ "terms": "bolso,maleta,bossa,complements,cartera,equipatge,moneder,tenda d'equipatges o bosses"
},
"shop/bakery": {
"name": "Fleca",
@@ -6475,7 +8116,7 @@
},
"shop/bookmaker": {
"name": "Casa d'apostes",
- "terms": "apostes,joc d'atzar,escurabujaques,jocs d'atzar,apostar,joc"
+ "terms": "apostes,joc d'atzar,escurabujaques,jocs d'atzar,apostar,joc,saló,sala"
},
"shop/books": {
"name": "Llibreria"
@@ -6517,7 +8158,8 @@
"name": "Botiga de formatge"
},
"shop/chemist": {
- "name": "Farmàcia"
+ "name": "Drogueria",
+ "terms": "perfumeria,bellesa,cosmètics,monyo,pèl,farmàcia,dents,higiene"
},
"shop/chocolate": {
"name": "Botiga de xocolata"
@@ -6529,8 +8171,12 @@
"shop/clothes/second_hand": {
"name": "Botiga de roba de segona mà"
},
+ "shop/clothes/suits": {
+ "name": "Botiga de trages"
+ },
"shop/clothes/underwear": {
- "name": "Botiga de llenceria"
+ "name": "Botiga de llenceria",
+ "terms": "roba interior,sonstenidor,sujetado,calçoncillos,calçotets,brangues,tanga,braga,boxer,íntim,moda"
},
"shop/clothes/workwear": {
"name": "Botiga de roba de feina"
@@ -6573,6 +8219,9 @@
"shop/dairy": {
"name": "Botiga de productes làctics"
},
+ "shop/deli": {
+ "name": "Delicadeses"
+ },
"shop/department_store": {
"name": "Grans magatzems"
},
@@ -6613,7 +8262,6 @@
"terms": "botiga de robes,teles,robes"
},
"shop/farm": {
- "name": "Estand productiu",
"terms": "grades"
},
"shop/fashion": {
@@ -6668,7 +8316,7 @@
},
"shop/gift": {
"name": "Botiga de regals",
- "terms": "botiga de regals,botiga d'objectes de regal,tenda de regals,tenda d'objectes de regal"
+ "terms": "botiga d'objectes de regal,tenda de regals,tenda d'objectes de regal"
},
"shop/greengrocer": {
"name": "Fruiteria"
@@ -6679,6 +8327,9 @@
"shop/hardware": {
"name": "Ferreteria"
},
+ "shop/health_food": {
+ "name": "Botiga de menjar saludable"
+ },
"shop/hearing_aids": {
"name": "Centre d'audició"
},
@@ -6688,8 +8339,13 @@
"shop/hifi": {
"name": "Botiga d'alta fidelitat"
},
+ "shop/household_linen": {
+ "name": "Botiga de roba per a la llar",
+ "terms": "tenda de roba per a la llar,llar,casa,hogar,llençols,llançols,pijama,coixins,torcamans"
+ },
"shop/houseware": {
- "name": "Botiga de la llar"
+ "name": "Botiga d'articles per a la llar",
+ "terms": "tenda d'articles per a la llar,hogar,llar,casa,cuina"
},
"shop/hunting": {
"name": "Botiga de caça",
@@ -6716,7 +8372,8 @@
"name": "Bugaderia d'autoservei"
},
"shop/leather": {
- "name": "Botiga de cuirs"
+ "name": "Botiga de cuirs",
+ "terms": "tenda de cuirs,cuir,cuero,pell,pelleteria"
},
"shop/locksmith": {
"name": "Copisteria de claus"
@@ -6731,7 +8388,7 @@
"name": "Centre de massatges"
},
"shop/medical_supply": {
- "name": "Farmàcia"
+ "name": "Botiga d'equipament mèdic"
},
"shop/military_surplus": {
"name": "Botiga d'excedents militars"
@@ -6755,7 +8412,8 @@
"name": "Botiga d'instruments musicals"
},
"shop/newsagent": {
- "name": "Quiosc de premsa"
+ "name": "Quiosc de premsa",
+ "terms": "quiosc,diari,periòdic,premsa"
},
"shop/nutrition_supplements": {
"name": "Botiga de suplements nutricionals"
@@ -6770,7 +8428,8 @@
"name": "Botiga de pintura"
},
"shop/pastry": {
- "name": "Pastisseria"
+ "name": "Pastisseria",
+ "terms": "pastisseria,rebosteria,pasteleria,pastís,pastes,dolços,dolç,pastisset"
},
"shop/perfumery": {
"name": "Botiga de perfums",
@@ -6779,6 +8438,10 @@
"shop/pet": {
"name": "Botiga d'animals"
},
+ "shop/pet_grooming": {
+ "name": "Perruqueria d'animals",
+ "terms": "peluqueria d'animals,gos,gat,perruqueria de gats,perruqueria de gosssos,peluquria de gats,peluqueria de gossos"
+ },
"shop/photo": {
"name": "Botiga de fotografia"
},
@@ -6797,6 +8460,13 @@
"shop/religion": {
"name": "Botiga d'articles religiosos"
},
+ "shop/rental": {
+ "name": "Botiga de lloguers",
+ "terms": "tenda de lloguers,lloguer"
+ },
+ "shop/rice": {
+ "name": "Botiga d'arròs"
+ },
"shop/scuba_diving": {
"name": "Botiga de submarinisme",
"terms": "tenda de submarinisme,mar,aigua,snorkel,buceig,submarinisme"
@@ -6809,7 +8479,8 @@
"name": "Botiga de segona mà"
},
"shop/sewing": {
- "name": "Merceria"
+ "name": "Merceria",
+ "terms": "cinteria,llenceria,fils,cusir,cosir"
},
"shop/shoe_repair": {
"name": "Sabater",
@@ -6817,15 +8488,15 @@
},
"shop/shoes": {
"name": "Sabateria",
- "terms": "sabateria,botiga de sabates,sabater"
+ "terms": "sabateria,botiga de sabates,sabater,calçat,sabata,bamba,tacons,sandàlies,botes"
},
"shop/spices": {
"name": "Botiga d'espècies",
- "terms": "tenda d'especies,curry,xili,canella,herba,pebrera,pimienta,sal,especie,condiments,wasabi,condiment"
+ "terms": "tenda d'espècies,curry,xili,canella,herba,pebrera,pimienta,sal,especie,condiments,wasabi,condiment,pebre,safrà"
},
"shop/sports": {
"name": "Botiga d'esports",
- "terms": "esport,deport"
+ "terms": "esport,deport,esports,tenda d'esports"
},
"shop/stationery": {
"name": "Papereria"
@@ -6840,6 +8511,10 @@
"shop/supermarket/organic": {
"name": "Supermercat ecològic"
},
+ "shop/swimming_pool": {
+ "name": "Botiga d'equipament per a piscines",
+ "terms": "botiga de subministrament per a piscines,equipament de piscina,subministre de piscina,subministres de piscina,equips de piscina,accessoris de piscina,equip de piscina,productes de piscina,producte de piscines,productes per a piscines,piscines,piscina,clor,ph,abastament de piscina,provisió de piscina,forniment de piscina,serveis de piscina,productes químics per a piscines"
+ },
"shop/tailor": {
"name": "Sastreria"
},
@@ -6854,7 +8529,7 @@
},
"shop/tiles": {
"name": "Botiga de rajoles",
- "terms": "tenda de rajoles,manises,ceràmica,paret"
+ "terms": "tenda de rajoles,manises,ceràmica,paret,taulell"
},
"shop/tobacco": {
"name": "Estanc",
@@ -6896,7 +8571,7 @@
},
"shop/watches": {
"name": "Botiga de rellotges",
- "terms": "botiga d'ulleres,tenda d'ulleres,optometrista"
+ "terms": "tenda de rellotges,botiga de relonges,tenda de relonges"
},
"shop/water": {
"name": "Botiga d'aigua potable",
@@ -6910,6 +8585,14 @@
"name": "Armeria",
"terms": "botiga d'armes,tenda d'armes,gavinets,ganivets,pistola,munició,armes"
},
+ "shop/wholesale": {
+ "name": "Comerç majorista",
+ "terms": "botiga a l'engròs,comerç a l'engròs,venda a l'engròs,engròs,majorista,al major,en gros,comerç majorista,comerç al major,comerç en gros"
+ },
+ "shop/wigs": {
+ "name": "Botiga de perruqes",
+ "terms": "tenda de perruques,extensions de monyo,extensions de pèl,monyo,pèl,calb,calva"
+ },
"shop/window_blind": {
"name": "Botiga de persianes"
},
@@ -6920,24 +8603,31 @@
"shop/yes": {
"name": "Botiga / Tenda (Tipus sense especificar)"
},
+ "telecom": {
+ "name": "Element de telecomunicacions"
+ },
"telecom/data_center": {
- "name": "Centre de dades"
+ "name": "Centre de dades",
+ "terms": "data center,centre de dades,centres de dades,datacenter,centre de data,data centre,centre de dates,centres de dates"
},
"telecom/exchange": {
- "name": "Central telefònica"
+ "name": "Central telefònica",
+ "terms": "intercanvi de telecomunicacions,centre de telecomunicacions,punt d'intercanvi de telecomunicacions,node de telecomunicacions,estació de telecomunicacions,telecomunicacions,intercanvi telefònic,central telefònica,commutador telefònic"
},
"tourism": {
"name": "Element turístic"
},
"tourism/alpine_hut": {
- "name": "Refugi de muntanya"
+ "name": "Refugi de muntanya",
+ "terms": "refugi de muntanya,casa rural de muntanya,alberg de muntanya,hostal de muntanya,cabana de muntanya,cabana,refugi d'escalada,refugi,allotjament,allotjament per pernoctar,cabana de refugi"
},
"tourism/apartment": {
"name": "Apartaments vacacionals",
"terms": "habitatge de convidats"
},
"tourism/aquarium": {
- "name": "Aquari"
+ "name": "Aquari",
+ "terms": "aquari,cistella de peixos,peixera,cistella aquària,acuari,mar,aigua,riu"
},
"tourism/artwork": {
"name": "Obra d'art"
@@ -7014,7 +8704,8 @@
"name": "Mapa"
},
"tourism/information/office": {
- "name": "Centre de visitants"
+ "name": "Centre de visitants",
+ "terms": "oficina de turisme,turisme,tourist info"
},
"tourism/information/terminal": {
"name": "Terminal d'informació"
@@ -7046,6 +8737,9 @@
"name": "Zoo",
"terms": "zoo,zoològic"
},
+ "tourism/zoo/safari": {
+ "name": "Parc de safari"
+ },
"traffic_calming": {
"name": "Mesures de reducció de velocitat",
"terms": "reductor de velocitat,baden,bulto,baiben,pacificador del trànsit"
@@ -7070,8 +8764,8 @@
"name": "Esquena d'ase",
"terms": "esquena de ruc,esquena de burro,esquena de bou,esquena de toro,llom d'ase,llom de ruc,llom de burro,llom de bou,llom de toro,ressalt,cavalló,túmul"
},
- "traffic_calming/island": {
- "name": "Refugi viari"
+ "traffic_calming/mini_bumps": {
+ "name": "Xinxeta reductora de velocitat"
},
"traffic_calming/rumble_strip": {
"name": "Bandes rugoses",
@@ -7107,8 +8801,15 @@
"type/destination_sign": {
"name": "Senyal de destinació"
},
+ "type/enforcement": {
+ "name": "Control de compliment"
+ },
+ "type/enforcement/maxspeed": {
+ "name": "Control del límit de velocitat"
+ },
"type/multipolygon": {
- "name": "Multipolígon"
+ "name": "Multipolígon",
+ "terms": "multipolígon"
},
"type/restriction": {
"name": "Restricció",
@@ -7156,6 +8857,9 @@
"name": "Ruta d'autobús",
"terms": "ruta de bus,línia de bus"
},
+ "type/route/climbing": {
+ "name": "Ruta d'Escalada"
+ },
"type/route/detour": {
"name": "Desviació"
},
@@ -7225,6 +8929,9 @@
"name": "Lloc",
"terms": "pusto,lloc,zona,emplaçament,terreny,instal·lació,espai,àrea"
},
+ "type/site/climbing/area": {
+ "name": "Àrea d'Escalada"
+ },
"type/waterway": {
"name": "Curs d'aigua",
"terms": "via pluvial,pluvial,aquàtic,fluvial,aquàtica,via fluvial,cauce,marítim,marina,navegable"
@@ -7249,7 +8956,7 @@
"terms": "presa,pantà,embassament"
},
"waterway/ditch": {
- "name": "Séquia",
+ "name": "Cuneta",
"terms": "séquia,sèquia,rara,canal,aigua,via aqüífera,torrent,conducció d'aigua,aqüífer,rierol"
},
"waterway/dock": {
@@ -7257,11 +8964,11 @@
"terms": "bot,vaixell,veler,marina seca,marina"
},
"waterway/drain": {
- "name": "Torrent",
- "terms": "torrentera,rambla"
+ "name": "Canal de desguàs",
+ "terms": "canal,desguàs,pluja,aigua,desaigüe,drenatge,claveguera"
},
"waterway/fish_pass": {
- "name": "Pas per peixos",
+ "name": "Pas per a peixos",
"terms": "escala d'anguiles,pas d'anguiles,escala de peixos,migració de peixos,pas de peixos,sifó de peixos,escalons de peixos,camí de peixos"
},
"waterway/fuel": {
@@ -7286,11 +8993,12 @@
},
"waterway/stream": {
"name": "Rierol",
- "terms": "séquia,rierol,fil d'aigua,rajolí,riuet,ramal,reguer,segla,canal,rec,regueró,sequiola,sequió,cavim."
+ "terms": "séquia,rierol,fil d'aigua,rajolí,riuet,ramal,reguer,segla,canal,rec,regueró,sequiola,sequió,cavim"
},
"waterway/stream_intermittent": {
"name": "Rierol intermitent",
- "terms": "arroyo,branca,bifurcació,curs d'aigua,inundació"
+ "terms": "arroyo,branca,bifurcació,curs d'aigua,inundació",
+ "aliases": "Barranc intermitent"
},
"waterway/tidal_channel": {
"name": "Canal de Marea",
diff --git a/dist/translations/ca.min.json b/dist/translations/ca.min.json
index 115673ca..ee6b8ab6 100644
--- a/dist/translations/ca.min.json
+++ b/dist/translations/ca.min.json
@@ -1 +1 @@
-{"ca":{"presets":{"categories":{"category-barrier":{"name":"Tipus d'obstacle"},"category-building":{"name":"Tipus d'edificis"},"category-golf":{"name":"Elements de golf"},"category-landuse":{"name":"Ús del terreny"},"category-natural":{"name":"Elements naturals"},"category-path":{"name":"Camins"},"category-playground":{"name":"Equipament de parcs infantils"},"category-rail":{"name":"Raïls"},"category-restriction":{"name":"Tipus de restriccions"},"category-road_major":{"name":"Carreteres principals"},"category-road_minor":{"name":"Carreteres secundàries"},"category-road_service":{"name":"Vies de servei"},"category-route":{"name":"Tipus de ruta"},"category-utility":{"name":"Elements de serveis públics "},"category-water":{"name":"Masses d'aigua"},"category-waterway":{"name":"Cursos d'Aigua"}},"fields":{"access":{"label":"Accés permès","options":{"customers":{"description":"Restringits als clients a la destinació","title":"Clients"},"designated":{"description":"Accés garantit seguint les normes de les senyals o les normes locals específiques.","title":"Específic"},"destination":{"description":"Accés permès només per arribar a un destí","title":"Destinació"},"dismount":{"description":"Accés permès però el genet ha de desmuntar","title":"Baixar del mitjà de transport"},"no":{"description":"No es permet l'accés al públic general","title":"Prohibit"},"permissive":{"description":"Accés permès provisionalment fins que el propietari el prohibeixi.","title":"Permissiu"},"permit":{"description":"Accés permès exclusivament amb una autorització o llicència vàlides","title":"Autoritzat"},"private":{"description":"Accés permès només amb autorització individualitzada del propietari","title":"Privat"},"unknown":{"description":"Les condicions d'accés són desconegudes o poc clares","title":"Desconegut"},"yes":{"description":"Accés permès per llei: dret de pas","title":"Permès"}},"placeholder":"Sense especificar","terms":"permès,privat,públic,restringit","types":{"access":"Tots","bicycle":"Bicicletes","foot":"A peu","horse":"Cavalls","motor_vehicle":"Vehicles a motor"}},"access_aisle":{"label":"Tipus"},"access_simple":{"label":"Restricció d'accés","options":{"customers":"Només per a clients","no":"Cap","permissive":"Permissiu","permit":"Només amb permís","private":"Privat","unknown":"Desconegut","yes":"Públic"},"terms":"permès,privat,públic,restringit"},"activity":{"label":"Activitat","options":{"bicycle":"Ciclisme","hiking":"Senderisme","horse":"Equitació","mtb":"Bicicleta de muntanya","ski":"Esquí"}},"addr/interpolation":{"label":"Tipus","options":{"all":"Tot","alphabetic":"Alfabètic","even":"Parells","odd":"Senars"}},"address":{"label":"Adreça","placeholders":{"block_number":"Número de bloc","block_number!jp":"Nº de bloc","city":"Ciutat ","city!cn":"Ciutat/ Prefectura/ Lliga","city!jp":"Ciutat/Poble/Llogaret/Districte Especial de Tòquio","city!vn":"Ciutat/Poble","conscriptionnumber":"123","country":"País","county":"Comtat","county!jp":"Districte","district":"Districte","district!cn":"Districte/Comtat/Bandera","district!vn":"Arrondissement/Poble/Districte","floor":"Pis","hamlet":"Llogaret","housename":"Nom de la casa","housenumber":"123","housenumber!jp":"Nº Edifici / Nº Lot","neighbourhood":"Barri","neighbourhood!jp":"Chōme/Aza/Koaza","place":"Lloc","postcode":"Codi postal","province":"Província","province!cn":"Província / Municipi / AR / SAR","province!jp":"Prefectura","quarter":"Quarter","quarter!jp":"Ōaza/Machi","state":"Estat","street":"Carrer","subdistrict":"Subdistricte","subdistrict!vn":"Ward/Commune/Townlet","suburb":"Sector","suburb!jp":"Suburbi","unit":"Unitat"},"terms":"ubicació,localització,direcció"},"admin_level":{"label":"Nivell administratiu"},"aerialway":{"label":"Tipus"},"aerialway/access":{"label":"Accés","options":{"both":"Ambdues","entry":"Entrada","exit":"Sortida"}},"aerialway/bubble":{"label":"Bombolla"},"aerialway/capacity":{"label":"Capacitat (per hora)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Duració (minuts)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Climatitzat"},"aerialway/occupancy":{"label":"Ocupació","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Accés (estival)","options":{"both":"Ambdues","entry":"Entrada","exit":"Sortida"}},"aeroway":{"label":"Tipus"},"agrarian":{"label":"Productes"},"air_conditioning":{"label":"Aire condicionat","terms":"aire condicionat,climatització,condicionament de l'aire,sistema de refredament,refrigeració"},"amenity":{"label":"Tipus"},"animal_boarding":{"label":"Per a animals"},"animal_breeding":{"label":"Per a animals"},"animal_shelter":{"label":"Per a animals"},"archaeological_site":{"label":"Tipus"},"architect":{"label":"Arquitecte","terms":"dissenyador,arquitecte,arquitectessa"},"area/highway":{"label":"Tipus"},"artist":{"label":"Artista"},"artwork_type":{"label":"Tipus","options":{"bust":"Bust","graffiti":"Grafit","installation":"Instal·lació artística","mosaic":"Mosaic","mural":"Mural","painting":"Quadre","relief":"Relleu","sculpture":"Esculptura","statue":"Estatua"}},"ascent":{"label":"Desnivell total","terms":"desnivell,guany d'elevació acumulat"},"atm":{"label":"Caixer automàtic"},"attraction":{"label":"Tipus"},"automated":{"label":"Automàtic"},"baby_feeding":{"label":"Àrea de lactància","options":{"no":"Cap","room":"Habitació dedicada","yes":"Espai assenyalat"},"terms":"alimentació del bebè,lactància materna,lactància,mares,bebè"},"baby_seat":{"label":"Seient de bebè"},"backcountry":{"label":"Travessia","terms":"travessia,fora de pista"},"backrest":{"label":"Espatller"},"bar":{"label":"Bar","terms":"bar,barra"},"barrier":{"label":"Tipus"},"barrier_planter":{"label":"Barrera","options":{"planter":"Sí","undefined":"No"}},"basin":{"label":"Tipus","options":{"detention":"Detenció","evaporation":"Evaporació","infiltration":"Infiltració","retention":"Retenció"}},"bath/open_air":{"label":"Aire Lliure"},"bath/sand_bath":{"label":"Bany de sorra"},"bath/type":{"label":"Especialitat"},"beauty":{"label":"Serveis","options":{"cosmetics":"Cosmètica","hair_removal":"Eliminació del borrissol","nails":"Manicura / Pedicura","skin_care":"Cura de la pell","spa":"Balneari de dia","tanning":"Saló de bronzejat","waxing":"Depilació amb cera"}},"bench":{"label":"Banc per a asseure's","terms":"banc per a vianants,banc peatonal,banc per a asseure's,banc de carrer"},"bicycle_parking":{"label":"Tipus","options":{"building":"A un edifici","handlebar_holder":"Suport de manillar","lockers":"Casillers individuals","shed":"Cobert tancat","stands":"Estand (aguanta el quadre de la bici)","wall_loops":"Aparcabicis (aguanta només la roda)"}},"bike_ride":{"label":"Aparcament d'enllaç per a bicicletes","terms":"aparcament disuasori de bicicletes,aparca i monta,estaciona i monta"},"bin":{"label":"Paperera","terms":"paperera"},"blind":{"label":"Accés per a persones cegues","options":{"limited":"Limitat","no":"No","yes":"Sí"},"terms":"discapacitat visual,cec"},"blood_components":{"label":"Components de la sang","options":{"plasma":"plasma","platelets":"plaquetes","stemcells":"extrets de cèl·lules mare","whole":"sang total"}},"board_type":{"label":"Tipus","options":{"art":"Art","astronomy":"Astronomia","geology":"Geologia","history":"Història","nature":"Natura","notice":"Tauló d'Anuncis","plants":"Plantes","welcome_sign":"Cartell de Benvinguda","wildlife":"Vida Salvatge"}},"bollard":{"label":"Tipus","options":{"fixed":"Piló Fix","flexible":"Piló Flexible","foldable":"Piló Plegable","removable":"Piló Desmuntable","rising":"Piló Retràctil"}},"booth":{"label":"Cabina","terms":"dues,ambdues,les dos"},"bottle":{"label":"Emplenat de botelles"},"boules":{"label":"Tipus"},"boundary":{"label":"Tipus"},"branch_brand":{"label":"Branca","terms":"branca,rama,filial,subsidiari"},"brand":{"label":"Marca","terms":"marca"},"brewery":{"label":"Cervesa de barril / tirada","terms":"cervesa de barril,cervesa tirada"},"bridge":{"label":"Tipus","placeholder":"Predeterminat"},"bridge/support":{"label":"Tipus"},"bridge_combo":{"label":"Tipus"},"building":{"label":"Edifici","terms":"edifici,construcció,casa,estructura"},"building/flats":{"label":"Unitats","placeholder":"2, 4, 6, 8..."},"building/levels":{"label":"Nivells","placeholder":"2, 4, 6...","terms":"nivells,pisos"},"building/levels/underground":{"label":"Subterrani","placeholder":"2, 4, 6...","terms":"nivells,pisos,subterranis,soterrani,subsòl"},"building/material":{"label":"Material","terms":"material"},"building/part":{"label":"Part d'un edifici"},"building/prefabricated":{"label":"Prefabricat","terms":"prefabricat,modular,ja fet"},"bunker_type":{"label":"Tipus"},"button_operated":{"label":"Botó de trucada"},"cables":{"label":"Cables","placeholder":"1, 2, 3..."},"cai_scale-IT":{"label":"Dificultat de la ruta senderista (Club Alpí Italià)","options":{"E":"E: Per a Muntanyistes","EAI":"EAI: Muntanyisme en condiciones de neu","EE":"EE: Per a muntanyistes experimentats","EEA":"EEA: Per a muntanistes experimentats amb equipament","T":"T: Turístic"},"placeholder":"T, E, EE, …","terms":"senderisme,excursionisme,difícil,dificultat"},"camera/direction":{"label":"Direcció (graus en sentit horari)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"Muntatge de càmera"},"camera/type":{"label":"Tipus de càmera","options":{"dome":"Cúpula","fixed":"Fixa","panning":"Panoràmica"}},"capacity":{"label":"Capacitat","placeholder":"50, 100, 200...","terms":"capacitat"},"capacity/caravans":{"label":"Capacitat (Caravanes)","placeholder":"10, 20, 50..."},"capacity/disabled_parking":{"label":"Places accessibles","placeholder":"1, 2, 3..."},"capacity/persons":{"label":"Capacitat (Persones)","placeholder":"50, 100, 200..."},"capacity/tents":{"label":"Capacitat (Tendes de campanya)","placeholder":"10, 20, 50..."},"capacity_parking":{"label":"Places totals","placeholder":"10, 20, 30..."},"capacity_volume":{"label":"Capacitat (metres cúbics)","placeholder":"50, 100, 200..."},"cash_in":{"label":"Dipòsit"},"castle_type":{"label":"Tipus","options":{"castrum":"Fort Romà","defensive":"Castell defensiu","fortress":"Fortalessa","hillfort":"Castre","kremlin":"Kremlin","manor":"Casa Senyorial","palace":"Palau","shiro":"Castell japonés","stately":"Casa Senyorial (Gran Bretanya)"}},"changing_table":{"label":"Canviador de nadons"},"charge_fee":{"label":"Quantitat de la tarifa","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"cuota,entrada,pago,preu,honoraris,taxa"},"charge_toll":{"label":"Tarifa del peatge","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"peatge"},"check_date":{"label":"Data d'última revisió ","placeholder":"AAAA-MM-DD"},"circumference":{"label":"Diàmetre a l'alçada de l'home","placeholder":"1 m, 20 cm, 30 \"…","terms":"diamatre a l'altura de l'home,dah"},"clothes":{"label":"Roba","terms":"roba"},"club":{"label":"Tipus"},"collection_times":{"label":"Horari de recollida"},"collector":{"label":"Elements"},"colour":{"label":"Color","terms":"color"},"comment":{"label":"Comentari dels canvis","placeholder":"Breu descripció de les teves contribucions (necessari)"},"communication_multi":{"label":"Tipus de comunicació","terms":"mitjans,communicació,telèfon,correu,misstge,trucada,trucà,cridada,cridà,xat,chat,videotrucada,videotrucà,videocridada,videocridà,televisió,radio,fax,morse,telepatia,xifrat,reunions,braille,signes,sons,sorolls,carta,llenguatges,idiomes"},"connectivity":{"label":"Connectivitat"},"construction":{"label":"Tipus"},"consulate":{"label":"Tipus"},"consulting":{"label":"Expertesa"},"contact/webcam":{"label":"URL de la webcam","placeholder":"http://example.com/"},"content":{"label":"Contingut"},"conveying":{"label":"Direcció del moviment","options":{"backward":"Enrere","forward":"Endavant","reversible":"Reversible"}},"conveying_escalator":{"label":"Escala mecànica "},"country":{"label":"País"},"country_flag":{"label":"Bandera del país"},"couplings":{"label":"Acoblaments","placeholder":"1, 2, 3..."},"covered":{"label":"Cobert","terms":"cobert,sostre,resguardat"},"covered_no":{"options":{"no":"No","undefined":"Suposat que és No","yes":"Sí"}},"craft":{"label":"Tipus","options":{"agricultural_engines":"Mecànic de motors agrícoles","basket_maker":"Cisteller","beekeeper":"Apicultor","blacksmith":"Ferrer","boatbuilder":"Constructor d'embarcacions","bookbinder":"Enquadernador","brewery":"Cerveseria","builder":"Constructor","carpenter":"Fuster","carpet_layer":"Moquetista","caterer":"Servei de càtering","chimney_sweeper":"Escura-xemeneies","cleaning":"Servei de neteja","clockmaker":"Rellotger","confectionery":"Artesà de llaminadures","distillery":"Destil·leria","dressmaker":"Sastreria","electrician":"Electricista","electronics_repair":"Botiga de reparacions electròniques ","floorer":"Instal·lador de sòls","gardener":"Jardiner","glaziery":"Vidrieria","grinding_mill":"Molí","handicraft":"Botiga d'artesà","hvac":"Empresa d'instal·lacions climàtiques","insulation":"Aïllador","jeweller":"Joier","joiner":"Ebenista","key_cutter":"Fabricant de claus","locksmith":"Copisteria de claus","metal_construction":"Treballador del metall","oil_mill":"Pou petrolífer","painter":"Pintor","parquet_layer":"Instal·lador de parquet","photographer":"Fotògraf","photographic_laboratory":"Laboratori fotogràfic","plasterer":"Enguixador","plumber":"Lampista","pottery":"Terrissaire\nFabricant de ceràmica","rigger":"Armador d'embarcacions","roofer":"Constructor de teulades","saddler":"Cuirasser","sailmaker":"Fabricant de veles","sawmill":"Serradora","scaffolder":"Muntador de bastides","sculptor":"Escultor","shoemaker":"Sabater","signmaker":"Fabricant de senyals","stonemason":"Manobra","tailor":"Sastreria","tiler":"Enrajolador","tinsmith":"Llauner","upholsterer":"Creador de mobles","watchmaker":"Fabricant de rellotges","window_construction":"Fabricant de finestres","winery":"Celler"}},"crane/type":{"label":"Tipus de grua","options":{"floor-mounted_crane":"Grua muntada al pis","gantry_crane":"Grua pòrtic","portal_crane":"Pont Grua","tower_crane":"Grua torre","travel_lift":"Ascensor de viatge"}},"crop":{"label":"Cultius","options":{"asparagus":"Espàrrecs","barley":"Ordi","beet":"Remolatxa","cassava":"Moniato","coffee":"Cafè","cotton":"Cotó","cranberries":"Nabiu de grua","fast_growing_wood":"Bosc de rotació curta","flowers":"Flors","grape":"Raïm","grass":"Herba","hop":"Llúpol","lavender":"Espígol","maize":"Dacsa","potato":"Patates / Creïlles","rape":"Colza","rice":"Arròs","soy":"Soia","strawberry":"Freses","sugar_beet":"Remolatxa sucrera","sugarcane":"Canyamel","sunflower":"Gira-sol","tea":"Te","tobacco":"Tabac","vegetable":"Verdures","wheat":"Blat"}},"crossing":{"label":"Tipus","options":{"traffic_signals":"Creumaent controlat per semàfors","uncontrolled":"Només senyalització horitzontal","unmarked":"Sense senyalització horitzontal o semàfors"}},"crossing/barrier":{"label":"Barrera de braç","options":{"double_half":"Dobles Meitats","full":"Senser","half":"Mitja","no":"No","yes":"Sí"}},"crossing/bell":{"label":"Timbre"},"crossing/island":{"label":"Illa Refugi"},"crossing/light":{"label":"Llums"},"crossing/markings":{"label":"Senyalització del creuament","options":{"dashes":"Línies transversals discontínues","dots":"Línies transversals puntejades","ladder":"Escala amb barres logitudinals","ladder:paired":"Escala amb barres longitudinals emparellades","ladder:skewed":"Escala amb barres diagonals","lines":"Línies Transversals","lines:paired":"Dobles Linies Transversals","no":"Sense cap senyalització","pictograms":"Pictogrames pintats","surface":"Només tractament de superfície","yes":"Senyalitzat d'alguna manera","zebra":"Barres longitudinals (zebra)","zebra:bicolour":"Barres longitudinals alternant colors (zebra vari color)","zebra:double":"Barres longitudinals dobles","zebra:paired":"Barres longitudinals emparellades"},"terms":"pas de vianants,creuament,pas de peatons,pas de zebra"},"crossing_raised":{"label":"Elevat","options":{"table":"Sí","undefined":"No"}},"cuisine":{"label":"Cuines","options":{"american":"Americana","asian":"Asiàtica","bubble_tea":"Te de bombolles","burger":"Hamburgueseria","cake":"Pastís","chicken":"Pollastre","chinese":"Xinesa","chocolate":"Xocolata","coffee_shop":"Cafeteria","dessert":"Postres","donut":"Donut","fish":"Peix","french":"Francesa","german":"Alemanya","greek":"Grega","hot_dog":"frankfurt","ice_cream":"Gelats","indian":"India","indonesian":"Indonèsia","italian":"Italiana","japanese":"Japonesa","juice":"Suc","kebab":"Kebab","korean":"Coreana","lebanese":"Libanesa","malaysian":"Malàisia","mexican":"Mexicana","pankcake":"Crep americana","pasta":"Pasta","pizza":"Pizza","polish":"Polonesa","portuguese":"Portuguesa","regional":"Regional","russian":"Russa","salad":"Amanida","sandwich":"Entrepans","seafood":"Marisc","spanish":"Espanyola","steak_house":"rostidor / graella","sushi":"Sushi","taiwanese":"Taiwanés","thai":"Thai","turkish":"Turca","vietnamese":"Vietnamita"},"terms":"cuina,tipus de menjar,gastronomia"},"currency_multi":{"label":"Tipus de divisa","terms":"tipus de moneda,moneda,divisa,monedes,divises"},"cutting":{"label":"Tipus","placeholder":"Predeterminat"},"cycle_network":{"label":"Xarxa"},"cycleway":{"label":"Carrils bici","options":{"lane":{"description":"Un barril bici separat de la circulació per una línia pintada","title":"Carril Bicibici estàndard"},"no":{"description":"Sense carril per a bicis","title":"Cap"},"opposite":{"description":"Un carril bici que discorre en ambdós sentits en un carrer d'un sol sentit","title":"Carril bici en sentit contrari"},"opposite_lane":{"description":"Un carril bici que discorre contrari al sentit de circulació","title":"Carril bici contrari"},"separate":{"description":"Indica que una via per a bicicletes ha estat mepejada com una geometria separada","title":"Carrilbici mapejat separadament"},"share_busway":{"description":"Un carril bici compartit amb un carril bus","title":"Ciclovia compartida amb el carril bus"},"shared_lane":{"description":"Carril bici sense cap separació de la circulació","title":"Ciclovia compartida"},"track":{"description":"Un carril bici separat de la circulació per una barrera física","title":"Camí ciclable"}},"placeholder":"Carril, Pista, Contra direcció","terms":"carril bici,via ciclista","types":{"cycleway:left":"Costat esquerre","cycleway:right":"Costat dret"}},"dance/style":{"label":"Estils de ball"},"date":{"label":"Data"},"defibrillator/location":{"label":"Descripció de la ubicació"},"delivery":{"label":"Entrega","terms":"entrega,servei a domicili"},"denomination":{"label":"Denominació","terms":"denominació,religió"},"denotation":{"label":"Denotació","terms":"denotació"},"departures_board":{"label":"Tauló de Sortides/Arribades","options":{"no":"Cap","realtime":"Temps real","timetable":"Horari","yes":"Sí"}},"deposit/trolley":{"label":"Dipòsit"},"depth":{"label":"Profunditat (Metres)"},"descent":{"label":"Descens total","terms":"descens,elevació acumalativa"},"description":{"label":"Descripció","terms":"descripció,resumen"},"design":{"label":"Disseny","terms":"disseny,diseny"},"destination":{"label":"Destinacions"},"destination/ref":{"label":"Números de carretera de destinació"},"destination/symbol":{"label":"Símbols de destinació"},"destination_waterway":{"label":"Destinació"},"devices":{"label":"Dispositius","placeholder":"1, 2, 3..."},"diameter":{"label":"Diàmetre","placeholder":"5 mm, 10 cm, 15 in…","terms":"diàmetre,circumferència"},"diameter_crown":{"label":"Diametre de la corona","placeholder":"4 m, 9', …","terms":"corona,tronc,diametre del tronc"},"diet_multi":{"label":"Tipus de dieta","options":{"gluten_free":"Sense gluten","halal":"Halal","kosher":"Kosher","lactose_free":"Sense lactosa","pescetarian":"Peixetarià","vegan":"Vegà","vegetarian":"Vegetarià"},"terms":"sense gluten,halal,kosher,koser,sense lactosa,pescetarià,cru,vegà,vegetariana,vegetarià"},"diplomatic":{"label":"Tipus"},"diplomatic/services":{"label":"Serveis"},"direction":{"label":"Direcció (graus en sentit horari)","placeholder":"45, 90, 180, 270","terms":"direcció,sentit,marxa,graus,horari,radia,nord,sud,est,oest"},"direction_cardinal-US-CA-NZ":{"label":"Direcció","options":{"east":"Cap a l'est","north":"En direcció nord ","south":"En direcció sud","west":"Cap a l'oest"},"terms":"direcció,rumb,marxa.nord,cardinal,punt cardinal,sud,est,oest"},"direction_clock":{"label":"Direcció","options":{"anticlockwise":"en sentit contrari al de les agulles del rellotge","clockwise":"en sentit de les agulles del rellotge"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"label":"Direcció afectada","options":{"backward":"Enrere","both":"Ambdós / Tots","forward":"Endavant"},"terms":"direcció,rumb"},"dispensing":{"label":"Dispensació de fàrmacs"},"display":{"label":"Pantalla","options":{"analog":"Analògica","digital":"Digital","sundial":"Rellotge de sol","unorthodox":"No ortodox"}},"distance":{"label":"Distància","terms":"longitud,kilometratge"},"disused/amenity":{"label":"Tipus"},"disused/railway":{"label":"Tipus"},"disused/shop":{"label":"Tipus"},"dock":{"label":"Tipus"},"dog":{"label":"Gossos","options":{"leashed":"Només lligats","no":"No permès","yes":"Permès"},"terms":"gossos,gos,ca,cans"},"door":{"label":"Porta"},"door_type":{"label":"Tipus"},"drink_multi":{"label":"Begudes"},"drinking_water":{"label":"Potable","terms":"potable,apte per al consum"},"drinking_water_available":{"label":"Aigua Potable Disponible","terms":"aigua potable,apta per al consum,aigua bebible"},"drive_through":{"label":"Autoservei.","terms":"ventanilla,finestreta,ventanilla d'autoservei,ventanilla d'autoservici,finestreta d'autoservei,finestreta d'autoservici,finestra d'autoservei,finesta d'autoservici,autorestaurant"},"duration":{"label":"Durada","placeholder":"00:00","terms":"durada,duració"},"ele":{"label":"Elevació (Metres)","terms":"elevació,altitud,metres,ascens"},"electrified":{"label":"Electrificació","options":{"contact_line":"Catenària","no":"No","rail":"3r rail","yes":"Sí (no especificat)"},"placeholder":"Catenària, 3r rail...","terms":"línea de contacte,electrificat,electrificada,tercer rail"},"email":{"label":"Adreça elctrònica","placeholder":"exemple@exemple.com","terms":"adreça electrònica,correu electrònic,mail,correu"},"embankment":{"label":"Tipus","placeholder":"Predeterminat"},"embassy":{"label":"Tipus","options":{"branch_embassy":"Branca d'una embaixada","delegation":"Delegació","high_commission":"Alta Comissió","interests_section":"Oficina d'interessos","mission":"Missió diplomàtica","nunciature":"Missió diplomàtica de la Santa Seu","residence":"Residència oficial d'un ambaixador","yes":"Ambaixada"}},"emergency":{"label":"Material per a emergències"},"emergency_combo":{"label":"Tipus"},"emergency_ward_entrance":{"label":"Tipus"},"enforcement":{"label":"Tipus"},"entrance":{"label":"Tipus","options":{"emergency":"Eixida d'Emergència","entrance":"Només Entrada","exit":"Només Eixida","garage":"Porta de Garatge","home":"Residència Privada","main":"Principal","secondary":"Secundària","service":"Servei","staircase":"Escala","yes":"Inespecificat"},"terms":"tipo,tipus"},"except":{"label":"Excepcions"},"expected_rcn_route_relations":{"label":"Nodes adjacents de ciclisme"},"expected_rwn_route_relations":{"label":"Nodes adjacents de senderisme"},"expressway-US":{"label":"Autovia","terms":"autovia,via ràpida,semiautopista"},"faces":{"label":"Cares"},"fax":{"label":"Fax","placeholder":"+34 93 123 4567","terms":"fax"},"fee":{"label":"De pagament","terms":"quota,fiança,pagament"},"fence_type":{"label":"Tipus"},"fire_hydrant/diameter":{"label":"Diàmetre (mm, polzades o lletres)","terms":"diametre,circumferència"},"fire_hydrant/position":{"label":"Posició","options":{"green":"Herba","lane":"A la calçada","parking_lot":"Lloc d'aparcament","sidewalk":"Vorera"},"terms":"posició,ubicació,localització"},"fire_hydrant/pressure":{"label":"Pressió (bar)","terms":"pressió,presió,força,bars,pascals,atmósfera,psi,mmhg,mercuri,mil·limetre de mercuri"},"fire_hydrant/type":{"label":"Forma","options":{"pillar":"Pilona/visible","pipe":"Tub Tapat","underground":"Subterrani","wall":"Mur"}},"fireplace":{"label":"Llar de foc"},"fishing":{"label":"Pesca","terms":"pesca,pescar"},"fitness_station":{"label":"Tipus d'equipament"},"fixme":{"label":"Arregla'm","terms":"sol·licitud d'ajuda,petició d'ajuda,arregla'm"},"flag/name":{"label":"Nom de la Bandera"},"flag/type":{"label":"Tipus de bandera"},"flag/wikidata":{"label":"Wikidata de la Bandera"},"flashing_lights":{"label":"Llums intermitents","options":{"always":{"description":"Les llums estan sempre parpellejant","title":"Sempre parpellejant"},"button":{"description":"Les llums s'activen polsant un botó","title":"Activat per un botó"},"button;sensor":{"description":"Llums activades per un sensor o prement un botó","title":"Activat per un botó o sensor"},"no":"No","sensor":{"description":"Les llums s'activen per un sensor","title":"Activat per un sensor"},"yes":"Sí"},"terms":"llums intermitents,llums parpallants,llums flaixos,llums flaixants"},"floating":{"label":"Flotant"},"flood_prone":{"label":"Zona inundable","terms":"propens a inundacions,aigua"},"ford":{"label":"Tipus","placeholder":"Predeterminat"},"fountain":{"label":"Tipus"},"frequency":{"label":"Freqüència de funcionament","terms":"freqüència d'operació,alta freqüència,baixa freqüència,mitja freqüència,hertzs,periode,infrarroig,radi,microones,llum visible,ones,ultravioleta,rajos x,audible,subsònic,sonar,radar,gamma,raig x"},"from":{"label":"Des de"},"fuel":{"label":"Carburant"},"fuel/fuel_multi":{"label":"Tipus de combustible","options":{"GTL_diesel":"Gasoil GTL (Gas a Líquid)","HGV_diesel":"Gasoil per a camions","LH2":"Hidrogen Líquid","adblue":"AdBlue / AUS 32","adblue:canister":"AdBlue / AUS 32 (venut en pots)","biodiesel":"Biodièsel","cng":"Gas Natural Comprimit (GNC)","diesel":"Gasoil","e10":"Gasolina E10","e85":"Gasolina E85","h70":"Hidrogen Gaseos (700 bar)","lpg":"Gas Liquat del Petroli (GLP)","octane_100":"Gasolina 100 Octans","octane_80":"Gasolina 80 Octans","octane_85":"Gasolina 85 Octans","octane_87":"Gasolina 87 Octans","octane_88":"Gasolina 88 Octans","octane_89":"Gasolina 89 Octans","octane_90":"Gasolina 90 Octans","octane_91":"Gasolina 91 Octans","octane_92":"Gasolina 92 Octans","octane_93":"Gasolina 93 Octans","octane_95":"Gasolina 95 Octans","octane_97":"Gasolina 97 Octans","octane_98":"Gasolina 98 Octans","propane":"Propà"}},"gambling":{"label":"Jocs"},"garden/type":{"label":"Tipus de jardí"},"gauge":{"label":"Ample"},"gender":{"label":"Gènere","options":{"female":"Femení","male":"Masculí","unisex":"Unisex"},"placeholder":"Desconegut","terms":"gènere,sexe,sexes,gèneres"},"generator/method":{"label":"Mètode","options":{"anaerobic_digestion":"Digestió Anaeròbica","barrage":"Barrera de marees","combustion":"Combustió","fission":"Fissió","fusion":"Fusió","gasification":"Gasificació","photovoltaic":"Fotovoltaica","run-of-the-river":"Central hidroelèctrica de passada","stream":"Corrent de la marea","thermal":"Termosolar","water-pumped-storage":"Acumulació per bombeig","water-storage":"Embassament","wind_turbine":"Aerogenerador"}},"generator/output/electricity":{"label":"Sortida de potència","placeholder":"50 MW, 100 MW, 200 MW..."},"generator/source":{"label":"Font","options":{"battery":"Bateria","biofuel":"Biocomubistible","biogas":"Biogas","biomass":"Biomassa","coal":"Carbó","diesel":"Gasoil","gas":"Gas Natural","gasoline":"Gasolina","geothermal":"Energia Geotèrmica","hydro":"Energia hídrica","nuclear":"Energia Nuclear","oil":"Oli","solar":"Radiació Solar","tidal":"Energia mareomotriu","waste":"Rebuig / Basura","wave":"Energia de les onades","wind":"Vent"}},"generator/type":{"label":"Tipus"},"genus":{"label":"Gènere","placeholder":"Acer, Platanus, Quercus …","terms":"gènere,génere"},"geyser/height":{"label":"Alçada de l'erupció"},"gnis/feature_id-US":{"label":"ID de l'element GNIS","terms":"base de dades oficial de toponímia dels estats units,toponímia dels estats units"},"government":{"label":"Tipus"},"grades":{"label":"Nivells de cursos"},"grape_variety":{"label":"Varietats de raïm"},"group_only":{"label":"Només grups","terms":"només grups"},"guest_house":{"label":"Tipus"},"handicap":{"label":"Handicap","placeholder":"1-18"},"handrail":{"label":"Barana","terms":"barana,barandilla,passa mans"},"hashtags":{"label":"Etiquetes","placeholder":"#exemple"},"healthcare":{"label":"Tipus"},"healthcare/speciality":{"label":"Especialitats","options":{"abortion":"Avortament","acupuncture":"Acupuntura","allergology":"Al·lergologia","anaesthetics":"Anestesiologia","angiology":"Angiologia","anthroposophical":"Medicina Antroposòfica","applied_kinesiology":"Cinesiologia aplicada","aromatherapy":"Aromateràpia","ayurveda":"Aiurveda","behavior":"Teràpia de la conducta","biochemistry":"Bioquímica","biology":"Biologia","blood_check":"Anàlisi de sang","body":"Psicoteràpia Corporal","cardiology":"Cardiologia","cardiothoracic_surgery":"Cirurgia Toràcica ","child_psychiatry":"Psiquiatria Infantil i Juvenil","chiropractic":"Quiropràctic","clinical_pathology":"Patologia clínica","community":"Salut Pública i Comunitària","dental_oral_maxillo_facial_surgery":"Cirugia Dental, Oral i Maxilofacial","depth":"Psicologia Profunda","dermatology":"Dermatologia","dermatovenereology":"Dermatovenereologia","diabetology":"Diabetologia","diagnostic_radiology":"Diagnòstic Radiològic","emergency":"Emergències","endocrinology":"Endocrinologia","fertility":"Fertilitat","gastroenterology":"Gastroenterologia","general":"Medicina Familiar i Comunitaria","geriatrics":"Medicina Geriàtrica","gynaecology":"Obestricia i Ginecologia","haematology":"Hematologia","hepatology":"Hepatologia","herbalism":"Herbologia","homeopathy":"Homeopatia","humanistic":"Psicologia Humanística","hydrotherapy":"Hidroteràpia","hypnosis":"Hipnosis","infectious_diseases":"Malalties Infecioces","intensive":"Medicina Intensiva","internal":"Medicina Interna","naturopathy":"Naturopatia","neonatology":"Neonatologia","nephrology":"Nefrologia","neurology":"Neurologia","neuropsychiatry":"Neuropsiquiatria","neurosurgery":"Neurocirugia","nuclear":"Medicina Nuclear","occupational":"Medicina Ocupacional","oncology":"Oncologia","ophthalmology":"Oftalmologia","orthodontics":"Ortodòncia","orthopaedics":"Cirugia Ortopèdica","osteopathy":"Osteopatia","otolaryngology":"Otorrinologia","paediatric_surgery":"Cirugia Pediàtrica","paediatrics":"Pediatria","palliative":"Cures Paliatives","pathology":"Anatomia Patològica","physiatry":"Medicinia Física i Rehabilitació","plastic_surgery":"Cirurgia Plàstica","podiatry":"Podologia","proctology":"Cirugia Colorectal","psychiatry":"Psiquiatria","pulmonology":"Pneumologia","radiology":"Radiologia","radiotherapy":"Radioterapia","reflexology":"Reflexologia","reiki":"Reiki","rheumatology":"Reumatologia","shiatsu":"Xiatsu","stomatology":"Estomatologia","surgery":"Cirugia General","systemic":"Terapia sistèmica","traditional_chinese_medicine":"Medicina Tradicional Xinesa","transplant":"Trasplantament","trauma":"Ortopèdia","tropical":"Medicina Tropical","tuina":"Tui Na","unani":"Medicina Unani","urology":"Urologia","vaccination":"Vacunació","vascular_surgery":"Cirugia Vascular"}},"heating":{"label":"Calefacció"},"height":{"label":"Altura (metres)","terms":"altura,altitut,metres"},"height/hub":{"label":"Altura de la boixa (Metres)","terms":"altura del buje,metres,altitud"},"height_building":{"label":"Altura de l'edifici (metres)","terms":"altura,peus"},"highchair":{"label":"Trona","terms":"trona,cadira alta"},"highspeed":{"label":"Alta velocitat","terms":"alta veloctitat,ràpid"},"highway":{"label":"Tipus"},"highway_cartpath":{"label":"Tipus de camí","options":{"path":"Caminal","service":"Via de servei"}},"historic":{"label":"Tipus"},"historic/civilization":{"label":"Civilització històrica"},"historic/wreck/date_sunk":{"label":"Data de l'enfonsament"},"historic/wreck/visible_at_high_tide":{"label":"Visible amb marea alta"},"historic/wreck/visible_at_low_tide":{"label":"Visible amb marea baixa"},"holding_position/type":{"label":"Tipus","options":{"ILS":"Sistema d'aterratje Instrumental (ILS)","intermediate":"Intersecció entre els carrers de rodada","runway":"Pista d'enlairament"}},"hoops":{"label":"Cistella de basquetbol","placeholder":"1, 2, 4..."},"horse_dressage":{"label":"Doma clàssica","options":{"equestrian":"Sí","undefined":"No"}},"horse_riding":{"label":"Equitació","options":{"horse_riding":"Sí","undefined":"No"}},"horse_scale":{"label":"Dificultat de la marxa a cavall","options":{"common":"Fàcil: Sense problemes o dificultats. (Predeterminat)","critical":"Límit: Sols transitable per a genets i cavalls experimentats. Obstàcles importants. Els ponts s'ha d'examinar amb molta cura.","dangerous":"Perillos: Sols transitable per a genets i cavalls molt experimetats i amb bon oratge. Desmontat.","demanding":"Utilitzar amb precaució: Via irregular, ocasionalment passatges complicats","difficult":"Difícil: Via estreta i exposat. Pot tenir obstacles que passar-hi i passatges estrets.","impossible":"Impossible: Camí o pont no transitable par a caballs. Massa estret, soport insuficient, obstables com escales. Perill de mort"},"placeholder":"Difícil, perillós...","terms":"dificultat per a muntar a cavall,difucultat de l'equitació"},"horse_stables":{"label":"Hípica","options":{"stables":"Sí","undefined":"No"}},"hot_water":{"label":"Aigua calenta"},"iata":{"label":"Codi d'aeroport IATA"},"icao":{"label":"Codi d'aeroport ICAO"},"image":{"label":"Imatge","placeholder":"https://exemple.cat/foto.jpg","terms":"imatge,fotografia,icona,icono"},"incline":{"label":"Pendent","terms":"inclinació,inclinat,pendent,costera"},"incline_steps":{"options":{"down":"Avall","up":"Amunt"}},"indoor":{"label":"Interior","terms":"interior,a dins,dins,cobert"},"indoor_type":{"label":"Tipus"},"industrial":{"label":"Tipus"},"informal":{"label":"Informal","terms":"improvisat,informal,no oficial"},"information":{"label":"Tipus"},"inscription":{"label":"Inscripció","terms":"inscripció,epígraf"},"intermittent":{"label":"Intermitent","terms":"intermitent,ocasional"},"internet_access":{"label":"Connexió a internet","options":{"no":"No","terminal":"Mitjançant un terminal","wired":"Per cable","wlan":"WiFi","yes":"Sí"},"terms":"wifi,wlan,connexió a internet,router,internet,xarxa"},"internet_access/fee":{"label":"Accés a internet","options":{"customers":"Només per a clients","no":"Gratuït","yes":"De pagament"},"terms":"wifi,wlan,connexió a internet,router,internet,xarxa,taxa"},"internet_access/ssid":{"label":"Nom de la xarxa Wifi","terms":"ssid,nom de la xarxa"},"interval":{"label":"Interval","terms":"intermedi,entremig,lapse,periode"},"junction/ref_oneway":{"label":"Número de cruïlla","terms":"número de sortida,número d’ixida,nombre de sortida,nombre d’ixida,número d’eixida,nombre d’eixida"},"junction_line":{"label":"Cruïlla","options":{"circular":"Rotonda","jughandle":"Canvi de sentit a diferent nivell","roundabout":"Rotonda"},"terms":"intersecció,ixida,eixida,sortida"},"kerb":{"label":"Gual"},"kerb/height":{"label":"Alçada"},"kitchen":{"label":"Cuina","terms":"cuina,especialitat"},"kneipp_water_cure_multi":{"label":"Tipus de conca"},"label":{"label":"Etiqueta"},"lamp_mount":{"label":"Suport"},"lamp_type":{"label":"Tipus"},"landuse":{"label":"Tipus"},"lane_markings":{"label":"Marca vial","terms":"línia central,línies divisories,continua,discontinua"},"lanes":{"label":"Carrils","placeholder":"1, 2, 3...","terms":"línia,linea,marca,carril"},"language_multi":{"label":"Llengües"},"layer":{"label":"Capa","placeholder":"0","terms":"capa"},"leaf_cycle":{"label":"Cicle del fullatge","options":{"deciduous":"Caducifoli","evergreen":"Perenne","mixed":"Mixt","semi_deciduous":"Semicaducifoli","semi_evergreen":"Semiperenne"},"terms":"cicle,fulla,cicle de la fulla"},"leaf_type":{"label":"Tipus de fulles","options":{"broadleaved":"Fulles amples","leafless":"Sense fullatge","mixed":"Barrejat","needleleaved":"Fulles primes"},"terms":"tipus,fulla,tipus de fulla"},"leaf_type_singular":{"label":"Tipus de fulla","terms":"tipus,fulla,tipus de fulla"},"leisure":{"label":"Tipus"},"length":{"label":"Llargada (metres)","terms":"longitud,metres,distància,dimensió,grandària,llarg"},"level":{"label":"Nivell","terms":"planta,planta d'edifici"},"level_semi":{"label":"Nivells","terms":"plantes,plantes d'edifici"},"liaison":{"label":"Tipus"},"license_classes":{"label":"Tipus de llicències de conduir","terms":"autoescola,clases de conduir,carnet de conduir,auto"},"lifeguard":{"label":"Socorrista"},"line_attachment":{"label":"Fixació de la línia","terms":"soport de la línia,enganx de la línia"},"line_management":{"label":"Gestió de línia","terms":"ramificació,tipologia de línia,terminació"},"lit":{"label":"Il·luminat","terms":"llum,fanal,farola,il·luminació"},"location":{"label":"Ubicació","terms":"ubicació,localització"},"location_pool":{"options":{"indoor":"Interior","outdoor":"Exterior","roof":"Terrat"}},"lock":{"label":"Resclosa"},"lockable":{"label":"Bloquejable"},"locked":{"label":"Bloquejat"},"man_made":{"label":"Tipus"},"manhole":{"label":"Tipus"},"manufacturer":{"label":"Fabricant"},"map_size":{"label":"Cobertura"},"map_type":{"label":"Tipus"},"mapillary":{"label":"ID de la imatge de Mapillary"},"marker":{"label":"Tipus"},"material":{"label":"Material"},"mattress":{"label":"Matalassos disponibles"},"max_age":{"label":"Edat màxima","terms":"majoria d'edat,edat màxima"},"maxheight":{"label":"Altura màxima"},"maxspeed":{"label":"Límit de velocitat","placeholder":"40, 50, 60..."},"maxspeed/advisory":{"label":"Límit de velocitat recomanat","placeholder":"40, 50, 60...","terms":"recomanació de velocitat"},"maxspeed/hgv":{"label":"Límit de velocitat per a Camions","placeholder":"40, 50, 60...","terms":"recomanació de velocitat per a camions"},"maxstay":{"label":"Estada màxima","terms":"durada màxima,estacionament màxim,temps màxim"},"maxweight":{"label":"Pes màxim"},"maxwidth":{"label":"Amplada màxima"},"memorial":{"label":"Tipus"},"microbrewery":{"label":"Microcerveseria"},"military_service":{"label":"Sevei Militar"},"mimics":{"label":"Imitació"},"min_age":{"label":"Edat mínima"},"min_height":{"label":"Alçada des de baix (Metres)"},"minspeed":{"label":"Límit de velocitat mínima","placeholder":"20, 30, 40..."},"model":{"label":"Model"},"monitoring_multi":{"label":"Seguiment"},"mtb/scale":{"label":"Dificultat per a bicicletes de muntanya","options":{"0":"0: Grava sòlida/terra compactada, sense obstacles, corbes de radi ample","1":"1: Algunes zones amb superfície inestable, petits obstacles, corbes de radi ample","2":"2: Bastantes zones amb superfície inestable, grans obstacles, corbes en paella fàcils","3":"3: Superfície lliscant, grans obstacles, corbes en paella estretes","4":"4: Superfície inestable o còdols, corbes en paella perilloses","5":"5: Dificultat màxima, camps de còdols, esllavissades","6":"6: No ciclable excepte per als millors ciclistes de muntanya"},"placeholder":"0, 1, 2, 3..."},"mtb/scale/imba":{"label":"Dificultat del camí segons IMBA","options":{"0":"Més fàcil (cercle blanc)","1":"Fàcil (cercle verd)","2":"Mitjana (quadrat blau)","3":"Difícil (diamant negre)","4":"Extremadament difícil (doble diamant negre)"},"placeholder":"Fàcil, Mitjana, Difícil...","terms":"dificultat del sender imba,sender,imba"},"mtb/scale/uphill":{"label":"Dificultat d'ascens per a ciclistes de muntanya","options":{"0":"0: Incl. mitjana <10%, grava/terra compactada, sense obstacles","1":"1: Incl. mitjana <15%. grava/terra compactada, pocs i petits obstacles","2":"2: Incl. mitjana <20%, superfície estable, roques i arrels de la mida d'un puny","3":"3: Incl. mitjana <25%, superfície variable, roques i banques de la mida d'un puny","4":"4: Incl. mitjana <30%, condicions pobres, grans roques/branques","5":"5: Molt empinat, generalment la bicicleta ha de ser empesa."},"placeholder":"0, 1, 2, 3..."},"museum":{"label":"Tipus"},"name":{"label":"Nom","placeholder":"Nom comú (si n'hi ha)"},"natural":{"label":"Natural"},"network":{"label":"Xarxa"},"network/type":{"label":"Tipus de xarxa"},"network_bicycle":{"label":"Classe de xarxa","options":{"icn":"Internacional","lcn":"Local","ncn":"Nacional","rcn":"Regional"},"placeholder":"Local, Regional, Nacional, Internacional"},"network_foot":{"label":"Classe de xarxa","options":{"iwn":"Internacional","lwn":"Local","nwn":"Nacional","rwn":"Regional"},"placeholder":"Local, Regional, Nacional, Internacional"},"network_horse":{"label":"Classe de xarxa","options":{"ihn":"Internacional","lhn":"Local","nhn":"Nacional","rhn":"Regional"},"placeholder":"Local, Regional, Nacional, Internacional"},"network_road":{"label":"Xarxa"},"not/name":{"label":"Noms incorrectes"},"note":{"label":"Nota"},"office":{"label":"Tipus"},"oneway":{"label":"Sentit únic","options":{"alternating":"Alternat","no":"No","reversible":"Reversible","undefined":"Sobreentès que no","yes":"Sí"}},"oneway/bicycle":{"label":"Sentit únic (bicicletes)"},"oneway_yes":{"options":{"alternating":"Alternat","no":"No","reversible":"Reversible","undefined":"Sobreentès que sí","yes":"Sí"}},"openfire":{"label":"Focs de camp permesos"},"opening_date":{"label":"Data d'obertura esperada","placeholder":"AAAA-MM-DD"},"opening_hours":{"label":"Horari","placeholder":"Desconegut"},"opening_hours/covid19":{"label":"Horari durant la pandèmia de la COVID-19"},"operator":{"label":"Operador"},"operator/type":{"label":"Tipus d'operador"},"organic":{"label":"Productes ecològics","options":{"no":"Cap","only":"Únicament","yes":"Alguns"},"terms":"natural,orgànic,sense transgènics"},"outdoor_seating":{"label":"Seient a l'aire lliure"},"par":{"label":"Par","placeholder":"3, 4, 5..."},"parcel_dropoff":{"label":"Enviament de paquets"},"parcel_pickup":{"label":"Arreplegada de paquets","options":{"no":"No","undefined":"Es pressuposa que Sí","yes":"Sí"}},"park_ride":{"label":"Aparcament d'enllaç","terms":"aparca i monta,estaciona i monta,aparca i viatja,estacionament dissuasori,aparcament dissuasori,estacionament d'enllaç,aparcament dissuasiu,estacionament dissuasiu"},"parking":{"label":"Tipus","options":{"carports":"Aixoplucs","garage_boxes":"Boxs","lane":"Adossat a la carretera","layby":"Apartadero de descans","multi-storey":"Diversos nivells","rooftop":"Terrat","sheds":"Garatges","street_side":"Adjacent a la carretera","surface":"Superfície","underground":"Subterrani"}},"parking/orientation":{"label":"Orientació","options":{"diagonal":"Diagonal respecte la carretera","parallel":"Paral·lel a la carreterera","perpendicular":"Perpendicular a la carretera"}},"parking_entrance":{"label":"Tipus"},"parking_space":{"label":"Tipus"},"payment_multi":{"label":"Tipus de pagament","options":{"alipay":"Alipay","american_express":"American Express","app":"Aplicació Mòbil","apple_pay":"Apple Pay","bancomat":"Bancomat","blik":"Blik","cards":"Targeta de pagament","cash":"Diners en metàl·lic","cheque":"Xec","clipper":"Clipper","coins":"Monedes","contactless":"Pagament sense contacte","credit_cards":"Targeta de crèdit","cryptocurrencies":"Criptomoneda","debit_cards":"Targeta de dèbit","diners_club":"Diners Club","discover_card":"Discover","dkv":"DKV","electronic_purses":"Moneder Electrònic","ep_easycard":"悠遊卡EasyCard","ep_geldkarte":"GeldKarte","ep_ipass":"iPASS一卡通","girocard":"Girocard","google_pay":"Google Pay","jcb":"JCB","maestro":"Maestro (Mastercard)","mastercard":"Mastercard","mastercard_contactless":"Mastercard sense contacte","notes":"Bitllets","paypal":"PayPal","prepaid_ticket":"Tiquet Prepagat","telephone_cards":"Targeta Telefònica","unionpay":"UnionPay","uta":"UTA","v_pay":"V Pay","visa":"Visa","visa_debit":"Visa Dèbit","visa_electron":"Visa Electron","wechat":"WeChat Pay"},"terms":"tipus de pagments,formes de pagament"},"phases":{"label":"Fases","placeholder":"1, 2, 3..."},"phone":{"label":"Telèfon","placeholder":"+31 42 123 4567"},"pipeline":{"label":"Tipus"},"piste/difficulty":{"label":"Dificultat","options":{"advanced":"Avançat","easy":"Fàcil","expert":"Expert","extreme":"Extrem","freeride":"Fora pistes","intermediate":"Intermig","novice":"Novell"},"placeholder":"Fàcil, Intermedi, avançat..."},"piste/difficulty_downhill":{"options":{"advanced":"Avançat (diamant negre)","easy":"Fàcil (cercle verd)","expert":"Expert (diamant negre doble)","extreme":"Extrem (requereix equipament d'escalada)","freeride":"Fora pista (freeride)","intermediate":"Intermedi (quadrat blau)","novice":"Novell (instructiu)"},"placeholder":"Fàcil, Intermedi, avançat..."},"piste/difficulty_nordic":{"options":{"advanced":"Avançada - Secció estreta, escarpada o gelada, gir tancat","easy":"Fàcil - Turons suaus, secció poc escarpada","expert":"Experta - Terreny perillós arreu","intermediate":"Intermèdia - Secció escarpada","novice":"Novella - Pla, sense esforç"},"placeholder":"Fàcil, intermèdia, avançada..."},"piste/difficulty_skitour":{"placeholder":"Fàcil, Intermedi, Avançat..."},"piste/grooming":{"label":"Adequació","options":{"backcountry":"Backcountry","classic":"Classic","classic+skating":"Classic i Skating","mogul":"Mogul","scooter":"Retrack petita/moto de neu","skating":"Skating"}},"piste/grooming_downhill":{"options":{"backcountry":"Fora pista - sense adequació","classic":"Clàssic","mogul":"Bonys"}},"piste/grooming_hike":{"options":{"backcountry":"Fora pista - Raquetes de neu","classic":"Clàssic - excursionisme hivernal"}},"piste/grooming_nordic":{"options":{"backcountry":"Fora pista, sense adequació","classic":"Clàssic","classic+skating":"Clàssic i patinador","scooter":"Moto de neu","skating":"Patinador"}},"piste/type":{"label":"Tipus","options":{"connection":"Connexió","downhill":"Descens","hike":"Raquetes/senderistes","ice_skate":"Patinatge sobre gel","nordic":"Esquí de fons","playground":"Parc infantil","skitour":"Esquí de muntanya","sled":"Trineus","sleigh":"Trineus multiplaça","snow_park":"Parc per a snowboards"}},"place":{"label":"Tipus"},"plant":{"label":"Planta"},"plant/method":{"label":"Mètode de generació"},"plant/output":{"options":{"cold_air":"Aire Gelat","cold_water":"Aigua Gelada","compressed_air":"Aire Comprimit","electricity":"Electricitat","hot_air":"Aire Calent","hot_water":"Aigua Calenta","steam":"Vapor","vacuum":"Buit"}},"plant/output/electricity":{"placeholder":"500 MW, 1000 MW, 2000 MW..."},"plant/source":{"label":"Font d'energia"},"playground":{"label":"Tipus"},"playground/theme":{"label":"Temàtica"},"plots":{"label":"Parcel·les","placeholder":"10, 20, 30..."},"polling_station":{"label":"Lloc de votació","terms":"col·legi electoral"},"population":{"label":"Població"},"population/date":{"label":"Data de la Població","placeholder":"YYYY-MM-DD"},"portable":{"label":"Portàtil"},"post":{"label":"Adreça d'entrega"},"power":{"label":"Tipus"},"power_supply":{"label":"Abastament elèctric"},"preschool":{"label":"Preescolar"},"produce":{"label":"Produeix"},"product":{"label":"Productes"},"public_bookcase/type":{"label":"Tipus"},"pump":{"label":"Bomba","options":{"manual":"Bomba de mà manual","no":"Cap","powered":"Bomba mecànica","yes":"Sí"}},"railway":{"label":"Tipus"},"railway/position":{"label":"Posició de la Fita","placeholder":"Distància a un decimal (123.4)"},"railway/signal/direction":{"label":"Direcció Afectada","options":{"backward":"Enrere","both":"Ambdós / Tots","forward":"Endavant"}},"ramp":{"label":"Rampa d'obra"},"real_fire-GB-IE":{"label":"Ximeneia","terms":"foc,ximeneia,ximenea"},"recycling_accepts":{"label":"N'accepta","options":{"batteries":"Piles","cans":"Llaunes","cardboard":"Paper i Catró","clothes":"Roba","cooking_oil":"Oli de cuina","engine_oil":"Oli de motor","glass":"Qualsevol vidre (vidre templat, finestres, miralls, etc.)","glass_bottles":"Ampolles de vidre i gerres","green_waste":"Residus verds","paper":"Paper","plastic":"Plàstic","plastic_bottles":"Ampolles de Plàstic","plastic_packaging":"Embalatge de Plàstic","scrap_metal":"Ferralla","shoes":"Sabates"}},"recycling_type":{"label":"Tipus","options":{"centre":"Centre","container":"Contenidor"},"placeholder":"Contenidor, Centre"},"ref":{"label":"Codi de referència"},"ref/isil":{"label":"Codi ISIL"},"ref/vatin":{"label":"Nombre d'identificació de la VAT"},"ref_aeroway_gate":{"label":"Nombre de porta"},"ref_disc_golf_hole":{"label":"Número del forat","placeholder":"1-18"},"ref_golf_hole":{"label":"Nombre de forat","placeholder":"1-18"},"ref_highway_junction":{"label":"Nombre d'encreuament"},"ref_platform":{"label":"Nombre de plataforma"},"ref_road_number":{"label":"Nombre de carretera"},"ref_room_number":{"label":"Número d'habitació"},"ref_route":{"label":"Número de ruta"},"ref_runway":{"label":"Número de pista","placeholder":"p.e. 01L/19R"},"ref_stop_position":{"label":"Número de parada"},"ref_taxiway":{"label":"Nom del carrer de rodada","placeholder":"exemple A5"},"relation":{"label":"Tipus"},"religion":{"label":"Religió","options":{"bahai":"Fe Bahai","benzhu":"Benzhuisme ","buddhist":"Budisme","caodaism":"Caodaisme","chinese_folk":"Religió Tradicional Xinesa","christian":"Cristianisme","confucian":"Confucianisme","hindu":"Hinduisme","jain":"Jainisme","jewish":"Judaisme","muslim":"Muslumana","none":"No Religiós","pagan":"Paganisme","shinto":"Xintoisme","sikh":"Sikhisme","spiritualist":"Espiritualisme","taoist":"Taoisme","tenrikyo":"Tenrikyo","unitarian_universalist":"Unitarisme Universalista","vietnamese_folk":"Religió Tradicional Vietnamita","voodoo":"Vodú"},"terms":"religió,fe,creença"},"reservation":{"label":"Reserves","options":{"no":"No s'accepten","recommended":"Recomanades","required":"Requerides","yes":"S'accepten"},"terms":"reserves,demanar cita,demanar hora"},"residential":{"label":"Tipus"},"resort":{"label":"Tipus"},"resource":{"label":"Recursos"},"restriction":{"label":"Tipus"},"restrictions":{"label":"Restriccions de gir"},"roof/colour":{"label":"Color de la teulada"},"room":{"label":"Tipus"},"rooms":{"label":"Habitacions"},"rotor/diameter":{"label":"Diàmetre del rotor (Metres)","terms":"diàmetre del motor"},"roundtrip":{"label":"Forma un bucle","terms":"circular,tancat,bucle,redó"},"route":{"label":"Tipus"},"route_master":{"label":"Tipus"},"ruins":{"label":"Tipus"},"sac_scale":{"label":"Dificultat per al senderisme","options":{"alpine_hiking":"T4: Alpinisme","demanding_alpine_hiking":"T5: Alpinisme exigent","demanding_mountain_hiking":"T3: Muntanyisme exigent","difficult_alpine_hiking":"T6: Alpinisme difícil","hiking":"T1: Senderisme","mountain_hiking":"T2: Muntanyisme"},"placeholder":"Muntanysime, Alpinisme..."},"salt":{"label":"Sal","terms":"sal,salat,salinitat"},"sample_collection":{"label":"Mostres"},"sanitary_dump_station":{"label":"Lavabo"},"screen":{"label":"Pantalles","placeholder":"1, 4, 8…"},"scuba_diving":{"label":"Serveis"},"seamark/beacon_isolated_danger/shape":{"label":"Forma"},"seamark/beacon_lateral/category":{"label":"Categoria","options":{"danger_left":"Perill a l'esquerra","danger_right":"Perill a la dreta","port":"Bavor","starboard":"Estribor"}},"seamark/beacon_lateral/colour":{"label":"Color","options":{"green":"Verd","grey":"Gris","red":"Vermell"}},"seamark/beacon_lateral/shape":{"label":"Forma"},"seamark/beacon_lateral/system":{"label":"Sistema","options":{"iala-a":"IALA A","iala-b":"IALA B","other":"Altre"}},"seamark/buoy_lateral/category":{"label":"Categoria","options":{"port":"Bavor","preferred_channel_port":"Canal preferit a bavor","preferred_channel_starboard":"Canal preferit a estribord"}},"seamark/buoy_lateral/colour":{"label":"Color","options":{"green":"Verd","green;red;green":"Verd-Vermell-Verd","green;white;green;white":"Verd-Blanc-Verd-Blanc","red":"Vermell","red;green;red":"Vermell-Verd-Blanc","red;white;red;white":"Vermell-Blanc-Vermell-Blanc","white":"Blanc","yellow":"Groc"}},"seamark/buoy_lateral/shape":{"label":"Forma"},"seamark/buoy_lateral/system":{"label":"Sistema","options":{"iala-a":"IALA A","iala-b":"IALA B","other":"Altre"}},"seamark/mooring/category":{"label":"Categoria"},"seamark/rescue_station/category":{"label":"Equip de salvament","options":{"aircraft":"Aeronau","first_aid":"Primers auxlis","hovercraft":"Aerolliscador","lifeboat":"Bot salvavides (en terra)","lifeboat_on_mooring":"Bot salvavides (a un amarratge)","radio":"Estació de ràdio","seaplane":"Hidroavió"}},"seamark/wreck/category":{"label":"Categoria"},"seasonal":{"label":"Estacional"},"seats":{"label":"Seients","placeholder":"2, 4, 6..."},"second_hand":{"label":"En ven d'usat","options":{"no":"No","only":"Només","yes":"Sí"},"placeholder":"Sí, No, Només","terms":"2a mà,segona mà"},"segregated":{"label":"Separació Bicicleta-Peató"},"self_service":{"label":"Autoservei"},"service":{"label":"Tipus","options":{"alley":"Carreró","driveway":"Via d'accés a una propietat","emergency_access":"Accés per a emergències","parking_aisle":"Carrer d'aparcament"}},"service/bicycle":{"label":"Serveis per a bicicletes"},"service/vehicle":{"label":"Serveis"},"service_rail":{"label":"Tipus de servei de la via","options":{"crossover":"Intercambiador","siding":"Apartador","spur":"Ramal curt","yard":"Platja"}},"service_times":{"label":"Temps de servei"},"shelter":{"label":"Coberta"},"shelter_type":{"label":"Tipus"},"shoes":{"label":"Sabates"},"shop":{"label":"Tipus"},"shower":{"label":"Dutxes","terms":"dutxes,aseo,sabó,dutxa,aigua"},"siren/purpose":{"label":"Propòsit"},"siren/type":{"label":"Tipus","options":{"electronic":"Electrònica","other":"Altres","pneumatic":"Pneumàtica"}},"site":{"label":"Tipus"},"smoking":{"label":"Apte per a fumadors","options":{"dedicated":"Dedicat a fumadors (ex: club de fumadors)","isolated":"A les àrees per a fumadors, aïllades físicament","no":"Prohibit fumar a tot arreu","outside":"Permès a fora","separated":"A les àrees per a fumadors, no aïllades físicament","yes":"Permès a tot arreu"},"placeholder":"No, Separats, Sí...","terms":"fumar,tabac,tabaco,fumador,terrassa"},"smoothness":{"label":"Uniformitat per a vehicles","options":{"bad":"Rodes robustes: bicicleta de muntanya, cotxe, carruatge oriental","excellent":"Rodetes: Patí en línia, skateboard","good":"Rodes primes: bicicleta de competició","horrible":"Tot terreny : vehicle utilitari pesant tot terreny","impassable":"Impassable / Vehicles sense rodes","intermediate":"Rodes: bicicleta urbana, cadira de rodes, patinet","very_bad":"Gran altura: vehicle utilitari lleuger tot terreny","very_horrible":"Tot terreny especialitzades: tractors, Quads"},"placeholder":"Rodetes, Rodes, Tot terreny..."},"sms":{"label":"SMS"},"social_facility":{"label":"Tipus"},"social_facility_for":{"label":"Persones ateses"},"source":{"label":"Fonts","options":{"aerial imagery":"Imatges aèries","gps":"GPS","local knowledge":"Coneixement local","osm notes":"Notes d'OpenStreetMap","streetlevel imagery":"Fotografies a peu de carrer","survey":"Exploració"}},"species":{"label":"Espècies"},"species/wikidata":{"label":"Wikidata de l'espècie"},"sport":{"label":"Esports"},"sport_ice":{"label":"Esports","options":{"curling":"Cúrling","ice_hockey":"Hockey sobre gel","ice_skating":"Patinatge sobre gel","ice_stock":"Cúrling bàvar","multi":"Diversos"}},"sport_pub":{"label":"Esports","options":{"billiards":"Billar","darts":"Dards","table_soccer":"Futbolí"}},"sport_racing_motor":{"label":"Esports","options":{"karting":"Carting","motocross":"Motocròs","motor":"Esport de motor","speedway":"Autòdrom per a moto cicletes"}},"sport_racing_nonmotor":{"label":"Esports","options":{"bmx":"BMX","cycling":"Ciclisme","dog_racing":"Curses de gossos","horse_racing":"Curses de cavalls","running":"Correr"}},"stars":{"label":"Estrelles"},"start_date":{"label":"Data d'inici","placeholder":"AAAA-MM-DD","terms":"data d'inici,data inicial,inici,des de"},"step_count":{"label":"Nombre de passes"},"stile":{"label":"Tipus"},"stop":{"label":"Tipus de stop","options":{"all":"Totes direccions","minor":"Carretera menor"}},"street_cabinet":{"label":"Tipus"},"stroller":{"label":"Accés de cotxets","options":{"limited":"Limitat","no":"No","yes":"Sí"}},"structure":{"label":"Estructura","options":{"bridge":"Pont","cutting":"Trinxera","embankment":"Terraplè ","ford":"Ford","tunnel":"Túnel"},"placeholder":"Desconegut"},"structure_power":{"options":{"lattice":"Gelosia","solid":"Sólida","tubular":"Tubular"}},"structure_waterway":{"label":"Estructura","options":{"tunnel":"Túnel"},"placeholder":"Desconegut"},"studio":{"label":"Tipus"},"subject":{"label":"Subjecte"},"subject/wikidata":{"label":"Wikidata del subjecte"},"substance":{"label":"Substància"},"substation":{"label":"Tipus","options":{"compensation":"Compensador Dinàmic d'Energia Reactiva","converter":"Convertidor d'Alt Voltatge CA/CC","distribution":"Distribució Regional","generation":"Genració","industrial":"Industrial","minor_distribution":"Distribució Local","transition":"Transició a la superfície/subterrània","transmission":"Transmissió d'Alt Voltatge"}},"substation_pipeline":{"label":"Tipus","options":{"distribution":"Distribució regional","industrial":"Industrial","minor_distribution":"Distribució local"}},"supervised":{"label":"Supervisat"},"support":{"label":"Suport"},"surface":{"label":"Superfície","options":{"artificial_turf":"Gespa artificial","asphalt":"Asfalt","compacted":"Compactada","concrete":"Formigó","dirt":"Terra","grass":"Herba","gravel":"Grava","ground":"Terra","metal":"Metall","mud":"Fang persistent","paved":"Paviment","paving_stones":"Pedres pavimentades","salt":"Sal","sand":"Sorra","sett":"Llambordes no ajustades","unhewn_cobblestone":"Pedres (Sense tallar, pedres redones)","unpaved":"Sense pavimentar","wood":"Fusta","woodchips":"Estella"},"terms":"superfície,empolat,asfaltat"},"surveillance":{"label":"Tipus de vigilància"},"surveillance/type":{"label":"Tipus de vigilància","options":{"ALPR":"Lector de matrícules automàtic","camera":"Càmera","guard":"Vigilat"}},"surveillance/zone":{"label":"Zona de vigilància"},"survey/date":{"label":"Data de l'última inspecció"},"survey_point/purpose":{"options":{"vertical":"Alineació Veritcal"}},"survey_point/structure":{"label":"Estructura","options":{"block":"Bloc","magnet":"Iman","plaque":"Placa","pole":"Pal"}},"swimming_pool":{"label":"Tipus"},"switch":{"label":"Tipus","options":{"circuit_breaker":"Contactor","disconnector":"Desconector","earthing":"Presa de terra","mechanical":"Mecanic"}},"tactile_paving":{"label":"Superfície podotàctil","terms":"paviment rugós,paviment tàctil"},"takeaway":{"label":"Per emportar","options":{"no":"No","only":"Només per emportar","yes":"Sí"},"placeholder":"Sí, No, Només per emportar..."},"target":{"label":"Objectiu"},"taxon":{"label":"Tàxon"},"telecom":{"label":"Tipus"},"tidal":{"label":"Marea"},"to":{"label":"A"},"toilets":{"label":"Lavabos"},"toilets/disposal":{"label":"Contenidor","options":{"bucket":"Cubell","chemical":"Químic","flush":"Renovació d'aigua","pitlatrine":"Latrina de Fossa"}},"toilets/handwashing":{"label":"Rentamans"},"toilets/position":{"label":"Posicions"},"toilets/wheelchair":{"label":"Lavablo accesible amb cadira de rodes","options":{"limited":"Limitat","no":"No","yes":"Sí"}},"toll":{"label":"Peatge"},"tomb":{"label":"Tipus"},"tourism":{"label":"Tipus"},"tower/construction":{"label":"Construcció"},"tower/type":{"label":"Tipus"},"townhall/type":{"label":"Tipus"},"tracktype":{"label":"Tipus de pista","options":{"grade1":"Solid: Pavimentat","grade2":"Majoritàriament sòlid: Grava/roca amb materials tous barrejats","grade3":"Barreja uniforme de materials durs i tous","grade4":"Majoritàriament tou: terra/sorra/herba amb alguns materials durs barrejats","grade5":"Tou: terra/sorra/herba"},"placeholder":"Sòlid, majoritàriament sòlid, tou..."},"trade":{"label":"Tipus"},"traffic_calming":{"label":"Tipus","options":{"table":"Pas elevat"}},"traffic_sign":{"label":"Senyal de trànsit"},"traffic_sign/direction":{"label":"Direcció afectada","options":{"backward":"Enrere","both":"Ambdues / Totes","forward":"Endavant"}},"traffic_signals":{"label":"Tipus"},"traffic_signals/arrow":{"label":"Fletxa tàctil"},"traffic_signals/countdown":{"label":"Temporitzador compte enrere"},"traffic_signals/direction":{"label":"Direcció afectada","options":{"backward":"Enrere","both":"Ambdós / Tots","forward":"Endavant"}},"traffic_signals/minimap":{"label":"Mapa Tàctil"},"traffic_signals/sound":{"label":"Senyals Sonores","options":{"no":"No","walk":{"description":"Només hi ha un senyal quan està permés caminar"},"yes":"Sí"}},"traffic_signals/vibration":{"label":"Vibració"},"trail_visibility":{"label":"Visibilitat del camí","options":{"bad":"Dolenta: sense marcadors. el camí a vegades no es veu/no hi és","excellent":"Excel·lent: camí no ambigu o amb presència de marques a tots llocs","good":"Bona: marcadors visibles, a vegades cal cercar-los","horrible":"Horrible: a vegades sense camí, calen nocions d'orientació","intermediate":"Intermedia: pocs marcadors, el camí es majoritàriament visible","no":"Nul·la: sense camí, calen coneixements experts d'orientació"},"placeholder":"Excel·lent, Bona, Dolenta..."},"transformer":{"label":"Tipus","options":{"yes":"Rol desconegut"}},"trees":{"label":"Arbres"},"trench":{"label":"Tipus"},"tunnel":{"label":"Tipus","placeholder":"Predeterminat"},"tunnel_combo":{"label":"Tipus","options":{"avalanche_protector":"Protector d'Allaus","building_passage":"Passatge per un edifici","culvert":"Marc","flooded":"Inundat"}},"turning_circle":{"label":"Forma"},"two_sided":{"options":{"undefined":"No","yes":"Sí"}},"usage_rail":{"label":"Tipus d'ús","options":{"branch":"Branca","industrial":"Industrial","main":"Principal","military":"Militar","test":"Proves","tourism":"Turisme"}},"usage_waterway":{"label":"Tipus d'us","options":{"headrace":"Canal d'alimentació","irrigation":"Irrigació","spillway":"Sobreexidor","tailrace":"Canal de descàrrega","transmission":"Transmisió","transportation":"Transport"}},"utility":{"label":"Utilitat","options":{"gas":"Gas","oil":"Oli","power":"Energia","sewerage":"Aigua de rebuig","street_lighting":"Il·luminació vial","telecom":"Telecomunicacions","water":"Aigua"}},"utility_semi":{"label":"Utilitats"},"valve":{"label":"Tipus"},"vehicles":{"label":"Vehicles","options":{"bus":"Autobús","ferry":"Ferri","light_rail":"Tren lleuger","monorail":"Monocarril","subway":"Metro","train":"Tren","tram":"Tramvia","trolleybus":"Trolebus"}},"vending":{"label":"Tipus de mercaderies"},"vhf":{"label":"Canal de VHF"},"via":{"label":"Via"},"video_calls":{"label":"Videotrucades"},"visibility":{"label":"Visibilitat","options":{"area":"Més de 20m (65 peus)","house":"Fins a 5 m (16 peus)","street":"De 5 a 20 m (16 a 65 peus)"}},"volcano/status":{"label":"Estat del volcà","options":{"active":"Actiu","dormant":"Inactiu","extinct":"Extingit"}},"volcano/type":{"label":"Tipus de volcà","options":{"scoria":"Escòria","shield":"Escut","stratovolcano":"Estratovolcà"}},"voltage":{"label":"Voltatge"},"voltage/primary":{"label":"Voltatge Primari"},"voltage/secondary":{"label":"Voltatge Secondari"},"voltage/tertiary":{"label":"Voltatge Terciari"},"wall":{"label":"Tipus"},"waste":{"label":"Residus"},"water":{"label":"Tipus"},"water_point":{"label":"Punt d'aigua"},"water_source":{"label":"Font d'aigua","options":{"pond":"Estany","river":"Riu","water_tank":"Tanc d'aigua"}},"water_tank/volume":{"label":"Volum (litres)","placeholder":"10000, 20000, 30000…"},"waterway":{"label":"Tipus"},"website":{"label":"Lloc web","placeholder":"https://example.cat"},"wetland":{"label":"Tipus","options":{"bog":"Torbera","fen":"Mollera","mangrove":"Manglar","marsh":"Aiguamoll","swamp":"Pantà"}},"wheelchair":{"label":"Accés per a cadires de rodes","options":{"limited":"Limitat","no":"No","yes":"Sí"},"terms":"accés per a cadira de rodes,accés per a mobilitat reduïda"},"wholesale":{"label":"A l’engrós"},"width":{"label":"Amplada (metres)"},"wikidata":{"label":"Wikidata"},"wikimedia_commons":{"label":"Pàgina de Wikimedia Commons","placeholder":"Fitxer:Example.jpg"},"wikipedia":{"label":"Viquipèdia"},"windings":{"label":"Bobines","placeholder":"1, 2, 3..."},"windings/configuration":{"label":"Configuració de bobines","options":{"delta":"Delta","leblanc":"Leblanc","open":"Obert","open-delta":"Obert Delta","scott":"Scott","star":"Estrella","zigzag":"Zig Zag"}}},"presets":{"addr/interpolation":{"name":"Interpolació de l'adreça"},"address":{"name":"Adreça","terms":"adreça,direcció,domicili"},"advertising/billboard":{"name":"Taulell","terms":"cartellera"},"advertising/board":{"name":"Tauler de notificacions"},"advertising/column":{"terms":"columna publicitària,publicitat,cartell,propaganda"},"aerialway":{"name":"Transport per cable"},"aerialway/cable_car":{"name":"Telefèric","terms":"telefèric"},"aerialway/chair_lift":{"name":"Telecadira","terms":"telecadira"},"aerialway/drag_lift":{"terms":"elevador,remunta pendents,telesquí,esquí,lliscant,snowboarder"},"aerialway/gondola":{"name":"Telecabina"},"aerialway/goods":{"terms":"producte,mercaderia,article,càrrega,material"},"aerialway/magic_carpet":{"name":"Cinta remuntadora","terms":"catifa màgica,catifa rodant,cinta transportadora"},"aerialway/platter":{"name":"Teleesquí individual"},"aerialway/pylon":{"name":"Piló d'estructura de transport per cable"},"aerialway/rope_tow":{"name":"Corda remuntadora"},"aerialway/t-bar":{"name":"Elevador de barra en T"},"aeroway":{"name":"Infraestructura aeroportuària"},"aeroway/aerodrome":{"name":"Aeroport","terms":"aeroport,aeròdrom"},"aeroway/apron":{"name":"Àrea d'aparcament"},"aeroway/gate":{"name":"Porta d'aeroport","terms":"porta d'embarcament"},"aeroway/hangar":{"name":"Hàngar","terms":"dipòsit,drassana,magatzem,nau."},"aeroway/helipad":{"name":"Heliport","terms":"heliport,helisuperfície,àrea d'aturada d'helicòpters"},"aeroway/runway":{"name":"Pista d'enlairament/aterratge","terms":"pista d'enlairament,pista d'aterratge"},"aeroway/taxiway":{"name":"Carrer de rodada","terms":"plataforma de rodada,carrer de taxi,pista de taxi,carrer de rodament,carrer de rodatge,carril de rodada,carril de rodatge"},"aeroway/terminal":{"name":"Terminal d'aeroport","terms":"terminal aeroportuària,terminal d'aeroport,terminal d'aeròdrom"},"aeroway/windsock":{"name":"Mànega de vent","aliases":"Anemoscopi"},"allotments/plot":{"name":"Parcel·la d'hort comunitari","terms":"jardí,tros,cooperatiu,col·lectiu,comunal"},"amenity":{"name":"Instal·lació"},"amenity/animal_boarding":{"name":"Instal·lació d'embarcament d'animals"},"amenity/animal_breeding":{"name":"Instal·lació de reproducció d'animals"},"amenity/animal_shelter":{"name":"Refugi d'animals","terms":"refugi d'animals,protectora"},"amenity/arts_centre":{"name":"Centre artístic"},"amenity/atm":{"name":"Caixer automàtic","terms":"caixer automàtic,màquina expenedora de bitllets"},"amenity/bank":{"name":"Banc","terms":"banc,institució financera,sucursal bancària"},"amenity/bar":{"name":"Bar de copes","terms":"bar de copes,local d'oci nocturn,bar musical,local d'oci,pub"},"amenity/bar/lgbtq":{"name":"Bar LGBTQ+"},"amenity/bbq":{"name":"Barbacoa/graella","terms":"barbacoa,torradora,torrador"},"amenity/bench":{"name":"Banc","terms":"banc peatonal,banc per a asseure's,banc de carrer"},"amenity/bicycle_parking":{"name":"Aparcament per a bicicletes","terms":"aparcament per a bicicletes,àrea d'aparcament de bicicletes,estació de bicicletes públiques,parking de bicis,pàrquing de bicicletes,parking de bicicletes,pàrquing de bicis"},"amenity/bicycle_rental":{"name":"Lloguer de bicicletes","terms":"lloguer de bicicletes,servei de lloguer de bicicletes"},"amenity/bicycle_repair_station":{"name":"Lloc de reparació de Bicicletes"},"amenity/boat_rental":{"name":"Lloguer d'embarcacions"},"amenity/bureau_de_change":{"name":"Canvi de divisa"},"amenity/bus_station":{"name":"Estació d'autobusos"},"amenity/cafe":{"name":"Cafeteria","terms":"cafè,bar,cafeteria,te,bistro"},"amenity/cafe/bubble_tea":{"name":"Te amb perles","terms":"perles,llet,te,tapioca"},"amenity/car_rental":{"name":"Lloguer de cotxes","terms":"lloguer de cotxes,servei de lloguer de turismes"},"amenity/car_sharing":{"name":"Estació de cotxes compartits"},"amenity/car_wash":{"name":"Rentat de cotxes","terms":"servei de neteja de cotxes,tren de rentat de cotxes,estació d'autorentat de cotxes"},"amenity/casino":{"name":"Casino"},"amenity/charging_station":{"name":"Estació de càrrega","terms":"vehicle elèctric,ev,supercarregador,mobilitat elèctrica"},"amenity/childcare":{"name":"Llar d'Infants","terms":"centre de dia,orfanat,guarderia"},"amenity/cinema":{"name":"Cinema","terms":"cinema,cine,local de projeccions cinematogràfiques,local d'esbarjo"},"amenity/clinic":{"name":"Clínica","terms":"centre de salut,ambulatori,urgències,medicina,mèdic"},"amenity/clinic/abortion":{"name":"Clínica d'avortament","terms":"interrupció,salut de la dona"},"amenity/clinic/fertility":{"name":"Clínica de fertilitat","terms":"ou,fertitlitat,reproducció,reproductiva,esperma,ovulació,clínica"},"amenity/clock":{"name":"Rellotge","terms":"temps"},"amenity/clock/sundial":{"name":"Rellotge solar"},"amenity/college":{"name":"Escola professional","terms":"universitat,estudis de grau"},"amenity/community_centre":{"name":"Centre Comunitari"},"amenity/community_centre/lgbtq":{"name":"Centre comunitari LGBTQ+"},"amenity/compressed_air":{"name":"Aire comprimit","terms":"aire comprimit,compressor d'aire,unflador de rodes"},"amenity/conference_centre":{"name":"Centre de convencions","aliases":"Centre de conferències"},"amenity/courthouse":{"name":"Jutjat","terms":"jutjats,palau de justícia"},"amenity/coworking_space":{"name":"Espai de coworking"},"amenity/crematorium":{"name":"Crematori"},"amenity/dentist":{"name":"Dentista"},"amenity/dive_centre":{"name":"Centre de submarinisme","aliases":"Centre d'immersió"},"amenity/doctors":{"name":"Doctor","terms":"metge,metgessa,doctor,doctora,consultori,fisio"},"amenity/doctors/allergology":{"name":"Al·lergòleg","terms":"al·lèrgia,alergòleg,al·lergòloga,asma"},"amenity/doctors/cardiology":{"name":"Cardiòleg","terms":"cor,cardiac,cardiòloga,cardiologia,sistema cardiovascular,artèria"},"amenity/doctors/dermatology":{"name":"Dermatòleg","terms":"dermatologia,pell,ungles,monyo,cabells"},"amenity/doctors/gynaecology":{"name":"Ginecòleg"},"amenity/dojo":{"name":"Dojo / Acadèmia d'arts marcials"},"amenity/dressing_room":{"name":"Vestuari"},"amenity/drinking_water":{"name":"Aigua apta per al consum","terms":"aigua potable,aigua apta per al consum humà,aigua per beure,font"},"amenity/driver_training":{"name":"Circuit de pràctiques per a conduir","terms":"autoescola,carnet,am,b,a1,cotxe,moto"},"amenity/driving_school":{"name":"Autoescola","terms":"autoescola,escola de conduir,escola de conducció"},"amenity/embassy":{"name":"Ambaixada"},"amenity/exhibition_centre":{"name":"Centre d'Exposicions"},"amenity/fast_food":{"name":"Local de menjar ràpid","terms":"menjar ràpid,servei de menjar ràpid,restaurant de menjar ràpid,local de menjar ràpid"},"amenity/fast_food/cafeteria":{"name":"Cantina","terms":"cantina,refector,menjador escolar"},"amenity/fast_food/chicken":{"name":"Polleria","terms":"pollastre,pollastre a l’ast,dinar,grill,taula"},"amenity/fast_food/hot_dog":{"name":"Frankfurt com a menjar ràpid"},"amenity/fast_food/kebab":{"name":"Kebab com a menjar ràpid","terms":"swawuarma,kebab,durum,dorum"},"amenity/fast_food/mexican":{"name":"Menjar mexicà com a menjar ràpid"},"amenity/fast_food/pizza":{"name":"Pizza com a menjar ràpid"},"amenity/fast_food/sandwich":{"name":"Sandwich com a menjar ràpid"},"amenity/ferry_terminal":{"name":"Terminal de ferris"},"amenity/fire_station":{"name":"Parc de bombers","terms":"caserna de bombers,base de bombers,estació de bombers"},"amenity/fountain":{"name":"Font","terms":"font,aiguaneix,broll,brollador,deu,fontana,sortidor."},"amenity/fuel":{"name":"Benzinera","terms":"betzinera,estació de servei,gasolinera"},"amenity/gambling":{"name":"Sala de Jocs","terms":"apostes,bingo,blackjack,casino,pachinco,loteria,slots,joc d'atzar,escurabujaques,jocs d'atzar,apostar,joc"},"amenity/grave_yard":{"name":"Cementiri","terms":"cementiri,camp de tombes,necròpoli,ciutat dels difunts"},"amenity/grit_bin":{"name":"Contenidor de sorra"},"amenity/hospital":{"name":"Hospital","terms":"hospital,centre hospitalari,policlínica,clínica,cap,centre d'atenció primària,centre de salut,centre,atenció,primària,centre d'atenció primària."},"amenity/hunting_stand":{"name":"Punt de caça"},"amenity/ice_cream":{"name":"Gelateria","terms":"gelat,gel,iogurt,sorbet"},"amenity/internet_cafe":{"name":"Cibercafè","terms":"cifercafè,cafè d'internet,xatfeteria,cibercafè,cafè"},"amenity/kindergarten":{"name":"Centre preescolar","terms":"preescolar,jardí d'infància,guarderia"},"amenity/language_school":{"name":"Escola d'idiomes","terms":"acadèmia d'idiomes,escola de llengües,acadèmia de llengües"},"amenity/lavoir":{"name":"Safareig","terms":"llavador"},"amenity/letter_box":{"name":"Bústia"},"amenity/library":{"name":"Biblioteca","terms":"biblioteca,llibreria,espai d'emmagatzematge de llibres,edifici públic per als llibres"},"amenity/loading_dock":{"name":"Moll de càrrega","terms":"porta,moll,mercaderia,descàrrega,transport,magatzem"},"amenity/lounger":{"name":"Gandula"},"amenity/marketplace":{"name":"Mercat","terms":"mercat,mercat veïnal,mercat de carrer"},"amenity/monastery":{"name":"Terrenys d'un monestir"},"amenity/mortuary":{"name":"Morgue"},"amenity/motorcycle_parking":{"name":"Aparcament per a motocicletes","terms":"estacionament de motos,parking de motos,aparcament de motos,estacionament per a motocicletes,parking de motocicletes"},"amenity/motorcycle_rental":{"name":"Lloguer de motocicletes","aliases":"Lloguer de motos"},"amenity/music_school":{"name":"Escola de música"},"amenity/nightclub":{"name":"Club nocturn","terms":"discoteca,oci nocturn,club de ball,club nocturn"},"amenity/nightclub/lgbtq":{"name":"Club nocturn LGBTQ+","terms":"club d'alterne,gay,lèsbic,lbgtb,discoteca,discoteca lgtbiq"},"amenity/nursing_home":{"name":"Llar d'avis"},"amenity/parcel_locker":{"name":"Armari intel·ligent","terms":"parcel locker,locker,parcel,paquets,bústia,comerç,comerç en línia,comerç online,bústia intel·ligent,casiller"},"amenity/parking":{"name":"Aparcament","terms":"puesto d'estacionament,puesto d'aparcament,puesto de parking,lloc d'estacionament,lloc d'aparcament,lloc de parking"},"amenity/parking/multi-storey":{"name":"Aparcament multinivell"},"amenity/parking/underground":{"name":"Aparcament subterrani"},"amenity/parking_entrance":{"name":"Entrada / Eixida d'un aparcament","terms":"entrada de parking,ixida de parking,eixida de parking,entrada de parquing,ixida de parquing,eixida de parquing,entrada d'aparcament,ixida d'aparcament,eixida d'aparcament"},"amenity/parking_space":{"name":"Espai d'aparcament"},"amenity/parking_space/disabled":{"name":"Espai d'aparcament accesible"},"amenity/payment_terminal":{"name":"Terminal de pagament"},"amenity/pharmacy":{"name":"Farmàcia","terms":"dispensari farmacèutic,fórmules magistrals,medicaments"},"amenity/photo_booth":{"name":"Fotoràpid","terms":"fotomatón,fotomato,fotografia,dni,cabina de fotografia instantànea"},"amenity/place_of_worship":{"name":"Lloc de culte","terms":"lloc de culte,lloc per a la oració,temple de la fe,punt de trobada religiós,casa de déu"},"amenity/place_of_worship/buddhist":{"name":"Temple budista","terms":"temple budista,lloc per al culte budista,església budista"},"amenity/place_of_worship/christian":{"name":"Capella cristiana","terms":"cristià,abadia,basílica,església baptista,catedral,capella,església,casa de déu,casa d'oració,casa de lloança,lloc de pregària,monestir,missió,oratori,parròquia,sacellum,santuari"},"amenity/place_of_worship/christian/jehovahs_witness":{"name":"Sales del Regne dels testimonis de Jehovà"},"amenity/place_of_worship/christian/la_luz_del_mundo":{"name":"Templo La Luz del Mundo"},"amenity/place_of_worship/hindu":{"name":"Temple Hindú"},"amenity/place_of_worship/jewish":{"name":"Sinagoga jueva","terms":"sinagoga,temple jueu,església jueva,culte jueu,jueu"},"amenity/place_of_worship/muslim":{"name":"Mesquita musulmana","terms":"mesquita,temple musulmà,espai musulmà,musulmà"},"amenity/place_of_worship/shinto":{"name":"Santuari sintoísta"},"amenity/place_of_worship/sikh":{"name":"Temple Sikh"},"amenity/place_of_worship/taoist":{"name":"Temple Taoista"},"amenity/planetarium":{"name":"Planetari"},"amenity/police":{"name":"Comissaria de Policia","terms":"comissaria de policia,dependències policials,edifici policial,base de la policia"},"amenity/polling_station":{"name":"Col·legi Electoral Permanent"},"amenity/post_box":{"name":"Bústia","terms":"bústia,bústia pública,correus,carta,servei de correus,enviament"},"amenity/post_depot":{"name":"Oficina de classificació"},"amenity/post_office":{"name":"Oficina de correus","terms":"oficina de correus,correus,edifici de correus,cartes,carters"},"amenity/prep_school":{"name":"Classes de preparació / Classes de repàs"},"amenity/prison":{"name":"Terrenys d'una presó"},"amenity/pub":{"name":"Bar","terms":"bar,pub,granja,local d'oci nocturn,bareto"},"amenity/pub/irish":{"name":"Pub Irlandés"},"amenity/public_bath":{"name":"Banys públic","terms":"banys públic,bany públic,banys,bany"},"amenity/public_bookcase":{"name":"Prestageria pública"},"amenity/ranger_station":{"name":"Base d'Agents Rurals"},"amenity/recycling":{"name":"Reciclatge"},"amenity/recycling/container/green_waste":{"name":"Contenidor de residus verds","terms":"biodegradable,biologic,compost,descomposable,contenidor de basura,residus de jardí,orgànic,basura,restes de menjar"},"amenity/recycling_centre":{"name":"Ecoparc","terms":"centre de reciclatge,punt verd,punt net"},"amenity/recycling_container":{"name":"Contenidor de reciclatge"},"amenity/refugee_site":{"name":"Camp de refugiats"},"amenity/research_institute":{"name":"Terrenys d'un institut de recerca"},"amenity/restaurant":{"name":"Restaurant","terms":"restaurant,lloc per menjar,bistro,wok,trattoria,pizzeria"},"amenity/restaurant/american":{"name":"Restaurant americà"},"amenity/restaurant/asian":{"name":"Restaurant asiàtic"},"amenity/restaurant/chinese":{"name":"Restaurant xinès"},"amenity/restaurant/french":{"name":"Restaurant francès","terms":"cuina francesa"},"amenity/restaurant/german":{"name":"Restaurant alemany","terms":"cuina alemanya"},"amenity/restaurant/greek":{"name":"Restaurant grec","terms":"cuina grega"},"amenity/restaurant/indian":{"name":"Restaurant indi","terms":"cuina índia"},"amenity/restaurant/italian":{"name":"Restaurant italià","terms":"cuina italiana"},"amenity/restaurant/japanese":{"name":"Restaurant japonès","terms":"cuina japonesa"},"amenity/restaurant/mexican":{"name":"Restaurant mexicà","terms":"cuina mexicana"},"amenity/restaurant/pizza":{"name":"Pizzeria","terms":"pizzes"},"amenity/restaurant/seafood":{"name":"Restaurant de Mariscos"},"amenity/restaurant/sushi":{"name":"Restaurant de sushi"},"amenity/restaurant/thai":{"name":"Restaurant tailandès","terms":"cuina tailandesa"},"amenity/restaurant/turkish":{"name":"Restaurant turc","terms":"cuina turca"},"amenity/restaurant/vietnamese":{"name":"Restaurant vietnamita"},"amenity/sanitary_dump_station":{"name":"Estació de buidatge de lavabos"},"amenity/school":{"name":"Escola - Institut","terms":"escola,ceip,ies,col·legi,institut,centre educatiu,guarderia"},"amenity/shelter":{"name":"Refugi"},"amenity/shelter/gazebo":{"name":"Gazebo"},"amenity/shelter/lean_to":{"name":"Alpendre"},"amenity/shower":{"name":"Dutxa"},"amenity/smoking_area":{"name":"Àrea per a fumadors"},"amenity/social_centre":{"name":"Centre social"},"amenity/social_facility":{"name":"Centre social","terms":"comunitat,sense ànim de lucre,serveis socials,servicis socials"},"amenity/social_facility/food_bank":{"name":"Banc d'aliments","terms":"banc d'aliments,economat,menjador social"},"amenity/social_facility/group_home":{"name":"Residència d'avis","terms":"geriàtric,residencia geriàtrica"},"amenity/social_facility/homeless_shelter":{"name":"Refugi per a indigents","terms":"sense sostre,vagabund,indigent,sense casa"},"amenity/social_facility/nursing_home":{"name":"Llar d'avis","terms":"avis,ancians,residència d'ancians,residència d'avis,residència"},"amenity/studio":{"name":"Estudi"},"amenity/studio/audio":{"name":"Estudi de gravació"},"amenity/studio/television":{"name":"Estudis de Televisió"},"amenity/studio/video":{"name":"Estudis Cinematogràfics"},"amenity/taxi":{"name":"Parada de Taxi","terms":"parada de taxi,estació de taxis,taxi,taxis"},"amenity/telephone":{"name":"Telèfon","terms":"telèfon,telèfon públic,cabina telefònica,cabina de telèfon públic"},"amenity/theatre":{"name":"Teatre","terms":"cinema,sala de cine,complex de cines,edifici de cines"},"amenity/theatre/type/amphi":{"name":"Amfiteatre"},"amenity/toilets":{"name":"lavabo","terms":"lavabos,serveis,lavabos públics,w.c"},"amenity/toilets/portable":{"name":"Lavabo portàtil"},"amenity/townhall":{"name":"Ajuntament","terms":"ajuntament,casa consistorial,consistori,govern local,seu del govern local"},"amenity/townhall/city":{"name":"Ajuntament","aliases":"Casa consistorial\nCasa de la ciutat\nCasa de la vila\nPaeria\nAlcaldia\nCasa del comú\nBatllia\nBatlia"},"amenity/university":{"name":"Campus universitari","terms":"universitat,campus universitàri,grau,facultat,llicenciatura,càtedra,seminari"},"amenity/vehicle_inspection":{"name":"Inspecció de vehicles","terms":"itv"},"amenity/vending_machine":{"name":"Màquina expenedora","terms":"màquina expenedora,màquina de vènding","aliases":"Màquina de vènding\nMàquina de venda"},"amenity/vending_machine/cigarettes":{"name":"Màquina de tabac","terms":"cigarretes,tabac","aliases":"Màquina expenedora de tabac\nExpenedora de tabac"},"amenity/vending_machine/coffee":{"name":"Expenedora de cafè","terms":"cafè"},"amenity/vending_machine/condoms":{"name":"Expenedor de preservatius","terms":"condó,preservatiu","aliases":"Màquina de venda de preservatius"},"amenity/vending_machine/drinks":{"name":"Expenedora de begudes","aliases":"Màquina expenedora de begudes\nMàquina de venda de begudes\nMàquina de vènding de begudes"},"amenity/vending_machine/electronics":{"name":"Màquina expenedora de dipositius electrònics","terms":"cable,carregador,auricular,cascos,telèfon,tablet,tauleta,tableta,mòbil"},"amenity/vending_machine/excrement_bags":{"name":"Dispensador de bosses per a excrements"},"amenity/vending_machine/feminine_hygiene":{"name":"Expenedora d'articles d'higiene femenina","aliases":"Màquina de venda d'articles d'higiene femenina"},"amenity/vending_machine/food":{"name":"Màquina expenedora de menjar"},"amenity/vending_machine/fuel":{"name":"Sortidor de benzina"},"amenity/vending_machine/ice_cream":{"name":"Expenedora de gelats"},"amenity/vending_machine/ice_cubes":{"name":"Màquina expenedora de gel","terms":"cubitos,cubs,gel"},"amenity/vending_machine/newspapers":{"name":"Màquina expenedora de diaris"},"amenity/vending_machine/parking_tickets":{"name":"Màquina de cobrament del tiquet d'aparcament"},"amenity/vending_machine/pizza":{"name":"Màquina expenedora de pizzes"},"amenity/vending_machine/public_transport_tickets":{"name":"Màquina de venda de títols de transport públic"},"amenity/vending_machine/stamps":{"name":"Expenedora de segells"},"amenity/vending_machine/sweets":{"name":"Màquina de vènding de comestibles"},"amenity/veterinary":{"name":"Veterinari","terms":"clínica per a animals,veterinari,hospital veterinari,cura d'animals"},"amenity/waste/dog_excrement":{"name":"Paperera per a excrements de gos"},"amenity/waste_basket":{"name":"Paperera","terms":"paperera,basura,paperera pública,contenidor,deixalles,brossa"},"amenity/waste_disposal":{"name":"Contenidor d'escombraries"},"amenity/waste_transfer_station":{"name":"Centre de tractament de residus"},"amenity/water_point":{"name":"Aigua potable d'autocaravana"},"amenity/watering_place":{"name":"Font d'aigua per animals"},"area":{"name":"Àrea","terms":"àrea"},"attraction":{"name":"Atracció"},"attraction/amusement_ride":{"name":"Atracció de fira"},"attraction/maze":{"name":"Laberint"},"attraction/roller_coaster":{"name":"Muntanya russa"},"attraction/train":{"name":"Tren turístic"},"attraction/water_slide":{"name":"tobogan d'aigua"},"barrier":{"name":"Barrera","terms":"tanca,valla,paret,seto,tancament,filferrada,reixat,reixa"},"barrier/block":{"name":"Bloc","terms":"bloc"},"barrier/bollard":{"name":"Piló","terms":"piló,pilona,bolard,bol·lard,bolardo"},"barrier/bollard_line":{"name":"Filera de pilons","terms":"filera de bolards,filera de bol·lards"},"barrier/border_control":{"name":"Control de fronteres","terms":"control de frontereres,control fronterer"},"barrier/cattle_grid":{"name":"Reixat","terms":"reixat,reixat ramader"},"barrier/chain":{"name":"Cadena"},"barrier/city_wall":{"name":"Muralla","terms":"muralla,muralla medieval,paret de la ciutat,mur,tanca,tancament,medieval,monument"},"barrier/cycle_barrier":{"name":"Barrera per a ciclistes","terms":"barrera per a ciclistes,ciclisme,bicicleta,ruta cicloturista,valla,tanca,tancament,tanca per a bicicletes"},"barrier/ditch":{"name":"Trinxera"},"barrier/entrance":{"name":"Entrada"},"barrier/fence":{"name":"Tanca","terms":"valla,tanca,tancament,barrera,reixa"},"barrier/gate":{"name":"Porta","terms":"porta d'embarcament d'avions,porta d'aeroport,porta"},"barrier/hedge":{"name":"Tanca de bardissa","terms":"seto,tanca de bardissa,valla de seto,valla verda,valla de plantes,tanca de plantes"},"barrier/height_restrictor":{"name":"Restrictor de gàlib"},"barrier/kerb":{"name":"Gual","terms":"vorera,bordillo,rebaix"},"barrier/kissing_gate":{"name":"Porta giratòria","terms":"porta giratòria,porta sense retorn,accés giratori,porta de no retorn"},"barrier/lift_gate":{"name":"Barrera per a vehicles","terms":"porta d'ascensor"},"barrier/log":{"name":"Arbre caigut"},"barrier/motorcycle_barrier":{"name":"Barrera per a motocicletes"},"barrier/planter":{"name":"Jardinera (Barrera)"},"barrier/retaining_wall":{"name":"Mur de contenció","terms":"mur de contenció,paret de contenció"},"barrier/stile":{"name":"esgraons","terms":"escala de tanca"},"barrier/toll_booth":{"name":"Peatge","terms":"peatge,autopista de peatge,cabina de peatge,estació de peatge,punt de peatge"},"barrier/wall":{"name":"Mur","terms":"mur,paret,muralla"},"barrier/wall/noise_barrier":{"name":"Barrera acústica","terms":"barrera acústica,barrera de soroll"},"barrier/yes":{"name":"Barrera (Tipus sense especificar)"},"boundary":{"name":"Límit","aliases":"Frontera"},"boundary/administrative":{"name":"Límit administratiu","terms":"límit administratiu,frontera administrativa,delimitació administrativa"},"building":{"name":"Edifici","terms":"edifici,bloc de pisos,nau industrial,centre comercial,oficines,bloc,casa,barraca"},"building/apartments":{"name":"Edifici d'apartaments","terms":"edifici d'apartaments,apartaments,pisos,bloc de pisos,bloc"},"building/barn":{"name":"Graner"},"building/bungalow":{"name":"Bungalou"},"building/bunker":{"name":"Búnquer"},"building/cabin":{"name":"Cabana","terms":"cabina"},"building/cathedral":{"name":"Edifici Catedralici"},"building/chapel":{"name":"Edifici de capella"},"building/church":{"name":"Edifici d'església"},"building/civic":{"name":"Edifici cívic","aliases":"Edifici públic"},"building/college":{"name":"Edifici d'escola professional"},"building/commercial":{"name":"Edifici comercial","terms":"edifici comercial"},"building/construction":{"name":"Edifici en construcció","terms":"edifici en construcció,edifici baix construcció"},"building/detached":{"name":"Casa a quatre vents","terms":"llar,casa,familiar,unifamiliar,residència,allotjament"},"building/dormitory":{"name":"Edifici d'habitacions","terms":"dormitori"},"building/entrance":{"name":"Entrada/Sortida"},"building/farm":{"name":"Casa d'una granja"},"building/farm_auxiliary":{"name":"Edifici d'una granja"},"building/fire_station":{"name":"Edifici d'un parc de bombers"},"building/garage":{"name":"garatge","terms":"garatge"},"building/garages":{"name":"Garatges"},"building/greenhouse":{"name":"Hivernacle"},"building/hospital":{"name":"Edifici hospitalari","terms":"edifici hospitalari,hospital,urgències,planta,consultes externes,uci,uvi,quiròfans"},"building/hotel":{"name":"Edifici hoteler"},"building/house":{"name":"Casa","terms":"casa"},"building/hut":{"name":"Cabana","terms":"barraca"},"building/industrial":{"name":"Edifici industrial","terms":"edifici industrial"},"building/kindergarten":{"name":"Edifici de preescolar"},"building/mosque":{"name":"Edifici d'una mesquita"},"building/office":{"name":"Edifici d'oficines"},"building/public":{"name":"Edifici públic","terms":"edifici públic"},"building/residential":{"name":"Edifici residencial","terms":"edifici residencial"},"building/retail":{"name":"Edifici d'un comerç al detall","terms":"tenda,botiga,comerç,edifici comercial,detall"},"building/roof":{"name":"Teulada","terms":"terrat,teulada"},"building/ruins":{"name":"Edifici en ruïnes"},"building/school":{"name":"Edifici escolar","terms":"escola,gimnàs,poliesportiu,aulari,seminaris,pati,esbarjo,aules,despatxos,tallers,ateliers,aules d'informàtica,classes,classe,sala de música,corredors,corredor,pasillo,pasillos,passadís,passadissos,sala de professors,recepció"},"building/semidetached_house":{"name":"Casa adossada"},"building/service":{"name":"Edifici de serveis"},"building/shed":{"name":"Traster"},"building/stable":{"name":"Estable"},"building/stadium":{"name":"Edifici d'un estadi"},"building/static_caravan":{"name":"Caravana fixa","terms":"casa prefabricada,trailer casa,cosa mòbil,caravana residencial,caravana estàtica"},"building/temple":{"name":"Edifici d'un temple"},"building/terrace":{"name":"Cases unifamiliars","terms":"llar,adossats,en filera,familiar,residència,allotjament"},"building/train_station":{"name":"Edifici d'estació de tren"},"building/transportation":{"name":"Edifici per a transports"},"building/university":{"name":"Edifici universitari","terms":"edifici universitari"},"building/warehouse":{"name":"Magatzem","terms":"magatzem,bodega,depòsit,dipòsit"},"building_part":{"name":"Part de l'edifici"},"building_point":{"name":"Edifici"},"club":{"name":"Club"},"club/sport":{"name":"Club d'esports","terms":"club,esport,associació,esportistes,deport,deportistes,associació d'esports"},"craft":{"name":"Artesà"},"craft/agricultural_engines":{"name":"Mecànic agrícola","terms":"tractors,maquinària agrícola,agrícola,llaurador,pagés,ferramentes"},"craft/basket_maker":{"name":"Cistellaire"},"craft/beekeeper":{"name":"Apicultor"},"craft/blacksmith":{"name":"Ferrer"},"craft/boatbuilder":{"name":"Constructor d'embarcacions"},"craft/bookbinder":{"name":"Enquadernador"},"craft/brewery":{"name":"Cerveseria","terms":"alcohol,cervesa,beguda,birra,cidra"},"craft/carpenter":{"name":"Fuster","terms":"fuster,fusteria,ebenista,ebenisteria,tallista"},"craft/carpet_layer":{"name":"Moquetista"},"craft/caterer":{"name":"Servei de càtering"},"craft/chimney_sweeper":{"name":"Escura-xemeneies"},"craft/cleaning":{"name":"Servei de neteja"},"craft/clockmaker":{"name":"Rellotger"},"craft/confectionery":{"name":"Artesà de llaminadures"},"craft/distillery":{"name":"Destil·leria"},"craft/dressmaker":{"name":"Sastreria"},"craft/electrician":{"name":"Electricista"},"craft/electronics_repair":{"name":"Botiga de reparacions electròniques","terms":"tenda de reparacions electròniques"},"craft/gardener":{"name":"Jardiner"},"craft/glaziery":{"name":"Vidrieria"},"craft/hvac":{"name":"Empresa d'instal·lacions climàtiques","terms":"aire condicionat,ventilació,calefacció,estufa"},"craft/insulator":{"name":"Aïllador","terms":"aïllant,isolador"},"craft/key_cutter":{"name":"Fabricant de claus","terms":"duplicació de claus,copia de claus"},"craft/locksmith":{"name":"Copisteria de claus"},"craft/metal_construction":{"name":"Treballador del metall"},"craft/painter":{"name":"Pintor","terms":"pintor"},"craft/photographer":{"name":"Fotògraf","terms":"fotògraf"},"craft/photographic_laboratory":{"name":"Laboratori fotogràfic","terms":"pel·lícula"},"craft/plasterer":{"name":"Guixaire","terms":"guix,algeps,algep"},"craft/plumber":{"name":"Llauner","terms":"canonada,canal,canó,col·lector,conducte"},"craft/pottery":{"name":"Terrissaire","terms":"ceràmica,forn,olla,gerro","aliases":"Fabricant de ceràmica"},"craft/rigger":{"name":"Armador d'embarcacions","terms":"aparellador"},"craft/roofer":{"name":"Constructor de teulades","terms":"teulador"},"craft/saddler":{"name":"Cuirasser"},"craft/sailmaker":{"name":"Fabricant de veles","terms":"veler,velera,fabricant de veles"},"craft/sawmill":{"name":"Serradora","terms":"talador"},"craft/scaffolder":{"name":"Muntador de bastides"},"craft/sculptor":{"name":"Escultor"},"craft/shoemaker":{"name":"Sabater"},"craft/signmaker":{"name":"Retolista","terms":"ròtul,retolista,cartell,retul"},"craft/stonemason":{"name":"Manobra"},"craft/tailor":{"name":"Sastreria"},"craft/tiler":{"name":"Enrajolador"},"craft/tinsmith":{"name":"Llauner"},"craft/upholsterer":{"name":"Creador de mobles"},"craft/watchmaker":{"name":"Fabricant de rellotges"},"craft/window_construction":{"name":"Fabricant de finestres"},"craft/winery":{"name":"Celler"},"demolished/building":{"name":"Edifici recentment demolit"},"disused/railway":{"name":"Element ferroviari en desús"},"disused/shop":{"name":"Botiga en desús"},"embankment":{"name":"Terraplè"},"emergency":{"name":"Objecte d'emergència"},"emergency/ambulance_station":{"name":"Parada d'ambulàncies","terms":"estació d'ambulàncies"},"emergency/assembly_point":{"name":"Punt de trobada d'emergència"},"emergency/defibrillator":{"name":"Desfibril·lador"},"emergency/designated":{"name":"Accés per a emergències designat"},"emergency/destination":{"name":"Accés per a emergències només a destí"},"emergency/fire_extinguisher":{"name":"Extintor"},"emergency/fire_hose":{"name":"Manguera d'incendis"},"emergency/fire_hydrant":{"name":"Boca d'incendis","terms":"boca d'incendis,presa d'aigua per a bombers,incendi,bombers,sortida d'aigua,aigua"},"emergency/first_aid_kit":{"name":"Equip de primers auxilis"},"emergency/landing_site":{"name":"Lloc d'aterratge d'emergències"},"emergency/life_ring":{"name":"Salvavides"},"emergency/lifeboat_station":{"name":"Estació de bots salvavides"},"emergency/lifeguard":{"name":"Socorrista"},"emergency/mountain_rescue":{"name":"Rescat de muntanya"},"emergency/no":{"name":"Accés per a emergències prohibit"},"emergency/official":{"name":"Accés per a emergències oficial"},"emergency/phone":{"name":"Telèfon per a emergències","terms":"telèfon d'emergències,sos,s.o.s"},"emergency/private":{"name":"Accés per a emergències privat"},"emergency/siren":{"name":"Sirena"},"emergency/water_tank":{"name":"Dipòsit d'aigua d'emergència","terms":"tanc d'aigua,cisterna,dipòsit"},"emergency/yes":{"name":"Accés per a emergències permès"},"entrance":{"name":"Entrada / Sortida","terms":"entrada,eixida,ixida,porta"},"entrance/emergency":{"name":"Sortida d'emergència"},"entrance/emergency_ward_entrance":{"name":"Entrada a la sala d'urgències"},"entrance/main":{"name":"Entrada principal"},"ford":{"name":"Ford","terms":"gual"},"ford_line":{"name":"Gual"},"golf/bunker":{"name":"Bunker","terms":"perill"},"golf/fairway":{"name":"Fairway"},"golf/green":{"name":"Green"},"golf/hole":{"name":"Forat"},"golf/rough":{"name":"Rough"},"golf/tee":{"name":"Àrea inicial"},"golf/water_hazard":{"name":"Obstacle d'aigua"},"healthcare":{"name":"Centre de salut"},"healthcare/alternative":{"name":"Medicina alternativa"},"healthcare/alternative/chiropractic":{"name":"Quiropràctic"},"healthcare/birthing_center":{"name":"Centre de parts"},"healthcare/blood_donation":{"name":"Centre de donació de sang"},"healthcare/hospice":{"name":"Hospici"},"healthcare/laboratory":{"name":"Laboratori mèdic"},"healthcare/occupational_therapist":{"name":"Terapeuta ocupacional"},"healthcare/optometrist":{"name":"Optometrista","terms":"ull,ulleres,lent,lentilles,visió"},"healthcare/physiotherapist":{"name":"Fisioterapeuta"},"healthcare/psychotherapist":{"name":"Psicoterapeuta"},"healthcare/rehabilitation":{"name":"Centre de reabilitació"},"healthcare/speech_therapist":{"name":"Logopeda"},"healthcare/yes":{"name":"Instal·lació sanitària (Tipus sense especificar)"},"highway":{"name":"Element viari"},"highway/bridleway":{"name":"Camí de ferradura","terms":"camí de ferradura,cavall,camí eqüestre,via eqüestre,ferradura,via de ferradura"},"highway/bus_stop":{"name":"Parada d'autobús","aliases":"Parada de bus"},"highway/corridor":{"name":"Corredor interior"},"highway/crossing":{"name":"Pas de vianants"},"highway/crossing/marked":{"name":"Pas de vianants amb senyalització horitzontal"},"highway/crossing/traffic_signals":{"name":"Pas de vianants controlat per semàfors"},"highway/crossing/uncontrolled":{"terms":"pas de vianants,pas de peatons"},"highway/crossing/unmarked":{"name":"Creuament sense senyalització horitzontal"},"highway/crossing/zebra":{"name":"Pas de zebra"},"highway/cycleway":{"name":"Carril Bici","terms":"carril bici,via verda,via ciclista"},"highway/cycleway/bicycle_foot":{"name":"Camí per a bicicletes i vianants"},"highway/cycleway/crossing":{"name":"Pas per a bicicletes"},"highway/cycleway/crossing/bicycle_foot":{"name":"Pas per a vianants i bicicletes"},"highway/cycleway/crossing/marked":{"name":"Pas de bicicletes senyalitzat hortizontalment"},"highway/cycleway/crossing/unmarked":{"name":"Pas de bicicletes sense senyalització horitzontal"},"highway/emergency_bay":{"name":"Lloc d'aturada d'emergència","aliases":"Lloc de parada d'emergència"},"highway/footway":{"name":"Camí per a vianants","terms":"camí per a vianants,carrer peatonal,camí per a peatons,a peu,camí per caminar,vianant,vianants,peató,peatons,transeünt,transeünts,peatonal"},"highway/footway/crossing":{"name":"Pas de vianants"},"highway/footway/crossing/marked":{"name":"Pas de vianants amb senyalització horitzontal"},"highway/footway/crossing/zebra":{"name":"Pas de zebra"},"highway/footway/sidewalk":{"name":"Vorera","terms":"vorera,voravia"},"highway/give_way":{"name":"Senyal de cediu el pas"},"highway/living_street":{"name":"Carrer residencial","terms":"carrer residencial"},"highway/mini_roundabout":{"name":"Mini-Rotonda","terms":"minirotonda,mini-rotonda,rotonda petita"},"highway/motorway":{"name":"Autopista","terms":"autopista,autovia"},"highway/motorway_junction":{"name":"Intersecció d'autopista / Sortida","terms":"eixida,ixida"},"highway/motorway_link":{"name":"Enllaç d'autopista","terms":"rampa,entrada,incorporació,baixada,addició,autopista,autovia,eix"},"highway/path":{"name":"Camí","terms":"sender,corriol"},"highway/path/informal":{"name":"Camí informal"},"highway/pedestrian_area":{"name":"Àrea de vianants"},"highway/pedestrian_line":{"name":"Carrer per vianants"},"highway/primary":{"name":"Carretera primària","terms":"carretera primària,carretera de 1r ordre"},"highway/primary_link":{"name":"Enllaç de carretera primària","terms":"enllaç amb primària"},"highway/raceway/karting":{"name":"Pista de carreres de karts"},"highway/raceway/motocross":{"name":"Pista de carreres de motocròs"},"highway/residential":{"name":"Carrer","terms":"carrer"},"highway/rest_area":{"name":"Àrea de descans","terms":"parada,banquina"},"highway/road":{"name":"Carretera sense classificació","terms":"via desconeguda,via per arreglar"},"highway/secondary":{"name":"Carretera secundària","terms":"carretera secundària,carretera de 2n ordre"},"highway/secondary_link":{"name":"Enllaç de carretera secundària","terms":"enllaç amb secundària"},"highway/service":{"name":"Via de servei","terms":"via de servei,lateral"},"highway/service/alley":{"name":"Carreró","terms":"carreró,cul de sac"},"highway/service/drive-through":{"name":"Via de servei al vehicle","terms":"pas de vehicles,via d'autoservei"},"highway/service/driveway":{"name":"Via d'accés a una propietat","terms":"entrada de vehicles"},"highway/service/emergency_access":{"name":"Accés per a emergències","terms":"accés d'emergència"},"highway/service/parking_aisle":{"name":"Carrer d'aparcament","terms":"passadís de pàrquing,pàrquing,parking,aparcament,carrer interior d'aparcament,carrer per aparcar,carrer de pàrquing,carrer de parking"},"highway/services":{"name":"Àrea de servei","terms":"motel,estació de servei,àrea de servei,parada de camioners,parada de camions,estació de servici,àrea de servici"},"highway/steps":{"name":"Escales","terms":"esgraons,graons,escalinata,escala,escalons"},"highway/steps/conveying":{"name":"Escales mecàniques"},"highway/stop":{"name":"Senyal de stop"},"highway/street_lamp":{"name":"Fanal"},"highway/tertiary":{"name":"Carretera terciària","terms":"carretera terciària,carretera de 3r ordre,local"},"highway/tertiary_link":{"name":"Enllaç de carretera terciària","terms":"enllaç amb terciària"},"highway/toll_gantry":{"name":"Peatge sense barreres","terms":"peatge"},"highway/track":{"name":"Pista forestal / Via d'accés"},"highway/traffic_mirror":{"name":"Mirall de trànsit"},"highway/traffic_signals":{"name":"Semàfor","terms":"senyals de trànsit,senyals de tràfic"},"highway/trunk":{"name":"Carretera principal","terms":"via ràpida,variant"},"highway/trunk_link":{"name":"Enllaç de via principal","terms":"enllaç amb via ràpida"},"highway/turning_circle":{"name":"Cul de sac","terms":"girar 180 graus,canviar de sentit"},"highway/unclassified":{"name":"Carretera menor / sense classificació","terms":"carrer,carretera,via"},"historic":{"name":"Lloc històric","terms":"lloc històric"},"historic/archaeological_site":{"name":"Jaciment arqueològic","terms":"lloc arqueològic"},"historic/boundary_stone":{"name":"Fita de terme","terms":"fita de frontera"},"historic/building":{"name":"Edifici històric"},"historic/castle":{"name":"Castell","terms":"castell"},"historic/castle/fortress":{"name":"Fortalesa històrica"},"historic/castle/palace":{"name":"Palau"},"historic/castle/stately":{"name":"Casa senyorial"},"historic/city_gate":{"name":"Portal de la ciutat"},"historic/fort":{"name":"Fort històric"},"historic/manor":{"name":"Casa pairal"},"historic/memorial":{"name":"Memorial","terms":"memorial"},"historic/memorial/plaque":{"name":"Placa commemorativa"},"historic/monument":{"name":"Monument","terms":"monument"},"historic/pillory":{"name":"Costell històric","aliases":"Picota històrica"},"historic/ruins":{"name":"Ruïnes","terms":"ruines"},"historic/tomb":{"name":"Tomba"},"historic/wayside_cross":{"name":"Creu Cristiana","terms":"calvari,encreuament del camí"},"historic/wayside_shrine":{"name":"Capella","terms":"ermita"},"historic/wreck":{"name":"Naufragi"},"indoor/room":{"name":"Habitació"},"internet_access/wlan":{"name":"Punt d'accés Wi-Fi"},"junction":{"name":"Encreuament"},"landuse":{"name":"Objecte d'ús del sòl","aliases":"Objecte d'ús del terreny\nObjecte d'ús del territori"},"landuse/allotments":{"name":"Horts","terms":"horts urbans,horts comunitaris,horts"},"landuse/aquaculture":{"name":"Aqüicultura"},"landuse/basin":{"name":"Bassa"},"landuse/brownfield":{"name":"Sòl urbanitzable ja urbanitzat","terms":"desenvolupament,industrial"},"landuse/cemetery":{"name":"Cementiri","terms":"cementiri,camp sant"},"landuse/churchyard":{"name":"Terrenys d'església"},"landuse/commercial":{"name":"Zona Comercial","terms":"grans magatzems,oficines"},"landuse/construction":{"name":"Àrea en construcció","terms":"construcció,àrea de construcció,demolició,lloc de construcció,desenvolupament,infraestructura","aliases":"Zona en construcció"},"landuse/farm":{"name":"Zona Agrícola"},"landuse/farmland":{"name":"Zona Agrícola"},"landuse/farmyard":{"name":"Edificis de Granja","terms":"granja,granges,galliner,estable,mas,masia,masoveria,ranxo,nau,naus,dipòsit,femta,fems,fem,porc,porcs,purí,purins,gallina,gallines,conill,conills,pinso,tancat,tanca,valles,valla"},"landuse/flowerbed":{"name":"Parterre"},"landuse/forest":{"name":"Bosc gestionat"},"landuse/garages":{"name":"Terreny per a garatges"},"landuse/grass":{"name":"Herba","terms":"herba,gespa"},"landuse/greenfield":{"name":"Sòl urbanitzable sense urbanitzar"},"landuse/greenhouse_horticulture":{"name":"Horticultura d'hivernacles"},"landuse/harbour":{"name":"Port"},"landuse/industrial":{"name":"Zona Industrial"},"landuse/industrial/scrap_yard":{"name":"Desballestador de vehicles"},"landuse/industrial/slaughterhouse":{"name":"Escorxador"},"landuse/landfill":{"name":"Abocador","terms":"abocador"},"landuse/meadow":{"name":"Prat","terms":"prat,prada,natural"},"landuse/military":{"name":"Zona Militar"},"landuse/military/airfield":{"name":"Aeròdrom militar"},"landuse/military/barracks":{"name":"Caserna militar"},"landuse/military/base":{"name":"Base militar"},"landuse/military/base/navy":{"name":"Base naval"},"landuse/military/danger_area":{"name":"Àrea de perill"},"landuse/military/obstacle_course":{"name":"Cursa d'obstacles militar"},"landuse/military/range":{"name":"Terreny per a usos militars"},"landuse/military/training_area":{"name":"Àrea d'entrenament militar"},"landuse/orchard":{"name":"Verger","terms":"horta,hort,plantació,arbre,fruit,agrícola"},"landuse/plant_nursery":{"name":"Planter","terms":"viver de plantes,viver,planter,jardí,flors"},"landuse/pond":{"name":"Estany"},"landuse/quarry":{"name":"Mina a cel obert","terms":"pedrera"},"landuse/railway":{"name":"Terreny ferroviari","terms":"corredor,passadis,pasillo,àrea,zona,ferroviari,ferrocarril,tren"},"landuse/recreation_ground":{"name":"Terrenys per al Lleure"},"landuse/religious":{"name":"Àrea religiosa"},"landuse/reservoir":{"name":"Pantà"},"landuse/residential":{"name":"Zona Residencial","terms":"vivenda,residència,allotjament"},"landuse/residential/apartments":{"name":"Complex d'apartaments"},"landuse/retail":{"name":"Zona de Comerç minorista","terms":"àrea comercial"},"landuse/salt_pond":{"name":"Salina"},"landuse/vineyard":{"name":"Vinya","terms":"vinyar,vinyal,vinyet,vinya"},"landuse/winter_sports":{"name":"Zona d'esports d'hivern"},"leisure":{"name":"Element d'esbarjo"},"leisure/adult_gaming_centre":{"name":"Centre d'oci adult"},"leisure/amusement_arcade":{"name":"Saló recreatiu"},"leisure/beach_resort":{"name":"Balneari de platja","terms":"platja,resort,estiu,balneari,mar"},"leisure/bird_hide":{"name":"Observatori d'ocells"},"leisure/bleachers":{"name":"Graderia","terms":"seients,grades,bancs,esport,estadi"},"leisure/bowling_alley":{"name":"Bolera"},"leisure/common":{"name":"Àrea comuna"},"leisure/dance":{"name":"Pista de ball","terms":"zona de ball"},"leisure/dancing_school":{"name":"Escola de dansa"},"leisure/dog_park":{"name":"Parc Caní","terms":"pipi-can,parc per gossos"},"leisure/escape_game":{"name":"Escape Room"},"leisure/firepit":{"terms":"foguera,foc,cercle de foc,forat de foc,lloc de foc,anell de foc,llar de foc"},"leisure/fishing":{"name":"Punt de pesca"},"leisure/fitness_centre":{"name":"Gimnàs / Centre de Fitness"},"leisure/fitness_centre/yoga":{"name":"Estudi de Yoga"},"leisure/fitness_station":{"name":"Instal·lació exterior de Fitness"},"leisure/fitness_station/balance_beam":{"name":"Tauló d'exercicis d'equilibri"},"leisure/fitness_station/box":{"name":"Caixa per exercicis"},"leisure/fitness_station/horizontal_bar":{"name":"Barra horitzontal per exercicis"},"leisure/fitness_station/horizontal_ladder":{"name":"Escala horitzontal per exercicis"},"leisure/fitness_station/hyperextension":{"name":"Estació d'hiperextensió"},"leisure/fitness_station/parallel_bars":{"name":"Barres paral·leles"},"leisure/fitness_station/push-up":{"name":"Estació de flexions"},"leisure/fitness_station/rings":{"name":"Anelles per exercicis"},"leisure/fitness_station/sign":{"name":"Senyal d'instruccions per exercicis"},"leisure/fitness_station/sit-up":{"name":"Estació d'abdominals"},"leisure/fitness_station/stairs":{"name":"Escales per exercicis"},"leisure/garden":{"name":"Jardí","terms":"jardí,parc,zona ajardinada"},"leisure/garden/botanical":{"name":"Jardí botànic"},"leisure/garden/community":{"name":"Hort comunitari","terms":"jardí,cooperatiu,col·lectiu,comunal"},"leisure/garden/residential":{"name":"Jardí residencial"},"leisure/golf_course":{"name":"Camp de golf","terms":"camp de golf"},"leisure/horse_riding":{"name":"Centre d'Equitació","terms":"instal·lació equestre,equestre,granja de cavalls,parc de cavalls,ranx,rancho"},"leisure/ice_rink":{"name":"Pista de gel","terms":"hoquei,patinatge,curling,pista de gel,jocs de d'hivern,esports d'hivern"},"leisure/marina":{"name":"Port esportiu","terms":"port esportiu,marina"},"leisure/miniature_golf":{"name":"Golf en miniatura"},"leisure/nature_reserve":{"name":"Reserva Natural"},"leisure/park":{"name":"Parc","terms":"parc,àrea verda,àrea enjardinada,jardí,verger,gespa,arbres,flors"},"leisure/picnic_table":{"name":"Taula de picnic","terms":"banc,banc per a picnic"},"leisure/picnic_table/chess":{"name":"Taulell d'escacs"},"leisure/pitch":{"name":"Camp d'esports","terms":"camp d'esports,pista poliesportiva"},"leisure/pitch/american_football":{"name":"Camp de futbol americà","terms":"estadi de futbol americà,camp de futbol americà"},"leisure/pitch/australian_football":{"name":"Camp de futbol australià"},"leisure/pitch/badminton":{"name":"Pista de badminton","terms":"badminton,xarxa de badminton"},"leisure/pitch/baseball":{"name":"Camp de beisbol"},"leisure/pitch/basketball":{"name":"Pista de bàsquet","terms":"pista de bàsquet,pavelló de bàsquet"},"leisure/pitch/beachvolleyball":{"name":"Pista de voleibol platja"},"leisure/pitch/bowls":{"name":"Camp de bolos"},"leisure/pitch/chess":{"name":"Taulell d'escacs gegant"},"leisure/pitch/cricket":{"name":"Camp de criquet"},"leisure/pitch/netball":{"name":"Pista de netbol"},"leisure/pitch/rugby_league":{"name":"Camp de la lliga de Rugbi"},"leisure/pitch/rugby_union":{"name":"Camp de la Unió de Rugbi"},"leisure/pitch/skateboard":{"name":"Parc per a skates"},"leisure/pitch/soccer":{"name":"Camp de futbol","terms":"camp de futbol,pista de futbol"},"leisure/pitch/table_soccer":{"name":"Futbolí","terms":"futbolin"},"leisure/pitch/table_tennis":{"name":"Taula de ping-pong"},"leisure/pitch/tennis":{"name":"Pista de tennis","terms":"camp de tennis,pista de tennis"},"leisure/pitch/volleyball":{"name":"Camp de vòleibol","terms":"pista de voleibol,camp de voleibol"},"leisure/playground":{"name":"Zona de jocs infantils","terms":"parc infantil"},"leisure/resort":{"name":"Complex turístic","terms":"centre recreatiu,sanatori,esquí,snowboard,resort,vacances,vacacions,jocs d’hivern"},"leisure/sauna":{"name":"Sauna"},"leisure/slipway":{"name":"Pendent per a embarcacions","terms":"varador"},"leisure/slipway_drivable":{"name":"Grada (Nàutica)"},"leisure/sports_centre":{"name":"Complex esportiu"},"leisure/sports_centre/climbing":{"name":"Gimnàs d'escalada"},"leisure/sports_centre/swimming":{"name":"Instal·lacions de Piscina"},"leisure/stadium":{"name":"Estadi","terms":"estadi,camp"},"leisure/swimming_area":{"name":"Zona de bany natural","terms":"aigua,nadar,nedar,bany,piscina,platja,bucejar"},"leisure/swimming_pool":{"name":"Piscina","terms":"piscina"},"leisure/trampoline_park":{"name":"Parc de Trampolins"},"leisure/water_park":{"name":"Parc Aquàtic"},"line":{"name":"Línia","terms":"línia"},"man_made":{"name":"Objecte fet per l'home"},"man_made/adit":{"name":"Entrada"},"man_made/antenna":{"name":"Antena"},"man_made/beacon":{"name":"Balisa"},"man_made/beehive":{"name":"Rusc","terms":"apícola,apicultura,mel,abelles,polinització,granja"},"man_made/breakwater":{"name":"trencaonades","terms":"escullera,espigó,espatller"},"man_made/bridge":{"name":"Àrea del pont"},"man_made/bunker_silo":{"name":"Sitja d'un bunker"},"man_made/cairn":{"name":"Fita","terms":"pila de rocs,pila de pedres,fita","aliases":"Pila de pedres\nPila de rocs"},"man_made/chimney":{"name":"Xemeneia"},"man_made/crane":{"name":"Grua"},"man_made/cross":{"name":"Creu","terms":"creu,creueta"},"man_made/cutline":{"name":"Línia de tall","terms":"línia de tall"},"man_made/dovecote":{"name":"Colomar","terms":"pardals,colom,coloms,colomar,colombari,colombaire"},"man_made/dyke":{"name":"Dic"},"man_made/embankment":{"name":"Terraplè"},"man_made/flagpole":{"name":"Màstil","terms":"màstil"},"man_made/gasometer":{"name":"Gasòmetre"},"man_made/lighthouse":{"name":"Far","terms":"far"},"man_made/manhole":{"name":"Pou de registre","terms":"arqueta,pou,forat,telecomunicacions"},"man_made/manhole/drain":{"name":"Desguàs","terms":"pluja,plutja,forat,aigua,desaigüe,tormenta,drenatge"},"man_made/monitoring_station":{"name":"Estació de seguiment"},"man_made/obelisk":{"name":"Obelisc"},"man_made/observatory":{"name":"Observatori"},"man_made/petroleum_well":{"name":"Pou petrolífer"},"man_made/pier":{"name":"Moll de pilons","terms":"moll,dàrsena"},"man_made/pier/floating":{"name":"Embarcador flotant","terms":"pantalà,pantalan,embarcament,vaixell"},"man_made/pipeline":{"name":"Canonada","terms":"gàseoducte,oleoducte,canonades"},"man_made/pipeline/underground":{"name":"Canonada subterrània"},"man_made/pumping_station":{"name":"Estació de bombament"},"man_made/reservoir_covered":{"name":"Reservori cobert"},"man_made/silo":{"name":"Sitja"},"man_made/storage_tank":{"name":"Tanc d'emmagatzematge","terms":"aigua,gasolina,gasoil,gas,petroli","aliases":"Dipòsit d'emmagatzematge"},"man_made/storage_tank/water":{"name":"Tanc d'aigua","terms":"torre d'aigua,dipòsit d'aigua,cisterna","aliases":"Dipòsit d'aigua"},"man_made/surveillance":{"name":"Vigilància"},"man_made/surveillance/camera":{"name":"Càmera de vigilància"},"man_made/survey_point":{"name":"Punt referencial","terms":"punt de salvació,punt de salvament,punt d'evacuació"},"man_made/tower":{"name":"Torre","terms":"torre,torres"},"man_made/tower/communication":{"name":"Torre de comunicacions"},"man_made/tower/cooling":{"name":"Torre de refrigeració"},"man_made/tower/defensive":{"name":"Torre fortificada"},"man_made/tower/minaret":{"name":"Minaret"},"man_made/tower/observation":{"name":"Torre d'observació"},"man_made/tower/pagoda":{"name":"Pagoda"},"man_made/tunnel":{"name":"Àrea d'un tunel"},"man_made/video_wall":{"name":"Pantalla digital"},"man_made/wastewater_plant":{"name":"Depuradora d'aigües residuals","terms":"depuradora"},"man_made/water_tower":{"name":"Torre d'aigua","terms":"torre d'aigua,dipòsit d'aigua,dipòsit"},"man_made/water_well":{"name":"Pou"},"man_made/water_works":{"name":"Planta potabilitzadora","terms":"depuradora,aigües residuals,estació depuradora d'aigües residual,edar,epsar"},"man_made/watermill":{"name":"Molí d'aigua"},"man_made/windmill":{"name":"Molí de vent"},"man_made/windpump":{"name":"Molí de bombeig"},"man_made/works":{"name":"Fàbrica","terms":"factoria"},"man_made/works/brewery":{"name":"Cerveseria industrial"},"man_made/yes":{"name":"Element fet per l'home (Tipus sense especificar)"},"military/bunker":{"name":"Bunquer militar"},"military/checkpoint":{"name":"Punt de control militar"},"military/office":{"name":"Oficina militar"},"military/trench":{"name":"Trinxera militar"},"natural":{"name":"Element natural"},"natural/bare_rock":{"name":"Roca pelada"},"natural/bay":{"name":"Badia"},"natural/beach":{"name":"Platja","terms":"platja"},"natural/cape":{"name":"Cap"},"natural/cave_entrance":{"name":"Entrada de cova"},"natural/cliff":{"name":"Penya-segat"},"natural/coastline":{"name":"Línia costanera","terms":"línia costera,costa,litoral,línia de platja,platja,mar"},"natural/fell":{"name":"Prat d'alta muntanya"},"natural/geyser":{"name":"Guèiser"},"natural/glacier":{"name":"Glacera"},"natural/grassland":{"name":"Praderia"},"natural/heath":{"name":"Landa"},"natural/hot_spring":{"name":"Surgència termal","aliases":"Aigües termals"},"natural/mud":{"name":"Argila","aliases":"Fang"},"natural/peak":{"name":"Pic","terms":"pic,cim,cimadal,pollegó,agulla."},"natural/reef":{"name":"Escull"},"natural/ridge":{"name":"Cresta","aliases":"Carena"},"natural/saddle":{"name":"Coll","aliases":"Collada"},"natural/sand":{"name":"Sorra"},"natural/scree":{"name":"Tartera"},"natural/scrub":{"name":"Matollar"},"natural/shingle":{"name":"Codolar","aliases":"Macar"},"natural/shrub":{"name":"Arbust"},"natural/spring":{"name":"Font"},"natural/stone":{"name":"Pedra solta / Bloc de pedra"},"natural/strait":{"name":"Estret"},"natural/tree":{"name":"Arbre","terms":"arbre"},"natural/tree_row":{"name":"Fila d'arbres"},"natural/valley":{"name":"Vall"},"natural/volcano":{"name":"Volcà"},"natural/water":{"name":"Aigua","terms":"aigua"},"natural/water/basin":{"name":"Conca"},"natural/water/canal":{"name":"Àrea de canal"},"natural/water/lake":{"name":"Llac","terms":"llac,estany"},"natural/water/moat":{"name":"Fossat"},"natural/water/pond":{"name":"Estany","terms":"estany,bassa,bassal,llac,reserva,aljub"},"natural/water/reservoir":{"name":"Embassament"},"natural/water/river":{"name":"Àrea de riu"},"natural/water/stream":{"name":"Àrea de rierol"},"natural/water/wastewater":{"name":"Conca d'aigües residuals"},"natural/wetland":{"name":"Aiguamolls"},"natural/wood":{"name":"Bosc natural","terms":"bosc natural,bosc no gestionat,forestal,arbres","aliases":"Bosc no gestionat"},"noexit/yes":{"name":"Sense sortida"},"office":{"name":"Oficines","terms":"oficina,oficines"},"office/accountant":{"name":"Oficina comptable"},"office/administrative":{"name":"Oficina de tràmits locals"},"office/adoption_agency":{"name":"Agència d'adopció"},"office/advertising_agency":{"name":"Agència de publicitat"},"office/architect":{"name":"Despatx d'arquitectura","terms":"arquitecte,arquitectura,oficna d'arquitectura,disseny,paisatge,interior,interiorisme"},"office/association":{"name":"Oficina d'una organització sense ànim de lucre","terms":"associació,ong,sense ànim de lucre,organització,societat"},"office/company":{"name":"Oficina corporativa"},"office/coworking":{"name":"Espai de cotreball","aliases":"Espai de coworking\nEspai de treball compartit"},"office/diplomatic":{"name":"Oficina diplomàtica"},"office/diplomatic/consulate":{"name":"Consolat"},"office/diplomatic/embassy":{"name":"Ambaixada"},"office/educational_institution":{"name":"Institució Educativa"},"office/employment_agency":{"name":"Oficina de treball"},"office/energy_supplier":{"name":"Oficina d'una Distribuïdora Energètica","terms":"distribuïdora elèctrica,companyia elèctrica,electricitat,gas,distribuïdora de gas"},"office/estate_agent":{"name":"Agència immobiliària","terms":"immobiliària,propietat"},"office/financial":{"name":"Oficina d'una financera"},"office/financial_advisor":{"name":"Assessoria financera"},"office/forestry":{"name":"Oficina forestal"},"office/foundation":{"name":"Oficina d'una fundació","terms":"sense ànim de lucre"},"office/government":{"name":"Oficina governamental"},"office/government/prosecutor":{"name":"Oficina del Fiscal","terms":"fiscal general,fiscal del districte,fiscal de l'estat,fiscal"},"office/government/register_office":{"name":"Registre civil","terms":"defunció,naiximent,naixement,certificat,funcionari"},"office/guide":{"name":"Oficina de guies turístics"},"office/insurance":{"name":"Oficina d'una Companyia Asseguradora","terms":"asseguradora privada,gestió de riscos,segur"},"office/it":{"name":"Oficina de tecnologies de la informació","terms":"solucions informàtiques,informació,software,tecnologia,ordinardors"},"office/lawyer":{"name":"Bufet d'advocats","terms":"advocat,dret,jutge"},"office/lawyer/notary":{"name":"Notaria"},"office/newspaper":{"name":"Oficines d'un Diari","terms":"sala de premsa,redacció"},"office/ngo":{"name":"Oficina d'una ONG","terms":"ong,organització no governamental,organització"},"office/notary":{"name":"Notaria"},"office/physician":{"name":"Metge"},"office/political_party":{"name":"Oficina d'un partit polític","terms":"activista,canditat,elecció,parit polític"},"office/private_investigator":{"name":"Oficina d'investigador privat"},"office/quango":{"name":"Oficina de quasi-ONG"},"office/religion":{"name":"Oficina religiosa"},"office/research":{"name":"Oficines d'R+D"},"office/security":{"name":"Oficina de seguretat"},"office/surveyor":{"name":"Oficina d'un agrimensor","terms":"agrimensora,superficies agràries"},"office/tax_advisor":{"name":"Asesoria Fiscal","terms":"asesoria,comptable,tases,taxes,asesor,consultor"},"office/telecommunication":{"name":"Oficina de telecomunicacions","terms":"comunicació,proveïdor d'internet,xarxa,telèfon,veu,isp"},"office/therapist":{"name":"Oficina de terapeuta","terms":"teràpia"},"office/travel_agent":{"name":"Agència de viatges"},"office/union":{"name":"Oficina d'un sindicat laboral"},"office/water_utility":{"name":"Oficina de la companyia de l'aigua","terms":"companyia de l'aigua,aigua,distribuïdora,aigua potable"},"office/yes":{"name":"Oficina (Tipus sense especificar)"},"piste/ice_skate":{"name":"Camí per patinatge sobre gel"},"piste/nordic":{"name":"Camí per esquí de muntanya"},"piste/piste":{"name":"Camí / pista per esports de neu"},"place":{"name":"Lloc"},"place/city":{"name":"Ciutat","terms":"ciutat,municipi"},"place/farm":{"name":"Granja"},"place/hamlet":{"name":"Llogaret"},"place/island":{"name":"Illa","terms":"arxipèlag,atol·ló,cai,illa,illot,illes,illots,escull"},"place/islet":{"name":"Illot","terms":"arxipèlag,atol·ló,cai,illa,illot,illes,illots,escull"},"place/isolated_dwelling":{"name":"Vivenda aïllada","terms":"vivenda aïllada,vivenda unifamiliar,casa aïllada,casa unifamiliar"},"place/locality":{"name":"Indret","terms":"indret,localitat,zona,àrea"},"place/neighbourhood":{"name":"Barri","terms":"veïnat,veiïnada,veïnatge"},"place/plot":{"name":"Parcel·la"},"place/square":{"name":"Plaça"},"place/town":{"name":"Ciutat"},"place/village":{"name":"Poble"},"playground":{"name":"Equipament de parcs infantils"},"playground/activitypanel":{"name":"Panell d’activitats (Parc inafantil)","terms":"esbarjo,parc,parc infantil,creu en ralla,cruz y ralla,tres en línia,tres en ralla,tres en ratlla"},"playground/aerialrotator":{"name":"Girador penjant","terms":"esbarjo,parc,parc infantil,perxa,penjant"},"playground/balancebeam":{"name":"Barra d’equilibri (Parc Infantil)","terms":"equilibri,barra,esbarjo,parc,parc infantil"},"playground/basketrotator":{"name":"Cistella Giradora","terms":"cistella,discapacitat,mobilitat reduïda,esbarjo,parc,parc infantil"},"playground/basketswing":{"name":"Gronxador cistella","terms":"gronxador,cistella,discapacitat,mobilitat reduïda,esbarjo,parc,parc infantil"},"playground/bridge":{"name":"Pont penjant (Parc Infantil)","terms":"esbarjo,parc,parc infantil,pont"},"playground/horizontal_bar":{"name":"Barra horitzontal infantil"},"playground/sandpit":{"name":"Sorral","aliases":"Sorrera"},"playground/seesaw":{"name":"Palanca","terms":"balancin,balancí"},"playground/structure":{"name":"Estructura de jocs"},"playground/swing":{"name":"Gronxador"},"playground/tetherball":{"name":"Tetherball"},"playground/trampoline":{"name":"Trampolí"},"playground/tunnel_tube":{"name":"Tunel d'esbarjo"},"point":{"name":"Punt","terms":"punt"},"police/checkpoint":{"name":"Control Policial"},"polling_station":{"name":"Col·legi electoral temporal","aliases":"Lloc de votació temporal"},"power":{"name":"Objecte elèctric"},"power/cable":{"name":"Cable elèctric"},"power/cable/underground":{"name":"Cable elèctric subterrani"},"power/generator":{"name":"Generador elèctric"},"power/generator/method/photovoltaic":{"name":"Placa solar","aliases":"Panell solar"},"power/generator/method/photovoltaic/location/roof":{"name":"Panells Solars al sostre","terms":"producció solar domèstica,plaques solars al sostre,fotovoltàica,panells solars"},"power/generator/source/hydro":{"name":"Turbina d'aigua"},"power/generator/source/nuclear":{"name":"Reactor nuclear","terms":"fisió,generadord,nuclear,atòmic,reactor,ascó"},"power/generator/source/wind":{"name":"Aerogenerador","terms":"generador,turbina,vent,generador eòlic,molí de vent","aliases":"Molí de vent"},"power/line":{"name":"Línia elèctrica","terms":"línia d'alta tensió,lat,alta tenisió"},"power/minor_line":{"name":"Línia elèctrica de baixa tensió"},"power/plant":{"name":"Terrenys d'una central elèctrica","terms":"carbó,gas,gas natural,generador,hidro,nuclear,atòmica,energia,estació"},"power/plant/source/coal":{"name":"Central elèctrica de carbó","terms":"carbó,combustió,combustible fòssil,generador elèctric,estació elèctrica,central de carbó","aliases":"Central tèrmica de carbó"},"power/plant/source/gas":{"name":"Central elèctrica de gas","terms":"carbó,gas natural,combustió,combustió fòssil,estació elèctrica,central de gas","aliases":"Central tèrmica de gas"},"power/plant/source/hydro":{"name":"Central hidroelèctrica"},"power/plant/source/method/photovoltaic":{"name":"Granja solar"},"power/plant/source/nuclear":{"name":"Central nuclear"},"power/plant/source/oil":{"name":"Central elèctrica de petroli","aliases":"Central tèrmica de petroli"},"power/plant/source/solar":{"name":"Planta Fotovoltaica","terms":"panells solars,planta fotovoltaica,energia solar"},"power/plant/source/waste":{"name":"Central elèctrica d'incineració de residus","terms":"rebuig,planta d'incineració,incineradora,incineradora de fem,incineradora de rebuig,incineradora de basura,resta,combustió,gasificadora"},"power/plant/source/wind":{"name":"Parc eòlic","aliases":"Parc d'aerogeneradors"},"power/pole":{"name":"Piló de línia elèctrica","terms":"pal elèctric"},"power/substation":{"name":"Subestació","terms":"subestació elèctrica,estació elèctrica,central elèctrica"},"power/switch":{"name":"Interruptor elèctric"},"power/tower":{"name":"Torre de línia d'alta tensió","terms":"torre d'alta tensió,torre d'alt voltatge"},"power/transformer":{"name":"Transformador","terms":"transformador"},"public_transport/platform":{"name":"Parada de transport públic","terms":"andana,parada de transport públic,parada de bus,parada de trànsit,transport"},"public_transport/platform/bus":{"name":"Andana d'autobús","aliases":"Andana de bus"},"public_transport/platform/bus_point":{"name":"Parada d'autobús","aliases":"Parada de bus"},"public_transport/platform/bus_tram_point":{"name":"Parada de tramvia i autobús","aliases":"Parada de tramvia i bus"},"public_transport/platform/ferry":{"name":"Moll de ferri"},"public_transport/platform/ferry_point":{"name":"Parada / moll de ferri"},"public_transport/platform/light_rail":{"name":"Andana de tren lleuger"},"public_transport/platform/light_rail_point":{"name":"Parada / andana de tren lleuger"},"public_transport/platform/monorail":{"name":"Andana de monoraïl"},"public_transport/platform/monorail_point":{"name":"Parada / andana de monoraïl"},"public_transport/platform/subway":{"name":"Andana de metro"},"public_transport/platform/subway_point":{"name":"Parada / andana de metro"},"public_transport/platform/train":{"name":"Andana de tren"},"public_transport/platform/train_point":{"name":"Parada / andana de tren"},"public_transport/platform/tram":{"name":"Andana de tranvia"},"public_transport/platform/tram_point":{"name":"Parada / andana de tramvia"},"public_transport/platform/trolleybus":{"name":"Andana de troleibús"},"public_transport/platform/trolleybus_point":{"name":"Parada de troleibús"},"public_transport/platform_point":{"name":"Parada / andana de transport públic"},"public_transport/station":{"name":"Estació de transport públic"},"public_transport/station_aerialway":{"name":"Estació de transport per cable"},"public_transport/station_bus":{"name":"Estació d'autobusos"},"public_transport/station_ferry":{"name":"Terminal de ferris"},"public_transport/station_light_rail":{"name":"Estació de tren lleuger"},"public_transport/station_monorail":{"name":"Estació de monoraïl"},"public_transport/station_subway":{"name":"Estació de metro"},"public_transport/station_train":{"name":"Estació de ferrocarril"},"public_transport/station_train_halt":{"name":"Parada de Ferrocarril (Parada / Sol·licitud)","terms":"apeadero"},"public_transport/station_tram":{"name":"Estació de tramvia"},"public_transport/station_trolleybus":{"name":"Estació / terminal de troleibús"},"public_transport/stop_area":{"name":"Àrea de parada de transport públic"},"public_transport/stop_position":{"name":"Lloc de parada de transport públic","terms":"transport públic,servei públic"},"public_transport/stop_position_aerialway":{"name":"Lloc de parada de transport per cable"},"public_transport/stop_position_bus":{"name":"Lloc de parada de bus"},"public_transport/stop_position_ferry":{"name":"Lloc de parada de ferri"},"public_transport/stop_position_light_rail":{"name":"Lloc de parada de tren lleuger"},"public_transport/stop_position_monorail":{"name":"Lloc de parada de monoraïl"},"public_transport/stop_position_subway":{"name":"Parada de metro"},"public_transport/stop_position_train":{"name":"Lloc de parada de tren"},"public_transport/stop_position_tram":{"name":"Lloc de parada de tramvia"},"public_transport/stop_position_trolleybus":{"name":"Lloc de parada de troleibús"},"railway":{"name":"Element ferroviari"},"railway/abandoned":{"name":"Via fèrria abandonada","terms":"via ferroviaria abandonada,via de ferrocarril abandonada"},"railway/construction":{"name":"Via fèrria en construcció"},"railway/disused":{"name":"Via fèrria fora d'ús","terms":"via fèrria abandonada,via de tren fora d'ús,via de tren abandonada"},"railway/funicular":{"name":"Pista de funicular"},"railway/halt":{"name":"Parada de Ferrocarril (Parada / Sol·licitud)"},"railway/level_crossing":{"name":"Pas a nivell","terms":"pas a nivell,pas de ferrocarril,guardaagulles,barreres,semàfors,tren,cotxe"},"railway/light_rail":{"name":"Via de tren lleuger"},"railway/monorail":{"name":"Via de monoraïl"},"railway/monorail/hanging":{"name":"Via de monoraïl penjant"},"railway/narrow_gauge":{"name":"Traçat de via estreta"},"railway/platform":{"name":"Andana de tren"},"railway/rail":{"name":"Via de tren"},"railway/railway_crossing":{"name":"cruïlla ferroviària"},"railway/signal":{"name":"Senyal de via fèrria"},"railway/station":{"name":"Estació de ferrocarril"},"railway/subway":{"name":"Via de metro"},"railway/subway_entrance":{"name":"Boca de Metro","terms":"boca de metro,entrada de metro"},"railway/switch":{"name":"Canvi d'agulles"},"railway/train_wash":{"name":"Rentat de trens"},"railway/tram":{"name":"Tramvia","terms":"tranvia,tram"},"relation":{"name":"Relació","terms":"relació"},"route/ferry":{"name":"Ruta de ferri"},"seamark/beacon_isolated_danger":{"name":"Far de perill"},"seamark/beacon_lateral":{"name":"Far de canal"},"shop":{"name":"Botiga","terms":"botiga,comerç,tenda"},"shop/agrarian":{"name":"Agrobotiga","terms":"botiga de suministres agrícoles,tenda de suministres agrícoles","aliases":"Cooperativa agrícola"},"shop/alcohol":{"name":"Botiga de licors","terms":"licoreria,botiga de licors"},"shop/anime":{"name":"Botiga de manga / anime","terms":"tenda de manga / anime,otaku,manga,japó,kawaii,comic"},"shop/antiques":{"name":"Botiga d'antiguitats","terms":"tenda d'antiguitats,antiquari,vintage,història,vell,antic"},"shop/art":{"name":"Botiga d'art","terms":"art,exhibit,galeria,galeria d'art,exhibició"},"shop/baby_goods":{"name":"Botiga per a nadons","terms":"botiga per a bebès,tenda per a bebès,tenda per a nadons,bebè,nadó,bebé"},"shop/bag":{"name":"Botiga d'equipatges o bosses"},"shop/bakery":{"name":"Fleca","terms":"forn de pa,panaderia,pastisseria,forn"},"shop/bathroom_furnishing":{"name":"Botiga de mobles de bany"},"shop/beauty":{"name":"Saló de bellesa","terms":"estètica,spa,saló,broncejat"},"shop/beauty/nails":{"name":"Saló de manicures"},"shop/beauty/tanning":{"name":"Saló de bronzejat"},"shop/bed":{"name":"Botiga de matalassos"},"shop/beverages":{"name":"Botiga de begudes","terms":"licoreria"},"shop/bicycle":{"name":"Botiga de bicicletes","terms":"tenda de bicicletes,ciclisme,bicicleta,reparació,taller"},"shop/boat":{"name":"Botiga de nàutica"},"shop/bookmaker":{"name":"Casa d'apostes","terms":"apostes,joc d'atzar,escurabujaques,jocs d'atzar,apostar,joc"},"shop/books":{"name":"Llibreria"},"shop/boutique":{"name":"Boutique"},"shop/butcher":{"name":"Carnisseria"},"shop/candles":{"name":"Botiga d'espelmes","terms":"tenda de ciris,ciris,cera,espelma,foc"},"shop/cannabis":{"name":"Botiga cannàbica","terms":"tenda cannàbica,420,marihuana,canàbis,cannàbis,herba,tulipans,maria,porro"},"shop/car":{"name":"Concessionari de cotxes"},"shop/car/second_hand":{"name":"Consessionari de cotxes de segona mà"},"shop/car_parts":{"name":"Botiga de recanvis de cotxe"},"shop/car_repair":{"name":"Taller d'automòbils","terms":"taller,electromecànica,garaig,itv,inspecció,canvi d'oli,servei,servici,cotxe,taller de cotxes"},"shop/carpet":{"name":"Botiga de catifes"},"shop/charity":{"name":"Botiga de Caritat"},"shop/cheese":{"name":"Botiga de formatge"},"shop/chemist":{"name":"Farmàcia"},"shop/chocolate":{"name":"Botiga de xocolata"},"shop/clothes":{"name":"Botiga de roba","terms":"botiga de roba"},"shop/clothes/second_hand":{"name":"Botiga de roba de segona mà"},"shop/clothes/underwear":{"name":"Botiga de llenceria"},"shop/clothes/workwear":{"name":"Botiga de roba de feina"},"shop/coffee":{"name":"Botiga de cafè","terms":"tenda de cafè,cafe,cafè,expresso,flat white,cappuchino"},"shop/collector":{"name":"Botiga de coleccionabes","terms":"tenda de coleccionables,colecció,comics,coleccionista,figures,antiguitats,sellos,estamps"},"shop/computer":{"name":"Botiga d'informàtica","terms":"botiga d'informàtica,botiga d'ordinadors"},"shop/confectionery":{"name":"Botiga de llaminadures","terms":"botiga de dolços,botiga de caramels,botiga de llepolies,dolços,llaminadures,caramels,llepolies"},"shop/convenience":{"name":"Botiga d'ultramarins","terms":"botiga de queviures,ultramarins,queviures,colmado"},"shop/copyshop":{"name":"Copisteria","terms":"botiga,fotocòpies,fulls,impressora"},"shop/cosmetics":{"name":"Botiga de cosmètics","terms":"botiga de perfums,cosmètics,cosmètica,perfums,perfumeria"},"shop/craft":{"name":"Botiga d'art i artesania"},"shop/curtain":{"name":"Botiga de cortines","terms":"botiga de roba de la llar,cortines,coixins"},"shop/dairy":{"name":"Botiga de productes làctics"},"shop/department_store":{"name":"Grans magatzems"},"shop/doityourself":{"name":"Botiga de bricolatge","terms":"botiga de bricolatge"},"shop/doors":{"name":"Botiga de portes","terms":"tenda de portes,portes,entrada"},"shop/dry_cleaning":{"name":"Bugaderia","terms":"tintoreria,centre de neteja,neteja,neteja en sec"},"shop/e-cigarette":{"name":"Botiga de cigars electrònics","terms":"tenda de cigars electrònics,vapeig,vaper,electrònica,cigarret electrònic,tabaco,tabac,cigarro electrònic"},"shop/electrical":{"name":"Tenda d'equipament elèctric","terms":"cable,elèctric,electricitat,ventilador,il·luminació,potència"},"shop/electronics":{"name":"Botiga d'electrònica","terms":"botiga d'electrònica,botiga de components electrònics"},"shop/erotic":{"name":"Botiga d'articles eròtics","terms":"sex,shop,sexshop"},"shop/erotic/lgbtq":{"name":"Botiga d'articles eròtics LGBTQ+","terms":"sexe,porn,pornografia"},"shop/fabric":{"name":"Botiga de teles","terms":"botiga de robes,teles,robes"},"shop/farm":{"name":"Estand productiu","terms":"grades"},"shop/fashion":{"name":"Botiga de roba"},"shop/fashion_accessories":{"name":"Botiga d'accessoris de moda"},"shop/fireplace":{"name":"Botiga de llars de foc"},"shop/fishing":{"name":"Botiga de pesca","terms":"tenda de pesca,cebo,canya,sedal,esquer,am,ams,peix,pesca,mar"},"shop/flooring":{"name":"Botiga de sòls","terms":"tenda de sòls,manises,piso,màrmol,suelo,pis,terra"},"shop/florist":{"name":"Floristeria","terms":"floristeria,botiga de plantes,botiga de jardineria"},"shop/frame":{"name":"Botiga de marcs","terms":"tenda de marcs,art,pintura,pintor,fotografia"},"shop/frozen_food":{"name":"Botiga de menjars congelats"},"shop/fuel":{"name":"Botiga de combustibles","terms":"gas,butà,butano,metà,propà,metano,propano,paella,tenda de combustibles,cepsa,repsol,cuina,gasòil,gasolina,diesel"},"shop/funeral_directors":{"name":"Tanatori","terms":"funerària,mortuori"},"shop/furniture":{"name":"Botiga de mobles","terms":"botiga de mobles,moblista"},"shop/garden_centre":{"name":"Centre de jardineria"},"shop/gas":{"name":"Punt de venta de Gas embotellat","terms":"gas,butà,butano,metà,propà,metano,propano,paella,repsol,cepsa,botella,punt de venta de gas,botiga de gas,tenda de gas"},"shop/general":{"name":"Botiga generalista"},"shop/gift":{"name":"Botiga de regals","terms":"botiga de regals,botiga d'objectes de regal,tenda de regals,tenda d'objectes de regal"},"shop/greengrocer":{"name":"Fruiteria"},"shop/hairdresser":{"name":"Perruqueria"},"shop/hardware":{"name":"Ferreteria"},"shop/hearing_aids":{"name":"Centre d'audició"},"shop/herbalist":{"name":"Herbolari"},"shop/hifi":{"name":"Botiga d'alta fidelitat"},"shop/houseware":{"name":"Botiga de la llar"},"shop/hunting":{"name":"Botiga de caça","terms":"tenda de caça,fletexes,arcs,bales,ballestes,rifles,escopetes,trampres,porcsenglars,jabalins,vedat"},"shop/interior_decoration":{"name":"Botiga de decoració d'interior","terms":"decoració,adornaments,interiorisme"},"shop/jewelry":{"name":"Joieria","terms":"joier"},"shop/kiosk":{"name":"Quiosc"},"shop/kitchen":{"name":"Botiga de disseny de cuines"},"shop/laundry":{"name":"Bugaderia"},"shop/laundry/self_service":{"name":"Bugaderia d'autoservei"},"shop/leather":{"name":"Botiga de cuirs"},"shop/locksmith":{"name":"Copisteria de claus"},"shop/lottery":{"name":"Administració de loteria"},"shop/mall":{"name":"Centre comercial"},"shop/massage":{"name":"Centre de massatges"},"shop/medical_supply":{"name":"Farmàcia"},"shop/military_surplus":{"name":"Botiga d'excedents militars"},"shop/mobile_phone":{"name":"Botiga de telefonia mòbil"},"shop/money_lender":{"name":"Prestamista"},"shop/motorcycle":{"name":"Botiga de motocicletes"},"shop/motorcycle_repair":{"name":"Taller de reparació de motos"},"shop/music":{"name":"Botiga de música"},"shop/musical_instrument":{"name":"Botiga d'instruments musicals"},"shop/newsagent":{"name":"Quiosc de premsa"},"shop/nutrition_supplements":{"name":"Botiga de suplements nutricionals"},"shop/optician":{"name":"Òptica"},"shop/outdoor":{"name":"Botiga per a activitats a l'aire lliure"},"shop/paint":{"name":"Botiga de pintura"},"shop/pastry":{"name":"Pastisseria"},"shop/perfumery":{"name":"Botiga de perfums","terms":"perfumeria,botiga de colònies"},"shop/pet":{"name":"Botiga d'animals"},"shop/photo":{"name":"Botiga de fotografia"},"shop/pottery":{"name":"Botiga de ceràmica"},"shop/printer_ink":{"name":"Botiga de tinta d'impressores"},"shop/pyrotechnics":{"name":"Botiga d'articles pirotècnics"},"shop/radiotechnics":{"name":"Botiga d'articles electrònics"},"shop/religion":{"name":"Botiga d'articles religiosos"},"shop/scuba_diving":{"name":"Botiga de submarinisme","terms":"tenda de submarinisme,mar,aigua,snorkel,buceig,submarinisme"},"shop/seafood":{"name":"Botiga de Mariscos","terms":"marisqueria,pòsit,llotja,tenda de mariscos"},"shop/second_hand":{"name":"Botiga de segona mà"},"shop/sewing":{"name":"Merceria"},"shop/shoe_repair":{"name":"Sabater","terms":"reparador de sabates,sabates,sabateria"},"shop/shoes":{"name":"Sabateria","terms":"sabateria,botiga de sabates,sabater"},"shop/spices":{"name":"Botiga d'espècies","terms":"tenda d'especies,curry,xili,canella,herba,pebrera,pimienta,sal,especie,condiments,wasabi,condiment"},"shop/sports":{"name":"Botiga d'esports","terms":"esport,deport"},"shop/stationery":{"name":"Papereria"},"shop/storage_rental":{"name":"Lloguer de magatzem"},"shop/supermarket":{"name":"Supermercat","terms":"supermercat,súper,hipermercat,híper"},"shop/supermarket/organic":{"name":"Supermercat ecològic"},"shop/tailor":{"name":"Sastreria"},"shop/tattoo":{"name":"Centre de tatuatges"},"shop/tea":{"name":"Botiga de te"},"shop/ticket":{"name":"Venedor de tiquets"},"shop/tiles":{"name":"Botiga de rajoles","terms":"tenda de rajoles,manises,ceràmica,paret"},"shop/tobacco":{"name":"Estanc","terms":"tabacos,tabacs,estanc,expeneduria,expendeduria,dispensari,cigarrets,cigars,fumar"},"shop/tool_hire":{"name":"Lloguer d'eines"},"shop/toys":{"name":"Botiga de joguines","terms":"botiga de joguines,botiga de jocs,joguineria"},"shop/travel_agency":{"name":"Agència de viatges","terms":"agència de viatges"},"shop/trophy":{"name":"Botiga de trofeus","terms":"tenda de trofeus,premi,medalla,placa,trofeu"},"shop/tyres":{"name":"Botiga de pneumàtics"},"shop/vacant":{"name":"Botiga vacant"},"shop/vacuum_cleaner":{"name":"Botiga d'aspiradors"},"shop/variety_store":{"name":"Botiga de tot a 100"},"shop/video":{"name":"Botiga de vídeos","terms":"videoclub"},"shop/video_games":{"name":"Botiga de videojocs"},"shop/watches":{"name":"Botiga de rellotges","terms":"botiga d'ulleres,tenda d'ulleres,optometrista"},"shop/water":{"name":"Botiga d'aigua potable","terms":"tenda d'aigua potable,aigua,beure,sed,beguda,potable"},"shop/water_sports":{"name":"Botiga d'esports aquàtics","terms":"tenda d'esports aquàtics,aigua,natació,nadar,piscina,mar"},"shop/weapons":{"name":"Armeria","terms":"botiga d'armes,tenda d'armes,gavinets,ganivets,pistola,munició,armes"},"shop/window_blind":{"name":"Botiga de persianes"},"shop/wine":{"name":"Botiga de vins","terms":"celler,licoreria,tenda de vins,bodega"},"shop/yes":{"name":"Botiga / Tenda (Tipus sense especificar)"},"telecom/data_center":{"name":"Centre de dades"},"telecom/exchange":{"name":"Central telefònica"},"tourism":{"name":"Element turístic"},"tourism/alpine_hut":{"name":"Refugi de muntanya"},"tourism/apartment":{"name":"Apartaments vacacionals","terms":"habitatge de convidats"},"tourism/aquarium":{"name":"Aquari"},"tourism/artwork":{"name":"Obra d'art"},"tourism/artwork/bust":{"name":"Bust"},"tourism/artwork/graffiti":{"name":"Grafit"},"tourism/artwork/installation":{"name":"Instal·lació artística"},"tourism/artwork/mural":{"name":"Mural"},"tourism/artwork/sculpture":{"name":"Escultura"},"tourism/artwork/statue":{"name":"Estàtua"},"tourism/attraction":{"name":"Atracció turística"},"tourism/camp_pitch":{"name":"Parcel·la de càmping"},"tourism/camp_site":{"name":"Àrea d'acampada"},"tourism/camp_site/backcountry":{"name":"Àrea d'acampada lliure"},"tourism/camp_site/group_only":{"name":"Àrea d'acampada per grups"},"tourism/caravan_site":{"name":"Càmping per a caravanes"},"tourism/chalet":{"name":"Bungalow / Cabanya"},"tourism/gallery":{"name":"Galeria d'art"},"tourism/guest_house":{"name":"Pensió","terms":"casa de convidats,convidats,hostes,invitats,casa rural"},"tourism/hostel":{"name":"Alberg","terms":"hostal"},"tourism/hotel":{"name":"Hotel","terms":"hotel"},"tourism/information":{"name":"Informació","terms":"informació,oficina d'informació,punt d'informació"},"tourism/information/board":{"name":"Tauler informatiu","terms":"tauler d'informació,panell d'informació,panell informatiu"},"tourism/information/board/welcome_sign":{"name":"Senyal de benvinguda"},"tourism/information/guidepost":{"name":"Senyal d'indicacions"},"tourism/information/map":{"name":"Mapa"},"tourism/information/office":{"name":"Centre de visitants"},"tourism/information/terminal":{"name":"Terminal d'informació"},"tourism/motel":{"name":"Motel","terms":"motel"},"tourism/museum":{"name":"Museu","terms":"museu"},"tourism/museum/history":{"name":"Museu d'història"},"tourism/picnic_site":{"name":"Àrea de pícnic"},"tourism/theme_park":{"name":"Parc temàtic"},"tourism/viewpoint":{"name":"Mirador"},"tourism/wilderness_hut":{"name":"Refugi lliure"},"tourism/zoo":{"name":"Zoo","terms":"zoo,zoològic"},"traffic_calming":{"name":"Mesures de reducció de velocitat","terms":"reductor de velocitat,baden,bulto,baiben,pacificador del trànsit"},"traffic_calming/bump":{"name":"Ressalt","terms":"cavalló,resalt,túmul,reductor,tope"},"traffic_calming/chicane":{"name":"Chicane"},"traffic_calming/choker":{"name":"Reductor d'amplada"},"traffic_calming/cushion":{"name":"Coixí Berlinès"},"traffic_calming/dip":{"name":"Rebaix"},"traffic_calming/hump":{"name":"Esquena d'ase","terms":"esquena de ruc,esquena de burro,esquena de bou,esquena de toro,llom d'ase,llom de ruc,llom de burro,llom de bou,llom de toro,ressalt,cavalló,túmul"},"traffic_calming/island":{"name":"Refugi viari"},"traffic_calming/rumble_strip":{"name":"Bandes rugoses","terms":"banda,bandes,rugós,rugoses"},"traffic_calming/table":{"name":"Pas de vianants elevat","terms":"pas de vianants elevat,peató,peatons,pas,vianant,elevat,ressalt,esquena d'ase"},"traffic_calming/yes":{"name":"Reductor de Velocitat (Tipus sense especificar)"},"traffic_sign":{"name":"Senyal de trànsit"},"traffic_sign/city_limit":{"name":"Senyal de límit urbà"},"traffic_sign/maxspeed":{"name":"Senyal de límit de velocitat"},"traffic_sign/variable_message":{"name":"Senyal amb missatge variable"},"type/boundary":{"name":"Límit","terms":"límit administratiu,frontera,vora"},"type/boundary/administrative":{"name":"Límit administratiu","terms":"límit administratiu,frontera"},"type/destination_sign":{"name":"Senyal de destinació"},"type/multipolygon":{"name":"Multipolígon"},"type/restriction":{"name":"Restricció","terms":"restricció"},"type/restriction/no_left_turn":{"name":"Prohibició del gir a l'esquerra","terms":"prohibit girar a l'esquerra"},"type/restriction/no_right_turn":{"name":"Prohibició del gir a la dreta","terms":"prohibit girar a la dreta"},"type/restriction/no_straight_on":{"name":"No continuar recte"},"type/restriction/no_u_turn":{"name":"Prohibit fer un canvi de sentit","terms":"gir en u,canvi de sentit"},"type/restriction/only_left_turn":{"name":"Només Gir a l'Esquerra","terms":"gri a l'esquerra obligatori,només es pot girar a l'esquerra,sols a l'esquerra"},"type/restriction/only_right_turn":{"name":"Obligació de girar a la dreta"},"type/restriction/only_straight_on":{"name":"Obligació de continuar recte"},"type/restriction/only_u_turn":{"name":"Només Gir en U"},"type/route":{"name":"Ruta","terms":"ruta"},"type/route/aerialway":{"name":"Ruta aèria"},"type/route/bicycle":{"name":"Ruta ciclista"},"type/route/bus":{"name":"Ruta d'autobús","terms":"ruta de bus,línia de bus"},"type/route/detour":{"name":"Desviació"},"type/route/ferry":{"name":"Ruta de ferri"},"type/route/foot":{"name":"Ruta de vianants"},"type/route/hiking":{"name":"Ruta senderista","aliases":"Ruta excursionista"},"type/route/horse":{"name":"Ruta equestre","terms":"ruta de marxa a cavall,cavall,ruta"},"type/route/light_rail":{"name":"Ruta de tren lleuger"},"type/route/monorail":{"name":"Ruta de monoraïl"},"type/route/mtb":{"name":"Ruta de bicicleta de muntanya"},"type/route/pipeline":{"name":"Traçat d'una canonada"},"type/route/piste":{"name":"Pista/ruta d'esquí","terms":"pistes d'ski,ruta d'ski"},"type/route/power":{"name":"Traçat d'una línia elèctrica","terms":"energia,electricitat"},"type/route/railway":{"name":"Ruta de ferrocarril","terms":"ruta de ferrocarril,ruta ferroviaria,ruta ferrea"},"type/route/road":{"name":"Ruta de carretera","terms":"carretera,carrer,ruta"},"type/route/subway":{"name":"Ruta de metro","terms":"metro,subterrani,ruta"},"type/route/train":{"name":"Ruta ferroviària","terms":"tren,ferrocarril,ruta"},"type/route/tram":{"name":"Ruta de tramvia","terms":"tram,tranvia,ruta"},"type/route/trolleybus":{"name":"Ruta de troleibús","terms":"ruta,bus,trolebús,troleibús"},"type/route_master":{"name":"Patró de la Ruta","terms":"ruta principal,ruta mare,ruta pare,ruta mestra"},"type/site":{"name":"Lloc","terms":"pusto,lloc,zona,emplaçament,terreny,instal·lació,espai,àrea"},"type/waterway":{"name":"Curs d'aigua","terms":"via pluvial,pluvial,aquàtic,fluvial,aquàtica,via fluvial,cauce,marítim,marina,navegable"},"waterway":{"name":"Tipus de curs d'aigua"},"waterway/boatyard":{"name":"Dic sec","terms":"dipòsit,doc,grada,hangar,local,magatzem,mestrança,nau"},"waterway/canal":{"name":"Canal","terms":"canal,sèquia,séquia"},"waterway/canal/lock":{"name":"Canal de resclosa","terms":"resclosa,esclosa,esclusa,canal"},"waterway/dam":{"name":"Presa","terms":"presa,pantà,embassament"},"waterway/ditch":{"name":"Séquia","terms":"séquia,sèquia,rara,canal,aigua,via aqüífera,torrent,conducció d'aigua,aqüífer,rierol"},"waterway/dock":{"name":"Moll humit / Moll sec","terms":"bot,vaixell,veler,marina seca,marina"},"waterway/drain":{"name":"Torrent","terms":"torrentera,rambla"},"waterway/fish_pass":{"name":"Pas per peixos","terms":"escala d'anguiles,pas d'anguiles,escala de peixos,migració de peixos,pas de peixos,sifó de peixos,escalons de peixos,camí de peixos"},"waterway/fuel":{"name":"Benzinera per a embarcacions","terms":"petroli,gas,gasoil,diesel,bot,vaixell,benzinera marítima"},"waterway/lock_gate":{"name":"resclosa","terms":"canal,esclusa,esclosa,reclosa"},"waterway/milestone":{"name":"Fita de curs d'aigua","terms":"fita,marcador,hito,mojón"},"waterway/river":{"name":"Riu","terms":"afluent,curs d'aigua,estuari,priel,rambla,rierol,riera,torrent,uadi,xaragall"},"waterway/sanitary_dump_station":{"name":"Abacodor d'aigües negres per a embarcacions","terms":"vaixell,bot,barc,sanitari,servici,servei,aseo,aseo químic,estació de descarrega"},"waterway/stream":{"name":"Rierol","terms":"séquia,rierol,fil d'aigua,rajolí,riuet,ramal,reguer,segla,canal,rec,regueró,sequiola,sequió,cavim."},"waterway/stream_intermittent":{"name":"Rierol intermitent","terms":"arroyo,branca,bifurcació,curs d'aigua,inundació"},"waterway/tidal_channel":{"name":"Canal de Marea","terms":"priel,canal de marea,canal,marea,marina,marítim"},"waterway/water_point":{"name":"Aigua Potable per a Vaixells","terms":"punt d'aigua,aixeta d'aigua,font d'aigua"},"waterway/waterfall":{"name":"Cascada","terms":"salt d'aigua,saltant,sallent,fall"},"waterway/weir":{"name":"Assut","terms":"assut,pressa petita,pressa menuda,pressa,aigua"}}}}}
\ No newline at end of file
+{"ca":{"presets":{"categories":{"category-barrier":{"name":"Tipus d'obstacle"},"category-building":{"name":"Tipus d'edificis"},"category-climbing":{"name":"Objectes d'Escalada"},"category-golf":{"name":"Elements de golf"},"category-landuse":{"name":"Ús del terreny"},"category-natural":{"name":"Elements naturals"},"category-path":{"name":"Camins"},"category-playground":{"name":"Equipament de parcs infantils"},"category-rail":{"name":"Raïls"},"category-restriction":{"name":"Tipus de restriccions"},"category-road_major":{"name":"Carreteres principals"},"category-road_minor":{"name":"Carreteres secundàries"},"category-road_service":{"name":"Vies de servei"},"category-route":{"name":"Tipus de ruta"},"category-utility":{"name":"Elements de serveis públics "},"category-water":{"name":"Masses d'aigua"},"category-waterway":{"name":"Cursos d'Aigua"}},"fields":{"access":{"label":"Accés permès","options":{"customers":{"description":"Restringits als clients a la destinació","title":"Clients"},"designated":{"description":"Accés garantit seguint les normes de les senyals o les normes locals específiques.","title":"Específic"},"destination":{"description":"Accés permès només per arribar a un destí","title":"Destinació"},"dismount":{"description":"Accés permès però el genet ha de desmuntar","title":"Baixar del mitjà de transport"},"no":{"description":"No es permet l'accés al públic general","title":"Prohibit"},"permissive":{"description":"Accés permès provisionalment fins que el propietari el prohibeixi.","title":"Permissiu"},"permit":{"description":"Accés permès exclusivament amb una autorització o llicència vàlides","title":"Autoritzat"},"private":{"description":"Accés permès només amb autorització individualitzada del propietari","title":"Privat"},"unknown":{"description":"Les condicions d'accés són desconegudes o poc clares","title":"Desconegut"},"yes":{"description":"Accés permès per llei: dret de pas","title":"Permès"}},"placeholder":"Sense especificar","terms":"permès,privat,públic,restringit","types":{"access":"Tots","bicycle":"Bicicletes","foot":"A peu","horse":"Cavalls","motor_vehicle":"Vehicles a motor"}},"access_aisle":{"label":"Tipus"},"access_simple":{"label":"Restricció d'accés","options":{"customers":"Només per a clients","no":"Cap","permissive":"Permissiu","permit":"Només amb permís","private":"Privat","unknown":"Desconegut","yes":"Públic"},"terms":"permès,privat,públic,restringit"},"activity":{"label":"Activitat","options":{"bicycle":"Ciclisme","hiking":"Senderisme","horse":"Equitació","mtb":"Bicicleta de muntanya","ski":"Esquí"}},"addr/interpolation":{"label":"Tipus","options":{"all":"Tot","alphabetic":"Alfabètic","even":"Parells","odd":"Senars"}},"address":{"label":"Adreça","placeholders":{"block_number":"Número de bloc","block_number!jp":"Nº de bloc","city":"Ciutat ","city!cn":"Ciutat/ Prefectura/ Lliga","city!jp":"Ciutat/Poble/Llogaret/Districte Especial de Tòquio","city!vn":"Ciutat/Poble","conscriptionnumber":"123","country":"País","county":"Comtat","county!jp":"Districte","district":"Districte","district!cn":"Districte/Comtat/Bandera","district!vn":"Arrondissement/Poble/Districte","floor":"Pis","hamlet":"Llogaret","housename":"Nom de la casa","housenumber":"123","housenumber!jp":"Nº Edifici / Nº Lot","neighbourhood":"Barri","neighbourhood!jp":"Machi/Chōme/Aza/Koaza","place":"Lloc","postcode":"Codi postal","province":"Província","province!cn":"Província / Municipi / AR / SAR","province!jp":"Prefectura","quarter":"Quarter","quarter!jp":"Ōaza","state":"Estat","street":"Carrer","subdistrict":"Subdistricte","subdistrict!vn":"Ward/Commune/Townlet","suburb":"Sector","suburb!jp":"Ward (政令市)","town":"Ciutat","unit":"Unitat"},"terms":"ubicació,localització,direcció"},"admin_level":{"label":"Nivell administratiu"},"advertising":{"label":"Tipus"},"aerialway":{"label":"Tipus"},"aerialway/access":{"label":"Accés","options":{"both":"Ambdues","entry":"Entrada","exit":"Sortida"}},"aerialway/bubble":{"label":"Bombolla"},"aerialway/capacity":{"label":"Capacitat (per hora)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Duració (minuts)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Climatitzat"},"aerialway/occupancy":{"label":"Ocupació","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Accés (estival)","options":{"both":"Ambdues","entry":"Entrada","exit":"Sortida"}},"aeroway":{"label":"Tipus"},"agrarian":{"label":"Productes"},"air_conditioning":{"label":"Aire condicionat","terms":"aire condicionat,climatització,condicionament de l'aire,sistema de refredament,refrigeració"},"aircraft/type":{"label":"Tipus","options":{"helicopter":"Helicòpter","military":"Militar"}},"alt_name":{"label":"Nom Alternatiu"},"amenity":{"label":"Tipus"},"animal_boarding":{"label":"Per a animals"},"animal_breeding":{"label":"Per a animals"},"animal_shelter":{"label":"Per a animals"},"archaeological_site":{"label":"Tipus","options":{"baths":"Banys","city":"Ciutat Històrica","crannog":"Crannog","enclosure":"Recinte","fortification":"Fortificació","hut_circle":"Cabana circular","megalith":"Megàlit","necropolis":"Necròpoli","petroglyph":"Petròglif","roman_circus":"Circ romà","roman_villa":"Vila romana","settlement":"Assentament històric","tumulus":"Túmul"}},"architect":{"label":"Arquitecte","terms":"dissenyador,arquitecte,arquitectessa"},"area/highway":{"label":"Tipus"},"armrest":{"label":"Reposabraços","options":{"no":"Sense reposabraços","undefined":"Desconegut","yes":"Un o més reposabraços"}},"artist":{"label":"Artista"},"artwork_type":{"label":"Tipus","options":{"bust":"Bust","graffiti":"Grafit","installation":"Instal·lació artística","mosaic":"Mosaic","mural":"Mural","painting":"Quadre","relief":"Relleu","sculpture":"Esculptura","statue":"Estatua"}},"ascent":{"label":"Desnivell total","terms":"desnivell,guany d'elevació acumulat"},"athletics_pitch":{"label":"Event","options":{"discus_throw":"Llançament de disc","hammer_throw":"Llançament de martell","high_jump":"Salt d'alçada","javelin_throw":"Llançament de javelina","long_jump":"Salt de llargada","pole_vault":"Salt de perxa","shot_put":"Llançament de pes","triple_jump":"Triple salt"}},"athletics_track":{"label":"Event","options":{"javelin_throw":"Llançament de javelina","long_jump":"Salt de llargada","pole_vault":"Salt de perxa","running":"Cursa a peu","sprint":"Cursa de velocitat","steeplechase":"Cursa d'obstacles","triple_jump":"Triple salt"}},"atm":{"label":"Caixer automàtic"},"attraction":{"label":"Tipus","options":{"alpine_coaster":"Muntanya russa Alpina","amusement_ride":"Atracció de fira","animal":"Recinte per a animals","big_wheel":"Roda de fira","bumper_car":"Autos de xoc","bungee_jumping":"Salt elàstic","carousel":"Cavallets","dark_ride":"Tren fantasma","drop_tower":"Torres de caiguda lliure","kiddie_ride":"Passeig infantil","log_flume":"Canal de troncs","maze":"Laberint","pirate_ship":"Passeig en vaixell pirata","river_rafting":"Passeig pels ràpids del riu","roller_coaster":"Muntanya russa","summer_toboggan":"Tobogan d'estiu","swing_carousel":"Gronxadors penjants","train":"Tren turístic","water_slide":"Tobogan d'aigua"}},"automated":{"label":"Automàtic"},"baby_feeding":{"label":"Àrea de lactància","options":{"no":"Cap","room":"Habitació dedicada","yes":"Espai assenyalat"},"terms":"alimentació del bebè,lactància materna,lactància,mares,bebè"},"baby_seat":{"label":"Seient de bebè"},"backcountry":{"label":"Travessia","terms":"travessia,fora de pista"},"backrest":{"label":"Respatler"},"bar":{"label":"Bar","terms":"bar,barra"},"barrier":{"label":"Tipus","options":{"block":"Bloc gran","bollard":"Piló","cattle_grid":"Reixat ","chain":"Cadena","city_wall":"Muralla","cycle_barrier":"Barrera per a ciclistes","ditch":"Cuneta","entrance":"Entrada","fence":"Tanca","gate":"Porta","guard_rail":"Guarda rail","hedge":"Tanca de bardissa","height_restrictor":"Restrictor de gàlib","jersey_barrier":"Barrera Jersey","kerb":"Vorada","kissing_gate":"Porta giratòria","lift_gate":"Porta barrera","retaining_wall":"Mur de contenció","stile":"Escaló","swing_gate":"Porta batent","toll_booth":"Peatge","turnstile":"Torniquet","wall":"Mur"}},"barrier_planter":{"label":"Barrera","options":{"planter":"Sí","undefined":"No"}},"basin":{"label":"Tipus","options":{"detention":"Detenció","evaporation":"Evaporació","infiltration":"Infiltració","retention":"Retenció"}},"bath/open_air":{"label":"Aire Lliure"},"bath/type":{"label":"Especialitat","options":{"hammam":"Bany turc","hot_spring":"Font Càlida","lake":"Llac","onsen":"Onsen","thermal":"Bany Termal"}},"beauty":{"label":"Serveis","options":{"cosmetics":"Cosmètica","hair_removal":"Eliminació del borrissol","nails":"Manicura / Pedicura","skin_care":"Cura de la pell","spa":"Balneari de dia","tanning":"Saló de bronzejat","waxing":"Depilació amb cera"}},"bench":{"label":"Banc per a asseure's","terms":"banc per a vianants,banc peatonal,banc per a asseure's,banc de carrer"},"bicycle_parking":{"label":"Tipus","options":{"building":"A un edifici","handlebar_holder":"Suport de manillar","lockers":"Casillers individuals","shed":"Cobert tancat","stands":"Estand (aguanta el quadre de la bici)","wall_loops":"Aparcabicis (aguanta només la roda)"}},"bicycle_road":{"label":"Ciclocarrer","options":{"undefined":"No","yes":"Sí"},"terms":"bicicarril,carril bici,via ciclable,carrer per a bicicletes,carril compartit"},"bike_ride":{"label":"Aparcament d'enllaç per a bicicletes","terms":"aparcament disuasori de bicicletes,aparca i monta,estaciona i monta"},"bin":{"label":"Paperera","terms":"paperera"},"blind":{"label":"Accés per a persones cegues","options":{"limited":"Limitat","no":"No","yes":"Sí"},"terms":"discapacitat visual,cec"},"blood_components":{"label":"Components de la sang","options":{"plasma":"plasma","platelets":"plaquetes","stemcells":"extrets de cèl·lules mare","whole":"sang total"}},"board_type":{"label":"Tipus","options":{"art":"Art","astronomy":"Astronomia","geology":"Geologia","history":"Història","nature":"Natura","notice":"Tauló d'Anuncis","plants":"Plantes","welcome_sign":"Cartell de Benvinguda","wildlife":"Vida Salvatge"}},"bollard":{"label":"Tipus","options":{"fixed":"Piló Fix","flexible":"Piló Flexible","foldable":"Piló Plegable","removable":"Piló Desmuntable","rising":"Piló Retràctil"}},"books":{"label":"Tipus de llibres","terms":"gènere literari,categoria de llibres"},"booth":{"label":"Cabina","terms":"dues,ambdues,les dos"},"bottle":{"label":"Emplenat de botelles"},"boules":{"label":"Tipus"},"boundary":{"label":"Tipus"},"branch_brand":{"label":"Branca","terms":"branca,rama,filial,subsidiari"},"brand":{"label":"Marca","terms":"marca"},"bridge":{"label":"Tipus","placeholder":"Predeterminat"},"bridge/ref":{"label":"Número de pont","terms":"número de pont,identificador de pont,codi de pont,referència de pont"},"bridge/support":{"label":"Tipus"},"bridge_combo":{"label":"Tipus","options":{"aqueduct":"Aqüeducte","cantilever":"Pont en mènsula","covered":"Pont cobert","movable":"Pont mòbil","viaduct":"Viaducte"}},"building":{"label":"Edifici","options":{"allotment_house":"Casa de l'hort","apartments":"Edifici d'apartaments","barn":"Graner","boathouse":"Caseta per a vaixells","bungalow":"Bungalou","bunker":"Búnquer","cabin":"Cabina","carport":"Aixopluc","cathedral":"Catedral","chapel":"Capella","church":"Església","civic":"Edifici cívic","college":"Edifici d'una escola professional","commercial":"Edifici comercial","construction":"Edifici en construcció","cowshed":"Estable de vaques","detached":"Casa aïllada","dormitory":"Dormitoris","farm":"Casa a una granja","farm_auxiliary":"Edifici d'una granja","fire_station":"Edifici d'un parc de bombers","garage":"Garatge","garages":"Garatges","ger":"Iurta","grandstand":"Tribuna","greenhouse":"Hivernacle","hangar":"Hangar","hospital":"Edifici hospitalari","hotel":"Edifici d'un hotel","house":"Casa","houseboat":"Casa flotant","hut":"Cabana","industrial":"Edifici industrial","kindergarten":"Edifici de preescolar / llar d'infants","manufacture":"Edifici per a producció industrial","mosque":"Mesquita","office":"Edifci d'oficines","outbuilding":"Construcció annexa","pavilion":"Pavelló","public":"Edifici públic","residential":"Edifici residencial","retail":"Edifici comercial","roof":"Teulada","ruins":"Edifici en ruines","school":"Edifici escolar","semidetached_house":"Casa adossada","service":"Edifici de servei","shed":"Cobert","stable":"Estable","stadium":"Estadi","static_caravan":"Autocaravana","sty":"Porcellera","synagogue":"Sinagoga","temple":"Temple","terrace":"Cases en filera","train_station":"Edifici d'estació de tren","transportation":"Edifici per a transports","university":"Edifici universitari","warehouse":"Magatzem"},"terms":"edifici,construcció,casa,estructura"},"building/colour":{"label":"Color de la façana","terms":"façana,color,edifici,color de l'edifici"},"building/flats":{"label":"Unitats","placeholder":"2, 4, 6, 8..."},"building/levels":{"label":"Nivells","placeholder":"2, 4, 6...","terms":"nivells,pisos"},"building/levels/underground":{"label":"Subterrani","placeholder":"2, 4, 6...","terms":"nivells,pisos,subterranis,soterrani,subsòl"},"building/material":{"label":"Material","terms":"material"},"building/part":{"label":"Part d'un edifici"},"building/prefabricated":{"label":"Prefabricat","terms":"prefabricat,modular,ja fet"},"bunker_type":{"label":"Tipus"},"button_operated":{"label":"Botó de trucada"},"cables":{"label":"Cables","placeholder":"1, 2, 3..."},"cai_scale-IT":{"label":"Dificultat de la ruta senderista (Club Alpí Italià)","options":{"E":"E: Per a Muntanyistes","EAI":"EAI: Muntanyisme en condiciones de neu","EE":"EE: Per a muntanyistes experimentats","EEA":"EEA: Per a muntanistes experimentats amb equipament","T":"T: Turístic"},"placeholder":"T, E, EE, …","terms":"senderisme,excursionisme,difícil,dificultat"},"camera/direction":{"label":"Direcció (graus en sentit horari)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"Muntatge de càmera"},"camera/type":{"label":"Tipus de càmera","options":{"dome":"Cúpula","fixed":"Fixa","panning":"Panoràmica"}},"camp_site":{"label":"Tipus","options":{"serviced":{"description":"Disposa de lavabos, aigua, dutxes i electricitat"},"standard":{"description":"Disposa de lavabos i aigua dins o prop"}}},"capacity":{"label":"Capacitat","placeholder":"50, 100, 200...","terms":"capacitat"},"capacity/caravans":{"label":"Capacitat (Autocaravana / Remolc d'acampada)","placeholder":"10, 20, 50..."},"capacity/disabled_parking":{"label":"Places accessibles","placeholder":"1, 2, 3..."},"capacity/persons":{"label":"Capacitat (Persones)","placeholder":"50, 100, 200..."},"capacity/tents":{"label":"Capacitat (Tendes de campanya)","placeholder":"10, 20, 50..."},"capacity_parking":{"label":"Places totals","placeholder":"10, 20, 30..."},"capacity_volume":{"label":"Capacitat (metres cúbics)","placeholder":"50, 100, 200..."},"caravans":{"label":"Autocaravana / Remolc d'acampada","terms":"furgoneta camper,autocaravana,furgo camper,caravana camper,remolc de càmping,remolc camper,caravana de càmping,caravana remolcable"},"cash_in":{"label":"Dipòsit"},"castle_type":{"label":"Tipus","options":{"castrum":"Fort Romà","defensive":"Castell defensiu","fortress":"Fortalessa","hillfort":"Castre","kremlin":"Kremlin","manor":"Casa Senyorial","palace":"Palau","shiro":"Castell japonés","stately":"Casa Senyorial (Gran Bretanya)"}},"changing_table":{"label":"Canviador de nadons"},"charge_fee":{"label":"Quantitat de la tarifa","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"cuota,entrada,pago,preu,honoraris,taxa"},"charge_toll":{"label":"Tarifa del peatge","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"peatge"},"check_date":{"label":"Data d'última revisió ","placeholder":"AAAA-MM-DD","terms":"reenquesta,enquesta,visita"},"circumference":{"label":"Diàmetre a l'alçada de l'home","placeholder":"1 m, 20 cm, 30 \"…","terms":"diamatre a l'altura de l'home,dah"},"climbing/length":{"label":"Llargada (metres)","terms":"longitud,metres,distància,dimensió,grandària,llarg"},"climbing/trad":{"label":"Escalada tradicional"},"clothes":{"label":"Roba","options":{"babies":"Roba per a nadons","children":"Roba per a nens","denim":"Teixit texà","fur":"Roba de pelatge","hats":"Barrets","maternity":"Roba de maternitat","men":"Roba d'home","motorcycle":"Roba per a montar en moto","oversize":"Roba de talles grans","socks":"Calcetins","sports":"Roba d'esport","suits":"Vestits","swimwear":"Roba de bany","traditional":"Roba Tradicional / Vestuari Popular","underwear":"Llenceria","wedding":"Roba de boda","women":"Roba de dona","workwear":"Roba de feina"},"terms":"roba"},"club":{"label":"Tipus"},"collection_times":{"label":"Horari de recollida","terms":"horaris de recollida,horaris de col·lecció,horaris d'agafada,horaris de ramassada"},"collector":{"label":"Elements","options":{"coins":"Monedes","comics":"Còmics","stamps":"Segells"}},"colour":{"label":"Color","terms":"color"},"comment":{"label":"Comentari dels canvis","placeholder":"Breu descripció de les teves contribucions (necessari)"},"communication_multi":{"label":"Tipus de comunicació","terms":"mitjans,communicació,telèfon,correu,misstge,trucada,trucà,cridada,cridà,xat,chat,videotrucada,videotrucà,videocridada,videocridà,televisió,radio,fax,morse,telepatia,xifrat,reunions,braille,signes,sons,sorolls,carta,llenguatges,idiomes"},"community_centre":{"label":"Tipus","options":{"cultural_centre":"Centre cultural","family_centre":"Centre familiar","parish_hall":"Ajuntament pedani","village_hall":"Ajuntament","youth_centre":"Centre Juvenil"}},"connectivity":{"label":"Connectivitat"},"construction":{"label":"Tipus"},"consulate":{"label":"Tipus","options":{"consular_agency":"Agència de Serveis Consulars","consular_office":"Oficina de Serveis Consulars","consulate_general":"Consulat General","honorary_consul":"Consul honorari","residence":"Residència oficial del Consul","yes":"Consulat"}},"consulting":{"label":"Expertesa"},"contact/facebook":{"label":"Nom d'usuari de Facebook o URL","placeholder":"https://www.facebook.com/ComerçLocal","terms":"nom d'usuari de facebook,adreça d'usuari de facebook,identificador d'usuari de facebook,url de perfil de facebook,enllaç de perfil de facebook"},"contact/webcam":{"label":"URL de la webcam","placeholder":"http://example.com/"},"content":{"label":"Contingut"},"conveying":{"label":"Direcció del moviment","options":{"backward":"Enrere","forward":"Endavant","reversible":"Reversible"}},"conveying_escalator":{"label":"Escala mecànica "},"country":{"label":"País"},"country_flag":{"label":"Bandera del país"},"couplings":{"label":"Acoblaments","placeholder":"1, 2, 3..."},"covered":{"label":"Cobert","terms":"cobert,sostre,resguardat"},"covered_no":{"options":{"no":"No","undefined":"Suposat que és No","yes":"Sí"}},"craft":{"label":"Tipus","options":{"agricultural_engines":"Mecànic de motors agrícoles","basket_maker":"Cisteller","beekeeper":"Apicultor","blacksmith":"Ferrer","boatbuilder":"Constructor d'embarcacions","bookbinder":"Enquadernador","brewery":"Cerveseria","builder":"Constructor","carpenter":"Fuster","carpet_layer":"Moquetista","caterer":"Servei de càtering","chimney_sweeper":"Escura-xemeneies","cleaning":"Servei de neteja","clockmaker":"Rellotger","confectionery":"Artesà de llaminadures","distillery":"Destil·leria","dressmaker":"Sastreria","electrician":"Electricista","electronics_repair":"Botiga de reparacions electròniques ","floorer":"Instal·lador de sòls","gardener":"Jardiner","glaziery":"Vidrieria","grinding_mill":"Molí","handicraft":"Botiga d'artesà","hvac":"Empresa d'instal·lacions climàtiques","insulation":"Aïllador","jeweller":"Joier","joiner":"Ebenista","key_cutter":"Fabricant de claus","locksmith":"Copisteria de claus","metal_construction":"Treballador del metall","oil_mill":"Almàssera","painter":"Pintor","parquet_layer":"Instal·lador de parquet","photographer":"Fotògraf","photographic_laboratory":"Laboratori fotogràfic","plasterer":"Enguixador","plumber":"Lampista","pottery":"Terrissaire\nFabricant de ceràmica","rigger":"Armador d'embarcacions","roofer":"Constructor de teulades","saddler":"Cuirasser","sailmaker":"Fabricant de veles","sawmill":"Serradora","scaffolder":"Muntador de bastides","sculptor":"Escultor","shoemaker":"Sabater","signmaker":"Fabricant de senyals","stonemason":"Manobra","tailor":"Sastreria","tiler":"Enrajolador","tinsmith":"Llauner","upholsterer":"Creador de mobles","watchmaker":"Fabricant de rellotges","window_construction":"Fabricant de finestres","winery":"Celler"}},"crane/type":{"label":"Tipus de grua","options":{"floor-mounted_crane":"Grua muntada al pis","gantry_crane":"Grua pòrtic","portal_crane":"Pont Grua","tower_crane":"Grua torre","travel_lift":"Ascensor de viatge"}},"crop":{"label":"Cultius","options":{"asparagus":"Espàrrecs","barley":"Ordi","beet":"Remolatxa","cassava":"Moniato","coffee":"Cafè","cotton":"Cotó","cranberries":"Nabiu de grua","fast_growing_wood":"Bosc de rotació curta","flowers":"Flors","grape":"Raïm","grass":"Herba","hop":"Llúpol","lavender":"Espígol","maize":"Dacsa","potato":"Patates / Creïlles","rape":"Colza","rice":"Arròs","soy":"Soia","strawberry":"Freses","sugar_beet":"Remolatxa sucrera","sugarcane":"Canyamel","sunflower":"Gira-sol","tea":"Te","tobacco":"Tabac","vegetable":"Verdures","wheat":"Blat"}},"crossing":{"label":"Tipus","options":{"traffic_signals":"Pas de vianants controlat per semàfors","uncontrolled":"Només senyalització horitzontal","unmarked":"Sense senyalització horitzontal o semàfors"}},"crossing/barrier":{"label":"Barrera de braç","options":{"double_half":"Dobles Meitats","full":"Senser","half":"Mitja","no":"No","yes":"Sí"}},"crossing/bell":{"label":"Timbre"},"crossing/island":{"label":"Illa Refugi"},"crossing/light":{"label":"Llums"},"crossing/markings":{"label":"Senyalització del pas de vianants","options":{"dashes":"Línies transversals discontínues","dots":"Línies transversals puntejades","ladder":"Escala amb barres logitudinals","ladder:paired":"Escala amb barres longitudinals emparellades","ladder:skewed":"Escala amb barres diagonals","lines":"Línies Transversals","lines:paired":"Dobles Linies Transversals","no":"Sense cap senyalització","pictograms":"Pictogrames pintats","surface":"Només tractament de superfície","yes":"Senyalitzat d'alguna manera","zebra":"Barres longitudinals (zebra)","zebra:bicolour":"Barres longitudinals alternant colors (zebra vari color)","zebra:double":"Barres longitudinals dobles","zebra:paired":"Barres longitudinals emparellades"},"terms":"pas de vianants,creuament,pas de peatons,pas de zebra,marques horitzontals"},"crossing_raised":{"label":"Elevat","options":{"table":"Sí","undefined":"No"}},"cuisine":{"label":"Cuines","options":{"african":"Africana","american":"Americana","arab":"Àrab","argentinian":"Argentina","asian":"Asiàtica","balkan":"Balcànica","barbecue":"Barbacoa","bavarian":"Bavaresa","brazilian":"Brasilera","brunch":"Esmorzar","bubble_tea":"Te de bombolles","burger":"Hamburgueseria","cake":"Pastís","caribbean":"Caribenca","chicken":"Pollastre","chinese":"Xinesa","coffee_shop":"Cafeteria","crepe":"Crepe","curry":"Curri","dessert":"Postres","diner":"Diner americà","donut":"Donut","european":"Europea","filipino":"Filipí","fish":"Peix","french":"Francesa","frozen_yogurt":"Iogurt gelat","georgian":"Georgià","german":"Alemanya","greek":"Grega","hawaiian":"Hawaiana","hot_dog":"frankfurt","ice_cream":"Gelats","indian":"India","indonesian":"Indonèsia","italian":"Italiana","japanese":"Japonesa","juice":"Suc","kebab":"Kebab","korean":"Coreana","lebanese":"Libanesa","malaysian":"Malàisia","mediterranean":"Mediterrània","mexican":"Mexicana","middle_eastern":"Orient mitjà","moroccan":"Marroquí","noodle":"Fideus","oriental":"Oriental","pancake":"Crep americana","pasta":"Pasta","pastry":"Rebosteria","persian":"Persa","peruvian":"Peruà","pizza":"Pizza","polish":"Polonesa","portuguese":"Portuguesa","ramen":"Ramen","regional":"Regional","russian":"Russa","salad":"Amanida","sandwich":"Entrepans","sausage":"Salsitxes","seafood":"Marisc","shawarma":"Shawarma","soba":"Soba","soup":"Sopa","spanish":"Espanyola","steak_house":"rostidor / graella","sushi":"Sushi","taiwanese":"Taiwanés","tapas":"Tapes","tea":"Te","tex-mex":"Tex-Mex","thai":"Thai","turkish":"Turca","udon":"Udon","ukrainian":"Ucraïnès","vietnamese":"Vietnamita","western":"Occidental","wings":"Aletes de pollastre"},"terms":"cuina,tipus de menjar,gastronomia"},"currency_multi":{"label":"Tipus de divisa","terms":"tipus de moneda,moneda,divisa,monedes,divises"},"cutting":{"label":"Tipus","placeholder":"Predeterminat"},"cycle_barrier":{"label":"Tipus","options":{"double":"Doble"}},"cycle_barrier/installation":{"options":{"fixed":"Fixa"}},"cycle_network":{"label":"Xarxa"},"cycleway":{"label":"Carrils bici","options":{"lane":{"description":"Un barril bici separat de la circulació per una línia pintada","title":"Carril Bicibici estàndard"},"no":{"description":"Sense carril per a bicis","title":"Cap"},"separate":{"description":"Indica que una via per a bicicletes ha estat mapejada com una geometria separada","title":"Carrilbici mapejat separadament"},"share_busway":{"description":"Un carril bici compartit amb un carril bus","title":"Ciclovia compartida amb el carril bus"},"shared_lane":{"description":"Carril bici sense cap separació de la circulació","title":"Ciclovia compartida"},"track":{"description":"Un carril bici separat de la circulació per una barrera física","title":"Camí ciclable"}},"placeholder":"Carril, Pista, Contra direcció","terms":"carril bici,via ciclista","types":{"cycleway:left":"Costat esquerre","cycleway:right":"Costat dret"}},"dance/style":{"label":"Estils de ball"},"dance/teaching":{"label":"Ofereix classes de dansa"},"date":{"label":"Data"},"defibrillator/location":{"label":"Descripció de la ubicació"},"delivery":{"label":"Entrega","terms":"entrega,servei a domicili"},"denomination":{"label":"Denominació","terms":"denominació,religió"},"denotation":{"label":"Denotació","terms":"denotació"},"departures_board":{"label":"Tauló de Sortides/Arribades","options":{"no":"Cap","realtime":"Temps real","timetable":"Horari","yes":"Sí"}},"deposit/trolley":{"label":"Dipòsit"},"depot":{"label":"Tipus"},"depth":{"label":"Profunditat (Metres)"},"descent":{"label":"Descens total","terms":"descens,elevació acumalativa"},"description":{"label":"Descripció","terms":"descripció,resumen"},"design":{"label":"Disseny"},"destination":{"label":"Destinacions"},"destination/ref":{"label":"Codi de la carretera de destinació"},"destination/symbol":{"label":"Símbols de destinació"},"destination_waterway":{"label":"Destinació"},"devices":{"label":"Dispositius","placeholder":"1, 2, 3..."},"diameter":{"label":"Diàmetre","placeholder":"5 mm, 10 cm, 15 in…","terms":"diàmetre,circumferència"},"diameter_crown":{"label":"Diametre de la corona","placeholder":"4 m, 9', …","terms":"corona,tronc,diametre del tronc"},"diet_multi":{"label":"Tipus de dieta","options":{"gluten_free":"Sense gluten","halal":"Halal","kosher":"Kosher","lactose_free":"Sense lactosa","pescetarian":"Peixetarià","vegan":"Vegà","vegetarian":"Vegetarià"},"terms":"sense gluten,halal,kosher,koser,sense lactosa,pescetarià,cru,vegà,vegetariana,vegetarià"},"diplomatic":{"label":"Tipus","options":{"consulate":"Consulat","embassy":"Embaixada"}},"diplomatic/services":{"label":"Serveis"},"direction":{"label":"Direcció (graus en sentit horari)","placeholder":"45, 90, 180, 270","terms":"direcció,sentit,marxa,graus,horari,radia,nord,sud,est,oest"},"direction_cardinal-US-CA-NZ":{"label":"Direcció","options":{"east":"Cap a l'est","north":"En direcció nord ","south":"En direcció sud","west":"Cap a l'oest"},"terms":"direcció,rumb,marxa.nord,cardinal,punt cardinal,sud,est,oest"},"direction_clock":{"label":"Direcció","options":{"anticlockwise":"en sentit contrari al de les agulles del rellotge","clockwise":"en sentit de les agulles del rellotge"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"label":"Direcció afectada","options":{"backward":"Enrere","both":"Ambdós / Tots","forward":"Endavant"},"terms":"direcció,rumb"},"dispensing":{"label":"Dispensació de fàrmacs"},"display":{"label":"Pantalla","options":{"analog":"Analògica","digital":"Digital","sundial":"Rellotge de sol","unorthodox":"No ortodox"}},"distance":{"label":"Distància","terms":"longitud,kilometratge"},"disused/amenity":{"label":"Tipus"},"disused/railway":{"label":"Tipus"},"disused/shop":{"label":"Tipus"},"dock":{"label":"Tipus","options":{"drydock":"Dic Sec","floating":"Dic Sec Flotant"}},"dock/height":{"label":"Altura del moll (metres)"},"dock/width":{"label":"Amplada del moll (metres)","terms":"longitud,metres,distància,dimensió,grandària,llarg"},"dog":{"label":"Gossos","options":{"leashed":"Només lligats","no":"No permès","yes":"Permès"},"terms":"gossos,gos,ca,cans"},"door":{"label":"Porta"},"door/height":{"label":"Altura de la porta (metres)"},"door/width":{"label":"Amplada de la porta (metres)"},"door_type":{"label":"Tipus"},"drink_multi":{"label":"Begudes"},"drinking_water":{"label":"Potable","terms":"potable,apte per al consum"},"drinking_water_available":{"label":"Aigua Potable Disponible","terms":"aigua potable,apta per al consum,aigua bebible"},"drive_through":{"label":"Servei d'atenció al cotxe","terms":"ventanilla,finestreta,ventanilla d'autoservei,ventanilla d'autoservici,finestreta d'autoservei,finestreta d'autoservici,finestra d'autoservei,finesta d'autoservici,autorestaurant"},"duration":{"label":"Durada","placeholder":"00:00","terms":"durada,duració"},"ele":{"label":"Elevació (Metres)","terms":"elevació,altitud,metres,ascens"},"electrified":{"label":"Electrificació","options":{"contact_line":"Catenària","no":"No","rail":"3r rail","yes":"Sí (no especificat)"},"placeholder":"Catenària, 3r rail...","terms":"línea de contacte,electrificat,electrificada,tercer rail"},"email":{"label":"Adreça elctrònica","placeholder":"exemple@exemple.com","terms":"adreça electrònica,correu electrònic,mail,correu"},"embankment":{"label":"Tipus","placeholder":"Predeterminat"},"embassy":{"label":"Tipus","options":{"branch_embassy":"Branca d'una embaixada","delegation":"Delegació","high_commission":"Alta Comissió","interests_section":"Oficina d'interessos","mission":"Missió diplomàtica","nunciature":"Missió diplomàtica de la Santa Seu","residence":"Residència oficial d'un ambaixador","yes":"Ambaixada"}},"emergency":{"label":"Material per a emergències"},"emergency_combo":{"label":"Tipus"},"emergency_ward_entrance":{"label":"Tipus"},"enforcement":{"label":"Tipus"},"entrance":{"label":"Tipus","options":{"emergency":"Eixida d'Emergència","entrance":"Només Entrada","exit":"Només Eixida","garage":"Porta de garatge","home":"Residència Privada","main":"Principal","secondary":"Secundària","service":"Servei","staircase":"Escala","yes":"Inespecificat"},"terms":"tipo,tipus"},"except":{"label":"Excepcions"},"expected_rcn_route_relations":{"label":"Nodes adjacents de ciclisme"},"expected_rwn_route_relations":{"label":"Nodes adjacents de senderisme"},"expressway-US":{"label":"Autovia","terms":"autovia,via ràpida,semiautopista"},"faces":{"label":"Cares"},"fax":{"label":"Fax","placeholder":"+34 93 123 4567","terms":"fax"},"fee":{"label":"De pagament","terms":"quota,fiança,pagament"},"fence_type":{"label":"Tipus"},"fire_hydrant/diameter":{"label":"Diàmetre (mm, polzades o lletres)","terms":"diametre,circumferència"},"fire_hydrant/position":{"label":"Posició","options":{"green":"Herba","lane":"Carril de la calçada","parking_lot":"Lloc d'aparcament","sidewalk":"Vorera"}},"fire_hydrant/pressure":{"label":"Pressió (bar)","terms":"pressió,presió,força,bars,pascals,atmósfera,psi,mmhg,mercuri,mil·limetre de mercuri"},"fire_hydrant/type":{"label":"Forma","options":{"pillar":"Pilona/visible","pipe":"Tub Tapat","underground":"Subterrani","wall":"Mur"}},"fire_mains":{"label":"Tipus de xarxa","options":{"dry":"Xarxa dedicada (normalment seca)","no":"No","yes":"Tipus desconegut"}},"fire_service_inlet":{"label":"Forma","options":{"pillar":"Pilar","pipe":"Tub Tapat","underground":"Subterrani","wall":"Paret"}},"fire_sprinkler":{"label":"Entrada dels aspersor contra incendis","options":{"dry":"Dedicated Network (Normally Dry)","no":"No","yes":"Tipus desconegut"}},"fireplace":{"label":"Llar de foc"},"fishing":{"label":"Pesca","terms":"pesca,pescar"},"fitness_station":{"label":"Tipus d'equipament"},"fixme":{"label":"Arregla'm","terms":"sol·licitud d'ajuda,petició d'ajuda,arregla'm"},"flag/name":{"label":"Nom de la Bandera"},"flag/type":{"label":"Tipus de bandera"},"flag/wikidata":{"label":"Wikidata de la Bandera"},"flashing_lights":{"label":"Llums intermitents","options":{"always":{"description":"Les llums estan sempre parpellejant","title":"Sempre parpellejant"},"button":{"description":"Les llums s'activen polsant un botó","title":"Activat per un botó"},"button;sensor":{"description":"Llums activades per un sensor o prement un botó","title":"Activat per un botó o sensor"},"no":"No","sensor":{"description":"Les llums s'activen per un sensor","title":"Activat per un sensor"},"yes":"Sí"},"terms":"llums intermitents,llums parpallants,llums flaixos,llums flaixants"},"floating":{"label":"Flotant"},"flood_prone":{"label":"Zona inundable","terms":"propens a inundacions,aigua"},"footrest":{"label":"Reposapeus"},"ford":{"label":"Tipus","placeholder":"Predeterminat"},"fortification_type":{"label":"Tipus de fortificació"},"fountain":{"label":"Tipus"},"frequency":{"label":"Freqüència de funcionament","terms":"freqüència d'operació,alta freqüència,baixa freqüència,mitja freqüència,hertzs,periode,infrarroig,radi,microones,llum visible,ones,ultravioleta,rajos x,audible,subsònic,sonar,radar,gamma,raig x"},"from":{"label":"Des de"},"fuel":{"label":"Carburant"},"fuel/fuel_multi":{"label":"Tipus de combustible","options":{"GTL_diesel":"Gasoil GTL (Gas a Líquid)","HGV_diesel":"Gasoil per a camions","LH2":"Hidrogen Líquid","adblue":"AdBlue / AUS 32","adblue:canister":"AdBlue / AUS 32 (venut en envasos)","biodiesel":"Biodièsel","cng":"Gas Natural Comprimit (GNC)","diesel":"Gasoil","e10":"Gasolina E10","e5":"Gasolina E5","e85":"Gasolina E85","h70":"Hidrogen Gaseos (700 bar)","lng":"Gas natural liquat (LNG)","lpg":"Gas liquat del petroli (LPG)","octane_100":"Gasolina 100 Octans","octane_80":"Gasolina 80 Octans","octane_85":"Gasolina 85 Octans","octane_87":"Gasolina 87 Octans","octane_88":"Gasolina 88 Octans","octane_89":"Gasolina 89 Octans","octane_90":"Gasolina 90 Octans","octane_91":"Gasolina 91 Octans","octane_92":"Gasolina 92 Octans","octane_93":"Gasolina 93 Octans","octane_95":"Gasolina 95 Octans","octane_97":"Gasolina 97 Octans","octane_98":"Gasolina 98 Octans","propane":"Propà"}},"gambling":{"label":"Jocs"},"garden/type":{"label":"Tipus de jardí"},"gauge":{"label":"Ample"},"gender":{"label":"Gènere","options":{"female":"Femení","male":"Masculí","unisex":"Unisex"},"placeholder":"Desconegut","terms":"gènere,sexe,sexes,gèneres"},"generator/method":{"label":"Mètode","options":{"anaerobic_digestion":"Digestió Anaeròbica","barrage":"Barrera de marees","combustion":"Combustió","fission":"Fissió","fusion":"Fusió","gasification":"Gasificació","photovoltaic":"Fotovoltaica","run-of-the-river":"Central hidroelèctrica de passada","stream":"Corrent de la marea","thermal":"Termosolar","water-pumped-storage":"Acumulació per bombeig","water-storage":"Embassament","wind_turbine":"Aerogenerador"}},"generator/output/electricity":{"label":"Sortida de potència","placeholder":"50 MW, 100 MW, 200 MW..."},"generator/source":{"label":"Font","options":{"battery":"Bateria","biofuel":"Biocomubistible","biogas":"Biogas","biomass":"Biomassa","coal":"Carbó","diesel":"Gasoil","gas":"Gas Natural","gasoline":"Gasolina","geothermal":"Energia Geotèrmica","hydro":"Energia hídrica","nuclear":"Energia Nuclear","oil":"Oli","solar":"Radiació Solar","tidal":"Energia mareomotriu","waste":"Rebuig / Basura","wave":"Energia de les onades","wind":"Vent"}},"generator/type":{"label":"Tipus"},"genus":{"label":"Gènere","placeholder":"Acer, Platanus, Quercus …","terms":"gènere,génere"},"geyser/height":{"label":"Alçada de l'erupció"},"gnis/feature_id-US":{"label":"ID de l'element GNIS","terms":"base de dades oficial de toponímia dels estats units,toponímia dels estats units"},"government":{"label":"Tipus"},"grades":{"label":"Nivells de cursos"},"grape_variety":{"label":"Varietats de raïm"},"group_only":{"label":"Només grups","terms":"només grups"},"guest_house":{"label":"Tipus"},"handicap":{"label":"Handicap","placeholder":"1-18"},"handrail":{"label":"Barana","terms":"barana,barandilla,passa mans"},"handrest":{"label":"Reposamans"},"hashtags":{"label":"Etiquetes","placeholder":"#exemple"},"hazard_boundary":{"label":"Perill","options":{"archery_range":"Fletxes","avalanche":"Allau","biohazard":"Perill biològic","contamination":"Contaminació química","electricity":"Descàrrega elèctrica","hole":"Forat","minefield":"Camp de mines","nuclear":"Nuclear / Radioactiva","quicksand":"Sorramoll","shooting_range":"Arma de foc"}},"healthcare":{"label":"Tipus","options":{"alternative":"Medicina Alternativa","audiologist":"Adiòleg","birthing_centre":"Casa de maternitat","blood_bank":"Banc de Sang","blood_donation":"Centre de donació de sang","clinic":"Clínica","dentist":"Dentista","dialysis":"Centre de diàlisi","doctor":"Consultori","hospice":"Hospici","hospital":"Hospital","laboratory":"Laboratori Mèdic","midwife":"Llevador","nurse":"Infermera","occupational_therapist":"Terapeuta ocupacional","optometrist":"Optometrista","pharmacy":"Farmàcia","physiotherapist":"Fisioteràpia","podiatrist":"Podòleg","psychotherapist":"Psicoterapeuta","rehabilitation":"Instal·lació de rehabilitació","sample_collection":"Instal·lació de col·leccions de mostres","speech_therapist":"Logopeda","vaccination_centre":"Centre de vacunació"}},"healthcare/speciality":{"label":"Especialitats","options":{"abortion":"Avortament","acupuncture":"Acupuntura","allergology":"Al·lergologia","anaesthetics":"Anestesiologia","angiology":"Angiologia","anthroposophical":"Medicina Antroposòfica","applied_kinesiology":"Cinesiologia aplicada","aromatherapy":"Aromateràpia","ayurveda":"Aiurveda","behavior":"Teràpia de la conducta","biochemistry":"Bioquímica","biology":"Biologia","blood_check":"Anàlisi de sang","body":"Psicoteràpia Corporal","cardiology":"Cardiologia","cardiothoracic_surgery":"Cirurgia Toràcica ","child_psychiatry":"Psiquiatria Infantil i Juvenil","chiropractic":"Quiropràctic","clinical_pathology":"Patologia clínica","community":"Salut Pública i Comunitària","dental_oral_maxillo_facial_surgery":"Cirugia Dental, Oral i Maxilofacial","depth":"Psicologia Profunda","dermatology":"Dermatologia","dermatovenereology":"Dermatovenereologia","diabetology":"Diabetologia","diagnostic_radiology":"Diagnòstic Radiològic","emergency":"Emergències\nUrgències","endocrinology":"Endocrinologia","fertility":"Fertilitat","gastroenterology":"Gastroenterologia","general":"Medicina general","geriatrics":"Medicina Geriàtrica","gynaecology":"Obestricia i Ginecologia","haematology":"Hematologia","hepatology":"Hepatologia","herbalism":"Herbologia","homeopathy":"Homeopatia","humanistic":"Psicologia Humanística","hydrotherapy":"Hidroteràpia","hypnosis":"Hipnosis","infectious_diseases":"Malalties Infecioces","intensive":"Medicina Intensiva","internal":"Medicina Interna","naturopathy":"Naturopatia","neonatology":"Neonatologia","nephrology":"Nefrologia","neurology":"Neurologia","neuropsychiatry":"Neuropsiquiatria","neurosurgery":"Neurocirugia","nuclear":"Medicina Nuclear","occupational":"Medicina Ocupacional","oncology":"Oncologia","ophthalmology":"Oftalmologia","orthodontics":"Ortodòncia","orthopaedics":"Cirugia Ortopèdica","osteopathy":"Osteopatia","otolaryngology":"Otorrinologia","paediatric_surgery":"Cirugia Pediàtrica","paediatrics":"Pediatria","palliative":"Cures Paliatives","pathology":"Anatomia Patològica","physiatry":"Medicinia Física i Rehabilitació","plastic_surgery":"Medicina Estètica","podiatry":"Podologia","proctology":"Cirugia Colorectal","psychiatry":"Psiquiatria","pulmonology":"Pneumologia","radiology":"Radiologia","radiotherapy":"Radioterapia","reflexology":"Reflexologia","reiki":"Reiki","rheumatology":"Reumatologia","shiatsu":"Xiatsu","stomatology":"Estomatologia","surgery":"Cirugia General","systemic":"Terapia sistèmica","traditional_chinese_medicine":"Medicina Tradicional Xinesa","transplant":"Trasplantament","trauma":"Traumatologia\nOrtopèdia","tropical":"Medicina Tropical","tuina":"Tui Na","unani":"Medicina Unani","urology":"Urologia","vaccination":"Vacunació","vascular_surgery":"Cirugia Vascular"}},"heating":{"label":"Calefacció"},"height":{"label":"Altura (metres)","terms":"altura,altitut,metres"},"height/hub":{"label":"Altura de la boixa (Metres)","terms":"altura del buje,metres,altitud"},"height_building":{"label":"Altura de l'edifici (metres)","terms":"altura,peus"},"highchair":{"label":"Trona","terms":"trona,cadira alta"},"highspeed":{"label":"Alta velocitat","terms":"alta veloctitat,ràpid"},"highway":{"label":"Tipus"},"highway_cartpath":{"label":"Tipus de camí","options":{"path":"Caminal","service":"Via de servei"}},"historic":{"label":"Tipus","options":{"archaeological_site":"Jaciment Arqueològic","bomb_crater":"Cràter de bombes","boundary_stone":"Fita","building":"Edifici històric","castle":"Castell","charcoal_pile":"Pila de carbó","church":"Església","city_gate":"Porta de la vila","citywalls":"Muralla de la ciutat","fort":"Historic Fort","manor":"Casa senyorial","memorial":"Memorial","milestone":"Fita","millstone":"Mola de molí","mine":"Mina","mine_shaft":"Pou d'una mina","monument":"Monument","pillory":"Costell històric","railway":"Via del tren","ruins":"Ruïnes","shieling":"Refugi escocés de pastura","tomb":"Tomba","wayside_cross":"Creu al camí","wayside_shrine":"Santuari al camí","wreck":"Naufragi"}},"historic/civilization":{"label":"Civilització històrica"},"historic/wreck/date_sunk":{"label":"Data de l'enfonsament"},"historic/wreck/visible_at_high_tide":{"label":"Visible amb marea alta"},"historic/wreck/visible_at_low_tide":{"label":"Visible amb marea baixa"},"holding_position/type":{"label":"Tipus","options":{"ILS":"Sistema d'aterratje Instrumental (ILS)","intermediate":"Intersecció entre els carrers de rodada","runway":"Pista d'enlairament"}},"hoops":{"label":"Cistella de basquetbol","placeholder":"1, 2, 4..."},"horse_riding":{"label":"Centre hípic","options":{"horse_riding":"Sí","undefined":"No"}},"horse_scale":{"label":"Dificultat de la marxa a cavall","options":{"common":"Fàcil: Sense problemes o dificultats. (Predeterminat)","critical":"Límit: Sols transitable per a genets i cavalls experimentats. Obstàcles importants. Els ponts s'ha d'examinar amb molta cura.","dangerous":"Perillos: Sols transitable per a genets i cavalls molt experimetats i amb bon oratge. Desmontat.","demanding":"Utilitzar amb precaució: Via irregular, ocasionalment passatges complicats","difficult":"Difícil: Via estreta i exposat. Pot tenir obstacles que passar-hi i passatges estrets.","impossible":"Intransitable: Camí o pont no transitable per cavalls. Massa estret, suport insuficient, obstacles com escales. Perill de vida."},"placeholder":"Difícil, perillós...","terms":"dificultat per a muntar a cavall,difucultat de l'equitació"},"hot_water":{"label":"Aigua calenta"},"house":{"label":"Tipus de casa"},"iata":{"label":"Codi d'aeroport IATA"},"icao":{"label":"Codi d'aeroport ICAO"},"image":{"label":"Imatge","placeholder":"https://exemple.cat/foto.jpg","terms":"imatge,fotografia,icona,icono"},"incline":{"label":"Pendent","terms":"inclinació,inclinat,pendent,costera"},"incline_steps":{"options":{"down":"Avall","up":"Amunt"}},"indoor":{"label":"Interior","terms":"interior,a dins,dins,cobert"},"indoor_type":{"label":"Tipus"},"industrial":{"label":"Tipus"},"informal":{"label":"Informal","terms":"improvisat,informal,no oficial"},"information":{"label":"Tipus"},"inscription":{"label":"Inscripció","terms":"inscripció,epígraf"},"intermittent":{"label":"Intermitent","terms":"intermitent,ocasional"},"internet_access":{"label":"Connexió a internet","options":{"no":"No","terminal":"Mitjançant un terminal","wired":"Per cable","wlan":"WiFi","yes":"Sí"},"terms":"wifi,wlan,connexió a internet,router,internet,xarxa"},"internet_access/fee":{"label":"Taxa d'accés a Internet","options":{"customers":"Només per a clients","no":"Gratuït","yes":"De pagament"}},"internet_access/ssid":{"label":"Nom de la xarxa Wifi","terms":"ssid,nom de la xarxa"},"interval":{"label":"Interval","terms":"intermedi,entremig,lapse,periode"},"irrigation_pivot":{"options":{"pivot":"Sí","undefined":"No"}},"junction/ref_oneway":{"label":"Número de cruïlla","terms":"número de sortida,número d’ixida,nombre de sortida,nombre d’ixida,número d’eixida,nombre d’eixida"},"junction_line":{"label":"Cruïlla","options":{"circular":"Rotonda","jughandle":"Canvi de sentit a diferent nivell","roundabout":"Rotonda"},"terms":"intersecció,ixida,eixida,sortida"},"kerb":{"label":"Vorada","options":{"flush":{"description":"Una vorada rebaixada que està rasa, a l'altura de l'entorn.","title":"Rasa"},"lowered":{"description":"Una vorada rebaixada o gual que pot ser traspassada per usuaris de cadires de rodes, no superior a uns pocs centímetres.","title":"Rebaixada"},"no":{"description":"No hi ha cap vorada en aquesta ubicació.","title":"No"},"raised":{"description":"Una vorada elevada que no pot ser traspassada fàcilment per usuaris de cadires de rodes, de més d'uns pocs centímetres.","title":"Elevada"},"rolled":{"description":"Una vorada elevada amb vora arrodonida que facilita l'accés a cotxes o bicicletes, però no per a cadires de rodes.","title":"Forma de canal"},"yes":{"description":"En aquest lloc hi ha algun tipus de vorada, sense saber si està elevada, rebaixada, rasa, etc.","title":"Sí"}},"terms":"borda,vorera,marge de la carretera,cantó,llinatge"},"kerb/height":{"label":"Alçada"},"kerb/kerb_barrier":{"label":"Tipus"},"kitchen":{"label":"Cuina","terms":"cuina,especialitat"},"kneipp_water_cure_multi":{"label":"Tipus de conca"},"label":{"label":"Etiqueta"},"lamp_mount":{"label":"Suport"},"lamp_type":{"label":"Tipus"},"landuse":{"label":"Tipus"},"lane_markings":{"label":"Marca vial","terms":"línia central,línies divisories,continua,discontinua"},"lanes":{"label":"Carrils","placeholder":"1, 2, 3...","terms":"línia,linea,marca,carril"},"language_multi":{"label":"Llengües"},"layer":{"label":"Capa","placeholder":"0","terms":"capa"},"layer_1":{"placeholder":"0"},"leaf_cycle":{"label":"Cicle del fullatge","options":{"deciduous":"Caducifoli","evergreen":"Perenne","mixed":"Mixt","semi_deciduous":"Semicaducifoli","semi_evergreen":"Semiperenne"},"terms":"cicle,fulla,cicle de la fulla"},"leaf_type":{"label":"Tipus de fulles","options":{"broadleaved":"Fulles amples","leafless":"Sense fullatge","mixed":"Barrejat","needleleaved":"Fulles primes"},"terms":"tipus,fulla,tipus de fulla"},"leaf_type_singular":{"label":"Tipus de fulla","terms":"tipus,fulla,tipus de fulla"},"leisure":{"label":"Tipus"},"length":{"label":"Llargada (metres)","terms":"longitud,metres,distància,dimensió,grandària,llarg"},"level":{"label":"Nivell","terms":"planta,planta d'edifici"},"level_semi":{"label":"Nivells","terms":"plantes,plantes d'edifici"},"liaison":{"label":"Tipus"},"license_classes":{"label":"Tipus de llicències de conduir","terms":"autoescola,clases de conduir,carnet de conduir,auto"},"lifeguard":{"label":"Tipus","options":{"base":"Base de socorrisme","tower":"Torre de vigilància"}},"lifeguard_check":{"label":"Socorrista"},"lift_gate/type":{"label":"Tipus"},"line_attachment":{"label":"Fixació de la línia","terms":"soport de la línia,enganx de la línia"},"line_management":{"label":"Gestió de línia","terms":"ramificació,tipologia de línia,terminació"},"lit":{"label":"Il·luminat","terms":"llum,fanal,farola,il·luminació"},"loc_name":{"label":"Nom local"},"location":{"label":"Ubicació","terms":"ubicació,localització"},"location_pool":{"options":{"indoor":"Interior","outdoor":"Exterior","roof":"Terrat"}},"lock":{"label":"Resclosa"},"lockable":{"label":"Bloquejable","terms":"tancable amb clau,amb sistema de bloqueig,amb seguretat,amb possibilitat de tancar"},"locked":{"label":"Bloquejat"},"man_made":{"label":"Tipus"},"manhole":{"label":"Tipus"},"manufacturer":{"label":"Fabricant","terms":"fabricant,productor,productor industrial,constructor,productor de productes"},"map_size":{"label":"Cobertura"},"map_type":{"label":"Tipus","options":{"street":"Mapa de carreteres","topo":"Mapa topogràfic"}},"mapillary":{"label":"ID de la imatge de Mapillary","terms":"identificador d'imatge de mapillary,id d'imatge de mapillary,identificació d'imatge de mapillary"},"marker":{"label":"Tipus","options":{"aerial":{"title":"Aeri"},"ground":{"title":"Terra"},"plate":{"title":"Placa"},"stone":{"description":"Marques pintades o gravades sobre una pedra","title":"Pedra"}}},"material":{"label":"Material","options":{"adobe":"Tova","aluminium":"Alumini","brass":"Llautó","brick":"Maó","bronze":"Bronze","concrete":"Ciment","dry_stone":"Pedra seca","glass":"Vidre","granite":"Granit","iron":"Ferro","limestone":"Pedra calcària","marble":"Marbre","metal":"Metall","plastic":"Plàstic","reinforced_concrete":"Ciment Reforçat","rock":"Roca","sand":"Sorra","sandstone":"Gres","soil":"Terra","steel":"Acer","stone":"Pedra","wood":"Fusta"},"terms":"matèria,substància,element,compost,component,matèria primera,material de construcció"},"mattress":{"label":"Matalassos disponibles","terms":"matalassos disponibles,colchons disponibles,llits disponibles,mobles per dormir disponibles"},"max_age":{"label":"Edat màxima","terms":"majoria d'edat,edat màxima"},"maxaxleload_bridge":{"label":"Límit de pes de l'eix","terms":"límit de pes per eix,límit de pes per roda,límit de pes per eix motriu,restricció de pes per eix"},"maxheight":{"label":"Height Limit","terms":"límit d'altura,restricció d'altura,alçada màxima,límit de mida vertical"},"maxlength":{"label":"Límit de longitud ","terms":"límit de longitud,restricció de longitud,mida màxima,límit de mida horitzontal"},"maxspeed":{"label":"Límit de velocitat","placeholder":"40, 50, 60...","terms":"límit de velocitat,restricció de velocitat,velocitat màxima,límit de velocitat permès"},"maxspeed/advisory":{"label":"Límit de velocitat recomanat","placeholder":"40, 50, 60...","terms":"recomanació de velocitat"},"maxspeed/hgv":{"label":"Límit de velocitat per a Camions","placeholder":"40, 50, 60...","terms":"recomanació de velocitat per a camions"},"maxstay":{"label":"Límit de temps","terms":"límit de temps,restricció de temps,termini de temps,durada màxima,límit de temps permès"},"maxweight":{"label":"Límit de pes"},"maxwidth":{"label":"Width Limit"},"maxwidth/physical":{"label":"Width Limit"},"memorial":{"label":"Tipus","options":{"blue_plaque":"Placa blava","bust":"Bust","cross":"Creu memorial","ghost_bike":"Bicicleta Fantasma","obelisk":"Obelisc","plaque":"Placa commemorativa","sculpture":"Esculptura","statue":"Estatua","stele":"Estela","stolperstein":"Llamborda de topada","stone":"Pedra","war_memorial":"Memorial de guerra"}},"message":{"label":"Missatge"},"microbrewery":{"label":"Microcerveseria"},"military_service":{"label":"Sevei Militar","options":{"air_force":"Forces aèries","army":"Exèrcit de terra","coast_guard":"Guàrdia costanera","marines":"Marina","navy":"Armada"}},"mimics":{"label":"Imitació"},"min_age":{"label":"Edat mínima"},"min_height":{"label":"Alçada des de baix (Metres)"},"minspeed":{"label":"Límit de velocitat mínima","placeholder":"20, 30, 40...","terms":"límit de velocitat mínim,velocitat mínima obligatòria,velocitat mínima permesa,restricció de velocitat mínima"},"mobile":{"label":"Telèfon mòbil","placeholder":"+34 623 245 547","terms":"telèfon mòbil,telèfon cel·lular,smartphone,dispositiu mòbil,telèfon intel·ligent."},"model":{"label":"Model"},"monitoring_multi":{"label":"Seguiment"},"mooring":{"label":"Amarrament","options":{"commercial":"Comercial","guest":"Convidats","no":"No","private":"Privat","yes":"Sí"}},"mtb/scale":{"label":"Dificultat per a bicicletes de muntanya","options":{"0":"0: Grava sòlida/terra compactada, sense obstacles, corbes de radi ample","1":"1: Algunes zones amb superfície inestable, petits obstacles, corbes de radi ample","2":"2: Bastantes zones amb superfície inestable, grans obstacles, corbes en paella fàcils","3":"3: Superfície lliscant, grans obstacles, corbes en paella estretes","4":"4: Superfície inestable o còdols, corbes en paella perilloses","5":"5: Dificultat màxima, camps de còdols, esllavissades","6":"6: No ciclable excepte per als millors ciclistes de muntanya"},"placeholder":"0, 1, 2, 3..."},"mtb/scale/imba":{"label":"Dificultat del camí segons IMBA","options":{"0":"Més fàcil (cercle blanc)","1":"Fàcil (cercle verd)","2":"Mitjana (quadrat blau)","3":"Difícil (diamant negre)","4":"Extremadament difícil (doble diamant negre)"},"placeholder":"Fàcil, Mitjana, Difícil...","terms":"dificultat del sender imba,sender,imba"},"mtb/scale/uphill":{"label":"Dificultat d'ascens per a ciclistes de muntanya","options":{"0":"0: Incl. mitjana <10%, grava/terra compactada, sense obstacles","1":"1: Incl. mitjana <15%. grava/terra compactada, pocs i petits obstacles","2":"2: Incl. mitjana <20%, superfície estable, roques i arrels de la mida d'un puny","3":"3: Incl. mitjana <25%, superfície variable, roques i banques de la mida d'un puny","4":"4: Incl. mitjana <30%, condicions pobres, grans roques/branques","5":"5: Molt empinat, generalment la bicicleta ha de ser empesa."},"placeholder":"0, 1, 2, 3..."},"museum":{"label":"Tipus"},"name":{"label":"Nom","placeholder":"Nom comú (si n'hi ha)"},"natural":{"label":"Natural"},"network":{"label":"Xarxa"},"network/type":{"label":"Tipus de xarxa"},"network_bicycle":{"label":"Classe de xarxa","options":{"icn":"Internacional","lcn":"Local","ncn":"Nacional","rcn":"Regional"},"placeholder":"Local, Regional, Nacional, Internacional"},"network_foot":{"label":"Classe de xarxa","options":{"iwn":"Internacional","lwn":"Local","nwn":"Nacional","rwn":"Regional"},"placeholder":"Local, Regional, Nacional, Internacional"},"network_horse":{"label":"Classe de xarxa","options":{"ihn":"Internacional","lhn":"Local","nhn":"Nacional","rhn":"Regional"},"placeholder":"Local, Regional, Nacional, Internacional"},"network_road":{"label":"Xarxa"},"not/name":{"label":"Noms incorrectes"},"note":{"label":"Nota"},"nudism":{"label":"Nudisme","options":{"customary":"Costum","designated":"Designat","no":"Prohibit","obligatory":"Obligatori","permissive":"Permés","yes":"Permés"},"terms":"naturisme,estil de vida sense roba,recreació nua,opcional de roba,nudisme social"},"office":{"label":"Tipus","options":{"accountant":"Oficina d'un comptable","adoption_agency":"Agència d'adopció","advertising_agency":"Agència de publicitat","architect":"Oficina d'un arquitecte","association":"Organització sense ànim de lucre","charity":"Oficina de caritat","company":"Oficina d'una corporació","construction_company":"Oficina d'una empresa de construcció","consulting":"Oficina d'una consultoria","coworking":"Espai de 'Coworking'","diplomatic":"Oficina diplomàtica","educational_institution":"Institució Educativa","employment_agency":"Oficina de treball","energy_supplier":"Oficina d'una Distribuïdora Energètica","engineer":"Estudi d'enginyeria","estate_agent":"Agència immobiliària","financial":"Oficina d'una financera","financial_advisor":"Assessoria financera","forestry":"Oficina forestal","foundation":"Oficina d'una fundació","government":"Oficina governamental","graphic_design":"Estudi de disseny gràfic.","guide":"Oficina de guies turístics","insurance":"Oficina d'una Companyia Asseguradora","it":"Oficina de tecnologies de la informació","lawyer":"Bufet d'advocats","logistics":"Agència de transports","moving_company":"Companyia de mudances","newspaper":"Oficines d'un Diari","ngo":"Oficina d'una ONG","notary":"Notaria","physician":"Metge","political_party":"Seu d'un partit polític","private_investigator":"Oficina d'investigador privat","property_management":"Oficina de gestió de propietats","quango":"Oficina de quasi-ONG","religion":"Oficina religiosa","research":"Oficines d'R+D","security":"Oficina de seguretat","surveyor":"Oficina d'un agrimensor","tax_advisor":"Asesoria Fiscal","telecommunication":"Oficines d'una companyia de telecomunicacions","therapist":"Consulta d'un terapeuta","travel_agent":"Agència de viatges","union":"Oficina d'un sindicat","water_utility":"Oficina de la companyia d'aigua"}},"official_name":{"label":"Nom oficial"},"oneway":{"label":"Sentit únic","options":{"alternating":"Alternat","no":"No","reversible":"Reversible","undefined":"Sobreentès que no","yes":"Sí"}},"oneway/bicycle":{"label":"Sentit únic (bicicletes)"},"oneway_yes":{"options":{"alternating":"Alternat","no":"No","reversible":"Reversible","undefined":"Sobreentès que sí","yes":"Sí"}},"openfire":{"label":"Focs de camp permesos"},"opening_date":{"label":"Data d'obertura esperada","placeholder":"AAAA-MM-DD"},"opening_hours":{"label":"Horari","placeholder":"Desconegut"},"opening_hours/drive_through":{"label":"Horari del servei per a emportar","placeholder":"Igual que l'horari comercial habitual"},"operator":{"label":"Operador"},"operator/type":{"label":"Tipus d'operador"},"organic":{"label":"Productes ecològics","options":{"no":"Cap","only":"Únicament","yes":"Alguns"},"terms":"natural,orgànic,sense transgènics"},"orientation/orientation_parking":{"label":"Orientació"},"outdoor_seating":{"label":"Seient a l'aire lliure"},"par":{"label":"Par","placeholder":"3, 4, 5..."},"parcel_dropoff":{"label":"Enviament de paquets"},"parcel_pickup":{"label":"Arreplegada de paquets","options":{"no":"No","undefined":"Es pressuposa que Sí","yes":"Sí"}},"park_ride":{"label":"Aparcament d'enllaç","terms":"aparca i monta,estaciona i monta,aparca i viatja,estacionament dissuasori,aparcament dissuasori,estacionament d'enllaç,aparcament dissuasiu,estacionament dissuasiu"},"parking":{"label":"Tipus","options":{"carports":{"title":"Aixoplucs"},"garage_boxes":{"title":"Boxs"},"half_on_kerb":{"description":"Aparcament parcialment a la vorera","title":"Parcialment en la vorera"},"lane":{"title":"Carril adossat a la calçada"},"layby":{"description":"Aparcament en una àrea de descans, al costat d'una carretera.","title":"Apartadero de descans"},"multi-storey":{"title":"Diversos nivells"},"on_kerb":{"description":"Aparcament a la vorera","title":"A la vorera"},"rooftop":{"title":"Terrat"},"sheds":{"title":"Garatges"},"shoulder":{"title":"Voral"},"street_side":{"title":"Adjacent a la carretera"},"surface":{"title":"Superfície"},"underground":{"description":"Aparcament subterrani","title":"Subterrani"}}},"parking/side/orientation":{"label":"Orientació de l'aparcament","options":{"diagonal":"Diagonal en relació al carrer (~45°)","parallel":"Paral·lel al carrer","perpendicular":"Perpendicular a la carretera (~90°)"},"types":{"parking:left:orientation":"Costat esquerre","parking:right:orientation":"Costat dreta"}},"parking/side/parking":{"label":"Aparcament","options":{"half_on_kerb":"Parcialment en la vorera","lane":"Carrils adossats a ambdós costats de la calçada","no":"No","on_kerb":"A la vorera","separate":"Aparcament mapejat separadament","shoulder":"Voral","street_side":"Adjacent a la carretera","yes":"Si (sense especificar)"},"types":{"parking:left":"Costat esquerre","parking:right":"Costat dreta"}},"parking_entrance":{"label":"Tipus"},"parking_space":{"label":"Tipus"},"payment_multi":{"label":"Tipus de pagament","options":{"alipay":"Alipay","american_express":"American Express","app":"Aplicació Mòbil","apple_pay":"Apple Pay","bancomat":"Bancomat","blik":"Blik","cards":"Targeta de pagament","cash":"Diners en metàl·lic","cheque":"Xec","clipper":"Clipper","coins":"Monedes","contactless":"Pagament sense contacte","credit_cards":"Targeta de crèdit","cryptocurrencies":"Criptomoneda","debit_cards":"Targeta de dèbit","diners_club":"Diners Club","discover_card":"Discover","dkv":"DKV","electronic_purses":"Moneder Electrònic","ep_easycard":"悠遊卡EasyCard","ep_geldkarte":"GeldKarte","ep_ipass":"iPASS一卡通","girocard":"Girocard","google_pay":"Google Pay","jcb":"JCB","maestro":"Maestro (Mastercard)","mastercard":"Mastercard","mastercard_contactless":"Mastercard sense contacte","notes":"Bitllets","paypal":"PayPal","prepaid_ticket":"Tiquet Prepagat","telephone_cards":"Targeta Telefònica","unionpay":"UnionPay","uta":"UTA","v_pay":"V Pay","visa":"Visa","visa_debit":"Visa Dèbit","visa_electron":"Visa Electron","wechat":"WeChat Pay"},"terms":"tipus de pagments,formes de pagament"},"phases":{"label":"Fases","placeholder":"1, 2, 3..."},"phone":{"label":"Telèfon","terms":"telèfon,número de telèfon"},"picnic_table":{"label":"Taula de pícnic","terms":"pícnic. taula exterior,banc,parc,taula"},"pipeline":{"label":"Tipus"},"piste/difficulty":{"label":"Dificultat","options":{"advanced":"Avançat","easy":"Fàcil","expert":"Expert","extreme":"Extrem","freeride":"Fora pistes","intermediate":"Intermig","novice":"Novell"},"placeholder":"Fàcil, Intermedi, avançat..."},"piste/difficulty_downhill":{"options":{"advanced":"Avançat (diamant negre)","easy":"Fàcil (cercle verd)","expert":"Expert (diamant negre doble)","extreme":"Extrem (requereix equipament d'escalada)","freeride":"Fora pista (freeride)","intermediate":"Intermedi (quadrat blau)","novice":"Novell (instructiu)"},"placeholder":"Fàcil, Intermedi, avançat..."},"piste/difficulty_nordic":{"options":{"advanced":"Avançada - Secció estreta, escarpada o gelada, gir tancat","easy":"Fàcil - Turons suaus, secció poc escarpada","expert":"Experta - Terreny perillós arreu","intermediate":"Intermèdia - Secció escarpada","novice":"Novella - Pla, sense esforç"},"placeholder":"Fàcil, intermèdia, avançada..."},"piste/difficulty_skitour":{"placeholder":"Fàcil, Intermedi, Avançat..."},"piste/grooming":{"label":"Adequació","options":{"backcountry":"Backcountry","classic":"Classic","classic+skating":"Classic i Skating","mogul":"Mogul","scooter":"Retrack petita/moto de neu","skating":"Skating"}},"piste/grooming_downhill":{"options":{"backcountry":"Fora pista - sense adequació","classic":"Clàssic","mogul":"Bonys"}},"piste/grooming_hike":{"options":{"backcountry":"Fora pista - Raquetes de neu","classic":"Clàssic - excursionisme hivernal"}},"piste/grooming_nordic":{"options":{"backcountry":"Fora pista, sense adequació","classic":"Clàssic","classic+skating":"Clàssic i patinador","scooter":"Moto de neu","skating":"Patinador"}},"piste/type":{"label":"Tipus","options":{"connection":"Connexió","downhill":"Descens","hike":"Raquetes/senderistes","ice_skate":"Patinatge sobre gel","nordic":"Esquí de fons","playground":"Parc infantil","skitour":"Esquí de muntanya","sled":"Trineus","sleigh":"Trineus multiplaça","snow_park":"Parc per a snowboards"}},"place":{"label":"Tipus"},"plant":{"label":"Planta"},"plant/method":{"label":"Mètode de generació"},"plant/output":{"label":"Forma de sortida de potència","options":{"cold_air":"Aire Gelat","cold_water":"Aigua Gelada","compressed_air":"Aire Comprimit","electricity":"Electricitat","hot_air":"Aire Calent","hot_water":"Aigua Calenta","steam":"Vapor","vacuum":"Buit"}},"plant/output/electricity":{"label":"Potència elèctrica de sortida","placeholder":"500 MW, 1000 MW, 2000 MW..."},"plant/source":{"label":"Font d'energia"},"playground":{"label":"Tipus"},"playground/theme":{"label":"Temàtica"},"plots":{"label":"Parcel·les","placeholder":"10, 20, 30..."},"polling_station":{"label":"Lloc de votació","terms":"col·legi electoral"},"population":{"label":"Població"},"population/date":{"label":"Data de la Població","placeholder":"YYYY-MM-DD"},"portable":{"label":"Portàtil"},"post":{"label":"Adreça d'entrega"},"post_box/type":{"label":"Tipus","options":{"lamp":" fixat a un pal","wall":"fixat en una paret"},"terms":"tipo,tipus"},"power":{"label":"Tipus"},"power_supply":{"label":"Abastament elèctric"},"preschool":{"label":"Preescolar"},"produce":{"label":"Produeix"},"product":{"label":"Productes"},"public_bookcase/type":{"label":"Tipus"},"pump":{"label":"Bomba","options":{"manual":"Bomba de mà manual","no":"Cap","powered":"Bomba mecànica","yes":"Sí"}},"railway":{"label":"Tipus"},"railway/position":{"label":"Posició de la Fita","placeholder":"Distància a un decimal (123.4)"},"railway/signal/direction":{"label":"Direcció Afectada","options":{"backward":"Enrere","both":"Ambdós / Tots","forward":"Endavant"}},"railway/switch":{"label":"Tipus de canvi d'agulles","options":{"abt":"Canvi d'agulles d'Abt","default":"Canvi d'agulles normal","double_slip":"Canvi d'agulles doble","single_slip":"Canvi d'agulles simple","three_way":"Canvi d'agulles triple","wye":"Canvi d'agulles en forma de Y"}},"railway/track_ref":{"label":"Número de via"},"ramp":{"label":"Rampa d'obra","options":{"no":"No","separate":"Mapejat per separat","yes":"Sí"}},"real_fire-GB-IE":{"label":"Ximeneia","terms":"foc,ximeneia,ximenea"},"recycling_accepts":{"label":"N'accepta","options":{"batteries":"Piles","cans":"Llaunes","cardboard":"Paper i Catró","clothes":"Roba","cooking_oil":"Oli de cuina","engine_oil":"Oli de motor","glass":"Qualsevol vidre (vidre templat, finestres, miralls, etc.)","glass_bottles":"Ampolles de vidre i gerres","green_waste":"Residus verds","paper":"Paper","plastic":"Plàstic","plastic_bottles":"Ampolles de Plàstic","plastic_packaging":"Embalatge de Plàstic","scrap_metal":"Ferralla","shoes":"Sabates"}},"recycling_type":{"label":"Tipus","options":{"centre":"Centre","container":"Contenidor"},"placeholder":"Contenidor, Centre"},"ref":{"label":"Codi de referència","terms":"nomenclatura,nombre,número,referència"},"ref/isil":{"label":"Codi ISIL"},"ref/vatin":{"label":"Nombre d'identificació de la VAT"},"ref_aeroway_gate":{"label":"Nombre de porta"},"ref_disc_golf_hole":{"label":"Número del forat","placeholder":"1-18"},"ref_golf_hole":{"label":"Nombre de forat","placeholder":"1-18"},"ref_highway_junction":{"label":"Nombre d'encreuament"},"ref_platform":{"label":"Nombre d'andana"},"ref_road_number":{"label":"Codi de la carretera","terms":"nomenclatura de la carretera,referència de la carretera,nombre de carretera,nombre de via,nombre de ruta"},"ref_room_number":{"label":"Número d'habitació"},"ref_route":{"label":"Número de ruta"},"ref_runway":{"label":"Número de pista","placeholder":"p.e. 01L/19R"},"ref_sector":{"label":"Número de secció"},"ref_stop_position":{"label":"Número de parada"},"ref_taxiway":{"label":"Nom del carrer de rodada","placeholder":"exemple A5"},"relation":{"label":"Tipus"},"religion":{"label":"Religió","options":{"bahai":"Fe Bahai","benzhu":"Benzhuisme ","buddhist":"Budisme","caodaism":"Caodaisme","chinese_folk":"Religió Tradicional Xinesa","christian":"Cristianisme","confucian":"Confucianisme","hindu":"Hinduisme","jain":"Jainisme","jewish":"Judaisme","multifaith":"Multireligiós","muslim":"Muslumana","none":"No Religiós","pagan":"Paganisme","shinto":"Xintoisme","sikh":"Sikhisme","spiritualist":"Espiritualisme","taoist":"Taoisme","tenrikyo":"Tenrikyo","unitarian_universalist":"Unitarisme Universalista","vietnamese_folk":"Religió Tradicional Vietnamita","voodoo":"Vodú"},"terms":"religió,fe,creença"},"reservation":{"label":"Reserves","options":{"no":"No s'accepten","recommended":"Recomanades","required":"Requerides","yes":"S'accepten"},"terms":"reserves,demanar cita,demanar hora"},"residential":{"label":"Tipus"},"resort":{"label":"Tipus"},"resource":{"label":"Recursos","options":{"aggregate":"Agregat","clay":"Argila","coal":"Carbó","gold":"Or","gravel":"Grava","iron_ore":"Mineral de ferro","limestone":"Pedra calcària","peat":"Torba","sand":"Sorra"}},"restriction":{"label":"Tipus"},"restrictions":{"label":"Restriccions de gir"},"roller_coaster/track":{"label":"Tipus","options":{"brake_run":{"description":"Un tram dels raïls destinat a frenar o aturar els cotxes"},"maintenance":{"title":"Manteniment"},"moving":{"description":"Qualsevol tipus de raïls en moviment, com canviadors de raïl"},"station":{"title":"Estació"}}},"roof/colour":{"label":"Color de la teulada","terms":"color del teulat,color del sostre,tonalitat del terrat,matís de la coberta"},"roof/shape":{"options":{"dome":"Cúpula"}},"room":{"label":"Tipus"},"rooms":{"label":"Habitacions"},"rotor/diameter":{"label":"Diàmetre del rotor (Metres)","terms":"diàmetre del motor"},"roundtrip":{"label":"Forma un bucle","terms":"circular,tancat,bucle,redó"},"route":{"label":"Tipus"},"route_master":{"label":"Tipus"},"royal_cypher-GB":{"label":" Insígnia reial","options":{"CIIIR":"CIIIR (Carles III)","EIIR":"EIIR (Elisabet II)","EVIIIR":"EVIIIR (Eduard VIII)","EVIIR":"EVIIR (Eduard VII)","GR":"GR (Jordi V)","GVIR":"GVIR (Jordi VI)","VR":"VR (Victòria)","no":"No","scottish_crown":"Corona escocesa"}},"ruins":{"label":"Tipus"},"sac_scale":{"label":"Dificultat per al senderisme","options":{"alpine_hiking":"T4: Alpinisme","demanding_alpine_hiking":"T5: Alpinisme exigent","demanding_mountain_hiking":"T3: Muntanyisme exigent","difficult_alpine_hiking":"T6: Alpinisme difícil","hiking":"T1: Senderisme","mountain_hiking":"T2: Muntanyisme"},"placeholder":"Muntanysime, Alpinisme..."},"salt":{"label":"Sal","terms":"sal,salat,salinitat"},"sample_collection":{"label":"Mostres"},"sanitary_dump_station":{"label":"Lavabo"},"screen":{"label":"Pantalles","placeholder":"1, 4, 8…"},"scuba_diving":{"label":"Serveis"},"seamark/beacon_isolated_danger/shape":{"label":"Forma"},"seamark/beacon_lateral/category":{"label":"Categoria","options":{"danger_left":"Perill a l'esquerra","danger_right":"Perill a la dreta","port":"Bavor","starboard":"Estribor"}},"seamark/beacon_lateral/colour":{"label":"Color","options":{"green":"Verd","grey":"Gris","red":"Vermell"}},"seamark/beacon_lateral/shape":{"label":"Forma"},"seamark/beacon_lateral/system":{"label":"Sistema","options":{"iala-a":"IALA A","iala-b":"IALA B","other":"Altre"}},"seamark/buoy_lateral/category":{"label":"Categoria","options":{"channel_left":"Canal esquerre","channel_right":"Canal dret","danger_left":"Perill a l'esquerra","danger_right":"Perill a la dreta","port":"Bavor","preferred_channel_port":"Canal preferit a bavor","preferred_channel_starboard":"Canal preferit a estribord","starboard":"Estribor"}},"seamark/buoy_lateral/colour":{"label":"Color","options":{"green":"Verd","green;red;green":"Verd-Vermell-Verd","green;white;green;white":"Verd-Blanc-Verd-Blanc","red":"Vermell","red;green;red":"Vermell-Verd-Blanc","red;white;red;white":"Vermell-Blanc-Vermell-Blanc","white":"Blanc","yellow":"Groc"}},"seamark/buoy_lateral/shape":{"label":"Forma"},"seamark/buoy_lateral/system":{"label":"Sistema","options":{"iala-a":"IALA A","iala-b":"IALA B","other":"Altre"}},"seamark/harbour/category_marina":{"options":{"marina":"Sí","marina_no_facilities":"No"}},"seamark/mooring/category":{"label":"Categoria"},"seamark/rescue_station/category":{"label":"Equip de salvament","options":{"aircraft":"Aeronau","first_aid":"Primers auxlis","hovercraft":"Aerolliscador","lifeboat":"Bot salvavides (en terra)","lifeboat_on_mooring":"Bot salvavides (a un amarratge)","radio":"Estació de ràdio","seaplane":"Hidroavió"}},"seamark/wreck/category":{"label":"Categoria"},"seasonal":{"label":"Estacional"},"seats":{"label":"Seients","placeholder":"2, 4, 6..."},"second_hand":{"label":"En ven d'usat","options":{"no":"No","only":"Només","yes":"Sí"},"placeholder":"Sí, No, Només","terms":"2a mà,segona mà"},"segregated":{"label":"Separació Bicicleta-Peató"},"self_service":{"label":"Autoservei"},"service":{"label":"Tipus","options":{"alley":"Carreró","drive-through":"Via de servei al vehicle","driveway":"Via d'accés a una propietat","emergency_access":"Accés per a emergències","parking_aisle":"Carrer d'aparcament"}},"service/bicycle":{"label":"Serveis per a bicicletes"},"service/vehicle":{"label":"Serveis"},"service_rail":{"label":"Tipus de servei de la via","options":{"crossover":"Intercambiador","siding":"Apartador","spur":"Ramal curt","yard":"Platja"}},"service_times":{"label":"Temps de servei"},"shelter":{"label":"Coberta"},"shelter_type":{"label":"Tipus"},"shoes":{"label":"Sabates"},"shop":{"label":"Tipus"},"shower":{"label":"Dutxes","terms":"dutxes,aseo,sabó,dutxa,aigua"},"side":{"label":"Costat","options":{"left":"L'esquerra del ciclista","right":"La dreta del ciclista"}},"siren/purpose":{"label":"Propòsit"},"siren/type":{"label":"Tipus","options":{"electronic":"Electrònica","other":"Altres","pneumatic":"Pneumàtica"}},"site":{"label":"Tipus"},"smoking":{"label":"Apte per a fumadors","options":{"dedicated":"Dedicat a fumadors (ex: club de fumadors)","isolated":"A les àrees per a fumadors, aïllades físicament","no":"Prohibit fumar a tot arreu","outside":"Permès a fora","separated":"A les àrees per a fumadors, no aïllades físicament","yes":"Permès a tot arreu"},"placeholder":"No, Separats, Sí...","terms":"fumar,tabac,tabaco,fumador,terrassa"},"smoothness":{"label":"Uniformitat per a vehicles","options":{"bad":"Rodes robustes: bicicleta de muntanya, cotxe, carruatge oriental","excellent":"Rodetes: Patí en línia, skateboard","good":"Rodes primes: bicicleta de competició","horrible":"Tot terreny : vehicle utilitari pesant tot terreny","impassable":"Impassable / Vehicles sense rodes","intermediate":"Rodes: bicicleta urbana, cadira de rodes, patinet","very_bad":"Gran altura: vehicle utilitari lleuger tot terreny","very_horrible":"Tot terreny especialitzades: tractors, Quads"},"placeholder":"Rodetes, Rodes, Tot terreny..."},"sms":{"label":"SMS"},"social_facility":{"label":"Tipus","options":{"ambulatory_care":"Atenció ambulatòria","assisted_living":"Habitatge assistit","day_care":"Centre de dia","food_bank":"Banc d'aliments","group_home":"Habitatge grupal","nursing_home":"Residència d'ancians","shelter":"Refugi","workshop":"Centre ocupacional"}},"social_facility_for":{"label":"Persones ateses","options":{"abused":"Víctimes d'abusos","child":"Infants","dementia":"Persones que pateixen demència","disabled":"Persones amb discapacitat","diseased":"Persones que pateixen una malaltia","displaced":"Persones desplaçades per catàstrofes o conflictes","drug_addicted":"Persones amb drogodependència","homeless":"Persones sense llar","juvenile":"Joventut","mental_health":"Persones amb malaltia mental","migrant":"Persones migrants","orphan":"Orfes","refugee":"Persones refugiades","senior":"Ancians","terminally_ill":"Persones amb malalties terminals","underprivileged":"Persones en situació o risc d'exclusió social","unemployed":"Persones sense treball","veteran":"Gent major","victim":"Víctimes del delicte","woman":"Dones"}},"source":{"label":"Fonts","options":{"aerial imagery":"Imatges aèries","gps":"GPS","local knowledge":"Coneixement local","osm notes":"Notes d'OpenStreetMap","streetlevel imagery":"Fotografies a peu de carrer","survey":"Exploració"}},"source/population":{"label":"Font de la població"},"species":{"label":"Espècies"},"species/wikidata":{"label":"Wikidata de l'espècie"},"sport":{"label":"Esports","options":{"10pin":"Birles de 10","9pin":"Birles de 9","american_football":"Futbol Americà","athletics":"Atletisme","badminton":"Bàdminton","baseball":"Beisbol","basketball":"Bàsquet","beachvolleyball":"Voleibol de platja","billiards":"Billars","bmx":"BMX","boules":"Petanca","bowls":"Joc de bitlles","canoe":"Piragüisme","chess":"Escacs","climbing":"Escalada","cricket":"Criquet","curling":"Cúrling","cycling":"Ciclisme","darts":"Dards","disc_golf":"Disc Golf","dog_racing":"Curses de gossos","equestrian":"Esports eqüestres","fitness":"Entrenament físic","free_flying":"Parapent / Ala delta","futsal":"Futbol sala","gaelic_games":"Esports gàelics","golf":"Golf","gymnastics":"Gimnàstica artística","handball":"Handbol","horse_racing":"Carrera de cavalls","ice_hockey":"Hoquei sobre gel","ice_skating":" Patinatge sobre gel","ice_stock":"Cúrling austríac","karting":"Kàrting","motocross":"Motocròs","motor":"Esports de motor","multi":"Altres esports no especificats","netball":"Netbol","orienteering":"Orientació","padel":"Pàdel","pelota":"Pilota","rugby_union":"Rugbi","running":"Raning","scuba_diving":"Submarinisme","shooting":"Tir","skateboard":"Monopatí de carrer","skiing":"Esquí","soccer":"Futbol","softball":"Softball","speedway":"Autòdrom per a moto cicletes","swimming":"Natació","table_tennis":"Ping-pong","tennis":"Tenis","volleyball":"Voleibol","yoga":"Ioga"}},"sport/sport_ice":{"label":"Esports"},"sport/sport_pub":{"label":"Esports","terms":"activitats esportives,atletisme,activitats físiques,jocs,recreacions,competicions"},"sport/sport_racing_motor":{"label":"Esports"},"sport/sport_racing_nonmotor":{"label":"Esports"},"stars":{"label":"Estrelles","terms":"estrelles,puntuacions,qualificacions,valoracions,puntuacions d'estrelles,classificacions"},"start_date":{"label":"Data d'inici","placeholder":"AAAA-MM-DD","terms":"data d'inici,data inicial,inici,des de"},"step_count":{"label":"Nombre d'esglaons","terms":"nombre de passes,quantitat d'escalons,comptador d'escalades,passos realitzats"},"stile":{"label":"Tipus"},"stop":{"label":"Tipus de stop","options":{"all":"Totes direccions","minor":"Carretera menor"}},"street_cabinet":{"label":"Tipus","terms":"tipo,tipus"},"stroller":{"label":"Accés de cotxets","options":{"limited":"Limitat","no":"No","yes":"Sí"}},"structure":{"label":"Estructura","options":{"bridge":"Pont","cutting":"Trinxera","embankment":"Terraplè ","ford":"Ford","tunnel":"Túnel"},"placeholder":"Desconegut"},"structure_canal":{"label":"Estructura","options":{"bridge":"Pont","tunnel":"Túnel"},"placeholder":"Desconegut"},"structure_power":{"label":"Estructura","options":{"lattice":"Gelosia","solid":"Sólida","tubular":"Tubular"}},"structure_waterway":{"label":"Estructura","options":{"tunnel":"Túnel"},"placeholder":"Desconegut"},"studio":{"label":"Tipus"},"subject":{"label":"Subjecte"},"subject/wikidata":{"label":"Wikidata del subjecte"},"substance":{"label":"Substància","options":{"fuel":"Combustible","gas":"Gas natural","hot_water":"Aigua calenta","oil":"Petroli cru","rainwater":"Aigua de pluja","sewage":"Aigües residuals","water":"Aigua potable"}},"substation":{"label":"Tipus","options":{"compensation":"Compensador Dinàmic d'Energia Reactiva","converter":"Convertidor d'Alt Voltatge CA/CC","distribution":"Distribució Regional","generation":"Genració","industrial":"Industrial","minor_distribution":"Distribució Local","transition":"Transició a la superfície/subterrània","transmission":"Transmissió d'Alt Voltatge"}},"substation_pipeline":{"label":"Tipus","options":{"compression":"Compressió","distribution":"Distribució regional","industrial":"Industrial","measurement":"Mesurament","minor_distribution":"Distribució local","transmission":"Transmisió"}},"supervised":{"label":"Supervisat"},"support":{"label":"Suport"},"surface":{"label":"Superfície","options":{"artificial_turf":"Gespa artificial","asphalt":"Asfalt","clay":"Argila","compacted":"Compactada","concrete":"Formigó","dirt":"Terra","grass":"Herba","gravel":"Grava","ground":"Terra","metal":"Metall","mud":"Fang persistent","paved":"Paviment","paving_stones":"Pedres pavimentades","salt":"Sal","sand":"Sorra","sett":"Llambordes no ajustades","unhewn_cobblestone":"Pedres (Sense tallar, pedres redones)","unpaved":"Sense pavimentar","wood":"Fusta","woodchips":"Estella"},"terms":"superfície,empolat,asfaltat"},"surveillance":{"label":"Tipus de vigilància"},"surveillance/type":{"label":"Tipus de vigilància","options":{"ALPR":"Lector de matrícules automàtic","camera":"Càmera","guard":"Guàrdia"}},"surveillance/zone":{"label":"Zona de vigilància"},"survey/date":{"label":"Data de l'última inspecció"},"survey_point/purpose":{"label":"Propòsit","options":{"both":"Ambdues","vertical":"Alineació Veritcal"}},"survey_point/structure":{"label":"Estructura","options":{"beacon":"Balisa","block":"Bloc","cairn":"Fita\nPila de pedres\nPila de rocs","cut":"Retalla","magnet":"Iman","plaque":"Placa","pole":"Pal"}},"swimming_pool":{"label":"Tipus","options":{"spa":"Spa","wading":"Xipolleig / Recreació","wave_pool":"Piscina d'ones"}},"switch":{"label":"Tipus","options":{"circuit_breaker":"Contactor","disconnector":"Desconector","earthing":"Presa de terra","mechanical":"Mecanic"}},"tactile_paving":{"label":"Superfície podotàctil","terms":"paviment rugós,paviment tàctil"},"takeaway":{"label":"Per emportar","options":{"no":"No","only":"Només per emportar","yes":"Sí"},"placeholder":"Sí, No, Només per emportar..."},"target":{"label":"Objectiu"},"taxi_vehicle":{"label":"Tipus de vehicle","options":{"auto_rickshaw":{"description":"Rickshaws motoritzats (per exemple, mototaxi, tricicle, tuctuc, bajaj, etc.)","title":"Mototaxi"},"cycle_rickshaw":{"description":"Rickshaws a pedals (per exemple, padyak, tricitaxi, velotaxi, etc.)","title":"Bicitaxi"},"motorcar":{"title":"Cotxe de motor"},"motorcycle":{"title":"Motocicleta"}},"terms":"tipus,tipus de vehicle,tipus d'auto,tipus de cotxe,tipus d'automòbil,tipus de transport"},"taxon":{"label":"Tàxon"},"tee":{"label":"Color o tipus de te"},"telecom":{"label":"Tipus","options":{"data_center":"Centre de dades","distribution_point":"Punt de distribució","exchange":"Canvi"}},"telescope/type":{"label":"Tipus","options":{"optical":"Telescopi òptic","radio":"Radiotelescopi"}},"tents":{"label":"Tendes de campanya"},"tidal":{"label":"Marea"},"to":{"label":"A"},"toilets":{"label":"Lavabos"},"toilets/disposal":{"label":"Contenidor","options":{"bucket":"Cubell","chemical":"Químic","flush":"Renovació d'aigua","pitlatrine":"Latrina de Fossa"}},"toilets/handwashing":{"label":"Rentamans"},"toilets/menstrual_products":{"options":{"no":"No"}},"toilets/position":{"label":"Posicions"},"toilets/wheelchair":{"label":"Lavablo accesible amb cadira de rodes","options":{"limited":"Limitat","no":"No","yes":"Sí"}},"toll":{"label":"Peatge"},"tomb":{"label":"Tipus","options":{"crypt":"Cripta","dolmen":"Dolmen","hypogeum":"Hipogeu","mausoleum":"Mausoleu","pyramid":"Piràmide","sarcophagus":"Sarcòfag","table":"Taula","tumulus":"Túmul"}},"tourism":{"label":"Tipus"},"tower/construction":{"label":"Construcció"},"tower/platforms":{"placeholder":"1, 2, 3…"},"tower/type":{"label":"Tipus"},"townhall/type":{"label":"Tipus"},"tracktype":{"label":"Tipus de pista","options":{"grade1":"Solid: Pavimentat","grade2":"Majoritàriament sòlid: Grava/roca amb materials tous barrejats","grade3":"Barreja uniforme de materials durs i tous","grade4":"Majoritàriament tou: terra/sorra/herba amb alguns materials durs barrejats","grade5":"Tou: terra/sorra/herba"},"placeholder":"Sòlid, majoritàriament sòlid, tou..."},"trade":{"label":"Tipus"},"traffic_calming":{"label":"Tipus","options":{"bump":"Ressalt","chicane":"Chicane","choker":"Reductor d'amplada","cushion":"Coixí Berlinès","dip":"Gual","hump":"Esquena d'ase","mini_bumps":"Xinxeta reductora de velocitat","rumble_strip":"Bandes rugoses","table":"Pas de vianants elevat"}},"traffic_calming_road":{"label":"Pacificació del trànsit"},"traffic_sign":{"label":"Senyal de trànsit"},"traffic_sign/direction":{"label":"Direcció afectada","options":{"backward":"Enrere","both":"Ambdues / Totes","forward":"Endavant"}},"traffic_signals":{"label":"Tipus"},"traffic_signals/arrow":{"label":"Fletxa tàctil"},"traffic_signals/countdown":{"label":"Temporitzador compte enrere"},"traffic_signals/direction":{"label":"Direcció afectada","options":{"backward":"Enrere","both":"Ambdós / Tots","forward":"Endavant"}},"traffic_signals/minimap":{"label":"Mapa Tàctil"},"traffic_signals/sound":{"label":"Senyals Sonores","options":{"no":"No","walk":{"description":"Només hi ha un senyal quan està permés caminar"},"yes":"Sí"}},"traffic_signals/vibration":{"label":"Vibració"},"trail_visibility":{"label":"Visibilitat del camí","options":{"bad":"Dolenta: sense marcadors. el camí a vegades no es veu/no hi és","excellent":"Excel·lent: camí no ambigu o amb presència de marques a tots llocs","good":"Bona: marcadors visibles, a vegades cal cercar-los","horrible":"Horrible: a vegades sense camí, calen nocions d'orientació","intermediate":"Intermedia: pocs marcadors, el camí es majoritàriament visible","no":"Nul·la: sense camí, calen coneixements experts d'orientació"},"placeholder":"Excel·lent, Bona, Dolenta..."},"transformer":{"label":"Tipus","options":{"phase_angle_regulator":"Regulador d'angle de fase","yes":"Rol desconegut"}},"trees":{"label":"Arbres"},"trench":{"label":"Tipus"},"tunnel":{"label":"Tipus","placeholder":"Predeterminat"},"tunnel_combo":{"label":"Tipus","options":{"avalanche_protector":"Protector d'Allaus","building_passage":"Passatge per un edifici","culvert":"Canonada de drenatge","flooded":"Inundat"}},"turning_circle":{"label":"Forma"},"two_sided":{"options":{"undefined":"No","yes":"Sí"}},"usage_rail":{"label":"Tipus d'ús","options":{"branch":"Branca","industrial":"Industrial","main":"Principal","military":"Militar","test":"Proves","tourism":"Turisme"}},"usage_waterway":{"label":"Tipus d'us","options":{"headrace":"Canal d'alimentació","irrigation":"Irrigació","spillway":"Sobreexidor","tailrace":"Canal de descàrrega","transmission":"Transmisió","transportation":"Transport"}},"utility":{"label":"Utilitat","options":{"gas":"Gas","oil":"Oli","power":"Energia","sewerage":"Aigua de rebuig","street_lighting":"Il·luminació vial","telecom":"Telecomunicacions","water":"Aigua"}},"utility_semi":{"label":"Utilitats"},"valve":{"label":"Tipus"},"vehicles":{"label":"Vehicles","options":{"bus":"Autobús","ferry":"Ferri","light_rail":"Tren lleuger","monorail":"Monocarril","subway":"Metro","train":"Tren","tram":"Tramvia","trolleybus":"Trolebus"}},"vending":{"label":"Tipus de mercaderies","options":{"bread":"Pa","cigarettes":"Cigarrets","coffee":"Cafè","condoms":"Preservatius","drinks":"Begudes","eggs":"Ous","food":"Menjar","fuel":"Combustible","ice_cream":"Gelats","milk":"Llet","newspapers":"Premsa","pizza":"Pizza","public_transport_tickets":"Bitllets de transport públic","stamps":"Segells de correus","sweets":"Llepolies","water":"Aigua potable"}},"vhf":{"label":"Canal de VHF"},"via":{"label":"Via"},"video_calls":{"label":"Videotrucades"},"visibility":{"label":"Visibilitat","options":{"area":"Més de 20m (65 peus)","house":"Fins a 5 m (16 peus)","street":"De 5 a 20 m (16 a 65 peus)"}},"volcano/status":{"label":"Estat del volcà","options":{"active":"Actiu","dormant":"Inactiu","extinct":"Extingit"}},"volcano/type":{"label":"Tipus de volcà","options":{"scoria":"Escòria","shield":"Escut","stratovolcano":"Estratovolcà"}},"voltage":{"label":"Voltatge"},"voltage/primary":{"label":"Voltatge Primari"},"voltage/secondary":{"label":"Voltatge Secondari"},"voltage/tertiary":{"label":"Voltatge Terciari"},"wall":{"label":"Tipus"},"waste":{"label":"Residus","options":{"cigarettes":"Cigarrets","dog_excrement":"Excrement de gos","organic":"Resta orgànica"}},"water":{"label":"Tipus"},"water_point":{"label":"Punt d'aigua"},"water_source":{"label":"Font d'aigua","options":{"pond":"Estany","river":"Riu","stream":"Rierol","water_tank":"Tanc d'aigua"}},"water_tank/volume":{"label":"Volum (litres)","placeholder":"10000, 20000, 30000…"},"waterway":{"label":"Tipus"},"website":{"label":"Lloc web","placeholder":"https://example.cat"},"website/menu":{"placeholder":"https://example.cat"},"wetland":{"label":"Tipus","options":{"bog":"Torbera","fen":"Mollera","mangrove":"Manglar","marsh":"Aiguamoll","saltmarsh":"marjal salada costanera","string_bog":"Aiguamoll en forma de filaments","swamp":"Pantà","tidalflat":"Plana de marea","wet_meadow":"prat humit"}},"wheelchair":{"label":"Accés per a cadires de rodes","options":{"limited":"Limitat","no":"No","yes":"Sí"},"terms":"accés per a cadira de rodes,accés per a mobilitat reduïda"},"wholesale":{"label":"A l’engrós"},"width":{"label":"Amplada (metres)"},"wikidata":{"label":"Wikidata"},"wikimedia_commons":{"label":"Pàgina de Wikimedia Commons","placeholder":"Fitxer:Example.jpg"},"wikipedia":{"label":"Viquipèdia"},"windings":{"label":"Bobines","placeholder":"1, 2, 3..."},"windings/auto":{"label":"Autotransformador","options":{"no":"No","undefined":"Suposat que és No","yes":"Sí"}},"windings/configuration":{"label":"Configuració de bobines","options":{"delta":"Delta","leblanc":"Leblanc","open":"Obert","open-delta":"Obert Delta","scott":"Scott","star":"Estrella","zigzag":"Zig Zag"}}},"presets":{"addr/interpolation":{"name":"Interpolació de l'adreça"},"address":{"name":"Adreça","terms":"adreça,direcció,domicili"},"advertising/billboard":{"name":"Tanca publicitària","terms":"cartellera,taulell"},"advertising/board":{"name":"Tauler de notificacions"},"advertising/column":{"terms":"columna publicitària,publicitat,cartell,propaganda"},"aerialway":{"name":"Transport per cable"},"aerialway/cable_car":{"name":"Telefèric","terms":"telefèric"},"aerialway/chair_lift":{"name":"Telecadira","terms":"telecadira"},"aerialway/drag_lift":{"terms":"elevador,remunta pendents,telesquí,esquí,lliscant,snowboarder"},"aerialway/gondola":{"name":"Telecabina"},"aerialway/goods":{"terms":"producte,mercaderia,article,càrrega,material"},"aerialway/magic_carpet":{"name":"Cinta remuntadora","terms":"catifa màgica,catifa rodant,cinta transportadora"},"aerialway/platter":{"name":"Teleesquí individual"},"aerialway/pylon":{"name":"Piló d'estructura de transport per cable"},"aerialway/rope_tow":{"name":"Corda remuntadora"},"aerialway/t-bar":{"name":"Elevador de barra en T"},"aeroway":{"name":"Infraestructura aeroportuària"},"aeroway/aerodrome":{"name":"Aeroport","terms":"aeroport,aeròdrom"},"aeroway/apron":{"name":"Àrea d'aparcament"},"aeroway/gate":{"name":"Porta d'aeroport","terms":"porta d'embarcament"},"aeroway/hangar":{"name":"Hàngar","terms":"dipòsit,drassana,magatzem,nau."},"aeroway/helipad":{"name":"Heliport","terms":"heliport,helisuperfície,àrea d'aturada d'helicòpters"},"aeroway/runway":{"name":"Pista d'enlairament/aterratge","terms":"pista d'enlairament,pista d'aterratge"},"aeroway/spaceport":{"name":"Port espacial"},"aeroway/taxiway":{"name":"Carrer de rodada","terms":"plataforma de rodada,carrer de taxi,pista de taxi,carrer de rodament,carrer de rodatge,carril de rodada,carril de rodatge"},"aeroway/terminal":{"name":"Terminal d'aeroport","terms":"terminal aeroportuària,terminal d'aeroport,terminal d'aeròdrom"},"aeroway/windsock":{"name":"Mànega de vent","aliases":"Anemoscopi"},"allotments/plot":{"name":"Parcel·la d'hort comunitari","terms":"jardí,tros,cooperatiu,col·lectiu,comunal"},"amenity":{"name":"Instal·lació"},"amenity/animal_boarding":{"name":"Instal·lació d'embarcament d'animals"},"amenity/animal_breeding":{"name":"Instal·lació de reproducció d'animals"},"amenity/animal_shelter":{"name":"Refugi d'animals","terms":"refugi d'animals,protectora"},"amenity/arts_centre":{"name":"Centre artístic"},"amenity/atm":{"name":"Caixer automàtic","terms":"caixer automàtic,màquina expenedora de bitllets"},"amenity/bank":{"name":"Banc","terms":"banc,institució financera,sucursal bancària"},"amenity/bar":{"name":"Bar de copes","terms":"bar de copes,local d'oci nocturn,bar musical,local d'oci,pub"},"amenity/bar/lgbtq":{"name":"Bar LGBTQ+"},"amenity/bbq":{"name":"Barbacoa/graella","terms":"barbacoa,torradora,torrador"},"amenity/bench":{"name":"Banc","terms":"banc peatonal,banc per a asseure's,banc de carrer"},"amenity/bicycle_parking":{"name":"Aparcament per a bicicletes","terms":"aparcament per a bicicletes,àrea d'aparcament de bicicletes,estació de bicicletes públiques,parking de bicis,pàrquing de bicicletes,parking de bicicletes,pàrquing de bicis"},"amenity/bicycle_parking/building":{"name":"Garatge per a bicicletes","terms":"estació de bicicletes,aparcament de bicicletes,ciclisme,bicicleta,aparcabicis"},"amenity/bicycle_rental":{"name":"Lloguer de bicicletes","terms":"lloguer de bicicletes,servei de lloguer de bicicletes"},"amenity/bicycle_repair_station":{"name":"Lloc de reparació de Bicicletes"},"amenity/boat_rental":{"name":"Lloguer d'embarcacions"},"amenity/bureau_de_change":{"name":"Canvi de divisa"},"amenity/bus_station":{"name":"Estació d'autobusos"},"amenity/cafe":{"name":"Cafeteria","terms":"cafè,bar,cafeteria,te,bistro"},"amenity/cafe/bubble_tea":{"name":"Te amb perles","terms":"perles,llet,te,tapioca"},"amenity/car_rental":{"name":"Lloguer de cotxes","terms":"lloguer de cotxes,servei de lloguer de turismes"},"amenity/car_sharing":{"name":"Estació de cotxes compartits","terms":"punt de càrrega,estació de càrrega,càrrega,cotxe elèctric,vehicle elèctric,elèctric,cotxe,vehicle,zero emissions"},"amenity/car_wash":{"name":"Rentat de cotxes","terms":"servei de neteja de cotxes,tren de rentat de cotxes,estació d'autorentat de cotxes"},"amenity/casino":{"name":"Casino"},"amenity/charging_station":{"name":"Estació de càrrega","terms":"vehicle elèctric,ev,supercarregador,mobilitat elèctrica"},"amenity/childcare":{"name":"Llar d'Infants","terms":"centre de dia,orfanat,guarderia"},"amenity/cinema":{"name":"Cinema","terms":"cinema,cine,local de projeccions cinematogràfiques,local d'esbarjo"},"amenity/clinic":{"name":"Clínica","terms":"centre de salut,ambulatori,urgències,medicina,mèdic"},"amenity/clinic/abortion":{"name":"Clínica d'avortament","terms":"interrupció,salut de la dona"},"amenity/clinic/dialysis":{"name":"Centre de diàlisi"},"amenity/clinic/fertility":{"name":"Clínica de fertilitat","terms":"ou,fertitlitat,reproducció,reproductiva,esperma,ovulació,clínica"},"amenity/clock":{"name":"Rellotge","terms":"temps"},"amenity/clock/sundial":{"name":"Rellotge solar"},"amenity/community_centre":{"name":"Centre Comunitari"},"amenity/community_centre/cultural_centre":{"name":"Centre cultural"},"amenity/community_centre/family_centre":{"name":"Centre familiar"},"amenity/community_centre/lgbtq":{"name":"Centre comunitari LGBTQ+"},"amenity/community_centre/parish_hall":{"name":"Ajuntament pedani"},"amenity/community_centre/village_hall":{"name":"Ajuntament"},"amenity/community_centre/youth_centre":{"name":"Centre Juvenil"},"amenity/compressed_air":{"name":"Aire comprimit","terms":"aire comprimit,compressor d'aire,unflador de rodes"},"amenity/conference_centre":{"name":"Centre de convencions","aliases":"Centre de conferències"},"amenity/courthouse":{"name":"Jutjat","terms":"jutjats,palau de justícia"},"amenity/coworking_space":{"name":"Espai de coworking"},"amenity/crematorium":{"name":"Crematori","terms":"crematori,cementeri,funeraria,tanatori,cementiri"},"amenity/dentist":{"name":"Dentista","terms":"dentista,dents,dent,pròtesi"},"amenity/dive_centre":{"name":"Centre de submarinisme","aliases":"Centre d'immersió"},"amenity/doctors":{"name":"Doctor","terms":"metge,metgessa,doctor,doctora,consultori,fisio"},"amenity/doctors/allergology":{"name":"Al·lergòleg","terms":"al·lèrgia,alergòleg,al·lergòloga,asma"},"amenity/doctors/cardiology":{"name":"Cardiòleg","terms":"cor,cardiac,cardiòloga,cardiologia,sistema cardiovascular,artèria"},"amenity/doctors/dermatology":{"name":"Dermatòleg","terms":"dermatologia,pell,ungles,monyo,cabells"},"amenity/doctors/gastroenterology":{"name":"gastroenteròleg","terms":"gastroenteròlega,budells,sistema digestiu,esòfag,gastrointestinal,tracte gastrointestinal,intestins,estómac"},"amenity/doctors/general":{"name":"Metge d'atenció primària","terms":"metge de família,metge,atenció primària,cap"},"amenity/doctors/haematology":{"name":"Hematòleg","terms":"hematòloga,anèmia,sang,òs,os,òssos,ossos,hematologia,leucèmia,linfoma"},"amenity/doctors/internal":{"name":"Internista","terms":"medicina interna"},"amenity/doctors/nephrology":{"name":"Nefròleg","terms":"nefròloga,ronyó,renal,ronyons"},"amenity/doctors/neurology":{"name":"Neuròleg","terms":"cervell,nervis,sistema nerviós,neurologia,neurocirugia"},"amenity/doctors/neurosurgery":{"name":"neurocirurgià","terms":"cervell,cirugia neurològica"},"amenity/doctors/oncology":{"name":"Oncòleg","terms":"càncer,quimioteràpia,oncologia,tumor,radio teràpia,medicina nuclear"},"amenity/doctors/ophthalmology":{"name":"Oftalmòleg","terms":"oftamòloga,ull,ulls,ulleres,lents,ocular,oftamologia,vista,òptica"},"amenity/doctors/orthopaedics":{"name":"Cirugià ortopèdic","terms":"ortopèdia,cirguia ortopèdica"},"amenity/doctors/otolaryngology":{"name":"Otorrinolaringòleg","terms":"otorrinolaringòloga,orella,audició,cap,coll,bescoll,nas,crani"},"amenity/doctors/paediatrics":{"name":"Pediatra","terms":"pedriatre,adolescents,xiquets,xiquetes,nois,noies,al·lots,al·lotes,infantil,pediatria"},"amenity/doctors/pathology":{"name":"Patòleg","terms":"autòpsia,anatomia,anatomia patológica,patologia anatòmica,patologia"},"amenity/doctors/plastic_surgery":{"name":"Cirugià plàstic","terms":"cirugia estètica,cirugia cosmètica,cirugia cranifacial,cirugia craneofacial,cirugia plàstica,cirugia reconstructiva"},"amenity/doctors/podiatry":{"name":"Podòleg","terms":"peu,peus,cama,cames,podologia,taló,turmell"},"amenity/doctors/proctology":{"name":"Cirugià Colorectal","terms":"cul,coló,cólon,colorectal,recte,cirugia rectal"},"amenity/doctors/pulmonology":{"name":"Pneumòleg","terms":"asma,pit,pulmó,pneumologia,pneumonia,neumonia,neumologia,pneumoleg,neumoleg,respieació,respiratiu,respirologia,respiratòri,medicin respiratòria,pulmòleg"},"amenity/doctors/radiology":{"name":"Radiòleg","terms":"radiologia,tomografia,tac,resonància magnètica,ultrasons,ecografia,sonografia,ultrasonografia"},"amenity/doctors/rheumatology":{"name":"Reumatòleg","terms":"reuma,lupus,osteoporosis,reumatologia"},"amenity/doctors/surgery":{"name":"Cirugià general","terms":"cirugia"},"amenity/doctors/trauma":{"name":"Cirugià de trauma","terms":"trauma,cirugia,fractura"},"amenity/doctors/urology":{"name":"Uròleg","terms":"urologia,penis,próstata,reproducció,escrot,bebé"},"amenity/dojo":{"name":"Dojo / Acadèmia d'arts marcials"},"amenity/dressing_room":{"name":"Vestuari"},"amenity/drinking_water":{"name":"Aigua apta per al consum","terms":"aigua potable,aigua apta per al consum humà,aigua per beure,font","aliases":"Font d'aigua potable"},"amenity/driver_training":{"name":"Circuit de pràctiques per a conduir","terms":"autoescola,carnet,am,b,a1,cotxe,moto"},"amenity/embassy":{"name":"Ambaixada"},"amenity/exhibition_centre":{"name":"Centre d'Exposicions"},"amenity/fast_food":{"name":"Local de menjar ràpid","terms":"menjar ràpid,servei de menjar ràpid,restaurant de menjar ràpid,local de menjar ràpid"},"amenity/fast_food/burger":{"name":"Hamburgueseria de menjar ràpid","terms":"hamburguesa com a menjar ràpid,desdejuni,dinar,sopar,asmorzar,autoservei,autorestaurant,menjar,parrilla,taula"},"amenity/fast_food/cafeteria":{"name":"Cantina","terms":"cantina,refector,menjador escolar"},"amenity/fast_food/chicken":{"name":"Polleria","terms":"pollastre,pollastre a l’ast,dinar,grill,taula"},"amenity/fast_food/hot_dog":{"name":"Frankfurt com a menjar ràpid"},"amenity/fast_food/kebab":{"name":"Kebab com a menjar ràpid","terms":"swawuarma,kebab,durum,dorum"},"amenity/fast_food/mexican":{"name":"Menjar mexicà com a menjar ràpid"},"amenity/fast_food/pizza":{"name":"Pizza com a menjar ràpid"},"amenity/fast_food/sandwich":{"name":"Sandwich com a menjar ràpid"},"amenity/ferry_terminal":{"name":"Terminal de ferris"},"amenity/fire_station":{"name":"Parc de bombers","terms":"caserna de bombers,base de bombers,estació de bombers"},"amenity/fountain":{"name":"Font ornamental","terms":"fontana"},"amenity/fuel":{"name":"Benzinera","terms":"betzinera,estació de servei,gasolinera"},"amenity/gambling":{"name":"Sala de Jocs","terms":"apostes,bingo,blackjack,casino,pachinco,loteria,slots,joc d'atzar,escurabujaques,jocs d'atzar,apostar,joc,saló de jocs"},"amenity/grave_yard":{"name":"Cementiri","terms":"cementiri,camp de tombes,necròpoli,ciutat dels difunts"},"amenity/grit_bin":{"name":"Contenidor de sorra"},"amenity/hospital":{"name":"Hospital","terms":"hospital,centre hospitalari,policlínica,clínica,cap,centre d'atenció primària,centre de salut,centre,atenció,primària,centre d'atenció primària."},"amenity/hunting_stand":{"name":"Punt de caça"},"amenity/ice_cream":{"name":"Gelateria","terms":"gelat,gel,iogurt,sorbet"},"amenity/internet_cafe":{"name":"Cibercafè","terms":"cifercafè,cafè d'internet,xatfeteria,cibercafè,cafè"},"amenity/lavoir":{"name":"Safareig","terms":"llavador"},"amenity/letter_box":{"name":"Bústia"},"amenity/library":{"name":"Biblioteca","terms":"biblioteca,llibreria,espai d'emmagatzematge de llibres,edifici públic per als llibres"},"amenity/loading_dock":{"name":"Moll de càrrega","terms":"porta,moll,mercaderia,descàrrega,transport,magatzem"},"amenity/lounger":{"name":"Gandula"},"amenity/love_hotel":{"name":"Meublé"},"amenity/marketplace":{"name":"Mercat","terms":"mercat,mercat veïnal,mercat de carrer"},"amenity/monastery":{"name":"Terrenys d'un monestir"},"amenity/mortuary":{"name":"Morgue"},"amenity/motorcycle_parking":{"name":"Aparcament per a motocicletes","terms":"estacionament de motos,parking de motos,aparcament de motos,estacionament per a motocicletes,parking de motocicletes,motos"},"amenity/motorcycle_rental":{"name":"Lloguer de motocicletes","aliases":"Lloguer de motos"},"amenity/nightclub":{"name":"Club nocturn","terms":"discoteca,oci nocturn,club de ball,club nocturn"},"amenity/nightclub/lgbtq":{"name":"Club nocturn LGBTQ+","terms":"club d'alterne,gay,lèsbic,lbgtb,discoteca,discoteca lgtbiq"},"amenity/nursing_home":{"name":"Llar d'avis"},"amenity/parcel_locker":{"name":"Bústia intel·ligent","terms":"parcel locker,locker,parcel,paquets,bústia,comerç,comerç en línia,comerç online,bústia intel·ligent,casiller"},"amenity/parking":{"name":"Aparcament","terms":"puesto d'estacionament,puesto d'aparcament,puesto de parking,lloc d'estacionament,lloc d'aparcament,lloc de parking"},"amenity/parking/multi-storey":{"name":"Aparcament multinivell"},"amenity/parking/underground":{"name":"Aparcament subterrani"},"amenity/parking_entrance":{"name":"Entrada / Eixida d'un aparcament","terms":"entrada de parking,ixida de parking,eixida de parking,entrada de parquing,ixida de parquing,eixida de parquing,entrada d'aparcament,ixida d'aparcament,eixida d'aparcament"},"amenity/parking_space":{"name":"Espai d'aparcament"},"amenity/parking_space/disabled":{"name":"Espai d'aparcament accessible"},"amenity/payment_terminal":{"name":"Terminal de pagament"},"amenity/pharmacy":{"name":"Farmàcia","terms":"dispensari farmacèutic,fórmules magistrals,medicaments"},"amenity/photo_booth":{"name":"Fotoràpid","terms":"fotomatón,fotomato,fotografia,dni,cabina de fotografia instantànea"},"amenity/place_of_worship":{"name":"Lloc de culte","terms":"lloc de culte,lloc per a la oració,temple de la fe,punt de trobada religiós,casa de déu"},"amenity/place_of_worship/buddhist":{"name":"Temple budista","terms":"temple budista,lloc per al culte budista,església budista"},"amenity/place_of_worship/christian":{"name":"Capella cristiana","terms":"cristià,abadia,basílica,església baptista,catedral,capella,església,casa de déu,casa d'oració,casa de lloança,lloc de pregària,monestir,missió,oratori,parròquia,sacellum,santuari"},"amenity/place_of_worship/christian/jehovahs_witness":{"name":"Sales del Regne dels testimonis de Jehovà"},"amenity/place_of_worship/christian/la_luz_del_mundo":{"name":"Templo La Luz del Mundo"},"amenity/place_of_worship/hindu":{"name":"Temple Hindú"},"amenity/place_of_worship/jewish":{"name":"Sinagoga jueva","terms":"sinagoga,temple jueu,església jueva,culte jueu,jueu"},"amenity/place_of_worship/muslim":{"name":"Mesquita musulmana","terms":"mesquita,temple musulmà,espai musulmà,musulmà"},"amenity/place_of_worship/shinto":{"name":"Santuari sintoísta"},"amenity/place_of_worship/sikh":{"name":"Temple Sikh"},"amenity/place_of_worship/taoist":{"name":"Temple Taoista"},"amenity/planetarium":{"name":"Planetari"},"amenity/police":{"name":"Comissaria de Policia","terms":"comissaria de policia,dependències policials,edifici policial,base de la policia"},"amenity/polling_station":{"name":"Col·legi Electoral Permanent"},"amenity/post_box":{"name":"Bústia","terms":"bústia,bústia pública,correus,carta,servei de correus,enviament"},"amenity/post_depot":{"name":"Oficina de classificació","terms":"correus,procesament del correu postal,postal"},"amenity/post_office":{"name":"Oficina de correus","terms":"oficina de correus,correus,edifici de correus,cartes,carters"},"amenity/prison":{"name":"Terrenys d'una presó"},"amenity/pub":{"name":"Bar","terms":"bar,pub,granja,local d'oci nocturn,bareto"},"amenity/pub/irish":{"name":"Pub Irlandés"},"amenity/pub/lgbtq":{"name":"Bar LGTBQ+","terms":"bar gay,bar lèsbic,lgtb,lgbtq bar,alterne"},"amenity/pub/microbrewery":{"name":"Bar amb cervesa","terms":"alcohol,beguda,cervesa,birra,cerveseria"},"amenity/public_bath":{"name":"Banys públic","terms":"banys públic,bany públic,banys,bany"},"amenity/public_bookcase":{"name":"Prestatgeria pública","terms":"llibre,intercanvi,passallibres"},"amenity/ranger_station":{"name":"Base d'Agents Rurals"},"amenity/recycling":{"name":"Reciclatge"},"amenity/recycling/container/green_waste":{"name":"Contenidor de residus verds","terms":"biodegradable,biologic,compost,descomposable,contenidor de basura,residus de jardí,orgànic,basura,restes de menjar"},"amenity/recycling_centre":{"name":"Ecoparc/Deixalleria","terms":"centre de reciclatge,punt verd,punt net"},"amenity/refugee_site":{"name":"Camp de refugiats"},"amenity/research_institute":{"name":"Terrenys d'un institut de recerca"},"amenity/restaurant":{"name":"Restaurant","terms":"restaurant,lloc per menjar,bistro,wok,trattoria,pizzeria"},"amenity/restaurant/american":{"name":"Restaurant americà"},"amenity/restaurant/asian":{"name":"Restaurant asiàtic"},"amenity/restaurant/chinese":{"name":"Restaurant xinès"},"amenity/restaurant/french":{"name":"Restaurant francès","terms":"cuina francesa"},"amenity/restaurant/german":{"name":"Restaurant alemany","terms":"cuina alemanya"},"amenity/restaurant/greek":{"name":"Restaurant grec","terms":"cuina grega"},"amenity/restaurant/indian":{"name":"Restaurant indi","terms":"cuina índia"},"amenity/restaurant/italian":{"name":"Restaurant italià","terms":"cuina italiana"},"amenity/restaurant/japanese":{"name":"Restaurant japonès","terms":"cuina japonesa"},"amenity/restaurant/mexican":{"name":"Restaurant mexicà","terms":"cuina mexicana"},"amenity/restaurant/pizza":{"name":"Pizzeria","terms":"pizzes"},"amenity/restaurant/seafood":{"name":"Restaurant de Mariscos"},"amenity/restaurant/sushi":{"name":"Restaurant de sushi"},"amenity/restaurant/thai":{"name":"Restaurant tailandès","terms":"cuina tailandesa"},"amenity/restaurant/turkish":{"name":"Restaurant turc","terms":"cuina turca"},"amenity/restaurant/vietnamese":{"name":"Restaurant vietnamita"},"amenity/sanitary_dump_station":{"name":"Estació de buidatge de lavabos"},"amenity/shelter":{"name":"Refugi"},"amenity/shelter/gazebo":{"name":"Gazebo"},"amenity/shelter/lean_to":{"name":"Alpendre"},"amenity/shelter/public_transport":{"name":"Marquesina"},"amenity/shower":{"name":"Dutxa"},"amenity/smoking_area":{"name":"Àrea per a fumadors"},"amenity/social_centre":{"name":"Centre social"},"amenity/social_facility":{"name":"Centre social","terms":"comunitat,sense ànim de lucre,serveis socials,servicis socials"},"amenity/social_facility/ambulatory_care":{"name":"Atenció ambulatòria","terms":"ambulatori,ambulatòria,cura ambulatòria,atenció ambulatòria"},"amenity/social_facility/assisted_living":{"name":"Residència assistida per a gent major","terms":"residència assistida per a gent major,residència assistida per a gent gran,residència assistida per a anciants"},"amenity/social_facility/food_bank":{"name":"Banc d'aliments","terms":"banc d'aliments,economat,menjador social"},"amenity/social_facility/group_home":{"name":"Habitatge grupal d'ancians","terms":"geriàtric,residencia geriàtrica"},"amenity/social_facility/homeless_shelter":{"name":"Refugi per a persones sense llar","terms":"sense sostre,vagabund,indigent,sense casa,sense llar,sensellar"},"amenity/social_facility/nursing_home":{"name":"Llar d'ancians","terms":"avis,ancians,residència d'ancians,residència d'avis,residència"},"amenity/studio":{"name":"Estudi"},"amenity/studio/audio":{"name":"Estudi de gravació"},"amenity/studio/radio":{"name":"Estació de ràdio","terms":"ràdio am,ràdio fm,ràdio,emissió de ràdio,estúdio de ràdio,estació radiofònica"},"amenity/studio/television":{"name":"Estudis de Televisió","terms":"televisió,emissió televisiva,estació de televisió,tv,estudi de televisió"},"amenity/studio/video":{"name":"Estudis Cinematogràfics"},"amenity/taxi":{"name":"Parada de Taxi","terms":"parada de taxi,estació de taxis,taxi,taxis"},"amenity/telephone":{"name":"Telèfon","terms":"telèfon,telèfon públic,cabina telefònica,cabina de telèfon públic"},"amenity/theatre":{"name":"Teatre","terms":"cinema,sala de cine,complex de cines,edifici de cines"},"amenity/ticket_validator":{"name":"Validador de bitllets"},"amenity/toilets":{"name":"lavabo","terms":"lavabos,serveis,lavabos públics,w.c"},"amenity/toilets/disposal/pitlatrine":{"name":"Latrina de Fossa"},"amenity/toilets/portable":{"name":"Lavabo portàtil"},"amenity/townhall":{"name":"Ajuntament","terms":"ajuntament,casa consistorial,consistori,govern local,seu del govern local"},"amenity/townhall/city":{"name":"Ajuntament","aliases":"Casa consistorial\nCasa de la ciutat\nCasa de la vila\nPaeria\nAlcaldia\nCasa del comú\nBatllia\nBatlia"},"amenity/vehicle_inspection":{"name":"Inspecció de vehicles","terms":"itv"},"amenity/vending_machine":{"name":"Màquina expenedora","terms":"màquina expenedora,màquina de vènding","aliases":"Màquina de vènding\nMàquina de venda"},"amenity/vending_machine/bottle_return":{"name":"Màquina de retorn d'ampolles","terms":"retorn d'ampolles,retorn de botelles,ampolles,botelles,reciclos,reciclatge"},"amenity/vending_machine/bread":{"name":"Màquina expenedora de pà","terms":"pà,baguette,baguet"},"amenity/vending_machine/cigarettes":{"name":"Màquina de tabac","terms":"cigarretes,tabac","aliases":"Màquina expenedora de tabac\nExpenedora de tabac"},"amenity/vending_machine/coffee":{"name":"Expenedora de cafè","terms":"cafè"},"amenity/vending_machine/condoms":{"name":"Expenedor de preservatius","terms":"condó,preservatiu","aliases":"Màquina de venda de preservatius"},"amenity/vending_machine/drinks":{"name":"Expenedora de begudes","aliases":"Màquina expenedora de begudes\nMàquina de venda de begudes\nMàquina de vènding de begudes"},"amenity/vending_machine/electronics":{"name":"Màquina expenedora de dipositius electrònics","terms":"cable,carregador,auricular,cascos,telèfon,tablet,tauleta,tableta,mòbil"},"amenity/vending_machine/excrement_bags":{"name":"Dispensador de bosses per a excrements"},"amenity/vending_machine/feminine_hygiene":{"name":"Expenedora d'articles d'higiene femenina","aliases":"Màquina de venda d'articles d'higiene femenina"},"amenity/vending_machine/food":{"name":"Màquina expenedora de menjar"},"amenity/vending_machine/food/snacks":{"name":"Màquina de vènding de comestibles"},"amenity/vending_machine/ice_cream":{"name":"Expenedora de gelats"},"amenity/vending_machine/ice_cubes":{"name":"Màquina expenedora de gel","terms":"cubitos,cubs,gel"},"amenity/vending_machine/newspapers":{"name":"Màquina expenedora de diaris","terms":"diari,periòdic,premsa"},"amenity/vending_machine/parking_tickets":{"name":"Màquina de cobrament del tiquet d'aparcament"},"amenity/vending_machine/pizza":{"name":"Màquina expenedora de pizzes"},"amenity/vending_machine/public_transport_tickets":{"name":"Màquina de venda de títols de transport públic"},"amenity/vending_machine/stamps":{"name":"Màquina expenedora de segells","terms":"segell,correu,postal,correu postal"},"amenity/veterinary":{"name":"Veterinari","terms":"clínica per a animals,veterinari,hospital veterinari,cura d'animals"},"amenity/waste/dog_excrement":{"name":"Paperera per a excrements de gos"},"amenity/waste_basket":{"name":"Paperera"},"amenity/waste_disposal":{"name":"Contenidor d'escombraries"},"amenity/waste_transfer_station":{"name":"Centre de tractament de residus"},"amenity/water_point":{"name":"Aigua potable d'autocaravana"},"amenity/watering_place":{"name":"Font d'aigua per animals (abeurador)","terms":"abeurador"},"area":{"name":"Àrea","terms":"àrea"},"area/footway":{"name":"Àrea de vianants"},"area/highway":{"name":"Àrea de la carretera"},"attraction":{"name":"Atracció"},"attraction/amusement_ride":{"name":"Atracció de fira"},"attraction/animal":{"name":"Recinte animal","terms":"anfibi,parc animal,aquarium,os,pardal,ocell,oroneta,peix,insecte,lleó,mamífer,mico,mono,pingüí,reptil,parc,tigre,zoo"},"attraction/big_wheel":{"name":"Roda","terms":"nòria,sínia,fira,parc temàtic"},"attraction/bumper_car":{"name":"Autos de xoc","terms":"cotxes de xoc"},"attraction/bungee_jumping":{"name":"Salt elàstic","terms":"salt,botar,bot,bungee,puenting,pont,benji,corda elàstica,salt al buit,bungee jumping"},"attraction/carousel":{"name":"Cavallets"},"attraction/dark_ride":{"name":"Tren fantasma"},"attraction/drop_tower":{"name":"Torres de caiguda lliure","terms":"caiguda lliure,caiguda,lliure,parc d'atraccions,atracció de fira,torre"},"attraction/kiddie_ride":{"name":"Passeig infantil","terms":"passeig infantil,atracció per a xiquets,atracció per a nens"},"attraction/log_flume":{"name":"Canal de troncs","terms":"parc d'atraccions,canal,troncs,atracció"},"attraction/maze":{"name":"Laberint"},"attraction/pirate_ship":{"name":"Passeig en vaixell pirata"},"attraction/river_rafting":{"name":"Passeig pels ràpids del riu"},"attraction/roller_coaster":{"name":"Muntanya russa"},"attraction/summer_toboggan":{"name":"Tobogan d'estiu"},"attraction/swing_carousel":{"name":"Gronxadors penjants"},"attraction/train":{"name":"Tren turístic"},"attraction/water_slide":{"name":"Tobogan d'aigua"},"barrier":{"name":"Barrera","terms":"tanca,valla,paret,seto,tancament,filferrada,reixat,reixa"},"barrier/block":{"name":"Bloc","terms":"bloc"},"barrier/bollard":{"name":"Piló","terms":"piló,pilona,bolard,bol·lard,bolardo"},"barrier/bollard_line":{"name":"Filera de pilons","terms":"filera de bolards,filera de bol·lards"},"barrier/border_control":{"name":"Control de fronteres","terms":"control de frontereres,control fronterer"},"barrier/cattle_grid":{"name":"Reixat","terms":"reixat,reixat ramader"},"barrier/chain":{"name":"Cadena"},"barrier/city_wall":{"name":"Muralla","terms":"muralla,muralla medieval,paret de la ciutat,mur,tanca,tancament,medieval,monument"},"barrier/cycle_barrier":{"name":"Barrera per a ciclistes","terms":"barrera per a ciclistes,ciclisme,bicicleta,ruta cicloturista,valla,tanca,tancament,tanca per a bicicletes"},"barrier/ditch":{"name":"Trinxera"},"barrier/entrance":{"name":"Entrada"},"barrier/fence":{"name":"Tanca","terms":"valla,tanca,tancament,barrera,reixa"},"barrier/gate":{"name":"Porta","terms":"porta d'embarcament d'avions,porta d'aeroport,porta"},"barrier/guard_rail":{"name":"Guarda rail"},"barrier/handrail":{"name":"Barana"},"barrier/hedge":{"name":"Tanca de bardissa","terms":"seto,tanca de bardissa,valla de seto,valla verda,valla de plantes,tanca de plantes"},"barrier/height_restrictor":{"name":"Restrictor de gàlib"},"barrier/jersey_barrier":{"name":"Barrera Jersey"},"barrier/kerb":{"name":"Vorada","terms":"vorera,bordillo,rebaix"},"barrier/kerb/flush":{"name":"Vorada rasa","terms":"vorada al ras,vorada a ras,vorada ras,vorada rasa,gual ras"},"barrier/kerb/lowered":{"name":"Vorada rebaixada/gual","terms":"vorada rebaixada,rebaix,gual rebaixat"},"barrier/kerb/raised":{"name":"Vorada elevada","terms":"vorada elevada,vorada alçada,gual alçat,gual elevat,gual alt"},"barrier/kerb/rolled":{"name":"Vorada enrotllada","terms":"forma de canal,canal,canal de paviment,vorada en forma de canal,vorada corbada,vora encorbada,vorada encorbada,gual en forma de canal,vorada enrotllada,gual enrotllat"},"barrier/kissing_gate":{"name":"Porta giratòria","terms":"porta giratòria,porta sense retorn,accés giratori,porta de no retorn"},"barrier/log":{"name":"Obstrucció per arbre caigut"},"barrier/motorcycle_barrier":{"name":"Barrera per a motocicletes"},"barrier/planter":{"name":"Jardinera (Barrera)"},"barrier/retaining_wall":{"name":"Mur de contenció","terms":"mur de contenció,paret de contenció"},"barrier/stile":{"name":"Tanca amb escalons","terms":"escala de tanca,tanca amb esgraons,tanca amb esglaons"},"barrier/swing_gate":{"name":"Porta batent"},"barrier/toll_booth":{"name":"Peatge","terms":"peatge,autopista de peatge,cabina de peatge,estació de peatge,punt de peatge"},"barrier/turnstile":{"name":"Torniquet d'accés","terms":"molinet"},"barrier/wall":{"name":"Mur","terms":"mur,paret,muralla"},"barrier/wall/noise_barrier":{"name":"Barrera acústica","terms":"barrera acústica,barrera de soroll"},"barrier/yes":{"name":"Barrera (Tipus sense especificar)"},"boundary":{"name":"Límit","aliases":"Frontera"},"boundary/administrative":{"name":"Límit administratiu","terms":"límit administratiu,frontera administrativa,delimitació administrativa"},"building":{"name":"Edifici","terms":"edifici,bloc de pisos,nau industrial,centre comercial,oficines,bloc,casa,barraca"},"building/allotment_house":{"name":"Casa de l'hort"},"building/apartments":{"name":"Edifici d'apartaments","terms":"edifici d'apartaments,apartaments,pisos,bloc de pisos,bloc"},"building/bakehouse":{"name":"Forn de pa"},"building/barn":{"name":"Graner"},"building/boathouse":{"name":"Caseta per a vaixells","terms":"vaixells,bots,barcos,enmgatzemar vaixelles"},"building/bungalow":{"name":"Bungalou"},"building/bunker":{"name":"Búnquer"},"building/cabin":{"name":"Cabana","terms":"cabina"},"building/carport":{"name":"Aixopluc","terms":"pàrquing cobert,aparcament cobert,cobert,cotxe"},"building/cathedral":{"name":"Edifici Catedralici"},"building/chapel":{"name":"Edifici de capella"},"building/church":{"name":"Edifici d'església"},"building/civic":{"name":"Edifici cívic","aliases":"Edifici públic"},"building/college":{"name":"Edifici d'una escola professional"},"building/commercial":{"name":"Edifici comercial","terms":"edifici comercial"},"building/construction":{"name":"Edifici en construcció","terms":"edifici en construcció,edifici baix construcció"},"building/cowshed":{"name":"Estable de vaques"},"building/detached":{"name":"Casa aïllada","terms":"llar,casa,familiar,unifamiliar,residència,allotjament"},"building/dormitory":{"name":"Edifici d'habitacions","terms":"dormitori"},"building/entrance":{"name":"Entrada/Sortida"},"building/farm":{"name":"Casa d'una granja"},"building/farm_auxiliary":{"name":"Edifici d'una granja"},"building/fire_station":{"name":"Edifici d'un parc de bombers","terms":"bombers,emergències,foc,112"},"building/garage":{"name":"Garatge","terms":"garatge"},"building/garages":{"name":"Garatges"},"building/ger":{"name":"Iurta","terms":"ger,yurta"},"building/grandstand":{"name":"Tribuna","terms":"grada,seients,tribuna,estadi,camp,espectadors"},"building/greenhouse":{"name":"Hivernacle"},"building/hangar":{"name":"Hangar"},"building/hospital":{"name":"Edifici hospitalari","terms":"edifici hospitalari,hospital,urgències,planta,consultes externes,uci,uvi,quiròfans"},"building/hotel":{"name":"Edifici hoteler"},"building/house":{"name":"Casa","terms":"casa"},"building/houseboat":{"name":"Casa flotant","terms":"casa,familia,residència,habitatge"},"building/hut":{"name":"Cabana","terms":"barraca"},"building/industrial":{"name":"Edifici industrial","terms":"edifici industrial"},"building/kindergarten":{"name":"Edifici de preescolar"},"building/manufacture":{"name":"Edifici per a producció industrial"},"building/mosque":{"name":"Edifici d'una mesquita"},"building/office":{"name":"Edifici d'oficines"},"building/outbuilding":{"name":"Construcció annexa"},"building/pavilion":{"name":"Pavelló"},"building/public":{"name":"Edifici públic","terms":"edifici públic"},"building/residential":{"name":"Edifici residencial","terms":"edifici residencial"},"building/retail":{"name":"Edifici comercial","terms":"tenda,botiga,comerç,edifici comercial,detall"},"building/roof":{"name":"Teulada","terms":"terrat,teulada"},"building/ruins":{"name":"Edifici en ruïnes"},"building/school":{"name":"Edifici escolar","terms":"escola,gimnàs,poliesportiu,aulari,seminaris,pati,esbarjo,aules,despatxos,tallers,ateliers,aules d'informàtica,classes,classe,sala de música,corredors,corredor,pasillo,pasillos,passadís,passadissos,sala de professors,recepció"},"building/semidetached_house":{"name":"Casa adossada","terms":"llar,casa,familiar,unifamiliar,residència,allotjament,urbanització"},"building/service":{"name":"Edifici de serveis"},"building/shed":{"name":"Traster"},"building/stable":{"name":"Estable"},"building/stadium":{"name":"Edifici d'un estadi"},"building/static_caravan":{"name":"Autocaravana"},"building/sty":{"name":"Porcellera"},"building/synagogue":{"name":"Sinagoga"},"building/temple":{"name":"Edifici d'un temple"},"building/train_station":{"name":"Edifici d'estació de tren"},"building/transportation":{"name":"Edifici per a transports","terms":"estació,autobús,autocar,bus"},"building/university":{"name":"Edifici universitari","terms":"edifici universitari"},"building/warehouse":{"name":"Magatzem","terms":"magatzem,bodega,depòsit,dipòsit"},"building_part":{"name":"Part de l'edifici"},"building_point":{"name":"Edifici"},"cemetery/grave":{"name":"Tomba"},"cemetery/sector":{"name":"Secció de cementiri"},"climbing/route":{"name":"Ruta d'escalada"},"climbing/route_bottom":{"name":"Inici de ruta d'escalada"},"club":{"name":"Club"},"club/scout":{"name":"Grup d'Scout"},"club/sport":{"name":"Club d'esports","terms":"club,esport,associació,esportistes,deport,deportistes,associació d'esports"},"craft":{"name":"Artesà"},"craft/agricultural_engines":{"name":"Mecànic agrícola","terms":"tractors,maquinària agrícola,agrícola,llaurador,pagés,ferramentes"},"craft/basket_maker":{"name":"Cistellaire"},"craft/beekeeper":{"name":"Apicultor"},"craft/blacksmith":{"name":"Ferrer"},"craft/boatbuilder":{"name":"Constructor d'embarcacions"},"craft/bookbinder":{"name":"Enquadernador"},"craft/brewery":{"name":"Cerveseria","terms":"alcohol,cervesa,beguda,birra,cidra"},"craft/carpenter":{"name":"Fuster","terms":"fuster,fusteria,ebenista,ebenisteria,tallista"},"craft/carpet_layer":{"name":"Moquetista"},"craft/caterer":{"name":"Servei de càtering"},"craft/chimney_sweeper":{"name":"Escura-xemeneies"},"craft/cleaning":{"name":"Servei de neteja"},"craft/clockmaker":{"name":"Rellotger"},"craft/confectionery":{"name":"Artesà de llaminadures"},"craft/distillery":{"name":"Destil·leria","terms":"alcohol,beguda,destileria,bourbon,ginebra,ron,licor,mezcal,espirituoses,begudes espirituoses,tequila,vodka,ratafia,cassalla,whiskey,whiski,whisky,vi"},"craft/dressmaker":{"name":"Sastreria"},"craft/electrician":{"name":"Electricista"},"craft/electronics_repair":{"name":"Botiga de reparacions electròniques","terms":"tenda de reparacions electròniques,telèfon,reparació de mòbils,mòbil"},"craft/floorer":{"name":"Instal·lador de sòls"},"craft/gardener":{"name":"Jardiner"},"craft/glaziery":{"name":"Vidrieria"},"craft/hvac":{"name":"Empresa d'instal·lacions climàtiques","terms":"aire condicionat,ventilació,calefacció,estufa"},"craft/insulator":{"name":"Aïllador","terms":"aïllant,isolador"},"craft/joiner":{"name":"Ebenista"},"craft/key_cutter":{"name":"Fabricant de claus","terms":"duplicació de claus,copia de claus"},"craft/locksmith":{"name":"Copisteria de claus"},"craft/metal_construction":{"name":"Treballador del metall"},"craft/painter":{"name":"Pintor","terms":"pintor"},"craft/parquet_layer":{"name":"Instal·lador de parquet"},"craft/photographer":{"name":"Fotògraf","terms":"fotògraf"},"craft/photographic_laboratory":{"name":"Laboratori fotogràfic","terms":"pel·lícula"},"craft/plasterer":{"name":"Guixaire","terms":"guix,algeps,algep"},"craft/plumber":{"name":"Llauner","terms":"canonada,canal,canó,col·lector,conducte"},"craft/pottery":{"name":"Terrissaire","terms":"ceràmica,forn,olla,gerro","aliases":"Fabricant de ceràmica"},"craft/rigger":{"name":"Armador d'embarcacions","terms":"aparellador"},"craft/roofer":{"name":"Constructor de teulades","terms":"teulador"},"craft/saddler":{"name":"Cuirasser"},"craft/sailmaker":{"name":"Fabricant de veles","terms":"veler,velera,fabricant de veles"},"craft/sawmill":{"name":"Serradora","terms":"talador"},"craft/scaffolder":{"name":"Muntador de bastides"},"craft/sculptor":{"name":"Escultor"},"craft/shoemaker":{"name":"Sabater"},"craft/signmaker":{"name":"Retolista","terms":"ròtul,retolista,cartell,retul"},"craft/stonemason":{"name":"Manobra"},"craft/tailor":{"name":"Sastreria"},"craft/tiler":{"name":"Enrajolador"},"craft/tinsmith":{"name":"Llauner"},"craft/upholsterer":{"name":"Creador de mobles"},"craft/watchmaker":{"name":"Fabricant de rellotges"},"craft/window_construction":{"name":"Fabricant de finestres"},"craft/winery":{"name":"Celler"},"demolished/building":{"name":"Edifici recentment demolit"},"disused/railway":{"name":"Element ferroviari en desús"},"disused/shop":{"name":"Botiga en desús"},"education/dancing_school":{"name":"Escola de dança"},"education/driving_school":{"name":"Autoescola"},"education/kindergarten":{"name":"Parc de guarderia"},"education/language_school":{"name":"Escola d'idiomes"},"education/music_school":{"name":"Escola de música"},"education/school":{"name":"Recinte escolar"},"education/university":{"name":"Campus universitari"},"embankment":{"name":"Terraplè"},"emergency":{"name":"Objecte d'emergència"},"emergency/ambulance_station":{"name":"Estació d'ambulàncies","terms":"parada d'ambulàncies,emergències,ambulàncies,metge"},"emergency/assembly_point":{"name":"Punt de trobada d'emergència","terms":"emergencia,punt de trobada,punt d'emergències,trobada d'emergència"},"emergency/defibrillator":{"name":"Desfibril·lador"},"emergency/disaster_response":{"name":"Estació de resposta a desastres"},"emergency/fire_extinguisher":{"name":"Extintor"},"emergency/fire_hose":{"name":"Manguera d'incendis"},"emergency/fire_hydrant":{"name":"Boca d'incendis","terms":"boca d'incendis,presa d'aigua per a bombers,incendi,bombers,sortida d'aigua,aigua,hidrant"},"emergency/first_aid_kit":{"name":"Equip de primers auxilis"},"emergency/landing_site":{"name":"Lloc d'aterratge d'emergències"},"emergency/life_ring":{"name":"Salvavides"},"emergency/lifeboat_station":{"name":"Estació de bots salvavides"},"emergency/lifeguard":{"name":"Socorrista"},"emergency/mountain_rescue":{"name":"Rescat de muntanya"},"emergency/phone":{"name":"Telèfon per a emergències","terms":"telèfon d'emergències,sos,s.o.s"},"emergency/siren":{"name":"Sirena"},"emergency/water_reservoir":{"name":"Aigua reservada per a emergències"},"emergency/water_reservoir_covered":{"name":"Aigua reservada per a emergències (subterrani)"},"emergency/water_tank":{"name":"Dipòsit d'aigua d'emergència","terms":"tanc d'aigua,cisterna,dipòsit"},"entrance":{"name":"Entrada / Sortida","terms":"entrada,eixida,ixida,porta"},"entrance/emergency":{"name":"Sortida d'emergència"},"entrance/emergency_ward_entrance":{"name":"Entrada a la sala d'urgències"},"entrance/main":{"name":"Entrada principal"},"entrance/shop":{"name":"Entrada a tenda"},"ford":{"name":"Ford","terms":"gual"},"ford_line":{"name":"Gual"},"golf/bunker":{"name":"Bunker","terms":"perill"},"golf/fairway":{"name":"Fairway"},"golf/green":{"name":"Green"},"golf/hole":{"name":"Forat"},"golf/lateral_water_hazard":{"name":"Obstacle d'aigua lateral"},"golf/path":{"name":"Camí per a vianants de Golf"},"golf/rough":{"name":"Rough"},"golf/tee":{"name":"Àrea inicial"},"golf/water_hazard":{"name":"Obstacle d'aigua"},"healthcare":{"name":"Centre de salut"},"healthcare/alternative":{"name":"Medicina alternativa"},"healthcare/alternative/acupuncture":{"name":"Practicant d'acupuntura"},"healthcare/alternative/chiropractic":{"name":"Quiropràctic"},"healthcare/audiologist":{"name":"Audiòleg"},"healthcare/birthing_center":{"name":"Centre de parts"},"healthcare/blood_donation":{"name":"Centre de donació de sang"},"healthcare/counselling":{"name":"Centre d'assessorament"},"healthcare/dentist/orthodontics":{"name":"Ortodontista","terms":"ortodòncia,braquets,aparato,dents,alineament dental,dent,bucal,boca"},"healthcare/hospice":{"name":"Hospici"},"healthcare/laboratory":{"name":"Laboratori mèdic"},"healthcare/midwife":{"name":"Llevador","terms":"llevador,llevadora,doula,matrona,infermer obstetricoginecològic,infermera obstetricoginecològica"},"healthcare/occupational_therapist":{"name":"Terapeuta ocupacional"},"healthcare/optometrist":{"name":"Optometrista","terms":"ull,ulleres,lent,lentilles,visió"},"healthcare/physiotherapist":{"name":"Fisioterapeuta"},"healthcare/podiatrist":{"name":"Podòleg","terms":"peu,peus,cama,cames,podologia,taló,turmell"},"healthcare/psychotherapist":{"name":"Psicoterapeuta"},"healthcare/rehabilitation":{"name":"Centre de reabilitació"},"healthcare/sample_collection":{"name":"Instal·lació de col·leccions de mostres"},"healthcare/speech_therapist":{"name":"Logopeda"},"healthcare/yes":{"name":"Instal·lació sanitària (Tipus sense especificar)"},"highway":{"name":"Element viari"},"highway/bridleway":{"name":"Camí de ferradura","terms":"camí de ferradura,cavall,camí eqüestre,via eqüestre,ferradura,via de ferradura"},"highway/bus_guideway":{"name":"Via d'autobús"},"highway/bus_stop":{"name":"Parada d'autobús","aliases":"Parada de bus"},"highway/busway":{"name":"Camí d'autobús"},"highway/construction":{"name":"Carretera en construcció"},"highway/corridor":{"name":"Corredor interior"},"highway/crossing":{"name":"Pas de vianants","terms":"travessera,cruïlla,pas de vianants,pas zebra,pas de peatons,pas de transeünts"},"highway/crossing/informal":{"name":"Camí informal"},"highway/crossing/traffic_signals":{"name":"Pas de vianants controlat per semàfors"},"highway/crossing/uncontrolled":{"name":"Pas de vianants senyalitzat"},"highway/crossing/unmarked":{"name":"Pas de vianants sense senyalització horitzontal"},"highway/cycleway":{"name":"Carril Bici","terms":"carril bici,via verda,via ciclista"},"highway/cycleway/bicycle_foot":{"name":"Camí per a bicicletes i vianants"},"highway/cycleway/crossing":{"name":"Pas per a bicicletes"},"highway/cycleway/crossing/bicycle_foot":{"name":"Pas per a vianants i bicicletes"},"highway/cycleway/crossing/traffic_signals":{"name":"Creuament ciclista amb semàfor","terms":"semàfor,bici,bicicleta,pista ciclista,creuament ciclista"},"highway/cycleway/crossing/uncontrolled":{"name":"Pas de bicicletes amb senyalització horitzontal"},"highway/cycleway/crossing/unmarked":{"name":"Pas de bicicletes sense senyalització horitzontal"},"highway/cycleway/traffic_island":{"name":"Illa de refugi per a ciclistes"},"highway/cycleway/traffic_island_shared":{"name":"Illa de refugi per a ciclistes i vianants"},"highway/elevator":{"name":"Ascensor"},"highway/elevator_line":{"name":"Ascensor inclinat"},"highway/emergency_access_point":{"name":"Punt d'accés d'emergència"},"highway/emergency_bay":{"name":"Lloc d'aturada d'emergència","aliases":"Lloc de parada d'emergència"},"highway/footway":{"name":"Camí per a vianants","terms":"camí per a vianants,carrer peatonal,camí per a peatons,a peu,camí per caminar,vianant,vianants,peató,peatons,transeünt,transeünts,peatonal"},"highway/footway/access_aisle":{"name":"Corredor d'accés"},"highway/footway/conveying":{"name":"Camí per a vianants mòbil"},"highway/footway/crossing":{"name":"Pas de vianants"},"highway/footway/crossing/traffic_signals":{"name":"Pas de vianants controlat per semàfors"},"highway/footway/crossing/uncontrolled":{"name":"Pas de vianants senyalitzat"},"highway/footway/crossing/unmarked":{"name":"Pas de vianants sense senyalització horitzontal"},"highway/footway/informal":{"name":"Camí de vianants informal"},"highway/footway/sidewalk":{"name":"Vorera","terms":"vorera,voravia"},"highway/footway/traffic_island":{"name":"Illa de refugi"},"highway/give_way":{"name":"Senyal de cediu el pas"},"highway/living_street":{"name":"Carrer residencial","terms":"carrer residencial"},"highway/mini_roundabout":{"name":"Mini-Rotonda","terms":"minirotonda,mini-rotonda,rotonda petita"},"highway/motorway":{"name":"Autopista","terms":"autopista,autovia"},"highway/motorway_junction":{"name":"Intersecció d'autopista / Sortida","terms":"eixida,ixida"},"highway/motorway_link":{"name":"Enllaç d'autopista","terms":"rampa,entrada,incorporació,baixada,addició,autopista,autovia,eix"},"highway/passing_place":{"name":"Lloc de pas"},"highway/path":{"name":"Sender","terms":"sender,corriol,senda,camí"},"highway/path/crossing":{"name":"Pas per a vianants i bicicletes"},"highway/path/crossing/traffic_signals":{"name":"Pas per a vianants i bicicletes amb senyals per a vianants"},"highway/path/crossing/uncontrolled":{"name":"Pas per a vianants i bicicletes senyalitzat"},"highway/path/crossing/unmarked":{"name":"Pas per a vianants i bicicletes sense senyalització"},"highway/path/informal":{"name":"Camí informal","terms":"senda informal,sender informal"},"highway/pedestrian_area":{"name":"Àrea de vianants"},"highway/pedestrian_line":{"name":"Carrer per vianants"},"highway/primary":{"name":"Carretera primària","terms":"carretera primària,carretera de 1r ordre"},"highway/primary_link":{"name":"Enllaç de carretera primària","terms":"enllaç amb primària"},"highway/raceway/karting":{"name":"Pista de carreres de karts"},"highway/raceway/motocross":{"name":"Pista de carreres de motocròs"},"highway/residential":{"name":"Carrer","terms":"carrer"},"highway/rest_area":{"name":"Àrea de descans","terms":"parada,banquina"},"highway/road":{"name":"Carretera sense classificació","terms":"via desconeguda,via per arreglar"},"highway/secondary":{"name":"Carretera secundària","terms":"carretera secundària,carretera de 2n ordre"},"highway/secondary_link":{"name":"Enllaç de carretera secundària","terms":"enllaç amb secundària"},"highway/service":{"name":"Via de servei","terms":"via de servei,lateral"},"highway/service/alley":{"name":"Carreró","terms":"carreró,cul de sac"},"highway/service/drive-through":{"name":"Via de servei al vehicle","terms":"pas de vehicles,via d'autoservei,servei d'atenció a través del cotxe"},"highway/service/driveway":{"name":"Via d'accés a una propietat","terms":"entrada de vehicles"},"highway/service/emergency_access":{"name":"Accés per a emergències","terms":"accés d'emergència"},"highway/service/parking_aisle":{"name":"Carrer d'aparcament","terms":"passadís de pàrquing,pàrquing,parking,aparcament,carrer interior d'aparcament,carrer per aparcar,carrer de pàrquing,carrer de parking"},"highway/services":{"name":"Àrea de servei","terms":"motel,estació de servei,àrea de servei,parada de camioners,parada de camions,estació de servici,àrea de servici"},"highway/speed_camera":{"name":"Radar de velocitat","terms":"radar,velocitat màxima,límit de velocitat,multa"},"highway/steps":{"name":"Escales","terms":"esgraons,graons,escalinata,escala,escalons"},"highway/steps/conveying":{"name":"Escales mecàniques"},"highway/stop":{"name":"Senyal de stop"},"highway/street_lamp":{"name":"Fanal"},"highway/tertiary":{"name":"Carretera terciària","terms":"carretera terciària,carretera de 3r ordre,local"},"highway/tertiary_link":{"name":"Enllaç de carretera terciària","terms":"enllaç amb terciària"},"highway/toll_gantry":{"name":"Peatge sense barreres","terms":"peatge"},"highway/track":{"name":"Pista forestal / Via d'accés","terms":"camí"},"highway/traffic_mirror":{"name":"Mirall de trànsit"},"highway/traffic_signals":{"name":"Semàfor","terms":"senyals de trànsit,senyals de tràfic"},"highway/trunk":{"name":"Carretera principal","terms":"via ràpida,variant"},"highway/trunk_link":{"name":"Enllaç de via principal","terms":"enllaç amb via ràpida"},"highway/turning_circle":{"name":"Cul de sac","terms":"girar 180 graus,canviar de sentit"},"highway/unclassified":{"name":"Carretera menor / sense classificació","terms":"carrer,carretera,via"},"historic":{"name":"Lloc històric","terms":"lloc històric"},"historic/archaeological_site":{"name":"Jaciment arqueològic","terms":"lloc arqueològic"},"historic/boundary_stone":{"name":"Fita de terme","terms":"fita de frontera"},"historic/building":{"name":"Edifici històric"},"historic/castle":{"name":"Castell","terms":"castell"},"historic/castle/fortress":{"name":"Fortalesa històrica"},"historic/castle/palace":{"name":"Palau"},"historic/castle/stately":{"name":"Casa senyorial"},"historic/city_gate":{"name":"Portal de la ciutat"},"historic/fort":{"name":"Fort històric"},"historic/manor":{"name":"Casa pairal"},"historic/memorial":{"name":"Memorial","terms":"memorial"},"historic/memorial/blue_plaque-GB-IE":{"name":"Placa blava"},"historic/memorial/plaque":{"name":"Placa commemorativa"},"historic/monument":{"name":"Monument","terms":"monument"},"historic/pillory":{"name":"Costell històric","aliases":"Picota històrica"},"historic/ruins":{"name":"Ruïnes","terms":"ruines"},"historic/tomb":{"name":"Tomba"},"historic/wayside_cross":{"name":"Creu Cristiana","terms":"calvari,encreuament del camí"},"historic/wayside_shrine":{"name":"Capella","terms":"ermita"},"historic/wreck":{"name":"Naufragi"},"indoor":{"name":"Element d'interior"},"indoor/corridor":{"name":"Corredor interior"},"indoor/corridor_line":{"name":"Corredor interior"},"indoor/room":{"name":"Habitació"},"internet_access/wlan":{"name":"Punt d'accés Wi-Fi"},"junction":{"name":"Encreuament"},"landuse":{"name":"Objecte d'ús del sòl","aliases":"Objecte d'ús del terreny\nObjecte d'ús del territori"},"landuse/allotments":{"name":"Horts","terms":"horts urbans,horts comunitaris,horts"},"landuse/aquaculture":{"name":"Aqüicultura"},"landuse/basin":{"name":"Bassa"},"landuse/brownfield":{"name":"Sòl urbanitzable ja urbanitzat","terms":"desenvolupament,industrial"},"landuse/cemetery":{"name":"Cementiri","terms":"cementiri,camp sant"},"landuse/churchyard":{"name":"Terrenys d'església"},"landuse/commercial":{"name":"Zona Comercial","terms":"grans magatzems,oficines"},"landuse/construction":{"name":"Àrea en construcció","terms":"construcció,àrea de construcció,demolició,lloc de construcció,desenvolupament,infraestructura","aliases":"Zona en construcció"},"landuse/farm":{"name":"Zona Agrícola"},"landuse/farmland":{"name":"Zona Agrícola"},"landuse/farmyard":{"name":"Terrenys de Granja","terms":"granja,granges,galliner,estable,mas,masia,masoveria,ranxo,nau,naus,dipòsit,femta,fems,fem,porc,porcs,purí,purins,gallina,gallines,conill,conills,pinso,tancat,tanca,valles,valla"},"landuse/flowerbed":{"name":"Parterre"},"landuse/forest":{"name":"Bosc gestionat"},"landuse/garages":{"name":"Terreny per a garatges","terms":"parking,aparcament,pàrquing"},"landuse/grass":{"name":"Herba","terms":"herba,gespa"},"landuse/greenfield":{"name":"Sòl urbanitzable sense urbanitzar"},"landuse/greenhouse_horticulture":{"name":"Horticultura d'hivernacles"},"landuse/harbour":{"name":"Port"},"landuse/industrial":{"name":"Zona Industrial","terms":"polígon,polígon industrial,industrial,fàbrica,empresa,comerç,manufactura,dipòsit"},"landuse/industrial/scrap_yard":{"name":"Desballestador de vehicles"},"landuse/industrial/slaughterhouse":{"name":"Escorxador"},"landuse/landfill":{"name":"Abocador","terms":"abocador"},"landuse/meadow":{"name":"Prat","terms":"prat,prada,natural"},"landuse/military":{"name":"Zona Militar"},"landuse/military/airfield":{"name":"Aeròdrom militar","terms":"aeròdrom,força àerea,aeronau,avió,aeroport,armada,base,comba,lluita,guerra,helicopter,heliport,marina,tropa"},"landuse/military/barracks":{"name":"Caserna militar","terms":"força aerea,base,lluita,guerra,guardia,marine,troà"},"landuse/military/base":{"name":"Base militar"},"landuse/military/base/navy":{"name":"Base naval"},"landuse/military/obstacle_course":{"name":"Cursa d'obstacles militar"},"landuse/military/range":{"name":"Terreny per a usos militars"},"landuse/military/training_area":{"name":"Àrea d'entrenament militar"},"landuse/orchard":{"name":"Verger","terms":"horta,hort,plantació,arbre,fruit,agrícola"},"landuse/plant_nursery":{"name":"Planter","terms":"viver de plantes,viver,planter,jardí,flors"},"landuse/pond":{"name":"Estany"},"landuse/quarry":{"name":"Mina a cel obert","terms":"pedrera"},"landuse/railway":{"name":"Terreny ferroviari","terms":"corredor,passadis,pasillo,àrea,zona,ferroviari,ferrocarril,tren"},"landuse/recreation_ground":{"name":"Terrenys per al Lleure"},"landuse/religious":{"name":"Àrea religiosa"},"landuse/reservoir":{"name":"Pantà"},"landuse/residential":{"name":"Zona Residencial","terms":"vivenda,residència,allotjament"},"landuse/residential/apartments":{"name":"Complex d'apartaments"},"landuse/retail":{"name":"Zona de Comerç minorista","terms":"àrea comercial"},"landuse/salt_pond":{"name":"Salina"},"landuse/vineyard":{"name":"Vinya","terms":"vinyar,vinyal,vinyet,vinya"},"landuse/winter_sports":{"name":"Zona d'esports d'hivern","terms":"pista,esquí,neu,eski,muntanya,resort,snowboard,tabla de neu"},"leisure":{"name":"Element d'esbarjo"},"leisure/adult_gaming_centre":{"name":"Centre d'oci adult"},"leisure/amusement_arcade":{"name":"Saló recreatiu"},"leisure/beach_resort":{"name":"Balneari de platja","terms":"platja,resort,estiu,balneari,mar"},"leisure/bird_hide":{"name":"Observatori d'ocells"},"leisure/bleachers":{"name":"Graderia","terms":"seients,grades,bancs,esport,estadi"},"leisure/bowling_alley":{"name":"Bolera"},"leisure/common":{"name":"Àrea comuna"},"leisure/dance":{"name":"Pista de ball","terms":"zona de ball"},"leisure/dog_park":{"name":"Parc Caní","terms":"pipi-can,parc per gossos"},"leisure/escape_game":{"name":"Escape Room"},"leisure/firepit":{"terms":"foguera,foc,cercle de foc,forat de foc,lloc de foc,anell de foc,llar de foc"},"leisure/fishing":{"name":"Punt de pesca"},"leisure/fitness_centre":{"name":"Gimnàs / Centre de Fitness","terms":"salut,saludable,gimnàs,esport,deport,pilates,estudio,peses,fort"},"leisure/fitness_centre/yoga":{"name":"Estudi de Yoga","terms":"ioga,meditació,asana"},"leisure/fitness_station":{"name":"Instal·lació exterior de Fitness"},"leisure/fitness_station/balance_beam":{"name":"Tauló d'exercicis d'equilibri"},"leisure/fitness_station/box":{"name":"Caixa per exercicis"},"leisure/fitness_station/horizontal_bar":{"name":"Barra horitzontal per exercicis"},"leisure/fitness_station/horizontal_ladder":{"name":"Escala horitzontal per exercicis"},"leisure/fitness_station/hyperextension":{"name":"Estació d'hiperextensió"},"leisure/fitness_station/parallel_bars":{"name":"Barres paral·leles"},"leisure/fitness_station/push-up":{"name":"Estació de flexions"},"leisure/fitness_station/rings":{"name":"Anelles per exercicis"},"leisure/fitness_station/sign":{"name":"Senyal d'instruccions per exercicis"},"leisure/fitness_station/sit-up":{"name":"Estació d'abdominals"},"leisure/fitness_station/stairs":{"name":"Escales per exercicis"},"leisure/garden":{"name":"Jardí","terms":"jardí,parc,zona ajardinada"},"leisure/garden/botanical":{"name":"Jardí botànic"},"leisure/garden/community":{"name":"Hort comunitari","terms":"jardí,cooperatiu,col·lectiu,comunal"},"leisure/garden/residential":{"name":"Jardí residencial"},"leisure/golf_course":{"name":"Camp de golf","terms":"camp de golf"},"leisure/horse_riding":{"name":"Centre d'Equitació","terms":"instal·lació equestre,equestre,granja de cavalls,parc de cavalls,ranx,rancho"},"leisure/ice_rink":{"name":"Pista de gel","terms":"hoquei,patinatge,curling,pista de gel,jocs de d'hivern,esports d'hivern"},"leisure/marina":{"name":"Port esportiu","terms":"port esportiu,marina"},"leisure/miniature_golf":{"name":"Golf en miniatura"},"leisure/nature_reserve":{"name":"Reserva Natural"},"leisure/park":{"name":"Parc","terms":"parc,àrea verda,àrea enjardinada,jardí,verger,gespa,arbres,flors"},"leisure/picnic_table":{"name":"Taula de picnic","terms":"banc,banc per a picnic"},"leisure/picnic_table/chess":{"name":"Taulell d'escacs"},"leisure/pitch":{"name":"Camp d'esports","terms":"camp d'esports,pista poliesportiva"},"leisure/pitch/american_football":{"name":"Camp de futbol americà","terms":"estadi de futbol americà,camp de futbol americà"},"leisure/pitch/australian_football":{"name":"Camp de futbol australià"},"leisure/pitch/badminton":{"name":"Pista de badminton","terms":"badminton,xarxa de badminton"},"leisure/pitch/baseball":{"name":"Camp de beisbol"},"leisure/pitch/basketball":{"name":"Pista de bàsquet","terms":"pista de bàsquet,pavelló de bàsquet"},"leisure/pitch/beachvolleyball":{"name":"Pista de voleibol platja"},"leisure/pitch/bowls":{"name":"Camp de bolos"},"leisure/pitch/chess":{"name":"Taulell d'escacs gegant"},"leisure/pitch/cricket":{"name":"Camp de criquet"},"leisure/pitch/field_hockey":{"name":"Camp d'hoquei"},"leisure/pitch/netball":{"name":"Pista de netbol"},"leisure/pitch/padel":{"name":"Pista de pàdel"},"leisure/pitch/rugby_league":{"name":"Camp de la lliga de Rugbi"},"leisure/pitch/rugby_union":{"name":"Camp de la Unió de Rugbi"},"leisure/pitch/skateboard":{"name":"Parc per a skates"},"leisure/pitch/soccer":{"name":"Camp de futbol","terms":"camp de futbol,pista de futbol"},"leisure/pitch/table_soccer":{"name":"Futbolí","terms":"futbolin"},"leisure/pitch/table_tennis":{"name":"Taula de ping-pong"},"leisure/pitch/tennis":{"name":"Pista de tennis","terms":"camp de tennis,pista de tennis"},"leisure/pitch/volleyball":{"name":"Camp de voleibol","terms":"pista de voleibol,camp de voleibol"},"leisure/playground":{"name":"Zona de jocs infantils","terms":"parc infantil"},"leisure/playground/indoor":{"name":"Parc infantil interior"},"leisure/resort":{"name":"Complex turístic","terms":"centre recreatiu,sanatori,esquí,snowboard,resort,vacances,vacacions,jocs d’hivern"},"leisure/sauna":{"name":"Sauna"},"leisure/slipway":{"name":"Pendent per a embarcacions","terms":"varador"},"leisure/slipway_drivable":{"name":"Grada (Nàutica)"},"leisure/sports_centre":{"name":"Complex esportiu","terms":"poliesportiu,pavelló,pabelló,centre d'atletisme,atletisme,complexe,polideportiu"},"leisure/sports_centre/climbing":{"name":"Gimnàs d'escalada"},"leisure/sports_centre/swimming":{"name":"Instal·lacions de Piscina"},"leisure/stadium":{"name":"Estadi","terms":"estadi,camp"},"leisure/swimming_area":{"name":"Zona de bany natural","terms":"aigua,nadar,nedar,bany,piscina,platja,bucejar"},"leisure/swimming_pool":{"name":"Piscina","terms":"piscina"},"leisure/track/athletics/running":{"name":"Pista atlètica"},"leisure/track/running":{"name":"Pista atlètica","terms":"pista per córrer,pista d'atletisme,pista,córrer,atlètic,atlètica,atletisme"},"leisure/trampoline_park":{"name":"Parc de Trampolins"},"leisure/water_park":{"name":"Parc Aquàtic"},"line":{"name":"Línia","terms":"línia"},"man_made":{"name":"Objecte fet per l'home"},"man_made/adit":{"name":"Entrada"},"man_made/antenna":{"name":"Antena"},"man_made/beacon":{"name":"Balisa"},"man_made/beehive":{"name":"Rusc","terms":"apícola,apicultura,mel,abelles,polinització,granja"},"man_made/breakwater":{"name":"trencaonades","terms":"escullera,espigó,espatller"},"man_made/bridge":{"name":"Àrea del pont"},"man_made/bunker_silo":{"name":"Sitja d'un bunker"},"man_made/cairn":{"name":"Fita","terms":"pila de rocs,pila de pedres,fita","aliases":"Pila de pedres\nPila de rocs"},"man_made/chimney":{"name":"Xemeneia"},"man_made/clearcut":{"name":"Tala rasa d'arbres","terms":"tall,tala,bosc,arbre,fusta"},"man_made/compass_rose":{"name":"Rosa dels vents","terms":"tramuntana,vent de port,gregal,llevant,xaloc,migjorn,garbí,llebeig,ponent,mestral,cerç,serè,nord,sud,est,oest,roseta dels vents,bruixola"},"man_made/courtyard":{"name":"Pati interior"},"man_made/crane":{"name":"Grua"},"man_made/crane/gantry_crane":{"name":"Grua pòrtic"},"man_made/crane/portal_crane":{"name":"Pont Grua"},"man_made/cross":{"name":"Creu","terms":"creu,creueta"},"man_made/cutline":{"name":"Línia de tall","terms":"línia de tall"},"man_made/dovecote":{"name":"Colomar","terms":"pardals,colom,coloms,colomar,colombari,colombaire"},"man_made/dyke":{"name":"Dic"},"man_made/embankment":{"name":"Terraplè"},"man_made/flagpole":{"name":"Màstil","terms":"màstil"},"man_made/fuel_pump":{"name":"Sortidor de benzina"},"man_made/gasometer":{"name":"Gasòmetre"},"man_made/lighthouse":{"name":"Far","terms":"far"},"man_made/manhole":{"name":"Pou de registre","terms":"arqueta,pou,forat,telecomunicacions,tapa de registre"},"man_made/manhole/drain":{"name":"Embornal","terms":"albelló,pluja,forat,aigua,desaigüe,desaigüe pluvial,tempesta,drenatge,desguàs,claveguera,tapa de claveguera"},"man_made/manhole/gas":{"name":"Pou de registre de gas","terms":"gas,arqueta,tapa"},"man_made/manhole/power":{"name":"Pou de registre de la xarxa elèctrica","terms":"elèctric,electricitat,arqueta,tapa"},"man_made/manhole/sewer":{"name":"Tapa de claveguera","terms":"arqueta de claveguera,claveguera,forat,aigües residuals,aigües brutes"},"man_made/mast/communication/radio":{"name":"Màstil de comunicació de ràdio","terms":"antena de ràdio,torre de ràdio,màstil de ràdio,ràdio"},"man_made/mast/communication/television":{"name":"Màstil de comunicació de televisió","terms":"màstil de televisió,televisió,antena de televisió"},"man_made/monitoring_station":{"name":"Estació de seguiment"},"man_made/obelisk":{"name":"Obelisc"},"man_made/observatory":{"name":"Observatori"},"man_made/petroleum_well":{"name":"Pou petrolífer"},"man_made/pier":{"name":"Moll de pilons","terms":"moll,dàrsena"},"man_made/pier/floating":{"name":"Embarcador flotant","terms":"pantalà,pantalan,embarcament,vaixell"},"man_made/pipeline":{"name":"Canonada","terms":"gàseoducte,oleoducte,canonades"},"man_made/pipeline/underground":{"name":"Canonada subterrània"},"man_made/planter":{"name":"Maceter","terms":"maceta,maceter,jardinera"},"man_made/pumping_station":{"name":"Estació de bombament"},"man_made/reservoir_covered":{"name":"Reservori cobert"},"man_made/silo":{"name":"Sitja"},"man_made/storage_tank":{"name":"Tanc d'emmagatzematge","terms":"aigua,gasolina,gasoil,gas,petroli","aliases":"Dipòsit d'emmagatzematge"},"man_made/storage_tank/water":{"name":"Tanc d'aigua","terms":"torre d'aigua,dipòsit d'aigua,cisterna","aliases":"Dipòsit d'aigua"},"man_made/street_cabinet":{"name":"Armari de carrer"},"man_made/surveillance":{"name":"Vigilància"},"man_made/surveillance/camera":{"name":"Càmera de vigilància"},"man_made/survey_point":{"name":"Punt referencial","terms":"punt de salvació,punt de salvament,punt d'evacuació"},"man_made/telescope/optical":{"name":"Telescopi òptic"},"man_made/telescope/radio":{"name":"Radiotelescopi"},"man_made/tower":{"name":"Torre","terms":"torre,torres"},"man_made/tower/bell_tower":{"name":"Campanar"},"man_made/tower/communication":{"name":"Torre de comunicacions"},"man_made/tower/cooling":{"name":"Torre de refrigeració"},"man_made/tower/defensive":{"name":"Torre fortificada"},"man_made/tower/minaret":{"name":"Minaret"},"man_made/tower/observation":{"name":"Torre d'observació"},"man_made/tower/pagoda":{"name":"Pagoda"},"man_made/tunnel":{"name":"Àrea d'un tunel"},"man_made/video_wall":{"name":"Pantalla digital"},"man_made/wastewater_plant":{"name":"Depuradora d'aigües residuals","terms":"depuradora"},"man_made/water_tower":{"name":"Torre d'aigua","terms":"torre d'aigua,dipòsit d'aigua,dipòsit"},"man_made/water_well":{"name":"Pou"},"man_made/water_works":{"name":"Planta potabilitzadora","terms":"depuradora,aigües residuals,estació depuradora d'aigües residual,edar,epsar"},"man_made/watermill":{"name":"Molí d'aigua"},"man_made/windmill":{"name":"Molí de vent"},"man_made/windpump":{"name":"Molí de bombeig"},"man_made/works":{"name":"Fàbrica","terms":"factoria"},"man_made/works/brewery":{"name":"Cerveseria industrial"},"man_made/yes":{"name":"Element fet per l'home (Tipus sense especificar)"},"military/bunker":{"name":"Búnquer militar"},"military/checkpoint":{"name":"Punt de control militar"},"military/office":{"name":"Oficina militar"},"military/trench":{"name":"Trinxera militar"},"natural":{"name":"Element natural"},"natural/bare_rock":{"name":"Roca pelada"},"natural/bay":{"name":"Badia"},"natural/beach":{"name":"Platja","terms":"platja"},"natural/cape":{"name":"Cap"},"natural/cave_entrance":{"name":"Entrada de cova"},"natural/cliff":{"name":"Penya-segat"},"natural/coastline":{"name":"Línia costanera","terms":"línia costera,costa,litoral,línia de platja,platja,mar"},"natural/fell":{"name":"Prat d'alta muntanya"},"natural/geyser":{"name":"Guèiser"},"natural/glacier":{"name":"Glacera"},"natural/grassland":{"name":"Praderia"},"natural/heath":{"name":"Landa"},"natural/hot_spring":{"name":"Surgència termal, Aigües termals"},"natural/mud":{"name":"Argila","aliases":"Fang"},"natural/peak":{"name":"Pic","terms":"pic,cim,cimadal,pollegó,agulla."},"natural/peninsula":{"name":"Peninsula"},"natural/reef":{"name":"Escull"},"natural/ridge":{"name":"Cresta","aliases":"Carena"},"natural/saddle":{"name":"Coll","aliases":"Collada"},"natural/sand":{"name":"Sorra"},"natural/scree":{"name":"Tartera"},"natural/scrub":{"name":"Matollar"},"natural/shingle":{"name":"Codolar","aliases":"Macar"},"natural/shrub":{"name":"Arbust"},"natural/sinkhole":{"name":"Dolina"},"natural/spring":{"name":"Font natural","terms":"deu,aiguaneix,brollador"},"natural/stone":{"name":"Pedra solta / Bloc de pedra"},"natural/strait":{"name":"Estret"},"natural/tree":{"name":"Arbre","terms":"arbre"},"natural/tree/broadleaved":{"name":"Arbre planifoli"},"natural/tree/broadleaved/deciduous":{"name":"Arbre planifoli (caducifoli)","terms":"caducifoli"},"natural/tree/broadleaved/evergreen":{"name":"Arbre planifoli (fulla perenne)","terms":"perenne,perennifoli"},"natural/tree_row":{"name":"Fila d'arbres"},"natural/valley":{"name":"Vall"},"natural/volcano":{"name":"Volcà"},"natural/water":{"name":"Aigua","terms":"aigua"},"natural/water/basin":{"name":"Conca","terms":"conca"},"natural/water/canal":{"name":"Àrea de canal"},"natural/water/lake":{"name":"Llac","terms":"llac,estany"},"natural/water/moat":{"name":"Fossat"},"natural/water/oxbow":{"name":"Braç mort"},"natural/water/pond":{"name":"Estany","terms":"estany,bassa,bassal,llac,reserva,aljub"},"natural/water/reservoir":{"name":"Embassament"},"natural/water/river":{"name":"Àrea de riu"},"natural/water/stream":{"name":"Àrea de rierol"},"natural/water/wastewater":{"name":"Conca d'aigües residuals"},"natural/wetland":{"name":"Aiguamolls"},"natural/wetland/bog":{"name":"Torbera"},"natural/wetland/fen":{"name":"Mollera","terms":"aiguamoll alcalí,pantà d'aigua dolça,llacuna alcalina,zona humida amb aigua estancada"},"natural/wetland/mangrove":{"name":"Manglar","terms":"manglar,bosc de mangles,palafolls,zona de palafolls,zona costanera de mangles"},"natural/wetland/marsh":{"name":"Aiguamoll","terms":"marjal,aiguamoll,aiguabarreig,bassa"},"natural/wetland/reedbed":{"name":"Canyissar","terms":"llucertar,llucera,llucertaral"},"natural/wetland/saltmarsh":{"name":"marjal salada costanera","terms":"marjal salina costanera,aiguamoll salat costaner,marjal salada costanera"},"natural/wetland/string_bog":{"name":"Aiguamoll en forma de filaments","terms":"marjal filiforme,aiguamoll en forma de filaments"},"natural/wetland/swamp":{"name":"Pantà","terms":"pantà,marjal,aiguamoll,llacuna,bassa,brolla"},"natural/wetland/tidalflat":{"name":"Plana de marea","terms":"platja de marea,platja mareal,zona de pleamar,plana de marea"},"natural/wetland/wet_meadow":{"name":"prat humit","terms":"prat humit,prat palúdic,prada mullada"},"natural/wood":{"name":"Bosc natural","terms":"bosc natural,bosc no gestionat,forestal,arbres","aliases":"Bosc no gestionat"},"noexit/yes":{"name":"Sense sortida"},"office":{"name":"Oficines","terms":"oficina,oficines"},"office/accountant":{"name":"Oficina comptable"},"office/administrative":{"name":"Oficina de tràmits locals"},"office/adoption_agency":{"name":"Agència d'adopció"},"office/advertising_agency":{"name":"Agència de publicitat"},"office/architect":{"name":"Despatx d'arquitectura","terms":"arquitecte,arquitectura,oficna d'arquitectura,disseny,paisatge,interior,interiorisme"},"office/association":{"name":"Oficina d'una organització sense ànim de lucre","terms":"associació,ong,sense ànim de lucre,organització,societat"},"office/charity":{"name":"Entitat caritativa","terms":"oficina de beneficència,entitat caritativa,seu d'organització benèfica,punt de suport caritatiu"},"office/company":{"name":"Oficina corporativa"},"office/consulting":{"name":"Oficina d'una consultoria"},"office/coworking":{"name":"Espai de cotreball","aliases":"Espai de coworking\nEspai de treball compartit"},"office/diplomatic":{"name":"Oficina diplomàtica"},"office/diplomatic/consulate":{"name":"Consolat"},"office/diplomatic/embassy":{"name":"Ambaixada","terms":"ambaixada,consolat,missió diplomàtica,missió estrangera,alta comissió,missió permanent"},"office/diplomatic/liaison":{"terms":"oficina de lligam,delegació,representació,sucursal,agència de connexió,missió diplomàtica"},"office/educational_institution":{"name":"Institució Educativa","terms":"institució educativa,centre educatiu,escola,col·legi,universitat,acadèmia,institut"},"office/employment_agency":{"name":"Oficina de treball","terms":"agència d'ocupació,empresa de treball temporal,agència de col·locació,servei d'intermediació laboral,faena,feina,treball,ocupació"},"office/energy_supplier":{"name":"Oficina d'una Distribuïdora Energètica","terms":"distribuïdora elèctrica,companyia elèctrica,electricitat,gas,distribuïdora de gas"},"office/engineer":{"name":"Oficina d'enginyeria"},"office/estate_agent":{"name":"Agència immobiliària","terms":"immobiliària,propietat"},"office/financial":{"name":"Oficina d'una financera"},"office/financial_advisor":{"name":"Assessoria financera"},"office/forestry":{"name":"Oficina forestal"},"office/foundation":{"name":"Oficina d'una fundació","terms":"sense ànim de lucre"},"office/government":{"name":"Oficina governamental"},"office/government/prosecutor":{"name":"Oficina del Fiscal","terms":"fiscal general,fiscal del districte,fiscal de l'estat,fiscal"},"office/government/register_office":{"name":"Registre civil","terms":"defunció,naiximent,naixement,certificat,funcionari"},"office/government/tax":{"name":"Oficina tributària d'impostos/hisenda"},"office/graphic_design":{"name":"Oficina de disseny gràfic"},"office/guide":{"name":"Oficina de guies turístics"},"office/insurance":{"name":"Oficina d'una Companyia Asseguradora","terms":"asseguradora privada,gestió de riscos,segur"},"office/it":{"name":"Oficina de tecnologies de la informació","terms":"solucions informàtiques,informació,software,tecnologia,ordinardors"},"office/lawyer":{"name":"Bufet d'advocats","terms":"advocat,dret,jutge,llei"},"office/lawyer/notary":{"name":"Notaria"},"office/moving_company":{"name":"Companyia de mudances"},"office/newspaper":{"name":"Oficines d'un Diari","terms":"sala de premsa,redacció,diari,periòdic,premsa"},"office/ngo":{"name":"Oficina d'una ONG","terms":"ong,organització no governamental,organització"},"office/notary":{"name":"Notaria","terms":"oficina del notari"},"office/physician":{"name":"Metge"},"office/political_party":{"name":"Oficina d'un partit polític","terms":"activista,canditat,elecció,parit polític"},"office/private_investigator":{"name":"Oficina d'investigador privat"},"office/quango":{"name":"Oficina de quasi-ONG"},"office/religion":{"name":"Oficina religiosa"},"office/research":{"name":"Oficines d'R+D"},"office/security":{"name":"Oficina de seguretat"},"office/surveyor":{"name":"Oficina d'un agrimensor","terms":"agrimensora,superficies agràries"},"office/tax_advisor":{"name":"Asesoria Fiscal","terms":"asesoria,comptable,tases,taxes,asesor,consultor"},"office/telecommunication":{"name":"Oficines d'una companyia de telecomunicacions","terms":"comunicació,proveïdor d'internet,xarxa,telèfon,veu,isp"},"office/therapist":{"name":"Oficina de terapeuta","terms":"teràpia"},"office/translator":{"name":"Oficina de traducció"},"office/travel_agent":{"name":"Agència de viatges"},"office/union":{"name":"Oficina d'un sindicat laboral"},"office/water_utility":{"name":"Oficina de la companyia de l'aigua","terms":"companyia de l'aigua,aigua,distribuïdora,aigua potable"},"office/yes":{"name":"Oficina (Tipus sense especificar)"},"pipeline":{"name":"Element de canalització"},"pipeline/substation":{"name":"Subestació de gasoductes"},"pipeline/valve":{"name":"Vàlvula de canonada"},"piste/ice_skate":{"name":"Camí per patinatge sobre gel"},"piste/nordic":{"name":"Camí per esquí de muntanya"},"piste/sleigh":{"name":"Camí per a trineus"},"place":{"name":"Lloc"},"place/city":{"name":"Ciutat","terms":"ciutat,municipi"},"place/city_block":{"name":"Illa urbana","aliases":"Illa de cases"},"place/farm":{"name":"Granja"},"place/hamlet":{"name":"Llogaret"},"place/island":{"name":"Illa","terms":"arxipèlag,atol·ló,cai,illa,illot,illes,illots,escull"},"place/islet":{"name":"Illot","terms":"arxipèlag,atol·ló,cai,illa,illot,illes,illots,escull"},"place/isolated_dwelling":{"name":"Vivenda aïllada","terms":"vivenda aïllada,vivenda unifamiliar,casa aïllada,casa unifamiliar"},"place/locality":{"name":"Indret","terms":"indret,localitat,zona,àrea"},"place/neighbourhood":{"name":"Barri","terms":"veïnat,veiïnada,veïnatge"},"place/plot":{"name":"Parcel·la"},"place/quarter":{"name":"Subdistricte / Quarter"},"place/square":{"name":"Plaça"},"place/suburb":{"name":"Districte / Suburbi"},"place/town":{"name":"Ciutat"},"place/village":{"name":"Poble"},"playground":{"name":"Equipament de parcs infantils"},"playground/activitypanel":{"name":"Panell d’activitats (Parc inafantil)","terms":"esbarjo,parc,parc infantil,creu en ralla,cruz y ralla,tres en línia,tres en ralla,tres en ratlla"},"playground/aerialrotator":{"name":"Girador penjant","terms":"esbarjo,parc,parc infantil,perxa,penjant"},"playground/balancebeam":{"name":"Barra d’equilibri (Parc Infantil)","terms":"equilibri,barra,esbarjo,parc,parc infantil"},"playground/basketrotator":{"name":"Cistella Giradora","terms":"cistella,discapacitat,mobilitat reduïda,esbarjo,parc,parc infantil"},"playground/basketswing":{"name":"Gronxador cistella","terms":"gronxador,cistella,discapacitat,mobilitat reduïda,esbarjo,parc,parc infantil"},"playground/bridge":{"name":"Pont penjant (Parc Infantil)","terms":"esbarjo,parc,parc infantil,pont"},"playground/climbingwall":{"name":"Mur d'Escalada per a Jugar"},"playground/horizontal_bar":{"name":"Barra horitzontal infantil"},"playground/sandpit":{"name":"Sorral","aliases":"Sorrera"},"playground/seesaw":{"name":"Palanca","terms":"balancin,balancí"},"playground/structure":{"name":"Estructura de jocs"},"playground/swing":{"name":"Gronxador"},"playground/tetherball":{"name":"Tetherball"},"playground/trampoline":{"name":"Trampolí"},"playground/tunnel_tube":{"name":"Tunel d'esbarjo"},"point":{"name":"Punt","terms":"punt"},"police/checkpoint":{"name":"Control Policial"},"polling_station":{"name":"Col·legi electoral temporal","aliases":"Lloc de votació temporal"},"power":{"name":"Objecte elèctric"},"power/cable":{"name":"Cable elèctric"},"power/cable/underground":{"name":"Cable elèctric subterrani"},"power/generator":{"name":"Generador elèctric"},"power/generator/method/photovoltaic":{"name":"Placa solar","aliases":"Panell solar"},"power/generator/method/photovoltaic/location/roof":{"name":"Panells Solars al sostre","terms":"producció solar domèstica,plaques solars al sostre,fotovoltàica,panells solars"},"power/generator/source/hydro":{"name":"Turbina d'aigua"},"power/generator/source/nuclear":{"name":"Reactor nuclear","terms":"fisió,generadord,nuclear,atòmic,reactor,ascó"},"power/generator/source/wind":{"name":"Aerogenerador","terms":"generador,turbina,vent,generador eòlic,molí de vent","aliases":"Molí de vent"},"power/line":{"name":"Línia elèctrica","terms":"línia d'alta tensió,lat,alta tenisió"},"power/minor_line":{"name":"Línia elèctrica de baixa tensió"},"power/plant":{"name":"Terrenys d'una central elèctrica","terms":"carbó,gas,gas natural,generador,hidro,nuclear,atòmica,energia,estació"},"power/plant/source/coal":{"name":"Central elèctrica de carbó","terms":"carbó,combustió,combustible fòssil,generador elèctric,estació elèctrica,central de carbó","aliases":"Central tèrmica de carbó"},"power/plant/source/gas":{"name":"Central elèctrica de gas","terms":"carbó,gas natural,combustió,combustió fòssil,estació elèctrica,central de gas","aliases":"Central tèrmica de gas"},"power/plant/source/hydro":{"name":"Central hidroelèctrica"},"power/plant/source/method/photovoltaic":{"name":"Granja solar"},"power/plant/source/nuclear":{"name":"Central nuclear"},"power/plant/source/oil":{"name":"Central elèctrica de petroli","aliases":"Central tèrmica de petroli"},"power/plant/source/solar":{"name":"Planta Fotovoltaica","terms":"panells solars,planta fotovoltaica,energia solar"},"power/plant/source/waste":{"name":"Central elèctrica d'incineració de residus","terms":"rebuig,planta d'incineració,incineradora,incineradora de fem,incineradora de rebuig,incineradora de basura,resta,combustió,gasificadora"},"power/plant/source/wind":{"name":"Parc eòlic","aliases":"Parc d'aerogeneradors"},"power/pole":{"name":"Piló de línia elèctrica","terms":"pal elèctric"},"power/substation":{"name":"Subestació","terms":"subestació elèctrica,estació elèctrica,central elèctrica"},"power/switch":{"name":"Interruptor elèctric"},"power/tower":{"name":"Torre de línia d'alta tensió","terms":"torre d'alta tensió,torre d'alt voltatge"},"power/transformer":{"name":"Transformador","terms":"transformador"},"public_transport/platform":{"name":"Parada de transport públic","terms":"andana,parada de transport públic,parada de bus,parada de trànsit,transport"},"public_transport/platform/bus":{"name":"Andana d'autobús","aliases":"Andana de bus"},"public_transport/platform/bus_point":{"name":"Parada d'autobús","terms":"parada de bus,parada","aliases":"Parada de bus"},"public_transport/platform/bus_tram_point":{"name":"Parada de tramvia i autobús","aliases":"Parada de tramvia i bus"},"public_transport/platform/ferry":{"name":"Moll de ferri"},"public_transport/platform/ferry_point":{"name":"Parada / moll de ferri"},"public_transport/platform/light_rail":{"name":"Andana de tren lleuger"},"public_transport/platform/light_rail_point":{"name":"Parada / andana de tren lleuger"},"public_transport/platform/monorail":{"name":"Andana de monoraïl"},"public_transport/platform/monorail_point":{"name":"Parada / andana de monoraïl"},"public_transport/platform/subway":{"name":"Andana de metro"},"public_transport/platform/subway_point":{"name":"Parada / andana de metro"},"public_transport/platform/train":{"name":"Andana de tren"},"public_transport/platform/train_point":{"name":"Parada / andana de tren"},"public_transport/platform/tram":{"name":"Andana de tranvia"},"public_transport/platform/tram_point":{"name":"Parada / andana de tramvia"},"public_transport/platform/trolleybus":{"name":"Andana de troleibús"},"public_transport/platform/trolleybus_point":{"name":"Parada de troleibús"},"public_transport/platform_point":{"name":"Parada / andana de transport públic"},"public_transport/station":{"name":"Estació de transport públic"},"public_transport/station_aerialway":{"name":"Estació de transport per cable"},"public_transport/station_bus":{"name":"Estació d'autobusos"},"public_transport/station_ferry":{"name":"Terminal de ferris"},"public_transport/station_light_rail":{"name":"Estació de tren lleuger"},"public_transport/station_monorail":{"name":"Estació de monoraïl"},"public_transport/station_subway":{"name":"Estació de metro"},"public_transport/station_train":{"name":"Estació de ferrocarril"},"public_transport/station_train_halt":{"name":"Parada de Ferrocarril (Parada / Sol·licitud)","terms":"apeadero"},"public_transport/station_tram":{"name":"Estació de tramvia"},"public_transport/station_trolleybus":{"name":"Estació / terminal de troleibús"},"public_transport/stop_area":{"name":"Àrea de parada de transport públic"},"public_transport/stop_position":{"name":"Lloc de parada de transport públic","terms":"transport públic,servei públic"},"public_transport/stop_position_aerialway":{"name":"Lloc de parada de transport per cable"},"public_transport/stop_position_bus":{"name":"Lloc de parada de bus"},"public_transport/stop_position_ferry":{"name":"Lloc de parada de ferri"},"public_transport/stop_position_light_rail":{"name":"Lloc de parada de tren lleuger"},"public_transport/stop_position_monorail":{"name":"Lloc de parada de monoraïl"},"public_transport/stop_position_subway":{"name":"Parada de metro"},"public_transport/stop_position_train":{"name":"Lloc de parada de tren"},"public_transport/stop_position_tram":{"name":"Lloc de parada de tramvia"},"public_transport/stop_position_trolleybus":{"name":"Lloc de parada de troleibús"},"railway":{"name":"Element ferroviari"},"railway/abandoned":{"name":"Via fèrria abandonada","terms":"via ferroviaria abandonada,via de ferrocarril abandonada"},"railway/buffer_stop":{"name":"Topall"},"railway/construction":{"name":"Via fèrria en construcció"},"railway/crossing":{"name":"Pas a nivell ferroviari"},"railway/disused":{"name":"Via fèrria fora d'ús","terms":"via fèrria abandonada,via de tren fora d'ús,via de tren abandonada"},"railway/funicular":{"name":"Pista de funicular"},"railway/halt":{"name":"Parada de Ferrocarril (Parada / Sol·licitud)"},"railway/level_crossing":{"name":"Pas a nivell","terms":"pas a nivell,pas de ferrocarril,guardaagulles,barreres,semàfors,tren,cotxe"},"railway/light_rail":{"name":"Via de tren lleuger"},"railway/milestone":{"name":"Fita quilomètrica ferroviaria"},"railway/monorail":{"name":"Via de monoraïl"},"railway/monorail/hanging":{"name":"Via de monoraïl penjant"},"railway/narrow_gauge":{"name":"Traçat de via estreta"},"railway/platform":{"name":"Andana de tren"},"railway/rail":{"name":"Via de tren"},"railway/rail/highspeed":{"name":"Via de tren d'alta velocitat"},"railway/railway_crossing":{"name":"cruïlla ferroviària"},"railway/signal":{"name":"Senyal de via fèrria"},"railway/station":{"name":"Estació de ferrocarril"},"railway/subway":{"name":"Via de metro"},"railway/subway_entrance":{"name":"Boca de Metro","terms":"boca de metro,entrada de metro"},"railway/switch":{"name":"Canvi d'agulles"},"railway/train_wash":{"name":"Rentat de trens"},"railway/tram":{"name":"Tramvia","terms":"tranvia,tram"},"railway/tram_crossing":{"name":"Encreuament tramvia-camí"},"railway/tram_level_crossing":{"name":"Encreuament tramvia-carretera"},"railway/tram_stop":{"name":"Tram Stopping Position"},"railway/turntable":{"name":"Plat giratori ferroviari","terms":"taula giratòria ferroviària,taula giratòria,placa giratòria,plataforma giratòria,plat giratori"},"relation":{"name":"Relació","terms":"relació"},"roller_coaster/station":{"name":"Estació de muntanya russa","terms":"caseta de muntanya russa,parada de muntanya russa,estació de muntanya russa"},"roller_coaster/support":{"name":"Estructura de muntanya russa"},"roller_coaster/track":{"name":"Raïl de muntanya russa","terms":"raïl de muntanya russa,via de muntanya russa,vies de muntanya russa,raïls de muntanya russa"},"route/ferry":{"name":"Ruta de ferri"},"seamark/beacon_isolated_danger":{"name":"Far de perill"},"seamark/beacon_lateral":{"name":"Far de canal"},"seamark/mooring":{"name":"Amarrament"},"shop":{"name":"Botiga","terms":"botiga,comerç,tenda"},"shop/agrarian":{"name":"Agrobotiga","terms":"botiga de suministres agrícoles,tenda de suministres agrícoles,agrotenda,cooperativa agrícola","aliases":"Cooperativa agrícola"},"shop/alcohol":{"name":"Botiga de licors","terms":"licoreria,botiga de licors"},"shop/anime":{"name":"Botiga de manga / anime","terms":"tenda de manga / anime,otaku,manga,japó,kawaii,comic"},"shop/antiques":{"name":"Botiga d'antiguitats","terms":"tenda d'antiguitats,antiquari,vintage,història,vell,antic"},"shop/appliance":{"name":"Botiga d'electrodomèstics","terms":"tenda d'electrodomèstics,electrodomèstic,aire condicionat,secadora,rentadora,llavadora,congelador,nevera,forn,estufa,refrigerador,cafetera,televisió"},"shop/art":{"name":"Botiga d'art","terms":"art,exhibit,galeria,galeria d'art,exhibició"},"shop/baby_goods":{"name":"Botiga per a nadons","terms":"botiga per a bebès,tenda per a bebès,tenda per a nadons,bebè,nadó,bebé,puericultura"},"shop/bag":{"name":"Botiga d'equipatges o bosses","terms":"bolso,maleta,bossa,complements,cartera,equipatge,moneder,tenda d'equipatges o bosses"},"shop/bakery":{"name":"Fleca","terms":"forn de pa,panaderia,pastisseria,forn"},"shop/bathroom_furnishing":{"name":"Botiga de mobles de bany"},"shop/beauty":{"name":"Saló de bellesa","terms":"estètica,spa,saló,broncejat"},"shop/beauty/nails":{"name":"Saló de manicures"},"shop/beauty/tanning":{"name":"Saló de bronzejat"},"shop/bed":{"name":"Botiga de matalassos"},"shop/beverages":{"name":"Botiga de begudes","terms":"licoreria"},"shop/bicycle":{"name":"Botiga de bicicletes","terms":"tenda de bicicletes,ciclisme,bicicleta,reparació,taller"},"shop/boat":{"name":"Botiga de nàutica"},"shop/bookmaker":{"name":"Casa d'apostes","terms":"apostes,joc d'atzar,escurabujaques,jocs d'atzar,apostar,joc,saló,sala"},"shop/books":{"name":"Llibreria"},"shop/boutique":{"name":"Boutique"},"shop/butcher":{"name":"Carnisseria"},"shop/candles":{"name":"Botiga d'espelmes","terms":"tenda de ciris,ciris,cera,espelma,foc"},"shop/cannabis":{"name":"Botiga cannàbica","terms":"tenda cannàbica,420,marihuana,canàbis,cannàbis,herba,tulipans,maria,porro"},"shop/car":{"name":"Concessionari de cotxes"},"shop/car/second_hand":{"name":"Consessionari de cotxes de segona mà"},"shop/car_parts":{"name":"Botiga de recanvis de cotxe"},"shop/car_repair":{"name":"Taller d'automòbils","terms":"taller,electromecànica,garaig,itv,inspecció,canvi d'oli,servei,servici,cotxe,taller de cotxes"},"shop/carpet":{"name":"Botiga de catifes"},"shop/charity":{"name":"Botiga de Caritat"},"shop/cheese":{"name":"Botiga de formatge"},"shop/chemist":{"name":"Drogueria","terms":"perfumeria,bellesa,cosmètics,monyo,pèl,farmàcia,dents,higiene"},"shop/chocolate":{"name":"Botiga de xocolata"},"shop/clothes":{"name":"Botiga de roba","terms":"botiga de roba"},"shop/clothes/second_hand":{"name":"Botiga de roba de segona mà"},"shop/clothes/suits":{"name":"Botiga de trages"},"shop/clothes/underwear":{"name":"Botiga de llenceria","terms":"roba interior,sonstenidor,sujetado,calçoncillos,calçotets,brangues,tanga,braga,boxer,íntim,moda"},"shop/clothes/workwear":{"name":"Botiga de roba de feina"},"shop/coffee":{"name":"Botiga de cafè","terms":"tenda de cafè,cafe,cafè,expresso,flat white,cappuchino"},"shop/collector":{"name":"Botiga de coleccionabes","terms":"tenda de coleccionables,colecció,comics,coleccionista,figures,antiguitats,sellos,estamps"},"shop/computer":{"name":"Botiga d'informàtica","terms":"botiga d'informàtica,botiga d'ordinadors"},"shop/confectionery":{"name":"Botiga de llaminadures","terms":"botiga de dolços,botiga de caramels,botiga de llepolies,dolços,llaminadures,caramels,llepolies"},"shop/convenience":{"name":"Botiga d'ultramarins","terms":"botiga de queviures,ultramarins,queviures,colmado"},"shop/copyshop":{"name":"Copisteria","terms":"botiga,fotocòpies,fulls,impressora"},"shop/cosmetics":{"name":"Botiga de cosmètics","terms":"botiga de perfums,cosmètics,cosmètica,perfums,perfumeria"},"shop/craft":{"name":"Botiga d'art i artesania"},"shop/curtain":{"name":"Botiga de cortines","terms":"botiga de roba de la llar,cortines,coixins"},"shop/dairy":{"name":"Botiga de productes làctics"},"shop/deli":{"name":"Delicadeses"},"shop/department_store":{"name":"Grans magatzems"},"shop/doityourself":{"name":"Botiga de bricolatge","terms":"botiga de bricolatge"},"shop/doors":{"name":"Botiga de portes","terms":"tenda de portes,portes,entrada"},"shop/dry_cleaning":{"name":"Bugaderia","terms":"tintoreria,centre de neteja,neteja,neteja en sec"},"shop/e-cigarette":{"name":"Botiga de cigars electrònics","terms":"tenda de cigars electrònics,vapeig,vaper,electrònica,cigarret electrònic,tabaco,tabac,cigarro electrònic"},"shop/electrical":{"name":"Tenda d'equipament elèctric","terms":"cable,elèctric,electricitat,ventilador,il·luminació,potència"},"shop/electronics":{"name":"Botiga d'electrònica","terms":"botiga d'electrònica,botiga de components electrònics"},"shop/erotic":{"name":"Botiga d'articles eròtics","terms":"sex,shop,sexshop"},"shop/erotic/lgbtq":{"name":"Botiga d'articles eròtics LGBTQ+","terms":"sexe,porn,pornografia"},"shop/fabric":{"name":"Botiga de teles","terms":"botiga de robes,teles,robes"},"shop/farm":{"terms":"grades"},"shop/fashion":{"name":"Botiga de roba"},"shop/fashion_accessories":{"name":"Botiga d'accessoris de moda"},"shop/fireplace":{"name":"Botiga de llars de foc"},"shop/fishing":{"name":"Botiga de pesca","terms":"tenda de pesca,cebo,canya,sedal,esquer,am,ams,peix,pesca,mar"},"shop/flooring":{"name":"Botiga de sòls","terms":"tenda de sòls,manises,piso,màrmol,suelo,pis,terra"},"shop/florist":{"name":"Floristeria","terms":"floristeria,botiga de plantes,botiga de jardineria"},"shop/frame":{"name":"Botiga de marcs","terms":"tenda de marcs,art,pintura,pintor,fotografia"},"shop/frozen_food":{"name":"Botiga de menjars congelats"},"shop/fuel":{"name":"Botiga de combustibles","terms":"gas,butà,butano,metà,propà,metano,propano,paella,tenda de combustibles,cepsa,repsol,cuina,gasòil,gasolina,diesel"},"shop/funeral_directors":{"name":"Tanatori","terms":"funerària,mortuori"},"shop/furniture":{"name":"Botiga de mobles","terms":"botiga de mobles,moblista"},"shop/garden_centre":{"name":"Centre de jardineria"},"shop/gas":{"name":"Punt de venta de Gas embotellat","terms":"gas,butà,butano,metà,propà,metano,propano,paella,repsol,cepsa,botella,punt de venta de gas,botiga de gas,tenda de gas"},"shop/general":{"name":"Botiga generalista"},"shop/gift":{"name":"Botiga de regals","terms":"botiga d'objectes de regal,tenda de regals,tenda d'objectes de regal"},"shop/greengrocer":{"name":"Fruiteria"},"shop/hairdresser":{"name":"Perruqueria"},"shop/hardware":{"name":"Ferreteria"},"shop/health_food":{"name":"Botiga de menjar saludable"},"shop/hearing_aids":{"name":"Centre d'audició"},"shop/herbalist":{"name":"Herbolari"},"shop/hifi":{"name":"Botiga d'alta fidelitat"},"shop/household_linen":{"name":"Botiga de roba per a la llar","terms":"tenda de roba per a la llar,llar,casa,hogar,llençols,llançols,pijama,coixins,torcamans"},"shop/houseware":{"name":"Botiga d'articles per a la llar","terms":"tenda d'articles per a la llar,hogar,llar,casa,cuina"},"shop/hunting":{"name":"Botiga de caça","terms":"tenda de caça,fletexes,arcs,bales,ballestes,rifles,escopetes,trampres,porcsenglars,jabalins,vedat"},"shop/interior_decoration":{"name":"Botiga de decoració d'interior","terms":"decoració,adornaments,interiorisme"},"shop/jewelry":{"name":"Joieria","terms":"joier"},"shop/kiosk":{"name":"Quiosc"},"shop/kitchen":{"name":"Botiga de disseny de cuines"},"shop/laundry":{"name":"Bugaderia"},"shop/laundry/self_service":{"name":"Bugaderia d'autoservei"},"shop/leather":{"name":"Botiga de cuirs","terms":"tenda de cuirs,cuir,cuero,pell,pelleteria"},"shop/locksmith":{"name":"Copisteria de claus"},"shop/lottery":{"name":"Administració de loteria"},"shop/mall":{"name":"Centre comercial"},"shop/massage":{"name":"Centre de massatges"},"shop/medical_supply":{"name":"Botiga d'equipament mèdic"},"shop/military_surplus":{"name":"Botiga d'excedents militars"},"shop/mobile_phone":{"name":"Botiga de telefonia mòbil"},"shop/money_lender":{"name":"Prestamista"},"shop/motorcycle":{"name":"Botiga de motocicletes"},"shop/motorcycle_repair":{"name":"Taller de reparació de motos"},"shop/music":{"name":"Botiga de música"},"shop/musical_instrument":{"name":"Botiga d'instruments musicals"},"shop/newsagent":{"name":"Quiosc de premsa","terms":"quiosc,diari,periòdic,premsa"},"shop/nutrition_supplements":{"name":"Botiga de suplements nutricionals"},"shop/optician":{"name":"Òptica"},"shop/outdoor":{"name":"Botiga per a activitats a l'aire lliure"},"shop/paint":{"name":"Botiga de pintura"},"shop/pastry":{"name":"Pastisseria","terms":"pastisseria,rebosteria,pasteleria,pastís,pastes,dolços,dolç,pastisset"},"shop/perfumery":{"name":"Botiga de perfums","terms":"perfumeria,botiga de colònies"},"shop/pet":{"name":"Botiga d'animals"},"shop/pet_grooming":{"name":"Perruqueria d'animals","terms":"peluqueria d'animals,gos,gat,perruqueria de gats,perruqueria de gosssos,peluquria de gats,peluqueria de gossos"},"shop/photo":{"name":"Botiga de fotografia"},"shop/pottery":{"name":"Botiga de ceràmica"},"shop/printer_ink":{"name":"Botiga de tinta d'impressores"},"shop/pyrotechnics":{"name":"Botiga d'articles pirotècnics"},"shop/radiotechnics":{"name":"Botiga d'articles electrònics"},"shop/religion":{"name":"Botiga d'articles religiosos"},"shop/rental":{"name":"Botiga de lloguers","terms":"tenda de lloguers,lloguer"},"shop/rice":{"name":"Botiga d'arròs"},"shop/scuba_diving":{"name":"Botiga de submarinisme","terms":"tenda de submarinisme,mar,aigua,snorkel,buceig,submarinisme"},"shop/seafood":{"name":"Botiga de Mariscos","terms":"marisqueria,pòsit,llotja,tenda de mariscos"},"shop/second_hand":{"name":"Botiga de segona mà"},"shop/sewing":{"name":"Merceria","terms":"cinteria,llenceria,fils,cusir,cosir"},"shop/shoe_repair":{"name":"Sabater","terms":"reparador de sabates,sabates,sabateria"},"shop/shoes":{"name":"Sabateria","terms":"sabateria,botiga de sabates,sabater,calçat,sabata,bamba,tacons,sandàlies,botes"},"shop/spices":{"name":"Botiga d'espècies","terms":"tenda d'espècies,curry,xili,canella,herba,pebrera,pimienta,sal,especie,condiments,wasabi,condiment,pebre,safrà"},"shop/sports":{"name":"Botiga d'esports","terms":"esport,deport,esports,tenda d'esports"},"shop/stationery":{"name":"Papereria"},"shop/storage_rental":{"name":"Lloguer de magatzem"},"shop/supermarket":{"name":"Supermercat","terms":"supermercat,súper,hipermercat,híper"},"shop/supermarket/organic":{"name":"Supermercat ecològic"},"shop/swimming_pool":{"name":"Botiga d'equipament per a piscines","terms":"botiga de subministrament per a piscines,equipament de piscina,subministre de piscina,subministres de piscina,equips de piscina,accessoris de piscina,equip de piscina,productes de piscina,producte de piscines,productes per a piscines,piscines,piscina,clor,ph,abastament de piscina,provisió de piscina,forniment de piscina,serveis de piscina,productes químics per a piscines"},"shop/tailor":{"name":"Sastreria"},"shop/tattoo":{"name":"Centre de tatuatges"},"shop/tea":{"name":"Botiga de te"},"shop/ticket":{"name":"Venedor de tiquets"},"shop/tiles":{"name":"Botiga de rajoles","terms":"tenda de rajoles,manises,ceràmica,paret,taulell"},"shop/tobacco":{"name":"Estanc","terms":"tabacos,tabacs,estanc,expeneduria,expendeduria,dispensari,cigarrets,cigars,fumar"},"shop/tool_hire":{"name":"Lloguer d'eines"},"shop/toys":{"name":"Botiga de joguines","terms":"botiga de joguines,botiga de jocs,joguineria"},"shop/travel_agency":{"name":"Agència de viatges","terms":"agència de viatges"},"shop/trophy":{"name":"Botiga de trofeus","terms":"tenda de trofeus,premi,medalla,placa,trofeu"},"shop/tyres":{"name":"Botiga de pneumàtics"},"shop/vacant":{"name":"Botiga vacant"},"shop/vacuum_cleaner":{"name":"Botiga d'aspiradors"},"shop/variety_store":{"name":"Botiga de tot a 100"},"shop/video":{"name":"Botiga de vídeos","terms":"videoclub"},"shop/video_games":{"name":"Botiga de videojocs"},"shop/watches":{"name":"Botiga de rellotges","terms":"tenda de rellotges,botiga de relonges,tenda de relonges"},"shop/water":{"name":"Botiga d'aigua potable","terms":"tenda d'aigua potable,aigua,beure,sed,beguda,potable"},"shop/water_sports":{"name":"Botiga d'esports aquàtics","terms":"tenda d'esports aquàtics,aigua,natació,nadar,piscina,mar"},"shop/weapons":{"name":"Armeria","terms":"botiga d'armes,tenda d'armes,gavinets,ganivets,pistola,munició,armes"},"shop/wholesale":{"name":"Comerç majorista","terms":"botiga a l'engròs,comerç a l'engròs,venda a l'engròs,engròs,majorista,al major,en gros,comerç majorista,comerç al major,comerç en gros"},"shop/wigs":{"name":"Botiga de perruqes","terms":"tenda de perruques,extensions de monyo,extensions de pèl,monyo,pèl,calb,calva"},"shop/window_blind":{"name":"Botiga de persianes"},"shop/wine":{"name":"Botiga de vins","terms":"celler,licoreria,tenda de vins,bodega"},"shop/yes":{"name":"Botiga / Tenda (Tipus sense especificar)"},"telecom":{"name":"Element de telecomunicacions"},"telecom/data_center":{"name":"Centre de dades","terms":"data center,centre de dades,centres de dades,datacenter,centre de data,data centre,centre de dates,centres de dates"},"telecom/exchange":{"name":"Central telefònica","terms":"intercanvi de telecomunicacions,centre de telecomunicacions,punt d'intercanvi de telecomunicacions,node de telecomunicacions,estació de telecomunicacions,telecomunicacions,intercanvi telefònic,central telefònica,commutador telefònic"},"tourism":{"name":"Element turístic"},"tourism/alpine_hut":{"name":"Refugi de muntanya","terms":"refugi de muntanya,casa rural de muntanya,alberg de muntanya,hostal de muntanya,cabana de muntanya,cabana,refugi d'escalada,refugi,allotjament,allotjament per pernoctar,cabana de refugi"},"tourism/apartment":{"name":"Apartaments vacacionals","terms":"habitatge de convidats"},"tourism/aquarium":{"name":"Aquari","terms":"aquari,cistella de peixos,peixera,cistella aquària,acuari,mar,aigua,riu"},"tourism/artwork":{"name":"Obra d'art"},"tourism/artwork/bust":{"name":"Bust"},"tourism/artwork/graffiti":{"name":"Grafit"},"tourism/artwork/installation":{"name":"Instal·lació artística"},"tourism/artwork/mural":{"name":"Mural"},"tourism/artwork/sculpture":{"name":"Escultura"},"tourism/artwork/statue":{"name":"Estàtua"},"tourism/attraction":{"name":"Atracció turística"},"tourism/camp_pitch":{"name":"Parcel·la de càmping"},"tourism/camp_site":{"name":"Àrea d'acampada"},"tourism/camp_site/backcountry":{"name":"Àrea d'acampada lliure"},"tourism/camp_site/group_only":{"name":"Àrea d'acampada per grups"},"tourism/caravan_site":{"name":"Càmping per a caravanes"},"tourism/chalet":{"name":"Bungalow / Cabanya"},"tourism/gallery":{"name":"Galeria d'art"},"tourism/guest_house":{"name":"Pensió","terms":"casa de convidats,convidats,hostes,invitats,casa rural"},"tourism/hostel":{"name":"Alberg","terms":"hostal"},"tourism/hotel":{"name":"Hotel","terms":"hotel"},"tourism/information":{"name":"Informació","terms":"informació,oficina d'informació,punt d'informació"},"tourism/information/board":{"name":"Tauler informatiu","terms":"tauler d'informació,panell d'informació,panell informatiu"},"tourism/information/board/welcome_sign":{"name":"Senyal de benvinguda"},"tourism/information/guidepost":{"name":"Senyal d'indicacions"},"tourism/information/map":{"name":"Mapa"},"tourism/information/office":{"name":"Centre de visitants","terms":"oficina de turisme,turisme,tourist info"},"tourism/information/terminal":{"name":"Terminal d'informació"},"tourism/motel":{"name":"Motel","terms":"motel"},"tourism/museum":{"name":"Museu","terms":"museu"},"tourism/museum/history":{"name":"Museu d'història"},"tourism/picnic_site":{"name":"Àrea de pícnic"},"tourism/theme_park":{"name":"Parc temàtic"},"tourism/viewpoint":{"name":"Mirador"},"tourism/wilderness_hut":{"name":"Refugi lliure"},"tourism/zoo":{"name":"Zoo","terms":"zoo,zoològic"},"tourism/zoo/safari":{"name":"Parc de safari"},"traffic_calming":{"name":"Mesures de reducció de velocitat","terms":"reductor de velocitat,baden,bulto,baiben,pacificador del trànsit"},"traffic_calming/bump":{"name":"Ressalt","terms":"cavalló,resalt,túmul,reductor,tope"},"traffic_calming/chicane":{"name":"Chicane"},"traffic_calming/choker":{"name":"Reductor d'amplada"},"traffic_calming/cushion":{"name":"Coixí Berlinès"},"traffic_calming/dip":{"name":"Rebaix"},"traffic_calming/hump":{"name":"Esquena d'ase","terms":"esquena de ruc,esquena de burro,esquena de bou,esquena de toro,llom d'ase,llom de ruc,llom de burro,llom de bou,llom de toro,ressalt,cavalló,túmul"},"traffic_calming/mini_bumps":{"name":"Xinxeta reductora de velocitat"},"traffic_calming/rumble_strip":{"name":"Bandes rugoses","terms":"banda,bandes,rugós,rugoses"},"traffic_calming/table":{"name":"Pas de vianants elevat","terms":"pas de vianants elevat,peató,peatons,pas,vianant,elevat,ressalt,esquena d'ase"},"traffic_calming/yes":{"name":"Reductor de Velocitat (Tipus sense especificar)"},"traffic_sign":{"name":"Senyal de trànsit"},"traffic_sign/city_limit":{"name":"Senyal de límit urbà"},"traffic_sign/maxspeed":{"name":"Senyal de límit de velocitat"},"traffic_sign/variable_message":{"name":"Senyal amb missatge variable"},"type/boundary":{"name":"Límit","terms":"límit administratiu,frontera,vora"},"type/boundary/administrative":{"name":"Límit administratiu","terms":"límit administratiu,frontera"},"type/destination_sign":{"name":"Senyal de destinació"},"type/enforcement":{"name":"Control de compliment"},"type/enforcement/maxspeed":{"name":"Control del límit de velocitat"},"type/multipolygon":{"name":"Multipolígon","terms":"multipolígon"},"type/restriction":{"name":"Restricció","terms":"restricció"},"type/restriction/no_left_turn":{"name":"Prohibició del gir a l'esquerra","terms":"prohibit girar a l'esquerra"},"type/restriction/no_right_turn":{"name":"Prohibició del gir a la dreta","terms":"prohibit girar a la dreta"},"type/restriction/no_straight_on":{"name":"No continuar recte"},"type/restriction/no_u_turn":{"name":"Prohibit fer un canvi de sentit","terms":"gir en u,canvi de sentit"},"type/restriction/only_left_turn":{"name":"Només Gir a l'Esquerra","terms":"gri a l'esquerra obligatori,només es pot girar a l'esquerra,sols a l'esquerra"},"type/restriction/only_right_turn":{"name":"Obligació de girar a la dreta"},"type/restriction/only_straight_on":{"name":"Obligació de continuar recte"},"type/restriction/only_u_turn":{"name":"Només Gir en U"},"type/route":{"name":"Ruta","terms":"ruta"},"type/route/aerialway":{"name":"Ruta aèria"},"type/route/bicycle":{"name":"Ruta ciclista"},"type/route/bus":{"name":"Ruta d'autobús","terms":"ruta de bus,línia de bus"},"type/route/climbing":{"name":"Ruta d'Escalada"},"type/route/detour":{"name":"Desviació"},"type/route/ferry":{"name":"Ruta de ferri"},"type/route/foot":{"name":"Ruta de vianants"},"type/route/hiking":{"name":"Ruta senderista","aliases":"Ruta excursionista"},"type/route/horse":{"name":"Ruta equestre","terms":"ruta de marxa a cavall,cavall,ruta"},"type/route/light_rail":{"name":"Ruta de tren lleuger"},"type/route/monorail":{"name":"Ruta de monoraïl"},"type/route/mtb":{"name":"Ruta de bicicleta de muntanya"},"type/route/pipeline":{"name":"Traçat d'una canonada"},"type/route/piste":{"name":"Pista/ruta d'esquí","terms":"pistes d'ski,ruta d'ski"},"type/route/power":{"name":"Traçat d'una línia elèctrica","terms":"energia,electricitat"},"type/route/railway":{"name":"Ruta de ferrocarril","terms":"ruta de ferrocarril,ruta ferroviaria,ruta ferrea"},"type/route/road":{"name":"Ruta de carretera","terms":"carretera,carrer,ruta"},"type/route/subway":{"name":"Ruta de metro","terms":"metro,subterrani,ruta"},"type/route/train":{"name":"Ruta ferroviària","terms":"tren,ferrocarril,ruta"},"type/route/tram":{"name":"Ruta de tramvia","terms":"tram,tranvia,ruta"},"type/route/trolleybus":{"name":"Ruta de troleibús","terms":"ruta,bus,trolebús,troleibús"},"type/route_master":{"name":"Patró de la Ruta","terms":"ruta principal,ruta mare,ruta pare,ruta mestra"},"type/site":{"name":"Lloc","terms":"pusto,lloc,zona,emplaçament,terreny,instal·lació,espai,àrea"},"type/site/climbing/area":{"name":"Àrea d'Escalada"},"type/waterway":{"name":"Curs d'aigua","terms":"via pluvial,pluvial,aquàtic,fluvial,aquàtica,via fluvial,cauce,marítim,marina,navegable"},"waterway":{"name":"Tipus de curs d'aigua"},"waterway/boatyard":{"name":"Dic sec","terms":"dipòsit,doc,grada,hangar,local,magatzem,mestrança,nau"},"waterway/canal":{"name":"Canal","terms":"canal,sèquia,séquia"},"waterway/canal/lock":{"name":"Canal de resclosa","terms":"resclosa,esclosa,esclusa,canal"},"waterway/dam":{"name":"Presa","terms":"presa,pantà,embassament"},"waterway/ditch":{"name":"Cuneta","terms":"séquia,sèquia,rara,canal,aigua,via aqüífera,torrent,conducció d'aigua,aqüífer,rierol"},"waterway/dock":{"name":"Moll humit / Moll sec","terms":"bot,vaixell,veler,marina seca,marina"},"waterway/drain":{"name":"Canal de desguàs","terms":"canal,desguàs,pluja,aigua,desaigüe,drenatge,claveguera"},"waterway/fish_pass":{"name":"Pas per a peixos","terms":"escala d'anguiles,pas d'anguiles,escala de peixos,migració de peixos,pas de peixos,sifó de peixos,escalons de peixos,camí de peixos"},"waterway/fuel":{"name":"Benzinera per a embarcacions","terms":"petroli,gas,gasoil,diesel,bot,vaixell,benzinera marítima"},"waterway/lock_gate":{"name":"resclosa","terms":"canal,esclusa,esclosa,reclosa"},"waterway/milestone":{"name":"Fita de curs d'aigua","terms":"fita,marcador,hito,mojón"},"waterway/river":{"name":"Riu","terms":"afluent,curs d'aigua,estuari,priel,rambla,rierol,riera,torrent,uadi,xaragall"},"waterway/sanitary_dump_station":{"name":"Abacodor d'aigües negres per a embarcacions","terms":"vaixell,bot,barc,sanitari,servici,servei,aseo,aseo químic,estació de descarrega"},"waterway/stream":{"name":"Rierol","terms":"séquia,rierol,fil d'aigua,rajolí,riuet,ramal,reguer,segla,canal,rec,regueró,sequiola,sequió,cavim"},"waterway/stream_intermittent":{"name":"Rierol intermitent","terms":"arroyo,branca,bifurcació,curs d'aigua,inundació","aliases":"Barranc intermitent"},"waterway/tidal_channel":{"name":"Canal de Marea","terms":"priel,canal de marea,canal,marea,marina,marítim"},"waterway/water_point":{"name":"Aigua Potable per a Vaixells","terms":"punt d'aigua,aixeta d'aigua,font d'aigua"},"waterway/waterfall":{"name":"Cascada","terms":"salt d'aigua,saltant,sallent,fall"},"waterway/weir":{"name":"Assut","terms":"assut,pressa petita,pressa menuda,pressa,aigua"}}}}}
\ No newline at end of file
diff --git a/dist/translations/ceb.json b/dist/translations/ceb.json
new file mode 100644
index 00000000..f4d03283
--- /dev/null
+++ b/dist/translations/ceb.json
@@ -0,0 +1,3 @@
+{
+ "ceb": {}
+}
\ No newline at end of file
diff --git a/dist/translations/ceb.min.json b/dist/translations/ceb.min.json
new file mode 100644
index 00000000..9c54951f
--- /dev/null
+++ b/dist/translations/ceb.min.json
@@ -0,0 +1 @@
+{"ceb":{}}
\ No newline at end of file
diff --git a/dist/translations/ckb.json b/dist/translations/ckb.json
index 9e556350..dc7641f9 100644
--- a/dist/translations/ckb.json
+++ b/dist/translations/ckb.json
@@ -1,9 +1,65 @@
{
"ckb": {
"presets": {
+ "categories": {
+ "category-barrier": {
+ "name": "بەربەست"
+ },
+ "category-building": {
+ "name": "باڵەخانە"
+ },
+ "category-golf": {
+ "name": "گۆڵف"
+ },
+ "category-natural": {
+ "name": "سروشت"
+ },
+ "category-path": {
+ "name": "پیادەڕێ"
+ },
+ "category-playground": {
+ "name": "هەوشەنگ"
+ },
+ "category-rail": {
+ "name": "ئاسنڕێ"
+ },
+ "category-restriction": {
+ "name": "پێشگیری"
+ },
+ "category-road_major": {
+ "name": "جادە سەرەکییەکان"
+ },
+ "category-road_minor": {
+ "name": "جادە لاوەکییەکان"
+ },
+ "category-road_service": {
+ "name": "شەقامی ڕاژەگوزاری"
+ },
+ "category-utility": {
+ "name": "ڕاژەوانی گشتی"
+ },
+ "category-water": {
+ "name": "ئاو"
+ },
+ "category-waterway": {
+ "name": "ئاوەڕۆ"
+ }
+ },
"fields": {
"access": {
"options": {
+ "customers": {
+ "title": "کڕیاران"
+ },
+ "permissive": {
+ "title": "بە ڕێپێدان"
+ },
+ "private": {
+ "title": "تایبەت"
+ },
+ "unknown": {
+ "title": "نەناسراو"
+ },
"yes": {
"title": "ڕێگەدراو"
}
@@ -15,6 +71,36 @@
"horse": "ئەسپ"
}
},
+ "access_aisle": {
+ "label": "جۆر"
+ },
+ "access_simple": {
+ "options": {
+ "customers": "تەنیا کڕیاران",
+ "no": "هیچیان",
+ "permissive": "بە ڕێپێدان",
+ "permit": "تەنیا بە ڕێپێدان",
+ "private": "تایبەت",
+ "unknown": "نەزانراو",
+ "yes": "گشتی"
+ }
+ },
+ "activity": {
+ "label": "چالاکی",
+ "options": {
+ "bicycle": "پایسکلسواری",
+ "hiking": "شاخەوانی",
+ "horse": "هەسپسواری",
+ "mtb": "پایسکسواری شاخی"
+ }
+ },
+ "addr/interpolation": {
+ "label": "جۆر",
+ "options": {
+ "all": "هەموو",
+ "alphabetic": "ئەلفوبێ"
+ }
+ },
"address": {
"label": "ناونیشان",
"placeholders": {
@@ -22,13 +108,27 @@
"city!vn": "شار/شارۆچکە",
"conscriptionnumber": "١٢٣",
"country": "وڵات",
+ "floor": "نهۆم",
+ "housename": "ناوی خانوو",
+ "housenumber": "١٢٣",
+ "neighbourhood": "گەڕەک",
+ "place": "شوێن",
+ "postcode": "کۆدی پۆستە",
"province": "پارێزگا",
+ "quarter": "کەرت",
"street": "شەقام",
"suburb": "گەڕەک",
"unit": "یەکە"
}
},
+ "advertising": {
+ "label": "جۆر"
+ },
+ "aerialway": {
+ "label": "جۆر"
+ },
"aerialway/access": {
+ "label": "دەست پێ ڕاگەیشتن",
"options": {
"both": "هەردووک",
"entry": "چوونەژوور",
@@ -52,6 +152,21 @@
"exit": "چوونەدەر"
}
},
+ "aeroway": {
+ "label": "جۆر"
+ },
+ "agrarian": {
+ "label": "بەرهەم"
+ },
+ "aircraft/type": {
+ "label": "جۆر",
+ "options": {
+ "military": "سەربازیی"
+ }
+ },
+ "amenity": {
+ "label": "جۆر"
+ },
"animal_boarding": {
"label": "بۆ ئاژەڵان"
},
@@ -61,11 +176,202 @@
"animal_shelter": {
"label": "بۆ ئاژەڵان"
},
+ "archaeological_site": {
+ "label": "جۆر",
+ "options": {
+ "city": "شاری مێژوویی"
+ }
+ },
+ "architect": {
+ "label": "سازەوان"
+ },
+ "area/highway": {
+ "label": "جۆر"
+ },
+ "armrest": {
+ "options": {
+ "undefined": "نەزانراو"
+ }
+ },
"artist": {
"label": "هونەرمەند"
},
+ "artwork_type": {
+ "label": "جۆر",
+ "options": {
+ "bust": "نیوەپەیکەر",
+ "painting": "نیگار",
+ "sculpture": "کۆتەڵ",
+ "statue": "پەیکەر"
+ }
+ },
+ "attraction": {
+ "label": "جۆر",
+ "options": {
+ "train": "شەمەندەفەری گەشتیاریی"
+ }
+ },
+ "baby_feeding": {
+ "label": "حاندی پەرستاریی زارۆکان",
+ "options": {
+ "no": "هیچیان"
+ }
+ },
+ "baby_seat": {
+ "label": "شوێنی دانیشتنی منداڵ"
+ },
+ "bar": {
+ "label": "مەیخانە"
+ },
+ "barrier": {
+ "label": "جۆر",
+ "options": {
+ "chain": "زنجیر",
+ "city_wall": "دیواری شار",
+ "entrance": "چوونەژوور",
+ "fence": "پەرژین",
+ "gate": "دەروازە",
+ "wall": "دیوار"
+ }
+ },
+ "barrier_planter": {
+ "options": {
+ "planter": "بەڵێ",
+ "undefined": "نەخێر"
+ }
+ },
+ "basin": {
+ "label": "جۆر"
+ },
+ "bath/type": {
+ "options": {
+ "hammam": "گەرماو",
+ "hot_spring": "گڕاو",
+ "lake": "دەریاچە"
+ }
+ },
+ "beauty": {
+ "options": {
+ "cosmetics": "جوانکاری"
+ }
+ },
+ "bicycle_parking": {
+ "label": "جۆر",
+ "options": {
+ "building": "لەناو باڵەخانەیەک"
+ }
+ },
+ "bicycle_road": {
+ "label": "ڕێی پایسکیل",
+ "options": {
+ "undefined": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
+ "bin": {
+ "label": "تەنەکی زبڵ"
+ },
+ "blind": {
+ "options": {
+ "limited": "سنووردار",
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
+ "board_type": {
+ "label": "جۆر",
+ "options": {
+ "art": "هونەر",
+ "history": "مێژوو",
+ "nature": "سروشت",
+ "plants": "ڕووەک",
+ "welcome_sign": "نیشانی_بەخێرهاتن"
+ }
+ },
+ "bollard": {
+ "label": "جۆر"
+ },
+ "boules": {
+ "label": "جۆر"
+ },
+ "boundary": {
+ "label": "جۆر"
+ },
+ "branch_brand": {
+ "label": "لق"
+ },
+ "bridge": {
+ "label": "جۆر",
+ "placeholder": "بنەڕەت"
+ },
+ "bridge/ref": {
+ "label": "ژمارەی پرد"
+ },
+ "bridge/support": {
+ "label": "جۆر"
+ },
+ "bridge_combo": {
+ "label": "جۆر"
+ },
"building": {
- "label": "باڵەخانە"
+ "label": "باڵەخانە",
+ "options": {
+ "church": "باڵەخانەی کڵێسا",
+ "college": "باڵەخانەی کۆلێژ",
+ "commercial": "باڵەخانەی بازرگانی",
+ "construction": "باڵەخانەکە لە بونیاتناندایە",
+ "cowshed": "تەویلە",
+ "fire_station": "باڵەخانەی ئاگرکوژێنەوە",
+ "garage": "گەراج",
+ "garages": "گەراج",
+ "ger": "ڕەشماڵ (یورت)",
+ "grandstand": "جێگای تەماشاوانان",
+ "greenhouse": "سەوزخانە",
+ "hangar": "پەنافڕۆکە",
+ "hospital": "باڵەخانەی نەخۆشخانە",
+ "hotel": "باڵەخانەی میوانخانە",
+ "house": "خانوو",
+ "hut": "کوخ",
+ "industrial": "باڵەخانەی پیشەسازی",
+ "kindergarten": "باڵەخانەی دایەنگە و باخچەی ساوایان",
+ "mosque": "باڵەخانەی مزگەوت",
+ "office": "باڵەخانەی نووسینگە",
+ "public": "باڵەخانەی گشتیی",
+ "residential": "باڵەخانەی نیشتەجێبوون",
+ "roof": "بنمیچ",
+ "school": "باڵەخانەی قوتابخانە",
+ "service": "باڵەخانەی ڕاژەگوزاری",
+ "shed": "حەسار",
+ "stadium": "باڵەخانەی یاریگا",
+ "static_caravan": "ماڵی گوازراوە",
+ "sty": "بەرازخان",
+ "temple": "باڵەخانەی پەرستگە",
+ "terrace": "ڕێزە خانوو",
+ "train_station": "باڵەخانەی وێستگەی شەمەندەفەر",
+ "university": "باڵەخانەی زانکۆ",
+ "warehouse": "کۆگا"
+ }
+ },
+ "building/flats": {
+ "label": "یەکە",
+ "placeholder": "٢، ٤، ٦، ٨..."
+ },
+ "building/levels": {
+ "label": "نهۆم",
+ "placeholder": "٢، ٤، ٦..."
+ },
+ "building/levels/underground": {
+ "label": "نهۆمی ژێرزەمینی",
+ "placeholder": "٢، ٤، ٦..."
+ },
+ "building/material": {
+ "label": "مادە"
+ },
+ "building/part": {
+ "label": "بەشێکی باڵەخانە"
+ },
+ "bunker_type": {
+ "label": "جۆر"
},
"cables": {
"placeholder": "١، ٢، ٣..."
@@ -76,30 +382,392 @@
"camera/type": {
"label": "جۆری کامێرا",
"options": {
+ "dome": "قوبە",
"fixed": "چاککرا"
}
},
+ "camp_site": {
+ "label": "جۆر"
+ },
"capacity": {
"placeholder": "٥٠، ١٠٠، ٢٠٠..."
},
+ "capacity/caravans": {
+ "placeholder": "١٠، ٢٠، ٥٠..."
+ },
+ "capacity/disabled_parking": {
+ "placeholder": "١، ٢، ٣..."
+ },
+ "capacity/persons": {
+ "placeholder": "٥٠، ١٠٠، ٢٠٠..."
+ },
+ "capacity/tents": {
+ "placeholder": "١٠، ٢٠، ٥٠..."
+ },
+ "capacity_parking": {
+ "placeholder": "١٠، ٢٠، ٣٠..."
+ },
+ "capacity_volume": {
+ "placeholder": "٥٠، ١٠٠، ٢٠٠..."
+ },
+ "castle_type": {
+ "label": "جۆر"
+ },
+ "check_date": {
+ "label": "دوا ڕێکەوتی بەسەرداچوونەوە",
+ "placeholder": "سسسس-مم-ڕڕ"
+ },
+ "circumference": {
+ "placeholder": "١ م، ٢٠ سم، ٣٠\"..."
+ },
+ "climbing/length": {
+ "label": "درێژی (مەتر)"
+ },
"clothes": {
- "label": "جلوبەرگ"
+ "label": "جلوبەرگ",
+ "options": {
+ "babies": "جلوبەرگی ساوایان",
+ "children": "جلوبەرگی منداڵان",
+ "men": "جلوبەرگی پیاوان",
+ "socks": "گۆرەوی",
+ "sports": "وەرزشی",
+ "swimwear": "مەلەوانی",
+ "wedding": "جلوبەرگی زەماوەند",
+ "women": "جلوبەرگی ژنان"
+ }
+ },
+ "club": {
+ "label": "جۆر"
+ },
+ "colour": {
+ "label": "ڕەنگ"
+ },
+ "community_centre": {
+ "label": "جۆر",
+ "options": {
+ "youth_centre": "ناوەندی گەنجان"
+ }
+ },
+ "construction": {
+ "label": "جۆر"
+ },
+ "consulate": {
+ "label": "جۆر",
+ "options": {
+ "yes": "کونسوڵخانە"
+ }
+ },
+ "contact/facebook": {
+ "label": "بەستەر یان ناوی بەکارهێنەری فەیسبووک",
+ "placeholder": "https://www.facebook.com/LocalBusiness"
+ },
+ "contact/webcam": {
+ "placeholder": "http://example.com/"
+ },
+ "content": {
+ "label": "ناوەڕۆک"
+ },
+ "conveying": {
+ "label": "ئاڕاستەی جوولە",
+ "options": {
+ "backward": "پشتەوە",
+ "forward": "پێشەوە"
+ }
},
"country": {
"label": "وڵات"
},
+ "country_flag": {
+ "label": "ئاڵای وڵات"
+ },
+ "couplings": {
+ "placeholder": "١، ٢، ٣..."
+ },
+ "covered": {
+ "label": "داپۆشراو"
+ },
+ "covered_no": {
+ "options": {
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
+ "craft": {
+ "label": "جۆر",
+ "options": {
+ "beekeeper": "هەنگەوان",
+ "blacksmith": "ئاسنگەر",
+ "bookbinder": "چزوبەندکەر",
+ "carpenter": "دارتاش",
+ "caterer": "سوروساتچی",
+ "clockmaker": "کاتژمێرچی",
+ "electrician": "کارەباچی",
+ "gardener": "باخەوان",
+ "glaziery": "جامبڕی",
+ "jeweller": "زێڕنگر",
+ "locksmith": "کلیلساز",
+ "painter": "نیگارکێش",
+ "photographer": "وێنەگر",
+ "photographic_laboratory": "تاقیگەی وێنەگری",
+ "plasterer": "سواخدەر",
+ "plumber": "بۆڕیچی",
+ "roofer": "میچساز",
+ "saddler": "زیندروو",
+ "sawmill": "داربڕی",
+ "sculptor": "بەردتاش",
+ "shoemaker": "پینەدۆز",
+ "stonemason": "بەردکار",
+ "tailor": "بەرگدوور",
+ "tiler": "کاشیچی",
+ "tinsmith": "تەنەکەچی",
+ "upholsterer": "بەرگتێگر",
+ "watchmaker": "کاتژمێرساز",
+ "winery": "کارگەی مەی"
+ }
+ },
+ "crop": {
+ "label": "دانەوێڵە",
+ "options": {
+ "asparagus": "گیامارانە",
+ "barley": "جۆ",
+ "beet": "چەوەندەر",
+ "cassava": "شیرهەرد",
+ "coffee": "قاوە",
+ "cotton": "پەمۆ",
+ "cranberries": "تووەقوڵنگ",
+ "flowers": "گوڵ",
+ "grape": "ترێ",
+ "grass": "گژوگیا",
+ "hop": "گیازام",
+ "lavender": "گوڵەخەزێم",
+ "maize": "گەنمەشامی",
+ "potato": "پەتاتە",
+ "rape": "دانی شێلم",
+ "rice": "برنج",
+ "strawberry": "شلیک",
+ "sugar_beet": "چەوەندەری شەکر",
+ "sugarcane": "نەیشەکر",
+ "sunflower": "گوڵەبەڕۆژە",
+ "tea": "چای",
+ "tobacco": "تووتن",
+ "vegetable": "سەوزە",
+ "wheat": "گەنم"
+ }
+ },
+ "crossing": {
+ "label": "جۆر",
+ "options": {
+ "uncontrolled": "تەنیا سەر شەقام درۆڤ کراوە"
+ }
+ },
+ "crossing/barrier": {
+ "options": {
+ "half": "نیوە",
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
+ "crossing/markings": {
+ "label": "درۆڤی پەڕینەوە"
+ },
+ "crossing_raised": {
+ "options": {
+ "table": "بەڵێ",
+ "undefined": "نەخێر"
+ }
+ },
+ "cuisine": {
+ "options": {
+ "african": "ئەفریقایی",
+ "american": "ئەمریکایی",
+ "argentinian": "ئەرجەنتینیی",
+ "asian": "ئاسیایی",
+ "balkan": "بالکانیی",
+ "bavarian": "باڤاریایی",
+ "brazilian": "بەڕازیلیی",
+ "breakfast": "تێشت",
+ "burger": "بەرگەر",
+ "cake": "کێک",
+ "caribbean": "کاریبیی",
+ "chicken": "مریشک",
+ "chinese": "چینیی",
+ "coffee_shop": "قاوەخانە",
+ "diner": "شیو",
+ "european": "ئەوڕوپایی",
+ "filipino": "فلیپینیی",
+ "fish": "ماسی",
+ "french": "فەڕەنسایی",
+ "fries": "سوورکراوە",
+ "frozen_yogurt": "ماستی بەستوو",
+ "hawaiian": "هاواییی",
+ "ice_cream": "ساردەمەنی",
+ "indian": "هیندیی",
+ "indonesian": "ئەندەنووسیایی",
+ "italian": "ئیتاڵیایی",
+ "japanese": "ژاپۆنیی",
+ "juice": "میواو",
+ "kebab": "کەباب",
+ "korean": "کۆریایی",
+ "lebanese": "لوبنانیی",
+ "malaysian": "مالیزیایی",
+ "mexican": "مەکسیکیی",
+ "moroccan": "مەغریبیی",
+ "pasta": "پاستا",
+ "pizza": "پیتزا",
+ "regional": "هەرێمی",
+ "russian": "ڕووسیایی",
+ "salad": "زەڵاتە",
+ "sandwich": "بابۆڵە",
+ "seafood": "خۆراکی دەریایی",
+ "shawarma": "شاورمە",
+ "spanish": "ئیسپانیایی",
+ "sushi": "سوشی",
+ "taiwanese": "تایوانیی",
+ "tea": "چای",
+ "ukrainian": "ئۆکرانیایی",
+ "vietnamese": "ڤێتنامی",
+ "western": "ڕۆژاوایی",
+ "wings": "باڵی مریشک"
+ }
+ },
+ "currency_multi": {
+ "label": "جۆری دراو"
+ },
+ "cutting": {
+ "label": "جۆر",
+ "placeholder": "بنەڕەت"
+ },
+ "cycle_barrier": {
+ "label": "جۆر"
+ },
+ "cycle_barrier/installation": {
+ "options": {
+ "fixed": "چاککرا"
+ }
+ },
+ "cycleway": {
+ "options": {
+ "no": {
+ "title": "هیچیان"
+ }
+ },
+ "types": {
+ "cycleway:left": "دەستەچەپ",
+ "cycleway:right": "دەستەڕاست"
+ }
+ },
"date": {
"label": "ڕێکەوت"
},
+ "delivery": {
+ "label": "گەیاندن"
+ },
+ "departures_board": {
+ "options": {
+ "no": "هیچیان",
+ "yes": "بەڵێ"
+ }
+ },
+ "depot": {
+ "label": "جۆر"
+ },
+ "depth": {
+ "label": "قوڵی (مەتر)"
+ },
+ "description": {
+ "label": "پێناسە"
+ },
"devices": {
"placeholder": "١، ٢، ٣..."
},
+ "diameter": {
+ "label": "تیرە",
+ "placeholder": "٥ مم، ١٠ سم، ١٥ ئینج..."
+ },
+ "diameter_crown": {
+ "placeholder": "٤ م، ٩'، ..."
+ },
+ "diet_multi": {
+ "options": {
+ "gluten_free": "بێ گلوتین",
+ "halal": "حەلال",
+ "kosher": "کۆشەر",
+ "vegetarian": "ڕووەکخۆر"
+ }
+ },
+ "diplomatic": {
+ "label": "جۆر",
+ "options": {
+ "consulate": "کونسوڵخانە"
+ }
+ },
"direction": {
"placeholder": "٤٥، ٩٠، ١٨٠، ٢٧٠"
},
+ "direction_cardinal-US-CA-NZ": {
+ "label": "ئاڕاستە"
+ },
+ "direction_clock": {
+ "label": "ئاڕاستە"
+ },
+ "direction_point": {
+ "placeholder": "٤٥، ٩٠، ١٨٠، ٢٧٠"
+ },
+ "direction_vertex": {
+ "options": {
+ "backward": "پشتەوە",
+ "both": "هەردووک / هەموو",
+ "forward": "پێشەوە"
+ }
+ },
+ "display": {
+ "options": {
+ "digital": "ڕەنووسی"
+ }
+ },
"distance": {
"label": "مەودا"
},
+ "disused/amenity": {
+ "label": "جۆر"
+ },
+ "disused/railway": {
+ "label": "جۆر"
+ },
+ "disused/shop": {
+ "label": "جۆر"
+ },
+ "dock": {
+ "label": "جۆر"
+ },
+ "dog": {
+ "label": "سەگ",
+ "options": {
+ "no": "ڕێپێ نەدراوە",
+ "yes": "ڕێپێ دراوە"
+ }
+ },
+ "door": {
+ "label": "دەرگا"
+ },
+ "door/height": {
+ "label": "بڵندی دەرگا (مەتر)"
+ },
+ "door/width": {
+ "label": "پانی دەرگا (مەتر)"
+ },
+ "door_type": {
+ "label": "جۆر"
+ },
+ "drink_multi": {
+ "label": "خواردنەوە"
+ },
+ "drinking_water": {
+ "label": "دەخورێتەوە"
+ },
+ "drinking_water_available": {
+ "label": "ئاوی خواردنەوە بەردەستە"
+ },
"duration": {
"label": "ماوە",
"placeholder": "٠٠:٠٠"
@@ -109,26 +777,129 @@
"no": "نەخێر"
}
},
- "entrance": {
+ "email": {
+ "placeholder": "example@example.com"
+ },
+ "embankment": {
+ "label": "جۆر",
+ "placeholder": "بنەڕەت"
+ },
+ "embassy": {
"label": "جۆر"
},
+ "emergency_combo": {
+ "label": "جۆر"
+ },
+ "emergency_ward_entrance": {
+ "label": "جۆر"
+ },
+ "enforcement": {
+ "label": "جۆر"
+ },
+ "entrance": {
+ "label": "جۆر",
+ "options": {
+ "emergency": "دەرچەی تەنگەتاوی",
+ "garage": "دەرگای گەراج",
+ "main": "سەرەکی",
+ "secondary": "لاوەکی",
+ "service": "ڕاژەگوزاری"
+ }
+ },
+ "expressway-US": {
+ "label": "شاڕێ"
+ },
+ "fax": {
+ "placeholder": "+٣١ ٤٢ ١٢٣ ٤٥٦٧"
+ },
+ "fence_type": {
+ "label": "جۆر"
+ },
+ "fire_hydrant/position": {
+ "options": {
+ "lane": "کەلی شەقام"
+ }
+ },
"fire_hydrant/type": {
+ "label": "شێوە",
"options": {
"wall": "دیوار"
}
},
+ "fire_mains": {
+ "options": {
+ "no": "نەخێر"
+ }
+ },
+ "fire_service_inlet": {
+ "label": "شێوە",
+ "options": {
+ "wall": "دیوار"
+ }
+ },
+ "fire_sprinkler": {
+ "options": {
+ "no": "نەخێر"
+ }
+ },
+ "flag/name": {
+ "label": "ناوی ئاڵا"
+ },
+ "flag/type": {
+ "label": "جۆری ئاڵا"
+ },
+ "flashing_lights": {
+ "options": {
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
+ "ford": {
+ "label": "جۆر",
+ "placeholder": "بنەڕەت"
+ },
+ "fountain": {
+ "label": "جۆر"
+ },
+ "fuel/fuel_multi": {
+ "options": {
+ "LH2": "هایدرۆجینی شل"
+ }
+ },
"gender": {
"label": "ڕەگەز",
"options": {
"female": "مێ",
- "male": "نێر"
- }
+ "male": "نێر",
+ "unisex": "نێرەموک"
+ },
+ "placeholder": "نەزانراو"
},
"generator/output/electricity": {
"placeholder": "٥٠ مێگاوات، ١٠٠ مێگاوات، ٢٠٠ مێگاوات..."
},
"generator/source": {
- "label": "سەرچاوە"
+ "label": "سەرچاوە",
+ "options": {
+ "battery": "پیل",
+ "coal": "ڕەژوو",
+ "gas": "گازی سروشتی",
+ "hydro": "وزەی کارۆئاوی",
+ "nuclear": "وزەی ناوەکی",
+ "oil": "نەوت",
+ "waste": "پاشماوە",
+ "wave": "شەپۆلەوزە",
+ "wind": "با"
+ }
+ },
+ "generator/type": {
+ "label": "جۆر"
+ },
+ "government": {
+ "label": "جۆر"
+ },
+ "guest_house": {
+ "label": "جۆر"
},
"handicap": {
"placeholder": "١-١٨"
@@ -136,29 +907,92 @@
"hashtags": {
"placeholder": "#نموونە"
},
+ "hazard_boundary": {
+ "options": {
+ "nuclear": "ناوەکی / تیشکدانەوە"
+ }
+ },
+ "healthcare": {
+ "label": "جۆر",
+ "options": {
+ "blood_bank": "بانکی خوێن",
+ "clinic": "نۆڕینگە",
+ "counselling": "ناوەندی ڕاوێژکاری",
+ "dentist": "ددانساز",
+ "doctor": "پزیشک",
+ "hospital": "نەخۆشخانە",
+ "laboratory": "تاقیگەی پزیشکی",
+ "midwife": "مامان",
+ "nurse": "پەرستار",
+ "pharmacy": "دەرمانخانە",
+ "vaccination_centre": "ناوەندی کوتان"
+ }
+ },
+ "healthcare/speciality": {
+ "label": "پسپۆڕی",
+ "options": {
+ "abortion": "لەباربردن",
+ "allergology": "هەستیاری و هەناسەتەنگی",
+ "blood_check": "تاقیکردنەوەی خوێن",
+ "otolaryngology": "قوڕگ و لووت و گوێ",
+ "surgery": "نەشتەرگەری گشتیی",
+ "transplant": "نەشتەرگەری چاندن",
+ "vaccination": "کوتان"
+ }
+ },
"height": {
"label": "بەرزی (مەتر)"
},
+ "height_building": {
+ "label": "بەرزی باڵەخانە (مەتر)"
+ },
+ "highchair": {
+ "label": "کورسی بڵند"
+ },
+ "highway": {
+ "label": "جۆر"
+ },
+ "highway_cartpath": {
+ "label": "جۆری پیادە",
+ "options": {
+ "service": "شەقامی ڕاژەگوزاری"
+ }
+ },
+ "historic": {
+ "label": "جۆر",
+ "options": {
+ "building": "باڵەخانەی مێژوویی",
+ "castle": "قەڵا",
+ "church": "کڵیسا",
+ "city_gate": "دەروازەی شار",
+ "monument": "مۆنۆمێنت",
+ "railway": "ئاسنەڕێ"
+ }
+ },
+ "historic/civilization": {
+ "label": "شارستانیەتی مێژوویی"
+ },
+ "holding_position/type": {
+ "label": "جۆر"
+ },
"hoops": {
"placeholder": "١، ٢، ٤..."
},
- "horse_dressage": {
- "options": {
- "equestrian": "بەڵێ",
- "undefined": "نەخێر"
- }
- },
"horse_riding": {
"options": {
"horse_riding": "بەڵێ",
"undefined": "نەخێر"
}
},
- "horse_stables": {
- "options": {
- "stables": "بەڵێ",
- "undefined": "نەخێر"
- }
+ "iata": {
+ "label": "ژمارەی IATA فڕۆکەخانە"
+ },
+ "icao": {
+ "label": "ژمارەی ICAO فڕۆکەخانە"
+ },
+ "image": {
+ "label": "وێنە",
+ "placeholder": "https://example.com/photo.jpg"
},
"incline_steps": {
"options": {
@@ -166,13 +1000,77 @@
"up": "سەرەوە"
}
},
+ "indoor": {
+ "label": "ژوورەوە"
+ },
+ "indoor_type": {
+ "label": "جۆر"
+ },
+ "industrial": {
+ "label": "جۆر"
+ },
+ "information": {
+ "label": "جۆر"
+ },
"internet_access": {
"options": {
"no": "نەخێر",
- "wlan": "وایفای"
+ "wlan": "بێتەل",
+ "yes": "بەڵێ"
}
},
+ "internet_access/fee": {
+ "options": {
+ "customers": "تەنیا کڕیاران",
+ "no": "بەخۆڕاییە",
+ "yes": "بە پارەیە"
+ }
+ },
+ "internet_access/ssid": {
+ "label": "ناوی وایفای"
+ },
+ "irrigation_pivot": {
+ "options": {
+ "pivot": "بەڵێ",
+ "undefined": "نەخێر"
+ }
+ },
+ "junction_line": {
+ "label": "یەکتربڕ"
+ },
+ "kerb": {
+ "options": {
+ "no": {
+ "title": "نەخێر"
+ },
+ "yes": {
+ "title": "بەڵێ"
+ }
+ }
+ },
+ "kerb/height": {
+ "label": "بەرزی"
+ },
+ "kerb/kerb_barrier": {
+ "label": "جۆر"
+ },
+ "kitchen": {
+ "label": "ناندین"
+ },
+ "kneipp_water_cure_multi": {
+ "label": "جۆری چاڵاو"
+ },
+ "lamp_type": {
+ "label": "جۆر"
+ },
+ "landuse": {
+ "label": "جۆر"
+ },
+ "lane_markings": {
+ "label": "درۆڤی کەل"
+ },
"lanes": {
+ "label": "کەل",
"placeholder": "١، ٢، ٣..."
},
"language_multi": {
@@ -181,44 +1079,177 @@
"layer": {
"placeholder": "٠"
},
+ "layer_1": {
+ "placeholder": "٠"
+ },
"leaf_cycle": {
"options": {
+ "evergreen": "هەمیشە سەوز",
"mixed": "تێکەڵاو"
}
},
"leaf_type": {
+ "label": "جۆری گەڵا",
"options": {
- "mixed": "تێکەڵاو"
+ "leafless": "بێ گەڵا",
+ "mixed": "تێکەڵاو",
+ "needleleaved": "گەڵای دەزوویی"
}
},
+ "leaf_type_singular": {
+ "label": "جۆری گەڵا"
+ },
+ "leisure": {
+ "label": "جۆر"
+ },
+ "length": {
+ "label": "درێژی (مەتر)"
+ },
+ "level_semi": {
+ "label": "نهۆم"
+ },
+ "liaison": {
+ "label": "جۆر"
+ },
+ "lifeguard": {
+ "label": "جۆر"
+ },
+ "lifeguard_check": {
+ "label": "مەلەوانی ڕزگارکەر (ژینپارێز)"
+ },
+ "lift_gate/type": {
+ "label": "جۆر"
+ },
+ "lit": {
+ "label": "چرا"
+ },
"location": {
"label": "شوێن"
},
+ "location_pool": {
+ "options": {
+ "indoor": "ژوورەوە",
+ "outdoor": "دەرەوە"
+ }
+ },
+ "man_made": {
+ "label": "جۆر"
+ },
+ "manhole": {
+ "label": "جۆر"
+ },
+ "map_type": {
+ "label": "جۆر"
+ },
+ "marker": {
+ "label": "جۆر",
+ "options": {
+ "stone": {
+ "title": "بەرد"
+ }
+ }
+ },
+ "material": {
+ "label": "مادە",
+ "options": {
+ "adobe": "خشت",
+ "aluminium": "فافۆن",
+ "brick": "کەرپووچ",
+ "glass": "شووشە",
+ "iron": "ئاسن",
+ "limestone": "بەردەگەچ",
+ "marble": "مەڕمەڕ",
+ "metal": "کانزا",
+ "plastic": "پلاستیک",
+ "rock": "گاشەبەرد",
+ "sand": "لم",
+ "sandstone": "بەردەلم",
+ "soil": "خۆڵ، زەمین",
+ "steel": "پۆڵا",
+ "stone": "بەرد",
+ "wood": "دار"
+ }
+ },
+ "max_age": {
+ "label": "بەرزترین تەمەن"
+ },
"maxheight": {
- "label": "بەرزترین بەرزی"
+ "label": "زۆرترین بەرزی"
+ },
+ "maxlength": {
+ "label": "زۆرترین درێژی"
},
"maxspeed": {
- "label": "خێرایی سنووردار",
+ "label": "زۆرترین خێرایی",
"placeholder": "٤٠، ٥٠، ٦٠..."
},
"maxspeed/advisory": {
"placeholder": "٤٠، ٥٠، ٦٠..."
},
+ "maxspeed/hgv": {
+ "label": "زۆرترین خێرایی بارهەڵگر",
+ "placeholder": "٤٠، ٥٠، ٦٠..."
+ },
"maxstay": {
- "label": "زۆرترین مانەوە"
+ "label": "ئەوپەڕی مانەوە"
},
"maxweight": {
- "label": "زۆرترین کێش"
+ "label": "قورسایی"
+ },
+ "maxwidth": {
+ "label": "زۆرترین پانی"
+ },
+ "maxwidth/physical": {
+ "label": "زۆرترین پانی"
+ },
+ "memorial": {
+ "label": "جۆر",
+ "options": {
+ "bust": "نیوەپەیکەر",
+ "sculpture": "کۆتەڵ",
+ "statue": "پەیکەر",
+ "stone": "بەرد"
+ }
+ },
+ "military_service": {
+ "options": {
+ "air_force": "هێزی ئاسمانی"
+ }
+ },
+ "min_age": {
+ "label": "کەمترین تەمەن"
+ },
+ "minspeed": {
+ "placeholder": "٢٠، ٣٠، ٤٠..."
+ },
+ "mobile": {
+ "label": "ژمارەی مۆبایل",
+ "placeholder": "+٣١ ٤٢ ١٢٣ ٤٥٦٧"
+ },
+ "mooring": {
+ "options": {
+ "no": "نەخێر",
+ "private": "تایبەت",
+ "yes": "بەڵێ"
+ }
},
"mtb/scale": {
"placeholder": "٠، ١، ٢، ٣..."
},
"mtb/scale/imba": {
+ "options": {
+ "0": "⚪ ئاسانترین (بازنەی سپی)",
+ "1": "🟢 ئاسان (بازنەی کەسک)",
+ "2": "🟦 مامناوەند (چوارگۆشەی شین)"
+ },
"placeholder": "ئاسان، مامناوەند، گران..."
},
"mtb/scale/uphill": {
"placeholder": "٠، ١، ٢، ٣..."
},
+ "museum": {
+ "label": "جۆر"
+ },
"name": {
"label": "ناو"
},
@@ -252,6 +1283,21 @@
},
"placeholder": "ناوخۆیی، هەرێمی، نەتەوەیی، نێودەوڵەتی"
},
+ "not/name": {
+ "label": "ناوی هەڵە"
+ },
+ "note": {
+ "label": "تێبینی"
+ },
+ "nudism": {
+ "options": {
+ "permissive": "بە ڕێپێدان",
+ "yes": "ڕێپێ دراوە"
+ }
+ },
+ "office": {
+ "label": "جۆر"
+ },
"oneway": {
"label": "یەک ئاڕاستە",
"options": {
@@ -259,14 +1305,27 @@
"yes": "بەڵێ"
}
},
+ "oneway/bicycle": {
+ "label": "یەک ئاڕاستە (پایسکیل)"
+ },
"oneway_yes": {
"options": {
"no": "نەخێر",
"yes": "بەڵێ"
}
},
+ "opening_date": {
+ "placeholder": "سسسس-مم-ڕڕ"
+ },
"opening_hours": {
- "label": "کاتژمێر"
+ "label": "کاتژمێر",
+ "placeholder": "نەزانراو"
+ },
+ "organic": {
+ "options": {
+ "no": "هیچیان",
+ "only": "تەنها"
+ }
},
"outdoor_seating": {
"label": "شوێنی دانیشتنی دەرەوە"
@@ -274,6 +1333,49 @@
"par": {
"placeholder": "٣، ٤، ٥..."
},
+ "parcel_pickup": {
+ "options": {
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
+ "parking": {
+ "label": "جۆر",
+ "options": {
+ "lane": {
+ "title": "کەلی قەراخ ڕێ"
+ },
+ "street_side": {
+ "title": "ڕۆخی شەقام"
+ },
+ "surface": {
+ "title": "ڕووپۆش"
+ }
+ }
+ },
+ "parking/side/orientation": {
+ "types": {
+ "parking:left:orientation": "دەستەچەپ",
+ "parking:right:orientation": "دەستەڕاست"
+ }
+ },
+ "parking/side/parking": {
+ "options": {
+ "lane": "کەلی قەراخ ڕێ",
+ "no": "نەخێر",
+ "street_side": "ڕۆخی شەقام"
+ },
+ "types": {
+ "parking:left": "دەستەچەپ",
+ "parking:right": "دەستەڕاست"
+ }
+ },
+ "parking_entrance": {
+ "label": "جۆر"
+ },
+ "parking_space": {
+ "label": "جۆر"
+ },
"payment_multi": {
"label": "جۆرەکانی پارەدان"
},
@@ -283,27 +1385,177 @@
"phone": {
"label": "تەلەفۆن"
},
+ "pipeline": {
+ "label": "جۆر"
+ },
+ "piste/type": {
+ "label": "جۆر",
+ "options": {
+ "playground": "هەوشەنگ"
+ }
+ },
+ "place": {
+ "label": "جۆر"
+ },
+ "playground": {
+ "label": "جۆر"
+ },
+ "plots": {
+ "placeholder": "١٠، ٢٠، ٣٠..."
+ },
"population": {
"label": "دانیشتوان"
},
+ "population/date": {
+ "label": "ڕێکەوتی دانیشتووان",
+ "placeholder": "سسسس-مم-ڕڕ"
+ },
+ "post_box/type": {
+ "label": "جۆر"
+ },
+ "power": {
+ "label": "جۆر"
+ },
+ "product": {
+ "label": "بەرهەم"
+ },
+ "public_bookcase/type": {
+ "label": "جۆر"
+ },
+ "pump": {
+ "options": {
+ "no": "هیچیان",
+ "yes": "بەڵێ"
+ }
+ },
+ "railway": {
+ "label": "جۆر"
+ },
"railway/signal/direction": {
"options": {
+ "backward": "پشتەوە",
"both": "هەردووک / هەموو",
"forward": "بۆ پێشەوە"
}
},
+ "ramp": {
+ "options": {
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
+ "recycling_accepts": {
+ "options": {
+ "clothes": "جلوبەرگ",
+ "plastic": "پلاستیک"
+ }
+ },
+ "recycling_type": {
+ "label": "جۆر",
+ "options": {
+ "centre": "ناوەڕاست"
+ }
+ },
+ "ref_disc_golf_hole": {
+ "placeholder": "١-١٨"
+ },
"ref_golf_hole": {
"placeholder": "١-١٨"
},
"ref_road_number": {
- "label": "ژمارەی ڕێگا"
+ "label": "ژمارەی ڕێگە"
+ },
+ "relation": {
+ "label": "جۆر"
},
"religion": {
"label": "ئایین"
},
+ "residential": {
+ "label": "جۆر"
+ },
+ "resort": {
+ "label": "جۆر"
+ },
+ "resource": {
+ "options": {
+ "coal": "ڕەژوو",
+ "gold": "زێڕ",
+ "limestone": "بەردەگەچ",
+ "sand": "لم"
+ }
+ },
+ "restriction": {
+ "label": "جۆر"
+ },
+ "roller_coaster/track": {
+ "label": "جۆر"
+ },
+ "roof/shape": {
+ "options": {
+ "dome": "قوبە"
+ }
+ },
+ "room": {
+ "label": "جۆر"
+ },
"rooms": {
"label": "ژوور"
},
+ "route": {
+ "label": "جۆر"
+ },
+ "route_master": {
+ "label": "جۆر"
+ },
+ "royal_cypher-GB": {
+ "options": {
+ "no": "نەخێر"
+ }
+ },
+ "ruins": {
+ "label": "جۆر"
+ },
+ "seamark/beacon_isolated_danger/shape": {
+ "label": "شێوە"
+ },
+ "seamark/beacon_lateral/colour": {
+ "label": "ڕەنگ",
+ "options": {
+ "green": "سەوز"
+ }
+ },
+ "seamark/beacon_lateral/shape": {
+ "label": "شێوە"
+ },
+ "seamark/beacon_lateral/system": {
+ "options": {
+ "other": "هی تر"
+ }
+ },
+ "seamark/buoy_lateral/colour": {
+ "label": "ڕەنگ",
+ "options": {
+ "green": "سەوز"
+ }
+ },
+ "seamark/buoy_lateral/shape": {
+ "label": "شێوە"
+ },
+ "seamark/buoy_lateral/system": {
+ "options": {
+ "other": "هی تر"
+ }
+ },
+ "seamark/harbour/category_marina": {
+ "options": {
+ "marina": "بەڵێ",
+ "marina_no_facilities": "نەخێر"
+ }
+ },
+ "seats": {
+ "placeholder": "٢، ٤، ٦..."
+ },
"second_hand": {
"options": {
"no": "نەخێر",
@@ -312,15 +1564,31 @@
},
"placeholder": "بەڵێ، نەخێر، تەنها"
},
+ "service": {
+ "label": "جۆر",
+ "options": {
+ "alley": "کۆڵانۆچکە"
+ }
+ },
"service_times": {
"label": "کاتی ڕاژەکردن"
},
+ "shelter_type": {
+ "label": "جۆر"
+ },
+ "shop": {
+ "label": "جۆر"
+ },
"siren/type": {
+ "label": "جۆر",
"options": {
"electronic": "کارەبایی",
"other": "هی تر"
}
},
+ "site": {
+ "label": "جۆر"
+ },
"smoking": {
"label": "جگەرەکێشان",
"options": {
@@ -329,30 +1597,120 @@
"yes": "لە هەموو شوێنێک ڕێگەپێدراوە"
}
},
+ "social_facility": {
+ "label": "جۆر",
+ "options": {
+ "food_bank": "بانکی خواردن"
+ }
+ },
+ "social_facility_for": {
+ "options": {
+ "homeless": "بێلانە"
+ }
+ },
"source": {
- "label": "سەرچاوەکان"
+ "label": "سەرچاوەکان",
+ "options": {
+ "local knowledge": "زانیاری نێوخۆیی",
+ "osm notes": "تێبینییەکانی نەخشەی شەقامی کراوە"
+ }
},
"sport": {
+ "label": "وەرزشەکان",
+ "options": {
+ "american_football": "تۆپانێی ئەمریکایی",
+ "cycling": "پایسکلسواری"
+ }
+ },
+ "sport/sport_ice": {
+ "label": "وەرزشەکان"
+ },
+ "sport/sport_pub": {
+ "label": "وەرزشەکان"
+ },
+ "sport/sport_racing_motor": {
+ "label": "وەرزشەکان"
+ },
+ "sport/sport_racing_nonmotor": {
"label": "وەرزشەکان"
},
"stars": {
"label": "ئەستێرە"
},
"start_date": {
- "label": "رێکەوتی دەستپێکردن"
+ "label": "رێکەوتی دەستپێکردن",
+ "placeholder": "سسسس-مم-ڕڕ"
},
"step_count": {
"label": "ژمارەی پەیژەکان"
},
+ "stile": {
+ "label": "جۆر"
+ },
+ "stop": {
+ "options": {
+ "minor": "جادەی لاوەکی"
+ }
+ },
+ "street_cabinet": {
+ "label": "جۆر"
+ },
+ "stroller": {
+ "options": {
+ "limited": "سنووردار",
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
"structure": {
"options": {
"bridge": "پرد",
+ "embankment": "لاگیرە",
"tunnel": "تونێل"
- }
+ },
+ "placeholder": "نەزانراو"
+ },
+ "structure_canal": {
+ "options": {
+ "bridge": "پرد",
+ "tunnel": "تونێل"
+ },
+ "placeholder": "نەزانراو"
},
"structure_waterway": {
"options": {
"tunnel": "تونێل"
+ },
+ "placeholder": "نەزانراو"
+ },
+ "studio": {
+ "label": "جۆر"
+ },
+ "substance": {
+ "options": {
+ "gas": "گازی سروشتی",
+ "water": "ئاوی خواردنەوە"
+ }
+ },
+ "substation": {
+ "label": "جۆر",
+ "options": {
+ "industrial": "پیشەسازیی"
+ }
+ },
+ "substation_pipeline": {
+ "label": "جۆر",
+ "options": {
+ "industrial": "پیشەسازیی"
+ }
+ },
+ "surface": {
+ "label": "ڕووپۆش",
+ "options": {
+ "grass": "گژوگیا",
+ "metal": "ئاسن",
+ "sand": "لم",
+ "wood": "دار"
}
},
"surveillance/type": {
@@ -360,46 +1718,276 @@
"camera": "کامێرا"
}
},
+ "survey/date": {
+ "label": "دوا ڕێکەوتی چاولێکردن"
+ },
+ "survey_point/purpose": {
+ "options": {
+ "both": "هەردووک"
+ }
+ },
+ "swimming_pool": {
+ "label": "جۆر"
+ },
+ "switch": {
+ "label": "جۆر"
+ },
"takeaway": {
"options": {
"no": "نەخێر",
"yes": "بەڵێ"
}
},
+ "telecom": {
+ "label": "جۆر"
+ },
+ "telescope/type": {
+ "label": "جۆر"
+ },
+ "toilets": {
+ "label": "ئاودەست"
+ },
"toilets/disposal": {
"options": {
"chemical": "کیمایی"
}
},
+ "toilets/menstrual_products": {
+ "options": {
+ "no": "نەخێر"
+ }
+ },
+ "toilets/wheelchair": {
+ "options": {
+ "limited": "سنووردار",
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
+ "tomb": {
+ "label": "جۆر"
+ },
+ "tourism": {
+ "label": "جۆر"
+ },
+ "tower/platforms": {
+ "placeholder": "١، ٢، ٣..."
+ },
+ "tower/type": {
+ "label": "جۆر"
+ },
+ "townhall/type": {
+ "label": "جۆر"
+ },
+ "tracktype": {
+ "options": {
+ "grade4": "زۆربەی نەرم: گڵ/لم/گیا لەگەڵ تێکەڵەیەک لە ماددەی ڕەق",
+ "grade5": "نەرم: گڵ/لم/گیا"
+ }
+ },
+ "trade": {
+ "label": "جۆر"
+ },
+ "traffic_calming": {
+ "label": "جۆر",
+ "options": {
+ "bump": "تاسە"
+ }
+ },
+ "traffic_sign": {
+ "label": "هێمای هاتوچۆ"
+ },
+ "traffic_sign/direction": {
+ "options": {
+ "backward": "پشتەوە",
+ "both": "هەردووک / هەموو",
+ "forward": "پێشەوە"
+ }
+ },
+ "traffic_signals": {
+ "label": "جۆر"
+ },
+ "traffic_signals/direction": {
+ "options": {
+ "backward": "پشتەوە",
+ "both": "هەردووک / هەموو",
+ "forward": "پێشەوە"
+ }
+ },
+ "traffic_signals/sound": {
+ "options": {
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
+ "traffic_signals/vibration": {
+ "label": "لەرزین"
+ },
"trail_visibility": {
"placeholder": "نایاب، باش، خراپ..."
},
+ "transformer": {
+ "label": "جۆر"
+ },
"trees": {
"label": "درەخت"
},
+ "trench": {
+ "label": "جۆر"
+ },
+ "tunnel": {
+ "label": "جۆر",
+ "placeholder": "بنەڕەت"
+ },
+ "tunnel_combo": {
+ "label": "جۆر"
+ },
+ "turning_circle": {
+ "label": "شێوە"
+ },
+ "two_sided": {
+ "options": {
+ "undefined": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
"usage_rail": {
"options": {
+ "branch": "لق",
"industrial": "پیشەسازیی",
- "military": "سەربازیی"
+ "main": "سەرەکی",
+ "military": "سەربازیی",
+ "test": "تاقیکردنەوە",
+ "tourism": "گەشتیاری"
+ }
+ },
+ "utility": {
+ "options": {
+ "gas": "گاز",
+ "oil": "نەوت",
+ "sewerage": "زێراب",
+ "street_lighting": "چرای سەرشەقام",
+ "water": "ئاو"
+ }
+ },
+ "valve": {
+ "label": "جۆر"
+ },
+ "vehicles": {
+ "options": {
+ "bus": "پاس",
+ "train": "شەمەندەفەر"
+ }
+ },
+ "vending": {
+ "options": {
+ "bread": "نان",
+ "cigarettes": "جگارە",
+ "coffee": "قاوە",
+ "condoms": "کۆندۆم",
+ "drinks": "خواردنەوە",
+ "eggs": "هێلکە",
+ "food": "خواردن",
+ "ice_cream": "چلوورە",
+ "ice_cubes": "قالبە بەفر",
+ "milk": "شیر",
+ "newspapers": "ڕۆژنامە",
+ "parking_tickets": "پلیتی گەراج",
+ "pizza": "پیتزا",
+ "public_transport_tickets": "پلیتی گواستنەوەی گشتی",
+ "stamps": "پووڵی پۆستە",
+ "sweets": "شیرنەمەنی",
+ "water": "ئاوی خواردنەوە"
+ }
+ },
+ "video_calls": {
+ "label": "پەیوەندی ڤیدیۆیی"
+ },
+ "visibility": {
+ "options": {
+ "area": "هەتا ٢٠م (٦٥پێ)",
+ "house": "هەتا ٥م (١٦پێ)",
+ "street": "٥ بۆ ٢٠م (١٦ بۆ ٦٥پێ)"
}
},
"volcano/status": {
+ "label": "دۆخی گڕکان",
"options": {
- "active": "چالاک"
+ "active": "چالاک",
+ "dormant": "سست",
+ "extinct": "دامرکاو"
}
},
+ "volcano/type": {
+ "label": "جۆری گڕکان"
+ },
+ "wall": {
+ "label": "جۆر"
+ },
+ "waste": {
+ "label": "پاشماوە",
+ "options": {
+ "cigarettes": "جگارە"
+ }
+ },
+ "water": {
+ "label": "جۆر"
+ },
+ "water_source": {
+ "label": "سەرچاوەی ئاو",
+ "options": {
+ "main": "بۆڕی دابەشکردنی ئاو",
+ "pond": "گۆم",
+ "river": "ڕووبار",
+ "stream": "چەم",
+ "water_tank": "تانکی ئاو"
+ }
+ },
+ "water_tank/volume": {
+ "label": "قەبارە (لیتر)",
+ "placeholder": "١٠٠٠٠، ٢٠٠٠٠، ٣٠٠٠٠..."
+ },
+ "waterway": {
+ "label": "جۆر"
+ },
"website": {
- "label": "ماڵپەڕ"
+ "label": "وێبگە",
+ "placeholder": "https://example.com"
+ },
+ "website/menu": {
+ "placeholder": "https://example.com"
+ },
+ "wetland": {
+ "label": "جۆر"
+ },
+ "wheelchair": {
+ "options": {
+ "limited": "سنووردار",
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
+ "wholesale": {
+ "label": "کۆفرۆش"
},
"width": {
"label": "پانی (مەتر)"
},
+ "wikidata": {
+ "label": "ویکیدراوە"
+ },
"wikipedia": {
"label": "ویکیپیدیا"
},
"windings": {
"placeholder": "١، ٢، ٣..."
},
+ "windings/auto": {
+ "options": {
+ "no": "نەخێر",
+ "yes": "بەڵێ"
+ }
+ },
"windings/configuration": {
"options": {
"open": "کردنەوە"
@@ -425,6 +2013,12 @@
"amenity/bureau_de_change": {
"name": "گۆڕینەوەی دراو"
},
+ "amenity/cafe": {
+ "name": "قاوەخانە"
+ },
+ "amenity/car_rental": {
+ "name": "بەکرێدانی ئۆتۆمبێل"
+ },
"amenity/car_wash": {
"name": "شووشتنگەی ئۆتۆمبێل"
},
@@ -440,6 +2034,12 @@
"amenity/clock": {
"name": "کاتژمێر"
},
+ "amenity/community_centre/youth_centre": {
+ "name": "ناوەندی گەنجان"
+ },
+ "amenity/courthouse": {
+ "name": "دادگا"
+ },
"amenity/dentist": {
"name": "ددانساز"
},
@@ -449,30 +2049,27 @@
"amenity/drinking_water": {
"name": "ئاوی خواردنەوە"
},
+ "amenity/driver_training": {
+ "name": "گۆڕەپانی فێرکردنی شوفێری"
+ },
"amenity/fast_food": {
"name": "خواردنی خێرا"
},
- "amenity/fountain": {
- "name": "نافورە"
- },
"amenity/grave_yard": {
"name": "گۆڕستان"
},
"amenity/ice_cream": {
"name": "فرۆشگای ساردەمەنی"
},
- "amenity/language_school": {
- "name": "قوتابخانەی زمان"
- },
"amenity/library": {
"name": "پەڕتووکخانە"
},
- "amenity/music_school": {
- "name": "قوتابخانەی مۆسیقی"
- },
"amenity/nightclub": {
"name": "یانەی شەوانە"
},
+ "amenity/parking/street-side": {
+ "name": "گەراجی ڕۆخی شەقام"
+ },
"amenity/place_of_worship": {
"name": "پەرستگا"
},
@@ -491,8 +2088,11 @@
"amenity/restaurant": {
"name": "خواردنگە"
},
+ "amenity/restaurant/vietnamese": {
+ "name": "خواردنگەی ڤێتنامی"
+ },
"amenity/smoking_area": {
- "name": "ناوچەی جگەرەکێشان"
+ "name": "ناوەی جگەرەکێشان"
},
"amenity/social_facility/food_bank": {
"name": "بانکی خواردن"
@@ -510,11 +2110,20 @@
"name": "ڤێتێرنەری"
},
"area": {
- "name": "ناوچە"
+ "name": "ناوە"
+ },
+ "area/footway": {
+ "name": "ناوەی پیادەڕێ"
+ },
+ "area/highway": {
+ "name": "ناوەی شەقام"
},
"attraction/train": {
"name": "شەمەندەفەری گەشتیاریی"
},
+ "barrier/chain": {
+ "name": "زنجیر"
+ },
"barrier/city_wall": {
"name": "دیواری شار"
},
@@ -530,21 +2139,51 @@
"barrier/wall": {
"name": "دیوار"
},
+ "boundary/hazard": {
+ "name": "ناوچەی مەترسیدار"
+ },
+ "bridge/support": {
+ "name": "ڕاگری پرد"
+ },
"building": {
"name": "باڵەخانە"
},
"building/church": {
"name": "باڵەخانەی کڵێسا"
},
+ "building/college": {
+ "name": "باڵەخانەی کۆلێژ"
+ },
"building/commercial": {
"name": "باڵەخانەی بازرگانی"
},
"building/construction": {
"name": "باڵەخانەکە لەژێر بونیاتناندایە"
},
+ "building/cowshed": {
+ "name": "تەویلە"
+ },
+ "building/fire_station": {
+ "name": "باڵەخانەی ئاگرکوژێنەوە"
+ },
"building/garage": {
"name": "گەراج"
},
+ "building/garages": {
+ "name": "گەراج"
+ },
+ "building/ger": {
+ "name": "ڕەشماڵ (یورت)"
+ },
+ "building/grandstand": {
+ "name": "جێگای تەماشاوانان"
+ },
+ "building/greenhouse": {
+ "name": "سەوزخانە"
+ },
+ "building/hangar": {
+ "name": "پەنافڕۆکە"
+ },
"building/hospital": {
"name": "باڵەخانەی نەخۆشخانە"
},
@@ -554,59 +2193,209 @@
"building/house": {
"name": "خانوو"
},
+ "building/hut": {
+ "name": "کوخ"
+ },
"building/industrial": {
"name": "باڵەخانەی پیشەسازی"
},
+ "building/kindergarten": {
+ "name": "باڵەخانەی دایەنگە و باخچەی ساوایان"
+ },
"building/mosque": {
"name": "باڵەخانەی مزگەوت"
},
+ "building/office": {
+ "name": "باڵەخانەی نووسینگە"
+ },
"building/public": {
"name": "باڵەخانەی گشتیی"
},
"building/residential": {
"name": "باڵەخانەی نیشتەجێبوون"
},
+ "building/roof": {
+ "name": "بنمیچ"
+ },
+ "building/school": {
+ "name": "باڵەخانەی قوتابخانە"
+ },
+ "building/service": {
+ "name": "باڵەخانەی ڕاژەگوزاری"
+ },
+ "building/shed": {
+ "name": "حەسار"
+ },
+ "building/stadium": {
+ "name": "باڵەخانەی یاریگا"
+ },
+ "building/static_caravan": {
+ "name": "ماڵی گوازراوە"
+ },
+ "building/sty": {
+ "name": "بەرازخان"
+ },
+ "building/temple": {
+ "name": "باڵەخانەی پەرستگە"
+ },
+ "building/train_station": {
+ "name": "باڵەخانەی وێستگەی شەمەندەفەر"
+ },
+ "building/university": {
+ "name": "باڵەخانەی زانکۆ"
+ },
+ "building/warehouse": {
+ "name": "باڵەخانەی کۆگا"
+ },
+ "building_part": {
+ "name": "بەشێکی باڵەخانە"
+ },
+ "building_point": {
+ "name": "باڵەخانە"
+ },
+ "cemetery/grave": {
+ "name": "گۆڕ"
+ },
"club": {
"name": "یانە"
},
+ "club/sport": {
+ "name": "یانەی وەرزشی"
+ },
"craft/beekeeper": {
"name": "هەنگەوان"
},
+ "craft/blacksmith": {
+ "name": "ئاسنگەر"
+ },
+ "craft/bookbinder": {
+ "name": "چزوبەندکەر"
+ },
+ "craft/carpenter": {
+ "name": "دارتاش"
+ },
+ "craft/caterer": {
+ "name": "سوروساتچی"
+ },
"craft/clockmaker": {
"name": "کاتژمێرچی"
},
+ "craft/electrician": {
+ "name": "کارەباچی"
+ },
"craft/gardener": {
"name": "باخەوان"
},
+ "craft/glaziery": {
+ "name": "جامبڕی"
+ },
+ "craft/locksmith": {
+ "name": "کلیلساز"
+ },
"craft/painter": {
"name": "نیگارکێش"
},
"craft/photographer": {
"name": "وێنەگر"
},
+ "craft/photographic_laboratory": {
+ "name": "تاقیگەی وێنەگری"
+ },
+ "craft/plasterer": {
+ "name": "سواخدەر"
+ },
"craft/plumber": {
"name": "بۆڕیچی"
},
+ "craft/roofer": {
+ "name": "میچساز"
+ },
+ "craft/saddler": {
+ "name": "زیندروو"
+ },
+ "craft/sawmill": {
+ "name": "داربڕی"
+ },
+ "craft/sculptor": {
+ "name": "بەردتاش"
+ },
"craft/shoemaker": {
"name": "پینەدۆز"
},
+ "craft/stonemason": {
+ "name": "بەردکار"
+ },
+ "craft/tailor": {
+ "name": "بەرگدوور"
+ },
"craft/tiler": {
"name": "کاشیچی"
},
+ "craft/tinsmith": {
+ "name": "تەنەکەچی"
+ },
+ "craft/upholsterer": {
+ "name": "بەرگتێگر"
+ },
"craft/watchmaker": {
"name": "کاتژمێرساز"
},
"craft/winery": {
"name": "کارگەی مەی"
},
+ "embankment": {
+ "name": "لاگیرە"
+ },
+ "emergency/first_aid_kit": {
+ "name": "ساکی فریاگوزاری سەرەتایی"
+ },
+ "emergency/lifeguard": {
+ "name": "مەلەوانی ڕزگارکەر (ژینپارێز)"
+ },
+ "emergency/phone": {
+ "name": "تەلەفۆنی تەنگەتاوی"
+ },
+ "entrance/emergency": {
+ "name": "دەرچەی تەنگەتاوی"
+ },
+ "healthcare/counselling": {
+ "name": "ناوەندی ڕاوێژکاری"
+ },
+ "healthcare/laboratory": {
+ "name": "تاقیگەی پزیشکی"
+ },
+ "healthcare/midwife": {
+ "name": "مامان"
+ },
+ "highway/construction": {
+ "name": "ڕێگە لە چاککردندایە"
+ },
"highway/elevator": {
"name": "ئاسانسەر"
},
"highway/footway": {
"name": "پیادەڕۆ"
},
+ "highway/footway/informal": {
+ "name": "پیادەڕۆی نافەرمی"
+ },
+ "highway/living_street": {
+ "name": "کۆڵانی تەنگەبەر"
+ },
+ "highway/motorway": {
+ "name": "شاڕێ"
+ },
+ "highway/motorway_link": {
+ "name": "بەستەگی شاڕێ"
+ },
+ "highway/path": {
+ "name": "پیادەڕێ"
+ },
"highway/pedestrian_area": {
- "name": "ناوچەی نیشتەجێبوون"
+ "name": "گۆڕەپانی پیادە"
+ },
+ "highway/pedestrian_line": {
+ "name": "ڕێی پیادە"
},
"highway/primary": {
"name": "شەقامی سەرەکی"
@@ -632,6 +2421,9 @@
"highway/service/alley": {
"name": "کۆڵانۆچکە"
},
+ "highway/services": {
+ "name": "ناوەی ڕاژەگوزاری"
+ },
"highway/speed_camera": {
"name": "کامێرای خێرایی"
},
@@ -647,21 +2439,36 @@
"highway/traffic_signals": {
"name": "نیشانەکانی هاتوچۆ"
},
+ "highway/trunk": {
+ "name": "سەرەڕێ"
+ },
"highway/unclassified": {
- "name": "ڕێگای پۆلێننەکراو"
+ "name": "شەقامی پۆلێننەکراو"
},
"historic": {
"name": "جێگەی مێژوویی"
},
+ "historic/building": {
+ "name": "باڵەخانەی مێژوویی"
+ },
"historic/castle": {
"name": "قەڵا"
},
+ "historic/city_gate": {
+ "name": "دەروازەی شار"
+ },
+ "historic/monument": {
+ "name": "مۆنۆمێنت"
+ },
"junction": {
"name": "یەکتربڕ"
},
"landuse/commercial": {
"name": "ناوچەی بارزگانی"
},
+ "landuse/construction": {
+ "name": "ڕووبەری بنیاتنان"
+ },
"landuse/grass": {
"name": "گژوگیا"
},
@@ -677,23 +2484,155 @@
"landuse/military": {
"name": "ناوچەی سەربازیی"
},
+ "landuse/military/training_area": {
+ "name": "ناوچەی مەشقی سەربازی"
+ },
+ "landuse/pond": {
+ "name": "گۆم"
+ },
+ "landuse/religious": {
+ "name": "مەڵبەندی ئایینی"
+ },
"landuse/residential": {
"name": "ناوچەی نیشتەجێبوون"
},
+ "landuse/retail": {
+ "name": "گۆڕەپانی تاکفرۆشی"
+ },
+ "landuse/vineyard": {
+ "name": "ڕەز"
+ },
+ "landuse/winter_sports": {
+ "name": "گۆڕەپانی وەرزشی زستانە"
+ },
"leisure/dance": {
"name": "هۆڵی سەماکردن"
},
- "leisure/dancing_school": {
- "name": "قوتابخانەی سەما"
- },
"leisure/garden": {
"name": "باخچە"
},
+ "leisure/pitch/american_football": {
+ "name": "یاریگای تۆپانێی ئەمریکایی"
+ },
+ "leisure/pitch/australian_football": {
+ "name": "یاریگای تۆپانێی ئوسترالیایی"
+ },
+ "leisure/playground": {
+ "name": "هەوشەنگ"
+ },
+ "leisure/swimming_area": {
+ "name": "پانتایی مەلەی سروشتی"
+ },
+ "leisure/swimming_pool": {
+ "name": "حەزی مەلەوانی"
+ },
+ "line": {
+ "name": "هێڵ"
+ },
+ "man_made/bridge": {
+ "name": "پانتایی پرد"
+ },
+ "man_made/embankment": {
+ "name": "لاگیرە"
+ },
+ "man_made/storage_tank/water": {
+ "name": "تانکی ئاو"
+ },
+ "man_made/tunnel": {
+ "name": "پانتایی تونێل"
+ },
+ "military/office": {
+ "name": "نووسینگەی سەربازیی"
+ },
+ "natural/hot_spring": {
+ "name": "گڕاو"
+ },
+ "natural/sand": {
+ "name": "لم"
+ },
+ "natural/water": {
+ "name": "ئاو"
+ },
+ "natural/water/canal": {
+ "name": "پانتایی کارێز"
+ },
+ "natural/water/lake": {
+ "name": "دەریاچە"
+ },
+ "natural/water/pond": {
+ "name": "گۆم"
+ },
+ "natural/water/river": {
+ "name": "پانتایی ڕووبار"
+ },
+ "natural/water/stream": {
+ "name": "پانتایی چەم"
+ },
+ "natural/wood": {
+ "name": "دارستان"
+ },
+ "office/diplomatic/consulate": {
+ "name": "کونسوڵخانە"
+ },
+ "place": {
+ "name": "شوێن"
+ },
+ "place/city": {
+ "name": "شار"
+ },
+ "place/square": {
+ "name": "چوارگۆشە"
+ },
+ "playground": {
+ "name": "هەوشەنگ"
+ },
+ "point": {
+ "name": "خاڵ"
+ },
+ "railway/level_crossing": {
+ "name": "یەکتربڕی هێڵی ئاسنی"
+ },
+ "shop/hairdresser": {
+ "name": "سەرتاشخانە"
+ },
+ "shop/hairdresser_supply": {
+ "name": "فرۆشگای کەلوپەلی تراشین"
+ },
+ "shop/locksmith": {
+ "name": "کلیلساز"
+ },
+ "shop/tailor": {
+ "name": "بەرگدوور"
+ },
+ "tourism/artwork/bust": {
+ "name": "نیوەپەیکەر"
+ },
+ "tourism/artwork/sculpture": {
+ "name": "کۆتەڵ"
+ },
+ "tourism/artwork/statue": {
+ "name": "پەیکەر"
+ },
+ "tourism/information": {
+ "name": "زانیاری"
+ },
+ "tourism/information/board/welcome_sign": {
+ "name": "نیشانی_بەخێرهاتن"
+ },
+ "traffic_calming/bump": {
+ "name": "تاسە"
+ },
+ "traffic_sign": {
+ "name": "هێمای هاتوچۆ"
+ },
"waterway/dam": {
"name": "بەنداو"
},
"waterway/river": {
"name": "ڕووبار"
+ },
+ "waterway/stream": {
+ "name": "چەم"
}
}
}
diff --git a/dist/translations/ckb.min.json b/dist/translations/ckb.min.json
index cf03dd90..2ab645ec 100644
--- a/dist/translations/ckb.min.json
+++ b/dist/translations/ckb.min.json
@@ -1 +1 @@
-{"ckb":{"presets":{"fields":{"access":{"options":{"yes":{"title":"ڕێگەدراو"}},"types":{"access":"هەموو","bicycle":"پاسکیل","foot":"پیادە","horse":"ئەسپ"}},"address":{"label":"ناونیشان","placeholders":{"city":"شار","city!vn":"شار/شارۆچکە","conscriptionnumber":"١٢٣","country":"وڵات","province":"پارێزگا","street":"شەقام","suburb":"گەڕەک","unit":"یەکە"}},"aerialway/access":{"options":{"both":"هەردووک","entry":"چوونەژوور","exit":"چوونەدەر"}},"aerialway/capacity":{"placeholder":"٥٠٠، ٢٥٠٠، ٥٠٠٠..."},"aerialway/duration":{"label":"ماوە (خولەک)","placeholder":"١، ٢، ٣..."},"aerialway/occupancy":{"placeholder":"٢، ٤، ٨..."},"aerialway/summer/access":{"options":{"both":"هەردووک","entry":"چوونەژوور","exit":"چوونەدەر"}},"animal_boarding":{"label":"بۆ ئاژەڵان"},"animal_breeding":{"label":"بۆ ئاژەڵان"},"animal_shelter":{"label":"بۆ ئاژەڵان"},"artist":{"label":"هونەرمەند"},"building":{"label":"باڵەخانە"},"cables":{"placeholder":"١، ٢، ٣..."},"camera/direction":{"placeholder":"٤٥، ٩٠، ١٨٠، ٢٧٠"},"camera/type":{"label":"جۆری کامێرا","options":{"fixed":"چاککرا"}},"capacity":{"placeholder":"٥٠، ١٠٠، ٢٠٠..."},"clothes":{"label":"جلوبەرگ"},"country":{"label":"وڵات"},"date":{"label":"ڕێکەوت"},"devices":{"placeholder":"١، ٢، ٣..."},"direction":{"placeholder":"٤٥، ٩٠، ١٨٠، ٢٧٠"},"distance":{"label":"مەودا"},"duration":{"label":"ماوە","placeholder":"٠٠:٠٠"},"electrified":{"options":{"no":"نەخێر"}},"entrance":{"label":"جۆر"},"fire_hydrant/type":{"options":{"wall":"دیوار"}},"gender":{"label":"ڕەگەز","options":{"female":"مێ","male":"نێر"}},"generator/output/electricity":{"placeholder":"٥٠ مێگاوات، ١٠٠ مێگاوات، ٢٠٠ مێگاوات..."},"generator/source":{"label":"سەرچاوە"},"handicap":{"placeholder":"١-١٨"},"hashtags":{"placeholder":"#نموونە"},"height":{"label":"بەرزی (مەتر)"},"hoops":{"placeholder":"١، ٢، ٤..."},"horse_dressage":{"options":{"equestrian":"بەڵێ","undefined":"نەخێر"}},"horse_riding":{"options":{"horse_riding":"بەڵێ","undefined":"نەخێر"}},"horse_stables":{"options":{"stables":"بەڵێ","undefined":"نەخێر"}},"incline_steps":{"options":{"down":"خوارەوە","up":"سەرەوە"}},"internet_access":{"options":{"no":"نەخێر","wlan":"وایفای"}},"lanes":{"placeholder":"١، ٢، ٣..."},"language_multi":{"label":"زمان"},"layer":{"placeholder":"٠"},"leaf_cycle":{"options":{"mixed":"تێکەڵاو"}},"leaf_type":{"options":{"mixed":"تێکەڵاو"}},"location":{"label":"شوێن"},"maxheight":{"label":"بەرزترین بەرزی"},"maxspeed":{"label":"خێرایی سنووردار","placeholder":"٤٠، ٥٠، ٦٠..."},"maxspeed/advisory":{"placeholder":"٤٠، ٥٠، ٦٠..."},"maxstay":{"label":"زۆرترین مانەوە"},"maxweight":{"label":"زۆرترین کێش"},"mtb/scale":{"placeholder":"٠، ١، ٢، ٣..."},"mtb/scale/imba":{"placeholder":"ئاسان، مامناوەند، گران..."},"mtb/scale/uphill":{"placeholder":"٠، ١، ٢، ٣..."},"name":{"label":"ناو"},"natural":{"label":"سروشتی"},"network_bicycle":{"options":{"icn":"نێودەوڵەتی","lcn":"ناوخۆیی","ncn":"نەتەوەیی","rcn":"هەرێمی"},"placeholder":"ناوخۆیی، هەرێمی، نەتەوەیی، نێودەوڵەتی"},"network_foot":{"options":{"iwn":"نێودەوڵەتی","lwn":"ناوخۆیی","nwn":"نەتەوەیی","rwn":"هەرێمی"},"placeholder":"ناوخۆیی، هەرێمی، نەتەوەیی، نێودەوڵەتی"},"network_horse":{"options":{"ihn":"نێودەوڵەتی","lhn":"ناوخۆیی","nhn":"نەتەوەیی","rhn":"هەرێمی"},"placeholder":"ناوخۆیی، هەرێمی، نەتەوەیی، نێودەوڵەتی"},"oneway":{"label":"یەک ئاڕاستە","options":{"no":"نەخێر","yes":"بەڵێ"}},"oneway_yes":{"options":{"no":"نەخێر","yes":"بەڵێ"}},"opening_hours":{"label":"کاتژمێر"},"outdoor_seating":{"label":"شوێنی دانیشتنی دەرەوە"},"par":{"placeholder":"٣، ٤، ٥..."},"payment_multi":{"label":"جۆرەکانی پارەدان"},"phases":{"placeholder":"١، ٢، ٣..."},"phone":{"label":"تەلەفۆن"},"population":{"label":"دانیشتوان"},"railway/signal/direction":{"options":{"both":"هەردووک / هەموو","forward":"بۆ پێشەوە"}},"ref_golf_hole":{"placeholder":"١-١٨"},"ref_road_number":{"label":"ژمارەی ڕێگا"},"religion":{"label":"ئایین"},"rooms":{"label":"ژوور"},"second_hand":{"options":{"no":"نەخێر","only":"تەنها","yes":"بەڵێ"},"placeholder":"بەڵێ، نەخێر، تەنها"},"service_times":{"label":"کاتی ڕاژەکردن"},"siren/type":{"options":{"electronic":"کارەبایی","other":"هی تر"}},"smoking":{"label":"جگەرەکێشان","options":{"no":"ڕێگەپێنەدراوە لە هەموو شوێنێک","outside":"لەدەرەوە ڕێگەپێدراوە","yes":"لە هەموو شوێنێک ڕێگەپێدراوە"}},"source":{"label":"سەرچاوەکان"},"sport":{"label":"وەرزشەکان"},"stars":{"label":"ئەستێرە"},"start_date":{"label":"رێکەوتی دەستپێکردن"},"step_count":{"label":"ژمارەی پەیژەکان"},"structure":{"options":{"bridge":"پرد","tunnel":"تونێل"}},"structure_waterway":{"options":{"tunnel":"تونێل"}},"surveillance/type":{"options":{"camera":"کامێرا"}},"takeaway":{"options":{"no":"نەخێر","yes":"بەڵێ"}},"toilets/disposal":{"options":{"chemical":"کیمایی"}},"trail_visibility":{"placeholder":"نایاب، باش، خراپ..."},"trees":{"label":"درەخت"},"usage_rail":{"options":{"industrial":"پیشەسازیی","military":"سەربازیی"}},"volcano/status":{"options":{"active":"چالاک"}},"website":{"label":"ماڵپەڕ"},"width":{"label":"پانی (مەتر)"},"wikipedia":{"label":"ویکیپیدیا"},"windings":{"placeholder":"١، ٢، ٣..."},"windings/configuration":{"options":{"open":"کردنەوە"}}},"presets":{"address":{"name":"ناونیشان"},"aeroway/aerodrome":{"name":"فڕۆکەخانە"},"amenity/bank":{"name":"بانک"},"amenity/bar":{"name":"مەیخانە"},"amenity/bicycle_parking":{"name":"گەراجی پاسکیل"},"amenity/bureau_de_change":{"name":"گۆڕینەوەی دراو"},"amenity/car_wash":{"name":"شووشتنگەی ئۆتۆمبێل"},"amenity/casino":{"name":"گازینۆ"},"amenity/cinema":{"name":"سینەما"},"amenity/clinic":{"name":"نۆڕینگە"},"amenity/clock":{"name":"کاتژمێر"},"amenity/dentist":{"name":"ددانساز"},"amenity/doctors":{"name":"پزیشک"},"amenity/drinking_water":{"name":"ئاوی خواردنەوە"},"amenity/fast_food":{"name":"خواردنی خێرا"},"amenity/fountain":{"name":"نافورە"},"amenity/grave_yard":{"name":"گۆڕستان"},"amenity/ice_cream":{"name":"فرۆشگای ساردەمەنی"},"amenity/language_school":{"name":"قوتابخانەی زمان"},"amenity/library":{"name":"پەڕتووکخانە"},"amenity/music_school":{"name":"قوتابخانەی مۆسیقی"},"amenity/nightclub":{"name":"یانەی شەوانە"},"amenity/place_of_worship":{"name":"پەرستگا"},"amenity/place_of_worship/buddhist":{"name":"پەرستگایی بودایی"},"amenity/place_of_worship/hindu":{"name":"پەرستگای هیندۆسی"},"amenity/police":{"name":"پۆلیس"},"amenity/post_office":{"name":"نووسینگەی پۆستە"},"amenity/restaurant":{"name":"خواردنگە"},"amenity/smoking_area":{"name":"ناوچەی جگەرەکێشان"},"amenity/social_facility/food_bank":{"name":"بانکی خواردن"},"amenity/studio":{"name":"ستۆدیۆ"},"amenity/telephone":{"name":"تەلەفۆن"},"amenity/theatre":{"name":"شانۆ"},"amenity/veterinary":{"name":"ڤێتێرنەری"},"area":{"name":"ناوچە"},"attraction/train":{"name":"شەمەندەفەری گەشتیاریی"},"barrier/city_wall":{"name":"دیواری شار"},"barrier/entrance":{"name":"چوونەژوور"},"barrier/fence":{"name":"پەرژین"},"barrier/gate":{"name":"دەروازە"},"barrier/wall":{"name":"دیوار"},"building":{"name":"باڵەخانە"},"building/church":{"name":"باڵەخانەی کڵێسا"},"building/commercial":{"name":"باڵەخانەی بازرگانی"},"building/construction":{"name":"باڵەخانەکە لەژێر بونیاتناندایە"},"building/garage":{"name":"گەراج"},"building/hospital":{"name":"باڵەخانەی نەخۆشخانە"},"building/hotel":{"name":"باڵەخانەی میوانخانە"},"building/house":{"name":"خانوو"},"building/industrial":{"name":"باڵەخانەی پیشەسازی"},"building/mosque":{"name":"باڵەخانەی مزگەوت"},"building/public":{"name":"باڵەخانەی گشتیی"},"building/residential":{"name":"باڵەخانەی نیشتەجێبوون"},"club":{"name":"یانە"},"craft/beekeeper":{"name":"هەنگەوان"},"craft/clockmaker":{"name":"کاتژمێرچی"},"craft/gardener":{"name":"باخەوان"},"craft/painter":{"name":"نیگارکێش"},"craft/photographer":{"name":"وێنەگر"},"craft/plumber":{"name":"بۆڕیچی"},"craft/shoemaker":{"name":"پینەدۆز"},"craft/tiler":{"name":"کاشیچی"},"craft/watchmaker":{"name":"کاتژمێرساز"},"craft/winery":{"name":"کارگەی مەی"},"highway/elevator":{"name":"ئاسانسەر"},"highway/footway":{"name":"پیادەڕۆ"},"highway/pedestrian_area":{"name":"ناوچەی نیشتەجێبوون"},"highway/primary":{"name":"شەقامی سەرەکی"},"highway/primary_link":{"name":"لا شەقامی سەرەکی"},"highway/residential":{"name":"کۆڵان"},"highway/road":{"name":"ڕێگای نەزانراو"},"highway/secondary":{"name":"شەقامی لاوەکی"},"highway/secondary_link":{"name":"لا شەقامی لاوەکی"},"highway/service":{"name":"شەقامی ڕاژەگوزاری"},"highway/service/alley":{"name":"کۆڵانۆچکە"},"highway/speed_camera":{"name":"کامێرای خێرایی"},"highway/steps":{"name":"پەیژە"},"highway/street_lamp":{"name":"چرای سەرشەقام"},"highway/traffic_mirror":{"name":"ئاوێنەی هاتوچۆ"},"highway/traffic_signals":{"name":"نیشانەکانی هاتوچۆ"},"highway/unclassified":{"name":"ڕێگای پۆلێننەکراو"},"historic":{"name":"جێگەی مێژوویی"},"historic/castle":{"name":"قەڵا"},"junction":{"name":"یەکتربڕ"},"landuse/commercial":{"name":"ناوچەی بارزگانی"},"landuse/grass":{"name":"گژوگیا"},"landuse/harbour":{"name":"بەندەر"},"landuse/industrial":{"name":"ناوچەی پیشەسازی"},"landuse/meadow":{"name":"Meadow"},"landuse/military":{"name":"ناوچەی سەربازیی"},"landuse/residential":{"name":"ناوچەی نیشتەجێبوون"},"leisure/dance":{"name":"هۆڵی سەماکردن"},"leisure/dancing_school":{"name":"قوتابخانەی سەما"},"leisure/garden":{"name":"باخچە"},"waterway/dam":{"name":"بەنداو"},"waterway/river":{"name":"ڕووبار"}}}}}
\ No newline at end of file
+{"ckb":{"presets":{"categories":{"category-barrier":{"name":"بەربەست"},"category-building":{"name":"باڵەخانە"},"category-golf":{"name":"گۆڵف"},"category-natural":{"name":"سروشت"},"category-path":{"name":"پیادەڕێ"},"category-playground":{"name":"هەوشەنگ"},"category-rail":{"name":"ئاسنڕێ"},"category-restriction":{"name":"پێشگیری"},"category-road_major":{"name":"جادە سەرەکییەکان"},"category-road_minor":{"name":"جادە لاوەکییەکان"},"category-road_service":{"name":"شەقامی ڕاژەگوزاری"},"category-utility":{"name":"ڕاژەوانی گشتی"},"category-water":{"name":"ئاو"},"category-waterway":{"name":"ئاوەڕۆ"}},"fields":{"access":{"options":{"customers":{"title":"کڕیاران"},"permissive":{"title":"بە ڕێپێدان"},"private":{"title":"تایبەت"},"unknown":{"title":"نەناسراو"},"yes":{"title":"ڕێگەدراو"}},"types":{"access":"هەموو","bicycle":"پاسکیل","foot":"پیادە","horse":"ئەسپ"}},"access_aisle":{"label":"جۆر"},"access_simple":{"options":{"customers":"تەنیا کڕیاران","no":"هیچیان","permissive":"بە ڕێپێدان","permit":"تەنیا بە ڕێپێدان","private":"تایبەت","unknown":"نەزانراو","yes":"گشتی"}},"activity":{"label":"چالاکی","options":{"bicycle":"پایسکلسواری","hiking":"شاخەوانی","horse":"هەسپسواری","mtb":"پایسکسواری شاخی"}},"addr/interpolation":{"label":"جۆر","options":{"all":"هەموو","alphabetic":"ئەلفوبێ"}},"address":{"label":"ناونیشان","placeholders":{"city":"شار","city!vn":"شار/شارۆچکە","conscriptionnumber":"١٢٣","country":"وڵات","floor":"نهۆم","housename":"ناوی خانوو","housenumber":"١٢٣","neighbourhood":"گەڕەک","place":"شوێن","postcode":"کۆدی پۆستە","province":"پارێزگا","quarter":"کەرت","street":"شەقام","suburb":"گەڕەک","unit":"یەکە"}},"advertising":{"label":"جۆر"},"aerialway":{"label":"جۆر"},"aerialway/access":{"label":"دەست پێ ڕاگەیشتن","options":{"both":"هەردووک","entry":"چوونەژوور","exit":"چوونەدەر"}},"aerialway/capacity":{"placeholder":"٥٠٠، ٢٥٠٠، ٥٠٠٠..."},"aerialway/duration":{"label":"ماوە (خولەک)","placeholder":"١، ٢، ٣..."},"aerialway/occupancy":{"placeholder":"٢، ٤، ٨..."},"aerialway/summer/access":{"options":{"both":"هەردووک","entry":"چوونەژوور","exit":"چوونەدەر"}},"aeroway":{"label":"جۆر"},"agrarian":{"label":"بەرهەم"},"aircraft/type":{"label":"جۆر","options":{"military":"سەربازیی"}},"amenity":{"label":"جۆر"},"animal_boarding":{"label":"بۆ ئاژەڵان"},"animal_breeding":{"label":"بۆ ئاژەڵان"},"animal_shelter":{"label":"بۆ ئاژەڵان"},"archaeological_site":{"label":"جۆر","options":{"city":"شاری مێژوویی"}},"architect":{"label":"سازەوان"},"area/highway":{"label":"جۆر"},"armrest":{"options":{"undefined":"نەزانراو"}},"artist":{"label":"هونەرمەند"},"artwork_type":{"label":"جۆر","options":{"bust":"نیوەپەیکەر","painting":"نیگار","sculpture":"کۆتەڵ","statue":"پەیکەر"}},"attraction":{"label":"جۆر","options":{"train":"شەمەندەفەری گەشتیاریی"}},"baby_feeding":{"label":"حاندی پەرستاریی زارۆکان","options":{"no":"هیچیان"}},"baby_seat":{"label":"شوێنی دانیشتنی منداڵ"},"bar":{"label":"مەیخانە"},"barrier":{"label":"جۆر","options":{"chain":"زنجیر","city_wall":"دیواری شار","entrance":"چوونەژوور","fence":"پەرژین","gate":"دەروازە","wall":"دیوار"}},"barrier_planter":{"options":{"planter":"بەڵێ","undefined":"نەخێر"}},"basin":{"label":"جۆر"},"bath/type":{"options":{"hammam":"گەرماو","hot_spring":"گڕاو","lake":"دەریاچە"}},"beauty":{"options":{"cosmetics":"جوانکاری"}},"bicycle_parking":{"label":"جۆر","options":{"building":"لەناو باڵەخانەیەک"}},"bicycle_road":{"label":"ڕێی پایسکیل","options":{"undefined":"نەخێر","yes":"بەڵێ"}},"bin":{"label":"تەنەکی زبڵ"},"blind":{"options":{"limited":"سنووردار","no":"نەخێر","yes":"بەڵێ"}},"board_type":{"label":"جۆر","options":{"art":"هونەر","history":"مێژوو","nature":"سروشت","plants":"ڕووەک","welcome_sign":"نیشانی_بەخێرهاتن"}},"bollard":{"label":"جۆر"},"boules":{"label":"جۆر"},"boundary":{"label":"جۆر"},"branch_brand":{"label":"لق"},"bridge":{"label":"جۆر","placeholder":"بنەڕەت"},"bridge/ref":{"label":"ژمارەی پرد"},"bridge/support":{"label":"جۆر"},"bridge_combo":{"label":"جۆر"},"building":{"label":"باڵەخانە","options":{"church":"باڵەخانەی کڵێسا","college":"باڵەخانەی کۆلێژ","commercial":"باڵەخانەی بازرگانی","construction":"باڵەخانەکە لە بونیاتناندایە","cowshed":"تەویلە","fire_station":"باڵەخانەی ئاگرکوژێنەوە","garage":"گەراج","garages":"گەراج","ger":"ڕەشماڵ (یورت)","grandstand":"جێگای تەماشاوانان","greenhouse":"سەوزخانە","hangar":"پەنافڕۆکە","hospital":"باڵەخانەی نەخۆشخانە","hotel":"باڵەخانەی میوانخانە","house":"خانوو","hut":"کوخ","industrial":"باڵەخانەی پیشەسازی","kindergarten":"باڵەخانەی دایەنگە و باخچەی ساوایان","mosque":"باڵەخانەی مزگەوت","office":"باڵەخانەی نووسینگە","public":"باڵەخانەی گشتیی","residential":"باڵەخانەی نیشتەجێبوون","roof":"بنمیچ","school":"باڵەخانەی قوتابخانە","service":"باڵەخانەی ڕاژەگوزاری","shed":"حەسار","stadium":"باڵەخانەی یاریگا","static_caravan":"ماڵی گوازراوە","sty":"بەرازخان","temple":"باڵەخانەی پەرستگە","terrace":"ڕێزە خانوو","train_station":"باڵەخانەی وێستگەی شەمەندەفەر","university":"باڵەخانەی زانکۆ","warehouse":"کۆگا"}},"building/flats":{"label":"یەکە","placeholder":"٢، ٤، ٦، ٨..."},"building/levels":{"label":"نهۆم","placeholder":"٢، ٤، ٦..."},"building/levels/underground":{"label":"نهۆمی ژێرزەمینی","placeholder":"٢، ٤، ٦..."},"building/material":{"label":"مادە"},"building/part":{"label":"بەشێکی باڵەخانە"},"bunker_type":{"label":"جۆر"},"cables":{"placeholder":"١، ٢، ٣..."},"camera/direction":{"placeholder":"٤٥، ٩٠، ١٨٠، ٢٧٠"},"camera/type":{"label":"جۆری کامێرا","options":{"dome":"قوبە","fixed":"چاککرا"}},"camp_site":{"label":"جۆر"},"capacity":{"placeholder":"٥٠، ١٠٠، ٢٠٠..."},"capacity/caravans":{"placeholder":"١٠، ٢٠، ٥٠..."},"capacity/disabled_parking":{"placeholder":"١، ٢، ٣..."},"capacity/persons":{"placeholder":"٥٠، ١٠٠، ٢٠٠..."},"capacity/tents":{"placeholder":"١٠، ٢٠، ٥٠..."},"capacity_parking":{"placeholder":"١٠، ٢٠، ٣٠..."},"capacity_volume":{"placeholder":"٥٠، ١٠٠، ٢٠٠..."},"castle_type":{"label":"جۆر"},"check_date":{"label":"دوا ڕێکەوتی بەسەرداچوونەوە","placeholder":"سسسس-مم-ڕڕ"},"circumference":{"placeholder":"١ م، ٢٠ سم، ٣٠\"..."},"climbing/length":{"label":"درێژی (مەتر)"},"clothes":{"label":"جلوبەرگ","options":{"babies":"جلوبەرگی ساوایان","children":"جلوبەرگی منداڵان","men":"جلوبەرگی پیاوان","socks":"گۆرەوی","sports":"وەرزشی","swimwear":"مەلەوانی","wedding":"جلوبەرگی زەماوەند","women":"جلوبەرگی ژنان"}},"club":{"label":"جۆر"},"colour":{"label":"ڕەنگ"},"community_centre":{"label":"جۆر","options":{"youth_centre":"ناوەندی گەنجان"}},"construction":{"label":"جۆر"},"consulate":{"label":"جۆر","options":{"yes":"کونسوڵخانە"}},"contact/facebook":{"label":"بەستەر یان ناوی بەکارهێنەری فەیسبووک","placeholder":"https://www.facebook.com/LocalBusiness"},"contact/webcam":{"placeholder":"http://example.com/"},"content":{"label":"ناوەڕۆک"},"conveying":{"label":"ئاڕاستەی جوولە","options":{"backward":"پشتەوە","forward":"پێشەوە"}},"country":{"label":"وڵات"},"country_flag":{"label":"ئاڵای وڵات"},"couplings":{"placeholder":"١، ٢، ٣..."},"covered":{"label":"داپۆشراو"},"covered_no":{"options":{"no":"نەخێر","yes":"بەڵێ"}},"craft":{"label":"جۆر","options":{"beekeeper":"هەنگەوان","blacksmith":"ئاسنگەر","bookbinder":"چزوبەندکەر","carpenter":"دارتاش","caterer":"سوروساتچی","clockmaker":"کاتژمێرچی","electrician":"کارەباچی","gardener":"باخەوان","glaziery":"جامبڕی","jeweller":"زێڕنگر","locksmith":"کلیلساز","painter":"نیگارکێش","photographer":"وێنەگر","photographic_laboratory":"تاقیگەی وێنەگری","plasterer":"سواخدەر","plumber":"بۆڕیچی","roofer":"میچساز","saddler":"زیندروو","sawmill":"داربڕی","sculptor":"بەردتاش","shoemaker":"پینەدۆز","stonemason":"بەردکار","tailor":"بەرگدوور","tiler":"کاشیچی","tinsmith":"تەنەکەچی","upholsterer":"بەرگتێگر","watchmaker":"کاتژمێرساز","winery":"کارگەی مەی"}},"crop":{"label":"دانەوێڵە","options":{"asparagus":"گیامارانە","barley":"جۆ","beet":"چەوەندەر","cassava":"شیرهەرد","coffee":"قاوە","cotton":"پەمۆ","cranberries":"تووەقوڵنگ","flowers":"گوڵ","grape":"ترێ","grass":"گژوگیا","hop":"گیازام","lavender":"گوڵەخەزێم","maize":"گەنمەشامی","potato":"پەتاتە","rape":"دانی شێلم","rice":"برنج","strawberry":"شلیک","sugar_beet":"چەوەندەری شەکر","sugarcane":"نەیشەکر","sunflower":"گوڵەبەڕۆژە","tea":"چای","tobacco":"تووتن","vegetable":"سەوزە","wheat":"گەنم"}},"crossing":{"label":"جۆر","options":{"uncontrolled":"تەنیا سەر شەقام درۆڤ کراوە"}},"crossing/barrier":{"options":{"half":"نیوە","no":"نەخێر","yes":"بەڵێ"}},"crossing/markings":{"label":"درۆڤی پەڕینەوە"},"crossing_raised":{"options":{"table":"بەڵێ","undefined":"نەخێر"}},"cuisine":{"options":{"african":"ئەفریقایی","american":"ئەمریکایی","argentinian":"ئەرجەنتینیی","asian":"ئاسیایی","balkan":"بالکانیی","bavarian":"باڤاریایی","brazilian":"بەڕازیلیی","breakfast":"تێشت","burger":"بەرگەر","cake":"کێک","caribbean":"کاریبیی","chicken":"مریشک","chinese":"چینیی","coffee_shop":"قاوەخانە","diner":"شیو","european":"ئەوڕوپایی","filipino":"فلیپینیی","fish":"ماسی","french":"فەڕەنسایی","fries":"سوورکراوە","frozen_yogurt":"ماستی بەستوو","hawaiian":"هاواییی","ice_cream":"ساردەمەنی","indian":"هیندیی","indonesian":"ئەندەنووسیایی","italian":"ئیتاڵیایی","japanese":"ژاپۆنیی","juice":"میواو","kebab":"کەباب","korean":"کۆریایی","lebanese":"لوبنانیی","malaysian":"مالیزیایی","mexican":"مەکسیکیی","moroccan":"مەغریبیی","pasta":"پاستا","pizza":"پیتزا","regional":"هەرێمی","russian":"ڕووسیایی","salad":"زەڵاتە","sandwich":"بابۆڵە","seafood":"خۆراکی دەریایی","shawarma":"شاورمە","spanish":"ئیسپانیایی","sushi":"سوشی","taiwanese":"تایوانیی","tea":"چای","ukrainian":"ئۆکرانیایی","vietnamese":"ڤێتنامی","western":"ڕۆژاوایی","wings":"باڵی مریشک"}},"currency_multi":{"label":"جۆری دراو"},"cutting":{"label":"جۆر","placeholder":"بنەڕەت"},"cycle_barrier":{"label":"جۆر"},"cycle_barrier/installation":{"options":{"fixed":"چاککرا"}},"cycleway":{"options":{"no":{"title":"هیچیان"}},"types":{"cycleway:left":"دەستەچەپ","cycleway:right":"دەستەڕاست"}},"date":{"label":"ڕێکەوت"},"delivery":{"label":"گەیاندن"},"departures_board":{"options":{"no":"هیچیان","yes":"بەڵێ"}},"depot":{"label":"جۆر"},"depth":{"label":"قوڵی (مەتر)"},"description":{"label":"پێناسە"},"devices":{"placeholder":"١، ٢، ٣..."},"diameter":{"label":"تیرە","placeholder":"٥ مم، ١٠ سم، ١٥ ئینج..."},"diameter_crown":{"placeholder":"٤ م، ٩'، ..."},"diet_multi":{"options":{"gluten_free":"بێ گلوتین","halal":"حەلال","kosher":"کۆشەر","vegetarian":"ڕووەکخۆر"}},"diplomatic":{"label":"جۆر","options":{"consulate":"کونسوڵخانە"}},"direction":{"placeholder":"٤٥، ٩٠، ١٨٠، ٢٧٠"},"direction_cardinal-US-CA-NZ":{"label":"ئاڕاستە"},"direction_clock":{"label":"ئاڕاستە"},"direction_point":{"placeholder":"٤٥، ٩٠، ١٨٠، ٢٧٠"},"direction_vertex":{"options":{"backward":"پشتەوە","both":"هەردووک / هەموو","forward":"پێشەوە"}},"display":{"options":{"digital":"ڕەنووسی"}},"distance":{"label":"مەودا"},"disused/amenity":{"label":"جۆر"},"disused/railway":{"label":"جۆر"},"disused/shop":{"label":"جۆر"},"dock":{"label":"جۆر"},"dog":{"label":"سەگ","options":{"no":"ڕێپێ نەدراوە","yes":"ڕێپێ دراوە"}},"door":{"label":"دەرگا"},"door/height":{"label":"بڵندی دەرگا (مەتر)"},"door/width":{"label":"پانی دەرگا (مەتر)"},"door_type":{"label":"جۆر"},"drink_multi":{"label":"خواردنەوە"},"drinking_water":{"label":"دەخورێتەوە"},"drinking_water_available":{"label":"ئاوی خواردنەوە بەردەستە"},"duration":{"label":"ماوە","placeholder":"٠٠:٠٠"},"electrified":{"options":{"no":"نەخێر"}},"email":{"placeholder":"example@example.com"},"embankment":{"label":"جۆر","placeholder":"بنەڕەت"},"embassy":{"label":"جۆر"},"emergency_combo":{"label":"جۆر"},"emergency_ward_entrance":{"label":"جۆر"},"enforcement":{"label":"جۆر"},"entrance":{"label":"جۆر","options":{"emergency":"دەرچەی تەنگەتاوی","garage":"دەرگای گەراج","main":"سەرەکی","secondary":"لاوەکی","service":"ڕاژەگوزاری"}},"expressway-US":{"label":"شاڕێ"},"fax":{"placeholder":"+٣١ ٤٢ ١٢٣ ٤٥٦٧"},"fence_type":{"label":"جۆر"},"fire_hydrant/position":{"options":{"lane":"کەلی شەقام"}},"fire_hydrant/type":{"label":"شێوە","options":{"wall":"دیوار"}},"fire_mains":{"options":{"no":"نەخێر"}},"fire_service_inlet":{"label":"شێوە","options":{"wall":"دیوار"}},"fire_sprinkler":{"options":{"no":"نەخێر"}},"flag/name":{"label":"ناوی ئاڵا"},"flag/type":{"label":"جۆری ئاڵا"},"flashing_lights":{"options":{"no":"نەخێر","yes":"بەڵێ"}},"ford":{"label":"جۆر","placeholder":"بنەڕەت"},"fountain":{"label":"جۆر"},"fuel/fuel_multi":{"options":{"LH2":"هایدرۆجینی شل"}},"gender":{"label":"ڕەگەز","options":{"female":"مێ","male":"نێر","unisex":"نێرەموک"},"placeholder":"نەزانراو"},"generator/output/electricity":{"placeholder":"٥٠ مێگاوات، ١٠٠ مێگاوات، ٢٠٠ مێگاوات..."},"generator/source":{"label":"سەرچاوە","options":{"battery":"پیل","coal":"ڕەژوو","gas":"گازی سروشتی","hydro":"وزەی کارۆئاوی","nuclear":"وزەی ناوەکی","oil":"نەوت","waste":"پاشماوە","wave":"شەپۆلەوزە","wind":"با"}},"generator/type":{"label":"جۆر"},"government":{"label":"جۆر"},"guest_house":{"label":"جۆر"},"handicap":{"placeholder":"١-١٨"},"hashtags":{"placeholder":"#نموونە"},"hazard_boundary":{"options":{"nuclear":"ناوەکی / تیشکدانەوە"}},"healthcare":{"label":"جۆر","options":{"blood_bank":"بانکی خوێن","clinic":"نۆڕینگە","counselling":"ناوەندی ڕاوێژکاری","dentist":"ددانساز","doctor":"پزیشک","hospital":"نەخۆشخانە","laboratory":"تاقیگەی پزیشکی","midwife":"مامان","nurse":"پەرستار","pharmacy":"دەرمانخانە","vaccination_centre":"ناوەندی کوتان"}},"healthcare/speciality":{"label":"پسپۆڕی","options":{"abortion":"لەباربردن","allergology":"هەستیاری و هەناسەتەنگی","blood_check":"تاقیکردنەوەی خوێن","otolaryngology":"قوڕگ و لووت و گوێ","surgery":"نەشتەرگەری گشتیی","transplant":"نەشتەرگەری چاندن","vaccination":"کوتان"}},"height":{"label":"بەرزی (مەتر)"},"height_building":{"label":"بەرزی باڵەخانە (مەتر)"},"highchair":{"label":"کورسی بڵند"},"highway":{"label":"جۆر"},"highway_cartpath":{"label":"جۆری پیادە","options":{"service":"شەقامی ڕاژەگوزاری"}},"historic":{"label":"جۆر","options":{"building":"باڵەخانەی مێژوویی","castle":"قەڵا","church":"کڵیسا","city_gate":"دەروازەی شار","monument":"مۆنۆمێنت","railway":"ئاسنەڕێ"}},"historic/civilization":{"label":"شارستانیەتی مێژوویی"},"holding_position/type":{"label":"جۆر"},"hoops":{"placeholder":"١، ٢، ٤..."},"horse_riding":{"options":{"horse_riding":"بەڵێ","undefined":"نەخێر"}},"iata":{"label":"ژمارەی IATA فڕۆکەخانە"},"icao":{"label":"ژمارەی ICAO فڕۆکەخانە"},"image":{"label":"وێنە","placeholder":"https://example.com/photo.jpg"},"incline_steps":{"options":{"down":"خوارەوە","up":"سەرەوە"}},"indoor":{"label":"ژوورەوە"},"indoor_type":{"label":"جۆر"},"industrial":{"label":"جۆر"},"information":{"label":"جۆر"},"internet_access":{"options":{"no":"نەخێر","wlan":"بێتەل","yes":"بەڵێ"}},"internet_access/fee":{"options":{"customers":"تەنیا کڕیاران","no":"بەخۆڕاییە","yes":"بە پارەیە"}},"internet_access/ssid":{"label":"ناوی وایفای"},"irrigation_pivot":{"options":{"pivot":"بەڵێ","undefined":"نەخێر"}},"junction_line":{"label":"یەکتربڕ"},"kerb":{"options":{"no":{"title":"نەخێر"},"yes":{"title":"بەڵێ"}}},"kerb/height":{"label":"بەرزی"},"kerb/kerb_barrier":{"label":"جۆر"},"kitchen":{"label":"ناندین"},"kneipp_water_cure_multi":{"label":"جۆری چاڵاو"},"lamp_type":{"label":"جۆر"},"landuse":{"label":"جۆر"},"lane_markings":{"label":"درۆڤی کەل"},"lanes":{"label":"کەل","placeholder":"١، ٢، ٣..."},"language_multi":{"label":"زمان"},"layer":{"placeholder":"٠"},"layer_1":{"placeholder":"٠"},"leaf_cycle":{"options":{"evergreen":"هەمیشە سەوز","mixed":"تێکەڵاو"}},"leaf_type":{"label":"جۆری گەڵا","options":{"leafless":"بێ گەڵا","mixed":"تێکەڵاو","needleleaved":"گەڵای دەزوویی"}},"leaf_type_singular":{"label":"جۆری گەڵا"},"leisure":{"label":"جۆر"},"length":{"label":"درێژی (مەتر)"},"level_semi":{"label":"نهۆم"},"liaison":{"label":"جۆر"},"lifeguard":{"label":"جۆر"},"lifeguard_check":{"label":"مەلەوانی ڕزگارکەر (ژینپارێز)"},"lift_gate/type":{"label":"جۆر"},"lit":{"label":"چرا"},"location":{"label":"شوێن"},"location_pool":{"options":{"indoor":"ژوورەوە","outdoor":"دەرەوە"}},"man_made":{"label":"جۆر"},"manhole":{"label":"جۆر"},"map_type":{"label":"جۆر"},"marker":{"label":"جۆر","options":{"stone":{"title":"بەرد"}}},"material":{"label":"مادە","options":{"adobe":"خشت","aluminium":"فافۆن","brick":"کەرپووچ","glass":"شووشە","iron":"ئاسن","limestone":"بەردەگەچ","marble":"مەڕمەڕ","metal":"کانزا","plastic":"پلاستیک","rock":"گاشەبەرد","sand":"لم","sandstone":"بەردەلم","soil":"خۆڵ، زەمین","steel":"پۆڵا","stone":"بەرد","wood":"دار"}},"max_age":{"label":"بەرزترین تەمەن"},"maxheight":{"label":"زۆرترین بەرزی"},"maxlength":{"label":"زۆرترین درێژی"},"maxspeed":{"label":"زۆرترین خێرایی","placeholder":"٤٠، ٥٠، ٦٠..."},"maxspeed/advisory":{"placeholder":"٤٠، ٥٠، ٦٠..."},"maxspeed/hgv":{"label":"زۆرترین خێرایی بارهەڵگر","placeholder":"٤٠، ٥٠، ٦٠..."},"maxstay":{"label":"ئەوپەڕی مانەوە"},"maxweight":{"label":"قورسایی"},"maxwidth":{"label":"زۆرترین پانی"},"maxwidth/physical":{"label":"زۆرترین پانی"},"memorial":{"label":"جۆر","options":{"bust":"نیوەپەیکەر","sculpture":"کۆتەڵ","statue":"پەیکەر","stone":"بەرد"}},"military_service":{"options":{"air_force":"هێزی ئاسمانی"}},"min_age":{"label":"کەمترین تەمەن"},"minspeed":{"placeholder":"٢٠، ٣٠، ٤٠..."},"mobile":{"label":"ژمارەی مۆبایل","placeholder":"+٣١ ٤٢ ١٢٣ ٤٥٦٧"},"mooring":{"options":{"no":"نەخێر","private":"تایبەت","yes":"بەڵێ"}},"mtb/scale":{"placeholder":"٠، ١، ٢، ٣..."},"mtb/scale/imba":{"options":{"0":"⚪ ئاسانترین (بازنەی سپی)","1":"🟢 ئاسان (بازنەی کەسک)","2":"🟦 مامناوەند (چوارگۆشەی شین)"},"placeholder":"ئاسان، مامناوەند، گران..."},"mtb/scale/uphill":{"placeholder":"٠، ١، ٢، ٣..."},"museum":{"label":"جۆر"},"name":{"label":"ناو"},"natural":{"label":"سروشتی"},"network_bicycle":{"options":{"icn":"نێودەوڵەتی","lcn":"ناوخۆیی","ncn":"نەتەوەیی","rcn":"هەرێمی"},"placeholder":"ناوخۆیی، هەرێمی، نەتەوەیی، نێودەوڵەتی"},"network_foot":{"options":{"iwn":"نێودەوڵەتی","lwn":"ناوخۆیی","nwn":"نەتەوەیی","rwn":"هەرێمی"},"placeholder":"ناوخۆیی، هەرێمی، نەتەوەیی، نێودەوڵەتی"},"network_horse":{"options":{"ihn":"نێودەوڵەتی","lhn":"ناوخۆیی","nhn":"نەتەوەیی","rhn":"هەرێمی"},"placeholder":"ناوخۆیی، هەرێمی، نەتەوەیی، نێودەوڵەتی"},"not/name":{"label":"ناوی هەڵە"},"note":{"label":"تێبینی"},"nudism":{"options":{"permissive":"بە ڕێپێدان","yes":"ڕێپێ دراوە"}},"office":{"label":"جۆر"},"oneway":{"label":"یەک ئاڕاستە","options":{"no":"نەخێر","yes":"بەڵێ"}},"oneway/bicycle":{"label":"یەک ئاڕاستە (پایسکیل)"},"oneway_yes":{"options":{"no":"نەخێر","yes":"بەڵێ"}},"opening_date":{"placeholder":"سسسس-مم-ڕڕ"},"opening_hours":{"label":"کاتژمێر","placeholder":"نەزانراو"},"organic":{"options":{"no":"هیچیان","only":"تەنها"}},"outdoor_seating":{"label":"شوێنی دانیشتنی دەرەوە"},"par":{"placeholder":"٣، ٤، ٥..."},"parcel_pickup":{"options":{"no":"نەخێر","yes":"بەڵێ"}},"parking":{"label":"جۆر","options":{"lane":{"title":"کەلی قەراخ ڕێ"},"street_side":{"title":"ڕۆخی شەقام"},"surface":{"title":"ڕووپۆش"}}},"parking/side/orientation":{"types":{"parking:left:orientation":"دەستەچەپ","parking:right:orientation":"دەستەڕاست"}},"parking/side/parking":{"options":{"lane":"کەلی قەراخ ڕێ","no":"نەخێر","street_side":"ڕۆخی شەقام"},"types":{"parking:left":"دەستەچەپ","parking:right":"دەستەڕاست"}},"parking_entrance":{"label":"جۆر"},"parking_space":{"label":"جۆر"},"payment_multi":{"label":"جۆرەکانی پارەدان"},"phases":{"placeholder":"١، ٢، ٣..."},"phone":{"label":"تەلەفۆن"},"pipeline":{"label":"جۆر"},"piste/type":{"label":"جۆر","options":{"playground":"هەوشەنگ"}},"place":{"label":"جۆر"},"playground":{"label":"جۆر"},"plots":{"placeholder":"١٠، ٢٠، ٣٠..."},"population":{"label":"دانیشتوان"},"population/date":{"label":"ڕێکەوتی دانیشتووان","placeholder":"سسسس-مم-ڕڕ"},"post_box/type":{"label":"جۆر"},"power":{"label":"جۆر"},"product":{"label":"بەرهەم"},"public_bookcase/type":{"label":"جۆر"},"pump":{"options":{"no":"هیچیان","yes":"بەڵێ"}},"railway":{"label":"جۆر"},"railway/signal/direction":{"options":{"backward":"پشتەوە","both":"هەردووک / هەموو","forward":"بۆ پێشەوە"}},"ramp":{"options":{"no":"نەخێر","yes":"بەڵێ"}},"recycling_accepts":{"options":{"clothes":"جلوبەرگ","plastic":"پلاستیک"}},"recycling_type":{"label":"جۆر","options":{"centre":"ناوەڕاست"}},"ref_disc_golf_hole":{"placeholder":"١-١٨"},"ref_golf_hole":{"placeholder":"١-١٨"},"ref_road_number":{"label":"ژمارەی ڕێگە"},"relation":{"label":"جۆر"},"religion":{"label":"ئایین"},"residential":{"label":"جۆر"},"resort":{"label":"جۆر"},"resource":{"options":{"coal":"ڕەژوو","gold":"زێڕ","limestone":"بەردەگەچ","sand":"لم"}},"restriction":{"label":"جۆر"},"roller_coaster/track":{"label":"جۆر"},"roof/shape":{"options":{"dome":"قوبە"}},"room":{"label":"جۆر"},"rooms":{"label":"ژوور"},"route":{"label":"جۆر"},"route_master":{"label":"جۆر"},"royal_cypher-GB":{"options":{"no":"نەخێر"}},"ruins":{"label":"جۆر"},"seamark/beacon_isolated_danger/shape":{"label":"شێوە"},"seamark/beacon_lateral/colour":{"label":"ڕەنگ","options":{"green":"سەوز"}},"seamark/beacon_lateral/shape":{"label":"شێوە"},"seamark/beacon_lateral/system":{"options":{"other":"هی تر"}},"seamark/buoy_lateral/colour":{"label":"ڕەنگ","options":{"green":"سەوز"}},"seamark/buoy_lateral/shape":{"label":"شێوە"},"seamark/buoy_lateral/system":{"options":{"other":"هی تر"}},"seamark/harbour/category_marina":{"options":{"marina":"بەڵێ","marina_no_facilities":"نەخێر"}},"seats":{"placeholder":"٢، ٤، ٦..."},"second_hand":{"options":{"no":"نەخێر","only":"تەنها","yes":"بەڵێ"},"placeholder":"بەڵێ، نەخێر، تەنها"},"service":{"label":"جۆر","options":{"alley":"کۆڵانۆچکە"}},"service_times":{"label":"کاتی ڕاژەکردن"},"shelter_type":{"label":"جۆر"},"shop":{"label":"جۆر"},"siren/type":{"label":"جۆر","options":{"electronic":"کارەبایی","other":"هی تر"}},"site":{"label":"جۆر"},"smoking":{"label":"جگەرەکێشان","options":{"no":"ڕێگەپێنەدراوە لە هەموو شوێنێک","outside":"لەدەرەوە ڕێگەپێدراوە","yes":"لە هەموو شوێنێک ڕێگەپێدراوە"}},"social_facility":{"label":"جۆر","options":{"food_bank":"بانکی خواردن"}},"social_facility_for":{"options":{"homeless":"بێلانە"}},"source":{"label":"سەرچاوەکان","options":{"local knowledge":"زانیاری نێوخۆیی","osm notes":"تێبینییەکانی نەخشەی شەقامی کراوە"}},"sport":{"label":"وەرزشەکان","options":{"american_football":"تۆپانێی ئەمریکایی","cycling":"پایسکلسواری"}},"sport/sport_ice":{"label":"وەرزشەکان"},"sport/sport_pub":{"label":"وەرزشەکان"},"sport/sport_racing_motor":{"label":"وەرزشەکان"},"sport/sport_racing_nonmotor":{"label":"وەرزشەکان"},"stars":{"label":"ئەستێرە"},"start_date":{"label":"رێکەوتی دەستپێکردن","placeholder":"سسسس-مم-ڕڕ"},"step_count":{"label":"ژمارەی پەیژەکان"},"stile":{"label":"جۆر"},"stop":{"options":{"minor":"جادەی لاوەکی"}},"street_cabinet":{"label":"جۆر"},"stroller":{"options":{"limited":"سنووردار","no":"نەخێر","yes":"بەڵێ"}},"structure":{"options":{"bridge":"پرد","embankment":"لاگیرە","tunnel":"تونێل"},"placeholder":"نەزانراو"},"structure_canal":{"options":{"bridge":"پرد","tunnel":"تونێل"},"placeholder":"نەزانراو"},"structure_waterway":{"options":{"tunnel":"تونێل"},"placeholder":"نەزانراو"},"studio":{"label":"جۆر"},"substance":{"options":{"gas":"گازی سروشتی","water":"ئاوی خواردنەوە"}},"substation":{"label":"جۆر","options":{"industrial":"پیشەسازیی"}},"substation_pipeline":{"label":"جۆر","options":{"industrial":"پیشەسازیی"}},"surface":{"label":"ڕووپۆش","options":{"grass":"گژوگیا","metal":"ئاسن","sand":"لم","wood":"دار"}},"surveillance/type":{"options":{"camera":"کامێرا"}},"survey/date":{"label":"دوا ڕێکەوتی چاولێکردن"},"survey_point/purpose":{"options":{"both":"هەردووک"}},"swimming_pool":{"label":"جۆر"},"switch":{"label":"جۆر"},"takeaway":{"options":{"no":"نەخێر","yes":"بەڵێ"}},"telecom":{"label":"جۆر"},"telescope/type":{"label":"جۆر"},"toilets":{"label":"ئاودەست"},"toilets/disposal":{"options":{"chemical":"کیمایی"}},"toilets/menstrual_products":{"options":{"no":"نەخێر"}},"toilets/wheelchair":{"options":{"limited":"سنووردار","no":"نەخێر","yes":"بەڵێ"}},"tomb":{"label":"جۆر"},"tourism":{"label":"جۆر"},"tower/platforms":{"placeholder":"١، ٢، ٣..."},"tower/type":{"label":"جۆر"},"townhall/type":{"label":"جۆر"},"tracktype":{"options":{"grade4":"زۆربەی نەرم: گڵ/لم/گیا لەگەڵ تێکەڵەیەک لە ماددەی ڕەق","grade5":"نەرم: گڵ/لم/گیا"}},"trade":{"label":"جۆر"},"traffic_calming":{"label":"جۆر","options":{"bump":"تاسە"}},"traffic_sign":{"label":"هێمای هاتوچۆ"},"traffic_sign/direction":{"options":{"backward":"پشتەوە","both":"هەردووک / هەموو","forward":"پێشەوە"}},"traffic_signals":{"label":"جۆر"},"traffic_signals/direction":{"options":{"backward":"پشتەوە","both":"هەردووک / هەموو","forward":"پێشەوە"}},"traffic_signals/sound":{"options":{"no":"نەخێر","yes":"بەڵێ"}},"traffic_signals/vibration":{"label":"لەرزین"},"trail_visibility":{"placeholder":"نایاب، باش، خراپ..."},"transformer":{"label":"جۆر"},"trees":{"label":"درەخت"},"trench":{"label":"جۆر"},"tunnel":{"label":"جۆر","placeholder":"بنەڕەت"},"tunnel_combo":{"label":"جۆر"},"turning_circle":{"label":"شێوە"},"two_sided":{"options":{"undefined":"نەخێر","yes":"بەڵێ"}},"usage_rail":{"options":{"branch":"لق","industrial":"پیشەسازیی","main":"سەرەکی","military":"سەربازیی","test":"تاقیکردنەوە","tourism":"گەشتیاری"}},"utility":{"options":{"gas":"گاز","oil":"نەوت","sewerage":"زێراب","street_lighting":"چرای سەرشەقام","water":"ئاو"}},"valve":{"label":"جۆر"},"vehicles":{"options":{"bus":"پاس","train":"شەمەندەفەر"}},"vending":{"options":{"bread":"نان","cigarettes":"جگارە","coffee":"قاوە","condoms":"کۆندۆم","drinks":"خواردنەوە","eggs":"هێلکە","food":"خواردن","ice_cream":"چلوورە","ice_cubes":"قالبە بەفر","milk":"شیر","newspapers":"ڕۆژنامە","parking_tickets":"پلیتی گەراج","pizza":"پیتزا","public_transport_tickets":"پلیتی گواستنەوەی گشتی","stamps":"پووڵی پۆستە","sweets":"شیرنەمەنی","water":"ئاوی خواردنەوە"}},"video_calls":{"label":"پەیوەندی ڤیدیۆیی"},"visibility":{"options":{"area":"هەتا ٢٠م (٦٥پێ)","house":"هەتا ٥م (١٦پێ)","street":"٥ بۆ ٢٠م (١٦ بۆ ٦٥پێ)"}},"volcano/status":{"label":"دۆخی گڕکان","options":{"active":"چالاک","dormant":"سست","extinct":"دامرکاو"}},"volcano/type":{"label":"جۆری گڕکان"},"wall":{"label":"جۆر"},"waste":{"label":"پاشماوە","options":{"cigarettes":"جگارە"}},"water":{"label":"جۆر"},"water_source":{"label":"سەرچاوەی ئاو","options":{"main":"بۆڕی دابەشکردنی ئاو","pond":"گۆم","river":"ڕووبار","stream":"چەم","water_tank":"تانکی ئاو"}},"water_tank/volume":{"label":"قەبارە (لیتر)","placeholder":"١٠٠٠٠، ٢٠٠٠٠، ٣٠٠٠٠..."},"waterway":{"label":"جۆر"},"website":{"label":"وێبگە","placeholder":"https://example.com"},"website/menu":{"placeholder":"https://example.com"},"wetland":{"label":"جۆر"},"wheelchair":{"options":{"limited":"سنووردار","no":"نەخێر","yes":"بەڵێ"}},"wholesale":{"label":"کۆفرۆش"},"width":{"label":"پانی (مەتر)"},"wikidata":{"label":"ویکیدراوە"},"wikipedia":{"label":"ویکیپیدیا"},"windings":{"placeholder":"١، ٢، ٣..."},"windings/auto":{"options":{"no":"نەخێر","yes":"بەڵێ"}},"windings/configuration":{"options":{"open":"کردنەوە"}}},"presets":{"address":{"name":"ناونیشان"},"aeroway/aerodrome":{"name":"فڕۆکەخانە"},"amenity/bank":{"name":"بانک"},"amenity/bar":{"name":"مەیخانە"},"amenity/bicycle_parking":{"name":"گەراجی پاسکیل"},"amenity/bureau_de_change":{"name":"گۆڕینەوەی دراو"},"amenity/cafe":{"name":"قاوەخانە"},"amenity/car_rental":{"name":"بەکرێدانی ئۆتۆمبێل"},"amenity/car_wash":{"name":"شووشتنگەی ئۆتۆمبێل"},"amenity/casino":{"name":"گازینۆ"},"amenity/cinema":{"name":"سینەما"},"amenity/clinic":{"name":"نۆڕینگە"},"amenity/clock":{"name":"کاتژمێر"},"amenity/community_centre/youth_centre":{"name":"ناوەندی گەنجان"},"amenity/courthouse":{"name":"دادگا"},"amenity/dentist":{"name":"ددانساز"},"amenity/doctors":{"name":"پزیشک"},"amenity/drinking_water":{"name":"ئاوی خواردنەوە"},"amenity/driver_training":{"name":"گۆڕەپانی فێرکردنی شوفێری"},"amenity/fast_food":{"name":"خواردنی خێرا"},"amenity/grave_yard":{"name":"گۆڕستان"},"amenity/ice_cream":{"name":"فرۆشگای ساردەمەنی"},"amenity/library":{"name":"پەڕتووکخانە"},"amenity/nightclub":{"name":"یانەی شەوانە"},"amenity/parking/street-side":{"name":"گەراجی ڕۆخی شەقام"},"amenity/place_of_worship":{"name":"پەرستگا"},"amenity/place_of_worship/buddhist":{"name":"پەرستگایی بودایی"},"amenity/place_of_worship/hindu":{"name":"پەرستگای هیندۆسی"},"amenity/police":{"name":"پۆلیس"},"amenity/post_office":{"name":"نووسینگەی پۆستە"},"amenity/restaurant":{"name":"خواردنگە"},"amenity/restaurant/vietnamese":{"name":"خواردنگەی ڤێتنامی"},"amenity/smoking_area":{"name":"ناوەی جگەرەکێشان"},"amenity/social_facility/food_bank":{"name":"بانکی خواردن"},"amenity/studio":{"name":"ستۆدیۆ"},"amenity/telephone":{"name":"تەلەفۆن"},"amenity/theatre":{"name":"شانۆ"},"amenity/veterinary":{"name":"ڤێتێرنەری"},"area":{"name":"ناوە"},"area/footway":{"name":"ناوەی پیادەڕێ"},"area/highway":{"name":"ناوەی شەقام"},"attraction/train":{"name":"شەمەندەفەری گەشتیاریی"},"barrier/chain":{"name":"زنجیر"},"barrier/city_wall":{"name":"دیواری شار"},"barrier/entrance":{"name":"چوونەژوور"},"barrier/fence":{"name":"پەرژین"},"barrier/gate":{"name":"دەروازە"},"barrier/wall":{"name":"دیوار"},"boundary/hazard":{"name":"ناوچەی مەترسیدار"},"bridge/support":{"name":"ڕاگری پرد"},"building":{"name":"باڵەخانە"},"building/church":{"name":"باڵەخانەی کڵێسا"},"building/college":{"name":"باڵەخانەی کۆلێژ"},"building/commercial":{"name":"باڵەخانەی بازرگانی"},"building/construction":{"name":"باڵەخانەکە لەژێر بونیاتناندایە"},"building/cowshed":{"name":"تەویلە"},"building/fire_station":{"name":"باڵەخانەی ئاگرکوژێنەوە"},"building/garage":{"name":"گەراج"},"building/garages":{"name":"گەراج"},"building/ger":{"name":"ڕەشماڵ (یورت)"},"building/grandstand":{"name":"جێگای تەماشاوانان"},"building/greenhouse":{"name":"سەوزخانە"},"building/hangar":{"name":"پەنافڕۆکە"},"building/hospital":{"name":"باڵەخانەی نەخۆشخانە"},"building/hotel":{"name":"باڵەخانەی میوانخانە"},"building/house":{"name":"خانوو"},"building/hut":{"name":"کوخ"},"building/industrial":{"name":"باڵەخانەی پیشەسازی"},"building/kindergarten":{"name":"باڵەخانەی دایەنگە و باخچەی ساوایان"},"building/mosque":{"name":"باڵەخانەی مزگەوت"},"building/office":{"name":"باڵەخانەی نووسینگە"},"building/public":{"name":"باڵەخانەی گشتیی"},"building/residential":{"name":"باڵەخانەی نیشتەجێبوون"},"building/roof":{"name":"بنمیچ"},"building/school":{"name":"باڵەخانەی قوتابخانە"},"building/service":{"name":"باڵەخانەی ڕاژەگوزاری"},"building/shed":{"name":"حەسار"},"building/stadium":{"name":"باڵەخانەی یاریگا"},"building/static_caravan":{"name":"ماڵی گوازراوە"},"building/sty":{"name":"بەرازخان"},"building/temple":{"name":"باڵەخانەی پەرستگە"},"building/train_station":{"name":"باڵەخانەی وێستگەی شەمەندەفەر"},"building/university":{"name":"باڵەخانەی زانکۆ"},"building/warehouse":{"name":"باڵەخانەی کۆگا"},"building_part":{"name":"بەشێکی باڵەخانە"},"building_point":{"name":"باڵەخانە"},"cemetery/grave":{"name":"گۆڕ"},"club":{"name":"یانە"},"club/sport":{"name":"یانەی وەرزشی"},"craft/beekeeper":{"name":"هەنگەوان"},"craft/blacksmith":{"name":"ئاسنگەر"},"craft/bookbinder":{"name":"چزوبەندکەر"},"craft/carpenter":{"name":"دارتاش"},"craft/caterer":{"name":"سوروساتچی"},"craft/clockmaker":{"name":"کاتژمێرچی"},"craft/electrician":{"name":"کارەباچی"},"craft/gardener":{"name":"باخەوان"},"craft/glaziery":{"name":"جامبڕی"},"craft/locksmith":{"name":"کلیلساز"},"craft/painter":{"name":"نیگارکێش"},"craft/photographer":{"name":"وێنەگر"},"craft/photographic_laboratory":{"name":"تاقیگەی وێنەگری"},"craft/plasterer":{"name":"سواخدەر"},"craft/plumber":{"name":"بۆڕیچی"},"craft/roofer":{"name":"میچساز"},"craft/saddler":{"name":"زیندروو"},"craft/sawmill":{"name":"داربڕی"},"craft/sculptor":{"name":"بەردتاش"},"craft/shoemaker":{"name":"پینەدۆز"},"craft/stonemason":{"name":"بەردکار"},"craft/tailor":{"name":"بەرگدوور"},"craft/tiler":{"name":"کاشیچی"},"craft/tinsmith":{"name":"تەنەکەچی"},"craft/upholsterer":{"name":"بەرگتێگر"},"craft/watchmaker":{"name":"کاتژمێرساز"},"craft/winery":{"name":"کارگەی مەی"},"embankment":{"name":"لاگیرە"},"emergency/first_aid_kit":{"name":"ساکی فریاگوزاری سەرەتایی"},"emergency/lifeguard":{"name":"مەلەوانی ڕزگارکەر (ژینپارێز)"},"emergency/phone":{"name":"تەلەفۆنی تەنگەتاوی"},"entrance/emergency":{"name":"دەرچەی تەنگەتاوی"},"healthcare/counselling":{"name":"ناوەندی ڕاوێژکاری"},"healthcare/laboratory":{"name":"تاقیگەی پزیشکی"},"healthcare/midwife":{"name":"مامان"},"highway/construction":{"name":"ڕێگە لە چاککردندایە"},"highway/elevator":{"name":"ئاسانسەر"},"highway/footway":{"name":"پیادەڕۆ"},"highway/footway/informal":{"name":"پیادەڕۆی نافەرمی"},"highway/living_street":{"name":"کۆڵانی تەنگەبەر"},"highway/motorway":{"name":"شاڕێ"},"highway/motorway_link":{"name":"بەستەگی شاڕێ"},"highway/path":{"name":"پیادەڕێ"},"highway/pedestrian_area":{"name":"گۆڕەپانی پیادە"},"highway/pedestrian_line":{"name":"ڕێی پیادە"},"highway/primary":{"name":"شەقامی سەرەکی"},"highway/primary_link":{"name":"لا شەقامی سەرەکی"},"highway/residential":{"name":"کۆڵان"},"highway/road":{"name":"ڕێگای نەزانراو"},"highway/secondary":{"name":"شەقامی لاوەکی"},"highway/secondary_link":{"name":"لا شەقامی لاوەکی"},"highway/service":{"name":"شەقامی ڕاژەگوزاری"},"highway/service/alley":{"name":"کۆڵانۆچکە"},"highway/services":{"name":"ناوەی ڕاژەگوزاری"},"highway/speed_camera":{"name":"کامێرای خێرایی"},"highway/steps":{"name":"پەیژە"},"highway/street_lamp":{"name":"چرای سەرشەقام"},"highway/traffic_mirror":{"name":"ئاوێنەی هاتوچۆ"},"highway/traffic_signals":{"name":"نیشانەکانی هاتوچۆ"},"highway/trunk":{"name":"سەرەڕێ"},"highway/unclassified":{"name":"شەقامی پۆلێننەکراو"},"historic":{"name":"جێگەی مێژوویی"},"historic/building":{"name":"باڵەخانەی مێژوویی"},"historic/castle":{"name":"قەڵا"},"historic/city_gate":{"name":"دەروازەی شار"},"historic/monument":{"name":"مۆنۆمێنت"},"junction":{"name":"یەکتربڕ"},"landuse/commercial":{"name":"ناوچەی بارزگانی"},"landuse/construction":{"name":"ڕووبەری بنیاتنان"},"landuse/grass":{"name":"گژوگیا"},"landuse/harbour":{"name":"بەندەر"},"landuse/industrial":{"name":"ناوچەی پیشەسازی"},"landuse/meadow":{"name":"Meadow"},"landuse/military":{"name":"ناوچەی سەربازیی"},"landuse/military/training_area":{"name":"ناوچەی مەشقی سەربازی"},"landuse/pond":{"name":"گۆم"},"landuse/religious":{"name":"مەڵبەندی ئایینی"},"landuse/residential":{"name":"ناوچەی نیشتەجێبوون"},"landuse/retail":{"name":"گۆڕەپانی تاکفرۆشی"},"landuse/vineyard":{"name":"ڕەز"},"landuse/winter_sports":{"name":"گۆڕەپانی وەرزشی زستانە"},"leisure/dance":{"name":"هۆڵی سەماکردن"},"leisure/garden":{"name":"باخچە"},"leisure/pitch/american_football":{"name":"یاریگای تۆپانێی ئەمریکایی"},"leisure/pitch/australian_football":{"name":"یاریگای تۆپانێی ئوسترالیایی"},"leisure/playground":{"name":"هەوشەنگ"},"leisure/swimming_area":{"name":"پانتایی مەلەی سروشتی"},"leisure/swimming_pool":{"name":"حەزی مەلەوانی"},"line":{"name":"هێڵ"},"man_made/bridge":{"name":"پانتایی پرد"},"man_made/embankment":{"name":"لاگیرە"},"man_made/storage_tank/water":{"name":"تانکی ئاو"},"man_made/tunnel":{"name":"پانتایی تونێل"},"military/office":{"name":"نووسینگەی سەربازیی"},"natural/hot_spring":{"name":"گڕاو"},"natural/sand":{"name":"لم"},"natural/water":{"name":"ئاو"},"natural/water/canal":{"name":"پانتایی کارێز"},"natural/water/lake":{"name":"دەریاچە"},"natural/water/pond":{"name":"گۆم"},"natural/water/river":{"name":"پانتایی ڕووبار"},"natural/water/stream":{"name":"پانتایی چەم"},"natural/wood":{"name":"دارستان"},"office/diplomatic/consulate":{"name":"کونسوڵخانە"},"place":{"name":"شوێن"},"place/city":{"name":"شار"},"place/square":{"name":"چوارگۆشە"},"playground":{"name":"هەوشەنگ"},"point":{"name":"خاڵ"},"railway/level_crossing":{"name":"یەکتربڕی هێڵی ئاسنی"},"shop/hairdresser":{"name":"سەرتاشخانە"},"shop/hairdresser_supply":{"name":"فرۆشگای کەلوپەلی تراشین"},"shop/locksmith":{"name":"کلیلساز"},"shop/tailor":{"name":"بەرگدوور"},"tourism/artwork/bust":{"name":"نیوەپەیکەر"},"tourism/artwork/sculpture":{"name":"کۆتەڵ"},"tourism/artwork/statue":{"name":"پەیکەر"},"tourism/information":{"name":"زانیاری"},"tourism/information/board/welcome_sign":{"name":"نیشانی_بەخێرهاتن"},"traffic_calming/bump":{"name":"تاسە"},"traffic_sign":{"name":"هێمای هاتوچۆ"},"waterway/dam":{"name":"بەنداو"},"waterway/river":{"name":"ڕووبار"},"waterway/stream":{"name":"چەم"}}}}}
\ No newline at end of file
diff --git a/dist/translations/cs.json b/dist/translations/cs.json
index 83fb1898..1b6e82b8 100644
--- a/dist/translations/cs.json
+++ b/dist/translations/cs.json
@@ -3,16 +3,19 @@
"presets": {
"categories": {
"category-barrier": {
- "name": "Překážky"
+ "name": "Prvky překážek"
},
"category-building": {
- "name": "Budovy"
+ "name": "Prvky budov"
+ },
+ "category-climbing": {
+ "name": "Prvky lezení"
},
"category-golf": {
"name": "Golfové prvky"
},
"category-landuse": {
- "name": "Využití krajiny"
+ "name": "Prvky využití krajiny"
},
"category-natural": {
"name": "Přírodní prvky"
@@ -27,7 +30,7 @@
"name": "Železnice"
},
"category-restriction": {
- "name": "Omezení dopravy"
+ "name": "Prvky omezení dopravy"
},
"category-road_major": {
"name": "Větší komunikace"
@@ -39,7 +42,7 @@
"name": "Obslužné komunikace"
},
"category-route": {
- "name": "Relace tras"
+ "name": "Prvky tras"
},
"category-utility": {
"name": "Služby"
@@ -92,12 +95,12 @@
"title": "Není známo"
},
"yes": {
- "description": "Přístup povolen právem; právo na cestu",
+ "description": "Přístup povolen ze zákona; právo na cestu",
"title": "Povolen"
}
},
"placeholder": "Není známo",
- "terms": "vstup povolen,povolení ke vstupu,přístup,veřejné,soukromí,privátní,zákaz vstupu,soukromý pozemek",
+ "terms": "vstup povolen,povolení ke vstupu,přístup,veřejné,soukromé,privátní,zákaz vstupu,soukromý pozemek",
"types": {
"access": "Všem",
"bicycle": "Jízdní kola",
@@ -107,7 +110,7 @@
}
},
"access_aisle": {
- "label": "Typ"
+ "label": "Druh"
},
"access_simple": {
"label": "Povolený vstup/vjezd",
@@ -120,7 +123,7 @@
"unknown": "Neznámý",
"yes": "Veřejné"
},
- "terms": "povolený,soukromý,veřejný"
+ "terms": "povolený,veřejný,přístupný,dostupný,neomezený,povolen vstup,povolen přístup,povolen vjezd"
},
"activity": {
"label": "Aktivita",
@@ -133,7 +136,7 @@
}
},
"addr/interpolation": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"all": "Vše",
"alphabetic": "Abecední",
@@ -147,45 +150,49 @@
"block_number": "Číslo bloku",
"block_number!jp": "Č. bloku",
"city": "Město",
- "city!cn": "Město/Prefektura/Společenství",
- "city!jp": "Velkoměsto/Město/Vesnice/Tokijský zvláštní okrsek",
+ "city!cn": "Město/prefektura/společenství",
+ "city!jp": "Velkoměsto/město/vesnice/tokijský zvláštní okrsek",
"city!vn": "Obec",
"conscriptionnumber": "123",
"country": "Stát (země)",
"county": "Kraj",
"county!jp": "Distrikt",
"district": "Okres",
- "district!cn": "Okres/Kraj/Územní jednotka (Banner)",
- "district!vn": "Okolí/Město/Okres",
+ "district!cn": "Okres/kraj/územní jednotka (banner)",
+ "district!vn": "Obec/město/okres",
"floor": "Patro",
"hamlet": "Osada",
"housename": "Název domu",
"housenumber": "123",
- "housenumber!jp": "Číslo budovy/Číslo parcely",
+ "housenumber!jp": "Číslo budovy/číslo parcely",
"neighbourhood": "Část městské čtvrti, obce",
- "neighbourhood!jp": "Chōme/Aza/Koaza",
+ "neighbourhood!jp": "Machi/Chōme/Aza/Koaza",
"place": "Místo",
- "postcode": "Poštovní směrovací číslo",
+ "postcode": "PSČ",
"province": "Provincie",
- "province!cn": "Provincie/Obec/Administrativní oblast/Zvláštní admin. oblast",
+ "province!cn": "Provincie/obec/administrativní oblast/zvláštní admin. oblast",
"province!jp": "Prefektura",
"quarter": "Čtvrť",
- "quarter!jp": "Ōaza/Machi",
+ "quarter!jp": "Ōaza",
"state": "Stát (v rámci federace)",
"street": "Ulice",
"subdistrict": "Subdistrikt",
- "subdistrict!vn": "Okrsek/Komuna/Městys",
+ "subdistrict!vn": "Okrsek/komuna/městys",
"suburb": "Městská část (obvod)",
- "suburb!jp": "Okrsek",
+ "suburb!jp": "Ward (政令市)",
+ "town": "Město",
"unit": "Jednotka"
},
- "terms": "umístění"
+ "terms": "adresa,lokace,místo,ulice,město,umístění,poloha,sídlo,číslo domu,bydliště"
},
"admin_level": {
"label": "Administrativní úroveň"
},
+ "advertising": {
+ "label": "Druh"
+ },
"aerialway": {
- "label": "Typ"
+ "label": "Druh"
},
"aerialway/access": {
"label": "Přístup",
@@ -196,7 +203,7 @@
}
},
"aerialway/bubble": {
- "label": "Stříška"
+ "label": "krycí bublina"
},
"aerialway/capacity": {
"label": "Odbaví lidí (za hodinu)",
@@ -222,17 +229,33 @@
}
},
"aeroway": {
- "label": "Typ"
+ "label": "Druh"
},
"agrarian": {
"label": "Výrobky"
},
"air_conditioning": {
"label": "Klimatizace",
- "terms": "chladící systém,chlazení"
+ "terms": "klimatizace,chlazení,chladicí systém,ochlazování"
+ },
+ "aircraft/type": {
+ "label": "Druh",
+ "options": {
+ "airliner": "Dopravní letoun",
+ "cargo": "Nákladní letoun",
+ "fixed_wing": "Letoun s pevnými křídly",
+ "glider": "Bezmotorový letoun",
+ "helicopter": "Vrtulník",
+ "jet": "Proudové letoun",
+ "military": "Armáda"
+ }
+ },
+ "alt_name": {
+ "label": "Alternativní název",
+ "terms": "alternativní název,jiný název,náhradní název"
},
"amenity": {
- "label": "Typ"
+ "label": "Druh"
},
"animal_boarding": {
"label": "Pro zvířata"
@@ -244,14 +267,37 @@
"label": "Pro zvířata"
},
"archaeological_site": {
- "label": "Typ"
+ "label": "Druh",
+ "options": {
+ "baths": "Lázně",
+ "city": "Historické město",
+ "crannog": "Crannóg",
+ "enclosure": "Ohrada",
+ "fortification": "Opevnění",
+ "hut_circle": "Kruhová stavba",
+ "megalith": "Megalit",
+ "necropolis": "Pohřebiště",
+ "petroglyph": "Skalní řezba",
+ "roman_circus": "Římský cirkus",
+ "roman_villa": "Římská vila",
+ "settlement": "Historická osada",
+ "tumulus": "Mohyla"
+ }
},
"architect": {
"label": "Architekt",
- "terms": "stavební projektant"
+ "terms": "stavební projektant,architekt"
},
"area/highway": {
- "label": "Typ"
+ "label": "Druh"
+ },
+ "armrest": {
+ "label": "Područky",
+ "options": {
+ "no": "Bez područek",
+ "undefined": "Neznámý",
+ "yes": "Jedna, nebo více područek"
+ }
},
"artist": {
"label": "Umělec"
@@ -267,18 +313,66 @@
"painting": "Malba",
"relief": "Reliéf",
"sculpture": "Skulptura",
- "statue": "Socha"
+ "statue": "Socha (osoba nebo zvíře)",
+ "stone": "Umělecky zpracovaný kámen",
+ "tilework": "Umělecké obklady"
}
},
"ascent": {
"label": "Celkové stoupání",
- "terms": "výstup,stoupání,kumulativní převýšení"
+ "terms": "celkový výstup,celkové stoupání,kumulativní převýšení"
+ },
+ "athletics_pitch": {
+ "label": "Událost",
+ "options": {
+ "discus_throw": "Disk",
+ "hammer_throw": "Hod kladivem",
+ "high_jump": "Skok do výšky",
+ "javelin_throw": "Hod oštěpem",
+ "long_jump": "Skok do dálky",
+ "pole_vault": "Skok o tyči",
+ "shot_put": "Vrh koulí",
+ "triple_jump": "Trojskok"
+ }
+ },
+ "athletics_track": {
+ "label": "Událost",
+ "options": {
+ "javelin_throw": "Oštěp",
+ "long_jump": "Skok do dálky",
+ "pole_vault": "Skok o tyči",
+ "running": "Běh",
+ "sprint": "Sprint",
+ "steeplechase": "Steeplechase",
+ "triple_jump": "Trojskok"
+ }
},
"atm": {
"label": "Bankomat"
},
"attraction": {
- "label": "Typ"
+ "label": "Typ",
+ "options": {
+ "alpine_coaster": "Alpská dráha",
+ "amusement_ride": "Atrakce",
+ "animal": "Ohrada pro zvířata",
+ "big_wheel": "Ruské kolo",
+ "bumper_car": "Autodrom",
+ "bungee_jumping": "Bungee jumping",
+ "carousel": "Kolotoč",
+ "dark_ride": "Strašidelná jízda",
+ "drop_tower": "Atrakce padací věž",
+ "kiddie_ride": "Dětské houpadlo",
+ "log_flume": "Vodní horská dráha",
+ "maze": "Bludiště",
+ "pirate_ship": "Houpačka ve tvaru pirátské lodi",
+ "river_rafting": "Jízda na divoké řece",
+ "roller_coaster": "Horská dráha",
+ "summer_toboggan": "Letní tobogán",
+ "swing_carousel": "Řetízkový kolotoč",
+ "train": "Turistický vláček",
+ "water_slide": "Vodní skluzavka"
+ }
},
"automated": {
"label": "Automatické"
@@ -290,24 +384,49 @@
"room": "Místnost pro kojení",
"yes": "Označené místo"
},
- "terms": "kojení,kojit,matky,přebalování,přebalit,děti,miminka,batole,batolata,dítě,mimino"
+ "terms": "kojení,místo pro kojení,pro matky,kojení dětí,krmení dětí"
},
"baby_seat": {
"label": "Dětská sedačka"
},
"backcountry": {
- "label": "Nocoviště",
- "terms": "místo pro táboření v divočině,divoké tábořiště,stan,místo pro přespání,noční,noc,spaní,stanování,divočina,tábořiště,přenocování"
+ "label": "místo pro táboření v divočině",
+ "terms": "místo pro táboření v divočině,divoké tábořiště,místo pro přespání,spaní,stanování,divočina,tábořiště,nocoviště,přenocování"
},
"backrest": {
"label": "Opěradlo"
},
"bar": {
"label": "Bar",
- "terms": "pivo,drink,klub,hospoda,alkohol,noční,noc"
+ "terms": "pivnice,klub,hospoda,night club,bar,club,nálevna"
},
"barrier": {
- "label": "Typ"
+ "label": "Typ",
+ "options": {
+ "block": "Velký blok",
+ "bollard": "Sloupek",
+ "cattle_grid": "Přejezdový rošt",
+ "chain": "Řetěz",
+ "city_wall": "Městské hradby",
+ "cycle_barrier": "Cyklistická zábrana",
+ "ditch": "Příkop / strouha",
+ "entrance": "Vchod",
+ "fence": "Plot",
+ "gate": "Brána",
+ "guard_rail": "Svodidlo",
+ "hedge": "Živý plot",
+ "height_restrictor": "Omezovač výšky",
+ "jersey_barrier": "Betonová bariéra",
+ "kerb": "Obrubník",
+ "kissing_gate": "Turniketová branka",
+ "lift_gate": "Zvedací závora",
+ "retaining_wall": "Opěrná zeď",
+ "stile": "Schůdky přes ohradu",
+ "swing_gate": "Otočná závora",
+ "toll_booth": "Mýtná brána",
+ "turnstile": "Turniket",
+ "wall": "Zeď"
+ }
},
"barrier_planter": {
"label": "Zábrana",
@@ -328,11 +447,19 @@
"bath/open_air": {
"label": "Pod širým nebem"
},
- "bath/sand_bath": {
- "label": "Písečná koupel"
+ "bath/sand_bath-JP": {
+ "label": "Písečná koupel",
+ "terms": "písková lázeň,písečná lázeň,písková koupel"
},
"bath/type": {
- "label": "Specialita"
+ "label": "Specialita",
+ "options": {
+ "hammam": "Turecká lázeň - Hammam",
+ "hot_spring": "Termální pramen",
+ "lake": "Jezero",
+ "onsen": "Japonský horký pramen - Onsen",
+ "thermal": "Termální koupaliště"
+ }
},
"beauty": {
"label": "Služby",
@@ -348,7 +475,7 @@
},
"bench": {
"label": "Lavička",
- "terms": "místo k sezení"
+ "terms": "místo k sezení,lavička"
},
"bicycle_parking": {
"label": "Typ",
@@ -356,18 +483,26 @@
"building": "V budově",
"handlebar_holder": "Držák na řídítka",
"lockers": "Individuální skříňky",
- "shed": "Uzavřená bouda",
+ "shed": "Uzavíratelný přístřešek",
"stands": "Stojan (podpírá rám jízdního kola)",
- "wall_loops": "Držák kol (podpírá pouze kolo)"
+ "wall_loops": "Držák ráfku (drží pouze přední kolo)"
}
},
+ "bicycle_road": {
+ "label": "Silnice pro bicykly",
+ "options": {
+ "undefined": "Ne",
+ "yes": "Ano"
+ },
+ "terms": "cyklistický bulvár,cyklostezka,cyklistická ulice,cyklistická cesta,silnice pro kola,kolo"
+ },
"bike_ride": {
"label": "Parkoviště B+R",
"terms": "b+r,b a r,vezmi si kolo a jeď,mhd,přestup,dojíždějící,kapacitní,odstavné,hromadná doprava,na kraji města,b + r,parkandride,b/r,vem si kolo a jeď,městská,metro,tram,bus"
},
"bin": {
"label": "Odpadkový koš",
- "terms": "popelnice,koš"
+ "terms": "popelnice,koš,odpadkový koš,odpaďák"
},
"blind": {
"label": "Přístup pro nevidomé",
@@ -376,7 +511,7 @@
"no": "Ne",
"yes": "Ano"
},
- "terms": "nevidomí,slepí,slepec,slepce,slepci,hendikep,přístupné"
+ "terms": "nevidomí,slepí,slepec,slepce,slepci"
},
"blood_components": {
"label": "Odebírané složky",
@@ -395,7 +530,7 @@
"geology": "Geologie",
"history": "Historie",
"nature": "Příroda",
- "notice": "Plakátová plocha",
+ "notice": "Oznámení",
"plants": "Rostliny",
"welcome_sign": "Uvítací tabule",
"wildlife": "Divoká zvířata"
@@ -411,12 +546,17 @@
"rising": "Vysouvací sloupek"
}
},
+ "books": {
+ "label": "Typ knih",
+ "terms": "žánr knih,knižní žánr,určení knihy,kniha"
+ },
"booth": {
"label": "Stánek",
"terms": "stan,prodej,trh,nabídka,poptávka,směna,tržiště,stánky"
},
"bottle": {
- "label": "Plnění lahví"
+ "label": "Plnění lahví",
+ "terms": "stáčení do lahví,stáčení do flašek,plnění flašek"
},
"boules": {
"label": "Typ"
@@ -429,27 +569,108 @@
"terms": "odvětví,branže,filiálka,větev"
},
"brand": {
- "label": "Obchodní značka",
- "terms": "značka,firma,logo,provozovatel,majitel"
+ "label": "Značka",
+ "terms": "znacka,logo"
},
"brewery": {
- "label": "Točená piva",
- "terms": "minipivovar,malý pivovar,pivo,pivovar,místní,lokální,speciální pivo"
+ "label": "Prodávané značky piva",
+ "terms": "značka piva,výčep piva,lahvové pivo,točené pivo,točené,čepované pivo"
},
"bridge": {
"label": "Typ",
"placeholder": "Výchozí"
},
+ "bridge/ref": {
+ "label": "Číslo mostu",
+ "terms": "označení mostu,most,označení,číslo"
+ },
"bridge/support": {
"label": "Typ"
},
"bridge_combo": {
- "label": "Typ"
+ "label": "Typ",
+ "options": {
+ "aqueduct": "Akvadukt",
+ "boardwalk": "Chodník z prken",
+ "cantilever": "Konzolový most",
+ "covered": "Krytý most",
+ "low_water_crossing": "Most při nízké hladině",
+ "movable": "Pohyblivý most",
+ "trestle": "Kozlíkový most",
+ "viaduct": "Viadukt"
+ }
},
"building": {
"label": "Budova",
+ "options": {
+ "allotment_house": "Zahradní dům",
+ "apartments": "Budova s byty",
+ "barn": "Stodola",
+ "boathouse": "Přístřešek pro loď",
+ "bungalow": "Bungalov",
+ "bunker": "Bunkr",
+ "cabin": "Chatka",
+ "carport": "Zastřešené stání pro auto",
+ "cathedral": "Budova katedrály",
+ "chapel": "Budova kaple",
+ "church": "Budova kostela",
+ "civic": "Budova občanské vybavenosti",
+ "college": "Budova vyšší odborné školy/college",
+ "commercial": "Komerční budova",
+ "construction": "Budova ve výstavbě",
+ "container": "Kontejner",
+ "cowshed": "Kravín",
+ "detached": "Samostatný rodinný dům",
+ "dormitory": "Kolej/internát",
+ "farm": "Zemědělský dům",
+ "farm_auxiliary": "Zemědělská budova",
+ "fire_station": "Budova požární zbrojnice",
+ "garage": "Garáž",
+ "garages": "Budova soukromých garáží",
+ "ger": "Jurta",
+ "grandstand": "Tribuna",
+ "greenhouse": "Skleník",
+ "hangar": "Budova hangáru",
+ "hospital": "Budova nemocnice",
+ "hotel": "Budova hotelu",
+ "house": "Rodinný dům",
+ "houseboat": "Hausbót",
+ "hut": "Chýše",
+ "industrial": "Průmyslová budova",
+ "kindergarten": "Budova školky/předškolního zařízení",
+ "manufacture": "Budova průmyslové výroby",
+ "mosque": "Budova mešity",
+ "office": "Kancelářská budova",
+ "outbuilding": "Přístavba",
+ "pavilion": "Sportovní budova se zázemím",
+ "public": "Veřejná budova",
+ "residential": "Obytná budova",
+ "retail": "Prodejna",
+ "riding_hall": "Jezdecká aréna",
+ "roof": "Střecha",
+ "ruins": "Zřícená budova",
+ "school": "Budova školy",
+ "semidetached_house": "Polovina dvojdomku",
+ "service": "Účelová budova",
+ "shed": "Kůlna",
+ "stable": "Stáj",
+ "stadium": "Budova stadionu",
+ "static_caravan": "Obytný vůz",
+ "sty": "Vepřín",
+ "synagogue": "Budova synagogy",
+ "temple": "Budova chrámu",
+ "terrace": "Řada řadových domů",
+ "train_station": "Nádražní budova",
+ "transportation": "Dopravní budova",
+ "university": "Budova vysoké školy",
+ "warehouse": "Skladiště"
+ },
"terms": "struktura"
},
+ "building/colour": {
+ "label": "Barva fasády",
+ "terms": "barva budovy,barva omítky"
+ },
"building/flats": {
"label": "Jednotky",
"placeholder": "2, 4, 6, 8..."
@@ -481,6 +702,10 @@
"button_operated": {
"label": "Volací tlačítko"
},
+ "cabins": {
+ "label": "Sruby",
+ "terms": "boudy,chaty,roubenky,roubené stavby,dřevěnice,drevenice,koči,dřevěné domky"
+ },
"cables": {
"label": "Kabely",
"placeholder": "1, 2, 3…"
@@ -490,7 +715,7 @@
"options": {
"E": "E: Pro turisty",
"EAI": "EAI: Pěší turistika ve sněhových podmínkách",
- "EE": "E: Pro zkušené turisty",
+ "EE": "EE: Pro zkušené turisty",
"EEA": "EEA: Pro zkušené turisty s vybavením",
"T": "T: Turistická"
},
@@ -505,20 +730,41 @@
"label": "Připevnění kamery"
},
"camera/type": {
- "label": "Typ kamery",
+ "label": "Druh kamery",
"options": {
"dome": "V kupoli",
"fixed": "Pevná",
"panning": "Otočná"
}
},
+ "camp_site": {
+ "label": "Druh",
+ "options": {
+ "basic": {
+ "description": "Nic než místo, kde lze postavit stan nebo zaparkovat vozidlo",
+ "title": "Základní (pouze místa pro stany/vozidla)"
+ },
+ "deluxe": {
+ "description": "Plně servisované a s dalším vybavením, jako je prádelna, bazén nebo podobná rekreační zařízení.",
+ "title": "Deluxe (nabízí prádelnu nebo bazén atd.)"
+ },
+ "serviced": {
+ "description": "K dispozici jsou toalety, voda, sprchy a elektřina.",
+ "title": "Obsluhované (nabízí sprchy a elektřinu)"
+ },
+ "standard": {
+ "description": "V blízkosti jsou k dispozici toalety a voda.",
+ "title": "Standardní (nabízí toalety a vodu)"
+ }
+ }
+ },
"capacity": {
"label": "Kapacita",
"placeholder": "50, 100, 200...",
"terms": "objem,maximální,největší,nejvíce,limit,omezení"
},
"capacity/caravans": {
- "label": "Kapacita (kravany)",
+ "label": "Kapacita (karavanů / obytných přívěsů)",
"placeholder": "10, 20, 50, …"
},
"capacity/disabled_parking": {
@@ -541,11 +787,15 @@
"label": "Objem (metry krychlové)",
"placeholder": "50, 100, 200..."
},
+ "caravans": {
+ "label": "Karavany / obytné přívěsy",
+ "terms": "tábor,táborník,karavan,turista"
+ },
"cash_in": {
"label": "Vklady"
},
"castle_type": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"castrum": "Castrum",
"defensive": "Hrad",
@@ -558,8 +808,18 @@
"stately": "Zámek"
}
},
+ "ceremonial_gate": {
+ "label": "Druh",
+ "options": {
+ "hongsalmun": "Hongsalmun",
+ "iljumun": "Iljumun",
+ "paifang": "Paifang",
+ "torii": "Torii (šintoistická brána)"
+ }
+ },
"changing_table": {
- "label": "Stůl na výměnu plenek"
+ "label": "Stůl na výměnu plenek",
+ "terms": "stůl na pleny,stůl na přebalování miminek,stůl na přebalení,pleny,plenky,plínky,miminko"
},
"charge_fee": {
"label": "Cena",
@@ -573,25 +833,85 @@
},
"check_date": {
"label": "Datum poslední kontroly",
- "placeholder": "RRRR-MM-DD"
+ "placeholder": "RRRR-MM-DD",
+ "terms": "datum průzkumu,datum posledního průzkumu"
},
"circumference": {
"label": "Obvod (ve výšce prsou)",
"placeholder": "1 m, 20 cm, 30\"…",
"terms": "poprsí,průměr ve výšce prsou"
},
+ "climbing/bolts": {
+ "label": "Počet skob/borháků"
+ },
+ "climbing/grade/french": {
+ "label": "Obtížnost (Francouzská stupnice)",
+ "placeholder": "5c",
+ "terms": "lezecká obtížnost"
+ },
+ "climbing/grade/saxon": {
+ "label": "Obtížnost (Saská)",
+ "placeholder": "VIIa",
+ "terms": "lezecká obtížnost"
+ },
+ "climbing/grade/uiaa": {
+ "label": "Obtížnost (UIAA)",
+ "placeholder": "6-",
+ "terms": "lezecká obtížnost"
+ },
+ "climbing/grade/yds_class": {
+ "label": "Obtížnost (YDS/USA)",
+ "placeholder": "5.10a",
+ "terms": "lezecká obtížnost"
+ },
+ "climbing/length": {
+ "label": "Délka (v metrech)",
+ "terms": "délka v metrech,dlouhý,rozměr délky,délka"
+ },
+ "climbing/sport": {
+ "label": "Sportovní lezení (zajištěné)"
+ },
+ "climbing/trad": {
+ "label": "Tradiční lezení"
+ },
"clothes": {
"label": "Oblečení",
+ "options": {
+ "babies": "Kojenecké oblečení",
+ "children": "Dětské oblečení",
+ "denim": "Džínové oblečení",
+ "fur": "Kožešinové oblečení",
+ "hats": "Klobouky",
+ "maternity": "Těhotenské oblečení",
+ "men": "Pánské oblečení",
+ "motorcycle": "Motocyklové oblečení",
+ "oversize": "Nadměrná velikost",
+ "socks": "Ponožky",
+ "sports": "Sportovní oblečení",
+ "suits": "Obleky",
+ "swimwear": "Plavky",
+ "traditional": "Tradiční oděvy / lidové kroje",
+ "underwear": "Spodní prádlo",
+ "wedding": "Svatební oblečení",
+ "women": "Dámské oblečení",
+ "workwear": "Pracovní oblečení"
+ },
"terms": "šaty,textil,oděv"
},
"club": {
- "label": "Typ"
+ "label": "Druh"
},
"collection_times": {
- "label": "Čas výběru"
+ "label": "Čas výběru",
+ "terms": "čas sběru,sběr,doba"
},
"collector": {
- "label": "Druh předmětů"
+ "label": "Druh předmětů",
+ "options": {
+ "coins": "Mince",
+ "comics": "Komiksy",
+ "stamps": "Známky"
+ }
},
"colour": {
"label": "Barva",
@@ -602,21 +922,46 @@
"placeholder": "Stručný popis vašich úprav (povinné)"
},
"communication_multi": {
- "label": "Typ komunikace",
+ "label": "Druh komunikace",
"terms": "druh komunikace,cesta,typ,druh,druhy,silnice,cesty"
},
+ "community_centre": {
+ "label": "Druh",
+ "options": {
+ "club_home": "Klubovna",
+ "community_hall": "Společenský sál",
+ "cultural_centre": "Kulturní centrum",
+ "family_centre": "Rodinné centrum",
+ "parish_hall": "Farní síň",
+ "village_hall": "Obecní sál",
+ "youth_centre": "Centrum pro mládež"
+ }
+ },
"connectivity": {
"label": "Připojení"
},
"construction": {
- "label": "Typ"
+ "label": "Druh"
},
"consulate": {
- "label": "Typ"
+ "label": "Druh",
+ "options": {
+ "consular_agency": "Úřad pro konzulární služby",
+ "consular_office": "Kancelář konzulárních služeb",
+ "consulate_general": "Generální konzulát",
+ "honorary_consul": "Honorární konzul",
+ "residence": "Úřední sídlo konzula",
+ "yes": "Konzulát"
+ }
},
"consulting": {
"label": "Odbornost"
},
+ "contact/facebook": {
+ "label": "Uživatelské jméno Facebooku nebo URL",
+ "placeholder": "https://www.facebook.com/LocalBusiness",
+ "terms": "facebook,uživatelské jméno facebooku,url,url adresa,adresa url,jméno,uživatel facebooku"
+ },
"contact/webcam": {
"label": "URL webkamery",
"placeholder": "http://priklad.cz/"
@@ -635,6 +980,9 @@
"conveying_escalator": {
"label": "Jezdící schody"
},
+ "count": {
+ "label": "Počet prvků"
+ },
"country": {
"label": "Stát"
},
@@ -657,7 +1005,7 @@
}
},
"craft": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"agricultural_engines": "Výrobce zemědělských strojů",
"basket_maker": "Košíkář",
@@ -718,11 +1066,11 @@
}
},
"crane/type": {
- "label": "Typ jeřábu",
+ "label": "Druh jeřábu",
"options": {
"floor-mounted_crane": "Sloupový jeřáb",
- "gantry_crane": "Portálový mostový jeřáb",
- "portal_crane": "Portálový ramenový jeřáb",
+ "gantry_crane": "Portálový jeřáb",
+ "portal_crane": "Přístavní jeřáb",
"tower_crane": "Věžový jeřáb",
"travel_lift": "Přepravní jeřáb"
}
@@ -759,7 +1107,7 @@
}
},
"crossing": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"traffic_signals": "Přechod se semafory",
"uncontrolled": "Pouze silniční značení",
@@ -793,8 +1141,8 @@
"ladder": "Žebřík s podélnými pruhy",
"ladder:paired": "Žebřík s podélnými párovými tyčemi",
"ladder:skewed": "Žebřík se šikmými pruhy",
- "lines": "Příčné linie",
- "lines:paired": "Dvojité příčné linie",
+ "lines": "Příčné čáry",
+ "lines:paired": "Dvojité příčné čáry",
"no": "Neoznačený",
"pictograms": "Namalované piktogramy",
"surface": "Pouze povrchová úprava",
@@ -816,21 +1164,46 @@
"cuisine": {
"label": "Kuchyně",
"options": {
+ "african": "Africká",
"american": "Americká",
+ "arab": "Arabská",
+ "argentinian": "Argentinská",
"asian": "Asijská",
+ "bagel": "Bagel",
+ "balkan": "Balkánská",
+ "barbecue": "Barbecue / Gril",
+ "bavarian": "Barorská",
+ "beef_bowl": "Gyūdon",
+ "bistro": "Bistro",
+ "brazilian": "Brazilská",
+ "breakfast": "Snídaně",
+ "brunch": "Pozdní snídaně",
"bubble_tea": "Perlivý čaj",
"burger": "Burger",
- "cake": "Koláče",
+ "cake": "Zákusek",
+ "caribbean": "Karibská",
"chicken": "Kuřecí",
"chinese": "Čínská",
- "chocolate": "Čokoláda",
"coffee_shop": "Kavárna",
+ "crepe": "Krep",
+ "curry": "Kari",
"dessert": "Dezerty",
+ "diner": "Večeře",
"donut": "Donuty",
+ "european": "Evropská",
+ "filipino": "Filipínská",
+ "fine_dining": "Dobré jídlo",
"fish": "Ryba",
+ "fish_and_chips": "Ryby a hranolky",
"french": "Francouzská",
+ "fries": "Hranolky",
+ "friture": "Friterie",
+ "frozen_yogurt": "Mražený jogurt",
+ "georgian": "Gruzínská",
"german": "Německá",
"greek": "Řecká",
+ "grill": "Bar a gril",
+ "hawaiian": "Havajská",
"hot_dog": "Párek v rohlíku",
"ice_cream": "Zmrzlina",
"indian": "Indická",
@@ -842,35 +1215,74 @@
"korean": "Korejská",
"lebanese": "Libanonská",
"malaysian": "Malajská",
+ "mediterranean": "Středozemní",
"mexican": "Mexická",
- "pankcake": "Lívance",
+ "middle_eastern": "Blízkovýchodní",
+ "moroccan": "Marocká",
+ "noodle": "Nudle",
+ "oriental": "Orientální",
+ "pancake": "Lívance",
"pasta": "Těstoviny",
+ "pastry": "Pečivo",
+ "persian": "Perská",
+ "peruvian": "Peruánská",
"pizza": "Pizza",
"polish": "Polská",
"portuguese": "Portugalská",
+ "ramen": "Ramen",
"regional": "Místní",
"russian": "Ruská",
"salad": "Saláty",
"sandwich": "Sendvič",
+ "sausage": "Párky",
"seafood": "Mořské plody",
+ "shawarma": "Šavarma",
+ "soba": "Soba",
+ "soup": "Polévka",
"spanish": "Španělská",
"steak_house": "Steaková restaurace",
"sushi": "Suši",
"taiwanese": "Tchajwanská",
+ "tapas": "Tapas",
+ "tea": "Čaj",
+ "tex-mex": "Tex-Mex",
"thai": "Thajská",
"turkish": "Turecká",
- "vietnamese": "Vietnamská"
+ "udon": "Udon",
+ "ukrainian": "Ukrajinská",
+ "vietnamese": "Vietnamská",
+ "western": "Západní",
+ "wings": "Kuřecí křídla"
},
- "terms": "strava,druhy jídel"
+ "terms": "kuchyně,strava,druhy jídel,typ kuchyně"
},
"currency_multi": {
- "label": "Typy měn",
- "terms": "bankovky,hotovost,mince,peníze"
+ "label": "Druhy měn",
+ "terms": "bankovky,hotovost,mince,peníze,měny,druh měny"
},
"cutting": {
"label": "Typ",
"placeholder": "Výchozí"
},
+ "cycle_barrier": {
+ "label": "Typ",
+ "options": {
+ "diagonal": "Úhlopříčně",
+ "double": "Dvojitá",
+ "single": "Samostatná",
+ "tilted": "Nakloněný",
+ "triple": "Trojitá"
+ }
+ },
+ "cycle_barrier/installation": {
+ "label": "Instalace",
+ "options": {
+ "fixed": "Pevná",
+ "openable": "Otevírací",
+ "removable": "Odstranitelné"
+ },
+ "terms": "instalace,typ instalace,zabudování,typ upevnění"
+ },
"cycle_network": {
"label": "Síť"
},
@@ -878,7 +1290,7 @@
"label": "Cyklopruhy",
"options": {
"lane": {
- "description": "Jízdní pruh pro cyklisty, oddělený podélnou čarou",
+ "description": "Jízdní pruh pro cyklisty oddělený podélnou čarou",
"title": "Normální cyklopruh"
},
"no": {
@@ -886,15 +1298,15 @@
"title": "Žádné"
},
"opposite": {
- "description": "Cyklopruh, kterým cyklisté mohou jet v jednosměrce oběma směry",
- "title": "Obousměrný cyklopruh"
+ "description": "Aktualizujte prosím pomocí oneway=yes, oneway:bicycle=no a cycleway:both=no atd.",
+ "title": "(Zrušeno) Protisměrný cyklistický pruh"
},
"opposite_lane": {
- "description": "Cykloobousměrka - cyklopruh v opačném směru než ostatní provoz",
- "title": "Protisměrný cyklopruh"
+ "description": "Aktualizujte prosím pomocí oneway, oneway:bicycle, a cycleway:left/right=lane atd.",
+ "title": "(Zrušeno) Protější cyklistický pruh"
},
"separate": {
- "description": "Označuje, která cyklostezka byla zmapována jako samostatná geometrie",
+ "description": "Označuje, že cyklostezka byla zmapována jako samostatná cesta.",
"title": "Cyklostezka zmapována samostatně"
},
"share_busway": {
@@ -920,12 +1332,18 @@
"dance/style": {
"label": "Taneční styly"
},
+ "dance/teaching": {
+ "label": "Nabídka tanečních lekcí"
+ },
"date": {
"label": "Datum"
},
"defibrillator/location": {
"label": "Popis umístění"
},
+ "deflection": {
+ "label": "Úhel"
+ },
"delivery": {
"label": "Rozvoz",
"terms": "zásobování,obsluha,dopravní obsluha,dovoz,doručování,dodávka"
@@ -942,14 +1360,17 @@
"label": "Tabule odjezdů/příjezdů",
"options": {
"no": "Žádná",
- "realtime": "Digitální",
- "timetable": "Jízdní řády",
+ "realtime": "V reálném čase",
+ "timetable": "Jízdní řády (tištěné)",
"yes": "Ano"
}
},
"deposit/trolley": {
"label": "Vklad"
},
+ "depot": {
+ "label": "Typ"
+ },
"depth": {
"label": "Hloubka (v metrech)"
},
@@ -962,8 +1383,7 @@
"terms": "souhrn"
},
"design": {
- "label": "Design",
- "terms": "vzhled,vizáž,styl"
+ "label": "Design"
},
"destination": {
"label": "Směry"
@@ -992,7 +1412,7 @@
"terms": "průměr,velikost koruny,šířka koruny"
},
"diet_multi": {
- "label": "Typy diet",
+ "label": "Druhy diet",
"options": {
"gluten_free": "Bezlepková",
"halal": "Halal",
@@ -1005,7 +1425,12 @@
"terms": "bezlepkové,ovocné,halal,košer,bez laktózy,maso,pescovegetariánské,syrové,veganské,vegetariánské"
},
"diplomatic": {
- "label": "Typ"
+ "label": "Typ",
+ "options": {
+ "consulate": "Konzulát",
+ "embassy": "Velvyslanectví",
+ "liaison": "Styčný úřad"
+ }
},
"diplomatic/services": {
"label": "Služby"
@@ -1070,20 +1495,46 @@
"label": "Typ"
},
"dock": {
- "label": "Typ"
+ "label": "Typ",
+ "options": {
+ "drydock": "Suchý dok",
+ "floating": "Plovoucí suchý dok",
+ "tidal": "Ponorný přílivový dok"
+ }
+ },
+ "dock/height": {
+ "label": "Výška doku (metry)",
+ "terms": "výška v metrech,rozměr doku,dok,výška,rozměr,velikost,metr,velikost doku"
+ },
+ "dock/width": {
+ "label": "Šířka doku (metry)",
+ "terms": "šířka v metrech,rozměr doku,dok,šířka,rozměr,velikost,metr,velikost doku"
},
"dog": {
"label": "Psi",
"options": {
"leashed": "Pouze na vodítku",
"no": "Zakázáno",
+ "unleashed": "Vodítka nejsou vyžadována",
"yes": "Povoleno"
},
"terms": "zvířata,mazlíčci"
},
+ "dog_check": {
+ "label": "Vhodné pro psy",
+ "terms": "pro psy,psí,pro zvířata,zvířecí,psi,pes,pro mazlíčky"
+ },
"door": {
"label": "Dveře"
},
+ "door/height": {
+ "label": "Výška dveří (metry)",
+ "terms": "výška v metrech,rozměr dveří,dveře,výška,rozměr,velikost,metr,velikost dveří"
+ },
+ "door/width": {
+ "label": "Šířka dveří (metry)",
+ "terms": "šířka v metrech,rozměr dveří,dveře,šířka,rozměr,velikost,metr,velikost dveří"
+ },
"door_type": {
"label": "Typ"
},
@@ -1107,6 +1558,20 @@
"placeholder": "00:00",
"terms": "délka trvání,doba,průběh,čas,rozmezí"
},
+ "education": {
+ "label": "Typ",
+ "options": {
+ "college": "Vyšší/vysoká odborná škola/college",
+ "dancing_school": "Taneční škola",
+ "driving_school": "Autoškola",
+ "kindergarten": "Mateřská škola",
+ "language_school": "Jazyková škola",
+ "music_school": "Hudební škola",
+ "prep_school": "Doučovací škola",
+ "school": "Škola",
+ "university": "Univerzita"
+ }
+ },
"ele": {
"label": "Nadmořská výška (v metrech)",
"terms": "nadmořská výška,výška"
@@ -1136,7 +1601,7 @@
"options": {
"branch_embassy": "Pobočka velvyslanectví",
"delegation": "Delegace",
- "high_commission": "Vysoká provize",
+ "high_commission": "Vysoký komisař",
"interests_section": "Sekce zájmů",
"mission": "Diplomatická mise",
"nunciature": "Diplomatická mise Svatého stolce",
@@ -1145,7 +1610,7 @@
}
},
"emergency": {
- "label": "Pohotovost"
+ "label": "Urgentní příjem"
},
"emergency_combo": {
"label": "Typ"
@@ -1167,6 +1632,7 @@
"main": "Hlavní",
"secondary": "Sekundární",
"service": "Účelový",
+ "shop": "Vchod do obchodu",
"staircase": "Schodiště",
"yes": "Nespecifikováno"
},
@@ -1200,6 +1666,10 @@
"fence_type": {
"label": "Typ"
},
+ "fhrs/id-GB": {
+ "label": "FHRS ID",
+ "terms": "schéma hodnocení hygieny potravin,systém hodnocení hygieny potravin,agentura pro potravinářské standardy"
+ },
"fire_hydrant/diameter": {
"label": "Průměr (mm, palce nebo písmena)",
"terms": "průměr,míra,rozměr,velikost,mm,in,cm,metrů,velké"
@@ -1211,8 +1681,7 @@
"lane": "Pruh silnice",
"parking_lot": "Parkoviště",
"sidewalk": "Chodník podél vozovky"
- },
- "terms": "pozice,místo"
+ }
},
"fire_hydrant/pressure": {
"label": "Tlak (bary)",
@@ -1227,6 +1696,35 @@
"wall": "Nástěnný"
}
},
+ "fire_mains": {
+ "label": "Druh sítě",
+ "options": {
+ "dry": "Vyhrazená síť (normálně suchá)",
+ "no": "Ne",
+ "wet": "Připojeno k síti (trvale připojeno)",
+ "yes": "Neznámý druh"
+ }
+ },
+ "fire_service_inlet": {
+ "label": "Tvar",
+ "options": {
+ "pillar": "Sloup/pozemek",
+ "pipe": "Potrubí s uzávěrem",
+ "underground": "Podzemní",
+ "wall": "Stěna"
+ },
+ "terms": "obrys,hydrant,sloup,potrubí,podzemní,požární"
+ },
+ "fire_sprinkler": {
+ "label": "Vstup požárního postřikovače",
+ "options": {
+ "dry": "Vyhrazená síť (normálně suchá)",
+ "no": "Ne",
+ "pre-action": "Připojeno k síti (systém před akcí)",
+ "wet": "Připojeno k síti (trvale připojeno)",
+ "yes": "Neznámý druh"
+ }
+ },
"fireplace": {
"label": "Krb"
},
@@ -1281,12 +1779,18 @@
"label": "Náchylnost k povodním",
"terms": "záplavová oblast,ohroženo záplavami,vodou ohroženo,povodeň,záplava,potopa,pod vodou,zaplavované,zaplavené"
},
+ "footrest": {
+ "label": "Opěrka nohy"
+ },
"ford": {
"label": "Typ",
"placeholder": "Výchozí"
},
+ "fortification_type": {
+ "label": "Typ opevnění"
+ },
"fountain": {
- "label": "Druh"
+ "label": "Typ"
},
"frequency": {
"label": "Provozní frekvence",
@@ -1307,12 +1811,14 @@
"adblue": "AdBlue / AUS 32",
"adblue:canister": "AdBlue / AUS 32 (prodávaný v kanystrech)",
"biodiesel": "Bionafta",
- "cng": "Stlačený přírodní plyn (CNG)",
+ "cng": "Stlačený zemní plyn (CNG)",
"diesel": "Nafta",
"e10": "Benzín E10",
+ "e5": "Benzín E5",
"e85": "Benzín E85",
"h70": "Plynný vodík (700 barů)",
- "lpg": "Tekutý přírodní plyn (LPG)",
+ "lng": "Zkapalněný zemní plyn (LNG)",
+ "lpg": "Zkapalněný ropný plyn (LPG)",
"octane_100": "Benzín (100 oktanový)",
"octane_80": "Benzín (80 oktanový)",
"octane_85": "Benzín (85 oktanový)",
@@ -1404,7 +1910,7 @@
"label": "Výška výtrysku"
},
"gnis/feature_id-US": {
- "label": "Identifikační číslo prvku GNIS",
+ "label": "ID prvku GNIS",
"terms": "informační služba o federálních zeměpisných názvech,deska spojených států pro zeměpisná jména,usa"
},
"government": {
@@ -1431,12 +1937,58 @@
"label": "Zábradlí",
"terms": "ruka,opěra,schody"
},
+ "handrest": {
+ "label": "Opěrka ruky"
+ },
"hashtags": {
"label": "Hashtagy",
"placeholder": "#příklad"
},
+ "hazard_boundary": {
+ "label": "Ohrožení",
+ "options": {
+ "archery_range": "Šípy",
+ "avalanche": "Lavina",
+ "biohazard": "Biohazard",
+ "contamination": "Chemická kontaminace",
+ "electricity": "Elektrický šok",
+ "hole": "Díra",
+ "minefield": "Minové pole",
+ "nuclear": "Jaderné / radioaktivní",
+ "quicksand": "Pohyblivý písek",
+ "shooting_range": "Střelba"
+ }
+ },
"healthcare": {
- "label": "Typ"
+ "label": "Typ",
+ "options": {
+ "alternative": "Alternativní medicína",
+ "audiologist": "Ušní",
+ "birthing_centre": "Porodnice",
+ "blood_bank": "Krevní banka",
+ "blood_donation": "Centrum dárcovství krve",
+ "clinic": "Poliklinika",
+ "community_health_worker": "Komunitní zdravotnický pracovník",
+ "counselling": "Zdravotní poradna",
+ "dentist": "Zubař",
+ "dialysis": "Dialyzační středisko",
+ "doctor": "Lékař",
+ "hospice": "Hospic",
+ "hospital": "Nemocnice",
+ "laboratory": "Zdravotnická laboratoř",
+ "midwife": "Porodní bába",
+ "nurse": "Zdravotní sestra",
+ "occupational_therapist": "Ergoterapeut",
+ "optometrist": "Optik",
+ "pharmacy": "Lékárna",
+ "physiotherapist": "Fyzioterapeut",
+ "podiatrist": "Podiatr",
+ "psychotherapist": "Psychoterapeut",
+ "rehabilitation": "Rehabilitační středisko",
+ "sample_collection": "Zařízení pro odběr vzorků",
+ "speech_therapist": "Logoped",
+ "vaccination_centre": "Očkovací centrum"
+ }
},
"healthcare/speciality": {
"label": "Specializace",
@@ -1557,12 +2109,39 @@
"highway_cartpath": {
"label": "Typ cesty",
"options": {
- "path": "Vozová stezka",
- "service": "Účelová komunikace, příjezd"
+ "path": "Stezka pro vozítka",
+ "service": "Účelová komunikace"
}
},
"historic": {
- "label": "Typ"
+ "label": "Typ",
+ "options": {
+ "archaeological_site": "Archeologické naleziště",
+ "bomb_crater": "Kráter po bombě",
+ "boundary_stone": "Hraniční kámen",
+ "building": "Historická stavba",
+ "castle": "Zámek",
+ "charcoal_pile": "Hromada dřevěného uhlí",
+ "church": "Kostel",
+ "city_gate": "Městská brána",
+ "citywalls": "Městské hradby",
+ "fort": "Historická pevnost",
+ "manor": "Panský dům",
+ "memorial": "Památník",
+ "milestone": "Milník",
+ "millstone": "Mlýnský kámen",
+ "mine": "Důl",
+ "mine_shaft": "Důlní šachta",
+ "monument": "Monument",
+ "pillory": "Historické sloupoví",
+ "railway": "Železnice",
+ "ruins": "Ruiny",
+ "shieling": "Pastevecká chýše",
+ "tomb": "Hrobka",
+ "wayside_cross": "Kříž u cesty",
+ "wayside_shrine": "Svatostánek u cesty",
+ "wreck": "Vrak lodi"
+ }
},
"historic/civilization": {
"label": "Historická civilizace"
@@ -1588,15 +2167,8 @@
"label": "Počet košů",
"placeholder": "1, 2, 4..."
},
- "horse_dressage": {
- "label": "Drezura",
- "options": {
- "equestrian": "Ano",
- "undefined": "Ne"
- }
- },
"horse_riding": {
- "label": "Jízda na koni",
+ "label": "Jezdecké centrum",
"options": {
"horse_riding": "Ano",
"undefined": "Ne"
@@ -1615,16 +2187,42 @@
"placeholder": "Obtížné, nebezpečné…",
"terms": "koně,obtížnost,jízda na koni,náročnost,kůň,koňská,jezdec,jezdectví"
},
- "horse_stables": {
- "label": "Jezdecká stáj",
- "options": {
- "stables": "Ano",
- "undefined": "Ne"
- }
- },
"hot_water": {
"label": "Horká voda"
},
+ "house": {
+ "label": "Typ domu",
+ "options": {
+ "bungalow": {
+ "description": "Malý dům s jedním podlažím",
+ "title": "Bungalov"
+ },
+ "detached": {
+ "description": "Dům, který není spojen s jinými domy",
+ "title": "Samostatně stojící dům"
+ },
+ "link-detached": {
+ "description": "Dům, který je spojen s jiným domem garáží nebo jinou neobytnou částí",
+ "title": "Propojený dům"
+ },
+ "maisonette": {
+ "description": "Rezidentní bydlení rozdělené na dvě podlaží s vlastními vnějšími vchody namísto společného vchodu",
+ "title": "Mezonet"
+ },
+ "semi-detached": {
+ "description": "Dům, který je na jedné straně připojen k druhému domu",
+ "title": "Polovina dvojdomku"
+ },
+ "terrace": {
+ "description": "Řada domů, které jsou navzájem propojeny do jedné linie (preferuje se mapování každého domu jako samostatné oblasti)",
+ "title": "Řad domů v řadové zástavbě"
+ },
+ "terraced": {
+ "description": "Samostatný dům v řadové zástavbě.",
+ "title": "Jednotlivý řadový dům"
+ }
+ }
+ },
"iata": {
"label": "IATA Kód letiště "
},
@@ -1661,18 +2259,18 @@
"terms": "nelegální,vyšlapaná,vyježděná,neoficiální"
},
"information": {
- "label": "Typ"
+ "label": "Druh"
},
"inscription": {
"label": "Nápis",
"terms": "text,písmo,deska,pamětní deska"
},
"intermittent": {
- "label": "Vysychající",
- "terms": "stálý,přítok,sezónní,občasný,nestálý,strouha,potok,tok,dešťové"
+ "label": "Občasný",
+ "terms": "stálý,přítok,sezónní,vysychající,nestálý,strouha,potok,tok,dešťové"
},
"internet_access": {
- "label": "Veřejný přístup k internetu",
+ "label": "Přístup k internetu",
"options": {
"no": "Ne",
"terminal": "Počítače",
@@ -1683,13 +2281,13 @@
"terms": "wifi,wlan"
},
"internet_access/fee": {
- "label": "Připojení k internetu",
+ "label": "Poplatek za přístup k internetu",
"options": {
"customers": "Pouze pro zákazníky",
"no": "Zdarma",
"yes": "Placené"
},
- "terms": "poplatek za wifi"
+ "terms": "internetový poplatek,poplatez za wifi,poplatek za internet,cena,částka,zpoplatněno,zpoplatněný internet,přístup k internetu zpoplatněn"
},
"internet_access/ssid": {
"label": "Název WiFi sítě",
@@ -1699,6 +2297,14 @@
"label": "Interval",
"terms": "frekvence,čas,odjezdy,jízdní řád,příjezdy,jak často,pravidelnost"
},
+ "irrigation_pivot": {
+ "label": "Zavlažování s centrálním výkyvem",
+ "options": {
+ "pivot": "Ano",
+ "undefined": "Ne"
+ },
+ "terms": "zavlažovací stroj se středovým otočným postřikovačem,zavlažovací kruh,kruhové zavlažování"
+ },
"junction/ref_oneway": {
"label": "Číslo křižovatky",
"terms": "číslo křížení,označení,identifikace,číslo sjezdu,sjezd,nájezd,název"
@@ -1713,17 +2319,52 @@
"terms": "křížit,odbočka,odbočit,spojit,spojení,křížení,kruhový objezd,mimoúrovňová,úrovňová"
},
"kerb": {
- "label": "Obrubník"
+ "label": "Obrubník",
+ "options": {
+ "flush": {
+ "description": "Kleslý obrubník, který je na úrovni okolního prostoru.",
+ "title": "Zarovnaný"
+ },
+ "lowered": {
+ "description": "Kleslý obrubník, který mohou používat vozíčkáři, ne vyšší než několik centimetrů.",
+ "title": "Snížený"
+ },
+ "no": {
+ "description": "Na této lokalitě není žádný obrubník.",
+ "title": "Ne"
+ },
+ "raised": {
+ "description": "Zvýšený obrubník, který nemohou snadno používat vozíčkáři, vyšší než několik centimetrů.",
+ "title": "Zvýšený"
+ },
+ "rolled": {
+ "description": "Zvýšený obrubník se zaoblenou hranou, který usnadňuje použití pro auta nebo jízdní kola, ale ne pro invalidní vozíky.",
+ "title": "Zakulacený"
+ },
+ "yes": {
+ "description": "Na tomto místě je nějaký druh obrubníku, o kterém není známo, zda je zvýšený, snížený, zarovnaný atd.",
+ "title": "Ano"
+ }
+ },
+ "terms": "okraj chodníku,okraj silnice"
},
"kerb/height": {
"label": "Výška"
},
+ "kerb/kerb_barrier": {
+ "label": "Druh"
+ },
"kitchen": {
"label": "Kuchyně",
"terms": "kuchyň,kuchyńská,kuchyňská linka,místo na vaření,vaření"
},
"kneipp_water_cure_multi": {
- "label": "Typy nádrží"
+ "label": "Druhy nádrží",
+ "options": {
+ "arm": "Lázeň pro paže",
+ "face": "Lázeň pro obličej",
+ "foot": "Lázeň pro nohy"
+ }
},
"label": {
"label": "Štítek"
@@ -1732,10 +2373,10 @@
"label": "Způsob připevnění"
},
"lamp_type": {
- "label": "Typ"
+ "label": "Druh"
},
"landuse": {
- "label": "Typ"
+ "label": "Druh"
},
"lane_markings": {
"label": "Značení jízdních pruhů",
@@ -1754,6 +2395,9 @@
"placeholder": "0",
"terms": "vrstvy,překryvy"
},
+ "layer_1": {
+ "placeholder": "0"
+ },
"leaf_cycle": {
"label": "Opadavost listí",
"options": {
@@ -1766,21 +2410,21 @@
"terms": "list,cyklus,růst,opad"
},
"leaf_type": {
- "label": "Typ listí",
+ "label": "Druh listí",
"options": {
"broadleaved": "Listnaté",
"leafless": "Bezlisté",
"mixed": "Smíšené",
"needleleaved": "Jehličnaté"
},
- "terms": "typ,listí,jehličnaté,listnaté"
+ "terms": "typ listí,druh listí"
},
"leaf_type_singular": {
- "label": "Typ listí",
- "terms": "typ,listí,jehličnaté,listnaté"
+ "label": "Druh listí",
+ "terms": "typ listí,druh listí"
},
"leisure": {
- "label": "Typ"
+ "label": "Druh"
},
"length": {
"label": "Délka (v metrech)",
@@ -1795,14 +2439,28 @@
"terms": "patra,pater,výška,úroveň,budovy,poschodí,podlaží,úrovně"
},
"liaison": {
- "label": "Typ"
+ "label": "Druh"
},
"license_classes": {
"label": "Třídy řidičského průkazu",
"terms": "jízda,průkaz,dopis,řízení,škola,učení,vzdělávání"
},
"lifeguard": {
- "label": "Záchranný kruh"
+ "label": "Druh",
+ "options": {
+ "base": "Základna plavčíků",
+ "tower": "Věž plavčíka"
+ }
+ },
+ "lifeguard_check": {
+ "label": "Plavčík"
+ },
+ "lift_gate/type": {
+ "label": "Druh",
+ "options": {
+ "double": "Protichůdné tyče",
+ "single": "Samostatná tyč"
+ }
},
"line_attachment": {
"label": "Způsob připojení",
@@ -1816,6 +2474,10 @@
"label": "Osvětlení",
"terms": "lampa,osvětlení"
},
+ "loc_name": {
+ "label": "Místní název",
+ "terms": "hovorový název,obecný název,neformální název,přezdívka"
+ },
"location": {
"label": "Umístění",
"terms": "umístění,lokace,místo,kde,adresa,bod"
@@ -1838,30 +2500,90 @@
"label": "Zamčeno"
},
"man_made": {
- "label": "Typ"
+ "label": "Druh"
},
"manhole": {
- "label": "Typ"
+ "label": "Druh"
},
"manufacturer": {
"label": "Výrobce",
"terms": "autor,producent"
},
+ "manufacturer/wikidata": {
+ "label": "Wikidata výrobce",
+ "terms": "wikidata zhotovitele,zhotovitel,výrobce,wiki data výrobce,wiki"
+ },
"map_size": {
"label": "Pokrytí"
},
"map_type": {
- "label": "Typ"
+ "label": "Druh",
+ "options": {
+ "scheme": "Schematická mapa",
+ "street": "Silniční mapa",
+ "topo": "Topografická mapa",
+ "toposcope": "Toposkop"
+ }
},
"mapillary": {
"label": "ID obrázku z Mapillary",
"terms": "id,identifikace,číslo obrázku,kód,označení,značka,mapillary,obrázek,fotografie,fotka,zdroj"
},
"marker": {
- "label": "Typ"
+ "label": "Druh",
+ "options": {
+ "aerial": {
+ "description": "Navržené tak, aby bylo viditelné ze vzduchu.",
+ "title": "Letecká"
+ },
+ "ground": {
+ "description": "Plochý označník položený na zemi.",
+ "title": "Země"
+ },
+ "pedestal": {
+ "description": "Vyvýšená značka na malém podstavci.",
+ "title": "Podstavec"
+ },
+ "plate": {
+ "description": "Plochá značka namontovaná přímo na stěnu nebo podobně.",
+ "title": "Deska"
+ },
+ "post": {
+ "description": "Vyvýšená značka umístěná na malém sloupku nebo stožáru.",
+ "title": "Pošta"
+ },
+ "stone": {
+ "description": "Značky vyryté nebo namalované přímo na kameni.",
+ "title": "Kámen"
+ }
+ }
},
"material": {
"label": "Materiál",
+ "options": {
+ "adobe": "Vepřovice",
+ "aluminium": "Hliník",
+ "brass": "Mosaz",
+ "brick": "Cihla",
+ "bronze": "Bronz",
+ "concrete": "Beton",
+ "dry_stone": "Suchý kámen",
+ "glass": "Sklo",
+ "granite": "Žula",
+ "iron": "Železo",
+ "limestone": "Vápenec",
+ "marble": "Mramor",
+ "metal": "Kov",
+ "plastic": "Plast",
+ "reinforced_concrete": "Železobeton",
+ "rock": "Skála",
+ "sand": "Písek",
+ "sandstone": "Pískovec",
+ "soil": "Půda, země",
+ "steel": "Ocel",
+ "stone": "Kámen",
+ "wood": "Dřevo"
+ },
"terms": "hmota,struktura"
},
"mattress": {
@@ -1872,9 +2594,17 @@
"label": "Maximální věk",
"terms": "max věk,stáří,omezení věku,nejstarší,roků"
},
+ "maxaxleload_bridge": {
+ "label": "Limit hmotnosti nápravy",
+ "terms": "maximální zatížení,náprava,limit,zatížení nápravy"
+ },
"maxheight": {
- "label": "Maximální výška",
- "terms": "max výška,povolená výška,strop,podjezd,omezení výšky"
+ "label": "Limit výšky",
+ "terms": "odbavení"
+ },
+ "maxlength": {
+ "label": "Limit délky",
+ "terms": "délka,maximální délka,limit"
},
"maxspeed": {
"label": "Povolená rychlost",
@@ -1892,26 +2622,57 @@
"terms": "omezení rychlosti pro kamiony,rychlostní limit pro kamiony,rychlost pro kamiony,povolená rychlost pro kamiony,nejvyšší pro kamiony,omezení rychlosti pro nákladní auta,rychlostní limit pro nákladní auta,rychlost pro nákladní auta,povolená rychlost pro nákladní auta,nejvyšší pro nákladní auta"
},
"maxstay": {
- "label": "Povoleno zůstat max.",
- "terms": "maximální doba,nejdelší doba,limit,stání,hodiny,omezení,krátkodobé,dlouhodobé"
+ "label": "Časový limit",
+ "terms": "čas,maximální doba,lhůta,limit"
},
"maxweight": {
- "label": "Maximální hmotnost",
- "terms": "max hmotnost,povolená hmotnost,limit,váha,povolení,omezení,hmotnost,nosnost,zátěž"
+ "label": "Limit hmotnosti",
+ "terms": "maximální hmotnost,limit,hmotnost"
},
"maxwidth": {
- "label": "Maximální šířka",
- "terms": "max šířka,povolená šířka,limit,šířka,povolení,omezení"
+ "label": "Limit šířky",
+ "terms": "maximální šířka,limit,šířka"
+ },
+ "maxwidth/physical": {
+ "label": "Limit šířky"
},
"memorial": {
- "label": "Typ"
+ "label": "Druh",
+ "options": {
+ "blue_plaque": "Modrá plaketa",
+ "bust": "Busta",
+ "cross": "Pamětní kříž",
+ "ghost_bike": "Kolo duchů",
+ "obelisk": "Obelisk",
+ "plaque": "Pamětní deska",
+ "sculpture": "Skulptura",
+ "statue": "Socha (osoba nebo zvíře)",
+ "stele": "Stéla",
+ "stolperstein": "Stolperstein",
+ "stone": "Kámen",
+ "war_memorial": "Památník na válku"
+ }
+ },
+ "memorial/addr": {
+ "label": "Adresa nejbližší budovy"
+ },
+ "message": {
+ "label": "Zpráva",
+ "terms": "textovka,sms,smska,psaní,textová zpráva,dopis"
},
"microbrewery": {
"label": "Minipivovar",
"terms": "mini pivovar,mini-pivovar,malý pivovar,drobný pivovar,místní pivovar,vaření piva,pivo,lokální"
},
"military_service": {
- "label": "Vojenská služba"
+ "label": "Vojenská služba",
+ "options": {
+ "air_force": "Letectvo",
+ "army": "Armáda",
+ "coast_guard": "Pobřežní hlídka",
+ "marines": "Námořní pěchota",
+ "navy": "Válečné loďstvo"
+ }
},
"mimics": {
"label": "Kamuflovaný vysílač",
@@ -1929,13 +2690,32 @@
"placeholder": "20, 30, 40...",
"terms": "minimální rychlost,povolená rychlost,rychle,nejnižší,nejpomaleji,nejpomalejší,omezení rychlosti"
},
+ "mobile": {
+ "label": "Mobilní telefon",
+ "placeholder": "+420 123 456 789",
+ "terms": "telefonní číslo"
+ },
"model": {
"label": "Model",
"terms": "typ,druh"
},
+ "model/wikidata": {
+ "label": "Wikidata modelu",
+ "terms": "wikidata typu,model,wiki data typu,wiki data modelu,wiki"
+ },
"monitoring_multi": {
"label": "Monitorování"
},
+ "mooring": {
+ "label": "Kotviště",
+ "options": {
+ "commercial": "Komerční",
+ "guest": "Hosté",
+ "no": "Ne",
+ "private": "Soukromé",
+ "yes": "Ano"
+ }
+ },
"mtb/scale": {
"label": "Klasifikace obtížnosti pro MTB",
"options": {
@@ -1976,13 +2756,17 @@
"terms": "horská kola,hory,kolo,cyklista,cyklistika,obtížnost,jízda na kole,náročnost,do kopce,jízda nahoru,jízda do kopce,proti svahu"
},
"museum": {
- "label": "Typ"
+ "label": "Druh"
},
"name": {
"label": "Název",
"placeholder": "Název prvku (existuje-li)",
"terms": "štítek,jméno"
},
+ "nat_name": {
+ "label": "Národní název",
+ "terms": "národní jméno"
+ },
"natural": {
"label": "Přírodní objekt"
},
@@ -1991,7 +2775,7 @@
"terms": "síťový,soubor,propojení,trasy,cesty"
},
"network/type": {
- "label": "Typ sítě"
+ "label": "Druh sítě"
},
"network_bicycle": {
"label": "Třída sítě",
@@ -2028,14 +2812,79 @@
},
"not/name": {
"label": "Nesprávná jména",
- "terms": "častá chybná jména,špatná jména"
+ "terms": "často chybná jména,špatná jména"
},
"note": {
"label": "Poznámka",
"terms": "komentář"
},
+ "nudism": {
+ "label": "Nudismus",
+ "options": {
+ "customary": "Obvyklý",
+ "designated": "Vyhrazen",
+ "no": "Zakázán",
+ "obligatory": "Povinný",
+ "permissive": "Do odvolání",
+ "yes": "Povolen"
+ },
+ "terms": "naturismus,naturista,nudapláž,nudista"
+ },
"office": {
- "label": "Typ"
+ "label": "Druh",
+ "options": {
+ "accountant": "Účetnictví",
+ "adoption_agency": "Adopční agentura",
+ "advertising_agency": "Reklamní agentura",
+ "architect": "Kancelář architekta",
+ "association": "Kancelář neziskové organizace",
+ "charity": "Kancelář charity",
+ "company": "Kancelář soukromé společnosti",
+ "construction_company": "Kancelář stavební služby",
+ "consulting": "Poradenská kancelář",
+ "courier": "Kancelář kurýra",
+ "coworking": "Místo pro spolupráci",
+ "diplomatic": "Diplomatická kancelář",
+ "educational_institution": "Vzdělávací instituce",
+ "employment_agency": "Úřad práce / Pracovní agentura",
+ "energy_supplier": "Kancelář dodavatele elektřiny",
+ "engineer": "Inženýrská kancelář",
+ "estate_agent": "Realitní kancelář",
+ "financial": "Finanční úřad",
+ "financial_advisor": "Finanční poradce",
+ "forestry": "Kancelář lesní správy",
+ "foundation": "Kancelář nadace",
+ "government": "Státní úřad",
+ "graphic_design": "Kancelář grafického designu",
+ "guide": "Kancelář turistického průvodce",
+ "insurance": "Pojišťovna",
+ "it": "Kancelář informačních technologií",
+ "lawyer": "Právní kancelář",
+ "logistics": "Logistická společnost",
+ "moving_company": "Kancelář stěhovací služby",
+ "newspaper": "Novinářská redakce",
+ "ngo": "Nezisková organizace",
+ "notary": "Kancelář notáře",
+ "physician": "Praktický lékař",
+ "political_party": "Kancelář politické strany",
+ "private_investigator": "Soukromá detektivní kancelář",
+ "property_management": "Správa nemovitostí",
+ "quango": "Kancelář kvaziautonomní nevládní organizace",
+ "religion": "Náboženská kancelář",
+ "research": "Kancelář výzkumu a vývoje",
+ "security": "Kancelář hlídače",
+ "surveyor": "Zeměměřický úřad",
+ "tax_advisor": "Kancelář daňového poradce",
+ "telecommunication": "Telekomunikační společnost",
+ "therapist": "Terapeutická kancelář",
+ "travel_agent": "Cestovní kancelář",
+ "union": "Odborová organizace zaměstnanců",
+ "water_utility": "Vodohospodářská kancelář"
+ }
+ },
+ "official_name": {
+ "label": "Oficiální název",
+ "terms": "formální název,plný název,právní název"
},
"oneway": {
"label": "Jednosměrka",
@@ -2065,6 +2914,9 @@
"label": "Otevřený oheň je povolený",
"terms": "ohně povoleny,povolení otevřených ohňů,otevřený oheň povolen,táborák,ohniště,opékání,večeře"
},
+ "opening": {
+ "label": "Šířka otvoru (metry)"
+ },
"opening_date": {
"label": "Očekávané datum otevření",
"placeholder": "RRRR-MM-DD"
@@ -2074,16 +2926,17 @@
"placeholder": "Není známo",
"terms": "hodiny,otevírací doba,doba,úřední doba,v provozu,otevřeno,zavřeno,během"
},
- "opening_hours/covid19": {
- "label": "Otevírací doba během pandemie COVID-19",
- "terms": "koronavirus,lockdown,otevírací hodiny,sars‑cov‑2"
+ "opening_hours/drive_through": {
+ "label": "Otevírací hodiny Drive-throughu",
+ "placeholder": "Stejně jako běžné pracovní hodiny",
+ "terms": "otevírací doba drive-thru,otevírací hodiny drive-thru,drive-through,drive-thru,obsluha do auta,průjezd"
},
"operator": {
"label": "Provozovatel",
"terms": "operátor,majitel,správce,správa,provozní"
},
"operator/type": {
- "label": "Typ provozovatele"
+ "label": "Druh provozovatele"
},
"organic": {
"label": "Bioprodukty",
@@ -2094,10 +2947,20 @@
},
"terms": "přírodní,bio"
},
+ "orientation/orientation_parking": {
+ "label": "Orientace"
+ },
"outdoor_seating": {
"label": "Venkovní sezení",
"terms": "lavičky,zahrádka,posezení,stolky,stolečky,stoly,venku,letní,slunečník,terasa"
},
+ "overlap": {
+ "label": "Šířka překrytí (metry)"
+ },
+ "panoramax": {
+ "label": "Panoramax Image ID",
+ "terms": "panoramax image id,id snímku panoramax"
+ },
"par": {
"label": "Par",
"placeholder": "3, 4, 5..."
@@ -2118,33 +2981,98 @@
"terms": "p+r,p a r,zaparkuj a jeď,mhd,přestup,dojíždějící,kapacitní,odstavné,hromadná doprava,na kraji města,p + r,parkandride,p/r,parkuj a jeď,městská,metro,tram,bus"
},
"parking": {
- "label": "Typ",
+ "label": "Druh",
"options": {
- "carports": "Přístřešek",
- "garage_boxes": "Garáž",
- "lane": "Pruh na straně silnice",
- "layby": "Volební účast / Odstávka",
- "multi-storey": "Víceúrovňové",
- "rooftop": "Na střeše",
- "sheds": "Lehký přístřešek",
- "street_side": "Podél ulice",
- "surface": "Povrchové",
- "underground": "Podzemní"
+ "carports": {
+ "description": "Struktura používaná k poskytování omezené ochrany vozidlům, obvykle bez stěn.",
+ "title": "Přístřešek"
+ },
+ "garage_boxes": {
+ "description": "Soukromá garáž s více samostatnými boxy pro každý vůz.",
+ "title": "Garáž"
+ },
+ "half_on_kerb": {
+ "description": "Parkování částečně na chodníku.",
+ "title": "Polovinou na obrubníku"
+ },
+ "lane": {
+ "description": "Parkování ve vozovce (které lze snadno předělat na jízdní pruh).",
+ "title": "Cestní pruh"
+ },
+ "layby": {
+ "description": "Parkování na odpočívadle u silnice.",
+ "title": "Malá odpočívka při cestě (typ layby)"
+ },
+ "multi-storey": {
+ "description": "Dvě nebo více úrovní parkovacích ploch v konstrukci budovy.",
+ "title": "Vícepatrové"
+ },
+ "on_kerb": {
+ "description": "Parkování na chodníku.",
+ "title": "Na obrubníku"
+ },
+ "rooftop": {
+ "description": "Jedna úroveň parkovací plochy na vrcholu budovy.",
+ "title": "Na střeše"
+ },
+ "sheds": {
+ "description": "Soukromé hangáry pro vozidla.",
+ "title": "Soukromý přístřešek"
+ },
+ "shoulder": {
+ "description": "Parkování na krajnici.",
+ "title": "Na krajnici"
+ },
+ "street_side": {
+ "description": "Parkování přímo vedle vozovky (ale ne na ní).",
+ "title": "Vedle vozovky"
+ },
+ "surface": {
+ "description": "Jedna úroveň parkování na pozemku.",
+ "title": "Povrch"
+ },
+ "underground": {
+ "description": "Podzemní parkoviště.",
+ "title": "Podzemní"
+ }
}
},
- "parking/orientation": {
- "label": "Orientace",
+ "parking/side/orientation": {
+ "label": "Orientace při parkování",
"options": {
- "diagonal": "Šikmo k ulici",
+ "diagonal": "Šikmo k ulici (~45°)",
"parallel": "Rovnoběžně s ulicí",
- "perpendicular": "Kolmo k ulici"
+ "perpendicular": "Kolmo k ulici (~90°)"
+ },
+ "terms": "směr parkování,orientace,parkovací směr,parkovací orientace,parkování",
+ "types": {
+ "parking:left:orientation": "Po levé straně",
+ "parking:right:orientation": "Po pravé straně"
+ }
+ },
+ "parking/side/parking": {
+ "label": "Parkoviště",
+ "options": {
+ "half_on_kerb": "Polovinou na obrubníku",
+ "lane": "Cestní pruh",
+ "no": "Ne",
+ "on_kerb": "Na obrubníku",
+ "separate": "Parkování zmapováno samostatně",
+ "shoulder": "Na krajnici",
+ "street_side": "Vedle vozovky",
+ "yes": "Ano (nespecifikováno)"
+ },
+ "terms": "parkování,zaparkovat,parkovací,parkovat,stání aut,zastavit auto",
+ "types": {
+ "parking:left": "Po levé straně",
+ "parking:right": "Po pravé straně"
}
},
"parking_entrance": {
- "label": "Typ"
+ "label": "Druh"
},
"parking_space": {
- "label": "Typ"
+ "label": "Druh"
},
"payment_multi": {
"label": "Platební možnosti",
@@ -2198,11 +3126,15 @@
},
"phone": {
"label": "Telefon",
- "placeholder": "+420 123 456 789",
+ "placeholder": "+000 0000 0000 0000",
"terms": "telefonní číslo"
},
+ "picnic_table": {
+ "label": "Stůl pro piknik",
+ "terms": "venkovní stůl,lavička"
+ },
"pipeline": {
- "label": "Typ"
+ "label": "Druh"
},
"piste/difficulty": {
"label": "Obtížnost",
@@ -2285,7 +3217,7 @@
}
},
"piste/type": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"connection": "Spojení",
"downhill": "Sjezd",
@@ -2293,6 +3225,7 @@
"ice_skate": "Bruslení na ledu",
"nordic": "Běžky",
"playground": "Dětský ski park",
+ "ski_jump": "Skok na lyžích",
"skitour": "Skialpinismus",
"sled": "Sportovní saně",
"sleigh": "Tažené saně",
@@ -2300,7 +3233,7 @@
}
},
"place": {
- "label": "Typ"
+ "label": "Druh"
},
"plant": {
"label": "Elektrárna"
@@ -2329,10 +3262,98 @@
"label": "Zdroj energie"
},
"playground": {
- "label": "Typ"
+ "label": "Druh",
+ "options": {
+ "activitypanel": "Herní panel",
+ "aerialrotator": "Závěsný kolotoč",
+ "archimedes_screw": "Archimédův šroub",
+ "baby_swing": "Dětská houpačka",
+ "balance": "Balanční zařízení (nespecifikováno)",
+ "balancebeam": "Kladina",
+ "ball_pool": "Suchý bazén",
+ "bannister_bars": "Šikmá bradla",
+ "basketrotator": "Otáčecí koš",
+ "basketswing": "Houpačka hnízdo",
+ "belt_bridge": "Pásový most",
+ "blackboard": "Školní tabule",
+ "bridge": "Mostek",
+ "chute": "Skluz (na písek)",
+ "climbing": "Zařízení na lezení (nespecifikováno)",
+ "climbing_pole": "Tyč na šplhání",
+ "climbing_slope": "Lezecká rampa",
+ "climbingframe": "Prolézačka",
+ "climbingwall": "Lezecká stěna",
+ "cushion": "Skákací polštář",
+ "dome": "Kupole",
+ "excavator": "Bagr",
+ "exercise": "Cvičební zařízení",
+ "funnel_ball": "Funnel ball",
+ "hammock": "Hamaka",
+ "hamster_wheel": "Křeččí kolo",
+ "hopscotch": "Skákací panák",
+ "horizontal_bar": "Hrazda",
+ "ladder": "Žebřík",
+ "map": "Mapa",
+ "marble_run": "Kuličková dráha",
+ "maze": "Bludiště",
+ "monkey_bars": "Stropní žebřiny (ručkovadla)",
+ "mound": "Umělý kopec",
+ "musical_instrument": "Hudební nástroj",
+ "parallel_bars": "Bradla",
+ "platform": "Plošina",
+ "playhouse": "Dětský domek",
+ "pump": "Pumpa",
+ "ride_on": "Pevné šlapací zařízení",
+ "rope_swing": "Lanová houpačka",
+ "rope_traverse": "Přechod po laně",
+ "rotator": "Rotační zařízení (nespecifikováno)",
+ "roundabout": "Plošinový kolotoč",
+ "sand": "Pískoviště (nespecifikováno)",
+ "sand_pulley": "Výtah na písek",
+ "sand_seesaw": "Páková houpačka na písku",
+ "sand_wheel": "Koleso na písek",
+ "sandpit": "Pískoviště",
+ "seat": "Sedadlo",
+ "seesaw": "Vahadlová houpačka",
+ "sieve": "Síto",
+ "sledding": "Kopec na sáňkování",
+ "slide": "Skluzavka",
+ "speaking_tube": "Trubkový telefon",
+ "spinner": "Kolotoč na stání",
+ "spinner_bowl": "Kolotoč tvaru mísy",
+ "spinning_circle": "Kolotoč tvaru prstence",
+ "spinning_disc": "Kolotoč tvaru disku",
+ "splash_pad": "Brouzdaliště",
+ "spring_board": "Deska na pružinách",
+ "springy": "Pružinová houpačka",
+ "stepping_post": "Pevné chůdy",
+ "stepping_stone": "Nášlapný kámen (nášlapník)",
+ "steps": "Schody",
+ "structure": "Sestava dětského hřiště",
+ "swing": "Houpačka",
+ "table": "Stůl",
+ "teenshelter": "Přístřešek",
+ "tire_swing": "Houpací pneumatika",
+ "track": "Dráha",
+ "trampoline": "Trampolína",
+ "tunnel_tube": "Tunel",
+ "water": "Vodní prvek (nespecifikováno)",
+ "water_barrier": "Stavidlo",
+ "water_basin": "Vodní nádrž",
+ "water_cannon": "Vodní dělo",
+ "water_channel": "Vodní kanál",
+ "water_seesaw": "Vahadlová houpačka na vodu",
+ "water_sprayer": "Mlžítko",
+ "water_stream": "Potok",
+ "water_wheel": "Vodní kolo",
+ "wobble_bridge": "Vratký mostek",
+ "youth_bench": "Lavička pro mládež",
+ "zipwire": "Lanovka"
+ }
},
"playground/theme": {
- "label": "Motiv"
+ "label": "Motiv",
+ "terms": "vzhled,téma,pozadí"
},
"plots": {
"label": "Počet zahrádek",
@@ -2356,8 +3377,17 @@
"post": {
"label": "Poštovní adresa"
},
+ "post_box/type": {
+ "label": "Druh",
+ "options": {
+ "lamp": "Připojena ke sloupu",
+ "pillar": "Volně stojící schránka",
+ "wall": "Namontovaná na zdi"
+ },
+ "terms": "druh,typ"
+ },
"power": {
- "label": "Typ"
+ "label": "Druh"
},
"power_supply": {
"label": "Elektrická přípojka",
@@ -2374,7 +3404,7 @@
"terms": "produkt,produkty,výstup,produkce,zboží,předměty"
},
"public_bookcase/type": {
- "label": "Typ"
+ "label": "Druh"
},
"pump": {
"label": "Pumpa",
@@ -2386,7 +3416,7 @@
}
},
"railway": {
- "label": "Typ"
+ "label": "Druh"
},
"railway/position": {
"label": "Pozice milníku",
@@ -2400,9 +3430,28 @@
"forward": "Dopředu"
}
},
+ "railway/switch": {
+ "label": "Druh výhybky",
+ "options": {
+ "abt": "Abtova výhybka",
+ "default": "Normální výhybka",
+ "double_slip": "Celá křižovatková výhybka",
+ "single_slip": "Poloviční křižovatková výhybka",
+ "three_way": "Dvojitá výhybka",
+ "wye": "Oboustranná výhybka"
+ }
+ },
+ "railway/track_ref": {
+ "label": "Číslo koleje"
+ },
"ramp": {
"label": "Rampa",
- "terms": "cyklistické schodiště,schodišťová rampa,nakloněná,rampa pro kola"
+ "options": {
+ "no": "Ne",
+ "separate": "Mapována odděleně",
+ "yes": "Ano"
+ },
+ "terms": "cyklistické schodiště,schodišťová rampa,nakloněná,rampa pro kola,zabudovaná rampa,vestavěná rampa"
},
"rating": {
"label": "Jmenovitý výkon"
@@ -2427,15 +3476,15 @@
"glass_bottles": "Skleněné lahve a sklenice",
"green_waste": "Zelený odpad",
"paper": "Papír",
- "plastic": "Umělá hmota",
+ "plastic": "Plast",
"plastic_bottles": "Plastové lahve",
"plastic_packaging": "Plastové obaly",
- "scrap_metal": "Šrot",
+ "scrap_metal": "Kovový šrot",
"shoes": "Boty"
}
},
"recycling_type": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"centre": "Centrum",
"container": "Kontejner"
@@ -2450,8 +3499,17 @@
"label": "Číslo SIRET",
"terms": "francouzské identifikační číslo společnosti,siret"
},
+ "ref/edubase-GB": {
+ "label": "odkaz na Ministerstvo školství ",
+ "terms": "odkaz na školštví,odkaz školy"
+ },
"ref/isil": {
- "label": "Kód ISIL"
+ "label": "Kód ISIL",
+ "terms": "mezinárodní standardní identifikátor pro knihovny,kód knihovny,identifikátor knihovny,isil knihovny"
+ },
+ "ref/linz/place_id-NZ": {
+ "label": "ID místa NZGB",
+ "terms": "nz,linz,informace o zemi nový zéland,toitū te whenua,nzgb,nový zéland zeměpisná tabule,ngā pou taunaha o aotearoa"
},
"ref/vatin": {
"label": "Daňové identifikační číslo",
@@ -2472,7 +3530,11 @@
"label": "Číslo křižovatky"
},
"ref_platform": {
- "label": "Číslo nástupiště"
+ "label": "Reference nástupiště"
+ },
+ "ref_rail": {
+ "label": "Číslo linky",
+ "terms": "číslo dráhy,číslo tratě,číslo železnice,ref linky,ref dráhy,ref tratě,ref železnice,číslo,ref"
},
"ref_road_number": {
"label": "Číslo silnice",
@@ -2499,8 +3561,12 @@
"label": "Jméno pojezdové dráhy",
"placeholder": "např. A5"
},
+ "reg_name": {
+ "label": "Regionální název",
+ "terms": "regionální název,místní název"
+ },
"relation": {
- "label": "Typ"
+ "label": "Druh"
},
"religion": {
"label": "Náboženství",
@@ -2541,26 +3607,99 @@
"terms": "objednání,objednávka,rezervování,stůl,přijímá rezervace,zamluvit,zamluvení"
},
"residential": {
- "label": "Typ"
+ "label": "Druh"
},
"resort": {
- "label": "Typ"
+ "label": "Druh"
},
"resource": {
- "label": "Zdroje"
+ "label": "Zdroje",
+ "options": {
+ "aggregate": "Kamenivo",
+ "clay": "Jíl/Antuka",
+ "coal": "Uhlí",
+ "gold": "Zlato",
+ "gravel": "Štěrk",
+ "iron_ore": "Železná ruda",
+ "limestone": "Vápenec",
+ "peat": "Rašelina",
+ "sand": "Písek"
+ }
},
"restriction": {
- "label": "Typ"
+ "label": "Druh"
},
"restrictions": {
"label": "Omezení odbočování"
},
+ "roller_coaster/track": {
+ "label": "Druh",
+ "options": {
+ "brake_run": {
+ "description": "Část tratě určená k zpomalení nebo zastavení vozíků",
+ "title": "Brzdný úsek"
+ },
+ "launch_straight": {
+ "description": "Část tratě určená k urychlení vozíků pomocí vnějšího zařízení",
+ "title": "Rozjezdový úsek"
+ },
+ "lift_hill": {
+ "description": "Svažující se dráha určená ke zrychlení vozíků potenciální energii",
+ "title": "Stoupání"
+ },
+ "maintenance": {
+ "description": "Záložní koleje určené pro rezervní vozíky nebo provádění údržby",
+ "title": "Údržba"
+ },
+ "moving": {
+ "description": "Jakýkoli druh pohyblivého kolejového systému, jako jsou výhybkové koleje",
+ "title": "Pohyblivé"
+ },
+ "station": {
+ "description": "Část tratě, kde vozíky zastavují, aby nastoupili a vystoupili cestující.",
+ "title": "Stanice"
+ },
+ "waiting": {
+ "description": "Trať používaná ke zdržení vozíků, pokud je další bloková sekce obsazena",
+ "title": "Čekání"
+ }
+ }
+ },
"roof/colour": {
"label": "Barva střechy",
"terms": "barva,krytina,tašky,plechová střecha,šindele,došky,slaměná"
},
+ "roof/height": {
+ "label": "Výška střechy (metry)",
+ "terms": "střešní výška,střecha"
+ },
+ "roof/shape": {
+ "label": "Tvar střechy",
+ "options": {
+ "butterfly": "Motýlková (vkleslá, inverzní sedlová)",
+ "cone": "Kužel",
+ "crosspitched": "Křížová sedlová",
+ "dome": "V kupoli",
+ "flat": "Plochá",
+ "gabled": "Sedlová",
+ "gabled_height_moved": "Sedlová (výškově rozdělená podél hřebene)",
+ "gambrel": "Mansardová (2stranná)",
+ "half-hipped": "Polovalbová",
+ "hipped": "Valbová",
+ "hipped-and-gabled": "Valbovo-štítová (japonská)",
+ "mansard": "Mansardová",
+ "onion": "Cibulová (báň)",
+ "pyramidal": "Stanová",
+ "round": "Kupolová",
+ "sawtooth": "Pilová",
+ "side_half-hipped": "Jednostranná polovalbová",
+ "side_hipped": "Jednostranná valbová",
+ "skillion": "Pultová"
+ },
+ "terms": "tvar střechy,střechový tvar,zakrytí,kryt,zastřešení,pokrytí"
+ },
"room": {
- "label": "Typ"
+ "label": "Druh"
},
"rooms": {
"label": "Pokojů"
@@ -2574,26 +3713,41 @@
"terms": "kruhový,uzavřený,smyčkový,okružní"
},
"route": {
- "label": "Typ"
+ "label": "Druh"
},
"route_master": {
- "label": "Typ"
+ "label": "Druh"
+ },
+ "royal_cypher-GB": {
+ "label": "Královská šifra",
+ "options": {
+ "CIIIR": "CIIIR (Karel III.)",
+ "EIIR": "EIIR (Alžběta II.)",
+ "EVIIIR": "EVIIIR (Eduard VIII.)",
+ "EVIIR": "EVIIR (Eduard VII.)",
+ "GR": "GR (Jiří V.)",
+ "GVIR": "GVIR (Jiří VI.)",
+ "VR": "VR (Viktorie)",
+ "no": "Ne",
+ "scottish_crown": "Skotská koruna"
+ }
},
"ruins": {
"label": "Druh"
},
"rwn_ref": {
- "label": "číslo trasy"
+ "label": "Číslo trasy"
},
"sac_scale": {
- "label": "Klasifikace pro pěší",
+ "label": "Klasifikace turistické obtížnosti",
"options": {
"alpine_hiking": "T4: Vysokohorská turistika",
"demanding_alpine_hiking": "T5: Náročná vysokohorská turistika",
"demanding_mountain_hiking": "T3: Náročná horská turistika",
"difficult_alpine_hiking": "T6: Těžká vysokohorská turistika",
"hiking": "T1: Turistika",
- "mountain_hiking": "T2: Horská turistika"
+ "mountain_hiking": "T2: Horská turistika",
+ "strolling": "Procházky"
},
"placeholder": "Horská turistika, vysokohorská turistika...",
"terms": "náročnost,obtížnost,složitost,terén,chůze,hory"
@@ -2690,6 +3844,14 @@
"other": "Ostatní"
}
},
+ "seamark/harbour/category_marina": {
+ "label": "Zázemí přístavu",
+ "options": {
+ "marina": "Ano",
+ "marina_no_facilities": "Ne"
+ },
+ "terms": "přístav,loď,člun,zařízení,domácí"
+ },
"seamark/mooring/category": {
"label": "Kategorie"
},
@@ -2709,8 +3871,8 @@
}
},
"seamark/type": {
- "label": "Mořská bóje",
- "terms": "námořní"
+ "label": "Plavební objekt",
+ "terms": "plavebni objekt,námořni objekt,namorni objekt,vodní objekt,vodni objekt"
},
"seamark/wreck/category": {
"label": "Kategorie"
@@ -2733,13 +3895,23 @@
"terms": "prodává použité,prodej použitého,použitý,z druhé ruky,bazarové,bazar,sekáč,second-hand,není nové,nové,zašlé,staré,antikvariát,veteš"
},
"segregated": {
- "label": "Oddělení chodců od cyklistů"
+ "label": "Oddělení chodců od cyklistů",
+ "terms": "jízdní kolo,kolo,chodník,cyklostezka,cyklotrasa,oddělení,čára"
+ },
+ "self_checkout": {
+ "label": "Samoobslužné placení",
+ "options": {
+ "no": "Ne",
+ "only": "Pouze",
+ "yes": "Ano"
+ },
+ "terms": "samoobslužná pokladna,samoobslužná platba,platba kartou,platba bez pokladní,samoobsluha,automatizovaná pokladna"
},
"self_service": {
"label": "Samoobsluha"
},
"service": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"alley": "Ulička",
"drive-through": "Drive-through",
@@ -2749,14 +3921,14 @@
}
},
"service/bicycle": {
- "label": "Servis jízdních kol",
+ "label": "Služby pro cyklisty",
"terms": "služby pro cyklisty,cyklistické služby,služby jízdních kol,služby pro jízdní kola"
},
"service/vehicle": {
"label": "Služby"
},
"service_rail": {
- "label": "Typ manipulační koleje",
+ "label": "Druh manipulační koleje",
"options": {
"crossover": "Kolejová spojka",
"siding": "Výhybna",
@@ -2766,29 +3938,40 @@
"terms": "druh vlečky,určení,železnice,místní dráha,užití,účel,typ,dráhy,drážní,popis,vedlejší,obslužná"
},
"service_times": {
- "label": "Doba poskytování služeb"
+ "label": "Čas služeb/bohoslužeb:"
},
"shelter": {
"label": "Přístřešek"
},
"shelter_type": {
- "label": "Typ"
+ "label": "Druh"
},
"shoes": {
"label": "Boty"
},
"shop": {
- "label": "Typ"
+ "label": "Druh"
+ },
+ "short_name": {
+ "label": "Krátký název",
+ "terms": "zkratka,akronym,iniciály"
},
"shower": {
"label": "Sprchy",
"terms": "osprchovat,voda,mytí,hygiena,sprchovat se,sprcha"
},
+ "side": {
+ "label": "Strana",
+ "options": {
+ "left": "Vlevo od cyklisty",
+ "right": "Vpravo od cyklisty"
+ }
+ },
"siren/purpose": {
"label": "Účel"
},
"siren/type": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"electronic": "Elektronická",
"other": "Ostatní",
@@ -2796,7 +3979,7 @@
}
},
"site": {
- "label": "Typ"
+ "label": "Druh"
},
"smoking": {
"label": "Kouření",
@@ -2831,21 +4014,43 @@
"terms": "textová zpráva,zpráva,esemeska,mobilní zpráva,text,smska,textově,zprávou,mobilem"
},
"social_facility": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"ambulatory_care": "Ambulantní péče",
"assisted_living": "Asistované bydlení",
"day_care": "Denní péče",
"food_bank": "Potravinová banka",
"group_home": "Skupinové bydlení",
- "nursing_home": "Domov pro seniory",
+ "nursing_home": "Dům s pečovatelskou službou",
"outreach": "Nerezidenční zařízení",
- "shelter": "Přístřešek",
- "workshop": "Dílna"
+ "shelter": "Noclehárna",
+ "workshop": "Chráněná dílna"
}
},
"social_facility_for": {
- "label": "Komu slouží"
+ "label": "Komu slouží",
+ "options": {
+ "abused": "Oběti zneužívání",
+ "child": "Děti",
+ "dementia": "Lidé trpící demencí",
+ "disabled": "Lidé s postižením",
+ "diseased": "Lidé trpící nemocemi",
+ "displaced": "Lidé vysídlení kvůli katastrofě nebo konfliktu",
+ "drug_addicted": "Drogově závislí",
+ "homeless": "Bezdomovci",
+ "juvenile": "Mladistvé",
+ "mental_health": "Lidé s mentálními zdravotními problémy",
+ "migrant": "Migranti",
+ "orphan": "Sirotci",
+ "refugee": "Uprchlíci",
+ "senior": "Starší",
+ "terminally_ill": "Lidé s nevyléčitelnou nemocí",
+ "underprivileged": "Neprivilegovaní lidé",
+ "unemployed": "Lidé bez zaměstnání",
+ "veteran": "Veteráni",
+ "victim": "Oběti zločinu",
+ "woman": "Ženy"
+ }
},
"source": {
"label": "Zdroje",
@@ -2856,12 +4061,14 @@
"osm notes": "OpenStreetMap poznámky",
"streetlevel imagery": "Fotky z úrovně ulice",
"survey": "Průzkum"
- },
- "terms": "odkaz"
+ }
},
"source/population": {
"label": "Zdroj populace"
},
+ "spacing": {
+ "label": "Vzdálenost mezi bariérami (v metrech)"
+ },
"species": {
"label": "Druh",
"placeholder": "Acer platanoides, Quercus robur, …",
@@ -2872,71 +4079,108 @@
"terms": "wikidata,vikidata,data druhu wikipedie,zdroj dat druhu,automatický výpis informací,podrobnosti,automatizace,wiki,id,číslo"
},
"sport": {
- "label": "Sporty"
- },
- "sport_ice": {
- "label": "Sporty",
- "options": {
- "curling": "Curling",
- "ice_hockey": "Lední hokej",
- "ice_skating": "Bruslení na ledu",
- "ice_stock": "Bavorský curling",
- "multi": "Více sportů"
- }
- },
- "sport_pub": {
"label": "Sporty",
"options": {
+ "10pin": "Bowling (10 kuželek)",
+ "9pin": "Kuželky (9 kuželek)",
+ "american_football": "Americký fotbal",
+ "athletics": "Lehká atletika",
+ "badminton": "Badminton",
+ "baseball": "Baseball",
+ "basketball": "Basketbal",
+ "beachvolleyball": "Plážový volejbal",
"billiards": "Kulečník",
+ "bmx": "BMX",
+ "boules": "Koule",
+ "bowls": "Bowls",
+ "canoe": "Kanoistika",
+ "chess": "Šachy",
+ "climbing": "Horolezectví",
+ "cricket": "Kriket",
+ "curling": "Curling",
+ "cycling": "Cyklistika",
"darts": "Šipky",
- "table_soccer": "Stolní fotbal"
- },
- "terms": "sport,sportovní"
- },
- "sport_racing_motor": {
- "label": "Sporty",
- "options": {
- "karting": "Motokáry",
+ "disc_golf": "Disc Golf",
+ "dog_racing": "Psí závody",
+ "equestrian": "Jezdecké sporty",
+ "fitness": "Fitness",
+ "free_flying": "Paragliding / Závěsné létání",
+ "futsal": "Futsal",
+ "gaelic_games": "Gaelské hry",
+ "golf": "Golf",
+ "gymnastics": "Gymnastika",
+ "handball": "Týmová házená",
+ "horse_racing": "Dostihy",
+ "ice_hockey": "Lední hokej",
+ "ice_skating": "Bruslení na ledě",
+ "ice_stock": "Bavorský curling",
+ "karting": "Motokárové závody",
"motocross": "Motokros",
"motor": "Motoristický sport",
- "speedway": "Plochá dráha pro motocykly"
+ "multi": "Nespecifikované jiné sporty",
+ "netball": "Netball",
+ "orienteering": "Orientační běh",
+ "padel": "Padel",
+ "pelota": "Pelota",
+ "rugby_union": "Patnáctkové ragby",
+ "running": "Běh",
+ "scuba_diving": "Potápění",
+ "shooting": "Střelba",
+ "skateboard": "Skateboard",
+ "ski_jumping": "Skoky na lyžích",
+ "skiing": "Lyžování",
+ "soccer": "Fotbal",
+ "softball": "Softball",
+ "speedway": "Motocyklová rychlostní dráha",
+ "swimming": "Plavání",
+ "table_tennis": "Stolní tenis",
+ "tennis": "Tenis",
+ "volleyball": "Volejbal",
+ "yoga": "Jóga"
}
},
- "sport_racing_nonmotor": {
+ "sport/sport_ice": {
+ "label": "Sporty"
+ },
+ "sport/sport_pub": {
"label": "Sporty",
- "options": {
- "bmx": "BMX",
- "cycling": "Cyklistika",
- "dog_racing": "Psí běžecké závody",
- "horse_racing": "Dostihy",
- "running": "Běh"
- }
+ "terms": "sport,sportovní"
+ },
+ "sport/sport_racing_motor": {
+ "label": "Sporty"
+ },
+ "sport/sport_racing_nonmotor": {
+ "label": "Sporty"
},
"stars": {
"label": "Hvězdiček",
"terms": "hodnocení"
},
"start_date": {
- "label": "Datum počátku existence",
+ "label": "Datum vzniku",
"placeholder": "RRRR-MM-DD",
"terms": "počátek"
},
+ "static_caravans": {
+ "label": "Obytné vozy"
+ },
"step_count": {
"label": "Počet schodů",
"terms": "počet schodů,velikost schodiště,schody,výška,délka,délka schodů,kolik schodů,jeden schod"
},
"stile": {
- "label": "Typ"
+ "label": "Druh"
},
"stop": {
- "label": "Typ stopky",
+ "label": "Druh stopky",
"options": {
"all": "Ze všech směrů",
"minor": "Z vedlejších"
}
},
"street_cabinet": {
- "label": "Typ"
+ "label": "Druh",
+ "terms": "pouliční skříň,elektřina,plyn,pouliční osvětlení,semafory,monitorování dopravy,správa věřejné dopravy,správa vody,voda,odpad,poštovní schránka,telefon,kabelová televize"
},
"stroller": {
"label": "Přístup pro kočárky",
@@ -2959,6 +4203,14 @@
"placeholder": "Není známo",
"terms": "stavba,struktura,budova,objekt,hmota,předmět,vytvořeno člověkem"
},
+ "structure_canal": {
+ "label": "Struktura",
+ "options": {
+ "bridge": "Most",
+ "tunnel": "Tunel"
+ },
+ "placeholder": "Neznámý"
+ },
"structure_power": {
"label": "Struktura",
"options": {
@@ -2975,7 +4227,7 @@
"placeholder": "Neznámé"
},
"studio": {
- "label": "Typ"
+ "label": "Druh"
},
"subject": {
"label": "Předmět",
@@ -2986,10 +4238,19 @@
"terms": "wikidata,vikidata,data předmětu wikipedie,zdroj dat předmětu,automatický výpis informací,podrobnosti,automatizace,wiki,id,číslo"
},
"substance": {
- "label": "Látka"
+ "label": "Látka",
+ "options": {
+ "fuel": "Palivo",
+ "gas": "Zemní plyn",
+ "hot_water": "Horká voda",
+ "oil": "Surová ropa",
+ "rainwater": "Dešťová voda",
+ "sewage": "Odpadní voda",
+ "water": "Pitná voda"
+ }
},
"substation": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"compensation": "Kompenzace reaktivní síly",
"converter": "AC/DC konvertor vysokého napětí",
@@ -3003,7 +4264,7 @@
}
},
"substation_pipeline": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"compression": "Kompresní",
"distribution": "Regionální distribuce",
@@ -3017,6 +4278,10 @@
"valve_group": "Ventilová skupina"
}
},
+ "summit/cross": {
+ "label": "Vrcholový kříž",
+ "terms": "vrcholovy kriz,kříž,kriz,summit,kříž na vrcholu,kriz na vrcholu"
+ },
"supervised": {
"label": "Hlídané",
"terms": "střežené,obsazené"
@@ -3030,19 +4295,26 @@
"options": {
"artificial_turf": "Umělý trávník",
"asphalt": "Asfalt",
- "compacted": "Zhutněný",
+ "clay": "Jíl/Antuka",
+ "compacted": "Kompaktní (mlat)",
"concrete": "Beton",
+ "concrete:lanes": "Betonové jízdní pruhy",
+ "concrete:plates": "Betonové panely",
"dirt": "Hlína",
+ "fine_gravel": "Jemný štěrk",
"grass": "Tráva",
+ "grass_paver": "Zatravňovací dlažba",
"gravel": "Štěrk",
"ground": "Země",
"metal": "Kov",
"mud": "Vytrvale zablácená",
"paved": "Zpevněný",
"paving_stones": "Dlažba",
+ "pebblestone": "Oblázková dlažba",
"salt": "Sůl",
"sand": "Písek",
- "sett": "Dlažba",
+ "sett": "Dlažební kostky",
+ "tartan": "Tartan",
"unhewn_cobblestone": "Dlažební kostky (neotesané, nezaoblené)",
"unpaved": "Nezpevněný",
"wood": "Dřevo",
@@ -3051,10 +4323,11 @@
"terms": "povrch,materiál,dlažba,asfalt,dlážděno,hladké,upravené,vyježděné,hladkost,tráva,štěrk,kamení,písek,kryt,vrstva"
},
"surveillance": {
- "label": "Druh zabezpečení"
+ "label": "Druh zabezpečení",
+ "terms": "druh bezpečnosti,druh ostrahy,bezpečnost,ostraha,zabezpečení,druh"
},
"surveillance/type": {
- "label": "Typ zabezpečení",
+ "label": "Druh zabezpečení",
"options": {
"ALPR": "Automatická čtečka SPZ",
"camera": "Kamera",
@@ -3098,12 +4371,22 @@
}
},
"swimming_pool": {
- "label": "Typ"
+ "label": "Druh",
+ "options": {
+ "kids": "Dětský bazének",
+ "lazy_river": "Pomalý tekoucí proud",
+ "personal": "Osobní / dvorek",
+ "plunge": "Potápění",
+ "spa": "Lázně",
+ "swimming": "Bazén s drahami",
+ "wading": "Brodění / Volný čas",
+ "wave_pool": "Bazén s vlnami"
+ }
},
"switch": {
- "label": "Typ",
+ "label": "Druh",
"options": {
- "circuit_breaker": "Zkratovač",
+ "circuit_breaker": "Jistič",
"disconnector": "Odpojovač",
"earthing": "Zemnění",
"mechanical": "Mechanický"
@@ -3124,7 +4407,29 @@
"terms": "okno,vokno,s sebou,do ruky,ven,na cestu,výdej,výdejní okno,zabalit,ssebou,sebou"
},
"target": {
- "label": "Cíl"
+ "label": "Cílová země"
+ },
+ "taxi_vehicle": {
+ "label": "Druh vozidla",
+ "options": {
+ "auto_rickshaw": {
+ "description": "Motorizované rikši (např. bajaj, tříkolka, tuk-tuk atd.)",
+ "title": "Motorizovaný rikša"
+ },
+ "cycle_rickshaw": {
+ "description": "Pedálové rikši (např. padyak, velotaxi atd.)",
+ "title": "Cyklistický rikša"
+ },
+ "motorcar": {
+ "description": "Běžné auto (implicitně výchozí)",
+ "title": "Automobil"
+ },
+ "motorcycle": {
+ "description": "S cestujícími 'jezdeckým pilónem' (např. mototaxi atd.)",
+ "title": "Motocykl"
+ }
+ },
+ "terms": "druh vozidla,vozidlo,typ vehiklu,druh vehiklu,druh,typ"
},
"taxon": {
"label": "Taxon",
@@ -3132,14 +4437,31 @@
"terms": "druh,čeleď,řád,třída,rod,kmen,říše,doména,život"
},
"tee": {
- "label": "Barva/typ odpaliště"
+ "label": "Barva/druh odpaliště"
},
"telecom": {
- "label": "Typ"
+ "label": "Druh",
+ "options": {
+ "connection_point": "Bod spojení",
+ "data_center": "Datové centrum",
+ "distribution_point": "Distribuční bod",
+ "exchange": "Ústředna",
+ "service_device": "Provozní zařízení"
+ }
},
"telecom/medium": {
"label": "Materiál"
},
+ "telescope/type": {
+ "label": "Druh",
+ "options": {
+ "optical": "Optický teleskop",
+ "radio": "Radiový teleskop"
+ }
+ },
+ "tents": {
+ "label": "Stany"
+ },
"tidal": {
"label": "Přílivový",
"terms": "závislý na přílivu,příliv,odliv,nestálý,občasný,vysychající,odlivový,moře,oceán"
@@ -3164,6 +4486,15 @@
"label": "Mytí rukou",
"terms": "umyvadlo,mýdlo,voda,hygiena,ruce,opláchnutí,kohoutek"
},
+ "toilets/menstrual_products": {
+ "label": "Dostupné menstruační produkty zdarma",
+ "options": {
+ "limited": "Omezeno na některé stánky",
+ "no": "Ne",
+ "yes": "Ano, ve všech stáncích"
+ },
+ "terms": "ženská hygiena,vložky,období,výrobky na období,tampony"
+ },
"toilets/position": {
"label": "Pozice",
"terms": "umístění,poloha záchodu,toalety,místo,směr,otočení"
@@ -3182,10 +4513,24 @@
"terms": "zpoplatněno,mýto,mýtné,placené,placený úsek,úsek,dálnice,silnice,kamion,platba,cena,poplatek"
},
"tomb": {
- "label": "Typ"
+ "label": "Druh",
+ "options": {
+ "columbarium": "Kolumbárium",
+ "crypt": "Krypta",
+ "dolmen": "Dolmen",
+ "hypogeum": "Hypogeum",
+ "mausoleum": "Mauzoleum",
+ "pyramid": "Pyramida",
+ "rock-cut": "Hrob ve skále",
+ "sarcophagus": "Sarkofág",
+ "table": "Tumba",
+ "tumulus": "Mohyla",
+ "vault": "Hrobka",
+ "war_grave": "Válečný hrob"
+ }
},
"tourism": {
- "label": "Typ"
+ "label": "Druh"
},
"tower/construction": {
"label": "Konstrukce",
@@ -3196,10 +4541,10 @@
"placeholder": "1, 2, 3..."
},
"tower/type": {
- "label": "Typ"
+ "label": "Druh"
},
"townhall/type": {
- "label": "Typ"
+ "label": "Druh radnice/obecního úřadu"
},
"tracktype": {
"label": "Klasifikace povrchu",
@@ -3213,10 +4558,10 @@
"placeholder": "Pevný, převážně pevný, měkký povrch"
},
"trade": {
- "label": "Typ"
+ "label": "Druh"
},
"traffic_calming": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"bump": "Úzký příčný práh",
"chicane": "Šikana",
@@ -3230,8 +4575,11 @@
"mini_bumps": "Minimální povolená rychlost",
"rumble_strip": "Opticko-akustická brzda",
"table": "Zvýšená plocha pro zpomalení"
- },
- "terms": "plochý vrchol,hrb,rychlost,pomalu"
+ }
+ },
+ "traffic_calming_road": {
+ "label": "Zklidňování dopravy",
+ "terms": "hrbol,šikana,tlumič,polštář,zvýšená plocha,hrb,dunivý pás,pomalu,rychlost,dopravní ostrůvek"
},
"traffic_sign": {
"label": "Dopravní značka"
@@ -3245,7 +4593,7 @@
}
},
"traffic_signals": {
- "label": "Typ"
+ "label": "Druh"
},
"traffic_signals/arrow": {
"label": "Taktilní šipka",
@@ -3299,7 +4647,7 @@
"terms": "viditelnost cesty,jasnost trasy,čitelnost,snadnost,orientace,nápadnost"
},
"transformer": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"auxiliary": "Pomocné: Napájí vnitřní systémy v rozvodnách",
"converter": "Převodník: Napájí převody energie",
@@ -3314,18 +4662,18 @@
"label": "Stromy"
},
"trench": {
- "label": "Typ"
+ "label": "Druh"
},
"trolley_wire": {
"label": "Trolejové vedení",
"terms": "troleje,zadrátováno,dráty,šňůry,elektrifikováno,elektrifikace,trakce,trakční vedení"
},
"tunnel": {
- "label": "Typ",
+ "label": "Druh",
"placeholder": "Výchozí"
},
"tunnel_combo": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"avalanche_protector": "Lavinový protektor",
"building_passage": "Průchod budovy",
@@ -3345,7 +4693,7 @@
"terms": "dvojstranné"
},
"usage_rail": {
- "label": "Typ použití",
+ "label": "Druh použití",
"options": {
"branch": "Vedlejší",
"industrial": "Průmysl",
@@ -3357,12 +4705,12 @@
"terms": "způsob,druh užití,využití,účel,použití"
},
"usage_waterway": {
- "label": "Typ použití",
+ "label": "Druh použití",
"options": {
- "headrace": "Hlavový závod",
+ "headrace": "Přivaděč",
"irrigation": "Zavlažování",
"spillway": "Přeliv",
- "tailrace": "Ocasní plocha",
+ "tailrace": "Odpadní kanál",
"transmission": "Přenos",
"transportation": "Doprava"
}
@@ -3383,7 +4731,7 @@
"label": "Služby"
},
"valve": {
- "label": "Typ"
+ "label": "Druh"
},
"vehicles": {
"label": "Vozidla",
@@ -3399,14 +4747,41 @@
}
},
"vending": {
- "label": "Typy zboží"
+ "label": "Druhy zboží",
+ "options": {
+ "bicycle_tube": "Trubky pro jízdní kola",
+ "bread": "Chleba",
+ "cigarettes": "Cigarety",
+ "coffee": "Káva",
+ "condoms": "Kondomy",
+ "drinks": "Nápoje",
+ "e-cigarettes": "E-cigarety",
+ "eggs": "Vejce",
+ "electronics": "Elektronika",
+ "elongated_coin": "Mince jako suvenýr",
+ "excrement_bags": "Sáčky na psí výkaly",
+ "feminine_hygiene": "Dámské hygienické produkty",
+ "food": "Jídlo",
+ "fuel": "Palivo",
+ "ice_cream": "Zmrzlina",
+ "ice_cubes": "Kostky ledu",
+ "milk": "Mléko",
+ "newspapers": "Noviny",
+ "parking_tickets": "Parkovací lístky",
+ "pizza": "Pizza",
+ "public_transport_tickets": "Jízdenky veřejné dopravy",
+ "stamps": "Poštovní známky",
+ "sweets": "Sladkosti",
+ "water": "Pitná voda"
+ }
},
"vhf": {
"label": "Kanál VHF",
"terms": "volací značka,velmi krátké vlny"
},
"via": {
- "label": "Přes"
+ "label": "Přes",
+ "terms": "skrz,prostřednictvím,pomocí"
},
"video_calls": {
"label": "Videohovory",
@@ -3430,7 +4805,7 @@
}
},
"volcano/type": {
- "label": "Typ sopky",
+ "label": "Druh sopky",
"options": {
"scoria": "Sypaný kužel",
"shield": "Štít",
@@ -3453,13 +4828,19 @@
"terms": "třetí,terciální,napětí,elektřina,síť,síťové,vedení,volt"
},
"wall": {
- "label": "Typ"
+ "label": "Druh"
},
"waste": {
- "label": "Odpad"
+ "label": "Odpad",
+ "options": {
+ "cigarettes": "Cigarety",
+ "dog_excrement": "Psí výkaly",
+ "organic": "Zelený odpad",
+ "trash": "Odpad"
+ }
},
"water": {
- "label": "Typ"
+ "label": "Druh"
},
"water_point": {
"label": "Kohout s pitnou vodou"
@@ -3467,6 +4848,7 @@
"water_source": {
"label": "Vodní zdroj",
"options": {
+ "groundwater": "Podzemní voda",
"main": "Potrubí vodní distribuce",
"pond": "Rybník",
"river": "Řeka",
@@ -3480,15 +4862,20 @@
"terms": "litry,obsah,tekutina,mililitr,hektolitr,litr,kubík"
},
"waterway": {
- "label": "Typ"
+ "label": "Druh"
},
"website": {
"label": "Webová stránka",
"placeholder": "https://priklad.cz",
"terms": "přítomnost na internetu,uri,adresa url,stránka"
},
+ "website/menu": {
+ "label": "Odkaz na nabídku",
+ "placeholder": "https://priklad.cz",
+ "terms": "online menu,uri menu,adresa url menu,menu webu,nabídka"
+ },
"wetland": {
- "label": "Typ",
+ "label": "Druh",
"options": {
"bog": "Vrchoviště",
"fen": "Slatiniště",
@@ -3523,7 +4910,7 @@
"terms": "vikidata,data wikipedie,zdroj dat,automatický výpis informací,podrobnosti,automatizace,wiki"
},
"wikimedia_commons": {
- "label": "Stránka Wikimedia Commons",
+ "label": "Wikimedia Commons",
"placeholder": "Soubor:Příklad.jpg",
"terms": "reference,wikimedia,commons,wiki,odkaz,zdroj,média,obraz,foto,propojení"
},
@@ -3557,6 +4944,10 @@
"zigzag": "Cikcak"
},
"terms": "cívka,vinutí,způsob,elektromagnetické,konfigurace,sestavení,provedení"
+ },
+ "wood_provided": {
+ "label": "Palivové dřevo zajištěno",
+ "terms": "dřevo dostupné,dřevo k dispozici,palivo,palivové dřevo,větve,špalky,polínka,polena,zásoba dřeva,dřevo zabezpečeno,zásobeno dřevem,dřevo poskytováno,dřevo poskytnuto"
}
},
"presets": {
@@ -3567,13 +4958,17 @@
"name": "Adresa",
"terms": "město,psč,ulice,čp,če"
},
+ "advertising": {
+ "name": "Reklamní zařízení",
+ "terms": "reklamní obrazovka,vlajka,neonový nápis,nápis"
+ },
"advertising/billboard": {
"name": "Reklamní poutač",
"terms": "reklama,billboard,plakát"
},
"advertising/board": {
"name": "Plakátová plocha",
- "terms": "reklama,reklamní,tabule,vývěska,nástěnka,deska,úřední deska,vitrýnka,vitrýna,prezentace,prezentační,oznámení,oznamovací,letáčky,plakáty"
+ "terms": "reklama,reklamní,tabule,nástěnka,deska,vitrýnka,vitrýna,prezentace,prezentační,oznámení,oznamovací,letáčky,plakáty,reklamní plocha,reklamni plocha,plakatova plocha"
},
"advertising/column": {
"name": "Reklamní sloup",
@@ -3662,8 +5057,8 @@
"terms": "garáž,letadlo,letiště"
},
"aeroway/helipad": {
- "name": "Přistávací plocha",
- "terms": "vrtulník,heliport"
+ "name": "Helipad",
+ "terms": "přistávací plocha,pristavaci plocha,vrtulník,vrtulnik,helikoptéra,helikoptera"
},
"aeroway/holding_position": {
"name": "Vyčkávací místo letadla",
@@ -3724,6 +5119,10 @@
"name": "Bankomat",
"terms": "peníze,hotovost,automat"
},
+ "amenity/baking_oven": {
+ "name": "Pečící trouba",
+ "terms": "pekárna,úlová pec,chléb,hliněná pec,horno,zednická pec,tabunová pec,pec na pizzu"
+ },
"amenity/bank": {
"name": "Banka",
"terms": "šek,vklad,fond,investice,úložiště,rezerva,trezor,úspory,akcie,pokladna,důvěra,sejf"
@@ -3738,7 +5137,7 @@
},
"amenity/bbq": {
"name": "Gril",
- "terms": "barbecue,grilovat"
+ "terms": "barbecue,grilovat,gril"
},
"amenity/bench": {
"name": "Lavička",
@@ -3757,8 +5156,8 @@
"terms": "skříňka na kola,cyklistika,cyklobox"
},
"amenity/bicycle_parking/shed": {
- "name": "Bouda pro kola",
- "terms": "cyklistická bouda,cyklistika,cyklobouda"
+ "name": "Uzavíratelný přístřešek pro kola",
+ "terms": "uzaviratelny pristresek pro kola,cyklistický přístřešek,cyklisticky pristresek,cyklistika"
},
"amenity/bicycle_rental": {
"name": "Půjčovna kol",
@@ -3768,6 +5167,10 @@
"name": "Montážní stojan na kola",
"terms": "řetěz na kolo,nástroje na kolo,oprava kol,nářadí na kolo,pumpa na kolo,oprava jízdních kol,cyklistika"
},
+ "amenity/bicycle_wash": {
+ "name": "Mytí jízdních kol",
+ "terms": "kolo,jízdní kolo,mytí kol,čištění jízdních kol,mytí kola,oplachovací stanice,cyklistika"
+ },
"amenity/biergarten": {
"name": "Pivní zahrádka",
"terms": "pivo,pivko,chlast"
@@ -3803,6 +5206,10 @@
"name": "Občerstvení s kavárnou",
"terms": "americano,várka,kafe,kavárna,káva,café,cappuccino,kakao,obchod s kávou,překapávaná,espresso,horké nápoje,latte,macchiato,čaj"
},
+ "amenity/cafe/teahouse": {
+ "name": "Čajovna",
+ "terms": "čajový domek,čajový dům,čajový pokoj,čajová místnost,pití čaje"
+ },
"amenity/car_pooling": {
"name": "Stanice spolujízdy",
"terms": "sdílení aut,spolujízda,sdílení výtahu,sdílení jízdy"
@@ -3843,6 +5250,10 @@
"name": "Potratová klinika",
"terms": "ženské zdravotnictví"
},
+ "amenity/clinic/dialysis": {
+ "name": "Dialyzační středisko",
+ "terms": "dialýza ledvin,dialyzační ambulance"
+ },
"amenity/clinic/fertility": {
"name": "Klinika plodnosti",
"terms": "vajíčko,plodnost,rozmnožování,spermie,ovulace"
@@ -3855,21 +5266,41 @@
"name": "Sluneční hodiny",
"terms": "gnómón,stín"
},
- "amenity/college": {
- "name": "Prostor vyšší odborné školy/college",
- "terms": "univerzita,vysokoškolské studium"
- },
"amenity/community_centre": {
"name": "Komunitní centrum",
- "terms": "událost,hala"
+ "terms": "komunitni centrum,společenské centrum,spolecenske centrum,společenský sál,spolecensky sal,událost,udalost,hala"
+ },
+ "amenity/community_centre/club_home": {
+ "name": "Klubovna",
+ "terms": "klubová místnost,klubova mistnost,klubové centrum,klubove centrum"
+ },
+ "amenity/community_centre/community_hall": {
+ "name": "Společenský sál",
+ "terms": "spolecensky sal,komunitní sál,komunitni sal"
+ },
+ "amenity/community_centre/cultural_centre": {
+ "name": "Kulturní centrum",
+ "terms": "kulturni centrum,kulturní středisko,kulturni stredisko,centrum kultury,kulturní sál,kulturni sal"
+ },
+ "amenity/community_centre/family_centre": {
+ "name": "Rodinné centrum",
+ "terms": "rodinne centrum,centrum pro rodinu,rodinné středisko,rodinne stredisko"
},
"amenity/community_centre/lgbtq": {
"name": "Komunitní centrum LGBTQ+",
"terms": "lgbtq událost,lgbtq hala,lgbt událost,lgbt hala,lgb událost,lgb hala'"
},
+ "amenity/community_centre/parish_hall": {
+ "name": "Farní sál",
+ "terms": "farni sal,náboženský sál,nabozensky sal,sál fary"
+ },
+ "amenity/community_centre/village_hall": {
+ "name": "Obecní sál",
+ "terms": "obecni sal,obecni hala,obecní středisko,obecni stredisko"
+ },
"amenity/community_centre/youth_centre": {
"name": "Centrum mládeže",
- "terms": "centrum pro mládež,klub mládeže"
+ "terms": "centrum mladeze,centrum pro mládež,centrum pro mladez,klub mládeže,klub mladeze,mládežnické centrum,mladeznicke centrum"
},
"amenity/compressed_air": {
"name": "Stlačený vzduch",
@@ -3884,32 +5315,40 @@
"terms": "soudní,soudní budova,soudní dvůr"
},
"amenity/coworking_space": {
- "name": "Sdílený pracovní prostor"
+ "name": "Místo pro spolupráci"
},
"amenity/crematorium": {
"name": "Krematorium",
- "terms": "hřbitov,pohřeb"
+ "terms": "krematorium,hřbitov,pohřeb"
},
"amenity/dentist": {
"name": "Zubař",
- "terms": "zub,zubní"
+ "terms": "dentista,zubař,zubní ordinace"
+ },
+ "amenity/device_charging_station": {
+ "name": "Nabíječka mobilních zařízení",
+ "terms": "nabíjecí stanice,nabíjecí místo,nabíjecí místo pro telefon,nabíjení zařízení,nabíječka pro zařízení,nabíječka telefonu,místo pro nabíjení,nabíjecí stanoviště,nabíjecí stanice pro mobilní zařízení,nabíjecí kiosek,dobíječka"
},
"amenity/dive_centre": {
"name": "Centrum potápění",
- "terms": "potápění,potápěcí"
+ "terms": "potápěčské centrum,škola potápění,potápění,centrum pro potápěče"
},
"amenity/doctors": {
"name": "Lékař",
- "terms": "zdravotník*,doktor"
+ "terms": "lékař,doktor,zdravotník"
},
"amenity/doctors/allergology": {
"name": "Alergolog",
- "terms": "alergie,astma"
+ "terms": "alergolog,specialista na alergie,léčení alergií,léčení astma"
},
"amenity/doctors/cardiology": {
"name": "Kardiolog",
"terms": "kardiochirurg,kardiologie,kardiovaskulární systém,koronární tepna,srdce"
},
+ "amenity/doctors/child_psychiatry": {
+ "name": "Dětský a dorostový psychiatr",
+ "terms": "adolescentní psychiatrie,dětská psychiatrie,pediatrická psychiatrie"
+ },
"amenity/doctors/dermatology": {
"name": "Dermatolog",
"terms": "dermatologie,vlasy,nehty,kožní"
@@ -3923,8 +5362,8 @@
"terms": "doktor,rodinný lékař,rodinný praktický lékař,rodinný doktor"
},
"amenity/doctors/gynaecology": {
- "name": "Gynekolog",
- "terms": "vajíčko,gynekologista,gynekologie,gynekologický,porodnictví,ovulace,reprodukční,lékař pro ženy,lékař pro dámy"
+ "name": "Porodník / gynekolog",
+ "terms": "vajíčko,gynekolog,gynekologie,gynekologický,porodnice,porodní,porodnictví,ovulace,reprodukční,lékař pro ženy,lékař na ženy"
},
"amenity/doctors/haematology": {
"name": "Hematolog",
@@ -3935,7 +5374,84 @@
"terms": "interní praktický lékař,interna,lékař"
},
"amenity/doctors/nephrology": {
- "name": "Nefrolog"
+ "name": "Nefrolog",
+ "terms": "ledvina,ledviny,lék na ledviny,nefrologie,renální"
+ },
+ "amenity/doctors/neurology": {
+ "name": "Neurolog",
+ "terms": "mozek,nervy,nervový systém,neurologie,neurochirurgie"
+ },
+ "amenity/doctors/neurosurgery": {
+ "name": "Neurochirurg",
+ "terms": "mozek,neurologická chirurgie"
+ },
+ "amenity/doctors/oncology": {
+ "name": "Onkolog",
+ "terms": "rakovina,chemoterapie,onkologie,nádor"
+ },
+ "amenity/doctors/ophthalmology": {
+ "name": "Oční lékař",
+ "terms": "oko,oči,brýle,okulárky,oční"
+ },
+ "amenity/doctors/orthopaedics": {
+ "name": "Ortopedický chirurg",
+ "terms": "ortopedická chirurgie"
+ },
+ "amenity/doctors/otolaryngology": {
+ "name": "Otolaryngolog",
+ "terms": "ucho,ušní nosní krční,operace hlavy a krku,nos,hlava a krk,orl,otolaryngolog,otorinolaryngologie,lebka,krk"
+ },
+ "amenity/doctors/paediatrics": {
+ "name": "Pediatr",
+ "terms": "dospívající,děti,kojenci,pediatrie"
+ },
+ "amenity/doctors/pathology": {
+ "name": "Patolog",
+ "terms": "pitva,anatomická patologie,anatomický patolog,patologie"
+ },
+ "amenity/doctors/plastic_surgery": {
+ "name": "Plastický chirurg",
+ "terms": "estetická chirurgie,kosmetická chirurgie,plastika,rekonstrukční chirurgie,plastická chirurgie"
+ },
+ "amenity/doctors/podiatry": {
+ "name": "Podiatr",
+ "terms": "kotník,nohy,noha,chodidlo,chodidla,podiatrie"
+ },
+ "amenity/doctors/proctology": {
+ "name": "Kolorektální chirurg",
+ "terms": "zadek,kolorektální chirurgie,proktologie"
+ },
+ "amenity/doctors/psychiatrist": {
+ "name": "Psychiatr",
+ "terms": "psychiatrie"
+ },
+ "amenity/doctors/pulmonology": {
+ "name": "Pneumolog",
+ "terms": "astma,lék na hruď,plíce,pneumologie,pneumonologie,pneumonie,plicní,dýchací cesty,respirologie,respirační medicína"
+ },
+ "amenity/doctors/radiology": {
+ "name": "Radiolog",
+ "terms": "radiologie,počítačová tomografie,ct,zobrazování magnetické rezonance,lékařský ultrazvuk,lékařská ultrasonografie,mri,sonografie,ultrasonografie"
+ },
+ "amenity/doctors/rheumatology": {
+ "name": "Revmatolog",
+ "terms": "lupus,oteoporóza,revma,revmatologie"
+ },
+ "amenity/doctors/surgery": {
+ "name": "Všeobecný chirurg",
+ "terms": "chirurgie"
+ },
+ "amenity/doctors/trauma": {
+ "name": "Traumatický chirurg",
+ "terms": "chirurgie,traumatická chirurgie"
+ },
+ "amenity/doctors/urology": {
+ "name": "Urolog",
+ "terms": "adrenální žlázy,močový měchýř,nadvarle,ledviny,penis,prostata,reprodukční,šourek,varlata,kulky,močová trubice,močovod,urologie,moč"
+ },
+ "amenity/dog_toilet": {
+ "name": "Psí toaleta",
+ "terms": "oblast psích výkalů,psí exkrementy,psí bobky,psí moč,močení psů,místo na ulevení psů"
},
"amenity/dojo": {
"name": "Škola bojových umění",
@@ -3953,16 +5469,12 @@
"name": "Cvičná plocha pro řidiče",
"terms": "autoškola"
},
- "amenity/driving_school": {
- "name": "Autoškola",
- "terms": "dopravní škola,řízení,auto"
- },
"amenity/embassy": {
"name": "Velvyslanectví"
},
"amenity/events_venue": {
- "name": "Kulturní sál",
- "terms": "hodovní síň,křest,bar micva,bat micva,narozeniny,oslavy,konference,potvrzení,schůzky,večírky,party,quinceañera,setkání,svatby"
+ "name": "Místo konání akcí",
+ "terms": "misto konani akci,hodovní síň,hodovni sin,křest,krest,bar micva,bat micva,narozeniny,oslavy,oslava,konference,schůzky,schuzky,schuzka,večírky,vecirky,večírek,vecirek,party,quinceañera,setkání,setkani,svatby,svatba,eventy,event,firemní akce,firemni akce,společenské akce,spolecenske akce"
},
"amenity/exhibition_centre": {
"name": "Veletržní palác",
@@ -3972,9 +5484,13 @@
"name": "Rychlé občerstvení",
"terms": "restaurace,s sebou"
},
+ "amenity/fast_food/bagel": {
+ "name": "Bagel rychlé občerstvení",
+ "terms": "snídaně,lox"
+ },
"amenity/fast_food/burger": {
"name": "Burger rychlé občerstvení",
- "terms": "snídaně,večeře,stolování,odvoz,jídlo,gril,oběd,stůl"
+ "terms": "snídaně,stolovat,stolování,večeře,drive-in,jídlo,gril,oběd,stůl"
},
"amenity/fast_food/cafeteria": {
"name": "Kafeterie",
@@ -3982,7 +5498,11 @@
},
"amenity/fast_food/chicken": {
"name": "Kuřecí rychlé občerstvení",
- "terms": "snídaně,kantýna,večeřet,jídelna,večeře,odjezd,jíst,gril,oběd,stůl"
+ "terms": "snídaně,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
+ },
+ "amenity/fast_food/chinese": {
+ "name": "Čínské rychlé občerstvení",
+ "terms": "čínská,čína,rychlé občerstvení,fast food,restaurace,jídlo,oběd,večeře"
},
"amenity/fast_food/donut": {
"name": "Kiosek s donuty",
@@ -3990,7 +5510,7 @@
},
"amenity/fast_food/fish_and_chips": {
"name": "Fish & Chips rychlé občerstvení",
- "terms": "snídaně,kavárna,kafé,večeřet,jídelna,večeře,zajížďka,jíst,gril,oběd,stůl,hranolky"
+ "terms": "snídaně,kavárna,kafe,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,hranolky"
},
"amenity/fast_food/hot_dog": {
"name": "Párek v rohlíku rychlé občerstvení",
@@ -4005,19 +5525,23 @@
},
"amenity/fast_food/kebab": {
"name": "Kebab rychlé občerstvení",
- "terms": "bar,snídaně,kavárna,kafé,jídelna,večeřet,jídlo,večeře,odjezd,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
"amenity/fast_food/mexican": {
"name": "Mexické rychlé občerstvení",
- "terms": "snídaně,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,tacos,burritos,enchiladas,fajitas,nachos,tortilly,salsa,tamales,quesadillas"
+ "terms": "snídaně,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,tacos,burritos,enchiladas,fajitas,nachos,tortilly,salsa,tamales,quesadillas"
},
"amenity/fast_food/pizza": {
"name": "Pizza rychlé občerstvení",
- "terms": "večeřet,večeře,jízda,jíst,oběd,stůl,hluboká mísa,tenká kůrka,plátek"
+ "terms": "stolovat,stolování,večeře,drive-in,jíst,oběd,stůl,hluboká mísa,tenká kůrka,plátek"
},
"amenity/fast_food/sandwich": {
"name": "Sandwichové rychlé občerstvení",
- "terms": "snídaně,kavárna,kafe,večeřet,jídelní,večeře,zajížďka,jíst,gril,oběd,stůl"
+ "terms": "snídaně,kavárna,kafe,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
+ },
+ "amenity/fast_food/wings": {
+ "name": "Kuřecí křídla rychlé občerstvení",
+ "terms": "kuře,stolovat,stolování,večeře,jíst,oběd,stůl"
},
"amenity/ferry_terminal": {
"name": "Terminál přívozu/trajektu"
@@ -4036,7 +5560,11 @@
},
"amenity/fuel": {
"name": "Čerpací stanice",
- "terms": "benzínka,palivo,benzín,propan,nafta,lng,cng,bionafta"
+ "terms": "benzín,palivo,pohon,propan,nafta,lng,cng,bionafta"
+ },
+ "amenity/funeral_hall": {
+ "name": "Pohřební síň",
+ "terms": "pohrebni sin,pohřební obřad,pohrebni obrad"
},
"amenity/gambling": {
"name": "Místo pro hazard",
@@ -4054,18 +5582,26 @@
"name": "Zásobník na posypový materiál",
"terms": "sůl,písek"
},
+ "amenity/hookah_lounge": {
+ "name": "Salonek s vodní dýmkou",
+ "terms": "vodní dýmka,nargile,shisha,ochucený tabák"
+ },
"amenity/hospital": {
"name": "Prostor nemocnice",
"terms": "klinika,lékař,pohotovost,zdraví,ošetřovna,ústav,sanatorium,sanitarium,nemocný,ordinace,oddělení"
},
"amenity/hunting_stand": {
- "name": "Posed",
- "terms": "hra,zbraň,rozhledna,puška,střílet*,divoký,sledovat"
+ "name": "Myslivecký posed",
+ "terms": "myslivecky posed,posed,zbraň,puška,střílet*,divoký,sledovat"
},
"amenity/ice_cream": {
"name": "Zmrzlina",
"terms": "zmrzka,sorbet,sherbet,mražený,jogurt"
},
+ "amenity/ice_cream/frozen_yogurt": {
+ "name": "Prodej mraženého jogurtu",
+ "terms": "mrogurt,mrojo,mražený jogurt,zmrzlina,jogurt,zmrzka"
+ },
"amenity/internet_cafe": {
"name": "Internetová kavárna",
"terms": "kyberkavárna,taxifon,telebutika,káva,kavárna,net,lanhouse"
@@ -4074,17 +5610,9 @@
"name": "Karaoke kabinka",
"terms": "karaoke klub,karaoke místnost,karaoke televize,ktv"
},
- "amenity/kindergarten": {
- "name": "Prostor školky / předškolního zařízení",
- "terms": "mateřská škola,školka,předškolní"
- },
"amenity/kneipp_water_cure": {
"name": "Kneippova lázeň",
- "terms": "hydroterapie"
- },
- "amenity/language_school": {
- "name": "Jazyková škola",
- "terms": "jazykovka"
+ "terms": "lázeň nohou,hydroterapie,kneippova péče,kneippova hydroterapie,kneippismus"
},
"amenity/lavoir": {
"name": "Lavor",
@@ -4098,6 +5626,10 @@
"name": "Knihovna",
"terms": "knihy"
},
+ "amenity/library_dropoff": {
+ "name": "Vrácení knihy do schránky",
+ "terms": "odevzdání knihy,vrácení knihy,odevzdání v knihovně,vrácení knihy z knihovny,vrácení knihovně"
+ },
"amenity/loading_dock": {
"name": "Nakládací rampa",
"terms": "dveře,nakládací rampa,doprava,vykládka,sklad"
@@ -4110,6 +5642,10 @@
"name": "Hodinový hotel",
"terms": "hotel lásky,hotel pro zamilované,hotel pro páry"
},
+ "amenity/luggage_locker": {
+ "name": "Schránka na zavazadla",
+ "terms": "schranka na zavazadla,úschovna zavazadel,uschovna zavazadel,zavazadla,tašky,tasky,skříňka,skrinka,skříňky,skrinky,zavazadlo"
+ },
"amenity/marketplace": {
"name": "Tržiště",
"terms": "trh,stánky"
@@ -4134,13 +5670,9 @@
"name": "Půjčovna motocyklů",
"terms": "vrtulník,cruiser,dirt bike,hog,minibike,moped,motorka,motorový skútr,sajdkára,sportovní kolo"
},
- "amenity/music_school": {
- "name": "Hudební škola",
- "terms": "hudebka"
- },
"amenity/nightclub": {
- "name": "Diskotéka",
- "terms": "disco*,noční klub,tancování,taneční klub"
+ "name": "Noční klub",
+ "terms": "nocni klub,diskotéka,diskoteka,disco,tancování,tancovani,taneční klub,tanecni klub"
},
"amenity/nightclub/lgbtq": {
"name": "Noční klub LGBTQ+",
@@ -4151,7 +5683,7 @@
},
"amenity/parcel_locker": {
"name": "Schránka na zásilky",
- "terms": "automatizovaná poštovní schránka,odevzdání,skříňka,pošta,balicí stanice,balík,vyzvednutí"
+ "terms": "automatizovaná poštovní schránka,odevzdání,skříňka,pošta,balicí stanice,balík,vyzvednutí,balíkomat,balikomat"
},
"amenity/parking": {
"name": "Parkoviště",
@@ -4166,7 +5698,7 @@
"terms": "parkoviště pro dojíždějící,parkoviště s pobídkami,parkoviště metra,parkoviště a koupaliště,parkoviště,p+r,parkoviště mhd,parkoviště veřejné dopravy,parkoviště vlaků"
},
"amenity/parking/street-side": {
- "name": "Parkování na straně ulice",
+ "name": "Parkování vedle vozovky",
"terms": "parkoviště pro automobily,parkoviště,parkování vozidel,parkování na ulici,parkování v ulici,parkování u silnice,parkování na kraji"
},
"amenity/parking/underground": {
@@ -4202,8 +5734,8 @@
"terms": "fotobudka,foto,stánek,kiosek,kamera"
},
"amenity/place_of_worship": {
- "name": "Chrám",
- "terms": "opatství,bazilika,betel,katedrála,kancléř,kostelík,kaple,kostel,mše,boží dům,modlitebna,dům uctívání,kazatel,misie,mešita,oratoř,farnost,sacellum,svaté místo,svatyně,synagoga,svatostánek,chrám"
+ "name": "Místo náboženských obřadů",
+ "terms": "misto nabozenskych obradu,bohoslužba,bohosluzba,mše,mse,opatství,opatstvi,bazilika,betel,katedrála,katedrala,kancléř,kostelík,kostelik,kostel,boží dům,bozi dum,modlitebna,dům uctívání,dum uctivani,kazatel,misie,mešita,mesita,oratoř,orator,farnost,sacellum,svaté místo,svate misto,svatyně,svatyne,synagoga,svatostánek,svatostanek,chrám,chram"
},
"amenity/place_of_worship/buddhist": {
"name": "Buddhistický chrám",
@@ -4273,10 +5805,6 @@
"name": "Pošta",
"terms": "dopis,poštovní"
},
- "amenity/prep_school": {
- "name": "Doučovací škola",
- "terms": "akademik,akt,příprava,domácí úkol,matematika,čtení,příprava na zkoušku,doučování,psaní"
- },
"amenity/prison": {
"name": "Prostor věznice",
"terms": "cela,vězení,náprava"
@@ -4326,123 +5854,139 @@
},
"amenity/recycling_container": {
"name": "Kontejner na tříděný odpad",
- "terms": "koš,plechovka,láhev,sklo,odpad,odpadky,šrot,odpadní"
+ "terms": "recyklacni kontejner,koš,plechovka,láhev,sklo,odpad,odpadky,šrot,odpadní"
},
"amenity/refugee_site": {
"name": "Uprchlický tábor",
"terms": "vysídlení lidé,evakuovaní,migranti,nevládní organizace,místo pro uprchlíky"
},
"amenity/research_institute": {
- "name": "Prostor výzkumného ústavu",
- "terms": "aplikovaný výzkum,experimentace,výzkum a vývoj,výzkum i vývoj,výzkumná instituce,výzkumná laboratoř,výzkumné laboratoře"
+ "name": "Výzkumný ústav",
+ "terms": "vyzkumny ustav,aplikovaný výzkum,aplikovany vyzkum,experimentace,výzkum a vývoj,vyzkum a vyvoj,výzkumná instituce,vyzkumna instituce,výzkumná laboratoř,vyzkumna laborator,výzkumné laboratoře,vyzkumne laboratore,akademie věd,akademie ved,akademie,ústav,vustav,ědecký ústav,vedecky ustav,vědecká instituce,vedecka instituce,věda,veda,výzkum,vyzkum,vývoj,vyvoj,vědecké pracoviště,vedecke pracoviste,výzkumné pracoviště,vyzkumne pracoviste,výzkumný institut,vyzkumny institut,vědecký institut,vedecky institut"
},
"amenity/restaurant": {
"name": "Restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,káva,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
"amenity/restaurant/american": {
"name": "Americká restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,káva,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
"amenity/restaurant/asian": {
"name": "Asijská restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,káva,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
- "amenity/restaurant/barbeque": {
- "name": "Grilovací restaurace",
- "terms": "bar,grilovací,jídelna,večeře,večeřet,drive-in,jíst,gril,oběd,stůl"
+ "amenity/restaurant/barbecue": {
+ "name": "Barbecue restaurace",
+ "terms": "barbecue,grilování,gril,bbq,restaurace s grilem,barbecue restaurace"
},
"amenity/restaurant/chinese": {
"name": "Čínská restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
"amenity/restaurant/french": {
"name": "Francouzská restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
+ },
+ "amenity/restaurant/georgian": {
+ "name": "Gruzínská restaurace",
+ "terms": "bar,snídaně,stolovat,stolování,večeře,drive-in,jíst,oběd,stůl"
},
"amenity/restaurant/german": {
"name": "Německá restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,káva,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
"amenity/restaurant/greek": {
"name": "Řecká restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,gyros,pitas,olivy"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,káva,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,gyros,pitas,olivy"
},
"amenity/restaurant/indian": {
"name": "Indická restaurace",
- "terms": "bar,snídaně,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,kari"
+ "terms": "bar,snídaně,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,kari"
},
"amenity/restaurant/italian": {
"name": "Italská restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,těstoviny,pizza"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,těstoviny,pizza"
},
"amenity/restaurant/japanese": {
"name": "Japonská restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
+ },
+ "amenity/restaurant/korean": {
+ "name": "Korejská restaurace",
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
"amenity/restaurant/mexican": {
"name": "Mexická restaurace",
- "terms": "bar,snídaně,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,tacos,burritos,enchiladas,fajitas,nachos,tortilly,salsa,tamales,quesadillas"
+ "terms": "bar,snídaně,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,tacos,burritos,enchiladas,fajitas,nachos,tortilly,salsa,tamales,quesadillas"
},
"amenity/restaurant/noodle": {
"name": "Nudlová restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,ramen nudle,polévka,soba nudle,celofánové nudle,rýžové nudle"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,ramen nudle,polévka,soba nudle,celofánové nudle,rýžové nudle"
},
"amenity/restaurant/pizza": {
"name": "Pizzerie",
- "terms": "bar,večeřet,jídelna,večeře,drive-in,jíst,oběd,stůl,hluboká miska,tenká kůrka,plátek"
+ "terms": "bar,stolovat,stolování,večeře,drive-in,jíst,oběd,stůl,hluboká miska,tenká kůrka,plátek"
+ },
+ "amenity/restaurant/ramen": {
+ "name": "Restaurace Ramen",
+ "terms": "japonská,nudle,ramen-ten,ramen-ya,polévka"
},
"amenity/restaurant/seafood": {
"name": "Restaurace s mořskými rybami",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,ryby,mlži,měkkýši,korýši,škeble,ústřice,humři,kraby,krevety,hlavonožci,chobotnice"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,ryby,mlži,měkkýši,korýši,škeble,ústřice,humři,kraby,krevety,hlavonožci,chobotnice"
+ },
+ "amenity/restaurant/spanish": {
+ "name": "Španělská restaurace",
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
"amenity/restaurant/steakhouse": {
"name": "Steakhouse",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,steakhouse,chophouse,hovězí maso"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,steakhouse,chophouse,hovězí maso"
},
"amenity/restaurant/sushi": {
"name": "Sushi restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
"amenity/restaurant/thai": {
"name": "Thajská restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
"amenity/restaurant/turkish": {
"name": "Turecká restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
+ },
+ "amenity/restaurant/ukrainian": {
+ "name": "Ukrajinská restaurace",
+ "terms": "bar,snídaně,stolovat,stolování,večeře,drive-in,jíst,oběd,stůl"
},
"amenity/restaurant/vietnamese": {
"name": "Vietnamská restaurace",
- "terms": "bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"
+ "terms": "bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"
},
"amenity/sanitary_dump_station": {
"name": "Výlevka pro karavany",
"terms": "obytný vůz,karavan,sanitární,skládka,elsan,výlevka,žumpa,mobilní záchod"
},
- "amenity/school": {
- "name": "Prostor školy",
- "terms": "akademie,základní škola,štřední škola,vysoká škola"
- },
"amenity/shelter": {
"name": "Přístřešek",
- "terms": "otevřený přístřešek,altánek,piknik"
+ "terms": "pristresek"
},
"amenity/shelter/gazebo": {
"name": "Altánek",
- "terms": "altán,přístřešek,střecha,dřevěná stavba,kašna"
+ "terms": "altanek,altán,altan,besídka,besidka,přístřešek,střecha,dřevěná stavba"
},
"amenity/shelter/lean_to": {
"name": "Otevřený přístřešek",
- "terms": "horská chata,dřevěná stavba,přístřešek,ubytování,přenocování,přístřešek na spaní,chata v divočině"
+ "terms": "dřevěná stavba,přístřešek,ubytování,přenocování,přístřešek na spaní"
},
"amenity/shelter/picnic_shelter": {
- "name": "Kryté odpočívadlo",
- "terms": "pavilon"
+ "name": "Piknikový přístřešek",
+ "terms": "piknikovy pristresek,turistický přístřešek,turisticky pristresek,přístřešek,pristresek"
},
"amenity/shelter/public_transport": {
- "name": "Krytá zastávka",
- "terms": "autobusová zastávka,zastávka metra,přístřešek veřejné dopravy,přístřešek mhd,přístřešek tramvajové zastávky,čekání"
+ "name": "Přístřešek veřejné dopravy",
+ "terms": "autobusová zastávka,zastávka metra,pristresek verejne dopravy,přístřešek hromadné dopravy,pristresek hromadne dopravy,přístřešek mhd,přístřešek tramvajové zastávky,čekání"
},
"amenity/shower": {
"name": "Sprchy",
@@ -4464,21 +6008,29 @@
"name": "Ambulantní péče",
"terms": "ošetření,zdravotnictví,sociální péče"
},
+ "amenity/social_facility/assisted_living": {
+ "name": "Život s pomocí",
+ "terms": "asistované bydlení,pečovatelský dům,důchodci,bydlení,starý,senior"
+ },
"amenity/social_facility/food_bank": {
"name": "Potravinová banka",
"terms": "potravinová spíž,vývařovna"
},
"amenity/social_facility/group_home": {
- "name": "Domov pro seniory či jiné skupiny obyvatel",
- "terms": "starý,senior,bydlení,pečovatelský dům,asistované bydlení"
+ "name": "Domov pro seniory",
+ "terms": "domov seniorů,domov senioru,domov důchodců,domov duchodcu,starý,senior"
},
"amenity/social_facility/homeless_shelter": {
"name": "Noclehárna pro bezdomovce",
"terms": "bezdomovci,neubytovaní,vysídlení"
},
"amenity/social_facility/nursing_home": {
- "name": "Domov pro seniory",
- "terms": "senioři,bydlení,ošetřovatelství,staří,asistované bydlení"
+ "name": "Dům s pečovatelskou službou pro seniory",
+ "terms": "dum s osetrovatelskou sluzbou pro seniory,ošetřovateslká služba,osetrovatelska sluzba,senioři,seniori,bydlení,ošetřovatelství,staří"
+ },
+ "amenity/stripclub": {
+ "name": "Striptýzový klub",
+ "terms": "břišní tanec,dospělý*,pánové*,nevěstinec,strip*"
},
"amenity/studio": {
"name": "Studio",
@@ -4500,10 +6052,26 @@
"name": "Filmové studio",
"terms": "filmová produkce,filmové studio,videoprodukce,videozáznam,videostudio"
},
+ "amenity/swingerclub": {
+ "name": "Swingers klub",
+ "terms": "dospělý*,lifestyle club,porno*,sex,strip*,swinger"
+ },
"amenity/taxi": {
"name": "Stanoviště taxi",
"terms": "taxi"
},
+ "amenity/taxi/auto_rickshaw": {
+ "name": "Stanoviště motorizované rikši",
+ "terms": "bajaj,toda,stanice tříkolek,tuk-tuk,tuksi"
+ },
+ "amenity/taxi/cycle_rickshaw": {
+ "name": "Stanoviště cyklistické rikši",
+ "terms": "becak,bikecab,padyak,pedicab,sikad,trisikad,trishaw,velotaxi"
+ },
+ "amenity/taxi/motorcycle_taxi": {
+ "name": "Stanoviště taxi pro motocykly",
+ "terms": "habal-habal,moto taxi,pillion"
+ },
"amenity/telephone": {
"name": "Telefon",
"terms": "telefonní budka"
@@ -4514,7 +6082,7 @@
},
"amenity/theatre/type/amphi": {
"name": "Amfiteátr",
- "terms": "pod širým nebem,venkovní,řecký,ampi"
+ "terms": "otevřený,venkovní,řecký,amfitéatr"
},
"amenity/ticket_validator": {
"name": "Ověřovač vstupenek",
@@ -4537,12 +6105,16 @@
"terms": "toaleta,hajzl,johnny servis,toi-toi,toitoika,mobilní záchod"
},
"amenity/townhall": {
- "name": "Radnice",
- "terms": "obecní,městský,vláda,soud,magistrát"
+ "name": "Obecní / Městský úřad",
+ "terms": "obecní úřad,obecni urad,městský úřad,mestsky urad,samospráva,samosprava,radnice,městská radnice,mestska radnice"
+ },
+ "amenity/townhall/barangay-PH": {
+ "name": "Úřad barangaye",
+ "terms": "úřad barria"
},
"amenity/townhall/city": {
- "name": "Městská radnice",
- "terms": "rada,soud,vlád,starosta,magistrát"
+ "name": "Radnice velkoměsta",
+ "terms": "radnice velkomesta,městský úřad,mestsky urad,městská radnice,mestska radnice,radnice města,radnice mesta,magistrát,magistrat"
},
"amenity/toy_library": {
"name": "Půjčovna hraček",
@@ -4552,17 +6124,13 @@
"name": "Stojan na vozíky",
"terms": "vrácení vozíku,vrácení košíku,nákupní košík,vozík"
},
- "amenity/university": {
- "name": "Prostor vysoké školy",
- "terms": "vysoká škola,vysokoškolské studium,doktorský studijní program,magisterský studijní program"
- },
"amenity/vacuum_cleaner": {
"name": "Vysavač",
"terms": "vysavač na auta,myčka,auto vysavač,vysávání"
},
"amenity/vehicle_inspection": {
- "name": "Kontrola vozidel",
- "terms": "kontrola vozu"
+ "name": "Stanice technické/emisní kontroly",
+ "terms": "stanice technické kontroly,stanice technicke kontroly,stk,technická kontrola,technicka kontrola,stanice emisní kontroly,stanice emisni kontroly,ek,emisní kontrola,emisni kontrola,stanice měření emisí,stanice mereni emisi,měření emisí,mereni emisi,kontrola vozidla,kontrola vozu,kontrola originality"
},
"amenity/vending_machine": {
"name": "Prodejní automat",
@@ -4620,13 +6188,17 @@
"name": "Jídelní automat",
"terms": "jídlo"
},
+ "amenity/vending_machine/food/snacks": {
+ "name": "prodejní automat na svačiny",
+ "terms": "bonbón,žvýkačka,chipsy,preclík,cookies,sušenky"
+ },
"amenity/vending_machine/fuel": {
- "name": "Pumpa na plyn",
+ "name": "prodejní automat na plynové náplně",
"terms": "benzín,palivo,pohon,propan,nafta,lng,cng,bionafta"
},
"amenity/vending_machine/ice_cream": {
"name": "Automat na zmrzlinu",
- "terms": "čokoláda,zmrzlina,mražená,nanuk,vanilka"
+ "terms": "čokoládová,zmrzlina,mražená,nanuk,vanilková"
},
"amenity/vending_machine/ice_cubes": {
"name": "Automat na led",
@@ -4649,24 +6221,28 @@
"terms": "autobus,vlak,trajekt,železnice,jízdenka,doprava"
},
"amenity/vending_machine/stamps": {
- "name": "Poštovní automat",
- "terms": "pošta,poštovné,razítko"
+ "name": "Automat na balíky",
+ "terms": "automat na postovni znamky,výdejní automat na poštovní známky,vydejni automat na postovni znamky,poštovní známky,postovni znamky"
},
"amenity/vending_machine/sweets": {
- "name": "Automat na drobné občerstvení",
- "terms": "bonbón,žvýkačka,chipsy,preclík,sušenka,krekr"
+ "name": "Prodejní automat na cukrovinky",
+ "terms": "žvýkačka"
},
"amenity/veterinary": {
"name": "Veterina",
"terms": "klinika pro domácí mazlíčky,veterinář,nemocnice pro zvířata,lékař pro domácí mazlíčky"
},
+ "amenity/veterinary_pharmacy": {
+ "name": "Lékárna pro zvířata",
+ "terms": "lékárna pro zvířata,klinika pro zvířata,zvířecí lékárna,léky pro zvířata,zvěrolékař,veterinář,veterinární lékárna"
+ },
"amenity/waste/dog_excrement": {
"name": "Koš na psí výkaly",
"terms": "popelnice,odpadky,odpad,smetí,odpadní,hovínko,pes"
},
"amenity/waste_basket": {
"name": "Odpadkový koš",
- "terms": "popelnice,odpadky,odpad,smetí,odpadní"
+ "terms": "popelnice,odpad,odpadky,smetí,odpadní"
},
"amenity/waste_disposal": {
"name": "Kontejner na směsný odpad",
@@ -4700,11 +6276,15 @@
"name": "Plocha silnice",
"terms": "area:highway,okraj chodníku,oblast dálnice,tvar dálnice,chodník,tvar silnice,ulice"
},
+ "area/highway/traffic_island": {
+ "name": "Plocha dopravního ostrůvku",
+ "terms": "pomocný ostrůvek,dopravní ostrůvek"
+ },
"attraction": {
"name": "Atrakce"
},
"attraction/amusement_ride": {
- "name": "Zábavní jízda",
+ "name": "Atrakce",
"terms": "zábavní park,karnevalová jízda"
},
"attraction/animal": {
@@ -4713,7 +6293,7 @@
},
"attraction/big_wheel": {
"name": "Ruské kolo",
- "terms": "velké kolo,zábavní park,zábavní jízda"
+ "terms": "zábavní park,atrakce"
},
"attraction/bumper_car": {
"name": "Autodrom",
@@ -4733,19 +6313,19 @@
},
"attraction/drop_tower": {
"name": "Atrakce padací věž",
- "terms": "zábavní park,zábavní jízda,gondola,věž,velký pokles"
+ "terms": "zábavní park,atrakce,gondola,věž,velký pokles"
},
"attraction/kiddie_ride": {
"name": "Dětské houpadlo",
"terms": "automat,atrakce,dětská jízda,houpadlo,děti,dětské"
},
"attraction/log_flume": {
- "name": "vodní horská dráha",
- "terms": "zábavní park,zábavní jízda,tobogán"
+ "name": "Vodní horská dráha",
+ "terms": "zábavní park,atrakce,tobogán"
},
"attraction/maze": {
"name": "Bludiště",
- "terms": "zábavní park,zábavní jízda,labyrint"
+ "terms": "zábavní park,atrakce,labyrint"
},
"attraction/pirate_ship": {
"name": "Houpačka ve tvaru pirátské lodi",
@@ -4757,7 +6337,7 @@
},
"attraction/roller_coaster": {
"name": "Horská dráha",
- "terms": "zábavní park,zábavní jízda"
+ "terms": "zábavní park,atrakce"
},
"attraction/summer_toboggan": {
"name": "Letní tobogán",
@@ -4765,7 +6345,7 @@
},
"attraction/swing_carousel": {
"name": "Řetízkový kolotoč",
- "terms": "zábavní park,zábavní jízda,kolotoč,věž,věž kolotoče"
+ "terms": "zábavní park,atrakce,kolotoč,věž,věž kolotoče"
},
"attraction/train": {
"name": "Turistický vláček",
@@ -4816,7 +6396,7 @@
"terms": "oplocení,ohrada,řetězové oplocení"
},
"barrier/city_wall": {
- "name": "Hradby",
+ "name": "Městské hradby",
"terms": "zeď,opevnění"
},
"barrier/cycle_barrier": {
@@ -4874,7 +6454,7 @@
"terms": "okraj chodníku,okraj silnice"
},
"barrier/kerb/flush": {
- "name": "Ztracený obrubník",
+ "name": "Zarovnaný obrubník",
"terms": "obrubník,rovný obrubník,hmatový obrubník"
},
"barrier/kerb/lowered": {
@@ -4886,8 +6466,8 @@
"terms": "schod"
},
"barrier/kerb/rolled": {
- "name": "Zaoblený obrubník",
- "terms": "okap"
+ "name": "Zakulacený obrubník",
+ "terms": "zakulacený obrubník,oblý obrubník,žlab,strouha"
},
"barrier/kissing_gate": {
"name": "Turniketová branka",
@@ -4895,10 +6475,11 @@
},
"barrier/lift_gate": {
"name": "Zvedací závora",
- "terms": "závora výložníku,brána výložníku,zdvih výložníku,sklopná tyč,otočný sloup"
+ "terms": "brána se závorou,závora na cestě,tyč závory,zvedací brána,závora přes cestu"
},
"barrier/log": {
- "name": "Spadlý strom"
+ "name": "Překážka ve formě spadlého stromu",
+ "terms": "spadlý strom"
},
"barrier/motorcycle_barrier": {
"name": "Zábrana proti motorkám",
@@ -4952,7 +6533,7 @@
"terms": "dvěře,vchod,vstup"
},
"barrier/yes": {
- "name": "Zábrana (nespecifikovaný typ)"
+ "name": "Zábrana (nespecifikovaný druh)"
},
"boundary": {
"name": "Hranice"
@@ -4961,6 +6542,10 @@
"name": "Administrativní hranice",
"terms": "hranice,stát,kraj,okres"
},
+ "boundary/hazard": {
+ "name": "Nebezpečná oblast",
+ "terms": "nebezpečí,zakázaná oblast"
+ },
"bridge/support": {
"name": "Podpěra mostu",
"terms": "podpěry mostu,pilíř,pilíře,podepření mostu,konstrukce mostu"
@@ -4981,6 +6566,10 @@
"name": "Budova s byty",
"terms": "bytová budova,panelový dům,činžový dům,panelák,činžák,apartmány"
},
+ "building/bakehouse": {
+ "name": "Pekárna",
+ "terms": "pekařství,pečivo,chléb,pekař"
+ },
"building/barn": {
"name": "Stodola",
"terms": "kůlna,seník,sýpka"
@@ -4997,8 +6586,8 @@
"name": "Bunkr"
},
"building/cabin": {
- "name": "Dřevěná stavba",
- "terms": "chata,chalupa,srub,roubenka,chatrč,roubená stavba,dřevěná stavba"
+ "name": "Chatka",
+ "terms": "bouda,chata,srub,roubenka,roubená stavba,dřevěnice,drevenice"
},
"building/carport": {
"name": "Zastřešené stání pro auto",
@@ -5025,8 +6614,8 @@
"terms": "univerzita"
},
"building/commercial": {
- "name": "Obchodní budova",
- "terms": "obchody,firmy,firma,prodej,podnik,podniky,kanceláře"
+ "name": "Komerční budova",
+ "terms": "komercni budova,firmy,firma,kanceláře,služby,sluzby"
},
"building/construction": {
"name": "Budova ve výstavbě",
@@ -5073,14 +6662,15 @@
},
"building/grandstand": {
"name": "Tribuna",
- "terms": "tribuna,stojan,stojany,tribuny"
+ "terms": "stoupátko,stojan,stojany,nekryté tribuny"
},
"building/greenhouse": {
"name": "Skleník",
- "terms": "skleník,fóliovník,pařeniště"
+ "terms": "fóliovník,pařeniště"
},
"building/hangar": {
- "name": "Budova hangáru"
+ "name": "Budova hangáru",
+ "terms": "hangár,garáž letadla,letadlo,umístění letadla,zaparkování letadla,garáž"
},
"building/hospital": {
"name": "Budova nemocnice",
@@ -5092,40 +6682,45 @@
},
"building/house": {
"name": "Rodinný dům",
- "terms": "dům,rodinný dům,řadový dům,domek"
+ "terms": "domov,rodina,bydliště,obydlí"
+ },
+ "building/house/terraced": {
+ "name": "Jednotlivý řadový dům",
+ "terms": "jednotlivy radovy dum,dům v řadové zástavbě,dum v radove zastavbe,řadový dům,radovy dum,řada domů,rada domu,řadová zástavba,radova zastavba,řadovka,radovka"
},
"building/houseboat": {
"name": "Hausbót",
"terms": "domov,rodina,bydliště,obydlí"
},
"building/hut": {
- "name": "Chatička",
- "terms": "chatička,chatka,chata,bouda,dřevěnice,kůlna,dřevník"
+ "name": "Chýše",
+ "terms": "chyse,chatrč,chatrc,chatka,chata,bouda"
},
"building/industrial": {
"name": "Průmyslová budova",
- "terms": "průmyslová budova,industriální,výroba"
+ "terms": "prumyslova budova,průmysl,iprumys,ndustriální,výroba"
},
"building/kindergarten": {
"name": "Budova školky/předškolního zařízení",
- "terms": "školka,mateřská školka,materřská škola"
+ "terms": "školka,mateřská škola,předškolní"
},
"building/manufacture": {
"name": "Budova průmyslové výroby"
},
"building/mosque": {
- "name": "Budova mešity"
+ "name": "Budova mešity",
+ "terms": "mešita,muslim,islámský,dům uctívání,posvátné místo,alláh,islám"
},
"building/office": {
"name": "Kancelářská budova",
- "terms": "kancelář,kenceláře,budova kanceláří,business budova,kancelářský,kancelářská,komerční budova"
+ "terms": "business centrum,kanceláře"
},
"building/outbuilding": {
"name": "Přístavba"
},
"building/pavilion": {
- "name": "Pavilón",
- "terms": "sporty"
+ "name": "Sportovní budova se zázemím",
+ "terms": "sportovni budova se zazemim,šatny,satny"
},
"building/public": {
"name": "Veřejná budova",
@@ -5133,58 +6728,67 @@
},
"building/residential": {
"name": "Obytná budova",
- "terms": "obytná budova,ubytování,bývání,byt"
+ "terms": "obytna budova,ubytování,bývání,byt,dům,dum,budova"
},
"building/retail": {
- "name": "Budova s obchody",
- "terms": "obchod,obchody,obchodní dům,obchodní budova,obchodní centrum,nákupní centrum,shop,shopping"
+ "name": "Prodejna",
+ "terms": "budova s obchody,obchod"
+ },
+ "building/riding_hall": {
+ "name": "Krytá jezdecká aréna",
+ "terms": "aréna jezdectví,jezdecká krytá aréna,jízda na koni,krytá aréna,krytý kruh,halová jízda,longeingová hala"
},
"building/roof": {
"name": "Střecha",
- "terms": "střecha,přístřešek,čekárna,pumpa,benzinka,benzínka"
+ "terms": "strecha,přístřešek,pristresek"
},
"building/ruins": {
- "name": "Zřícená budova"
+ "name": "Zřícená budova",
+ "terms": "zřícenina,trosky,ruiny,spadlá budova,shořená budova,zničená budova"
},
"building/school": {
"name": "Budova školy",
- "terms": "škola,základní škola,střední škola,obecná škola,gymnázium,gymnasium,střední odborná škola,učiliště,odborné učiliště,střední odborné učiliště,školní,školský"
+ "terms": "akademie,základní škola,střední,střední škola"
},
"building/semidetached_house": {
"name": "Polovina dvojdomku",
- "terms": "dvojdomek,půldomek,dvojdům,půldům,polovina"
+ "terms": "domov,dvojitý,duplex,dvojče,rodina,rezidence,obydlí"
},
"building/service": {
- "name": "Účelová budova"
+ "name": "Účelová budova",
+ "terms": "servisní budova,pumpy,transformátory,měřící zařízení"
},
"building/shed": {
"name": "Kůlna",
- "terms": "kůlna,bouda,přístřešek,kolna,šupna,šopa"
+ "terms": "bouda,přístřešek,kolna,šupna,šopa"
},
"building/stable": {
"name": "Stáj",
- "terms": "stáj,konírna,hřebčín,hříbárna,maštal,chlév,chlív,chlívek,vepřín,kravín,ovčín,drůbežárna,teletín"
+ "terms": "konírna,hřebčín,stáj pro koně,hříbárna"
},
"building/stadium": {
- "name": "Budova stadionu"
+ "name": "Budova stadionu",
+ "terms": "stadion,aréna,sportovní"
},
"building/static_caravan": {
- "name": "Karavan nastálo",
- "terms": "karavan,přívěs,obytný přívěs,obytný vůz,maringotka,obytná buňka,kontejner"
+ "name": "Obytný vůz",
+ "terms": "obytný přívěs,mobilní dům,maringotka,obytný karavan,karavan,stálý mobilní dům,přívěs"
},
"building/sty": {
"name": "Vepřín",
- "terms": "budova vepřína,prasata,prasečák,chvání vepřů,prasat,chlív,chlév,prase domácí,vepř,vepři"
+ "terms": "budova vepřína,chov vepřů,prasečák,chlívek,prasečí stodola,chov prasat,prasečí přístřešek,chlív,chlév,prasata,prase domácí,vepř,vepři"
},
"building/synagogue": {
- "name": "Budova synagogy"
+ "name": "Budova synagogy",
+ "terms": "synagoga,dům uctívání,posvátné místo,židovský,judaismus,hebrejský,izrael,jidiš,starý zákon,žid"
},
"building/temple": {
- "name": "Budova chrámu"
+ "name": "Budova chrámu",
+ "terms": "chrám,dům uctívání,posvátné místo,dům boží,kostel,křesťanský,církev"
},
"building/terrace": {
- "name": "Řada řadových domů",
- "terms": "řadový dům,řadové domy,řadovka,řadovky"
+ "name": "Řad domů v řadové zástavbě",
+ "terms": "rad domu v radove zastavbe,radovy dum,řada domů,rada domu,řadová zástavba,radova zastavba,řadovka,radovka"
},
"building/train_station": {
"name": "Nádražní budova"
@@ -5195,11 +6799,11 @@
},
"building/university": {
"name": "Budova vysoké školy",
- "terms": "vysoká škola,univerzita,universita,vysoké učení"
+ "terms": "vysoká škola"
},
"building/warehouse": {
"name": "Skladiště",
- "terms": "skladiště,sklad,překladiště,hala,silo,repozitář"
+ "terms": "sklad,překladiště,hala,silo,repozitář"
},
"building_part": {
"name": "Část budovy",
@@ -5216,41 +6820,57 @@
"name": "Hřbitovní oddíl",
"terms": "pohřebiště,hřbitov,krchov,kostel,kolumbárium,hřbitovy,krchovy,mauzoleum,hrobka"
},
+ "climbing/crag": {
+ "name": "Lezecký sektor/skála",
+ "terms": "lezecká stěna,horolezecká stěna,lezecké místo,místo pro lezení,skály,skála,lezecké cesty,lezecká cesta,horolezení,lezení,boulder,lezecký sektor,věž,skalní věž"
+ },
+ "climbing/route": {
+ "name": "Lezecká cesta",
+ "terms": "lezecká trasa,lezecký výstup,cesta,výstup,výlez,spára,horolezecká cesta,trasa,lezecká délka"
+ },
+ "climbing/route_bottom": {
+ "name": "Lezecká cesta (začátek)",
+ "terms": "horolezení,lezecká cesta,spodek cesty,začátek skály,lezecká oblast,lezecký sektor,věž"
+ },
"club": {
"name": "Klub",
- "terms": "sociální,sociálka"
+ "terms": "sociální"
+ },
+ "club/scout": {
+ "name": "Skautský oddíl",
+ "terms": "průvodce,průkopník,skauting"
},
"club/sport": {
"name": "Sportovní klub",
- "terms": "atletický klub,sportovní klub,sportovní svaz,sportovní spolek"
+ "terms": "atletický klub,sportovní družstvo,sportovní svaz,sportovní spolek"
},
"craft": {
"name": "Řemeslník",
- "terms": "řemeslník,řemeslo,ruční výroba"
+ "terms": "umělec,řemeslo,řemeslník,obchod,živnostník,obchodník,dílna"
},
"craft/agricultural_engines": {
"name": "Výrobce zemědělských strojů",
- "terms": "kombajn,kombajny,farmářské stroje,sekačky,zemědělské stroje,výroba zemědělských strojů,návrh zemědělských strojů,mechanik,řemeslník,harvestery,traktory,konstruktér,konstrukce zemědělských strojů"
+ "terms": "kombajn,farmářské stroje,sekačky,traktory"
},
"craft/basket_maker": {
"name": "Košíkář",
- "terms": "košíkář,košíkářství,proutěný,pletení"
+ "terms": "košíkářství,proutěný,pletení"
},
"craft/beekeeper": {
"name": "Včelař",
- "terms": "včelař,včely,úl,med,prodej medu,včelařství"
+ "terms": "včely,úl,med,prodej medu,včelařství"
},
"craft/blacksmith": {
"name": "Kovář",
- "terms": "kovář,kovářství"
+ "terms": "kovářství"
},
"craft/boatbuilder": {
"name": "Loďař",
- "terms": "loďařství,loďař,stavba lodí,stavba člunů"
+ "terms": "loďařství,stavba lodí,stavba člunů"
},
"craft/bookbinder": {
"name": "Knihař",
- "terms": "knihařství,knihař,vazba knih,vazač,vazačství"
+ "terms": "vazačství"
},
"craft/brewery": {
"name": "Minipivovar",
@@ -5258,22 +6878,23 @@
},
"craft/carpenter": {
"name": "Tesař",
- "terms": "tesařství,tesař,dřevo"
+ "terms": "dřevo"
},
"craft/carpet_layer": {
"name": "Pokladač koberců",
- "terms": "pokladač koberců,pokladačství koberců,koberce"
+ "terms": "pokladačství koberců,koberce"
},
"craft/caterer": {
"name": "Catering",
- "terms": "catering,dodavatel občerstvení,dodavatelství občerstvení"
+ "terms": "dodavatel občerstvení,dodavatelství občerstvení"
},
"craft/chimney_sweeper": {
"name": "Kominík",
- "terms": "kominík,kominictví"
+ "terms": "kominictví"
},
"craft/cleaning": {
- "name": "Úklidová služba"
+ "name": "Úklidová služba",
+ "terms": "úklid,čistota,domácí úklid"
},
"craft/clockmaker": {
"name": "Hodinář (ne hodinky)",
@@ -5281,7 +6902,7 @@
},
"craft/confectionery": {
"name": "Cukrář",
- "terms": "cukrář,cukrářství,cukrárna,sladkost,dort"
+ "terms": "sladkosti,dorty"
},
"craft/distillery": {
"name": "Lihovar",
@@ -5289,26 +6910,27 @@
},
"craft/dressmaker": {
"name": "Švadlena",
- "terms": "švadlena,krejčí,krejčová,šaty,dámská krejčová"
+ "terms": "krejčí"
},
"craft/electrician": {
"name": "Elektrikář",
- "terms": "elektrikář,elektrikářství"
+ "terms": "elektřina,dráty"
},
"craft/electronics_repair": {
"name": "Opravna elektroniky",
- "terms": "opravy elektroniky,opravna elektroniky"
+ "terms": "opravy elektroniky"
},
"craft/floorer": {
- "name": "Podlahář"
+ "name": "Podlahář",
+ "terms": "podlahy,podlahařství"
},
"craft/gardener": {
"name": "Zahradník",
- "terms": "zahradník,zahradnictví,zahradní architekt"
+ "terms": "zahradnictví,zahradní architekt"
},
"craft/glaziery": {
"name": "Práce se sklem",
- "terms": "sklenář,sklenářství,sklo,práce se sklem"
+ "terms": "sklo,vitráže,okno"
},
"craft/handicraft": {
"name": "Umělecký řemeslník",
@@ -5316,7 +6938,7 @@
},
"craft/hvac": {
"name": "Pracoviště HVAC (topení, vzduchoteknika, klimatizace)",
- "terms": "topení,topenář,teplo,tepelné,vzduch,vzduchotechnika,klimatizace,ac,a/c,větrání"
+ "terms": "klimatizace,topení,větrání"
},
"craft/insulator": {
"name": "Firma na izolace",
@@ -5328,37 +6950,38 @@
},
"craft/key_cutter": {
"name": "Výroba klíčů",
- "terms": "klíče,klíčník,výroba klíčů,zámečník,zámečnictví"
+ "terms": "klíčník"
},
"craft/locksmith": {
"name": "Zámečník"
},
"craft/metal_construction": {
"name": "Kovovýroba",
- "terms": "kovovýroba,výroba z kovu,práce s kovem,kovové konstrukce,konstruktér,svářeč,ocelové konstrukce,obrábění,výroba,dílna"
+ "terms": "výroba z kovu,práce s kovem,kovové konstrukce,konstruktér,svářeč,ocelové konstrukce,obrábění,výroba,dílna"
},
"craft/painter": {
"name": "Malíř",
- "terms": "malíř,malířství"
+ "terms": "malířství"
},
"craft/parquet_layer": {
- "name": "Pokladač parket"
+ "name": "Pokladač parket",
+ "terms": "parkety,pokládání parket"
},
"craft/photographer": {
"name": "Fotograf",
- "terms": "fotograf,fotografie,ateliér"
+ "terms": "fotografie,ateliér"
},
"craft/photographic_laboratory": {
"name": "Fotografická laboratoř",
- "terms": "fotografická laboratoř,laboratoř,fotolaboratoř,fotografická dílna,temná komora,tisk fotografií"
+ "terms": "film"
},
"craft/plasterer": {
"name": "Štukatér",
- "terms": "štukatér,štukatérství,štuky"
+ "terms": "štukatérství,štuky"
},
"craft/plumber": {
"name": "Instalatér",
- "terms": "instalatér,instalatérství,vodoinstalatér"
+ "terms": "trubky"
},
"craft/pottery": {
"name": "Hrnčířství",
@@ -5366,35 +6989,35 @@
},
"craft/rigger": {
"name": "Výroba takeláže",
- "terms": "výroba takeláže,takeláž,plachtoví,ráhnoví,lanoví,stěžně"
+ "terms": "takeláž,plachtoví,ráhnoví,lanoví,stěžně"
},
"craft/roofer": {
"name": "Pokrývač",
- "terms": "pokrývač,pokrývačství"
+ "terms": "pokrývačství"
},
"craft/saddler": {
"name": "Sedlář",
- "terms": "sedlář,sedlářství"
+ "terms": "sedlářství"
},
"craft/sailmaker": {
"name": "Výroba plachet",
- "terms": "plachty,plachtář,výroba plachet"
+ "terms": "plachty,plachtář"
},
"craft/sawmill": {
"name": "Pila",
- "terms": "pila,pilař,dřevař,dřevařský,pilařský"
+ "terms": "řezivo"
},
"craft/scaffolder": {
"name": "Lešenář",
- "terms": "lešenář,lešenářství,lešení"
+ "terms": "lešenářství,lešení"
},
"craft/sculptor": {
"name": "Sochař",
- "terms": "sochař"
+ "terms": "socha"
},
"craft/shoemaker": {
"name": "Švec",
- "terms": "švec,ševcovství,obuvník,obuvnictví"
+ "terms": "obuvník"
},
"craft/signmaker": {
"name": "Výrobce cedulí",
@@ -5402,22 +7025,22 @@
},
"craft/stonemason": {
"name": "Kameník",
- "terms": "kameník,kamenictví"
+ "terms": "kamenictví"
},
"craft/tailor": {
"name": "Krejčí"
},
"craft/tiler": {
"name": "Obkladač",
- "terms": "obkladač,obkladačství,pokladač,pokladačství,dlaždič,dlaždičství"
+ "terms": "obkladačství,pokladač,pokladačství,dlaždič,dlaždičství"
},
"craft/tinsmith": {
"name": "Klempíř",
- "terms": "klempíř,klempířství,plech"
+ "terms": "klempířství,plech"
},
"craft/upholsterer": {
"name": "Čalouník",
- "terms": "čalouník,čalounictví"
+ "terms": "čalounictví"
},
"craft/watchmaker": {
"name": "Hodinář",
@@ -5425,25 +7048,26 @@
},
"craft/window_construction": {
"name": "Výroba oken",
- "terms": "sklenář,sklenářství,výroba oken,okenářství"
+ "terms": "sklenář"
},
"craft/winery": {
"name": "Vinař",
- "terms": "vinař,vinařství,víno"
+ "terms": "vinařství,víno"
},
"cycleway/asl": {
- "name": "předsunutá stopčára pro cyklisty",
+ "name": "Předsunutá stopčára pro cyklisty",
"terms": "prostor pro cyklisty,předsazená stopčára,prostor určený pro cyklisty,křižovatka,prostor pro zastavení,místo zastavení pro cyklisty,čekání cyklistů,předsazený prostor pro cyklisty,předsazená čára pro cyklisty"
},
"demolished/building": {
- "name": "čerstvě zbouraná budova"
+ "name": "Čerstvě zbouraná budova"
},
"disc_golf/basket": {
"name": "Koš pro disc golf",
"terms": "discgolfový terč,diskový otvor"
},
"disc_golf/hole": {
- "name": "Jamka pro disc golf"
+ "name": "Jamka pro disc golf",
+ "terms": "golfová jamka,jamka diskového golfu"
},
"disc_golf/tee": {
"name": "Odpaliště pro disc golf",
@@ -5458,6 +7082,49 @@
"disused/shop": {
"name": "Uzavřený obchod"
},
+ "education": {
+ "name": "Vzdělávací zařízení",
+ "terms": "výuka,třída,učení,školení,školicí středisko,školicí místnost"
+ },
+ "education/college": {
+ "name": "Areál vyšší odborné školy/college",
+ "terms": "území vyšší odborné školy,území koleje,území vysoké školy,prostor vyšší odborné školy,areál vysoké školy,areál koleje"
+ },
+ "education/dancing_school": {
+ "name": "Taneční škola",
+ "terms": "škola tance,tanec,balet,baletní studio,taneční lekce,výuka tance,jive,swing,tango,walz,rumba,salsa,samba"
+ },
+ "education/driving_school": {
+ "name": "Autoškola",
+ "terms": "škola řízení motorových vozidel,škola řízení,školení řidičů,automoto škola"
+ },
+ "education/kindergarten": {
+ "name": "Areál mateřské školy / předškolního zařízení",
+ "terms": "prostor školky,prostor mateřské školy,předškolní zařízení,školka,jesle,přípravka"
+ },
+ "education/language_school": {
+ "name": "Jazyková škola",
+ "terms": "jazykovka,cizí jazyky"
+ },
+ "education/music_school": {
+ "name": "Hudební škola",
+ "terms": "škola hudby,škola múzických umění,umělecká škola,hudebka,zuš"
+ },
+ "education/prep_school": {
+ "name": "Doučovací škola / přípravka",
+ "terms": "doučování,lekce,domácí úkoly,příprava na testy,testování,mentoring,kurzy,soukromý učitel,akademie"
+ },
+ "education/school": {
+ "name": "Areál školy",
+ "terms": "prostor školy,území školy,akademie,základní škola,střední škola,učiliště,integrovaná škola"
+ },
+ "education/university": {
+ "name": "Areál univerzity",
+ "terms": "prostor univerzity,území univerzity,kolej,koleje,aula"
+ },
+ "education/yes": {
+ "name": "Vzdělávací zařízení (nespecifikovaný druh)"
+ },
"embankment": {
"name": "Násyp"
},
@@ -5476,11 +7143,9 @@
"name": "Defibrilátor",
"terms": "defibrilátor,aed,resuscitace"
},
- "emergency/designated": {
- "name": "Vyhrazeno pro záchranná vozidla"
- },
- "emergency/destination": {
- "name": "Vjezd záchranným vozidlům jen do místa"
+ "emergency/disaster_response": {
+ "name": "Stanice reakce na katastrofy",
+ "terms": "civilní obrana,civilní ochrana,zvládání katastrof,krizové řízení,ses"
},
"emergency/fire_alarm": {
"name": "Ohlašovna požárů",
@@ -5498,43 +7163,46 @@
"name": "Požární hydrant",
"terms": "požární hydrant,hasičský hydrant,pumpa"
},
+ "emergency/fire_hydrant/pillar": {
+ "name": "Sloupek požárního hydrantu",
+ "terms": "požární zátka,sloupkový hydrant"
+ },
+ "emergency/fire_hydrant/underground": {
+ "name": "Podzemní požární hydrant",
+ "terms": "požární zátka,studna na požární vodu,podzemní hydrant"
+ },
+ "emergency/fire_service_inlet": {
+ "name": "Přípojka požárního vodovodu",
+ "terms": "přívod stavebního hydrantu,nabitá stoupačka,přívod suchého stoupacího potrubí,suché stoupací potrubí,fdc,přívod požární ochrany,přívod požárního sprinkleru,přívod stoupačky,stoupací potrubí,přívod mokré stoupačky,mokré stoupací potrubí"
+ },
"emergency/first_aid_kit": {
"name": "Lékárnička první pomoci",
"terms": "obvaz,první pomoc,lék,lékařská sada,lékař*,lékařská souprava"
},
"emergency/landing_site": {
- "name": "Msto pro nouzové přistání",
+ "name": "Místo pro nouzové přistání",
"terms": "vrtulník,přistávací plocha,heliport"
},
"emergency/life_ring": {
- "name": "Kruh života",
- "terms": "záchranný kruh,záchranářský kruh,záchranné kolo,kobliha"
+ "name": "Záchranný kruh",
+ "terms": "záchranný kruh,zachranny kruh,záchranářský kruh,zahranarsky kruh,záchranné kolo,zachranne kolo,kobliha"
},
"emergency/lifeboat_station": {
"name": "Stanice záchranného člunu",
"terms": "záchranný člun,záchrana,záchranáři,záchranářský člun,záchrana z lodi,plavba,loď"
},
"emergency/lifeguard": {
- "name": "Záchranný kruh",
- "terms": "cpr,záchrana"
+ "name": "Plavčík",
+ "terms": "plavcik,cpr,záchrana,zachrana"
},
"emergency/mountain_rescue": {
- "name": "horská služba",
+ "name": "Horská služba",
"terms": "horská služba,horská záchranná služba,záchranáři,vysokohorská,pomoc,rychlá pomoc,hzs,záchranka"
},
- "emergency/no": {
- "name": "Vjezd záchranných vozidel zakázán"
- },
- "emergency/official": {
- "name": "Vjezd záchranných vozidel oficiálně povolen"
- },
"emergency/phone": {
"name": "Tísňový telefon",
"terms": "nouzový telefon,sos,tísňová linka"
},
- "emergency/private": {
- "name": "Vjezd záchranným vozidlům jen s povolením"
- },
"emergency/siren": {
"name": "Siréna",
"terms": "maják,hlasitý,hluk,houkačka,siréna,varování"
@@ -5551,15 +7219,12 @@
"name": "Nouzový zásobník vody",
"terms": "nádrž na vodu,cisterna,hašení,hasit"
},
- "emergency/yes": {
- "name": "Vjezd záchranných vozidel povolen"
- },
"entrance": {
"name": "Vchod / Východ",
"terms": "vchod,východ,vjezd,výjezd,vlez,výlez,vstup"
},
"entrance/emergency": {
- "name": "únikový východ",
+ "name": "Únikový východ",
"terms": "požární východ,dveře"
},
"entrance/emergency_ward_entrance": {
@@ -5570,6 +7235,14 @@
"name": "Hlavní vchod",
"terms": "hlavní vchod,vchod,dveře,průchod,vstup,východ,hlavní vstup,vchodové dveře,vstupní dveře"
},
+ "entrance/shop": {
+ "name": "Vchod do obchodu",
+ "terms": "vstup do obchodu,vchod,dveře,příchod"
+ },
+ "entrance/staircase": {
+ "name": "Vstup na schodiště",
+ "terms": "dveře,schody,schodiště,schodový"
+ },
"ford": {
"name": "Brod",
"terms": "brod,přejezd vody,ford"
@@ -5582,7 +7255,7 @@
"terms": "pískový bunker,písková překážka,písečná překážka,bunker,hazard"
},
"golf/cartpath": {
- "name": "cesta pro golfová vozítka",
+ "name": "Cesta pro golfová vozítka",
"terms": "cesta pro golfové vozíky,trasa golfových vozíků"
},
"golf/clubhouse": {
@@ -5606,7 +7279,7 @@
"terms": "jamka,dráha od odpaliště,dráha do jamkoviště,dráha"
},
"golf/lateral_water_hazard": {
- "name": "hraniční vodní překážka",
+ "name": "Hraniční vodní překážka",
"terms": "boční vodní překážka,překážka na straně vody,postranní překážka ve vodě"
},
"golf/path": {
@@ -5622,7 +7295,7 @@
"terms": "odpaliště,tee,týčko,tee box"
},
"golf/water_hazard": {
- "name": "vodní překážka",
+ "name": "Vodní překážka",
"terms": "vodní překážka,překážka ve vodě"
},
"healthcare": {
@@ -5633,10 +7306,34 @@
"name": "Alternativní medicína",
"terms": "akupunktura,antroposofická,aplikovaná kineziologie,aromaterapie,ajurvéda,bylinkářství,homeopatie,hydroterapie,hypnóza,naturopatie,osteopatie,reflexní terapie,reiki,shiatsu,tradiční,tuina,unani'"
},
+ "healthcare/alternative/acupuncture": {
+ "name": "Akupunkturní praktik",
+ "terms": "léčitel akupunkturou"
+ },
+ "healthcare/alternative/ayurveda": {
+ "name": "Praktik ájurvédy",
+ "terms": "tradiční čínská medicína"
+ },
"healthcare/alternative/chiropractic": {
"name": "Chiropraktik",
"terms": "bolest,záda,páteř"
},
+ "healthcare/alternative/homeopathy": {
+ "name": "Homeopat",
+ "terms": "homeopat"
+ },
+ "healthcare/alternative/naturopathy": {
+ "name": "Naturopat",
+ "terms": "naturopat"
+ },
+ "healthcare/alternative/osteopathy": {
+ "name": "Osteopat",
+ "terms": "osteopat"
+ },
+ "healthcare/alternative/traditional_chinese_medicine": {
+ "name": "Praktik tradiční čínské medicíny",
+ "terms": "die da,dit da,reiki,tcm,tui na,shiatsu"
+ },
"healthcare/audiologist": {
"name": "Ušní",
"terms": "ucho,slyšet,zvuk"
@@ -5650,7 +7347,7 @@
"terms": "odběr krve,darování krve,transfúze,transfúzní stanice"
},
"healthcare/counselling": {
- "name": "zdravotní poradna",
+ "name": "Zdravotní poradna",
"terms": "poradny,poradenví,poradce,konzultant"
},
"healthcare/dentist/orthodontics": {
@@ -5682,8 +7379,8 @@
"terms": "fyzikální,terapeut,terapie"
},
"healthcare/podiatrist": {
- "name": "Pedikér",
- "terms": "noha,nohy,nehty"
+ "name": "Podiatr",
+ "terms": "noha,nohy,chodidla,kotník,kotnik,podiatrie"
},
"healthcare/psychotherapist": {
"name": "Psychoterapeut",
@@ -5702,7 +7399,7 @@
"terms": "řeč,terapeut,terapie,hlas"
},
"healthcare/yes": {
- "name": "Zdravotní zařízení (nespecifikovaný typ)"
+ "name": "Zdravotní zařízení (nespecifikovaný druh)"
},
"highway": {
"name": "Prvek cesty"
@@ -5712,14 +7409,14 @@
"terms": "jezdecká stezka,jezdecká trasa,stezka pro jezdce,stezka pro koně,koňská stezka"
},
"highway/bus_guideway": {
- "name": "autobusová dráha",
- "terms": "autobusová dráha,dráha pro autobus,dráha pro autobusy,samostatná dráha pro autobusy,vozovka pro autobusy,těleso pro autobusy,silnice pro autobusy,metrobus,bus,autobus,oddělený pás pro autobusy"
+ "name": "Autobusová dráha",
+ "terms": "autobus,dráha pro autobus"
},
"highway/bus_stop": {
"name": "Autobusová zastávka"
},
"highway/busway": {
- "name": "Autobusová dráha",
+ "name": "Pruh pro autobusy",
"terms": "mhd"
},
"highway/construction": {
@@ -5731,25 +7428,23 @@
"terms": "chodba,koridor"
},
"highway/crossing": {
- "name": "Přechod"
+ "name": "Přechod",
+ "terms": "přecházení,přechod pro chodce,přechod pro pěší"
},
- "highway/crossing/marked": {
- "name": "Označený přechod"
+ "highway/crossing/informal": {
+ "name": "Neformální přechod"
},
"highway/crossing/traffic_signals": {
- "name": "Přechod se semaforem pro chodce",
- "terms": "semafor pro chodce,světla pro chodce,přechod pro chodce (semafor),přechod pro cyklisty (semafor),přechod pro chodce (světla)"
+ "name": "Přechod pro chodce se semaforem",
+ "terms": "přechod pro cyklisty (semafor),přechod (semafor),přechod pro chodce (semafor),semafor pro chodce,světelná signalizace pro chodce"
},
"highway/crossing/uncontrolled": {
- "name": "Označený přechod pro chodce",
- "terms": "přechod,zebra,označený přechod,značený přechod,přechod pro chodce,chodci"
+ "name": "Označený přechod",
+ "terms": "označený přechod pěší cesty,označený přechod pro chodce,označený přechod pro pěší,přechod zebra,přechod pro chodce"
},
"highway/crossing/unmarked": {
"name": "Neoznačený přechod",
- "terms": "neoznačený přechod,přechod,místo pro přecházení,přechod pro chodce,neoznačený přechod pro chodce,přechod přes ulici"
- },
- "highway/crossing/zebra": {
- "name": "Označený přechod"
+ "terms": "neoznačený přechod pro chodce,neoznačený přechod pěší cesty,neoznačený přechod pro pěší"
},
"highway/cycleway": {
"name": "Cyklostezka",
@@ -5766,9 +7461,6 @@
"name": "Přechod pro chodce a cyklisty",
"terms": "přechod pro cyklisty a chodce,přechod pro kola a chodce,cyklostezka,cyklistika,cyklista"
},
- "highway/cycleway/crossing/marked": {
- "name": "Označený přejezd pro cyklisty"
- },
"highway/cycleway/crossing/traffic_signals": {
"name": "Přejezd pro cyklisty se semafory",
"terms": "přejezd cyklostezky,přechod cyklostezky,přejezd pro cyklisty,přechod pro cyklisty"
@@ -5782,7 +7474,20 @@
"terms": "přejezd pro cyklisty,neoznačený přejezd pro cyklisty,cyklo přejezd,cyklopřejezd,cyklistický přejezd,přejíždění cyklistů,cyklistický,cyklotrasa,cyklostezka,stezka pro cyklisty"
},
"highway/cycleway/moped_link-NL": {
- "name": "Stezka pro mopedy"
+ "name": "Stezka pro mopedy",
+ "terms": "nájezd/sjezd pro moped,odbočka pro moped,nájezd pro moped,sjezd pro moped,cesta pro moped"
+ },
+ "highway/cycleway/traffic_island": {
+ "name": "Cyklistický záchranný ostrůvek",
+ "terms": "ostrůvek přejezdu pro cyklisty,dopravní ostrůvek pro cyklisty"
+ },
+ "highway/cycleway/traffic_island_shared": {
+ "name": "Dopravní ostrůvek pro pěší a cyklisty",
+ "terms": "dopravní ostrůvek pro pěší a cyklisty,dopravní ostrůvek,ostrůvek pro pěší a cyklisty"
+ },
+ "highway/cyclist_waiting_aid": {
+ "name": "Stupačky pro cyklisty",
+ "terms": "stupačka,zábrana,podnožka,úchop,zábradlí,rukojeť,podpěrka,područka,držadlo"
},
"highway/elevator": {
"name": "Výtah",
@@ -5793,8 +7498,8 @@
"terms": "lanová dráha"
},
"highway/emergency_access_point": {
- "name": "Místo vjezdu záchranných vozidel",
- "terms": "záchrana,pohotovost,nouzová značka,jilm"
+ "name": "Bod záchrany",
+ "terms": "bod zachrany,nouzové číslo,nouzove cislo,záchrana,zachrana,pohotovost,nouzová značka,jilm"
},
"highway/emergency_bay": {
"name": "Místo nouzového zastavení",
@@ -5809,7 +7514,7 @@
"terms": "cesta,silnice,ulice,ulička,chodník,třída,bulvár,avenue,pasáž,stezka,trasa,trať,magistrála,radiála,pěšina"
},
"highway/footway/access_aisle": {
- "name": "bezbariérová ulička",
+ "name": "Bezbariérová ulička",
"terms": "bezbariérová nakládací zóna,přístupová zóna pro invalidy,přístupová zóna pro handicapované parkoviště,parkovací ulička,pruhovaná zóna,odtahová zóna,odtahová oblast,odtahové místo,ulička pro invalidní vozíky"
},
"highway/footway/conveying": {
@@ -5817,25 +7522,20 @@
"terms": "pohyblivý chodník,travelator,travelátor,pásový dopravník,dopravník,jezdící chodník,pěší"
},
"highway/footway/crossing": {
- "name": "Přechod pro chodce"
- },
- "highway/footway/crossing/marked": {
- "name": "Označený přechod"
+ "name": "Přechod pro chodce",
+ "terms": "přecházení,přechod pro chodce"
},
"highway/footway/crossing/traffic_signals": {
- "name": "Přechod se semaforem pro chodce",
- "terms": "semafor pro chodce,světla pro chodce,přechod pro chodce (semafor),přechod pro cyklisty (semafor),přechod pro chodce (světla)"
+ "name": "Přechod pro chodce se semaforem",
+ "terms": "přechod pro chodce (semafor),semafory pro chodce,světelná signalizace pro chodce,přechod pro pěší (semafor)"
},
"highway/footway/crossing/uncontrolled": {
"name": "Označený přechod",
- "terms": "označený přechod pro chodce,značený přechod pro chodce,značený přechod,přechod pro chodce,přechod"
+ "terms": "označený přechod pěší cesty,označený přechod pro chodce,označený přechod pro pěší,přechod zebra,přechod pro chodce"
},
"highway/footway/crossing/unmarked": {
"name": "Neoznačený přechod",
- "terms": "neznačený přechod pro chodce,neoznačený přechod pro chodce,neoznačený přechod"
- },
- "highway/footway/crossing/zebra": {
- "name": "Označený přechod"
+ "terms": "neoznačený přechod pro chodce,neoznačený přechod pěší cesty,neoznačený přechod pro pěší"
},
"highway/footway/informal": {
"name": "Neformální chodník/stezka pro pěší"
@@ -5852,8 +7552,13 @@
"name": "Značka Dej přednost",
"terms": "dej přednost v jízdě,dej přednost,značka přednosti v jízdě,vedlejší silnice,vedlejší ulice"
},
+ "highway/ladder": {
+ "name": "Žebřík",
+ "terms": "žebřík,schůdky,stupně"
+ },
"highway/living_street": {
- "name": "Obytná zóna"
+ "name": "Obytná zóna",
+ "terms": "obytná zóna,obytná ulice"
},
"highway/milestone": {
"name": "Milník dálnice",
@@ -5872,8 +7577,8 @@
"terms": "dálniční nájezd,dálniční výjezd,dálniční exit,dálniční křižovatka,křížení dálnic,nájezd,exit"
},
"highway/motorway_link": {
- "name": "Dálnice – nájezd",
- "terms": "nájezd,sjezd,výjezd,příjezd,rampa,exit"
+ "name": "Nájezd/sjezd na/z dálnice",
+ "terms": "nájezd,najezd,sjezd,výjezd,vyjezd,příjezd,prijezd,rampa,exit,dálniční nájezd,dalnicni najezd,dálniční sjezd,dalnicni sjezd"
},
"highway/passing_place": {
"name": "Místo k vyhýbání",
@@ -5881,12 +7586,24 @@
},
"highway/path": {
"name": "Pěšina",
- "terms": "cesta,pěšina,stezka,chodci,pro chodce,polní,lesní,vychozená,prošlapaná"
+ "terms": "pesina,cesta,cestička,cesticka,stezka,chodník,chodnik,chodníček,chodnicek,chodci,pro chodce,polní,lesní,vychozená,prošlapaná"
},
"highway/path/boardwalk": {
- "name": "Dřevěný chodník / boardwalk",
+ "name": "Chodník z prken",
"terms": "dřevěný chodník,boardwalk,prkenný chodník,vyvýšený,nad terénem,vyvýšený chodník"
},
+ "highway/path/crossing": {
+ "name": "Přechod pro pěší a cyklisty"
+ },
+ "highway/path/crossing/traffic_signals": {
+ "name": "Přechod pro pěší a cyklisty se signály pro chodce"
+ },
+ "highway/path/crossing/uncontrolled": {
+ "name": "Označený přechod pro pěší a cyklisty"
+ },
+ "highway/path/crossing/unmarked": {
+ "name": "Neoznačený přechod pro pěší a cyklisty"
+ },
"highway/path/informal": {
"name": "Neformální pěšina",
"terms": "neformální,vyšlapaná stezka,načerno,stezka,pěšina,cesta,chodci,nepovolená,neoficiální"
@@ -5908,20 +7625,20 @@
"terms": "nájezd,sjezd,výjezd,příjezd,rampa,exit"
},
"highway/raceway": {
- "name": "motoristická závodní dráha",
+ "name": "Motoristická závodní dráha",
"terms": "auto*,formule 1,karta,motocross,nascar,závod*,dráha"
},
"highway/raceway/karting": {
- "name": "motokárová dráha",
+ "name": "Motokárová dráha",
"terms": "motokára,motokáry,káry,motorové káry,motorové motokáry,motokárové závody,motokárová dráha,motorsport,posunovací motokáry,superkáry"
},
"highway/raceway/motocross": {
- "name": "motokrosová dráha",
+ "name": "Motokrosová dráha",
"terms": "off-roadové závody,offroadové moto závody,motokrosový okruh,motocyklová dráha,motorsport"
},
"highway/residential": {
- "name": "Ulice",
- "terms": "silnice,ulice"
+ "name": "Obytná ulice",
+ "terms": "obytna ulice,silnice,ulice"
},
"highway/rest_area": {
"name": "Odpočívadlo",
@@ -5944,11 +7661,12 @@
"terms": "nájezd,sjezd,výjezd,příjezd,rampa,exit"
},
"highway/service": {
- "name": "Účelová komunikace, příjezd",
- "terms": "silnice,ulice"
+ "name": "Účelová komunikace",
+ "terms": "ucelova komunikace,účelová cesta,ucelova cesta"
},
"highway/service/alley": {
- "name": "Ulička"
+ "name": "Ulička",
+ "terms": "ulička mezi domy,úzká ulička,průchod"
},
"highway/service/drive-through": {
"name": "Drive-through",
@@ -5959,10 +7677,12 @@
"terms": "příjezdová cesta,příjezd"
},
"highway/service/emergency_access": {
- "name": "Nouzový vjezd"
+ "name": "Nouzový vjezd",
+ "terms": "nouzový přístup,naléhavé,naléhavý,stav nouze,nouzový stav,nouzový vstup"
},
"highway/service/parking_aisle": {
- "name": "Parkovací ulička"
+ "name": "Parkovací ulička",
+ "terms": "parkovací ulička,ulička pro parkování"
},
"highway/service_area": {
"name": "Zpevněná účelová plocha"
@@ -6008,7 +7728,7 @@
"terms": "sledování průjezdu,automatická mýtná brána,výběr mýta,dálniční portál,čtecí zařízení,průjezdná mýtná brána,kamera,kamery,spz,čtečka spz,mýto,placená dálnice,placená silnice,radar"
},
"highway/track": {
- "name": "Nezpevněná lesní, polní cesta",
+ "name": "Lesní / polní cesta",
"terms": "4wd,4x4,zemědělská silnice,atv,vozová cesta,polní cesta,dvoukolejka,farmářská cesta,požární cesta,lesní cesta,cesta v lese,náhon na čtyři kola,odvozní cesta,nákladní cesta,vysoká světlá výška,džíp,těžba dřeva,těžební linka,offroad,terénní,zarostlý,primitivní,čtyřkolka,ranch road,vyjetá kolej,dvoukolejné,kolejné,neudržované,vozová stezka,lesní stezka"
},
"highway/traffic_mirror": {
@@ -6020,7 +7740,7 @@
"terms": "světla,semafor,dopravní signalizace"
},
"highway/trailhead": {
- "name": "nástupní místo stezky",
+ "name": "Začátek cesty",
"terms": "turistika,nultá míle,horská cyklistika,horolezectví,cíl stezky,začátek stezky,zastávková zóna,trekking"
},
"highway/trunk": {
@@ -6044,7 +7764,12 @@
"terms": "silnice bez klasifikace,neklasifikovaná silnice,místní komunikace"
},
"historic": {
- "name": "Památné místo"
+ "name": "Památné místo",
+ "terms": "historické místo,hrad,pevnost,zámeček,zámek,ruina,hradiště,archeologické místo,archeologické naleziště"
+ },
+ "historic/aircraft": {
+ "name": "Historické letadlo",
+ "terms": "historický letoun,staré letadlo,létací stroj,létající stroj,blériot,zastaralé letadlo"
},
"historic/archaeological_site": {
"name": "Archeologické naleziště",
@@ -6055,7 +7780,12 @@
"terms": "hraniční kámen,hranice,značka"
},
"historic/building": {
- "name": "Historická budova"
+ "name": "Historická budova",
+ "terms": "historická budova,stará budova,historická stavba,památkově chráněná budova"
+ },
+ "historic/cannon": {
+ "name": "Dělo",
+ "terms": "kanon,kanón"
},
"historic/castle": {
"name": "Hrad, zámek",
@@ -6089,16 +7819,24 @@
"name": "Památník",
"terms": "pamětihodnost,památník,pomník,hrdina"
},
+ "historic/memorial/blue_plaque-GB-IE": {
+ "name": "Modrá plaketa",
+ "terms": "modrá pamětní deska"
+ },
"historic/memorial/plaque": {
"name": "Pamětní deska",
"terms": "dedikační,epitaf,historická značka,pamatovat,vzpomínka,paměť"
},
+ "historic/memorial/stolperstein-EU": {
+ "name": "Kameny zmizelých",
+ "terms": "kámen zmizelých,pomník zmizelých"
+ },
"historic/monument": {
"name": "Monument",
"terms": "pamětihodnost,památník,pomník,hrdina"
},
"historic/pillory": {
- "name": "pranýř",
+ "name": "Pranýř",
"terms": "pranýř,historický pranýř,sloup,trest,trestání,připoutání,odsouzený,připoutat"
},
"historic/ruins": {
@@ -6106,16 +7844,16 @@
"terms": "zříceniny,zřícenina"
},
"historic/tomb": {
- "name": "Hrob",
- "terms": "hrobka,místo posledního odpočinku"
+ "name": "Hrobka",
+ "terms": "místo posledního odpočinku"
},
"historic/wayside_cross": {
- "name": "Kříž",
- "terms": "boží muka,křesťanský,kříž při cestě,krucifix"
+ "name": "Přícestní kříž",
+ "terms": "boží muka,bozi muika,kříž při cestě,kriz pri ceste,krucifix,pricestni kriz,historický kříž,historicky kriz"
},
"historic/wayside_shrine": {
- "name": "Boží muka",
- "terms": "svatostánek u cesty,svatyně,svatostánek,kaplička"
+ "name": "Svatostánek u cesty",
+ "terms": "boží muka,bozi muka,svatostanek u cesty,svatostánek,svatostanek,kaplička,kaplicka,výklenková kaplička,vysklenkova kaplicka,poklona"
},
"historic/wreck": {
"name": "Vrak lodi",
@@ -6174,6 +7912,10 @@
"name": "Akvakultura",
"terms": "rybí farma,pěstování ryb,řasa,korýš,kreveta,krevety,ústřice"
},
+ "landuse/aquaculture/fish": {
+ "name": "Sádky",
+ "terms": "rybí farma,rybí hospodářství,rybárna,rybářství,prodejna ryb,chov ryb"
+ },
"landuse/basin": {
"name": "Umělá vodní plocha"
},
@@ -6189,11 +7931,11 @@
"name": "Prostor kolem kostela"
},
"landuse/commercial": {
- "name": "Oblast kanceláří, podniků",
- "terms": "kancelář,kancelářský,kancelářská,podnikový,podnik,komerční"
+ "name": "Komerční oblast (oblast služeb)",
+ "terms": "komercni oblast,oblast služeb,oblast sluzeb,komerční zóna,komercni zona,zóna služeb,zona sluzeb,kancelář,kancelar"
},
"landuse/construction": {
- "name": "Stavební plocha",
+ "name": "Staveniště",
"terms": "budova,buldozer,staveniště,stavební zóna,jeřáb,demolice,výstavba,infrastruktura"
},
"landuse/education": {
@@ -6212,7 +7954,7 @@
"terms": "statek,farma,zemědělství,usedlost,jzd,družstvo"
},
"landuse/flowerbed": {
- "name": "květnatý pás",
+ "name": "Květinový záhon",
"terms": "rostlinná zahrada,květinová zahrada"
},
"landuse/forest": {
@@ -6225,14 +7967,14 @@
},
"landuse/grass": {
"name": "Tráva",
- "terms": "pole,zeleň,trávník,obhospodařovaná tráva,posekaná tráva,rašelina"
+ "terms": "zeleň,zelen,trávník,travnik,obhospodařovaná tráva,obhospodarovana trava,posekaná tráva,posekana trava,travnatá plocha,travnata plocha"
},
"landuse/greenfield": {
"name": "Zelená louka",
- "terms": "vývoj,hodně"
+ "terms": "zelená louka"
},
"landuse/greenhouse_horticulture": {
- "name": "skleníky",
+ "name": "Skleníky",
"terms": "květina,skleník,zahradnictví,růst,vivero"
},
"landuse/harbour": {
@@ -6241,7 +7983,11 @@
},
"landuse/industrial": {
"name": "Průmyslová oblast",
- "terms": "průmysl,průmyslová,průmyslové,průmyslový,industriální,továrna,továrny,fabrika,fabriky"
+ "terms": "prumyslova oblast,průmysl,průmyslová,průmyslové,průmyslový,industriální,továrna,továrny,fabrika,fabriky"
+ },
+ "landuse/industrial/depot": {
+ "name": "Depo",
+ "terms": "autobus,náklaďák,vozidlo,dvůr,daráž,parkování"
},
"landuse/industrial/scrap_yard": {
"name": "Vrakoviště",
@@ -6259,6 +8005,14 @@
"name": "Louka",
"terms": "louka,pastviny,tráva"
},
+ "landuse/meadow_orchard/meadow": {
+ "name": "Louka s ovocnými stromy",
+ "terms": "ovoce,louka"
+ },
+ "landuse/meadow_orchard/orchard": {
+ "name": "Sad vysazený na louce",
+ "terms": "ovoce,louka"
+ },
"landuse/military": {
"name": "Vojenský prostor",
"terms": "vojenský prostor,újezd,výcvikový prostor,kasárna,kasárny"
@@ -6280,8 +8034,8 @@
"terms": "základna,boj,síla,stráž,mariňák,námořnictvo,loď,ponorka,vojska,válka"
},
"landuse/military/danger_area": {
- "name": "Nebezpečné území",
- "terms": "letectvo,armáda,námořnictvo,válka,výbuch,exploze"
+ "name": "Vojenská nebezpečná oblast",
+ "terms": "letectvo,armáda,základna,výbuch,bomba,exploze,výbušný,síla,stráž,námořní,mina,námořnictvo,vojska,válka"
},
"landuse/military/obstacle_course": {
"name": "Vojenská překážková dráha",
@@ -6326,8 +8080,8 @@
"name": "Přehrada"
},
"landuse/residential": {
- "name": "Obytná oblast",
- "terms": "obytná oblast,rezidenční oblast,byty,domy,bydlení,obytné,sídelní"
+ "name": "Rezidenční oblast",
+ "terms": "rezidencni oblast,obytná oblast,byty,domy,bydlení"
},
"landuse/residential/apartments": {
"name": "Oblast s bytovými budovami",
@@ -6338,19 +8092,19 @@
"terms": "park pro karavany,komunity vyrobených domů,park pro přívěsy"
},
"landuse/retail": {
- "name": "Nákupní zóna",
- "terms": "nákupní,obchod,maloobchodní,nákup"
+ "name": "Maloobchodní oblast",
+ "terms": "maloobchodni oblast,maloobchodní zóna,maloobchodni zona,nákupní,nakupni,obchod,nákup"
},
"landuse/salt_pond": {
- "name": "Jezírko pro odpařování soli",
- "terms": "odpařování,solný roztok,sůl,solnice,solná pánev"
+ "name": "Salina",
+ "terms": "odpařování,odparovani,solný roztok,solny roztok,sůl,sul,solná pánev,solna panev,jezírko pro odpařování soli"
},
"landuse/vineyard": {
"name": "Vinice",
"terms": "vinice,vinohrad,hrozny,víno"
},
"landuse/winter_sports": {
- "name": "plocha pro zimní sporty",
+ "name": "Plocha pro zimní sporty",
"terms": "oblast sjezdovek,lyžařská oblast,lyžařský kopec,lyžařská hora,lyžařské středisko,oblast snowboardů,oblast pro snowboardování"
},
"leisure": {
@@ -6365,18 +8119,24 @@
"terms": "placené hry,videohry,simulátory řízení,hrací automaty"
},
"leisure/bandstand": {
- "name": "Kryté pódium"
+ "name": "Hudební altán",
+ "terms": "hudebni altan,hudební pavilon,hudebni pavilon,altán,pavilón,pavilon,pódium,podium,kryté pódium,kryte podium"
+ },
+ "leisure/bathing_place": {
+ "name": "Místo ke koupání",
+ "terms": "koupání,máčení,máchání,plavání,koupací díra,žebřík,molo,voda"
},
"leisure/beach_resort": {
- "name": "spravovaná pláž"
+ "name": "Plážový resort",
+ "terms": "plazovy resort,pláž,plaz"
},
"leisure/bird_hide": {
"name": "Pozorovatelna zvěře",
"terms": "pozorovatelna zvěře,pozorovatelna ptáků,ptačí zástěna,machan"
},
"leisure/bleachers": {
- "name": "nekryté tribuny",
- "terms": "dav,lavice,sport,stojan,stojany,sedadlo,posezení"
+ "name": "Nekrytá tribuna / hlediště",
+ "terms": "tribuna,hlediste,lavice,sport,sedadlo,posezení"
},
"leisure/bowling_alley": {
"name": "Bowlingová dráha",
@@ -6390,12 +8150,8 @@
"name": "Tančírna",
"terms": "taneční sál,tančírna,jive,džajv,swing,tango,waltz,valčík,polka"
},
- "leisure/dancing_school": {
- "name": "Taneční škola",
- "terms": "jive,swing,tango,valčík,výuka tance"
- },
"leisure/disc_golf_course": {
- "name": "hřiště pro disc golf",
+ "name": "Hřiště pro disc golf",
"terms": "disk golf,frisbee golf,létající discgolf,frolf,ultimátum"
},
"leisure/dog_park": {
@@ -6403,7 +8159,7 @@
"terms": "park pro psy,psí park"
},
"leisure/escape_game": {
- "name": "úniková hra",
+ "name": "Úniková hra",
"terms": "úniková hra,útěk z místnosti,hlavolam,místnost hledání"
},
"leisure/firepit": {
@@ -6415,8 +8171,8 @@
"terms": "rybář"
},
"leisure/fitness_centre": {
- "name": "Tělocvična / Fitness centrum",
- "terms": "tělocvična,posilovna,fitness,fitness centrum,fitko"
+ "name": "Fitness centrum / Posilovna",
+ "terms": "tělocvična,telocvicna,fitness,fitness centrum,fitko,cvičení,cviceni"
},
"leisure/fitness_centre/yoga": {
"name": "Yoga studio",
@@ -6424,14 +8180,14 @@
},
"leisure/fitness_station": {
"name": "Venkovní tělocvična",
- "terms": "fitko,fitness,tělocvična"
+ "terms": "venkovni telocvicna,fitko,fitness,tělocvična,telocvicna,posilovna,fitness stanice,cvičení,cviceni"
},
"leisure/fitness_station/balance_beam": {
- "name": "kladina",
+ "name": "Kladina",
"terms": "rovnováha,cvičení,fitness,tělocvična,upravená stezka"
},
"leisure/fitness_station/box": {
- "name": "schod",
+ "name": "Schod",
"terms": "box,cvičení,fitness,tělocvična,skok,upravená stezka"
},
"leisure/fitness_station/horizontal_bar": {
@@ -6439,7 +8195,7 @@
"terms": "hrazda,přítah,přítahy,cvičení,fitness,posilovna,shyb,shyby,upravená stezka"
},
"leisure/fitness_station/horizontal_ladder": {
- "name": "horizontální žebřík",
+ "name": "Horizontální žebřík",
"terms": "hrazda,přítah,přítahy,cvičení,fitness,posilovna,žebřík,moničáky,shyb,shyby,upravená stezka"
},
"leisure/fitness_station/hyperextension": {
@@ -6459,7 +8215,7 @@
"terms": "cvičení,fitness,posilovna,svaly,shyb,shyby,upravená stezka"
},
"leisure/fitness_station/sign": {
- "name": "cedule s návodem ke cvičení",
+ "name": "Cedule s návodem ke cvičení",
"terms": "cedule,návod ke cvičení,návod k posilování,instrukce ke cvičení,instrukce,instruktáž,workout,informace,informační tabule,návod,cvičení,hřiště"
},
"leisure/fitness_station/sit-up": {
@@ -6482,18 +8238,30 @@
"name": "Komunitní zahrada",
"terms": "společná zahrada,zahrada,komunita,spravovaná komunitou,skupinou,sousedská zahrada"
},
+ "leisure/garden/kitchen": {
+ "name": "Zeleninová zahrada",
+ "terms": "kuchyňská zahrada,bramborová zahrada,kulinářská zahrada,zahrada na jídlo,kuchařská zahrada"
+ },
+ "leisure/garden/residential": {
+ "name": "Rezidenční zahrada",
+ "terms": "rezidencni zahrada,obytná zahrada,obytna zahrada,zadní zahrada,dvorek,domácí zahrada,domaci zahrada,předzahrádka,přední dvůr"
+ },
"leisure/golf_course": {
"name": "Golfové hřiště",
"terms": "golfové hřiště,golf"
},
"leisure/hackerspace": {
- "name": "hackerspace",
+ "name": "Hackerspace",
"terms": "makerspace,hackspace,hacklab"
},
"leisure/horse_riding": {
"name": "Jezdecké centrum",
"terms": "jezdecký areál,jezdecký,koňská farma,koňský park,koňský ranč,jezdecké centrum,areál jízdy na koni,jízda na koních,koňské stáje,areál jezdectví,stáje"
},
+ "leisure/hot_tub": {
+ "name": "Vířivka",
+ "terms": "usspa,lázně"
+ },
"leisure/ice_rink": {
"name": "Kluziště",
"terms": "kluziště,zimní stadion,led,ledová plocha"
@@ -6506,6 +8274,10 @@
"name": "Přístaviště",
"terms": "přístav,jachta,jachty,loď"
},
+ "leisure/marina_no_facilities": {
+ "name": "Kotviště pro jachty",
+ "terms": "lodě,doky,přístav,přístavní,přístaviště,kotviště,jachty"
+ },
"leisure/miniature_golf": {
"name": "Minigolf",
"terms": "minigolf,golf,miniaturgolf,filcgolf,fungolf,sterngolf"
@@ -6523,7 +8295,7 @@
"terms": "les,prales,louka,trávník,park,hřiště,parčík,zeleň,lesní,strom,křoví"
},
"leisure/picnic_table": {
- "name": "Stůl na piknik",
+ "name": "Stůl pro piknik",
"terms": "stůl na piknik,stůl,piknik,piknikový stůl,lavička"
},
"leisure/picnic_table/chess": {
@@ -6546,8 +8318,43 @@
"name": "Lukostřelba",
"terms": "luk a šíp,kuše"
},
+ "leisure/pitch/athletics": {
+ "name": "Atletický sektor"
+ },
+ "leisure/pitch/athletics/discus_throw": {
+ "name": "Sektor pro hod diskem",
+ "terms": "hod diskem"
+ },
+ "leisure/pitch/athletics/hammer_throw": {
+ "name": "Sektor pro hod kladivem",
+ "terms": "hod kladivem,vrhačský sektor"
+ },
+ "leisure/pitch/athletics/high_jump": {
+ "name": "Doskočiště pro skok vysoký",
+ "terms": "doskočiště pro skok vysoký,žíněnka pro skok vysoký"
+ },
+ "leisure/pitch/athletics/javelin_throw": {
+ "name": "Hřiště pro hod oštěpem",
+ "terms": "oštěpařský sektor,výseč pro hod oštěpem"
+ },
+ "leisure/pitch/athletics/long_jump": {
+ "name": "Doskočiště pro skok do dálky",
+ "terms": "doskočiště pro skok daleký,žíněnka pro skok daleký"
+ },
+ "leisure/pitch/athletics/pole_vault": {
+ "name": "Doskočiště pro skok o tyči",
+ "terms": "doskočiště pro skok o tyči,žíněnka pro skok o tyči"
+ },
+ "leisure/pitch/athletics/shot_put": {
+ "name": "Kruh pro vrh koulí",
+ "terms": "sektor pro vrh koulí,vrhačský sektor"
+ },
+ "leisure/pitch/athletics/triple_jump": {
+ "name": "Doskočiště pro trojskok",
+ "terms": "doskočiště pro trojskok,žíněnka pro trojskok"
+ },
"leisure/pitch/australian_football": {
- "name": "hřiště pro Australský fotbal",
+ "name": "Hřiště pro australský fotbal",
"terms": "australský,afl,fotbal"
},
"leisure/pitch/badminton": {
@@ -6583,11 +8390,11 @@
"terms": "hřiště na kriket"
},
"leisure/pitch/equestrian": {
- "name": "Jezdecká aréna",
- "terms": "aréna,drezurní aréna,drezurní kruh,drezura,jezdectví,jezdecký kruh,jízda na koni,kůň,koně,skákací aréna,skákací kruh,longeing,ohrádka,kruh jezdectví,jízda,kruh,kulatá ohrádka"
+ "name": "Jezdecká / Rodeo aréna",
+ "terms": "aréna,drezurní aréna,drezurní kruh,drezura,jezdectví,jezdecký kruh,jízda na koni,kůň,jezdecká aréna,jízdárna,skákací aréna,skákací kruh,longeing,ohrádka,polo,jízda,kruh,rodeo,kulaté pero"
},
"leisure/pitch/field_hockey": {
- "name": "hřiště pro pozemní hokej",
+ "name": "Hřiště pro pozemní hokej",
"terms": "pozemní hokej"
},
"leisure/pitch/four_square": {
@@ -6595,7 +8402,8 @@
"terms": "4 čtverce"
},
"leisure/pitch/funnel_ball": {
- "name": "Hřiště na funnel ball"
+ "name": "Hřiště na funnel ball",
+ "terms": "hřiště pro funnel ball,funnelballové hřiště"
},
"leisure/pitch/futsal": {
"name": "Hřiště pro futsal",
@@ -6610,11 +8418,11 @@
"terms": "házená"
},
"leisure/pitch/horseshoes": {
- "name": "hřiště pro házení podkovou",
+ "name": "Hřiště pro házení podkovou",
"terms": "házení podkovy"
},
"leisure/pitch/netball": {
- "name": "hřiště pro netball",
+ "name": "Hřiště pro netball",
"terms": "basketbal"
},
"leisure/pitch/padel": {
@@ -6622,7 +8430,8 @@
"terms": "tenis,pálka"
},
"leisure/pitch/paintball": {
- "name": "Paintballové hřiště"
+ "name": "Paintballové hřiště",
+ "terms": "paintballové hřiště,hřiště na paintball"
},
"leisure/pitch/pickleball": {
"name": "Picketballové hřiště",
@@ -6641,7 +8450,7 @@
"terms": "střelnice,střelba,střelit,cvičení se zbraní,cvičení ve střelbě,cvičení na terč"
},
"leisure/pitch/shuffleboard": {
- "name": "hřiště pro kuličky / posílání disků",
+ "name": "Hřiště pro kuličky / posílání disků",
"terms": "kulečník,curling"
},
"leisure/pitch/skateboard": {
@@ -6705,13 +8514,21 @@
"terms": "atletické centrum,rekreační centrum,sportovní centrum,sportovní areál"
},
"leisure/sports_centre/climbing": {
- "name": "lezecká stěna",
+ "name": "Lezecká stěna",
"terms": "slaňování,umělá lezecká stěna,jištění,bouldering,horolezecké zařízení,vnitřní skalní stěna,slaňovat,skalní tělocvična,lana"
},
+ "leisure/sports_centre/climbing_adventure": {
+ "name": "Dobrodružný park",
+ "terms": "překážková dráha,lezení na laně,lanová dráha,lanový skluz"
+ },
"leisure/sports_centre/horse_racing": {
"name": "Kurz jízdy na koni",
"terms": "jezdecká dostihová dráha,cval,sázení na dostihy,dostihy,dostihové,sázky,dostihová dráha,jezdecká dráha"
},
+ "leisure/sports_centre/karting": {
+ "name": "Zařízení pro motokáry",
+ "terms": "jít na káru,motokáry,motokárové závody"
+ },
"leisure/sports_centre/shooting": {
"name": "Areál střelnice",
"terms": "střelecký klub,střelnice,střelba,střelnit,cvičení se zbraní,cvičení na terč"
@@ -6740,12 +8557,42 @@
"name": "Závodní dráha (ne pro motorsport)",
"terms": "jezdit na kole,pes,chrt,kůň,koně,chrti,chrtů,závod*,dráha"
},
+ "leisure/track/athletics": {
+ "name": "Atletická dráha"
+ },
+ "leisure/track/athletics/javelin_throw": {
+ "name": "Oštěpařská dráha",
+ "terms": "dráha oštěpu"
+ },
+ "leisure/track/athletics/long_jump": {
+ "name": "Dráha pro skok do dálky",
+ "terms": "dráha skoku do dálky"
+ },
+ "leisure/track/athletics/pole_vault": {
+ "name": "Dráha pro skok o tyči",
+ "terms": "dráha skoku o tyči"
+ },
+ "leisure/track/athletics/running": {
+ "name": "Běžecká atletická dráha"
+ },
+ "leisure/track/athletics/sprint": {
+ "name": "Sprinterská dráha",
+ "terms": "sprintová dráha,sprint"
+ },
+ "leisure/track/athletics/steeplechase": {
+ "name": "Dráha pro steeplechase",
+ "terms": "dráha na steeplechase"
+ },
+ "leisure/track/athletics/triple_jump": {
+ "name": "Dráha pro trojskok",
+ "terms": "dráha trojskoku"
+ },
"leisure/track/cycling": {
- "name": "cyklistická dráha",
+ "name": "Cyklistická dráha",
"terms": "cyklistická dráha,dráha pro cyklisty,cyklistické závody,závodní cyklistika,dráha pro jízdu na kole,závodní dráha,závodní dráha pro cyklisty,bicykl"
},
"leisure/track/horse_racing": {
- "name": "Dostihová sráha",
+ "name": "Dostihová dráha",
"terms": "jezdecká dostihová dráha,sázení na dostihy,koňská závodní dráha,koňská dráha,dostihová aréna,dostihy,sázky,dostihová dráha,jezdecká dráha,dráha na dostihy"
},
"leisure/track/running": {
@@ -6776,10 +8623,11 @@
"terms": "vysílání,telefon,buňka,komunikace,mobilní telefon,rádio,televize,přenos,tv"
},
"man_made/beacon": {
- "name": "Signalizační zařízení"
+ "name": "Signalizační zařízení",
+ "terms": "maják"
},
"man_made/beehive": {
- "name": "včelín",
+ "name": "Včelín",
"terms": "včelín,včelař,farma,med,opylování"
},
"man_made/breakwater": {
@@ -6791,23 +8639,43 @@
"terms": "obrys mostu,viadukt"
},
"man_made/bunker_silo": {
- "name": "Podzemní silo",
- "terms": "siláž,sklad"
+ "name": "Silážní jáma",
+ "terms": "silazni jama,silážní žlab,silazni zlab,siláž,sklad"
},
"man_made/cairn": {
- "name": "mohyla",
+ "name": "Mohyla",
"terms": "skalní hromada,kamenná hromada,kamenná kopa,carn"
},
"man_made/carpet_hanger": {
"name": "Klepadlo na koberce",
"terms": "věšák,klepat,stojan"
},
+ "man_made/ceremonial_gate": {
+ "name": "Slavnostní brána",
+ "terms": "ceremoniální brána,náboženská brána,brána do svatyně,historická brána,brána,oblouk,paifang,torii"
+ },
+ "man_made/ceremonial_gate/paifang": {
+ "name": "Paifang",
+ "terms": "brána,oblouk,architektonický styl z číny,čínský architektonický styl,čínská brána,paifong,pailau,pailou"
+ },
+ "man_made/ceremonial_gate/torii": {
+ "name": "Torii",
+ "terms": "japonská brána,brána,oblouk,šintoistická brána,šintoistická svatyně"
+ },
+ "man_made/charge_point": {
+ "name": "Dobíjecí bod EV",
+ "terms": "ev,elektrické vozidlo,dobíjecí stanoviště,nabíjecí stanice,dobíjecí bod"
+ },
"man_made/chimney": {
"name": "Komín",
"terms": "komín,kouř,dým"
},
+ "man_made/clarifier": {
+ "name": "Dosazovací nádrž",
+ "terms": "dosazovaci nadrz,sedimentační nádrž,sedimentacni nadrz,nádrž,nadrz,čov,cov,čistička,cisticka,čistírna,cistirna,čistírna odpadních vod,cistirna odpadnich vod"
+ },
"man_made/clearcut": {
- "name": "paseka",
+ "name": "Paseka",
"terms": "řez,les,řezivo,strom,dřevo"
},
"man_made/compass_rose": {
@@ -6818,19 +8686,20 @@
"name": "Nádvoří"
},
"man_made/crane": {
- "name": "Jeřáb"
+ "name": "Jeřáb",
+ "terms": "jeřáb,stacionární jeřáb"
},
"man_made/crane/gantry_crane": {
- "name": "Portálový mostový jeřáb",
+ "name": "Portálový jeřáb",
"terms": "mostový jeřáb,mostní jeřáb"
},
"man_made/crane/portal_crane": {
- "name": "Portálový ramenový jeřáb",
+ "name": "Přístavní jeřáb",
"terms": "jeřáb s vyrovnáváním"
},
"man_made/cross": {
"name": "Kříž",
- "terms": "vrcholový kříž,kříž,velký kříž,těžký kříž,vrchol"
+ "terms": "vrcholový kříž,vrcholovy kriz,velký kříž,těžký kříž"
},
"man_made/cutline": {
"name": "Průsek",
@@ -6841,16 +8710,29 @@
"terms": "ptactvo,ptáci,holuby,holubník,holub domácí,voliéra,chov holubů"
},
"man_made/dyke": {
- "name": "protipovodňová hráz",
+ "name": "Protipovodňová hráz",
"terms": "hráz,hráza,náplavka,doraz"
},
"man_made/embankment": {
- "name": "Násyp"
+ "name": "Násyp",
+ "terms": "násyp,násep,hráz,bariéra"
},
"man_made/flagpole": {
"name": "Vlajka",
"terms": "prapor,vlajka,stožár,vlajkový stožár"
},
+ "man_made/flare": {
+ "name": "Fléra",
+ "terms": "plynový komín,plyn,olej,oheň,hořet"
+ },
+ "man_made/footwear_decontamination-AU-NZ": {
+ "name": "Dekontaminační stanice obuvi",
+ "terms": "čištění obuvi,boty čištění,čištění bot,kontaminační stanice,dekontaminační stanice"
+ },
+ "man_made/fuel_pump": {
+ "name": "Čerpací stanice",
+ "terms": "benzín,palivo,pohon,propan,nafta,lng,cng,bionafta"
+ },
"man_made/gantry": {
"name": "Portály pro směrové značky",
"terms": "dálniční portál,rameno stožáru,držák dopravní značky,struktura dopravní značky,montáž značky,držák značky,struktura značky"
@@ -6864,9 +8746,13 @@
"terms": "dopravník,zboží,dopravník zboží,náklad,přeprava zboží,pásový dopravník,přepravník,přepravní pás,pás pro přepravu"
},
"man_made/groyne": {
- "name": "vlnolam",
+ "name": "Vlnolam",
"terms": "pobřeží,groyne,konstrukce,pláž,zábrana,moře,pobřežní hráz"
},
+ "man_made/insect_hotel": {
+ "name": "Hmyzí hotel",
+ "terms": "včelí hotel,hotel pro brouky,hmyziště"
+ },
"man_made/lighthouse": {
"name": "Maják",
"terms": "maják,světlo"
@@ -6923,6 +8809,10 @@
"name": "Osvětlovací stožár",
"terms": "záplavové světlo,osvětlení,světla stadionu,osvětlení stadionu,světlomet"
},
+ "man_made/milk_churn_stand": {
+ "name": "Stojánek na konvice mléka",
+ "terms": "stojánek na smetanu,stojánek na plechovky mléka,stojánek na mléko"
+ },
"man_made/mineshaft": {
"name": "Důlní šachta",
"terms": "jeskyně,důlní šachta,tunel,podzemí,vertikální vstup do dolu"
@@ -6932,7 +8822,8 @@
"terms": "počasí,zemětřesení,seismologie,vzduch,gps"
},
"man_made/obelisk": {
- "name": "obelisk"
+ "name": "Obelisk",
+ "terms": "obelisk"
},
"man_made/observatory": {
"name": "Observatoř",
@@ -6959,32 +8850,65 @@
"terms": "ropa,zemní plyn,voda,kanalizace,kanalizační"
},
"man_made/planter": {
- "name": "Plantážník"
+ "name": "Plantážník",
+ "terms": "kvetináč,květiny,květy,plantáže"
},
"man_made/pumping_station": {
- "name": "Čerpací stanice",
+ "name": "Přečerpávací stanice",
"terms": "přečerpávací stanice,benzín,motorest,pohonné hmoty,nafta"
},
+ "man_made/quay": {
+ "name": "Nábřeží",
+ "terms": "dok,přístaviště"
+ },
"man_made/reservoir_covered": {
"name": "Krytá vodní nádrž",
"terms": "podzemní nádrž,vodní nádrž,krytá nádrž,rezervoár"
},
+ "man_made/satellite_dish": {
+ "name": "Parabolická anténa",
+ "terms": "pevná satelitní parabola,motorizovaná satelitní parabola,satelitní anténa,satelitní komunikace,sledování satelitní paraboly"
+ },
"man_made/silo": {
"name": "Silo",
"terms": "silo,zásobník,silážní,sýpka,špýchar,špejchar"
},
+ "man_made/ski_jump": {
+ "name": "Věž skoku na lyžích",
+ "terms": "skok,skokanský můstek,běh,náběh,struktura skokanského můstku,skokanská věž,věž skokanského můstku"
+ },
"man_made/storage_tank": {
"name": "Zásobník",
"terms": "zásobník,nádrž"
},
"man_made/storage_tank/water": {
- "name": "nádrž na vodu",
+ "name": "Nádrž na vodu",
"terms": "cisterna,vodárenská věž"
},
"man_made/street_cabinet": {
- "name": "Pouliční skříň / kaplička",
+ "name": "Pouliční skříň",
"terms": "kabelová televize,monitorovací box,technický box,telekomunikace,ovládání dopravního signálu"
},
+ "man_made/street_cabinet/postal_service": {
+ "name": "Veřejná poštovní schránka",
+ "terms": "listovní úschova,poštovní doručování,poštovní služby"
+ },
+ "man_made/street_cabinet/traffic_control": {
+ "name": "Skříň systému kontroly dopravy",
+ "terms": "automatizace řízení dopravy,semafor"
+ },
+ "man_made/street_cabinet/traffic_monitoring": {
+ "name": "Skříň monitorování dopravy",
+ "terms": "monitorování dopravy,počítání vozidel"
+ },
+ "man_made/street_cabinet/transport_management": {
+ "name": "Skříň řízení dopravy",
+ "terms": "automatizace řízení dopravy"
+ },
+ "man_made/street_cabinet/waste": {
+ "name": "Soukromá skříň na sběr odpadu",
+ "terms": "sběr odpadu,odpad,skříň"
+ },
"man_made/surveillance": {
"name": "Ostraha, kamera",
"terms": "kamera,bezpečtnostní kamera,dohled,ostraha"
@@ -7001,9 +8925,17 @@
"name": "Odkaliště",
"terms": "těžba,separace,kejda"
},
- "man_made/torii": {
- "name": "Torii (šintoistická brána)",
- "terms": "japonská brána,šintoistická svatyně"
+ "man_made/telescope": {
+ "name": "Teleskop",
+ "terms": "teleskop"
+ },
+ "man_made/telescope/optical": {
+ "name": "Optický teleskop",
+ "terms": "refrakční dalekohled,odrazný dalekohled"
+ },
+ "man_made/telescope/radio": {
+ "name": "Radiový teleskop",
+ "terms": "pozemní stanice,rádiová parabola,rádiová anténa"
},
"man_made/tower": {
"name": "Věž",
@@ -7022,7 +8954,7 @@
"terms": "chladící věž,elektrárna,je,jaderná elektrárna,chlazení"
},
"man_made/tower/defensive": {
- "name": "opevněná věž",
+ "name": "Opevněná věž",
"terms": "obranná věž,hradní věž"
},
"man_made/tower/diving": {
@@ -7042,11 +8974,12 @@
"terms": "pagoda,věž,buddhismus,asie,stúpa"
},
"man_made/tunnel": {
- "name": "plocha tunelu",
+ "name": "Plocha tunelu",
"terms": "vrt,výkop,šachta,podzemní chodba,podchod"
},
"man_made/utility_pole": {
- "name": "stožár"
+ "name": "Stožár",
+ "terms": "sloup technické infrastruktury,infrastruktura,sloup,technická infrastruktura"
},
"man_made/video_wall": {
"name": "Digitální obrazovka",
@@ -7057,7 +8990,7 @@
"terms": "čistírna,čistička,čistírna odpadních vod,čov,čovka"
},
"man_made/water_tap": {
- "name": "vodovodní kohoutek",
+ "name": "Vodovodní kohoutek",
"terms": "pitná voda,vodovodní kohoutek,vodní bod,zdroj vody,vodovodní uzávěr"
},
"man_made/water_tower": {
@@ -7093,18 +9026,18 @@
"terms": "alkohol,pivo,pivko,chlast,mošt"
},
"man_made/yes": {
- "name": "Prvek vytvořený člověkem (nespecifikovaný typ)"
+ "name": "Prvek vytvořený člověkem (nespecifikovaný druh)"
},
"marker": {
- "name": "značka/označník",
+ "name": "Značka/označník",
"terms": "identifikátor,označení,deska,tyč,sloupek,cedule"
},
"marker/utility": {
- "name": "označník sítí",
+ "name": "Označník sítí",
"terms": "značka plynového potrubí,identifikátor,označení,olejová značka,značka potrubí,deska,tyč,sloupek,cedule"
},
"marker/utility/power": {
- "name": "označník energetických sítí",
+ "name": "Označník energetických sítí",
"terms": "elektrické vedení,identifikátor,označení,deska,tyč,sloupek,síťový kabel,elektřina,cedule"
},
"military/bunker": {
@@ -7112,7 +9045,7 @@
"terms": "letectvo,armáda,základna,námořnictvo,válka,válečný"
},
"military/checkpoint": {
- "name": "vojenské kontrolní stanoviště",
+ "name": "Vojenské kontrolní stanoviště",
"terms": "kontrolní stanoviště,armáda,vojenský,vojenská,brána,závora,kontrolní bod,kontrola,hranice,zátaras,vojenská kontrola,stanoviště armády"
},
"military/nuclear_explosion_site": {
@@ -7130,6 +9063,10 @@
"natural": {
"name": "Přírodní prvek"
},
+ "natural/arch": {
+ "name": "Přírodní oblouk",
+ "terms": "přírodní most,kamenný oblouk"
+ },
"natural/bare_rock": {
"name": "Plochy jednolité skály",
"terms": "skála"
@@ -7163,7 +9100,7 @@
"terms": "horská louka,louka,mýtina,paseka,pastvina"
},
"natural/geyser": {
- "name": "gejzír",
+ "name": "Gejzír",
"terms": "vyvěrající pramen,gejzír,gizír,gujzír,horká voda,hydrogeologie,hydrotermální exploze,pára"
},
"natural/glacier": {
@@ -7171,8 +9108,8 @@
"terms": "led,ledový,sníh"
},
"natural/grassland": {
- "name": "Travnatá plocha",
- "terms": "travnatá plocha,louka,traviny,travina,trávník"
+ "name": "Travnatá plocha (neudržovaná)",
+ "terms": "travnata plocha,traviny,travina,tráva,trava"
},
"natural/heath": {
"name": "Vřesoviště",
@@ -7190,6 +9127,10 @@
"name": "Vrchol",
"terms": "hora,vrch,vrchol,vrcholek,kopec,kopeček,kóta,mont,mount,pik"
},
+ "natural/peninsula": {
+ "name": "Poloostrov",
+ "terms": "záliv,mys,pobřeží,eroze,ostroh,ostrov,ostrůvek,výběžek"
+ },
"natural/reef": {
"name": "Útes",
"terms": "bariéra,korál,oceán,písek,mělčina"
@@ -7212,20 +9153,24 @@
},
"natural/scree": {
"name": "Suťoviště",
- "terms": "suť,suťoviště,kámen,kameny"
+ "terms": "sutoviste,osyp,suť,sut,kámen,kamen,kameny"
},
"natural/scrub": {
"name": "Křoví",
"terms": "křoviny,křoví"
},
"natural/shingle": {
- "name": "oblázky",
- "terms": "pláž,štěrk,oblázky,koryto řeky,zaoblené úlomky skal"
+ "name": "Oblázky",
+ "terms": "pláž,štěrk,šindel,koryto řeky,zaoblené úlomky skal"
},
"natural/shrub": {
"name": "Keř",
"terms": "keř,křoví,nízká dřevina,větve,větev,křovina,křoviny,rostlina,nízký strom,kleč"
},
+ "natural/sinkhole": {
+ "name": "Závrt",
+ "terms": "cenote,propadliště,dolina,závrtový,dolík,hadí díra,údolí,vlaštovčí díra"
+ },
"natural/spring": {
"name": "Pramen",
"terms": "pramen,vodní pramen,studánka,studna"
@@ -7242,6 +9187,28 @@
"name": "Strom",
"terms": "dřevo,kmen"
},
+ "natural/tree/broadleaved": {
+ "name": "Listnatý strom"
+ },
+ "natural/tree/broadleaved/deciduous": {
+ "name": "Listnatý strom (opadavý)",
+ "terms": "listí,listnatý,opadavý,tvrdé dřevo"
+ },
+ "natural/tree/broadleaved/evergreen": {
+ "name": "Listnatý strom (stálezelený)",
+ "terms": "listí,listnatý,stálezelený,tvrdé dřevo,strom"
+ },
+ "natural/tree/needleleaved": {
+ "name": "Jehličnatý strom"
+ },
+ "natural/tree/needleleaved/deciduous": {
+ "name": "Jehličnatý strom (opadavý)",
+ "terms": "jehličnan,listí,jehličnatý,měkké dřevo,strom"
+ },
+ "natural/tree/needleleaved/evergreen": {
+ "name": "Jehličnatý strom (stálezelený)",
+ "terms": "jehličnan,stálezelený,jehličnatý,měkké dřevo"
+ },
"natural/tree_row": {
"name": "Stromořadí",
"terms": "řada stromů"
@@ -7267,14 +9234,16 @@
"terms": "zdrž,nádrž,voda,jezero,rybník"
},
"natural/water/canal": {
- "name": "plocha vodního kanálu"
+ "name": "Plocha vodního kanálu",
+ "terms": "oblast kanálu,plocha kanálu"
},
"natural/water/lake": {
"name": "Jezero",
"terms": "jezero,jezírko,pleso,oko,tůň"
},
"natural/water/moat": {
- "name": "vodní příkop"
+ "name": "Vodní příkop",
+ "terms": "vodní příkop,hradní vodní příkop"
},
"natural/water/oxbow": {
"name": "Mrtvé rameno",
@@ -7282,22 +9251,22 @@
},
"natural/water/pond": {
"name": "Rybník",
- "terms": "jezero,mlýnský,rybníček,pleso,bazén,vodní plocha"
+ "terms": "jezero,mlýnský,rybníček,rybnicek,pleso,vodní plocha,vodni plocha"
},
"natural/water/reservoir": {
"name": "Přehrada",
- "terms": "nádrž,vodní nádrž,tank,rezervoár,jímka"
+ "terms": "prehrada,přehradní nádrž,prehradni nadrz,nádrž,nadrz,vodní nádrž,vodni nadrz,rezervoár,rezervoar"
},
"natural/water/river": {
- "name": "plocha řeky",
+ "name": "Plocha řeky",
"terms": "výtok,větev,potok,tok,říčka,ústí,průtok,břeh řeky,potůček,teč,kanál,proud,přítok,vodní tok"
},
"natural/water/stream": {
- "name": "plocha potoku",
+ "name": "Plocha potoku",
"terms": "výtok,větev,potok,opa,tok,říčka,proudit,unášet,povodeň,průtok,obleva,proudění,žlab,potůček,teč,kanál,rákosí,záplava,stříkat,nával,slapy,bystřina,přítok,vodní tok"
},
"natural/water/wastewater": {
- "name": "nádrž na odpadní vodu",
+ "name": "Nádrž na odpadní vodu",
"terms": "exkrementy,sračky,splaškové vody,odpadní vody,usazovací nádrž,umyvadlo"
},
"natural/wetland": {
@@ -7305,17 +9274,20 @@
"terms": "mokřad,mokřina,rašeliniště,slatiniště,slatina,bažina,slanisko,slať,slatě,mangrovy"
},
"natural/wetland/bog": {
- "name": "Vrchoviště"
+ "name": "Vrchoviště",
+ "terms": "vrchoviště"
},
"natural/wetland/fen": {
"name": "Slatiniště",
"terms": "podzemní voda"
},
"natural/wetland/mangrove": {
- "name": "Mangovník"
+ "name": "Mangovník",
+ "terms": "mangrovy,mangrovové močály"
},
"natural/wetland/marsh": {
- "name": "Marše"
+ "name": "Marše",
+ "terms": "marše"
},
"natural/wetland/reedbed": {
"name": "Rákosina",
@@ -7338,7 +9310,8 @@
"terms": "přílivový"
},
"natural/wetland/wet_meadow": {
- "name": "Mokrá louka"
+ "name": "Mokrá louka",
+ "terms": "mokrá louka"
},
"natural/wood": {
"name": "Přírodní les",
@@ -7365,7 +9338,7 @@
},
"office/adoption_agency": {
"name": "Adopční agentura",
- "terms": "děti"
+ "terms": "adopcni agentura"
},
"office/advertising_agency": {
"name": "Reklamní agentura",
@@ -7388,8 +9361,8 @@
"terms": "charitativní organizace"
},
"office/company": {
- "name": "Kancelář korporace",
- "terms": "korporace,kancelářský park"
+ "name": "Kancelář soukromé společnosti",
+ "terms": "kancelar soukrome spolecnosti,soukromá společnost,soukroma spolecnost,společnost,spolecnost,firma,korporace,firemní kancelář,firemne kancelar,privátní kancelář,privatni kancelar"
},
"office/consulting": {
"name": "Poradenská kancelář",
@@ -7400,7 +9373,7 @@
"terms": "spolupráce,kancelář"
},
"office/diplomatic": {
- "name": "diplomatická kancelář",
+ "name": "Diplomatická kancelář",
"terms": "konzulát,diplomatická mise,velvyslanectví,zahraniční mise,vysoká komise,legace,styčná mise,stálá mise"
},
"office/diplomatic/consulate": {
@@ -7412,7 +9385,7 @@
"terms": "velvyslanectví,vyslanectví,ambasáda,zastupitelství"
},
"office/diplomatic/liaison": {
- "name": "kancelář jiného státu",
+ "name": "Kancelář jiného státu",
"terms": "diplomatická mise"
},
"office/educational_institution": {
@@ -7427,6 +9400,10 @@
"name": "Kancelář dodavatele elektřiny",
"terms": "elektřina,energetická společnost,energetická služba,plyn"
},
+ "office/engineer": {
+ "name": "Inženýrská kancelář",
+ "terms": "stavební inženýr,elektroinženýr,inženýr,strojírenská firma,strojní inženýr,statik,technický inženýr"
+ },
"office/estate_agent": {
"name": "Realitní kancelář",
"terms": "realitní kancelář,realitka,nemovitost"
@@ -7436,7 +9413,7 @@
"terms": "finanční úřad,daňový úřad,berní úřad,celní správa"
},
"office/financial_advisor": {
- "name": "finanční poradce",
+ "name": "Finanční poradce",
"terms": "401k,dědictví,úspory,zásoby,odchod do důchodu,správa majetku"
},
"office/forestry": {
@@ -7452,7 +9429,7 @@
"terms": "státní úřad,státní instituce,ministerstvo"
},
"office/government/prosecutor": {
- "name": "státní zastupitelství",
+ "name": "Státní zastupitelství",
"terms": "státní zástupce,okresní státní zástupce,státní zastupitelství"
},
"office/government/register_office": {
@@ -7499,7 +9476,7 @@
"terms": "nezisková organizace,neziskovka,nevládní organizace"
},
"office/notary": {
- "name": "Notářství",
+ "name": "Kancelář notáře",
"terms": "úředník,listiny,pozůstalost,podpis,závěti"
},
"office/physician": {
@@ -7514,11 +9491,11 @@
"terms": "pi,soukromé očko,soukromý detektiv"
},
"office/property_management": {
- "name": "Správa nemovitostí / Leasingová kancelář",
- "terms": "pronájem nemovitosti"
+ "name": "Správa nemovitostí",
+ "terms": "sprava nemovitosti,bytová správa,bytova sprava,správa bytů,sprava bytu"
},
"office/quango": {
- "name": "kancelář kvaziautonomní nevládní organizace",
+ "name": "Kancelář kvaziautonomní nevládní organizace",
"terms": "nevládní organizace,nevládní,nevládnoucí,organizace,organizační,quasi autonomní,quasiautonomní"
},
"office/religion": {
@@ -7526,11 +9503,11 @@
"terms": "kněz,farář"
},
"office/research": {
- "name": "Výzkumný ústav",
- "terms": "výzkumný ústav,akademie věd,akademie,ústav,vědecký ústav,vědecká instituce,věda,výzkum,vývoj,vědecké pracoviště,výzkumné pracoviště"
+ "name": "Kancelář výzkumu a vývoje",
+ "terms": "kancelar vyzkumu a vyvoje,výzkumný ústav,vyzkumny ustav,akademie věd,akademie ved,akademie,ústav,vustav,ědecký ústav,vedecky ustav,vědecká instituce,vedecka instituce,věda,veda,výzkum,vyzkum,vývoj,vyvoj,vědecké pracoviště,vedecke pracoviste,výzkumné pracoviště,vyzkumne pracoviste,výzkumný institut,vyzkumny institut,vědecký institut,vedecky institut"
},
"office/security": {
- "name": "kancelář hlídače",
+ "name": "Kancelář hlídače",
"terms": "security,hlídač,ochranka,noční hlídač"
},
"office/surveyor": {
@@ -7549,19 +9526,23 @@
"name": "Terapeutická kancelář",
"terms": "terapie"
},
+ "office/translator": {
+ "name": "Překladatelská kancelář",
+ "terms": "překladatel,překlad,překladatelská agentura"
+ },
"office/travel_agent": {
"name": "Cestovní kancelář"
},
"office/union": {
- "name": "Úřad práce",
- "terms": "obchodní unie"
+ "name": "Odborová organizace zaměstnanců",
+ "terms": "odborová organizace zamestnancu,odbory,odborova organizace"
},
"office/water_utility": {
"name": "Vodohospodářská kancelář",
"terms": "vodohospodářství,služba"
},
"office/yes": {
- "name": "Kancelář (nespecifikovaný typ)"
+ "name": "Kancelář (nespecifikovaný druh)"
},
"pipeline": {
"name": "Prvek potrubní dopravy"
@@ -7575,19 +9556,19 @@
"terms": "ropa,zemní plyn,voda,kanalizace,kanalizační"
},
"piste/downhill": {
- "name": "sjezdová dráha",
+ "name": "Sjezdová dráha",
"terms": "alpské lyžování,sjezdovka,lyžařský kopec,lyžování,snowboarding"
},
"piste/downhill/halfpipe": {
- "name": "sjezdová „U“ rampa",
+ "name": "Sjezdová „U“ rampa",
"terms": "lyže,sjezd,skokanský můstek,skokanský,snowboard,sjezdovka"
},
"piste/hike": {
- "name": "cesta pro zimní turistiku / sněžnice",
+ "name": "Cesta pro zimní turistiku / sněžnice",
"terms": "túra,nordic walking,sjezdovka,přehlídka bot,sněžnice,výlety na sněžnicích"
},
"piste/ice_skate": {
- "name": "bruslařská dráha (led)",
+ "name": "Bruslařská dráha (led)",
"terms": "kluziště,ledová dráha,bruslení,sjezdovka,brusle"
},
"piste/nordic": {
@@ -7595,21 +9576,28 @@
"terms": "běžky,severské lyžování,sjezdovka,skate lyžování,lyžování,xc"
},
"piste/piste": {
- "name": "sjezdovka",
- "terms": "lyže,nordic,běh na lyžích,sjezd,alpský,snowboard,skitour,lyžařská turistika,sáňky,sáně,saně,sáňkování,ski-joring,husky,kůň,zimní turistika,sněžnice,výlety na sněžnicích,led,bruslení"
+ "name": "Stezka/sjezdovka pro sněžné sporty (nespecifikovaný druh)"
+ },
+ "piste/ski_jump": {
+ "name": "Sjezdovka pro skoky na lyžích",
+ "terms": "skok,skok na lyžích,skokanský můstek"
},
"piste/skitour": {
"name": "Lyžařská turistická stezka",
"terms": "lyže,lyžařský zájezd,běžky,lyžařské túry,sjezdovka"
},
"piste/sled": {
- "name": "sáňkařská dráha",
+ "name": "Sáňkařská dráha",
"terms": "bobová dráha,sáňky,sjezdovka,kostra,sáně,saně,tobogán"
},
"piste/sleigh": {
- "name": "zimní dráha pro spřežení",
+ "name": "Zimní dráha pro spřežení",
"terms": "psí spřežení,husky,kůň,sjezdovka,sáně,saně,ski-joring,skijoring"
},
+ "piste/take_off": {
+ "name": "Odrazová hrana skoku na lyžích",
+ "terms": "skok,skok na lyžích,start,odjezová,skok s lyžemi,hrana pro skoky na lyžích,hrana pro skoky s lyžemi"
+ },
"place": {
"name": "Místo"
},
@@ -7673,13 +9661,15 @@
"terms": "vesnice,obec,osada,malá obec,venkov,malá vesnice,víska,dědina,sídlo,sídlo venkovského typu,venkovská obec"
},
"playground": {
- "name": "dětské hřiště"
+ "name": "Vybavení dětského hřiště"
},
"playground/activitypanel": {
- "name": "Panel herních aktivit"
+ "name": "Panel herních aktivit",
+ "terms": "panel na hraní,panel na aktivity,tabule na aktivity,interaktivní tabule,nástěnná hra,nástěnná deska,aktivity panel"
},
"playground/aerialrotator": {
- "name": "Závěsný kolotoč"
+ "name": "Závěsný kolotoč",
+ "terms": "otočný věšák,točení ve vzduchu,cyklóna,zavěšené kolo"
},
"playground/balancebeam": {
"name": "Kladina",
@@ -7694,37 +9684,43 @@
"terms": "košík,houpačka,koš,košíková houpačka,houpačka s košem,houpací koš"
},
"playground/bridge": {
- "name": "Most na hraní"
+ "name": "Most na hraní",
+ "terms": "mostek,most,spojovací most,most na hraní"
},
"playground/climbingframe": {
"name": "Prolézačka",
"terms": "prolézačka,prolejzačka,žebřík,síť,šplhání,pavučina,opičí dráha,prolízačka,lanová hrací zařízení,lanový herní prvek,lanové parkury,pyramida z lanové sítě,šplhací,děti,dětské hřiště,zařízení dětského hřiště,lanové sestavy,lanové prvky"
},
"playground/climbingwall": {
- "name": "Hrací lezecká stěna"
+ "name": "Hrací lezecká stěna",
+ "terms": "lezecká stěna,horolezecká stěna,lezecká zeď,stěna na lezení"
},
"playground/cushion": {
- "name": "skákací polštář"
+ "name": "skákací polštář",
+ "terms": "skákací polštář,skákací hora,skákací kopec,nafukovací hora"
},
"playground/funnel_ball": {
- "name": "Trychtýř na funnel ball"
+ "name": "Trychtýř na funnel ball",
+ "terms": "trychtýř pro funnel ball,trychtýř na funnel ball,koš na funnel ball"
},
"playground/hopscotch": {
- "name": "Skákací panák"
+ "name": "Skákací panák",
+ "terms": "skákací panák,místo na skákání panáka,místo na skákacího panáka"
},
"playground/horizontal_bar": {
- "name": "hrazda",
+ "name": "Hrazda",
"terms": "závěsná hrazda,vysoká hrazda,visutá hrazda"
},
"playground/map": {
- "name": "Malovaná mapa hřiště"
+ "name": "Malovaná mapa hřiště",
+ "terms": "kreslená mapa na dětské hřiště,malovaná mapa na dětské hřiště"
},
"playground/playhouse": {
"name": "Domeček",
"terms": "dětské hřiště,děti,zařízení dětského hřiště,domeček,dětský domek,domek na hraní,hrací domeček"
},
"playground/roundabout": {
- "name": "kolotoč",
+ "name": "Kolotoč",
"terms": "točidlo"
},
"playground/sandpit": {
@@ -7732,13 +9728,16 @@
"terms": "pískoviště,písek,děti,hřiště,bábovičky"
},
"playground/seesaw": {
- "name": "Houpačka"
+ "name": "Houpačka",
+ "terms": "páková houpačka,houpačka"
},
"playground/sledding": {
- "name": "Kopec na sáňkování"
+ "name": "Kopec na sáňkování",
+ "terms": "sáňkovací kopec,kopec na sáňkování,kopeček na sáňkování,stráň na sáňkování"
},
"playground/slide": {
- "name": "Skluzavka"
+ "name": "Skluzavka",
+ "terms": "klouzačka,klužačka,kluzavka"
},
"playground/splash_pad": {
"name": "Stříkací bazének",
@@ -7749,26 +9748,32 @@
"terms": "houpačka,pružina,houpačka na pružině,koník na pružině,hřiště,děti,dětské hřiště,herní prvek"
},
"playground/structure": {
- "name": "prolézačka / větší objekt",
+ "name": "Prolézačka / větší objekt",
"terms": "prolézačky"
},
"playground/swing": {
- "name": "Houpačka"
+ "name": "Houpačka",
+ "terms": "houpačka,visutá houpačka,řetízková houpačka"
},
"playground/teenshelter": {
- "name": "Přístřešek pro dospívající"
+ "name": "Přístřešek pro děti",
+ "terms": "pristresek pro deti,dětský přístřešek,detsky pristresek,přístřešek pro teenagery,pristresek pro teenagery,přístřešek na hřisti,pristresek na hristi,přístřešek pro dospívající,pristresek pro dospivajici"
},
"playground/tetherball": {
- "name": "Tyč na tetherball"
+ "name": "Tyč na tetherball",
+ "terms": "tyč na tetherball,sloup na tetherball,sloupek na tetherball,sloup na indiánský tenis"
},
"playground/trampoline": {
- "name": "Trampolína"
+ "name": "Trampolína",
+ "terms": "trampolina,trampolína,skákací plocha"
},
"playground/tunnel_tube": {
- "name": "Hrací tunel"
+ "name": "Hrací tunel",
+ "terms": "tunel,tunel na prolézání,prolézací tunel"
},
"playground/water": {
- "name": "Hrací vodní pumpa/šroub"
+ "name": "Hrací vodní pumpa/šroub",
+ "terms": "vodní pumpa,dětská vodní pumpa,dětské čerpadlo"
},
"playground/zipwire": {
"name": "Dětská lanovka",
@@ -7783,7 +9788,7 @@
"terms": "kontrolní bod,hlídka,zátaras,namátková kontrola,zastávka"
},
"polling_station": {
- "name": "dočasná volební místnost/stanice",
+ "name": "Dočasná volební místnost/stanice",
"terms": "volební urna,odložení hlasovacích lístků,demokracie,volby,volební místnost,hlasování,volební kabina,hlasovací stroj"
},
"power": {
@@ -7793,14 +9798,15 @@
"name": "elektrický kabel"
},
"power/cable/underground": {
- "name": "Elektrický kabel pod zemí"
+ "name": "Elektrický kabel pod zemí",
+ "terms": "podzemní kabel,podzemní kabel elektrického vedení,podzemní silový kabel"
},
"power/catenary_mast": {
"name": "Sloup trolejového vedení",
"terms": "trolejový sloup,trolejový stožár,trolejové vedení"
},
"power/generator": {
- "name": "Generátor",
+ "name": "Generátor energie",
"terms": "generátor,elektrický generátor,elektrárna,zdroj proudu"
},
"power/generator/method/photovoltaic": {
@@ -7840,15 +9846,15 @@
"terms": "uhlí,plyn,generátor,vodní,nukleární,jaderná,elektrárna,tepelná"
},
"power/plant/source/coal": {
- "name": "uhelná elektrárna",
+ "name": "Uhelná elektrárna",
"terms": "uhlík,spalování,fosilní paliva,uhlí,elektrárna"
},
"power/plant/source/gas": {
- "name": "plynová elektrárna",
+ "name": "Plynová elektrárna",
"terms": "uhlík,spalování,fosilní paliva,plyn,elektrárna,zemní plyn"
},
"power/plant/source/hydro": {
- "name": "vodní elektrárna",
+ "name": "Vodní elektrárna",
"terms": "přehrada,elektrárna,průtok,příliv,vodní turbína"
},
"power/plant/source/method/photovoltaic": {
@@ -7856,7 +9862,7 @@
"terms": "fotovoltaická elektrárna,solární panely,solární park,solární zařízení v užitkovém měřítku"
},
"power/plant/source/nuclear": {
- "name": "jaderná elektrárna",
+ "name": "Jaderná elektrárna",
"terms": "atomová,štěpná,elektrárna,jaderný reaktor"
},
"power/plant/source/oil": {
@@ -7872,7 +9878,7 @@
"terms": "spalovna,spalovna odpadu,zevo,zařízení na energetické využití odpadu,zdroj elektřiny,elektrárna,spalování odpadu"
},
"power/plant/source/wind": {
- "name": "větrná elektrárna",
+ "name": "Větrná elektrárna",
"terms": "pobřežní vítr,větrný park,větrná elektrárna,větrná elektrárenská,větrné turbíny,větrné mlýny"
},
"power/pole": {
@@ -7891,6 +9897,10 @@
"name": "Odpojovač",
"terms": "spínač,vypínač"
},
+ "power/switchgear": {
+ "name": "Spínače",
+ "terms": "rozvodna,rozváděč"
+ },
"power/tower": {
"name": "Elektrický stožár",
"terms": "sloup vysokého napětí,vysoké napětí"
@@ -7900,15 +9910,15 @@
"terms": "transformátor,transformátorová stanice,elektrická stanice,adaptér"
},
"public_transport/platform": {
- "name": "nástupní hrana",
+ "name": "Nástupní hrana",
"terms": "nástupní hrana,nástupiště,mhd,hromadná doprava,veřejná doprava,městská hromadná doprava,místo pro čekání,autobus,bus,tram,zastávka,prostor zastávky"
},
"public_transport/platform/aerialway": {
- "name": "nástupní hrana lanové dráhy",
+ "name": "Nástupní hrana lanové dráhy",
"terms": "letecká dráha,lanovka,plošina,veřejná přeprava,veřejná doprava,přeprava,doprava"
},
"public_transport/platform/aerialway_point": {
- "name": "stanice lanové dráhy"
+ "name": "Stanice lanové dráhy"
},
"public_transport/platform/bus": {
"name": "Autobusové nástupiště",
@@ -7923,25 +9933,25 @@
"terms": "tram,tramvaj,šalina,bus,autobus,mhd,hromadná doprava,veřejná doprava,vhd,veřejná hromadná doprava,zastávka,stanoviště,nástupiště,zastavení,zastávka tramvaje a autobusu,tramvajová a autobusová zastávka"
},
"public_transport/platform/ferry": {
- "name": "nástupní hrana přívozu",
+ "name": "Nástupní hrana přívozu",
"terms": "loď,dok,trajekt,molo,plošina,veřejná přeprava,veřejná doprava,přeprava,doprava"
},
"public_transport/platform/ferry_point": {
- "name": "stanice přívozu"
+ "name": "Stanice přívozu"
},
"public_transport/platform/light_rail": {
- "name": "nástupní hrana lehké dráhy",
+ "name": "Nástupní hrana lehké dráhy",
"terms": "elektrický,lehká kolej,nástupiště,veřejná přeprava,veřejná doprava,kolejnice,dráha,tramvaj,trolejbus,přeprava,doprava"
},
"public_transport/platform/light_rail_point": {
- "name": "stanice lehké dráhy"
+ "name": "Stanice lehké dráhy"
},
"public_transport/platform/monorail": {
- "name": "nástupní hrana monorailu",
+ "name": "Nástupní hrana jednokolejky",
"terms": "jednokolejka,nástupiště,veřejná přeprava,veřejná doprava,železnice,přeprava,doprava"
},
"public_transport/platform/monorail_point": {
- "name": "stanice monorailu"
+ "name": "Stanice jednokolejky"
},
"public_transport/platform/subway": {
"name": "Nástupiště metra",
@@ -8035,34 +10045,34 @@
},
"public_transport/stop_position_bus": {
"name": "Místo zastavení autobusu",
- "terms": "místo zastavení autobusu,místo zastavení busu,autobus,bus,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,zastávka,pozice zastavení autobusu,zastavení busu"
+ "terms": "misto zastaveni autobusu,místo zastavení autobusu,zastaveni autobusu,autobus,bus,pozice zastavení autobusu,pozice zastaveni autobusu,zastavení busu,zastaveni busu"
},
"public_transport/stop_position_ferry": {
"name": "Místo zastavení trajektu/přívozu",
"terms": "místo zastavení trajektu,trajekt,přívoz,stanice,pozice zastavení trajektu,pozice přistavení trajektu,pozice zastavení přívozu,zastavení lodě,místo pro nalodění,místo pro vylodění"
},
"public_transport/stop_position_light_rail": {
- "name": "Místo zastavení lehké dráhy",
+ "name": "Zastávka lehké dráhy",
"terms": "místo zastavení lehké dráhy,lehká dráha,lehké metro,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,stanice,pozice zastavení lehké dráhy,zastavení vlaku lehké dráhy"
},
"public_transport/stop_position_monorail": {
- "name": "Místo zastavení jednokolejky",
+ "name": "Zastávka jednokolejky",
"terms": "místo zastavení monorailu,místo zastavení jednokolejky,místo zastavení vlaku monorailu,monorail,jednokolejná dráha,jednokolejka,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,stanice,místo zastavení nadzemky,pozice zastavení jednokolejky,zastavení vlaku monorailu"
},
"public_transport/stop_position_subway": {
"name": "Místo zastavení metra",
- "terms": "místo zastavení metra,metro,podzemní dráha,podzemka,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,stanice,pozice zastavení metra,zastavení vlaku metra"
+ "terms": "misto zastaveni metra,zastavení metra,zastaveni metra,metro,pozice zastavení metra,pozice zastaveni metra"
},
"public_transport/stop_position_train": {
"name": "Místo zastavení vlaku",
- "terms": "místo zastavení vlaku,železniční stanice,zastavení vlaku,vlak,kolej"
+ "terms": "misto zastaveni vlaku,zastavení vlaku,zastaveni vlaku"
},
"public_transport/stop_position_tram": {
- "name": "Místo zastavení tramvaje",
+ "name": "Tramvajová zastávka",
"terms": "místo zastavení tramvaje,tram,tramvaj,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,zastávka,pozice zastavení tramvaje,místo zastavení šaliny,šalina,šmirgl,místo zastavení šmirglu"
},
"public_transport/stop_position_trolleybus": {
- "name": "Místo zastavení trolejbusu",
+ "name": "Zastávka trolejbusu",
"terms": "místo zastavení trolejbusu,trol,trolejbus,trolley,trolej bus,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,zastávka,pozice zastavení trolejbusu"
},
"railway": {
@@ -8077,7 +10087,8 @@
"terms": "stop,stát,zaražení"
},
"railway/construction": {
- "name": "Železnice ve výstavbě"
+ "name": "Železnice ve výstavbě",
+ "terms": "železnice ve výstavbě,železnice v rekonstrukci"
},
"railway/crossing": {
"name": "Přechod přes železnici",
@@ -8107,7 +10118,7 @@
"terms": "tramvaj,lehká železnice,lehká dráha,tram,šalina,lehké metro"
},
"railway/milestone": {
- "name": "Železniční kilometrovník",
+ "name": "Železniční milník",
"terms": "milník,označení"
},
"railway/miniature": {
@@ -8115,11 +10126,11 @@
"terms": "miniaturní vlak,vláček,malý vlak,vláček pro děti,atrakce,železniční atrakce,okruh vláčku,vláčky"
},
"railway/monorail": {
- "name": "Kolej monorailu",
+ "name": "Kolej jednokolejky",
"terms": "jednokolejka,monorail,jednokolejná trať,trať monorailu,dráha monorailu,dráha jednokolejky,jedna kolej,vlak,dráha,mhd,veřejná doprava,železnice"
},
"railway/monorail/hanging": {
- "name": "Kolej zavěšeného monorailu",
+ "name": "Kolej zavěšené jednokolejky",
"terms": "zavěšený monorail,zavěšená dráha,monorail,jednokolejka"
},
"railway/narrow_gauge": {
@@ -8183,6 +10194,10 @@
"railway/tram_stop": {
"name": "Zastávka tramvaje"
},
+ "railway/turntable": {
+ "name": "Železniční točna",
+ "terms": "točna"
+ },
"railway/yard": {
"name": "seřaďovací nádraží",
"terms": "zastávka nákladního auta,nákladní vlakové nádraží,nákladní nádraží,kolejiště,nádraží"
@@ -8191,23 +10206,35 @@
"name": "Relace",
"terms": "relace,vztah,seznam,objekt"
},
+ "roller_coaster/station": {
+ "name": "Stanice horské dráhy",
+ "terms": "zábavní park,atrakce"
+ },
+ "roller_coaster/support": {
+ "name": "Pilíř horské dráhy",
+ "terms": "podpěra horské dráhy,podpůrná konstrukce horské dráhy"
+ },
+ "roller_coaster/track": {
+ "name": "Dráha horské dráhy",
+ "terms": "zábavní park,atrakce"
+ },
"route/ferry": {
"name": "Trasa trajektu",
"terms": "trajekt,trasa,linka,loď,trasa trajektu"
},
"seamark": {
- "name": "mořská bóje"
+ "name": "Plavební objekt"
},
"seamark/beacon_isolated_danger": {
"name": "Maják značící nebezpečí",
"terms": "maják izolované nebezpečí,izolované nebezpečí maják,iala"
},
"seamark/beacon_lateral": {
- "name": "maják v kanálu",
+ "name": "Maják v kanálu",
"terms": "boční maják,maják boční,cevni,značka kanálu,iala,boční značka"
},
"seamark/buoy_lateral": {
- "name": "bóje v kanálu",
+ "name": "Bóje v kanálu",
"terms": "boční bóje,bóje boční,cevni,značka kanálu,iala,boční značka"
},
"seamark/buoy_lateral/green": {
@@ -8219,39 +10246,40 @@
"terms": "boční bóje,bóje boční,cevni,značka kanálu,iala,boční značka"
},
"seamark/mooring": {
- "name": "Kotviště",
- "terms": "delfín,hromada,patník,bóje,pošta"
+ "name": "Kotvení",
+ "terms": "kotveni"
},
"shop": {
"name": "Obchod",
"terms": "obchod,prodej,nákup,stánek,market,obchodní,nákupní"
},
"shop/agrarian": {
- "name": "Farmářská prodejna",
+ "name": "Prodejna farmářských potřeb",
"terms": "zemědělské vstupy,zemědělské stroje,semena,pesticidy,hnojiva,zemědělské nástroje"
},
"shop/alcohol": {
"name": "Prodejna alkoholu",
- "terms": "alkohol,alkoholický"
+ "terms": "alkohol,alkoholické nápoje,alkoholicke napoje"
},
"shop/anime": {
- "name": "obchod s Anime / Manga",
+ "name": "Obchod s Anime / Mangou",
"terms": "manga,japonské,cosplay,figurína,dakimakura"
},
"shop/antiques": {
- "name": "Starožitnictví"
+ "name": "Starožitnictví",
+ "terms": "starožitnost,starožitnosti,antikvář,antikvity,antikvita,antikvariát"
},
"shop/appliance": {
- "name": "Prodejna spotřební elektroniky",
- "terms": "klimatizace,spotřebič,myčka,sušička,mraznička,lednička,gril,kuchyně,trouba,lednice,sporák,pračka,prací stroj"
+ "name": "Prodejna domácích spotřebičů",
+ "terms": "prodejna domacich spotrebicu,prodejna s domácími spotřebici,prodejna s domacimi spotrebici,obchod s domácími spotřebiči,obchod s domacimi spotrebici,domáci elektrospotřebiče,domaci elektrospotrebice,domácí spotrebice,domaci spotrebice,klimatizace,spotřebič,myčka,sušička,mraznička,lednička,gril,kuchyně,trouba,lednice,sporák,pračka,prací stroj"
},
"shop/art": {
"name": "Obchod s uměním",
"terms": "obchod s uměním,umění,galerie,umělecká galerie,prodejní galerie"
},
"shop/baby_goods": {
- "name": "Potřeby pro děti",
- "terms": "děti,dítě,miminko,mimino,plína,plíny,plínka,plínky,kojenecké potřeby,dětská výživa"
+ "name": "Obchod s potřebami pro děti",
+ "terms": "obchod s potrebami pro deti,potřeby pro děti,potreby pro deti,dětské potřeby,detske potreby,děti,deti,dítě,dite,miminko,mimino,plína,plíny,plínka,plínky,kojenecké potřeby,kojenecke potreby,dětská výživa,detksa vyziva"
},
"shop/bag": {
"name": "Obchod se zavazadly",
@@ -8262,8 +10290,12 @@
"terms": "chleba,dorty,rohlíky"
},
"shop/bathroom_furnishing": {
- "name": "Vybavení koupelen",
- "terms": "koupelna,koupelny,vybavení koupelen"
+ "name": "Obchod s vybavením do koupelny",
+ "terms": "obchod s vybavenim do koupelny,koupelna,koupelny,vybavení koupelny,vybaveni koupelny,obchod s koupelnami"
+ },
+ "shop/bbq": {
+ "name": "Potřeby na grilování",
+ "terms": "prodejna s grilovacími potřebami,potřeby na grilování,potřeby na barbecue,obchod s potřebami na grilování,barbecue obchod,obchod s grily,prodej grilů,prodejna grilů,grilovací potřeby"
},
"shop/beauty": {
"name": "Kosmetický salón",
@@ -8278,8 +10310,8 @@
"terms": "solární studio,solárka,opalovací studio,opalovačka,opalování"
},
"shop/bed": {
- "name": "Prodejna postelí",
- "terms": "postel,postele,matrace,lůžko,lůžka,spaní,spánek"
+ "name": "Prodejna postelí/matrací",
+ "terms": "prodejna posteli,prodejna s postelemi,obchod s postelemi,postel,postele,matrace,lůžko,lluzko,ůžka,luzka,spaní,spani,spánek,spanek"
},
"shop/beverages": {
"name": "Prodejna nápojů",
@@ -8298,14 +10330,15 @@
"terms": "sázková kancelář,sázky,sázení,kurzové sázení,bookmaker,sazka,tipsport,fortuna"
},
"shop/books": {
- "name": "Knihkupectví"
+ "name": "Knihkupectví",
+ "terms": "knihkupectvi,knihy,obchod s knihami"
},
"shop/boutique": {
"name": "Módní butik"
},
"shop/brewing_supplies": {
- "name": "pivovarnický obchod",
- "terms": "pivovar,obchod s domácími potřebami"
+ "name": "Obchod s potřebami pro výrobu piva/vína",
+ "terms": "pivovarnické potřeby,pivovarnicke potreby,pivovar,vinařské potřeby,vinarske potreby"
},
"shop/butcher": {
"name": "Řeznictví",
@@ -8328,19 +10361,19 @@
"terms": "prodejna aut,autosalón,autobazar"
},
"shop/car/second_hand": {
- "name": "autobazar",
+ "name": "Autobazar",
"terms": "automobil,automobilový průmysl"
},
"shop/car_parts": {
- "name": "Náhradní díly pro auta",
- "terms": "prodejna autodílů,autodíly,automobilový,auto"
+ "name": "Obchod s náhradními díly pro auta",
+ "terms": "obchod s nahradnimi dily,náhradní díly,nahradni dily,prodejna autodílů,autodíly,autodily,automobilový,auto"
},
"shop/car_repair": {
"name": "Autoopravna",
"terms": "opravna aut,autoservis,servis,pneuservis,opravna"
},
"shop/caravan": {
- "name": "prodejna karavanů",
+ "name": "Prodejna karavanů",
"terms": "auto,karavan,rekreační vozidlo"
},
"shop/carpet": {
@@ -8348,7 +10381,8 @@
"terms": "koberce,koberec,podlahové,podlahový,krytina,krytiny"
},
"shop/catalogue": {
- "name": "katalogový obchod"
+ "name": "Katalogový obchod",
+ "terms": "prodejní katalog,katalogový obchod,zásilkový prodej"
},
"shop/charity": {
"name": "Charitativní obchod",
@@ -8367,16 +10401,16 @@
"terms": "čokoláda,čokolády,čokoládovna,cukrářství,cukrář"
},
"shop/clothes": {
- "name": "Oblečení",
- "terms": "oděvy,oděv,šaty,oblečení,obchod s oblečením,móda,módní"
+ "name": "Obchod s oblečením",
+ "terms": "obchod s oblecenim,oděvy,odevy,oděv,odev,šaty,saty,oblečení,obleceni,móda,moda,módní,modni,butik"
},
"shop/clothes/second_hand": {
- "name": "second-hand oblečení",
+ "name": "Second-hand oblečení",
"terms": "halenky,oděvy,zásilka,šaty,kalhoty,second hand,košile,šortky,sukně,obleky,použité"
},
"shop/clothes/suits": {
- "name": "Obleky",
- "terms": "byznysmen,vázanka,kravata"
+ "name": "Obchod s pánským společenským oblečením",
+ "terms": "obchod s panskym spolecenskym oblecenim,společenské oblečení,spolecenske obleceni,společenské oděvy,spolecenske odevy,oblečení,obleceni,oděvy,odevy,byznysmen,vázanka,kravata"
},
"shop/clothes/underwear": {
"name": "Prodejna spodního prádla",
@@ -8387,8 +10421,8 @@
"terms": "butik,nevěsta,nevěsty,ženich,družička,ženichové,družičky,manželské oblečení,smoking,svatební šaty,svatební oblek"
},
"shop/clothes/workwear": {
- "name": "Pracovní oděvy",
- "terms": "řemeslník,bezpečná obuv"
+ "name": "Obchod s pracovními oděvy",
+ "terms": "obchod s pracovnimi odevy,pracovní oděvy,pracovni odevy,řemeslník,remeslnik,bezpečná obuv,bezpecna odev,bezpečnostní obuv,bezpecnostni obuv"
},
"shop/coffee": {
"name": "Obchod prodávající kávu",
@@ -8399,16 +10433,16 @@
"terms": "sběratelské potřeby,sběratelství,obchod se známkami,obchod se sběratelskými předměty,známky,mince,komix,panenky,antikvariát,filaterista,filaterie,razítka,sběratelský,sbírat"
},
"shop/computer": {
- "name": "Počítače",
+ "name": "Obchod s počítači",
"terms": "obchod s výpočetní technikou,počítače,elektro,elektronika,výpočetní technika"
},
"shop/confectionery": {
- "name": "Cukrovinky",
- "terms": "cukrovinky,cukrovinka,cukrář,cukrářství"
+ "name": "Obchod s cukrovinkami",
+ "terms": "cukrovinky,cukrovinka,bonbóny,bonbony"
},
"shop/convenience": {
- "name": "Smíšené zboží",
- "terms": "smíšené zboží,krám,obchod,potraviny,večerka"
+ "name": "Obchod se smíšeným zbožím / Potraviny",
+ "terms": "obchod se smisenym zbozim,smíšené zboží,smisene zbozi,krám,kram,obchod,obchod s potravinami,potraviny,večerka,vecerka"
},
"shop/copyshop": {
"name": "Kopírování",
@@ -8419,7 +10453,8 @@
"terms": "kosmetika,kosmetický,makeup,parfém,parfumerie"
},
"shop/country_store": {
- "name": "Venkovské potřeby"
+ "name": "Venkovské potřeby",
+ "terms": "zemědělské potřeby,zemědělské a chovatelské potřeby,hospodářské potřeby,potřeby pro dům a zahradu,domácí potřeby,pěstitelské potřeby"
},
"shop/craft": {
"name": "Obchod s uměleckými a řemeslnými potřebami",
@@ -8446,7 +10481,8 @@
"terms": "obchod pro kutily,stavební materiál,stavebniny,staviva,potřeby pro kutily,zahradní potřeby,železářství,kutil,hobby"
},
"shop/doors": {
- "name": "Prodejna dveří"
+ "name": "Prodejna dveří",
+ "terms": "prodej dveří,prodej dveří a zárubní,dveře,dveře a zárubně"
},
"shop/dry_cleaning": {
"name": "Čistírna",
@@ -8457,12 +10493,12 @@
"terms": "elektronické,cigarety,kouřit,kouř"
},
"shop/electrical": {
- "name": "Prodejna elektoniky",
- "terms": "kabel,elektrický,ventilátor,vedení,osvětlení,napájení,drát"
+ "name": "Obchod s elektrotechnickými potřebami",
+ "terms": "obchod s elektrotechnickymi potrebami,elektrotechnické potřeby,elektrotechnicke potreby,kabel,elektrický,vedení,vedeni,napájení,napajeni,drát,drat"
},
"shop/electronics": {
- "name": "Elektro",
- "terms": "spotřebič,audio,blueray,fotoaparát,počítač,dvd,domácí kino,rádio,reproduktor,televize,video"
+ "name": "Obchod s elektronikou",
+ "terms": "elektronika,spotřebič,audio,blueray,fotoaparát,počítač,dvd,domácí kino,rádio,reproduktor,televize,video"
},
"shop/erotic": {
"name": "Sex shop",
@@ -8473,8 +10509,8 @@
"terms": "sex,porno"
},
"shop/fabric": {
- "name": "Obchod s textilem",
- "terms": "textil,textilní,látka,látky,bytový textil,metrový textil"
+ "name": "Obchod s metrovým textilem",
+ "terms": "obchod s metrovym textilem,textil,textilní,látka,latka,látky,bytový textil,bytovy textil,metrový textil,metrovy textil"
},
"shop/farm": {
"name": "Stánek s ovocem, zeleninou",
@@ -8488,7 +10524,7 @@
"terms": "taška,kolínská voda,vůně,klobouk,šperky,parfém,peněženka,šátek,sluneční brýle,deštník,náprsní taška,hodinky"
},
"shop/fireplace": {
- "name": "prodej krbů a kamen",
+ "name": "Prodej krbů a kamen",
"terms": "krb,kamna,zděné topení"
},
"shop/fishing": {
@@ -8497,7 +10533,7 @@
},
"shop/flooring": {
"name": "Podlahové krytiny",
- "terms": "dlaždice"
+ "terms": "podlahářské potřeby,podlahy,koberce,lina,pvc,nářadí pro podlaháře,dlaždice,dlažba"
},
"shop/florist": {
"name": "Květinářství",
@@ -8512,18 +10548,19 @@
"terms": "obchod s mraženými potravinami,mražené potraviny,mražené jídlo,mrazák,zmražené,zmrazit,potraviny,obchod"
},
"shop/fuel": {
- "name": "Obchod s palivem"
+ "name": "Obchod s palivem",
+ "terms": "prodej paliv,obchod s palivy"
},
"shop/funeral_directors": {
"name": "Pohřební služba",
- "terms": "pohřební služba,pohřebák,hřbitovní služby,hřbitovní služba,hrobař"
+ "terms": "pohřebák,hřbitovní služby,hřbitovní služba,hrobař"
},
"shop/furniture": {
- "name": "Nábytek",
- "terms": "obchod s nábytkem,nábytek,domácnost"
+ "name": "Obchod s nábytkem",
+ "terms": "obchod s nabytkem,nábytek,domácnost"
},
"shop/games": {
- "name": "deskové hry",
+ "name": "Deskové hry",
"terms": "desková hra,karetní hra,hra s kostkami,obchod s hrami,larp,živá akční hra na hrdiny,miniaturní válečná hra,hraní rolí,strategická hra,válečná hra"
},
"shop/garden_centre": {
@@ -8535,21 +10572,33 @@
"terms": "cng,lpg,svítiplyn,zemní plyn,propan,butan,doplnit,zásobník"
},
"shop/general": {
- "name": "smíšené zboží",
- "terms": "maloměstský obchod,vesnický obchod"
+ "name": "Obchod se smíšeným zbožím",
+ "terms": "obchod se smisenym zbozim,smíšené zboží,smisene zbozi,maloměstský obchod,vesnický obchod,vesnicky obchod,obchod s různým zbožím,obchod s ruznym zbozim,různé zboží,ruzne zbozi"
},
"shop/gift": {
"name": "Dárky, suvenýry",
"terms": "obchod s dárky,suvenýry"
},
+ "shop/gold_buyer": {
+ "name": "Zlatokupec",
+ "terms": "výkup zlata,starožitnictví,zlatnictví,zastavárna"
+ },
"shop/greengrocer": {
"name": "Ovoce a zelenina",
"terms": "zelinář,zelinářství,prodejna zeleniny,zelenina,ovoce,ovoce a zelenina"
},
+ "shop/groundskeeping": {
+ "name": "Prodejna potřeb pro zahradníky",
+ "terms": "zahradnictví,potřeby pro zahradníky,potřeby pro zahrádkáře,potřeby pro trávníkáře,hnojiva,osiva,zahradnické potřeby,zemědělské potřeby"
+ },
"shop/hairdresser": {
"name": "Kadeřnictví",
"terms": "kadeřník,holič,vizážista,kadeřnictví"
},
+ "shop/hairdresser/barber": {
+ "name": "Holičství",
+ "terms": "vousy,knír,holit,holení,kadeře,kadeřnictví,holicí strojek,kadeřník,stříhání vlasů"
+ },
"shop/hairdresser_supply": {
"name": "Kadeřnické potřeby",
"terms": "holič,holící strojek,šampon,holítko,kondicionér"
@@ -8575,8 +10624,11 @@
"terms": "obchod se zvukovými systémy,obchod s ozvučením,ozvučení,hifi"
},
"shop/hobby": {
- "name": "Obchod s potřebami pro volný čas",
- "terms": "manga,figurína,model"
+ "name": "Obchod s potřebami pro volný čas"
+ },
+ "shop/honey": {
+ "name": "Obchod s medem",
+ "terms": "prodej medu,prodej včelích produktů"
},
"shop/household_linen": {
"name": "Bytový textil",
@@ -8587,8 +10639,8 @@
"terms": "domácí potřeby,kuchyňské potřeby,potřeby pro domácnost,nádobí"
},
"shop/hunting": {
- "name": "Lovecké potřeby",
- "terms": "šípy,luky,kulky,kuše,pušky,pasti"
+ "name": "Obchod s mysliveckými potřebami",
+ "terms": "obchod s mysliveckymi potrebami,myslivecké potřeby,myslivecke potreby,lovecké potřeby,lovecke potreby,myslivecký obchod,myslivecky obchod,šípy,luky,kulky,kuše,pušky,pasti"
},
"shop/interior_decoration": {
"name": "Obchod s bytovými doplňky",
@@ -8611,11 +10663,12 @@
"terms": "prádelna,čistírna,prádlo"
},
"shop/laundry/self_service": {
- "name": "Samoobslužná prádelna"
+ "name": "Samoobslužná prádelna",
+ "terms": "samoobslužná prádelna,automatická prádelna"
},
"shop/leather": {
- "name": "Kožené zboží",
- "terms": "kožený,kožená,kožené,kůže,useň,usňový,usňová,usňové"
+ "name": "Obchod s koženým zbožím",
+ "terms": "obchod s kozenym zbozim,kožené zboží,kozene zbozi,kožený,kožená,kůže,useň,usňový,usňová,usňové"
},
"shop/lighting": {
"name": "Prodejna osvětlení",
@@ -8638,17 +10691,21 @@
"terms": "masáž,masáže,masér,masérka,masírování,masírovat,massage"
},
"shop/medical_supply": {
- "name": "Zdravotnické potřeby",
- "terms": "zdravotnické potřeby,zdravotní potřeby,ortopedické pomůcky"
+ "name": "Obchod se zdravotnickými potřebami",
+ "terms": "obchod se zdravotnickymi potrebami,zdravotnické potřeby,zdravotnicke potreby,zdravotní potřeby,zdravotni potreby,ortopedické pomůckyortopedicke pomucky"
},
"shop/military_surplus": {
- "name": "armádní výprodej",
+ "name": "Armádní výprodej",
"terms": "brnění,obchod pro armádu a námořnictvo,přebytky armády,přebytky v námořnictvu,taktické vybavení,obchod s válečnými přebytky,zbraně"
},
"shop/mobile_phone": {
"name": "Obchod s mobily",
"terms": "obchod s mobilními telefony,přenosné telefony,mobil,telefon"
},
+ "shop/mobile_phone_accessories": {
+ "name": "Obchod s příslušenstvím pro mobilní telefony",
+ "terms": "obchod s mobilními telefony,obchod s mobily,obchod s telefony,obchod s věcmi pro telefony,telefony,mobily,příslušenství k telefonům,příslušenství k mobilům,obaly na mobil,pouzdra na mobil,sluchátka k mobilu,nabíječky na mobil"
+ },
"shop/model": {
"name": "Modelářský obchod",
"terms": "modelářství,modelářský obchod,modelářské potřeby,modely,stavebnice,modely v měřítku,miniatury,modely letadel,modely aut,koníček,hobby,modely budov,stavebnice modelů,modelová železnice,mašinky"
@@ -8681,16 +10738,20 @@
"name": "Obchod s potravními doplňky",
"terms": "doplňky stravy,potravní doplňky,doplňky potravy,potravinové doplňky,doplňky výživy,výživové doplňky,nutraceutika,supplementy,vitamíny,minerály,léky"
},
+ "shop/nuts": {
+ "name": "Obchod s oříšky",
+ "terms": "mandle,kešu,brazilské ořechy,kaštany,kokosy,sušené ovoce,lískové ořechy,makadamie,ořechy,arašídy,pekanové ořechy,pistácie,semena,vlašské ořechy"
+ },
"shop/optician": {
"name": "Optika",
"terms": "optik,optika,brýle,zrak,kontaktní čočky,čočky"
},
"shop/outdoor": {
- "name": "Outdoorové zboží",
- "terms": "outdoor,outdoorový,outdoorová,outdoorové,kempování,kempingové,horolezecký,horolezecké,sport,sportovní,příroda,přírody"
+ "name": "Obchod s outdoorovým zbožím",
+ "terms": "obchod s outdoorovym zbozim,outdoorové zboží,outdoorove zbozi,outdoor,outdoorový,outdoorová,kempování,kempingové,horolezecký,horolezecké,sport,sportovní,příroda,přírody"
},
"shop/outpost": {
- "name": "výdejna e-shopu",
+ "name": "Výdejna e-shopu",
"terms": "online,vyzvednutí,vyzvednout"
},
"shop/paint": {
@@ -8698,15 +10759,20 @@
"terms": "barva,barvy,nátěr,nátěry,lak,laky"
},
"shop/party": {
- "name": "párty zboží",
+ "name": "Párty zboží",
"terms": "balonky,kostýmy,dekorace,pozvánky"
},
+ "shop/pasta": {
+ "name": "Obchod s těstovinami",
+ "terms": "čerstvé těstoviny,ravioly,špagety"
+ },
"shop/pastry": {
"name": "Cukrárna",
"terms": "cukrářství,dorty"
},
"shop/pawnbroker": {
- "name": "Zastavárna"
+ "name": "Zastavárna",
+ "terms": "zastavárna,bazar,vetešnictví,vetešník"
},
"shop/perfumery": {
"name": "Parfumerie",
@@ -8717,7 +10783,7 @@
"terms": "obchod pro domácí zvířata,obchod pro domácí mazlíčky,zverimex"
},
"shop/pet_grooming": {
- "name": "zvířecí salon",
+ "name": "Zvířecí kadeřník",
"terms": "kočka,pes"
},
"shop/photo": {
@@ -8725,15 +10791,15 @@
"terms": "fotografie,fotografický obchod,foto,fotoobchod,video,vyvolávání,tisk,film,filmy,fotostudio,studio,fotoaparát,digitální,digitál,střih,ateliér,objektiv"
},
"shop/pottery": {
- "name": "keramika",
+ "name": "Obchod s keramikou",
"terms": "keramika,hrnec,váza"
},
"shop/printer_ink": {
- "name": "barvy do tiskáren",
- "terms": "inkoust do kopírek,inkoust pro fax,inkoustové kazety,toner"
+ "name": "Obchod s barvami do tiskáren",
+ "terms": "tiskařské barvy,tiskarské barvy,inkoust do kopírek,inkoust do kopirek,inkoust pro fax,inkoustové kazety,inkoustove kazety,toner,cartridge,náplně do tiskáren,naplne do tiskaren"
},
"shop/psychic": {
- "name": "věštírna",
+ "name": "Věštírna",
"terms": "astrologie,křišťálová koule,věštění,vypravěč,věštec,duch"
},
"shop/pyrotechnics": {
@@ -8745,16 +10811,21 @@
"terms": "elektrotechnika,elektronický,elektrický,elektro,radiotechnika,radioamatér"
},
"shop/religion": {
- "name": "Náboženské předměty",
- "terms": "náboženství,náboženský,duchovní,křesťanský,katolický"
+ "name": "Obchod s náboženskými předměty",
+ "terms": "obchod s nabozenskymi predmety,náboženství,nabozenstvi,náboženský,nabozensky,duchovní,duchovni,křesťanský,krestansky,katolický,katolicky,náboženské předměty,nabozenske predmety"
},
"shop/rental": {
- "name": "půjčovna"
+ "name": "půjčovna",
+ "terms": "půjčovna,půjčování,výpůjčky,zápůjčky"
},
"shop/repair": {
"name": "Opravna",
"terms": "opravna,servis,opravář,náhradní díly,dílna,oprava rozbitého"
},
+ "shop/rice": {
+ "name": "Obchod s rýží",
+ "terms": "prodej rýže,rýžový obchod,rýže"
+ },
"shop/scuba_diving": {
"name": "Potřeby pro potápěče",
"terms": "potápění,potápěč,scuba,potapěč,šnorchl"
@@ -8765,7 +10836,7 @@
},
"shop/second_hand": {
"name": "Second hand",
- "terms": "bazarové,přeprodej,použité"
+ "terms": "bazar,přeprodej,preprodej,použité zboží,pouzite zbozi"
},
"shop/sewing": {
"name": "Šicí potřeby, galanterie",
@@ -8777,19 +10848,19 @@
},
"shop/shoes": {
"name": "Obuvnictví",
- "terms": "dům obuvi,boty,obuvnictví,obuvník,švec"
+ "terms": "obuvnictvi,obchod s obuví,obchod s obuvi,dům obuvi,dum obuvi,boty"
},
"shop/spices": {
- "name": "koření, bylinky",
+ "name": "Koření, bylinky",
"terms": "chilli,skořice,kari,zázvor,bylinky,pepř,šafrán,sůl,obchod s kořením,koření,kurkuma,wasabi"
},
"shop/sports": {
- "name": "Sportovní potřeby",
- "terms": "sport,obchod se sportovními potřebami,sportovní potřeby,vybavení pro sport"
+ "name": "Obchod se sportovními potřebami",
+ "terms": "sport,obchod se sportovnimi potrebami,sportovní potřeby,sportovni potreby,vybavení pro sport,vybaveni pro sport"
},
"shop/stationery": {
- "name": "Kancelářské potřeby",
- "terms": "papírnictví,papír,kancelářské potřeby,papírnické zboží,psací potřeby"
+ "name": "Obchod s kancelářskými potřebami",
+ "terms": "obchod s kancelarskymi potrebami,papírnictví,papirnictvi,papír,papir,kancelářské potřeby,kancelarske potreby,papírnické zboží,papirnicke zbozi,psací potřeby,psaci potreby"
},
"shop/storage_rental": {
"name": "Skladovací prostor",
@@ -8804,8 +10875,8 @@
"terms": "supermarket,obchod,přírodní produkty,bioprodukty,bio,eko,biopotraviny"
},
"shop/swimming_pool": {
- "name": "bazény",
- "terms": "obchod s vybavením pro vířivky,obchod s údržbou vířivek,obchod s potřebami pro vířivky,obchod s bazény,bazény,obchod s vybavením pro bazény,obchod s instalací bazénů,obchod s údržbou bazénů,obchod s potřebami pro bazény"
+ "name": "Obchod s bazény",
+ "terms": "obchod s vybavením pro vířivky,obchod s údržbou vířivek,obchod s potřebami pro vířivky,obchod s bazeny,bazény,obchod s vybavením pro bazény,obchod s instalací bazénů,obchod s údržbou bazénů,obchod s potřebami pro bazény"
},
"shop/tailor": {
"name": "Krejčovství",
@@ -8820,56 +10891,60 @@
"terms": "čaj,čaje,čajovna,čajírna"
},
"shop/telecommunication": {
- "name": "telekomunikační prodejna",
- "terms": "komunikace,poskytovatel internetové služby,isp,síť,telefon,hlas"
+ "name": "Obchod s telekomunikačními službami",
+ "terms": "operátor,operator,mobilní operátor,mobilni operator,komunikace,poskytovatel internetového připojení,internetové připojení,internetove pripojeni,isp,síť,telefon,hlas,kabelová televize,kabelova televize,optický internet,opticky internet"
},
"shop/ticket": {
"name": "Prodejna vstupenek",
"terms": "vstupenka,vstupenky,vstupenek,předprodej,lístek,lístky,jízdenka,jízdenky"
},
"shop/tiles": {
- "name": "Obchod s obklady"
+ "name": "Obchod s obklady",
+ "terms": "obklady,dlažby,kachličky,kachle,obklad,dlažba"
},
"shop/tobacco": {
"name": "Kuřácké potřeby",
"terms": "kuřácké potřeby,potřeby pro kuřáky,kuřák,kuřáci,kouření,tabák,doutník,dýmky,dýmka,cigarety,cigareta"
},
"shop/tool_hire": {
- "name": "půjčovna nářadí"
+ "name": "půjčovna nářadí",
+ "terms": "půjčovna nářadí,půjčovna vybavení,půjčovna nástrojů"
},
"shop/toys": {
"name": "Hračkářství",
- "terms": "hračky,hry"
+ "terms": "hračky,hracky,hry,obchod s hračkami,obchod s hrackami,prodejna hraček,prodejna hracek"
},
"shop/trade": {
- "name": "stavebniny"
+ "name": "Obchodník",
+ "terms": "obchodnik,obchod s materiálem,obchod s materialem,velkoobchod s materiálem,velkoobchod s materialem,stavebniny,řezivo,rezivo,hutní materiál,hutni material,stavební materiál,stavebni material"
},
"shop/travel_agency": {
"name": "Cestovní kancelář",
- "terms": "cestovní kancelář,cestovka,cestování,dovolená"
+ "terms": "cestovní kancelář,cestovní agentura,cestovni agenturacestovka,cestování,dovolená"
},
"shop/trophy": {
"name": "Prodejna trofejí",
"terms": "obchod,prodejna,trofej,rofeje,poháry,medaile,diplomy,ocenění,ceny,rytí,rytiny,pamětní desky,plakety,rytí nápisů,rytec"
},
"shop/tyres": {
- "name": "Pneuservis",
- "terms": "prodejna pneumatik,pneumatiky,pneuservis"
+ "name": "Obchod s pneumatikami",
+ "terms": "prodejna pneumatik,pneumatiky"
},
"shop/vacant": {
- "name": "Neobsazený obchod"
+ "name": "Neobsazený obchod",
+ "terms": "prázdný obchod,neobsazený obchod"
},
"shop/vacuum_cleaner": {
"name": "Obchod s vysavači",
- "terms": "vysavač,vysavače,vysávat,lux,luxovat"
+ "terms": "vysavač,vysavac,vysavače,vysavace,vysávat,vysavat,lux,luxovat"
},
"shop/variety_store": {
- "name": "Diskontní prodejna",
- "terms": "za pár babek,za bura"
+ "name": "Obchod s levným zbožím",
+ "terms": "obchod s levnym zbozim,všechno za dolar,vsechno za dolar,za pár babek,za par babek,za bura,levné zboží,levne zbozi,prodejna s levným zbožím,prodejna s levnym zbozim"
},
"shop/video": {
- "name": "Video obchod",
- "terms": "videopůjčovna,videokazety,videokazeta,dvd"
+ "name": "Obchod s videi / Videopůjčovna",
+ "terms": "videopůjčovna,videopujcovna,videokazety,videokazeta,dvd"
},
"shop/video_games": {
"name": "Obchod s videohrami",
@@ -8880,7 +10955,8 @@
"terms": "hodiny,hodinky,čas"
},
"shop/water": {
- "name": "Obchod s pitnou vodou"
+ "name": "Obchod s pitnou vodou",
+ "terms": "prodej pitné vody,prodej vody,prodej balené vody,obchod s pitnou vodou,obchod s balenou vodou"
},
"shop/water_sports": {
"name": "Plavecké potřeby",
@@ -8891,8 +10967,8 @@
"terms": "zbraně,střelivo,pistole,pušky,puška,nůž,nože,army"
},
"shop/wholesale": {
- "name": "Velkoobchodní sklad",
- "terms": "skladiště,zaplať a odvez"
+ "name": "Velkoobchod",
+ "terms": "zaplať a odvez,zaplat a odvez,cash and carry,cash & carry"
},
"shop/wigs": {
"name": "Paruky",
@@ -8907,7 +10983,7 @@
"terms": "vinotéka,víno,vinárna,vinařství,vino"
},
"shop/yes": {
- "name": "Obchod (nespecifikovaný typ)"
+ "name": "Obchod (nespecifikovaný druh)"
},
"telecom": {
"name": "Telekomunikační prvek"
@@ -8917,15 +10993,15 @@
"terms": "úložiště počítačových systémů,informační technologie,serverová firma,cloudové úložiště,telekomunikace"
},
"telecom/exchange": {
- "name": "telekomunikační ústředna",
+ "name": "Telekomunikační ústředna",
"terms": "telekomunikace,telekomunikační,ústředna,přepojení,přepojovna,objekt telekomunikací,telefon,telefonní"
},
"tourism": {
"name": "Turistický prvek"
},
"tourism/alpine_hut": {
- "name": "Horský srub",
- "terms": "chata,horolezecká chata,ubytování,ubytování přes noc,útočiště,chata na divočinu"
+ "name": "Horská chata",
+ "terms": "horska chata,vysokohorská chata,vysokohorska chata,chata,horolezecká chata,ubytování,ubytování přes noc,útočiště"
},
"tourism/apartment": {
"name": "Byt/apartmán k pronájmu",
@@ -8964,11 +11040,11 @@
"terms": "sochařství,figura,řezba"
},
"tourism/attraction": {
- "name": "Pamětihodnost",
- "terms": "pamětihodnost,turistická atrakce,turistická zajímavost,turistické lákadlo,atrakce,zajímavost,lákadlo"
+ "name": "Turistická atrakce",
+ "terms": "turisticka atrakce,pamětihodnost,pametihodnost,turistická zajímavost,turisticka zajimavost,turistické lákadlo,atrakce,zajímavost,lákadlo"
},
"tourism/camp_pitch": {
- "name": "místo pro stan/karavan",
+ "name": "Místo pro stan/karavan",
"terms": "stan,obytný vůz"
},
"tourism/camp_site": {
@@ -8976,11 +11052,11 @@
"terms": "stan,tábor,tábořiště,obytný vůz,karavan,karavany"
},
"tourism/camp_site/backcountry": {
- "name": "plocha pro kempování v divočině",
+ "name": "Plocha pro kempování v divočině",
"terms": "alpské kempování,místo pro batohy,kempování u lesa,tábořit,místo pro stan,táboření,tábořiště,kemp,neformální kempování,primitivní kempování"
},
"tourism/camp_site/group_only": {
- "name": "plocha pro skupinové kempování",
+ "name": "Plocha pro skupinové kempování",
"terms": "tábořit,místo pro stan,táboření,tábořiště,kemp,tábořiště pro skauty,táboření pro mládež"
},
"tourism/caravan_site": {
@@ -8988,8 +11064,8 @@
"terms": "místo pro karavany,kemp,camp,camping,karavan"
},
"tourism/chalet": {
- "name": "Prázdninová vesnice",
- "terms": "chata,prázdninová dřevostavba,prázdninový domek,srub,ubytování ve srubu,ubytování,přenocování,ubytování přes noc,dřevostavba,domek"
+ "name": "Prázdninová chata",
+ "terms": "prazdninova chata,chata,prázdninová dřevostavba,prázdninový domek,srub,ubytování ve srubu,ubytování,přenocování,ubytování přes noc,dřevostavba,domek,chalupa,dřevěnice,drevenice"
},
"tourism/gallery": {
"name": "Galerie umění",
@@ -9021,21 +11097,23 @@
},
"tourism/information/guidepost": {
"name": "Rozcestník",
- "terms": "rozcestí"
+ "terms": "rozcestnik,rozcestí,rozcesti"
},
"tourism/information/map": {
- "name": "Mapa"
+ "name": "Mapa",
+ "terms": "mapa,tabule s mapou,plán,turistická mapa,cykloturistická mapa"
},
"tourism/information/office": {
- "name": "Návštěvnické centrum",
- "terms": "turistické informační centrum,turistické středisko,informace,turismus,turista,návštěvník,návštěvníci,návštěvnické středisko"
+ "name": "Turistické informační centrum",
+ "terms": "turisticke informacni centrum,turisticko-informační centrum,turisticko-informacni centrum,tic,tik,turistická informační kancelář,turisticka informacni kancelar,informační centrum,informacni centrum,informace,turismus,turista"
},
"tourism/information/route_marker": {
- "name": "turistická značka",
+ "name": "Turistická značka",
"terms": "mohyla,malovaný požár,vlajka na trase,značka na cestě,kamenná hromada,požár stezky,traťový sloupek,značka cesty"
},
"tourism/information/terminal": {
- "name": "informační panel/terminál"
+ "name": "Informační panel/terminál",
+ "terms": "informační terminál,informační obrazovka,informační monitor,informační interaktivní panel,informační terminál s přístupem na internet"
},
"tourism/motel": {
"name": "Motel",
@@ -9046,7 +11124,7 @@
"terms": "knihovna,galerie,výstavní,muzeum,repozitář,depozitář,archiv,sklad,lapidárium"
},
"tourism/museum/history": {
- "name": "historické muzeum",
+ "name": "Historické muzeum",
"terms": "artefakty,dioráma,exponáty,výstavy,nadace,síň,instituce"
},
"tourism/picnic_site": {
@@ -9058,7 +11136,8 @@
"terms": "zábavní park,pouť,lunapark,atrakce,kolotoč"
},
"tourism/trail_riding_station": {
- "name": "Stanice jízdy na koni"
+ "name": "Stanice koňské turistiky",
+ "terms": "dočasné ubytování pro koně a jezdce,ustájení koní,ubytování pro koně"
},
"tourism/viewpoint": {
"name": "Výhled",
@@ -9066,23 +11145,23 @@
},
"tourism/wilderness_hut": {
"name": "Chata v divočině",
- "terms": "horská chata,bivak,bivakovací box,biwakschachtel,kajuta,chata,ubytování,přenocování,útočiště,přístřešek na spaní"
+ "terms": "chata v divocine,horská chata,horska chata,bivak,bivakovací box,biwakschachtel,kajuta,chata,ubytování,přenocování,útočiště,přístřešek na spaní,nouzové přespání,nouzove prespani"
},
"tourism/zoo": {
"name": "ZOO",
"terms": "zoologická zahrada,zvířata"
},
"tourism/zoo/petting": {
- "name": "dětská zoo",
+ "name": "Dětská zoo",
"terms": "dětská zoo,dětská farma,farma pro domácí mazlíčky,hospodářská zvířata"
},
"tourism/zoo/safari": {
- "name": "safari park",
+ "name": "Safari park",
"terms": "průjezdná zoo,průjezd zoo"
},
"tourism/zoo/wildlife": {
- "name": "obora s divokými zvířaty",
- "terms": "domorodá zvířata"
+ "name": "Park s divokými zvířaty",
+ "terms": "park s divokymi zviraty,domorodá zvířata"
},
"traffic_calming": {
"name": "Zklidňování dopravy",
@@ -9114,7 +11193,7 @@
},
"traffic_calming/island": {
"name": "Dopravní ostrůvek",
- "terms": "kruhák,kruháč,kulaťák,kruhový objezd,pomalu,zpomalit"
+ "terms": "kruhák,kruhový objezd,zpomalovák"
},
"traffic_calming/mini_bumps": {
"name": "Minimální povolená rychlost",
@@ -9129,7 +11208,7 @@
"terms": "zpomalovací stůl,rychlostní stůl"
},
"traffic_calming/yes": {
- "name": "Zklidňování dopravy (nespecifikovaný typ)"
+ "name": "Zklidňování dopravy (nespecifikovaný druh)"
},
"traffic_sign": {
"name": "Dopravní značka",
@@ -9147,6 +11226,9 @@
"name": "Proměnlivé dopravní značení",
"terms": "měnící se nápis,značka dynamické zprávy"
},
+ "type/associatedStreet": {
+ "name": "Přidružená ulice"
+ },
"type/boundary": {
"name": "Hranice",
"terms": "hranice,hraniční,čára"
@@ -9156,24 +11238,28 @@
"terms": "administrativní hranice,správní hranice,hranice správní oblasti,hranice kraje,hranice oblasti,hranice regionu"
},
"type/connectivity": {
- "name": "Propojení jízdních pruhů"
+ "name": "Propojení jízdních pruhů",
+ "terms": "napojení silničních pruhů,silniční pruhy,spojení silničních pruhů,spojení pruhů,propojení pruhů"
},
"type/destination_sign": {
"name": "Směrová tabule",
"terms": "směrová tabule,směrová značka,značka směru,značka cíle,cedule se směrem,směrová cedule,směr výjezdu,označení exitu,směr,šipka"
},
"type/enforcement": {
- "name": "zařízení pro dokumentaci dopravních přestupků"
+ "name": "Zařízení pro dokumentaci dopravních přestupků",
+ "terms": "dodržování předpisů,dodržování zákonů,prosazování zákona,vynucování,měření rychlosti,radary,přestupky,kamery,semafory,váhy"
},
"type/enforcement/maxspeed": {
"name": "Rychlostní radar",
"terms": "maximální rychlost,radar,rychlostní kamera"
},
"type/multipolygon": {
- "name": "Multipolygon"
+ "name": "Multipolygon",
+ "terms": "multipolygon,polygon,mnohoúhelník"
},
"type/public_transport/stop_area_group": {
- "name": "Skupina zastávek veřejné dopravy"
+ "name": "Skupina zastávek veřejné dopravy",
+ "terms": "skupina oblasti zastávky,skupina zastávek,skupina stanovišť,oblast zastávek veřejné dopravy,zastávková oblast,oblast stanice,oblast skupiny zastávek,skupina zastávkových stanic"
},
"type/restriction": {
"name": "Omezení",
@@ -9188,22 +11274,28 @@
"terms": "odbočování vpravo,odbočit vpravo,odbočení vpravo,zatočit vpravo,zatočení vpravo"
},
"type/restriction/no_straight_on": {
- "name": "Zákaz jízdy vpřed"
+ "name": "Zákaz jízdy vpřed",
+ "terms": "zákaz jízdy rovně,zákaz jízdy přímo,zakázáno jet rovně,zakázáno jet přímo,přikázaný směr jízdy vlevo a vpravo,přikázaný směr jízdy vpravo a vlevo,přikázáno odbočit,přikázáno odbočení"
},
"type/restriction/no_u_turn": {
- "name": "Zákaz otáčení"
+ "name": "Zákaz otáčení",
+ "terms": "zákaz otáčení,zakázáno otáčení,zákaz otočení,zakázáno otočení,otáčení zakázáno,otočení zakázáno,neotáčet se"
},
"type/restriction/only_left_turn": {
- "name": "Pouze odbočení doleva"
+ "name": "Pouze odbočení doleva",
+ "terms": "přikázaný směr jízdy doleva,přikázaný směr jízdy vlevo,příkaz jet doleva,jen vlevo,jen doleva,pouze vlevo,pouze doleva"
},
"type/restriction/only_right_turn": {
- "name": "Pouze odbočování doprava"
+ "name": "Pouze odbočování doprava",
+ "terms": "přikázaný směr jízdy doprava,přikázaný směr jízdy vpravo,příkaz jet doprava,jen vpravo,jen doprava,pouze vpravo,pouze doprava"
},
"type/restriction/only_straight_on": {
- "name": "Pouze jízda vpřed"
+ "name": "Pouze jízda vpřed",
+ "terms": "přikázaný směr jízdy rovně,přikázaný směr jízdy přímo,příkaz jet rovně,jen přímo,jen rovně,pouze přímo,pouze rovně"
},
"type/restriction/only_u_turn": {
- "name": "Pouze otáčení"
+ "name": "Pouze otáčení",
+ "terms": "pouze otáčení,jen otáčení,pouze otočit,jen otočení,povoleno pouze otočení,pouze otočení o 180°"
},
"type/route": {
"name": "Trasa",
@@ -9214,12 +11306,17 @@
"terms": "lanovka,nadzemní doprava,linka,trasa,trasa lanové dráhy,lanová dráha,nadzemní linka"
},
"type/route/bicycle": {
- "name": "Cyklotrasa"
+ "name": "Cyklotrasa",
+ "terms": "cyklotrasa,cyklistická trasa,cyklistická značka"
},
"type/route/bus": {
"name": "Autobusová trasa",
"terms": "autobusová trasa,autobusová linka,autobus,bus,autobusové spojení,autobusový spoj"
},
+ "type/route/climbing": {
+ "name": "Lezecká cesta",
+ "terms": "lezecká trasa,lezecký výstup,cesta,výstup,výlez,spára,horolezecká cesta,trasa,lezecká délka"
+ },
"type/route/detour": {
"name": "Trasa objížďky",
"terms": "objížďka,trasa objížďky,náhradní trasa"
@@ -9241,10 +11338,12 @@
"terms": "koňská jezdecká trasa,koňská stezka,jezdecká stezka,jízda na stezce"
},
"type/route/light_rail": {
- "name": "Trasa lehké dráhy"
+ "name": "Trasa lehké dráhy",
+ "terms": "trasa rychlodráhy,trasa lehké dráhy,rychlodrážní trasa,lehká dráha,rychlodráha,trasa pro lehkou železnici"
},
"type/route/monorail": {
- "name": "dráha monorailu"
+ "name": "Dráha jednokolejky",
+ "terms": "trasa jednokolejné dráhy,trasa monorailu,trasa jednokolejky,dráha jednokolejky,trať monorailu"
},
"type/route/mtb": {
"name": "Trasa pro horská kola",
@@ -9255,21 +11354,24 @@
"terms": "potrubí,potrubní trasa,roura,roury,transport,vodovod,ropovod,produktovod,plynovod,kanál,rozvod"
},
"type/route/piste": {
- "name": "Trasa sjezdovky"
+ "name": "Trasa sjezdovky",
+ "terms": "trasa sjezdovky,zimní trasa,trasa pro zimní sporty,lyžařská stopa,lyžařská trasa,běžkařská trasa,skialpová trasa,sáňkařská trasa"
},
"type/route/power": {
"name": "Elektrická trasa",
"terms": "trasa elektrického vedení,elektrické vedení,elektrika,napětí,vysoké napětí,drát,dráty,kabel,kabely"
},
"type/route/railway": {
- "name": "Železniční trasa"
+ "name": "Železniční trasa",
+ "terms": "trasa železnice,dráha,železniční trať,koleje,trasa pro vlaky"
},
"type/route/road": {
"name": "Silniční trasa",
"terms": "silnice,silniční trasa,trasa silnice,trasa dálnice,dálnice"
},
"type/route/subway": {
- "name": "Trasa metra"
+ "name": "Trasa metra",
+ "terms": "trasa metra,trasa pro metro,metro,trasa podzemky,trasa u-bahn,podzemní trasa"
},
"type/route/train": {
"name": "Železniční trasa",
@@ -9284,15 +11386,24 @@
"terms": "trolejbus,trolejbusový,trolejbusová,trolejbusu,spojení,linka,spoj,trolej,trolley,bus,mhd,městská doprava,městská hromadná doprava"
},
"type/route_master": {
- "name": "Řídící relace trasy",
- "terms": "řídící relace trasy,route master,hlavní relace,nadrelace,master"
+ "name": "Řídicí relace trasy",
+ "terms": "řídicí relace trasy,route master,hlavní relace,nadrelace,master"
},
"type/site": {
"name": "Uskupení",
"terms": "site,uskupení,seskupení,skupina,seznam,místo"
},
+ "type/site/climbing/area": {
+ "name": "Lezecká oblast",
+ "terms": "lezecké místo,skalní oblast,oblast pro lezení,horolezecká oblast,skály,lezecký prostor,lezecký region"
+ },
+ "type/site/climbing/crag": {
+ "name": "Skalní stěna",
+ "terms": "lezecká stěna,horolezecká stěna,lezecké místo,místo pro lezení,skály,skála,lezecké cesty,lezecká cesta,horolezení,lezení,boulder"
+ },
"type/waterway": {
- "name": "Vodní tok"
+ "name": "Vodní tok",
+ "terms": "vodní tok,řeka,potok,kanál,tok"
},
"waterway": {
"name": "Prvek vodní dopravy"
@@ -9306,7 +11417,7 @@
"terms": "vodní kanál,kanál,přivaděč,náhon,průplav,závlaha"
},
"waterway/canal/lock": {
- "name": "zdymadla",
+ "name": "Zdymadla",
"terms": "zdymadla,zdymadlo,vyrovnání hladin,vodní stupeň,zdvihání lodí,spouštění lodí,vodní cesty,kanál,výšky hladin,výška hladiny"
},
"waterway/dam": {
@@ -9326,7 +11437,7 @@
"terms": "odvodňovací strouha,strouha,odvodňovací kanál,odvaděč"
},
"waterway/fish_pass": {
- "name": "rybí přechod",
+ "name": "Rybí přechod",
"terms": "úhoří žebřík,úhoří přechod,rybí žebřík,rybí migrace,rybí pasáž,rybí sifon,rybí schůdky,rybí stezka,žebřík pro ryby,rybí přechod,schody pro ryby,rybí cesta"
},
"waterway/fuel": {
@@ -9334,7 +11445,7 @@
"terms": "lodní pumpa,pumpa,čerpací stanice,loď,jachta,hausbót"
},
"waterway/lock_gate": {
- "name": "vrata zdymadel",
+ "name": "Vrata zdymadel",
"terms": "brána zdymadla,zdymadlo,vyrovnání hladin,vodní stupeň,zdvihání lodí,spouštění lodí,vodní cesty,kanál,výšky hladin,výška hladiny,brána zdymadel,vrata plavební komory,vrata zdymadla"
},
"waterway/milestone": {
@@ -9358,7 +11469,7 @@
"terms": "suchý potok,výtok,větev,potok,opa,tok,říčka,unášet,povodeň,průtok,úžlabina,teč,kanál,rákosí,záplava,stříkat,přítok,vádí,mýt,vodní tok"
},
"waterway/tidal_channel": {
- "name": "přílivový kanál",
+ "name": "Přílivový kanál",
"terms": "pobřežní,pilulka,přílivová,mangrovy,mořské,solné bažiny,přílivový potok,přílivová rovina,přílivový vstup,vodní cesta"
},
"waterway/water_point": {
diff --git a/dist/translations/cs.min.json b/dist/translations/cs.min.json
index c04c3134..e9871067 100644
--- a/dist/translations/cs.min.json
+++ b/dist/translations/cs.min.json
@@ -1 +1 @@
-{"cs":{"presets":{"categories":{"category-barrier":{"name":"Překážky"},"category-building":{"name":"Budovy"},"category-golf":{"name":"Golfové prvky"},"category-landuse":{"name":"Využití krajiny"},"category-natural":{"name":"Přírodní prvky"},"category-path":{"name":"Pěší cesty"},"category-playground":{"name":"Vybavení dětského hřiště"},"category-rail":{"name":"Železnice"},"category-restriction":{"name":"Omezení dopravy"},"category-road_major":{"name":"Větší komunikace"},"category-road_minor":{"name":"Menší komunikace"},"category-road_service":{"name":"Obslužné komunikace"},"category-route":{"name":"Relace tras"},"category-utility":{"name":"Služby"},"category-water":{"name":"Vodní tělesa"},"category-waterway":{"name":"Vodní cesty"}},"fields":{"access":{"label":"Povolený vstup/vjezd","options":{"customers":{"description":"Omezen na zákazníky destinace","title":"Zákazníci"},"designated":{"description":"Přístup povolen v souladu se značením nebo specifickými místními předpisy","title":"Vyhrazeno"},"destination":{"description":"Přístup je povolen pouze k dosažení cíle","title":"Jen do místa"},"dismount":{"description":"Přístup je povolen, ale jezdec musí sesednout","title":"Sesednout"},"no":{"description":"Přístup není veřejnosti povolen","title":"Zakázán"},"permissive":{"description":"Přístup je povolen, dokud majitel povolení nezamítne","title":"Do odvolání"},"permit":{"description":"Přístup povolen pouze s platným oprávněním nebo licencí","title":"Na povolení"},"private":{"description":"Přístup povolen pouze s individuálním povolením vlastníka","title":"S povolením"},"unknown":{"description":"Podmínky přístupu jsou neznámé nebo nejasné","title":"Není známo"},"yes":{"description":"Přístup povolen právem; právo na cestu","title":"Povolen"}},"placeholder":"Není známo","terms":"vstup povolen,povolení ke vstupu,přístup,veřejné,soukromí,privátní,zákaz vstupu,soukromý pozemek","types":{"access":"Všem","bicycle":"Jízdní kola","foot":"Pěší","horse":"Koně","motor_vehicle":"Motorová vozidla"}},"access_aisle":{"label":"Typ"},"access_simple":{"label":"Povolený vstup/vjezd","options":{"customers":"Pouze pro zákazníky","no":"Žádné","permissive":"Do odvolání","permit":"Pouze s povolením","private":"Soukromé","unknown":"Neznámý","yes":"Veřejné"},"terms":"povolený,soukromý,veřejný"},"activity":{"label":"Aktivita","options":{"bicycle":"Cyklistika","hiking":"Turistika","horse":"Jízda na koni","mtb":"Horská kola","ski":"Lyžování"}},"addr/interpolation":{"label":"Typ","options":{"all":"Vše","alphabetic":"Abecední","even":"Sudý","odd":"Lichý"}},"address":{"label":"Adresa","placeholders":{"block_number":"Číslo bloku","block_number!jp":"Č. bloku","city":"Město","city!cn":"Město/Prefektura/Společenství","city!jp":"Velkoměsto/Město/Vesnice/Tokijský zvláštní okrsek","city!vn":"Obec","conscriptionnumber":"123","country":"Stát (země)","county":"Kraj","county!jp":"Distrikt","district":"Okres","district!cn":"Okres/Kraj/Územní jednotka (Banner)","district!vn":"Okolí/Město/Okres","floor":"Patro","hamlet":"Osada","housename":"Název domu","housenumber":"123","housenumber!jp":"Číslo budovy/Číslo parcely","neighbourhood":"Část městské čtvrti, obce","neighbourhood!jp":"Chōme/Aza/Koaza","place":"Místo","postcode":"Poštovní směrovací číslo","province":"Provincie","province!cn":"Provincie/Obec/Administrativní oblast/Zvláštní admin. oblast","province!jp":"Prefektura","quarter":"Čtvrť","quarter!jp":"Ōaza/Machi","state":"Stát (v rámci federace)","street":"Ulice","subdistrict":"Subdistrikt","subdistrict!vn":"Okrsek/Komuna/Městys","suburb":"Městská část (obvod)","suburb!jp":"Okrsek","unit":"Jednotka"},"terms":"umístění"},"admin_level":{"label":"Administrativní úroveň"},"aerialway":{"label":"Typ"},"aerialway/access":{"label":"Přístup","options":{"both":"Oboje","entry":"Vstup","exit":"Výstup"}},"aerialway/bubble":{"label":"Stříška"},"aerialway/capacity":{"label":"Odbaví lidí (za hodinu)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Trvání cesty (v minutách)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Vytápěno"},"aerialway/occupancy":{"label":"Kapacita (počet cestujících)","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Přístup v létě","options":{"both":"Oboje","entry":"Vstup","exit":"Výstup"}},"aeroway":{"label":"Typ"},"agrarian":{"label":"Výrobky"},"air_conditioning":{"label":"Klimatizace","terms":"chladící systém,chlazení"},"amenity":{"label":"Typ"},"animal_boarding":{"label":"Pro zvířata"},"animal_breeding":{"label":"Pro zvířata"},"animal_shelter":{"label":"Pro zvířata"},"archaeological_site":{"label":"Typ"},"architect":{"label":"Architekt","terms":"stavební projektant"},"area/highway":{"label":"Typ"},"artist":{"label":"Umělec"},"artwork_type":{"label":"Typ","options":{"bust":"Busta","graffiti":"Graffiti","installation":"Umělecká instalace","mosaic":"Mozaika","mural":"Nástěnná malba","painting":"Malba","relief":"Reliéf","sculpture":"Skulptura","statue":"Socha"}},"ascent":{"label":"Celkové stoupání","terms":"výstup,stoupání,kumulativní převýšení"},"atm":{"label":"Bankomat"},"attraction":{"label":"Typ"},"automated":{"label":"Automatické"},"baby_feeding":{"label":"Místo pro kojence","options":{"no":"Není","room":"Místnost pro kojení","yes":"Označené místo"},"terms":"kojení,kojit,matky,přebalování,přebalit,děti,miminka,batole,batolata,dítě,mimino"},"baby_seat":{"label":"Dětská sedačka"},"backcountry":{"label":"Nocoviště","terms":"místo pro táboření v divočině,divoké tábořiště,stan,místo pro přespání,noční,noc,spaní,stanování,divočina,tábořiště,přenocování"},"backrest":{"label":"Opěradlo"},"bar":{"label":"Bar","terms":"pivo,drink,klub,hospoda,alkohol,noční,noc"},"barrier":{"label":"Typ"},"barrier_planter":{"label":"Zábrana","options":{"planter":"Ano","undefined":"Ne"}},"basin":{"label":"Typ","options":{"detention":"Vsakovací","evaporation":"Vypařovácí","infiltration":"Infiltrační","retention":"Retenční"}},"bath/open_air":{"label":"Pod širým nebem"},"bath/sand_bath":{"label":"Písečná koupel"},"bath/type":{"label":"Specialita"},"beauty":{"label":"Služby","options":{"cosmetics":"Kosmetika","hair_removal":"Odstranění vlasů","nails":"Manikúra / Pedikúra","skin_care":"Péče o pleť","spa":"Masážní salon","tanning":"Opalování","waxing":"Voskování"}},"bench":{"label":"Lavička","terms":"místo k sezení"},"bicycle_parking":{"label":"Typ","options":{"building":"V budově","handlebar_holder":"Držák na řídítka","lockers":"Individuální skříňky","shed":"Uzavřená bouda","stands":"Stojan (podpírá rám jízdního kola)","wall_loops":"Držák kol (podpírá pouze kolo)"}},"bike_ride":{"label":"Parkoviště B+R","terms":"b+r,b a r,vezmi si kolo a jeď,mhd,přestup,dojíždějící,kapacitní,odstavné,hromadná doprava,na kraji města,b + r,parkandride,b/r,vem si kolo a jeď,městská,metro,tram,bus"},"bin":{"label":"Odpadkový koš","terms":"popelnice,koš"},"blind":{"label":"Přístup pro nevidomé","options":{"limited":"Omezený","no":"Ne","yes":"Ano"},"terms":"nevidomí,slepí,slepec,slepce,slepci,hendikep,přístupné"},"blood_components":{"label":"Odebírané složky","options":{"plasma":"krevní plazma","platelets":"krevní destičky","stemcells":"vzorek kmenových buněk","whole":"krev"}},"board_type":{"label":"Typ","options":{"art":"Umění","astronomy":"Astronomie","geology":"Geologie","history":"Historie","nature":"Příroda","notice":"Plakátová plocha","plants":"Rostliny","welcome_sign":"Uvítací tabule","wildlife":"Divoká zvířata"}},"bollard":{"label":"Typ","options":{"fixed":"Pevný sloupek","flexible":"Flexibilní sloupek","foldable":"Sklápěcí sloupek","removable":"Odstranitelný sloupek","rising":"Vysouvací sloupek"}},"booth":{"label":"Stánek","terms":"stan,prodej,trh,nabídka,poptávka,směna,tržiště,stánky"},"bottle":{"label":"Plnění lahví"},"boules":{"label":"Typ"},"boundary":{"label":"Typ"},"branch_brand":{"label":"Pobočka","terms":"odvětví,branže,filiálka,větev"},"brand":{"label":"Obchodní značka","terms":"značka,firma,logo,provozovatel,majitel"},"brewery":{"label":"Točená piva","terms":"minipivovar,malý pivovar,pivo,pivovar,místní,lokální,speciální pivo"},"bridge":{"label":"Typ","placeholder":"Výchozí"},"bridge/support":{"label":"Typ"},"bridge_combo":{"label":"Typ"},"building":{"label":"Budova","terms":"struktura"},"building/flats":{"label":"Jednotky","placeholder":"2, 4, 6, 8..."},"building/levels":{"label":"Patra","placeholder":"2, 4, 6...","terms":"patro,pater,výška,úroveň,budovy,poschodí,podlaží"},"building/levels/underground":{"label":"Podzemní patra","placeholder":"2, 4, 6,...","terms":"úrovně suterénu"},"building/material":{"label":"Materiál","terms":"hmota,struktura"},"building/part":{"label":"Část budovy"},"building/prefabricated":{"label":"Montovaná","terms":"vyrobený,modulární,přenosný"},"bunker_type":{"label":"Typ"},"button_operated":{"label":"Volací tlačítko"},"cables":{"label":"Kabely","placeholder":"1, 2, 3…"},"cai_scale-IT":{"label":"Obtížnost turistické trasy (italský alpský klub)","options":{"E":"E: Pro turisty","EAI":"EAI: Pěší turistika ve sněhových podmínkách","EE":"E: Pro zkušené turisty","EEA":"EEA: Pro zkušené turisty s vybavením","T":"T: Turistická"},"placeholder":"T, E, EE, …","terms":"alpy,klub,itálie,hory,náročnost,obtížnost,terén,chůze,cesta,silnice,složitost"},"camera/direction":{"label":"Směr (ve stupních po směru hodinových ručiček)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"Připevnění kamery"},"camera/type":{"label":"Typ kamery","options":{"dome":"V kupoli","fixed":"Pevná","panning":"Otočná"}},"capacity":{"label":"Kapacita","placeholder":"50, 100, 200...","terms":"objem,maximální,největší,nejvíce,limit,omezení"},"capacity/caravans":{"label":"Kapacita (kravany)","placeholder":"10, 20, 50, …"},"capacity/disabled_parking":{"label":"Místo pro invalidy","placeholder":"1, 2, 3..."},"capacity/persons":{"label":"Kapacita (osoby)","placeholder":"50, 100, 200, …"},"capacity/tents":{"label":"Kapacita (stany)","placeholder":"10, 20, 50, …"},"capacity_parking":{"label":"Všech míst","placeholder":"10, 20, 30..."},"capacity_volume":{"label":"Objem (metry krychlové)","placeholder":"50, 100, 200..."},"cash_in":{"label":"Vklady"},"castle_type":{"label":"Typ","options":{"castrum":"Castrum","defensive":"Hrad","fortress":"Pevnost","hillfort":"Hradiště","kremlin":"Kreml","manor":"Kaštel","palace":"Palác","shiro":"Shiro","stately":"Zámek"}},"changing_table":{"label":"Stůl na výměnu plenek"},"charge_fee":{"label":"Cena","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"poplatek,sazba,platit,zaplatit,částka"},"charge_toll":{"label":"Mýto","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"mýtné,poplatek,cena,sazba,platit,zaplatit,částka,dálniční,dálnici,cesty"},"check_date":{"label":"Datum poslední kontroly","placeholder":"RRRR-MM-DD"},"circumference":{"label":"Obvod (ve výšce prsou)","placeholder":"1 m, 20 cm, 30\"…","terms":"poprsí,průměr ve výšce prsou"},"clothes":{"label":"Oblečení","terms":"šaty,textil,oděv"},"club":{"label":"Typ"},"collection_times":{"label":"Čas výběru"},"collector":{"label":"Druh předmětů"},"colour":{"label":"Barva","terms":"odstín,barvy,barevný,nátěr,vzhled"},"comment":{"label":"Komentář ke změnám","placeholder":"Stručný popis vašich úprav (povinné)"},"communication_multi":{"label":"Typ komunikace","terms":"druh komunikace,cesta,typ,druh,druhy,silnice,cesty"},"connectivity":{"label":"Připojení"},"construction":{"label":"Typ"},"consulate":{"label":"Typ"},"consulting":{"label":"Odbornost"},"contact/webcam":{"label":"URL webkamery","placeholder":"http://priklad.cz/"},"content":{"label":"Obsah"},"conveying":{"label":"Směr pohybu","options":{"backward":"Pozadí","forward":"Dopředu","reversible":"Reverzibilní"}},"conveying_escalator":{"label":"Jezdící schody"},"country":{"label":"Stát"},"country_flag":{"label":"Reprezentovaná země"},"couplings":{"label":"spojka","placeholder":"1, 2, 3…"},"covered":{"label":"Zastřešeno","terms":"zastřešený,zastřešené,střecha,kryté,kryt,zakryté"},"covered_no":{"options":{"no":"Ne","undefined":"Implicitně Ne","yes":"Ano"}},"craft":{"label":"Typ","options":{"agricultural_engines":"Výrobce zemědělských strojů","basket_maker":"Košíkář","beekeeper":"Včelař","blacksmith":"Kovář","boatbuilder":"Loďař","bookbinder":"Knihař","brewery":"Pivovar","builder":"Stavitel","carpenter":"Tesař","carpet_layer":"Pokladač koberců","caterer":"Catering","chimney_sweeper":"Kominík","cleaning":"Úklidová služba","clockmaker":"Hodinář","confectionery":"Cukrář","distillery":"Lihovar","dressmaker":"Švadlena","electrician":"Elektrikář","electronics_repair":"Opravna elektroniky","floorer":"Podlahář","gardener":"Zahradník","glaziery":"Práce se sklem","grinding_mill":"Mlýn","handicraft":"Řemeslník","hvac":"Topenář, vzduchotechnik","insulation":"Firma na izolace","jeweller":"Klenotník","joiner":"Truhlář","key_cutter":"Výroba klíčů","locksmith":"Zámečník","metal_construction":"Kovovýroba","oil_mill":"Lisovna","painter":"Malíř","parquet_layer":"Pokladač parket","photographer":"Fotograf","photographic_laboratory":"Fotografická laboratoř","plasterer":"Štukatér","plumber":"Instalatér","pottery":"Hrnčířství","rigger":"Výroba takeláže","roofer":"Pokrývač","saddler":"Sedlář","sailmaker":"Výroba plachet","sawmill":"Pila","scaffolder":"Lešenář","sculptor":"Sochař","shoemaker":"Švec","signmaker":"Výrobce cedulí","stonemason":"Kameník","tailor":"Krejčovství","tiler":"Obkladač","tinsmith":"Klempíř","upholsterer":"Čalouník","watchmaker":"Hodinář","window_construction":"Výroba oken","winery":"Vinař"}},"crane/type":{"label":"Typ jeřábu","options":{"floor-mounted_crane":"Sloupový jeřáb","gantry_crane":"Portálový mostový jeřáb","portal_crane":"Portálový ramenový jeřáb","tower_crane":"Věžový jeřáb","travel_lift":"Přepravní jeřáb"}},"crop":{"label":"Plodina","options":{"asparagus":"Chřest","barley":"Ječmen","beet":"Řepa","cassava":"Maniok","coffee":"Káva","cotton":"Bavlna","cranberries":"Brusinky","fast_growing_wood":"Rychlerostoucí dřeviny","flowers":"Květiny","grape":"Hrozny","grass":"Tráva","hop":"Chmel","lavender":"Levandule","maize":"Kukuřice","potato":"Brambory","rape":"Řepka","rice":"Rýže","soy":"Sójové boby","strawberry":"Jahody","sugar_beet":"Cukrová řepa","sugarcane":"Cukrová třtina","sunflower":"Slunečnice","tea":"Čaj","tobacco":"Tabák","vegetable":"Zelenina","wheat":"Pšenice"}},"crossing":{"label":"Typ","options":{"traffic_signals":"Přechod se semafory","uncontrolled":"Pouze silniční značení","unmarked":"Žádné silniční značení nebo semafory"}},"crossing/barrier":{"label":"Břevno závory","options":{"double_half":"Z obou stran","full":"Plné","half":"Polovina","no":"Ne","yes":"Ano"}},"crossing/bell":{"label":"Zvonek"},"crossing/island":{"label":"Ostrůvek pro chodce"},"crossing/light":{"label":"Světla"},"crossing/markings":{"label":"Označení přechodu pro chodce","options":{"dashes":"Přerušované příčné čáry","dots":"Tečkované příčné čáry","ladder":"Žebřík s podélnými pruhy","ladder:paired":"Žebřík s podélnými párovými tyčemi","ladder:skewed":"Žebřík se šikmými pruhy","lines":"Příčné linie","lines:paired":"Dvojité příčné linie","no":"Neoznačený","pictograms":"Namalované piktogramy","surface":"Pouze povrchová úprava","yes":"Označeno něčím","zebra":"Podélné obdélníky (zebra)","zebra:bicolour":"Podélné obdélníky s druhou barvou","zebra:double":"Podélné obdélníky s rozdělením uprostřed","zebra:paired":"Párové podélné tyče"},"terms":"značení přechodu,přechod pro chodce"},"crossing_raised":{"label":"Zvýšený","options":{"table":"Ano","undefined":"Ne"}},"cuisine":{"label":"Kuchyně","options":{"american":"Americká","asian":"Asijská","bubble_tea":"Perlivý čaj","burger":"Burger","cake":"Koláče","chicken":"Kuřecí","chinese":"Čínská","chocolate":"Čokoláda","coffee_shop":"Kavárna","dessert":"Dezerty","donut":"Donuty","fish":"Ryba","french":"Francouzská","german":"Německá","greek":"Řecká","hot_dog":"Párek v rohlíku","ice_cream":"Zmrzlina","indian":"Indická","indonesian":"Indonéská","italian":"Italská","japanese":"Japonská","juice":"Džusy","kebab":"Kebab","korean":"Korejská","lebanese":"Libanonská","malaysian":"Malajská","mexican":"Mexická","pankcake":"Lívance","pasta":"Těstoviny","pizza":"Pizza","polish":"Polská","portuguese":"Portugalská","regional":"Místní","russian":"Ruská","salad":"Saláty","sandwich":"Sendvič","seafood":"Mořské plody","spanish":"Španělská","steak_house":"Steaková restaurace","sushi":"Suši","taiwanese":"Tchajwanská","thai":"Thajská","turkish":"Turecká","vietnamese":"Vietnamská"},"terms":"strava,druhy jídel"},"currency_multi":{"label":"Typy měn","terms":"bankovky,hotovost,mince,peníze"},"cutting":{"label":"Typ","placeholder":"Výchozí"},"cycle_network":{"label":"Síť"},"cycleway":{"label":"Cyklopruhy","options":{"lane":{"description":"Jízdní pruh pro cyklisty, oddělený podélnou čarou","title":"Normální cyklopruh"},"no":{"description":"Bez cyklopruhu","title":"Žádné"},"opposite":{"description":"Cyklopruh, kterým cyklisté mohou jet v jednosměrce oběma směry","title":"Obousměrný cyklopruh"},"opposite_lane":{"description":"Cykloobousměrka - cyklopruh v opačném směru než ostatní provoz","title":"Protisměrný cyklopruh"},"separate":{"description":"Označuje, která cyklostezka byla zmapována jako samostatná geometrie","title":"Cyklostezka zmapována samostatně"},"share_busway":{"description":"Jízdní pruh sdílený cyklisty, autobusy a případně taxi","title":"Pruh sdílený s autobusy"},"shared_lane":{"description":"Vyznačený doporučený průjezd cyklistů v jízdním pruhu","title":"Sdílený cyklopruh"},"track":{"description":"Jízdní pruh oddělený od ostatního provozu fyzickou bariérou","title":"Cyklostezka"}},"placeholder":"Pruh, stezka, obousměrný, …","terms":"pruh pro cyklisty,jízdní pruh,cyklistický pruh,pás,kolo,cyklista,stezka","types":{"cycleway:left":"Po levé straně","cycleway:right":"Po pravé straně"}},"dance/style":{"label":"Taneční styly"},"date":{"label":"Datum"},"defibrillator/location":{"label":"Popis umístění"},"delivery":{"label":"Rozvoz","terms":"zásobování,obsluha,dopravní obsluha,dovoz,doručování,dodávka"},"denomination":{"label":"Vyznání","terms":"náboženský směr,náboženství,směr,donominace,upřesnění,církev,druh"},"denotation":{"label":"Označení","terms":"značení,označit,značka"},"departures_board":{"label":"Tabule odjezdů/příjezdů","options":{"no":"Žádná","realtime":"Digitální","timetable":"Jízdní řády","yes":"Ano"}},"deposit/trolley":{"label":"Vklad"},"depth":{"label":"Hloubka (v metrech)"},"descent":{"label":"Celkový sestup","terms":"sestup,kumulativní převýšení"},"description":{"label":"Popis","terms":"souhrn"},"design":{"label":"Design","terms":"vzhled,vizáž,styl"},"destination":{"label":"Směry"},"destination/ref":{"label":"Čísla silnic v daném směru"},"destination/symbol":{"label":"Piktogramy cílů"},"destination_waterway":{"label":"Směr"},"devices":{"label":"Zařízení","placeholder":"1, 2, 3…"},"diameter":{"label":"Průměr","placeholder":"5 mm, 10 cm, 15 in…","terms":"velikost kruhu,šířka kruhu"},"diameter_crown":{"label":"Průměr koruny","placeholder":"4 m, 9', …","terms":"průměr,velikost koruny,šířka koruny"},"diet_multi":{"label":"Typy diet","options":{"gluten_free":"Bezlepková","halal":"Halal","kosher":"Košer","lactose_free":"Bezlaktózová","pescetarian":"Pescovegetariánská","vegan":"Veganská","vegetarian":"Vegetariánská"},"terms":"bezlepkové,ovocné,halal,košer,bez laktózy,maso,pescovegetariánské,syrové,veganské,vegetariánské"},"diplomatic":{"label":"Typ"},"diplomatic/services":{"label":"Služby"},"direction":{"label":"Směr (stupně po směru hod. ručiček)","placeholder":"45, 90, 180, 270","terms":"stupně ve směru hodinových ručiček,stupňů,sklon,orientace,kompas,směr,otočení,natočení,poloha"},"direction_cardinal-US-CA-NZ":{"label":"Směr","options":{"east":"Na východ","north":"Na sever","south":"Na jih","west":"Na západ"},"terms":"kurz,vedení,řízení"},"direction_clock":{"label":"Směr","options":{"anticlockwise":"Proti směru hodinových ručiček","clockwise":"Ve směru hodinových ručiček"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"label":"Dotčený směr","options":{"backward":"Zpátky","both":"Oba/všechny směry","forward":"Dopředu"},"terms":"směr,ovlivněný,řízený,vedený,řízení,vedení"},"dispensing":{"label":"Léky na předpis"},"display":{"label":"Zobrazení","options":{"analog":"Analogový","digital":"Digitální","sundial":"Sluneční hodiny","unorthodox":"Nekonvenční"}},"distance":{"label":"Vzdálenost","terms":"délka,ujeté kilometry"},"disused/amenity":{"label":"Typ"},"disused/railway":{"label":"Typ"},"disused/shop":{"label":"Typ"},"dock":{"label":"Typ"},"dog":{"label":"Psi","options":{"leashed":"Pouze na vodítku","no":"Zakázáno","yes":"Povoleno"},"terms":"zvířata,mazlíčci"},"door":{"label":"Dveře"},"door_type":{"label":"Typ"},"drink_multi":{"label":"Nápoje"},"drinking_water":{"label":"Pitná","terms":"pitné,pitelné"},"drinking_water_available":{"label":"Pitná voda k dispozici","terms":"pitné,pitelné"},"drive_through":{"label":"Obsluha z/do auta","terms":"projíždějícím,okénko,výdejní okénko,okno,průjezd,s sebou,z auta,z vozu"},"duration":{"label":"Trvání","placeholder":"00:00","terms":"délka trvání,doba,průběh,čas,rozmezí"},"ele":{"label":"Nadmořská výška (v metrech)","terms":"nadmořská výška,výška"},"electrified":{"label":"Elektrifikace","options":{"contact_line":"Trolejové vedení","no":"Ne","rail":"Napájecí kolejnice","yes":"Ano (nespecifikováno)"},"placeholder":"Trolejové vedení, napájecí kolejnice...","terms":"trolejové vedení,napájené,třetí kolej"},"email":{"label":"E-mail","placeholder":"priklad@priklad.cz","terms":"adresa,pošta,elektronická,email,e mail,mail,zpráva,poslat,komunikace"},"embankment":{"label":"Typ","placeholder":"Výchozí"},"embassy":{"label":"Typ","options":{"branch_embassy":"Pobočka velvyslanectví","delegation":"Delegace","high_commission":"Vysoká provize","interests_section":"Sekce zájmů","mission":"Diplomatická mise","nunciature":"Diplomatická mise Svatého stolce","residence":"Oficiální sídlo velvyslance","yes":"Ambasáda"}},"emergency":{"label":"Pohotovost"},"emergency_combo":{"label":"Typ"},"emergency_ward_entrance":{"label":"Typ"},"enforcement":{"label":"Typ"},"entrance":{"label":"Typ","options":{"emergency":"Únikový východ","entrance":"Pouze vchod","exit":"Pouze východ","garage":"Garážová vrata","home":"Soukromý dům nebo byt","main":"Hlavní","secondary":"Sekundární","service":"Účelový","staircase":"Schodiště","yes":"Nespecifikováno"},"terms":"typ vchodu,druh vchodu,typ vstupu,druh vstupu"},"except":{"label":"Výjimky"},"expected_rcn_route_relations":{"label":"Přilehlé cyklistické body"},"expected_rwn_route_relations":{"label":"Přilehlé pěší body"},"expressway-US":{"label":"Dálnice","terms":"dálniční,dopravní tepna,dálková silnice"},"faces":{"label":"Stěny"},"fax":{"label":"Fax","placeholder":"+420 123 456 789","terms":"pošta,zpráva,poslat,komunikace"},"fee":{"label":"Poplatek","terms":"cena,sazba,platit,zaplatit,zpoplatněno,placené,zdarma,neplacené"},"fence_type":{"label":"Typ"},"fire_hydrant/diameter":{"label":"Průměr (mm, palce nebo písmena)","terms":"průměr,míra,rozměr,velikost,mm,in,cm,metrů,velké"},"fire_hydrant/position":{"label":"Pozice","options":{"green":"Zeleň/Tráva","lane":"Pruh silnice","parking_lot":"Parkoviště","sidewalk":"Chodník podél vozovky"},"terms":"pozice,místo"},"fire_hydrant/pressure":{"label":"Tlak (bary)","terms":"tlak,bar,stlačený,vzduch,tlaková"},"fire_hydrant/type":{"label":"Tvar","options":{"pillar":"Nadzemní","pipe":"Zakrytá trubka","underground":"Podzemní","wall":"Nástěnný"}},"fireplace":{"label":"Krb"},"fishing":{"label":"Rybaření","terms":"ryby,rybařit,rybník,k rybaření,ryba,prut,muškaření,lovení,chytání ryb,kapr"},"fitness_station":{"label":"Typ zařízení"},"fixme":{"label":"Opravit","terms":"žádost o pomoc"},"flag/name":{"label":"Jméno vlajky"},"flag/type":{"label":"Typ vlajky"},"flag/wikidata":{"label":"Wikidata vlajky"},"flashing_lights":{"label":"Blikající světla","options":{"always":{"description":"Světla stále blikají","title":"Stále blikají"},"button":{"description":"Světla aktivována stisknutím tlačítka","title":"Aktivováno tlačítkem"},"button;sensor":{"description":"Světla aktivována senzorem nebo stisknutím tlačítka","title":"Aktivováno tlačítkem nebo senzorem"},"no":"Ne","sensor":{"description":"Světla aktivována stisknutím senzoru","title":"Aktivováno senzorem"},"yes":"Ano"},"terms":"blikačky,blikání,blikat,přerušovaná světla"},"floating":{"label":"Plovoucí"},"flood_prone":{"label":"Náchylnost k povodním","terms":"záplavová oblast,ohroženo záplavami,vodou ohroženo,povodeň,záplava,potopa,pod vodou,zaplavované,zaplavené"},"ford":{"label":"Typ","placeholder":"Výchozí"},"fountain":{"label":"Druh"},"frequency":{"label":"Provozní frekvence","terms":"frekvence,hz,mhz,kmitočet,hertz,proud,střídavý"},"from":{"label":"Z"},"fuel":{"label":"Palivo"},"fuel/fuel_multi":{"label":"Typy paliv","options":{"GTL_diesel":"Syntetická nafta GTL","HGV_diesel":"Nafta pro těžká nákladní vozidla","LH2":"Tekutý vodík","adblue":"AdBlue / AUS 32","adblue:canister":"AdBlue / AUS 32 (prodávaný v kanystrech)","biodiesel":"Bionafta","cng":"Stlačený přírodní plyn (CNG)","diesel":"Nafta","e10":"Benzín E10","e85":"Benzín E85","h70":"Plynný vodík (700 barů)","lpg":"Tekutý přírodní plyn (LPG)","octane_100":"Benzín (100 oktanový)","octane_80":"Benzín (80 oktanový)","octane_85":"Benzín (85 oktanový)","octane_87":"Benzín (87 oktanový)","octane_88":"Benzín (88 oktanový)","octane_89":"Benzín (89 oktanový)","octane_90":"Benzín (90 oktanový)","octane_91":"Benzín (91 oktanový)","octane_92":"Benzín (92 oktanový)","octane_93":"Benzín (93 oktanový)","octane_95":"Benzín (95 oktanový)","octane_97":"Benzín (97 oktanový)","octane_98":"Benzín (98 oktanový)","propane":"Propan"}},"gambling":{"label":"Hry"},"garden/type":{"label":"Typ zahrady"},"gauge":{"label":"Rozchod"},"gender":{"label":"Pohlaví","options":{"female":"Ženy","male":"Muži","unisex":"Muži i ženy"},"placeholder":"Neznámé","terms":"přístup,muž,žena,unisex"},"generator/method":{"label":"Princip","options":{"anaerobic_digestion":"Anaerobní digesce","barrage":"Přílivová přehrada","combustion":"Spalování","fission":"Štěpení","fusion":"Fúze","gasification":"Zplyňování","photovoltaic":"Fotovoltaická","run-of-the-river":"Průběh řeky","stream":"Přílivový proud","thermal":"Solární termální","water-pumped-storage":"Přečerpávací nádrž","water-storage":"Vodní nádrž","wind_turbine":"Větrná turbína"}},"generator/output/electricity":{"label":"Výkon","placeholder":"500kW, 100MW, 200MW…"},"generator/source":{"label":"Zdroj","options":{"battery":"Baterie","biofuel":"Rostlinná paliva","biogas":"Bioplyn","biomass":"Rostlinná hmota","coal":"Uhlí","diesel":"Nafta","gas":"Zemní plyn","gasoline":"Benzín","geothermal":"Geotermální energie","hydro":"Vodní energie","nuclear":"Jaderná energie","oil":"Ropa","solar":"Solární radiace","tidal":"Energie přílivu a odlivu","waste":"Odpad","wave":"Vlnová energie","wind":"Vítr"}},"generator/type":{"label":"Typ"},"genus":{"label":"Rod","placeholder":"Acer, Platanus, Quercus …","terms":"rostlinný rod,živočišný rod,rodové jméno"},"geyser/height":{"label":"Výška výtrysku"},"gnis/feature_id-US":{"label":"Identifikační číslo prvku GNIS","terms":"informační služba o federálních zeměpisných názvech,deska spojených států pro zeměpisná jména,usa"},"government":{"label":"Typ"},"grades":{"label":"Stupně studia"},"grape_variety":{"label":"Odrůda vína"},"group_only":{"label":"Pouze pro skupiny","terms":"pouze skupinové,jen pro skupiny,seskupení,skupina,více lidí,mnoho,osob"},"guest_house":{"label":"Typ"},"handicap":{"label":"Handicap","placeholder":"1-18"},"handrail":{"label":"Zábradlí","terms":"ruka,opěra,schody"},"hashtags":{"label":"Hashtagy","placeholder":"#příklad"},"healthcare":{"label":"Typ"},"healthcare/speciality":{"label":"Specializace","options":{"abortion":"Potrat","acupuncture":"Akupunktura","allergology":"Alergie a astma","anaesthetics":"Anesteziologie a resuscitace","angiology":"Angiologie","anthroposophical":"Antroposofická medicína","applied_kinesiology":"Aplikovaná kineziologie","aromatherapy":"Aromaterapie","ayurveda":"Ájurvéda","behavior":"Behaviorální terapie","biochemistry":"Klinická biochemie","biology":"Biologie","blood_check":"Krevní test","body":"Tělní terapie","cardiology":"Kardiologie","cardiothoracic_surgery":"Kardiotorakální chirurgie","child_psychiatry":"Dětská a dorostová psychiatrie","chiropractic":"Chiropraktik","clinical_pathology":"Klinická patologie","community":"Hygiena a epidemiologie","dental_oral_maxillo_facial_surgery":"Zubní, ústní a maxilofaciální chirurgie","depth":"Hlubinná psychologie","dermatology":"Dermatologie","dermatovenereology":"Dermatovenereologie","diabetology":"Diabetologie","diagnostic_radiology":"Radiologie a zobrazovací metody","emergency":"Urgentní medicína","endocrinology":"Endokrinologie","fertility":"Plodnost","gastroenterology":"Gastroenterologie","general":"Praktická praxe","geriatrics":"Geriatrická medicína","gynaecology":"Porodnice a gynekologie","haematology":"Hematologie","hepatology":"Hematologie a transfúzní lékařství","herbalism":"Bylinářství","homeopathy":"Homeopatie","humanistic":"Humanistická psychologie","hydrotherapy":"Hydroterapie","hypnosis":"Hypnóza","infectious_diseases":"Infekční nemoc","intensive":"Intenzivní péče","internal":"Vnitřní lékařství","naturopathy":"Naturopatie","neonatology":"Neonatologie","nephrology":"Nefrologie","neurology":"Neurologie","neuropsychiatry":"Neuropsychiatrie","neurosurgery":"Neurochirurgie","nuclear":"Nukleární medicína","occupational":"Pracovní lékařství","oncology":"Onkologie","ophthalmology":"Oftalmologie","orthodontics":"Ortodoncie","orthopaedics":"Ortopedická chirurgie","osteopathy":"Osteopatie","otolaryngology":"Ušní, nosní a krční","paediatric_surgery":"Pediatrická chirurgie","paediatrics":"Pediatrie","palliative":"Paliativní péče","pathology":"Patologie","physiatry":"Rehabilitační a fyzikální medicína","plastic_surgery":"Plastická chirurgie","podiatry":"Podiatrie","proctology":"Kolorektální chirurgie","psychiatry":"Psychiatrie","pulmonology":"Tuberkulóza a respirační nemoci","radiology":"Radiologie","radiotherapy":"Radioterapie","reflexology":"Reflexologie","reiki":"Reiki","rheumatology":"Revmatologie","shiatsu":"Šiacu","stomatology":"Stomatologie","surgery":"Všeobecná chirurgie","systemic":"Systematická chirurgie","traditional_chinese_medicine":"Tradiční čínská medicína","transplant":"Transplantační chirurgie","trauma":"Traumatická chirurgie","tropical":"Tropická medicína","tuina":"Tuī ná","unani":"Unani medicína","urology":"Urologie","vaccination":"Očkování","vascular_surgery":"Cévní chirurgie"}},"heating":{"label":"Vytápění"},"height":{"label":"Výška (m)","terms":"výška v metrech,vysoký,strop,podjezd,omezení výšky,výška,rozměr,velikost,metr"},"height/hub":{"label":"Výška náboje (v metrech)","terms":"výška náboje,výška větrné turbíny"},"height_building":{"label":"Výška budovy (metry)","terms":"výška v metrech,vysoký,výška,rozměr,velikost,metr,věž,budova,výška budovy"},"highchair":{"label":"Vysoká židle","terms":"podsedák,sedátko,židlička na krmení,dětská židlička"},"highspeed":{"label":"Vysokorychlostní","terms":"rychlá,rychlost,svižný,dráha,vrt,železnice,vlak,dálkový"},"highway":{"label":"Typ"},"highway_cartpath":{"label":"Typ cesty","options":{"path":"Vozová stezka","service":"Účelová komunikace, příjezd"}},"historic":{"label":"Typ"},"historic/civilization":{"label":"Historická civilizace"},"historic/wreck/date_sunk":{"label":"Datum potopení"},"historic/wreck/visible_at_high_tide":{"label":"Viditelné při přílivu"},"historic/wreck/visible_at_low_tide":{"label":"Viditelné při odlivu"},"holding_position/type":{"label":"Typ","options":{"ILS":"Instrument Landing System","intermediate":"Křížení pojezdových drah","runway":"Vzletová a přistávací dráha"}},"hoops":{"label":"Počet košů","placeholder":"1, 2, 4..."},"horse_dressage":{"label":"Drezura","options":{"equestrian":"Ano","undefined":"Ne"}},"horse_riding":{"label":"Jízda na koni","options":{"horse_riding":"Ano","undefined":"Ne"}},"horse_scale":{"label":"Obtížnost jízdy na koni","options":{"common":"Snadné: Žádné problémy nebo potíže. (výchozí nastavení)","critical":"Hraniční: Pouze pro zkušené jezdce a koně. Zjevné překážky. Mosty by měly být pečlivě zkontrolovány.","dangerous":"Nebezpečné: Udržitelné pouze pro zkušené jezdce a koně a pouze za dobrého počasí. Sesednout.","demanding":"Používejte s opatrností: Nerovná cesta, občas těžké průchody.","difficult":"Obtížné: cesta úzká a odkrytá. Může obsahovat překážky na cestě a těsné průchody.","impossible":"Neprůchodné: cesta nebo most nevhodný pro koně. Příliš úzká, nedostatečná podpora, překážky jako žebříky. Ohrožení života."},"placeholder":"Obtížné, nebezpečné…","terms":"koně,obtížnost,jízda na koni,náročnost,kůň,koňská,jezdec,jezdectví"},"horse_stables":{"label":"Jezdecká stáj","options":{"stables":"Ano","undefined":"Ne"}},"hot_water":{"label":"Horká voda"},"iata":{"label":"IATA Kód letiště "},"icao":{"label":"ICAO Kód letiště"},"image":{"label":"Obrázek","placeholder":"https://priklad.cz/fotografie.jpg","terms":"ikona,uri obrázku,fotografie,obraz"},"incline":{"label":"Sklon","terms":"svah,kopec,vrch,sjezd,náklon,dokopce,zkopce,nahoru,dolu,rovina,rovný"},"incline_steps":{"options":{"down":"Dolů","up":"Nahoru"}},"indoor":{"label":"Uvnitř","terms":"vnitřní,vnitřek,zastřešeno,v domě,v budově,budova,dům,chodba"},"indoor_type":{"label":"Typ"},"industrial":{"label":"Druh"},"informal":{"label":"Neformální","terms":"nelegální,vyšlapaná,vyježděná,neoficiální"},"information":{"label":"Typ"},"inscription":{"label":"Nápis","terms":"text,písmo,deska,pamětní deska"},"intermittent":{"label":"Vysychající","terms":"stálý,přítok,sezónní,občasný,nestálý,strouha,potok,tok,dešťové"},"internet_access":{"label":"Veřejný přístup k internetu","options":{"no":"Ne","terminal":"Počítače","wired":"Přes kabel","wlan":"Wifi","yes":"Ano"},"terms":"wifi,wlan"},"internet_access/fee":{"label":"Připojení k internetu","options":{"customers":"Pouze pro zákazníky","no":"Zdarma","yes":"Placené"},"terms":"poplatek za wifi"},"internet_access/ssid":{"label":"Název WiFi sítě","terms":"ssid"},"interval":{"label":"Interval","terms":"frekvence,čas,odjezdy,jízdní řád,příjezdy,jak často,pravidelnost"},"junction/ref_oneway":{"label":"Číslo křižovatky","terms":"číslo křížení,označení,identifikace,číslo sjezdu,sjezd,nájezd,název"},"junction_line":{"label":"Křižovatka","options":{"circular":"Kruhový objezd","jughandle":"Sjezd z dálnice","roundabout":"Kruhový objezd"},"terms":"křížit,odbočka,odbočit,spojit,spojení,křížení,kruhový objezd,mimoúrovňová,úrovňová"},"kerb":{"label":"Obrubník"},"kerb/height":{"label":"Výška"},"kitchen":{"label":"Kuchyně","terms":"kuchyň,kuchyńská,kuchyňská linka,místo na vaření,vaření"},"kneipp_water_cure_multi":{"label":"Typy nádrží"},"label":{"label":"Štítek"},"lamp_mount":{"label":"Způsob připevnění"},"lamp_type":{"label":"Typ"},"landuse":{"label":"Typ"},"lane_markings":{"label":"Značení jízdních pruhů","terms":"středová čára,oddělovače jízdních pruhů,čára jízdních pruhů,pruhované,bez pruhů"},"lanes":{"label":"Pruhů","placeholder":"1, 2, 3...","terms":"pruhy,jízdní pruhy,pásy,cesty"},"language_multi":{"label":"Jazyky"},"layer":{"label":"Vrstva","placeholder":"0","terms":"vrstvy,překryvy"},"leaf_cycle":{"label":"Opadavost listí","options":{"deciduous":"Opadavé","evergreen":"Stálezelené","mixed":"Smíšené","semi_deciduous":"Poloopadavé","semi_evergreen":"Polostálezelené"},"terms":"list,cyklus,růst,opad"},"leaf_type":{"label":"Typ listí","options":{"broadleaved":"Listnaté","leafless":"Bezlisté","mixed":"Smíšené","needleleaved":"Jehličnaté"},"terms":"typ,listí,jehličnaté,listnaté"},"leaf_type_singular":{"label":"Typ listí","terms":"typ,listí,jehličnaté,listnaté"},"leisure":{"label":"Typ"},"length":{"label":"Délka (v metrech)","terms":"délka v metrech,dlouhý,rozměr délky,délka"},"level":{"label":"Patro","terms":"patro,úroveň,podlaží,patra,úrovně,poschodí,mezipatro,sklep,půda,přízemí"},"level_semi":{"label":"Úrovně","terms":"patra,pater,výška,úroveň,budovy,poschodí,podlaží,úrovně"},"liaison":{"label":"Typ"},"license_classes":{"label":"Třídy řidičského průkazu","terms":"jízda,průkaz,dopis,řízení,škola,učení,vzdělávání"},"lifeguard":{"label":"Záchranný kruh"},"line_attachment":{"label":"Způsob připojení","terms":"způsob spojení,připojení,síť,internet,telefon"},"line_management":{"label":"Organizace vedení","terms":"větvení,topologie vedení,ukončení"},"lit":{"label":"Osvětlení","terms":"lampa,osvětlení"},"location":{"label":"Umístění","terms":"umístění,lokace,místo,kde,adresa,bod"},"location_pool":{"options":{"indoor":"Vnitřní","outdoor":"Venkovní","roof":"Střecha"}},"lock":{"label":"Zámek"},"lockable":{"label":"Uzamykatelné","terms":"uzamykatelný,zámek,zamknutý,zamknout,uzamknout,zamykat,uzavřít,uzaviratelné"},"locked":{"label":"Zamčeno"},"man_made":{"label":"Typ"},"manhole":{"label":"Typ"},"manufacturer":{"label":"Výrobce","terms":"autor,producent"},"map_size":{"label":"Pokrytí"},"map_type":{"label":"Typ"},"mapillary":{"label":"ID obrázku z Mapillary","terms":"id,identifikace,číslo obrázku,kód,označení,značka,mapillary,obrázek,fotografie,fotka,zdroj"},"marker":{"label":"Typ"},"material":{"label":"Materiál","terms":"hmota,struktura"},"mattress":{"label":"Matrace k dispozici","terms":"dostupné matrace,matrace"},"max_age":{"label":"Maximální věk","terms":"max věk,stáří,omezení věku,nejstarší,roků"},"maxheight":{"label":"Maximální výška","terms":"max výška,povolená výška,strop,podjezd,omezení výšky"},"maxspeed":{"label":"Povolená rychlost","placeholder":"40, 50, 60...","terms":"omezení rychlosti,rychlostní limit,rychlost,nejvyšší"},"maxspeed/advisory":{"label":"Doporučené omezení rychlosti","placeholder":"40, 50, 60…","terms":"doporučená rychlost,rychlost,limit,doporučení,omezení rychlosti,doporučit"},"maxspeed/hgv":{"label":"Povolená rychlost kamionů","placeholder":"40, 50, 60…","terms":"omezení rychlosti pro kamiony,rychlostní limit pro kamiony,rychlost pro kamiony,povolená rychlost pro kamiony,nejvyšší pro kamiony,omezení rychlosti pro nákladní auta,rychlostní limit pro nákladní auta,rychlost pro nákladní auta,povolená rychlost pro nákladní auta,nejvyšší pro nákladní auta"},"maxstay":{"label":"Povoleno zůstat max.","terms":"maximální doba,nejdelší doba,limit,stání,hodiny,omezení,krátkodobé,dlouhodobé"},"maxweight":{"label":"Maximální hmotnost","terms":"max hmotnost,povolená hmotnost,limit,váha,povolení,omezení,hmotnost,nosnost,zátěž"},"maxwidth":{"label":"Maximální šířka","terms":"max šířka,povolená šířka,limit,šířka,povolení,omezení"},"memorial":{"label":"Typ"},"microbrewery":{"label":"Minipivovar","terms":"mini pivovar,mini-pivovar,malý pivovar,drobný pivovar,místní pivovar,vaření piva,pivo,lokální"},"military_service":{"label":"Vojenská služba"},"mimics":{"label":"Kamuflovaný vysílač","terms":"kamuflovaný,maskovaný,jako strom,strom"},"min_age":{"label":"Minimální věk","terms":"spodní věková hranice"},"min_height":{"label":"Výška od dna (m)"},"minspeed":{"label":"Minimální povolená rychlost","placeholder":"20, 30, 40...","terms":"minimální rychlost,povolená rychlost,rychle,nejnižší,nejpomaleji,nejpomalejší,omezení rychlosti"},"model":{"label":"Model","terms":"typ,druh"},"monitoring_multi":{"label":"Monitorování"},"mtb/scale":{"label":"Klasifikace obtížnosti pro MTB","options":{"0":"0: Štěrkový/udusaný povrch, bez překážek, oblé zatáčky","1":"1: Místy nezpevněná půda, kořeny a malé kameny, oblé zatáčky","2":"2: Většinou nepevná půda, velké kameny, lehčí serpentiny","3":"3: Kluzký povrch, samé balvany, prudké zatáčky","4":"4: Sypký povrch, velké schodky, nebezpečné zatáčky","5":"5: Nejvyšší obtížnost, skály, sutiny, sesuvy","6":"6: Prakticky nesjízdné a velmi nebezpečné i pro trialové mistry"},"placeholder":"0, 1, 2, 3...","terms":"horská kola,hory,kolo,cyklista,cyklistika,obtížnost,jízda na kole,náročnost,bycikl,jízdní kolo"},"mtb/scale/imba":{"label":"Obtížnost podle IMBA","options":{"0":"⚪ Nejlehčí (bílý kruh)","1":"🟢 Lehká (zelený kruh)","2":"🟦 Středně těžká (modrý čtverec)","3":"◆ Těžká (černý kosočtverec)","4":"◆◆ Velmi těžká (dvojitý černý kosočtverec)"},"placeholder":"Lehká, středně těžká, těžká...","terms":"horská kola,hory,kolo,cyklista,cyklistika,obtížnost,jízda na kole,náročnost,jízdní kolo,do kopce,imba,rating,bikepark,překážky,překážkové,horská cyklistika,klasifikace"},"mtb/scale/uphill":{"label":"Klasifikace obtížnosti pro MTB do kopce","options":{"0":"0: Průměrný sklon do 10%, štěrk či zpevněný povrch, bez překážek","1":"1: Průměrný sklon do 15%, štěrk či zpevněný povrch, trocha drobných překážek","2":"2: Průměrný sklon do 20%, stabilní povrch, volné kameny do velikosti pěsti, kořeny","3":"3: Průměrný sklon do 25%, různorodý povrch, volné kameny do velikosti pěsti, větve","4":"4: Průměrný sklon do 30%, nestabilní povrch, velké kameny či větve","5":"5: Velmi prudké, do kopce prakticky nesjízdné"},"placeholder":"0, 1, 2, 3...","terms":"horská kola,hory,kolo,cyklista,cyklistika,obtížnost,jízda na kole,náročnost,do kopce,jízda nahoru,jízda do kopce,proti svahu"},"museum":{"label":"Typ"},"name":{"label":"Název","placeholder":"Název prvku (existuje-li)","terms":"štítek,jméno"},"natural":{"label":"Přírodní objekt"},"network":{"label":"Síť","terms":"síťový,soubor,propojení,trasy,cesty"},"network/type":{"label":"Typ sítě"},"network_bicycle":{"label":"Třída sítě","options":{"icn":"Mezinárodní","lcn":"Místní","ncn":"Dálková (v ČR max. třímístné číslo)","rcn":"Regionální (v ČR čtyřmístné číslo)"},"placeholder":"Mezinárodní, Dálková, Regionální, Místní"},"network_foot":{"label":"Třída sítě","options":{"iwn":"Mezinárodní","lwn":"Místní","nwn":"Dálková (v ČR často červená)","rwn":"Regionální"},"placeholder":"Mezinárodní, Dálková, Regionální, Místní"},"network_horse":{"label":"Třída sítě","options":{"ihn":"Mezinárodní","lhn":"Místní","nhn":"Dálková","rhn":"Regionální"},"placeholder":"Mezinárodní, Dálková, Regionální, Místní"},"network_road":{"label":"Síť"},"not/name":{"label":"Nesprávná jména","terms":"častá chybná jména,špatná jména"},"note":{"label":"Poznámka","terms":"komentář"},"office":{"label":"Typ"},"oneway":{"label":"Jednosměrka","options":{"alternating":"Střídavá","no":"Ne","reversible":"Reverzibilní","undefined":"Implicitně Ne","yes":"Ano"},"terms":"jednosměrný,jednosměrná ulice,jednosměrný provoz,jeden směr,jednosměrnost,protisměr,jedním směrem"},"oneway/bicycle":{"label":"Jednosměrka (Cyklisté)","terms":"cykloobousměrka,cyklisté,jednosměrka,kolo,obousměrka pro cyklisty,omezení pro cyklisty,průjezdné pro cyklisty,na kole,cyklo obousměrka,obousměrný provoz"},"oneway_yes":{"options":{"alternating":"Střídavá","no":"Ne","reversible":"Reverzibilní","undefined":"Implicitně Ano","yes":"Ano"}},"openfire":{"label":"Otevřený oheň je povolený","terms":"ohně povoleny,povolení otevřených ohňů,otevřený oheň povolen,táborák,ohniště,opékání,večeře"},"opening_date":{"label":"Očekávané datum otevření","placeholder":"RRRR-MM-DD"},"opening_hours":{"label":"Provozní doba","placeholder":"Není známo","terms":"hodiny,otevírací doba,doba,úřední doba,v provozu,otevřeno,zavřeno,během"},"opening_hours/covid19":{"label":"Otevírací doba během pandemie COVID-19","terms":"koronavirus,lockdown,otevírací hodiny,sars‑cov‑2"},"operator":{"label":"Provozovatel","terms":"operátor,majitel,správce,správa,provozní"},"operator/type":{"label":"Typ provozovatele"},"organic":{"label":"Bioprodukty","options":{"no":"Není","only":"Pouze","yes":"Některé"},"terms":"přírodní,bio"},"outdoor_seating":{"label":"Venkovní sezení","terms":"lavičky,zahrádka,posezení,stolky,stolečky,stoly,venku,letní,slunečník,terasa"},"par":{"label":"Par","placeholder":"3, 4, 5..."},"parcel_dropoff":{"label":"Odevzdání balíku"},"parcel_pickup":{"label":"Vyzvedávání zásilek","options":{"no":"Ne","undefined":"Implicitně Ano","yes":"Ano"}},"park_ride":{"label":"Parkoviště P+R","terms":"p+r,p a r,zaparkuj a jeď,mhd,přestup,dojíždějící,kapacitní,odstavné,hromadná doprava,na kraji města,p + r,parkandride,p/r,parkuj a jeď,městská,metro,tram,bus"},"parking":{"label":"Typ","options":{"carports":"Přístřešek","garage_boxes":"Garáž","lane":"Pruh na straně silnice","layby":"Volební účast / Odstávka","multi-storey":"Víceúrovňové","rooftop":"Na střeše","sheds":"Lehký přístřešek","street_side":"Podél ulice","surface":"Povrchové","underground":"Podzemní"}},"parking/orientation":{"label":"Orientace","options":{"diagonal":"Šikmo k ulici","parallel":"Rovnoběžně s ulicí","perpendicular":"Kolmo k ulici"}},"parking_entrance":{"label":"Typ"},"parking_space":{"label":"Typ"},"payment_multi":{"label":"Platební možnosti","options":{"account_cards":"Karta účtu","alipay":"Alipay","american_express":"American Express","app":"Mobilní aplikace","apple_pay":"Apple Pay","bancomat":"Bankomat","blik":"Blik","cards":"Platební karta","cash":"Hotovost","cheque":"Šek","clipper":"Clipper","coins":"Mince","contactless":"Bezkontaktní platba","credit_cards":"Kreditní karta","cryptocurrencies":"Kryptoměna","debit_cards":"Debitní karta","diners_club":"Diners Club","discover_card":"Discover","dkv":"DKV","electronic_purses":"Elektronická peněženka","ep_easycard":"悠遊卡EasyCard","ep_geldkarte":"GeldKarte","ep_ipass":"iPASS一卡通","girocard":"Girocard","google_pay":"Google Pay","jcb":"JCB","maestro":"Maestro","mastercard":"Mastercard","mastercard_contactless":"Mastercard bezkontaktní","notes":"Bankovky","paypal":"PayPal","prepaid_ticket":"Předplacená jízdenka","telephone_cards":"Telefonní karta","unionpay":"UnionPay","uta":"UTA","v_pay":"V Pay","visa":"Visa","visa_debit":"Visa Debit","visa_electron":"Visa Electron","wechat":"WeChat Pay"},"terms":"druhy plateb,druh platby,platba,způsob,typ placení,typ platby,kreditka,mince,bankovky,contactless,bezkontaktně,hotovost,koruny,euro,možnosti platby"},"phases":{"label":"Fáze","placeholder":"1, 2, 3…"},"phone":{"label":"Telefon","placeholder":"+420 123 456 789","terms":"telefonní číslo"},"pipeline":{"label":"Typ"},"piste/difficulty":{"label":"Obtížnost","options":{"advanced":"Pokročilá","easy":"Snadná","expert":"Expert","extreme":"Extrémní","freeride":"Jízda zdarma","intermediate":"Středně pokročilá","novice":"Začátečník"},"placeholder":"Lehká, Střední, Těžká..."},"piste/difficulty_downhill":{"options":{"advanced":"Pokročilá (černý diamant)","easy":"Snadná (zelený kruh)","expert":"Velmi těžká (alpské sjezdovky: oranžová; americké: dva černé diamanty) ","extreme":"Extrémní (je třeba horolezecké výbavy) ","freeride":"Freeride (mimo trať) ","intermediate":"Střední (evropské sjezdovky: červená) ","novice":"Zelená (pro začátečníky)"},"placeholder":"Lehká, střední, těžká..."},"piste/difficulty_nordic":{"options":{"advanced":"Pokročilá - Úzké, prudké nebo zledovatělé úseky, ostré zatáčky","easy":"Lehká - Mírné svahy, krátké prudší úseky","expert":"Pokročilá - V okolí nebezpečný terén","intermediate":"Střední - Prudké úseky","novice":"Začátečnická - Mírná, nenáročná"},"placeholder":"Lehká, střední, těžká... "},"piste/difficulty_skitour":{"options":{"advanced":"Pokročilá - S: 40-45° sklon","easy":"Jednoduchá - WS: 30-35° sklon","expert":"Zkušení - SS: 45-50° sklon","extreme":"Extrémní - EX: >55° sklon","freeride":"Freeride - AS: 50-55° sklon","intermediate":"Středně pokročilá - ZS: 35-40° sklon","novice":"Začátečník - L: <30° sklon"},"placeholder":"Lehká, střední, těžká... "},"piste/grooming":{"label":"Úprava","options":{"backcountry":"Strojově neupraveno","classic":"Klasika","classic+skating":"Klasika a bruslení","mogul":"Boule","scooter":"Skútrem","skating":"Bruslení (na hladko)"}},"piste/grooming_downhill":{"options":{"backcountry":"Strojově neupraveno","classic":"Klasický","mogul":"Boule"}},"piste/grooming_hike":{"options":{"backcountry":"Neupravené – pro sněžnice","classic":"Upravené – zimní pochod"}},"piste/grooming_nordic":{"options":{"backcountry":"Neupravené, bez úpravy","classic":"Klasický","classic+skating":"Klasika a bruslení","scooter":"Skútrem","skating":"Bruslení"}},"piste/type":{"label":"Typ","options":{"connection":"Spojení","downhill":"Sjezd","hike":"Pěší","ice_skate":"Bruslení na ledu","nordic":"Běžky","playground":"Dětský ski park","skitour":"Skialpinismus","sled":"Sportovní saně","sleigh":"Tažené saně","snow_park":"Snowpark"}},"place":{"label":"Typ"},"plant":{"label":"Elektrárna"},"plant/method":{"label":"Způsob výroby energie"},"plant/output":{"label":"Forma výstupu energie","options":{"cold_air":"Studený vzduch","cold_water":"Studená voda","compressed_air":"Stlačený vzduch","electricity":"Elektřina","hot_air":"Horký vzduch","hot_water":"Horká voda","steam":"Pára","vacuum":"Vakuum"}},"plant/output/electricity":{"label":"Výstup elektrické energie","placeholder":"500MW, 1000MW, 2000MW…"},"plant/source":{"label":"Zdroj energie"},"playground":{"label":"Typ"},"playground/theme":{"label":"Motiv"},"plots":{"label":"Počet zahrádek","placeholder":"10, 20, 30..."},"polling_station":{"label":"Volební místo","terms":"hlasovací místnost"},"population":{"label":"Počet obyvatel"},"population/date":{"label":"Datum populace","placeholder":"RRRR-MM-DD"},"portable":{"label":"Mobilní","terms":"samostatné,movilní,pojízdné"},"post":{"label":"Poštovní adresa"},"power":{"label":"Typ"},"power_supply":{"label":"Elektrická přípojka","terms":"zásuvky,popis zásuvky,elektrická zástrčka,elektřina,elektrické napájení,zdroj,koncovka,elektrika"},"preschool":{"label":"Předškolní"},"produce":{"label":"Výroba"},"product":{"label":"Výrobky","terms":"produkt,produkty,výstup,produkce,zboží,předměty"},"public_bookcase/type":{"label":"Typ"},"pump":{"label":"Pumpa","options":{"manual":"Ruční pumpa","no":"Není","powered":"Strojem poháněná pumpa","yes":"Ano"}},"railway":{"label":"Typ"},"railway/position":{"label":"Pozice milníku","placeholder":"Vzdálenost na jedno desetinné místo (123.4)"},"railway/signal/direction":{"label":"Dotčený směr","options":{"backward":"Zpátky","both":"Oba/všechny směry","forward":"Dopředu"}},"ramp":{"label":"Rampa","terms":"cyklistické schodiště,schodišťová rampa,nakloněná,rampa pro kola"},"rating":{"label":"Jmenovitý výkon"},"rcn_ref":{"label":"Číslo cyklotrasy"},"real_fire-GB-IE":{"label":"Opravdový oheň","terms":"ohniště,oheň"},"recycling_accepts":{"label":"Určení","options":{"batteries":"Baterie","cans":"Plechovky","cardboard":"Karton","clothes":"Oblečení","cooking_oil":"Olej na smažení","engine_oil":"Motorový olej","glass":"Jakékoliv sklo (temperované sklo, okna, zrcadla atd.)","glass_bottles":"Skleněné lahve a sklenice","green_waste":"Zelený odpad","paper":"Papír","plastic":"Umělá hmota","plastic_bottles":"Plastové lahve","plastic_packaging":"Plastové obaly","scrap_metal":"Šrot","shoes":"Boty"}},"recycling_type":{"label":"Typ","options":{"centre":"Centrum","container":"Kontejner"},"placeholder":"Kontejner, Centrum"},"ref":{"label":"Referenční kód","terms":"reference,kód,číslo,upřesnění,definice,referenční"},"ref/FR/siret-FR":{"label":"Číslo SIRET","terms":"francouzské identifikační číslo společnosti,siret"},"ref/isil":{"label":"Kód ISIL"},"ref/vatin":{"label":"Daňové identifikační číslo","terms":"identifikační číslo pro dph,dič"},"ref_aeroway_gate":{"label":"Číslo brány"},"ref_disc_golf_hole":{"label":"Číslo jamky","placeholder":"1-18"},"ref_golf_hole":{"label":"Číslo jamky","placeholder":"1-18"},"ref_highway_junction":{"label":"Číslo křižovatky"},"ref_platform":{"label":"Číslo nástupiště"},"ref_road_number":{"label":"Číslo silnice","terms":"číslo silnice,označení silnice,číslo cesty,silnice,dálnice,dálniční číslo,číslo dálnice,označení"},"ref_room_number":{"label":"Číslo pokoje"},"ref_route":{"label":"Číslo trasy","terms":"číslo silnice,označení silnice,číslo cesty,silnice,dálnice,dálniční číslo,číslo dálnice,označení"},"ref_runway":{"label":"Číslo přistávací dráhy","placeholder":"např. 01L/19R"},"ref_sector":{"label":"Počet úseků"},"ref_stop_position":{"label":"Číslo zastávky"},"ref_taxiway":{"label":"Jméno pojezdové dráhy","placeholder":"např. A5"},"relation":{"label":"Typ"},"religion":{"label":"Náboženství","options":{"bahai":"Bahá’í","benzhu":"Benzuismus","buddhist":"Buddhismus","caodaism":"Kaodaismus","chinese_folk":"Čínské lidové náboženství","christian":"Křesťanství","confucian":"Konfucianismus","hindu":"Hinduismus","jain":"Džinismus","jewish":"Judaismus","multifaith":"Více náboženství","muslim":"Islám","none":"Nevěřící","pagan":"Pohanství","shinto":"Šintoismus","sikh":"Sikhismus","spiritualist":"Spiritualismus","taoist":"Taoismus","tenrikyo":"Tenrikyo","unitarian_universalist":"Unitářský univerzalista","vietnamese_folk":"Vietnamské lidové náboženství","voodoo":"Vúdú"},"terms":"vyznání,náboženský,bůh,víra"},"reservation":{"label":"Rezervace","options":{"no":"Nepřijímány","recommended":"Doporučeny","required":"Požadovány","yes":"Přijímány"},"terms":"objednání,objednávka,rezervování,stůl,přijímá rezervace,zamluvit,zamluvení"},"residential":{"label":"Typ"},"resort":{"label":"Typ"},"resource":{"label":"Zdroje"},"restriction":{"label":"Typ"},"restrictions":{"label":"Omezení odbočování"},"roof/colour":{"label":"Barva střechy","terms":"barva,krytina,tašky,plechová střecha,šindele,došky,slaměná"},"room":{"label":"Typ"},"rooms":{"label":"Pokojů"},"rotor/diameter":{"label":"Průměr rotoru (v metrech)","terms":"poloměr rotoru,délka rotoru"},"roundtrip":{"label":"Tvoří okruh","terms":"kruhový,uzavřený,smyčkový,okružní"},"route":{"label":"Typ"},"route_master":{"label":"Typ"},"ruins":{"label":"Druh"},"rwn_ref":{"label":"číslo trasy"},"sac_scale":{"label":"Klasifikace pro pěší","options":{"alpine_hiking":"T4: Vysokohorská turistika","demanding_alpine_hiking":"T5: Náročná vysokohorská turistika","demanding_mountain_hiking":"T3: Náročná horská turistika","difficult_alpine_hiking":"T6: Těžká vysokohorská turistika","hiking":"T1: Turistika","mountain_hiking":"T2: Horská turistika"},"placeholder":"Horská turistika, vysokohorská turistika...","terms":"náročnost,obtížnost,složitost,terén,chůze,hory"},"salt":{"label":"Sůl","terms":"slaný roztok,solený"},"sample_collection":{"label":"Vzorky"},"sanitary_dump_station":{"label":"Výlevka pro WC","terms":"karavan,odpad,vypuštění,toalety,vypuštění sanitárního odpadu,místo pro vypuštění,zařízení pro vypuštění,sanitární,odpadový tank"},"screen":{"label":"Obrazovky","placeholder":"1, 4, 8,…"},"scuba_diving":{"label":"Služby"},"seamark/beacon_isolated_danger/shape":{"label":"Tvar"},"seamark/beacon_lateral/category":{"label":"Kategorie","options":{"danger_left":"Nebezpečí vlevo","danger_right":"Nebezpečí vpravo","port":"Přístav","starboard":"Pravobok","waterway_left":"Vodní cesta vlevo","waterway_right":"Vodní cesta vpravo"}},"seamark/beacon_lateral/colour":{"label":"barva","options":{"green":"Zelená","grey":"Šedá","red":"Červená"}},"seamark/beacon_lateral/shape":{"label":"Tvar"},"seamark/beacon_lateral/system":{"label":"Systém","options":{"cevni":"CEVNI","iala-a":"IALA A","iala-b":"IALA B","other":"Ostatní"}},"seamark/buoy_lateral/category":{"label":"Kategorie","options":{"channel_left":"kanál vlevo","channel_right":"kanál vpravo","danger_left":"Nebezpeční vlevo","danger_right":"Nebezpeční vpravo","port":"Přístav","preferred_channel_port":"Upřednostňovaný kanál k přístavu","preferred_channel_starboard":"Upřednostňovaný kanál na pravobok","starboard":"Pravobok","waterway_left":"Vodní cesta vlevo","waterway_right":"Vodní cesta vpravo"}},"seamark/buoy_lateral/colour":{"label":"Barva","options":{"green":"Zelená","green;red;green":"Zelená-Červená-Zelená","green;white;green;white":"Zelená-Bílá-Zelená-Bílá","red":"Červená","red;green;red":"Červená-Zelená-Červená","red;white;red;white":"Červená-Bílá-Červená-Bílá","white":"Bílá","yellow":"Žlutá"}},"seamark/buoy_lateral/shape":{"label":"Tvar"},"seamark/buoy_lateral/system":{"label":"Systém","options":{"cevni":"CEVNI","iala-a":"IALA A","iala-b":"IALA B","other":"Ostatní"}},"seamark/mooring/category":{"label":"Kategorie"},"seamark/rescue_station/category":{"label":"Zařízení pro záchranu života","options":{"aircraft":"Letadlo","first_aid":"První pomoc","hovercraft":"Vznášedlo","lifeboat":"Záchranný člun (na souši)","lifeboat_on_mooring":"Záchranný člun (na kotvišti)","radio":"Radiostanice","refuge_intertidal":"Přílivové útočiště","refuge_shipwrecked":"Útočiště pro ztroskotání","seaplane":"Hydroplán","tug":"Záchranný remorkér"}},"seamark/type":{"label":"Mořská bóje","terms":"námořní"},"seamark/wreck/category":{"label":"Kategorie"},"seasonal":{"label":"Sezónní"},"seats":{"label":"Sedadla","placeholder":"2, 4, 6..."},"second_hand":{"label":"Použité zboží","options":{"no":"Ne","only":"Pouze","yes":"Ano"},"placeholder":"Ano, Ne, Pouze","terms":"prodává použité,prodej použitého,použitý,z druhé ruky,bazarové,bazar,sekáč,second-hand,není nové,nové,zašlé,staré,antikvariát,veteš"},"segregated":{"label":"Oddělení chodců od cyklistů"},"self_service":{"label":"Samoobsluha"},"service":{"label":"Typ","options":{"alley":"Ulička","drive-through":"Drive-through","driveway":"Příjezdová cesta","emergency_access":"Nouzový vjezd","parking_aisle":"Parkovací ulička"}},"service/bicycle":{"label":"Servis jízdních kol","terms":"služby pro cyklisty,cyklistické služby,služby jízdních kol,služby pro jízdní kola"},"service/vehicle":{"label":"Služby"},"service_rail":{"label":"Typ manipulační koleje","options":{"crossover":"Kolejová spojka","siding":"Výhybna","spur":"Nákladiště","yard":"Kolej seřaďovacího nádraží"},"terms":"druh vlečky,určení,železnice,místní dráha,užití,účel,typ,dráhy,drážní,popis,vedlejší,obslužná"},"service_times":{"label":"Doba poskytování služeb"},"shelter":{"label":"Přístřešek"},"shelter_type":{"label":"Typ"},"shoes":{"label":"Boty"},"shop":{"label":"Typ"},"shower":{"label":"Sprchy","terms":"osprchovat,voda,mytí,hygiena,sprchovat se,sprcha"},"siren/purpose":{"label":"Účel"},"siren/type":{"label":"Typ","options":{"electronic":"Elektronická","other":"Ostatní","pneumatic":"Pneumatická"}},"site":{"label":"Typ"},"smoking":{"label":"Kouření","options":{"dedicated":"Zaměřeno na kuřáky (např. kuřácký klub)","isolated":"Na určených místech, oddělených","no":"Ne, všude zakázáno","outside":"Povoleno venku","separated":"Na určených místech, neoddělených","yes":"Povoleno všude"},"placeholder":"Ne, V oddělené místnosti, Ano...","terms":"cigarety,kouřit,vape,zapálit si,kouř,zákaz kouření"},"smoothness":{"label":"Hladkost","options":{"bad":"Robustní kola: běžná auta, trekové bicykly, rikši","excellent":"Tenká kolečka: brusle, skateboardy","good":"Tenká kola: závodní bicykly","horrible":"Terénní kola: off-road auta","impassable":"Neprůjezdné žádným vozidlem","intermediate":"Běžná kola: závodní auta, městské bicykly, kolečková křesla, skútry","very_bad":"Vysoký podvozek: lehká terénní auta","very_horrible":"Speciální terénní kola: traktory, čtyřkolky, tanky, MTB"},"placeholder":"Tenká kolečka, Běžná kola, Terénní kola...","terms":"rovinatost,rovina,povrch,pojezd,kolečka,kvalita"},"sms":{"label":"SMS","terms":"textová zpráva,zpráva,esemeska,mobilní zpráva,text,smska,textově,zprávou,mobilem"},"social_facility":{"label":"Typ","options":{"ambulatory_care":"Ambulantní péče","assisted_living":"Asistované bydlení","day_care":"Denní péče","food_bank":"Potravinová banka","group_home":"Skupinové bydlení","nursing_home":"Domov pro seniory","outreach":"Nerezidenční zařízení","shelter":"Přístřešek","workshop":"Dílna"}},"social_facility_for":{"label":"Komu slouží"},"source":{"label":"Zdroje","options":{"aerial imagery":"Letecké snímky","gps":"GPS","local knowledge":"Místní znalost","osm notes":"OpenStreetMap poznámky","streetlevel imagery":"Fotky z úrovně ulice","survey":"Průzkum"},"terms":"odkaz"},"source/population":{"label":"Zdroj populace"},"species":{"label":"Druh","placeholder":"Acer platanoides, Quercus robur, …","terms":"odrůda"},"species/wikidata":{"label":"Wikidata druhu","terms":"wikidata,vikidata,data druhu wikipedie,zdroj dat druhu,automatický výpis informací,podrobnosti,automatizace,wiki,id,číslo"},"sport":{"label":"Sporty"},"sport_ice":{"label":"Sporty","options":{"curling":"Curling","ice_hockey":"Lední hokej","ice_skating":"Bruslení na ledu","ice_stock":"Bavorský curling","multi":"Více sportů"}},"sport_pub":{"label":"Sporty","options":{"billiards":"Kulečník","darts":"Šipky","table_soccer":"Stolní fotbal"},"terms":"sport,sportovní"},"sport_racing_motor":{"label":"Sporty","options":{"karting":"Motokáry","motocross":"Motokros","motor":"Motoristický sport","speedway":"Plochá dráha pro motocykly"}},"sport_racing_nonmotor":{"label":"Sporty","options":{"bmx":"BMX","cycling":"Cyklistika","dog_racing":"Psí běžecké závody","horse_racing":"Dostihy","running":"Běh"}},"stars":{"label":"Hvězdiček","terms":"hodnocení"},"start_date":{"label":"Datum počátku existence","placeholder":"RRRR-MM-DD","terms":"počátek"},"step_count":{"label":"Počet schodů","terms":"počet schodů,velikost schodiště,schody,výška,délka,délka schodů,kolik schodů,jeden schod"},"stile":{"label":"Typ"},"stop":{"label":"Typ stopky","options":{"all":"Ze všech směrů","minor":"Z vedlejších"}},"street_cabinet":{"label":"Typ"},"stroller":{"label":"Přístup pro kočárky","options":{"limited":"Omezeně","no":"Ne","yes":"Ano"},"terms":"pro kočárky,nájezd,sjezd,obrubník,schod,schody,rampa,přístupné,dostupné,sklon,příjezd,kočárek,maminky,děti,miminka"},"structure":{"label":"Struktura","options":{"bridge":"Most","cutting":"Zářez","embankment":"Násyp","ford":"Brod","tunnel":"Tunel"},"placeholder":"Není známo","terms":"stavba,struktura,budova,objekt,hmota,předmět,vytvořeno člověkem"},"structure_power":{"label":"Struktura","options":{"lattice":"Mříž","solid":"Pevný","tubular":"Trubkový"}},"structure_waterway":{"label":"Struktura","options":{"tunnel":"Tunel"},"placeholder":"Neznámé"},"studio":{"label":"Typ"},"subject":{"label":"Předmět","terms":"předmět,objekt"},"subject/wikidata":{"label":"Wikidata předmětu","terms":"wikidata,vikidata,data předmětu wikipedie,zdroj dat předmětu,automatický výpis informací,podrobnosti,automatizace,wiki,id,číslo"},"substance":{"label":"Látka"},"substation":{"label":"Typ","options":{"compensation":"Kompenzace reaktivní síly","converter":"AC/DC konvertor vysokého napětí","distribution":"Regionální distribuce","generation":"Generační","industrial":"Průmyslová","minor_distribution":"Místní distribuce","traction":"Napájení trakčního systému","transition":"Nadzemní/podzemní přechod","transmission":"Přenos vysokého napětí"}},"substation_pipeline":{"label":"Typ","options":{"compression":"Kompresní","distribution":"Regionální distribuce","field_gathering":"Polní sběrná","industrial":"Průmyslová","inspection_gauge":"Kontrolní měřidlo","measurement":"Měřící","minor_distribution":"Místní distribuce","transmission":"Trafostanice","valve":"Ventil","valve_group":"Ventilová skupina"}},"supervised":{"label":"Hlídané","terms":"střežené,obsazené"},"support":{"label":"Připevnění","terms":"podpora,podpěra,závěs,tyč,způsob uchycení,konstrukce,umístění,přichycení,zavěšení,přimontování"},"surface":{"label":"Povrch","options":{"artificial_turf":"Umělý trávník","asphalt":"Asfalt","compacted":"Zhutněný","concrete":"Beton","dirt":"Hlína","grass":"Tráva","gravel":"Štěrk","ground":"Země","metal":"Kov","mud":"Vytrvale zablácená","paved":"Zpevněný","paving_stones":"Dlažba","salt":"Sůl","sand":"Písek","sett":"Dlažba","unhewn_cobblestone":"Dlažební kostky (neotesané, nezaoblené)","unpaved":"Nezpevněný","wood":"Dřevo","woodchips":"Štěpka"},"terms":"povrch,materiál,dlažba,asfalt,dlážděno,hladké,upravené,vyježděné,hladkost,tráva,štěrk,kamení,písek,kryt,vrstva"},"surveillance":{"label":"Druh zabezpečení"},"surveillance/type":{"label":"Typ zabezpečení","options":{"ALPR":"Automatická čtečka SPZ","camera":"Kamera","guard":"Hlídač"}},"surveillance/zone":{"label":"Zabezpečená zóna"},"survey/date":{"label":"Datum posledního průzkumu","terms":"datum kontroly,návštěvy,datum,prohlídka,návštěva,kontrola,zkontrolováno,ověřeno,navštíveno,kdy,čas,poslední kontrola,aktuální"},"survey_point/datum_aligned":{"label":"Zarovnáno na místní geodetické datum","terms":"zarovnání,základ,geodetický,místní,datum"},"survey_point/purpose":{"label":"Účel","options":{"both":"Oboje","horizontal":"Horizontální zarovnání","vertical":"Vertikální zarovnání"}},"survey_point/structure":{"label":"Struktura","options":{"beacon":"Maják","block":"Masivní blok","bracket":"Závorka","cairn":"Mohyla","cut":"Vyjmout","indented_pin":"Odsazený kolík","magnet":"Magnet","medallion":"Medailon","pillar":"Pilíř","pin":"Kolík","plaque":"Plaketa","pole":"Sloup elektrického vedení"}},"swimming_pool":{"label":"Typ"},"switch":{"label":"Typ","options":{"circuit_breaker":"Zkratovač","disconnector":"Odpojovač","earthing":"Zemnění","mechanical":"Mechanický"}},"tactile_paving":{"label":"Taktilní povrch pro nevidomé","terms":"pro slepce,taktilní,hmatové,zvýrazněné,upozornění,invalidní,invalidy,přístupné,orientace,navigace,pro všechny,akcent,dláždění,linky,pás,slepí,slepci,slepec,nevidomí"},"takeaway":{"label":"Jídlo s sebou","options":{"no":"Ne","only":"Jen s sebou","yes":"Ano"},"placeholder":"Ano, Ne, Jen s sebou","terms":"okno,vokno,s sebou,do ruky,ven,na cestu,výdej,výdejní okno,zabalit,ssebou,sebou"},"target":{"label":"Cíl"},"taxon":{"label":"Taxon","placeholder":"Acer platanoides Columnare, Pyrus calleryana Chanticleer …","terms":"druh,čeleď,řád,třída,rod,kmen,říše,doména,život"},"tee":{"label":"Barva/typ odpaliště"},"telecom":{"label":"Typ"},"telecom/medium":{"label":"Materiál"},"tidal":{"label":"Přílivový","terms":"závislý na přílivu,příliv,odliv,nestálý,občasný,vysychající,odlivový,moře,oceán"},"to":{"label":"Do"},"toilets":{"label":"Toalety","terms":"wc,00,záchod,záchody,záchodky,hajzly"},"toilets/disposal":{"label":"Zacházení s odpadem","options":{"bucket":"Nádrž na odpad","chemical":"Chemický","flush":"Splachovací","pitlatrine":"Kadibudka"}},"toilets/handwashing":{"label":"Mytí rukou","terms":"umyvadlo,mýdlo,voda,hygiena,ruce,opláchnutí,kohoutek"},"toilets/position":{"label":"Pozice","terms":"umístění,poloha záchodu,toalety,místo,směr,otočení"},"toilets/wheelchair":{"label":"Toalety přístupné pro vozíčkáře","options":{"limited":"Omezeně","no":"Ne","yes":"Ano"},"terms":"záchody pro vozíčkáře,vozíček,vozíčkář,invalida,invalidní záchody,záchod,toaleta,toalety pro invalidy,sklon,bariéra,bezbariérové,bezbariérový záchod,rovina,bezbariérové záchody,pro invalidy,sjezd,přístupné,obrubník,dostupné,dostupnost"},"toll":{"label":"Mýtné","terms":"zpoplatněno,mýto,mýtné,placené,placený úsek,úsek,dálnice,silnice,kamion,platba,cena,poplatek"},"tomb":{"label":"Typ"},"tourism":{"label":"Typ"},"tower/construction":{"label":"Konstrukce","placeholder":"Ukotvená, příhradová, skrytá, ..."},"tower/platforms":{"label":"Plošiny","placeholder":"1, 2, 3..."},"tower/type":{"label":"Typ"},"townhall/type":{"label":"Typ"},"tracktype":{"label":"Klasifikace povrchu","options":{"grade1":"1: Pevný","grade2":"2: Převážně zpevněný povrch s menším množstvím neudusaného písku, hlíny, bahna, trávy","grade3":"3: Napůl zpevněný a napůl měkký povrch jako nezpevněný písek, hlína, bahno, tráva","grade4":"4: Převážně měkký povrch jako nezpevněný písek, hlína, bahno, tráva; ale i trocha zpevněného povrchu","grade5":"5: Nezpevněný písek, hlína, bahno, tráva"},"placeholder":"Pevný, převážně pevný, měkký povrch"},"trade":{"label":"Typ"},"traffic_calming":{"label":"Typ","options":{"bump":"Úzký příčný práh","chicane":"Šikana","choked_table":"Zúžená plocha pro zpomalení","choker":"Zúžení silnice","cushion":"Zpomalovací polštář","dip":"Prohlubeň","double_dip":"Dvojitá prohlubeň","hump":"Široký příčný práh","island":"Dopravní ostrůvek","mini_bumps":"Minimální povolená rychlost","rumble_strip":"Opticko-akustická brzda","table":"Zvýšená plocha pro zpomalení"},"terms":"plochý vrchol,hrb,rychlost,pomalu"},"traffic_sign":{"label":"Dopravní značka"},"traffic_sign/direction":{"label":"Dotčený směr","options":{"backward":"Zpátky","both":"Oba / všechny směry","forward":"Vpřed"}},"traffic_signals":{"label":"Typ"},"traffic_signals/arrow":{"label":"Taktilní šipka","terms":"šipka na stisktutí,chodci stiskněte tlačítko"},"traffic_signals/countdown":{"label":"Odpočítávadlo","terms":"odpočet,odpočítávání,časovač"},"traffic_signals/direction":{"label":"Dotčený směr","options":{"backward":"Zpátky","both":"Oba / všechny směry","forward":"Dopředu"}},"traffic_signals/minimap":{"label":"Haptická mapa","terms":"taktilní mapa,mapa pro nevidomé"},"traffic_signals/sound":{"label":"Zvukové signály","options":{"locate":{"description":"Signál je pouze pro nalezení volacího tlačítka","title":"Lokátor volacího tlačítka"},"no":"Ne","walk":{"description":"Je tam pouze signál, kdy je povolena chůze","title":"Indikace chůze"},"yes":"Ano"}},"traffic_signals/vibration":{"label":"Vibrace"},"trail_visibility":{"label":"Viditelnost pěšiny","options":{"bad":"Špatná: žádné značení, pěšina se místy úplně vytrácí","excellent":"Výborná: všudypřítomné značení nebo zcela jednoznačná cesta","good":"Dobrá: značení viditelné, ale občas je nutné hledat další značku nebo pěšinu","horrible":"Hrozná: pěšina se často ztrácí, je nutné mít orientační smysl","intermediate":"Střední: občasné značení, pěšina je většinou zřetelná","no":"Žádná: pěšina je skoro nezřetelná, je nutné mít výborný orientační smysl"},"placeholder":"Výborná, Dobrá, Špatná...","terms":"viditelnost cesty,jasnost trasy,čitelnost,snadnost,orientace,nápadnost"},"transformer":{"label":"Typ","options":{"auxiliary":"Pomocné: Napájí vnitřní systémy v rozvodnách","converter":"Převodník: Napájí převody energie","distribution":"Distribuce: Napájí konečné spotřebitele, instalované mimo rozvodny","generator":"Generátor: Zvyšování napětí v elektrárnách","main":"Hlavní: Přední energie","phase_angle_regulator":"Regulátor fázového úhlu","yes":"Neznámá role"}},"trees":{"label":"Stromy"},"trench":{"label":"Typ"},"trolley_wire":{"label":"Trolejové vedení","terms":"troleje,zadrátováno,dráty,šňůry,elektrifikováno,elektrifikace,trakce,trakční vedení"},"tunnel":{"label":"Typ","placeholder":"Výchozí"},"tunnel_combo":{"label":"Typ","options":{"avalanche_protector":"Lavinový protektor","building_passage":"Průchod budovy","culvert":"Propustek","flooded":"Zatopený tunel"}},"turning_circle":{"label":"Tvar"},"two_sided":{"label":"Oboustranné","options":{"undefined":"Ne","yes":"Ano"},"terms":"dvojstranné"},"usage_rail":{"label":"Typ použití","options":{"branch":"Vedlejší","industrial":"Průmysl","main":"Hlavní","military":"Armáda","test":"Test","tourism":"Turismus"},"terms":"způsob,druh užití,využití,účel,použití"},"usage_waterway":{"label":"Typ použití","options":{"headrace":"Hlavový závod","irrigation":"Zavlažování","spillway":"Přeliv","tailrace":"Ocasní plocha","transmission":"Přenos","transportation":"Doprava"}},"utility":{"label":"Služba","options":{"gas":"Plyn","oil":"Ropa","power":"Energetika","sewerage":"Odpadní voda","street_lighting":"Pouliční osvětlení","telecom":"Telekomunikační","water":"Voda"}},"utility_semi":{"label":"Služby"},"valve":{"label":"Typ"},"vehicles":{"label":"Vozidla","options":{"bus":"Bus","ferry":"Trajekt","light_rail":"Lehká železnice","monorail":"Jednokolejka","subway":"Metro","train":"Vlak","tram":"Tramvaj","trolleybus":"Trolejbus"}},"vending":{"label":"Typy zboží"},"vhf":{"label":"Kanál VHF","terms":"volací značka,velmi krátké vlny"},"via":{"label":"Přes"},"video_calls":{"label":"Videohovory","terms":"video hovory,dálková komunikace,obrazový hovor,audiovizuální"},"visibility":{"label":"Viditelnost","options":{"area":"Více než 20 m (65 ft)","house":"Do 5 m (16 ft)","street":"5 až 20 m (16 až 65 ft)"},"terms":"jasnost,nápadnost,orientace"},"volcano/status":{"label":"Stav sopky","options":{"active":"Aktivní","dormant":"Spící","extinct":"Vyhaslá"}},"volcano/type":{"label":"Typ sopky","options":{"scoria":"Sypaný kužel","shield":"Štít","stratovolcano":"Stratovulkán"}},"voltage":{"label":"Napětí"},"voltage/primary":{"label":"Primární napětí","terms":"prvotní,primární,napětí,elektřina,síť,síťové,vedení,volt"},"voltage/secondary":{"label":"Sekundární napětí","terms":"sekundární,druhotný,napětí,elektřina,síť,síťové,vedení,volt"},"voltage/tertiary":{"label":"Terciální napětí","terms":"třetí,terciální,napětí,elektřina,síť,síťové,vedení,volt"},"wall":{"label":"Typ"},"waste":{"label":"Odpad"},"water":{"label":"Typ"},"water_point":{"label":"Kohout s pitnou vodou"},"water_source":{"label":"Vodní zdroj","options":{"main":"Potrubí vodní distribuce","pond":"Rybník","river":"Řeka","stream":"Potok","water_tank":"Nádrž na vodu"}},"water_tank/volume":{"label":"Objem (litry)","placeholder":"10000, 20000, 30000…","terms":"litry,obsah,tekutina,mililitr,hektolitr,litr,kubík"},"waterway":{"label":"Typ"},"website":{"label":"Webová stránka","placeholder":"https://priklad.cz","terms":"přítomnost na internetu,uri,adresa url,stránka"},"wetland":{"label":"Typ","options":{"bog":"Vrchoviště","fen":"Slatiniště","mangrove":"Mangovník","marsh":"Marše","reedbed":"Rákosina","saltmarsh":"Slanisko","string_bog":"Rašeliniště","swamp":"Močál","tidalflat":"Wattové pobřeží","wet_meadow":"Mokrá louka"}},"wheelchair":{"label":"Pro vozíčkáře","options":{"limited":"Omezeně","no":"Ne","yes":"Ano"},"terms":"přístup pro vozíčkáře"},"wholesale":{"label":"Velkoobchod"},"width":{"label":"Šířka (v metrech)","terms":"šířka v metrech,průjezd,široký,rozměr,délka"},"wikidata":{"label":"Wikidata","terms":"vikidata,data wikipedie,zdroj dat,automatický výpis informací,podrobnosti,automatizace,wiki"},"wikimedia_commons":{"label":"Stránka Wikimedia Commons","placeholder":"Soubor:Příklad.jpg","terms":"reference,wikimedia,commons,wiki,odkaz,zdroj,média,obraz,foto,propojení"},"wikipedia":{"label":"Wikipedie","terms":"wiki,wikipedia,wikina,cs.wikipedia.org,vikipedie"},"windings":{"label":"Vinutí","placeholder":"1, 2, 3…","terms":"cívka,způsob,elektromagnetické,elektřina"},"windings/auto":{"label":"Autotransformátor","options":{"no":"Ne","undefined":"Implicitně Ne","yes":"Ano"},"terms":"automatický transformátor,automatická transformátorová stanice,automatická elektrická stanice,automatický"},"windings/configuration":{"label":"Konfigurace vinutí","options":{"delta":"Trojúhelník","leblanc":"LeBlanc","open":"Otevřít","open-delta":"Otevřená delta","scott":"Vinutí v konfiguraci „Scott“","star":"Hvězda","zigzag":"Cikcak"},"terms":"cívka,vinutí,způsob,elektromagnetické,konfigurace,sestavení,provedení"}},"presets":{"addr/interpolation":{"name":"Interpolace adresy"},"address":{"name":"Adresa","terms":"město,psč,ulice,čp,če"},"advertising/billboard":{"name":"Reklamní poutač","terms":"reklama,billboard,plakát"},"advertising/board":{"name":"Plakátová plocha","terms":"reklama,reklamní,tabule,vývěska,nástěnka,deska,úřední deska,vitrýnka,vitrýna,prezentace,prezentační,oznámení,oznamovací,letáčky,plakáty"},"advertising/column":{"name":"Reklamní sloup","terms":"sloup,reklama,reklamní,otáčecí,plakáty,plakátový,polepený"},"advertising/poster_box":{"name":"Plakátová skříň","terms":"doručovací schránka s obrubníkem,domovní doručovací schránka,doručovací schránka přímo ke dveřím,otvor pro dopisy,dopisní štítek,štěrbina pro dopisy,schránka na dopisy,dopisní díra,štítek pro poštu,štěrbina pro poštu,poštovní schránka,poštovní otvor,otvor pro poštu,poštovní štěrbina,schránka přímo u dveří"},"advertising/totem":{"name":"Reklamní totem","terms":"sloup,reklama,reklamní,otáčecí,plakáty,plakátový,polepený"},"aerialway":{"name":"Prvek lanové dráhy"},"aerialway/cable_car":{"name":"Kabinová lanovka","terms":"lanovka,vlek,lanová dráha,lyžování,snowboarding,tramvajová"},"aerialway/chair_lift":{"name":"Sedačková lanovka","terms":"lanovka,lyžování,snowboarding"},"aerialway/drag_lift":{"name":"Lyžařský vlek","terms":"lyžování,snowboarding,povrchový kabel"},"aerialway/gondola":{"name":"Kabinková lanovka","terms":"lanovka,vlek,lyžování,snowboarding"},"aerialway/goods":{"name":"Nákladní lanovka","terms":"lanovka"},"aerialway/j-bar":{"name":"Lyžařský vlek - jednokotva","terms":"vlek,lyžařský,snowboarding,povrchový kabel,jednokotva,jéčko"},"aerialway/magic_carpet":{"name":"Pojízdný koberec","terms":"dopravní pás,lyžování,snowboarding,povrchový vlek"},"aerialway/mixed_lift":{"name":"Smíšený vlek","terms":"lanovka,lyžování,snowboarding"},"aerialway/platter":{"name":"Vlek - talíř (poma)","terms":"talířový vlek,kotoučový vlek,vlek,poma vlek,lyžování,snowboarding,povrchový kabel"},"aerialway/pylon":{"name":"Sloup lanovky","terms":"tyč sedačkové lanovky,lyžování,snowboarding,věž lanovky"},"aerialway/rope_tow":{"name":"Vlek - kotvičkový","terms":"kotvičkový vlek,vlek,rukojeť vleku,lyžování,snowboarding,povrchový kabel"},"aerialway/t-bar":{"name":"Lyžařský vlek - kotva","terms":"vlek,lyžování,povrchový kabel,kotva"},"aerialway/zip_line":{"name":"Lanový skluz","terms":"baldachýn,skluzavka na laně,skluzavka s gravitačním pohonem,tyrolský traverz,lanový skluz,lanový sjezd,dětská lanovka"},"aeroway":{"name":"Prvek letecké dopravy"},"aeroway/aerodrome":{"name":"Letiště","terms":"letecká,letoun,tryskáč,letadla"},"aeroway/apron":{"name":"Odbavovací plocha","terms":"parkování letadel,letová linie,pevná stojka,rampa,asfalt,pojezdová dráha"},"aeroway/gate":{"name":"Letištní brána","terms":"brána,letadlo,tetiště"},"aeroway/hangar":{"name":"Hangár","terms":"garáž,letadlo,letiště"},"aeroway/helipad":{"name":"Přistávací plocha","terms":"vrtulník,heliport"},"aeroway/holding_position":{"name":"Vyčkávací místo letadla","terms":"čekání na letadlo,místo pro čekání letadla,vyčkávací místo,vyčkávání na letadlo"},"aeroway/jet_bridge":{"name":"Nástupní most","terms":"letecké molo,prst,lávka,most do letadla,nástupní tunel,most,nástup,most z terminálu"},"aeroway/parking_position":{"name":"Parkovací místo letadla","terms":"místo na zaparkování letadla,parkovací místo pro letadlo,parkovací místo,zaparkování letadla"},"aeroway/runway":{"name":"Vzletová a přistávací dráha","terms":"přistávací dráha"},"aeroway/spaceport":{"name":"Vesmírný přístav","terms":"kosmodrom,komplex pro odpalování raket,místo pro odpalování raket,dostřel raket,vesmírný přístav"},"aeroway/taxiway":{"name":"Pojezdová dráha","terms":"taxiway,letiště,pojezdová"},"aeroway/terminal":{"name":"Letištní terminál","terms":"letiště,letištní"},"aeroway/windsock":{"name":"Větrný rukáv","terms":"ukazatel větru,rukáv,vítr"},"allotments/plot":{"name":"Zahrádka uvnitř kolonie","terms":"pozemek komunitní zahrady,komunitní zahrada"},"amenity":{"name":"Zařízení"},"amenity/animal_boarding":{"name":"Hotel pro zvířata","terms":"stravování,kočka,chovatelská stanice,pes,kůň,bouda,kotě,domácí mazlíček,stravování pro domácí mazlíčky,péče o domácí mazlíčky,hotel pro domácí mazlíčky,štěně,plaz"},"amenity/animal_breeding":{"name":"Chovná stanice","terms":"chovná,býk,kočka,kráva,pes,kůň,chov,kotě,hospodářská zvířata,chov domácích mazlíčků,štěně,plaz"},"amenity/animal_shelter":{"name":"Zvířecí útulek","terms":"adopce,ochrana zvířat,kočka,pes,kůň,kotě,péče o domácího mazlíčka,záchrana domácích mazlíčků,štěně,dravec,plaz,záchrana,spca,libra"},"amenity/arts_centre":{"name":"Umělecké centrum","terms":"centrum umění,komunitní umění,divadelní prostor,divadelní místo"},"amenity/atm":{"name":"Bankomat","terms":"peníze,hotovost,automat"},"amenity/bank":{"name":"Banka","terms":"šek,vklad,fond,investice,úložiště,rezerva,trezor,úspory,akcie,pokladna,důvěra,sejf"},"amenity/bar":{"name":"Bar","terms":"putyka,pivo,pivko,chlast"},"amenity/bar/lgbtq":{"name":"Bar LGBTQ+","terms":"gay bar,lesbický bar,lgbtq bar,lgbt bar,lgb bar"},"amenity/bbq":{"name":"Gril","terms":"barbecue,grilovat"},"amenity/bench":{"name":"Lavička","terms":"sezení,židle"},"amenity/bicycle_parking":{"name":"Parkování kol","terms":"kolo,parkoviště kol,cyklistika"},"amenity/bicycle_parking/building":{"name":"Garáž pro kola","terms":"parkoviště pro kola,parkování pro kola,cyklistika,patrový cyklopark,vícepatrový bikepark"},"amenity/bicycle_parking/lockers":{"name":"Boxy pro kola","terms":"skříňka na kola,cyklistika,cyklobox"},"amenity/bicycle_parking/shed":{"name":"Bouda pro kola","terms":"cyklistická bouda,cyklistika,cyklobouda"},"amenity/bicycle_rental":{"name":"Půjčovna kol","terms":"kolo,bicykl,sdílená jízda na kole,sdílená jízda na bicyklu,dok pro jízdní kola,centrum pro jízdní kola,sdílení na kole,cyklistika"},"amenity/bicycle_repair_station":{"name":"Montážní stojan na kola","terms":"řetěz na kolo,nástroje na kolo,oprava kol,nářadí na kolo,pumpa na kolo,oprava jízdních kol,cyklistika"},"amenity/biergarten":{"name":"Pivní zahrádka","terms":"pivo,pivko,chlast"},"amenity/binoculars":{"name":"Namontovaný dalekohled","terms":"pozorování,optický strážce,pozorovací dalekohled,zaměřovač,dalekohled,teleskop,věžový strážce,hledáček,pozorovací místo"},"amenity/boat_rental":{"name":"Půjčovna lodí","terms":"půjčovna loděk,půjčovna člunů"},"amenity/boat_storage":{"name":"Místo pro uložení lodí","terms":"loděnice,suchý dok,přístav"},"amenity/bureau_de_change":{"name":"Směnárna","terms":"směnárník"},"amenity/bus_station":{"name":"Autobusové nádraží / terminál"},"amenity/cafe":{"name":"Kavárna","terms":"bistro,káva,čaj"},"amenity/cafe/bubble_tea":{"name":"Perlivý mléčný čaj","terms":"boba,bublinový mléčný čaj,perlový mléčný čaj,tchajwanský čajový nápoj,tapioka,perlový čaj,boba drink"},"amenity/cafe/coffee_shop":{"name":"Občerstvení s kavárnou","terms":"americano,várka,kafe,kavárna,káva,café,cappuccino,kakao,obchod s kávou,překapávaná,espresso,horké nápoje,latte,macchiato,čaj"},"amenity/car_pooling":{"name":"Stanice spolujízdy","terms":"sdílení aut,spolujízda,sdílení výtahu,sdílení jízdy"},"amenity/car_rental":{"name":"Půjčovna aut","terms":"autopůjčovna,půjčení auta"},"amenity/car_sharing":{"name":"Stanice sdílení aut","terms":"sdílení aut,auto"},"amenity/car_wash":{"name":"Automyčka","terms":"myčka,mytí,čistění,umývání,čistírna"},"amenity/casino":{"name":"Kasino","terms":"hazardní hry,ruleta,kostky,poker,blackjack"},"amenity/charging_station":{"name":"Nabíjecí stanice","terms":"ev,elektrický vůz,přebíječka"},"amenity/childcare":{"name":"Předškolní a mimoškolní péče","terms":"jesle,sirotčinec,herní skupina"},"amenity/cinema":{"name":"Kino","terms":"vjezd,film,filmové,biják,divadlo,obrázek,pořad,obrazovka"},"amenity/clinic":{"name":"Poliklinika","terms":"lékařská,urgentní péče"},"amenity/clinic/abortion":{"name":"Potratová klinika","terms":"ženské zdravotnictví"},"amenity/clinic/fertility":{"name":"Klinika plodnosti","terms":"vajíčko,plodnost,rozmnožování,spermie,ovulace"},"amenity/clock":{"name":"Hodiny","terms":"čas"},"amenity/clock/sundial":{"name":"Sluneční hodiny","terms":"gnómón,stín"},"amenity/college":{"name":"Prostor vyšší odborné školy/college","terms":"univerzita,vysokoškolské studium"},"amenity/community_centre":{"name":"Komunitní centrum","terms":"událost,hala"},"amenity/community_centre/lgbtq":{"name":"Komunitní centrum LGBTQ+","terms":"lgbtq událost,lgbtq hala,lgbt událost,lgbt hala,lgb událost,lgb hala'"},"amenity/community_centre/youth_centre":{"name":"Centrum mládeže","terms":"centrum pro mládež,klub mládeže"},"amenity/compressed_air":{"name":"Stlačený vzduch","terms":"vzduchová pumpa,pumpa,pumpička,kompresor,hustilka"},"amenity/conference_centre":{"name":"Konferenční centrum","terms":"hlediště,výstava,expozice,přednáška"},"amenity/courthouse":{"name":"Soud","terms":"soudní,soudní budova,soudní dvůr"},"amenity/coworking_space":{"name":"Sdílený pracovní prostor"},"amenity/crematorium":{"name":"Krematorium","terms":"hřbitov,pohřeb"},"amenity/dentist":{"name":"Zubař","terms":"zub,zubní"},"amenity/dive_centre":{"name":"Centrum potápění","terms":"potápění,potápěcí"},"amenity/doctors":{"name":"Lékař","terms":"zdravotník*,doktor"},"amenity/doctors/allergology":{"name":"Alergolog","terms":"alergie,astma"},"amenity/doctors/cardiology":{"name":"Kardiolog","terms":"kardiochirurg,kardiologie,kardiovaskulární systém,koronární tepna,srdce"},"amenity/doctors/dermatology":{"name":"Dermatolog","terms":"dermatologie,vlasy,nehty,kožní"},"amenity/doctors/gastroenterology":{"name":"Gastroenterolog","terms":"vnitřnosti,trávicí soustava,zažívání,jícen,potravní trubice,žlučový kámen,gastrointestinální trakt,gastroenterologie,hltan,střeva,tlusté střevo,játra,hrtan,tenké střevo,žaludek"},"amenity/doctors/general":{"name":"Praktický lékař","terms":"doktor,rodinný lékař,rodinný praktický lékař,rodinný doktor"},"amenity/doctors/gynaecology":{"name":"Gynekolog","terms":"vajíčko,gynekologista,gynekologie,gynekologický,porodnictví,ovulace,reprodukční,lékař pro ženy,lékař pro dámy"},"amenity/doctors/haematology":{"name":"Hematolog","terms":"anémie,krev,kostní dřeň,hematologie,leukémie,lymfom"},"amenity/doctors/internal":{"name":"Internista","terms":"interní praktický lékař,interna,lékař"},"amenity/doctors/nephrology":{"name":"Nefrolog"},"amenity/dojo":{"name":"Škola bojových umění","terms":"bojová umění,dojang"},"amenity/dressing_room":{"name":"Kabinka pro převlečení","terms":"šatna,šatník,zkušební kabinka,skřiňka"},"amenity/drinking_water":{"name":"Pitná voda","terms":"zdroj pitné vody,vodní fontána,napáječka,bublina,vodovodní kohoutek"},"amenity/driver_training":{"name":"Cvičná plocha pro řidiče","terms":"autoškola"},"amenity/driving_school":{"name":"Autoškola","terms":"dopravní škola,řízení,auto"},"amenity/embassy":{"name":"Velvyslanectví"},"amenity/events_venue":{"name":"Kulturní sál","terms":"hodovní síň,křest,bar micva,bat micva,narozeniny,oslavy,konference,potvrzení,schůzky,večírky,party,quinceañera,setkání,svatby"},"amenity/exhibition_centre":{"name":"Veletržní palác","terms":"trh,veletrh,přehlídka,výstava,expozice,výstaviště"},"amenity/fast_food":{"name":"Rychlé občerstvení","terms":"restaurace,s sebou"},"amenity/fast_food/burger":{"name":"Burger rychlé občerstvení","terms":"snídaně,večeře,stolování,odvoz,jídlo,gril,oběd,stůl"},"amenity/fast_food/cafeteria":{"name":"Kafeterie","terms":"kantýna,jídelna,stravovna,žrádelna"},"amenity/fast_food/chicken":{"name":"Kuřecí rychlé občerstvení","terms":"snídaně,kantýna,večeřet,jídelna,večeře,odjezd,jíst,gril,oběd,stůl"},"amenity/fast_food/donut":{"name":"Kiosek s donuty","terms":"snídaně,snídat,kavárna,jídelna,káva,večeře,večeřet,donut,kobliha,jídlo,oběd,stůl"},"amenity/fast_food/fish_and_chips":{"name":"Fish & Chips rychlé občerstvení","terms":"snídaně,kavárna,kafé,večeřet,jídelna,večeře,zajížďka,jíst,gril,oběd,stůl,hranolky"},"amenity/fast_food/hot_dog":{"name":"Párek v rohlíku rychlé občerstvení","terms":"ballpark,pikador,párek,stánek s hotdogem,sendvič,klobása,vídeňské"},"amenity/fast_food/ice_cream":{"name":"Zmrzlina"},"amenity/fast_food/juice":{"name":"Čerstvé ovocné šťávy","terms":"kafe,kavárna,nápoje,ovocné nápoje,džusárna,koktejly,smoothie"},"amenity/fast_food/kebab":{"name":"Kebab rychlé občerstvení","terms":"bar,snídaně,kavárna,kafé,jídelna,večeřet,jídlo,večeře,odjezd,jíst,gril,oběd,stůl"},"amenity/fast_food/mexican":{"name":"Mexické rychlé občerstvení","terms":"snídaně,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,tacos,burritos,enchiladas,fajitas,nachos,tortilly,salsa,tamales,quesadillas"},"amenity/fast_food/pizza":{"name":"Pizza rychlé občerstvení","terms":"večeřet,večeře,jízda,jíst,oběd,stůl,hluboká mísa,tenká kůrka,plátek"},"amenity/fast_food/sandwich":{"name":"Sandwichové rychlé občerstvení","terms":"snídaně,kavárna,kafe,večeřet,jídelní,večeře,zajížďka,jíst,gril,oběd,stůl"},"amenity/ferry_terminal":{"name":"Terminál přívozu/trajektu"},"amenity/fire_station":{"name":"Hasičská zbrojnice","terms":"hasiči,požární zbrojnice"},"amenity/food_court":{"name":"Jídelní plocha","terms":"fast food,restaurece,jídlo"},"amenity/fountain":{"name":"Fontána, vodotrysk","terms":"kašna,voda"},"amenity/fuel":{"name":"Čerpací stanice","terms":"benzínka,palivo,benzín,propan,nafta,lng,cng,bionafta"},"amenity/gambling":{"name":"Místo pro hazard","terms":"sázení,bingo,blackjack,kasino,kostky,hazard,hazardní hry,keno,loterie,pachinko,poker,ruleta,výherní automaty,automaty"},"amenity/give_box":{"name":"Darovací box","terms":"dary,darovací stůl,darovací krabice,police s dary,dárkový box,knihovna,sdílená police"},"amenity/grave_yard":{"name":"Pohřebiště","terms":"pohřebák,hřbitov,hřbitovní,kostel,kolumbárium,krchov,mauzoleum,hrobka"},"amenity/grit_bin":{"name":"Zásobník na posypový materiál","terms":"sůl,písek"},"amenity/hospital":{"name":"Prostor nemocnice","terms":"klinika,lékař,pohotovost,zdraví,ošetřovna,ústav,sanatorium,sanitarium,nemocný,ordinace,oddělení"},"amenity/hunting_stand":{"name":"Posed","terms":"hra,zbraň,rozhledna,puška,střílet*,divoký,sledovat"},"amenity/ice_cream":{"name":"Zmrzlina","terms":"zmrzka,sorbet,sherbet,mražený,jogurt"},"amenity/internet_cafe":{"name":"Internetová kavárna","terms":"kyberkavárna,taxifon,telebutika,káva,kavárna,net,lanhouse"},"amenity/karaoke_box":{"name":"Karaoke kabinka","terms":"karaoke klub,karaoke místnost,karaoke televize,ktv"},"amenity/kindergarten":{"name":"Prostor školky / předškolního zařízení","terms":"mateřská škola,školka,předškolní"},"amenity/kneipp_water_cure":{"name":"Kneippova lázeň","terms":"hydroterapie"},"amenity/language_school":{"name":"Jazyková škola","terms":"jazykovka"},"amenity/lavoir":{"name":"Lavor","terms":"oblečení,prádlo,praní"},"amenity/letter_box":{"name":"Domovní poštovní schránka","terms":"doručovací schránka s obrubníkem,domovní doručovací schránka,doručovací schránka přímo ke dveřím,otvor pro dopisy,dopisní štítek,štěrbina pro dopisy,schránka na dopisy,dopisní díra,štítek pro poštu,štěrbina pro poštu,poštovní schránka,poštovní otvor,otvor pro poštu,poštovní štěrbina,schránka přímo u dveří"},"amenity/library":{"name":"Knihovna","terms":"knihy"},"amenity/loading_dock":{"name":"Nakládací rampa","terms":"dveře,nakládací rampa,doprava,vykládka,sklad"},"amenity/lounger":{"name":"Lehátka","terms":"sedačka,židle,lavička"},"amenity/love_hotel":{"name":"Hodinový hotel","terms":"hotel lásky,hotel pro zamilované,hotel pro páry"},"amenity/marketplace":{"name":"Tržiště","terms":"trh,stánky"},"amenity/monastery":{"name":"Klášterní pozemky","terms":"opatství,bazilika,betel,katedrála,kněžiště,kostelík,kaple,kostel,mše,dům boží,modlitebna,dům uctívání,kazatel,misie,klášter,mešita,oratoř,farnost,sacellum,svaté místo,svatyně,synagoga,svatostánek,chrám"},"amenity/money_transfer":{"name":"Místo pro peněžní převody","terms":"peněžní poukázka,šek,účet,měna,finance,bankovní převod,kabel,osoba na osobu,hotovost na hotovost,směna"},"amenity/mortuary":{"name":"Márnice","terms":"krematorium,pohřební ústav,pamětní ústav,pohřební,pohřebák"},"amenity/motorcycle_parking":{"name":"Parkování pro motorky","terms":"parking,parkování,garáž,motorka,motocykl"},"amenity/motorcycle_rental":{"name":"Půjčovna motocyklů","terms":"vrtulník,cruiser,dirt bike,hog,minibike,moped,motorka,motorový skútr,sajdkára,sportovní kolo"},"amenity/music_school":{"name":"Hudební škola","terms":"hudebka"},"amenity/nightclub":{"name":"Diskotéka","terms":"disco*,noční klub,tancování,taneční klub"},"amenity/nightclub/lgbtq":{"name":"Noční klub LGBTQ+","terms":"gay noční klub,lesbický noční klub,lgbtq noční klub,lgbt noční klub,lgb noční klub"},"amenity/nursing_home":{"name":"Domov pro seniory"},"amenity/parcel_locker":{"name":"Schránka na zásilky","terms":"automatizovaná poštovní schránka,odevzdání,skříňka,pošta,balicí stanice,balík,vyzvednutí"},"amenity/parking":{"name":"Parkoviště","terms":"parkoviště pro automobily,parkování aut,parkoviště pro auta,rv parkoviště,kamionové parkoviště,parkování vozidel"},"amenity/parking/multi-storey":{"name":"Vícepatrové garáže","terms":"auto,kryté parkoviště,vícepodlažní parkoviště,parkáda,parkovací budova,parkovací plošina,parkovací garáž,parkovací rampa,parkovací struktura"},"amenity/parking/park_ride":{"name":"parkoviště P+R","terms":"parkoviště pro dojíždějící,parkoviště s pobídkami,parkoviště metra,parkoviště a koupaliště,parkoviště,p+r,parkoviště mhd,parkoviště veřejné dopravy,parkoviště vlaků"},"amenity/parking/street-side":{"name":"Parkování na straně ulice","terms":"parkoviště pro automobily,parkoviště,parkování vozidel,parkování na ulici,parkování v ulici,parkování u silnice,parkování na kraji"},"amenity/parking/underground":{"name":"Podzemní parkoviště","terms":"parkoviště pro automobily,parkoviště aut,parkoviště pro auta,rv parkoviště,podpovrchové parkoviště,parkoviště pro nákladní automobily,parkoviště pro vozidla"},"amenity/parking_entrance":{"name":"Vjezd / Výjezd krytého parkoviště","terms":"parkoviště,parkování,garáž,garáže,vjezd,výjezd,vjezd do garáže,průjezd,parkování v objektu,kryté parkoviště,parkovací dům"},"amenity/parking_space":{"name":"Parkovací místo","terms":"místo k parkování,stání na parkovišti"},"amenity/parking_space/disabled":{"name":"Místo pro tělesně postižené","terms":"invalida,parkovací stání pro invalidy,parkovací místo pro invalidy,invalidní vozík"},"amenity/payment_centre":{"name":"Platební centrum","terms":"šek,zaplacení daně,platba účtu,měna,finance,hotovost,peníze"},"amenity/payment_terminal":{"name":"Platební terminál","terms":"interaktivní kiosek,e-kiosek,bankomat,platba účtu,daňová platba,platba za telefon,finance,hotovost,převod peněz,karta"},"amenity/pharmacy":{"name":"Lékárna","terms":"apotéka,léky,drogerie,med*,předpis"},"amenity/photo_booth":{"name":"Foto budka","terms":"fotobudka,foto,stánek,kiosek,kamera"},"amenity/place_of_worship":{"name":"Chrám","terms":"opatství,bazilika,betel,katedrála,kancléř,kostelík,kaple,kostel,mše,boží dům,modlitebna,dům uctívání,kazatel,misie,mešita,oratoř,farnost,sacellum,svaté místo,svatyně,synagoga,svatostánek,chrám"},"amenity/place_of_worship/buddhist":{"name":"Buddhistický chrám","terms":"stúpa,vihara,klášter,chrám,pagoda,zendo,dojo"},"amenity/place_of_worship/christian":{"name":"Křesťanský kostel","terms":"křesťaňský,opatství,bazilika,betel,katedrála,kněžiště,kaple,mše,dům boží,modlitebna,dům uctívání,kazatel,misie,oratoř,farnost,sacellum,svaté místo,svatyně,svatostánek,chrám,anglikánská,římskokatolická"},"amenity/place_of_worship/christian/jehovahs_witness":{"name":"Královská síň svědků Jehovových","terms":"křesťanský,kostel,dům boží,modlitebna,dům uctívání"},"amenity/place_of_worship/christian/la_luz_del_mundo":{"name":"Chrám La Luz del Mundo","terms":"křesťanský,kostel,dům boží,modlitebna,dům uctívání,církev světlo světa"},"amenity/place_of_worship/christian/quaker":{"name":"Dům pro setkání přátel Quakerů","terms":"křesťanský,kostel,dům boží,modlitebna,dům uctívání"},"amenity/place_of_worship/hindu":{"name":"Hinduistický chrám","terms":"kovil,devasthana,mandir,kshetram,alayam,svatyně,chrám"},"amenity/place_of_worship/jewish":{"name":"Židovská synagoga","terms":"židovská"},"amenity/place_of_worship/muslim":{"name":"Islámská mešita","terms":"islám,islámské centrum,muslim"},"amenity/place_of_worship/shinto":{"name":"Džindža (šintoistická svatyně)","terms":"kami,torii"},"amenity/place_of_worship/sikh":{"name":"Sikhský chrám","terms":"gurudwara,chrám"},"amenity/place_of_worship/taoist":{"name":"Taoistický chrám","terms":"taoista,klášter,chrám"},"amenity/planetarium":{"name":"Planetárium","terms":"muzeum,astronomie,observatoř"},"amenity/police":{"name":"Policie","terms":"odznak,strážník,policajt,polda,detektiv,cizinecká,zákon,vymáhání,důstojník,hlídka"},"amenity/polling_station":{"name":"Stálé volební místo","terms":"volební urna,odložení hlasovacích lístků,demokracie,volby,volební místnost,hlasování,volební kabina,hlasovací stroj"},"amenity/post_box":{"name":"Poštovní schránka","terms":"schránka,schránky,schránka na dopisy,mailová schránka,schránka pro shromažďování pošty,shoz pošty,předávání pošty,schránka na maily,vhození balíku,sloupová schránka,schránka na sloupu,post box,pošta,postbox"},"amenity/post_depot":{"name":"Poštovní depo","terms":"středisko zpracování a distribuce pošty,třídírna pošty"},"amenity/post_office":{"name":"Pošta","terms":"dopis,poštovní"},"amenity/prep_school":{"name":"Doučovací škola","terms":"akademik,akt,příprava,domácí úkol,matematika,čtení,příprava na zkoušku,doučování,psaní"},"amenity/prison":{"name":"Prostor věznice","terms":"cela,vězení,náprava"},"amenity/pub":{"name":"Hospoda","terms":"alkohol,nápoj,pití,pivo,pivko,chlast"},"amenity/pub/irish":{"name":"Irský bar","terms":"irská hospoda"},"amenity/pub/lgbtq":{"name":"Hospoda LGBTQ+","terms":"gay hospoda,lesbická hospoda,lgbtq hospoda,lgbt hospoda,lgb hospoda"},"amenity/pub/microbrewery":{"name":"Hospoda s mikropivovarem","terms":"alkohol,nápoj,pití,pivo,pivko,chlast,řemeslný pivovar,mikropivovar,malodávkový pivovar"},"amenity/public_bath":{"name":"Veřejné lázně","terms":"onsen,koupel nohou,horký pramen"},"amenity/public_bookcase":{"name":"Veřejná knihovnička","terms":"knihovna,knihkupectví"},"amenity/ranger_station":{"name":"Stanice strážců NP","terms":"návštěvní centrum,návštěvnické centrum,povolovací centrum,centrum povolení,backcountry kancelář,dozorce,centrum dozorce"},"amenity/recycling":{"name":"Recyklace"},"amenity/recycling/container/electrical_items":{"name":"Nádoba na elektroodpad","terms":"počítače,elektronický odpad,recyklace elektroniky,elektroodpad,telefony,tablety"},"amenity/recycling/container/green_waste":{"name":"nádoba na biologický odpad","terms":"biologicky rozložitelný,biologický,kompost,rozložitelný,popelnice,bioodpad,organický,odpadky,zbytky potravin"},"amenity/recycling_centre":{"name":"Sběrný dvůr","terms":"láhev,plechovka,skládka,sklo,odpad,odpadky,šrot,odpadní"},"amenity/recycling_container":{"name":"Kontejner na tříděný odpad","terms":"koš,plechovka,láhev,sklo,odpad,odpadky,šrot,odpadní"},"amenity/refugee_site":{"name":"Uprchlický tábor","terms":"vysídlení lidé,evakuovaní,migranti,nevládní organizace,místo pro uprchlíky"},"amenity/research_institute":{"name":"Prostor výzkumného ústavu","terms":"aplikovaný výzkum,experimentace,výzkum a vývoj,výzkum i vývoj,výzkumná instituce,výzkumná laboratoř,výzkumné laboratoře"},"amenity/restaurant":{"name":"Restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/american":{"name":"Americká restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/asian":{"name":"Asijská restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/barbeque":{"name":"Grilovací restaurace","terms":"bar,grilovací,jídelna,večeře,večeřet,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/chinese":{"name":"Čínská restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/french":{"name":"Francouzská restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/german":{"name":"Německá restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/greek":{"name":"Řecká restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,káva,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,gyros,pitas,olivy"},"amenity/restaurant/indian":{"name":"Indická restaurace","terms":"bar,snídaně,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,kari"},"amenity/restaurant/italian":{"name":"Italská restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,těstoviny,pizza"},"amenity/restaurant/japanese":{"name":"Japonská restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/mexican":{"name":"Mexická restaurace","terms":"bar,snídaně,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,tacos,burritos,enchiladas,fajitas,nachos,tortilly,salsa,tamales,quesadillas"},"amenity/restaurant/noodle":{"name":"Nudlová restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,ramen nudle,polévka,soba nudle,celofánové nudle,rýžové nudle"},"amenity/restaurant/pizza":{"name":"Pizzerie","terms":"bar,večeřet,jídelna,večeře,drive-in,jíst,oběd,stůl,hluboká miska,tenká kůrka,plátek"},"amenity/restaurant/seafood":{"name":"Restaurace s mořskými rybami","terms":"bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,ryby,mlži,měkkýši,korýši,škeble,ústřice,humři,kraby,krevety,hlavonožci,chobotnice"},"amenity/restaurant/steakhouse":{"name":"Steakhouse","terms":"bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl,steakhouse,chophouse,hovězí maso"},"amenity/restaurant/sushi":{"name":"Sushi restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/thai":{"name":"Thajská restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/turkish":{"name":"Turecká restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/vietnamese":{"name":"Vietnamská restaurace","terms":"bar,snídaně,kavárna,kafe,kantýna,večeřet,jídelna,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/sanitary_dump_station":{"name":"Výlevka pro karavany","terms":"obytný vůz,karavan,sanitární,skládka,elsan,výlevka,žumpa,mobilní záchod"},"amenity/school":{"name":"Prostor školy","terms":"akademie,základní škola,štřední škola,vysoká škola"},"amenity/shelter":{"name":"Přístřešek","terms":"otevřený přístřešek,altánek,piknik"},"amenity/shelter/gazebo":{"name":"Altánek","terms":"altán,přístřešek,střecha,dřevěná stavba,kašna"},"amenity/shelter/lean_to":{"name":"Otevřený přístřešek","terms":"horská chata,dřevěná stavba,přístřešek,ubytování,přenocování,přístřešek na spaní,chata v divočině"},"amenity/shelter/picnic_shelter":{"name":"Kryté odpočívadlo","terms":"pavilon"},"amenity/shelter/public_transport":{"name":"Krytá zastávka","terms":"autobusová zastávka,zastávka metra,přístřešek veřejné dopravy,přístřešek mhd,přístřešek tramvajové zastávky,čekání"},"amenity/shower":{"name":"Sprchy","terms":"sprchový kout"},"amenity/smoking_area":{"name":"Kuřárna","terms":"kuřácký prostor"},"amenity/social_centre":{"name":"Sociální středisko","terms":"událost,bratrský,bratrství,síň,organizace,profesionální,společnost,zvučnost,svaz,veterné"},"amenity/social_facility":{"name":"Zařízení sociálních služeb","terms":"komunita,neziskovka,sociální služby"},"amenity/social_facility/ambulatory_care":{"name":"Ambulantní péče","terms":"ošetření,zdravotnictví,sociální péče"},"amenity/social_facility/food_bank":{"name":"Potravinová banka","terms":"potravinová spíž,vývařovna"},"amenity/social_facility/group_home":{"name":"Domov pro seniory či jiné skupiny obyvatel","terms":"starý,senior,bydlení,pečovatelský dům,asistované bydlení"},"amenity/social_facility/homeless_shelter":{"name":"Noclehárna pro bezdomovce","terms":"bezdomovci,neubytovaní,vysídlení"},"amenity/social_facility/nursing_home":{"name":"Domov pro seniory","terms":"senioři,bydlení,ošetřovatelství,staří,asistované bydlení"},"amenity/studio":{"name":"Studio","terms":"nahrávání,rádio,televize"},"amenity/studio/audio":{"name":"Nahrávací studio","terms":"mixování zvuku,produkce zvuku,nahrávání zvuku,zvukové studio"},"amenity/studio/radio":{"name":"Radiostanice","terms":"am rádio,fm rádio,radiové vysílání,radiové studio"},"amenity/studio/television":{"name":"Televizní stanice","terms":"televizní vysílání,televizní studio,tv vysílání,tv stanice,tv studio"},"amenity/studio/video":{"name":"Filmové studio","terms":"filmová produkce,filmové studio,videoprodukce,videozáznam,videostudio"},"amenity/taxi":{"name":"Stanoviště taxi","terms":"taxi"},"amenity/telephone":{"name":"Telefon","terms":"telefonní budka"},"amenity/theatre":{"name":"Divadlo","terms":"divadelní,představení,hra,muzikál"},"amenity/theatre/type/amphi":{"name":"Amfiteátr","terms":"pod širým nebem,venkovní,řecký,ampi"},"amenity/ticket_validator":{"name":"Ověřovač vstupenek","terms":"lístek,ověřovač,děrovač"},"amenity/toilets":{"name":"Toaleta","terms":"přístavek,záchod,mísa,latrína,wc,w.c."},"amenity/toilets/disposal/flush":{"name":"Splachovací toalety","terms":"koupelna,mísa,záchod,záchodky,odpočívadlo,hajzl,wc,w.c."},"amenity/toilets/disposal/pitlatrine":{"name":"Latrína","terms":"mísa,záchod,dlouhá,přístavek,záchod v jímce,hajzl"},"amenity/toilets/portable":{"name":"Mobilní toalety","terms":"toaleta,hajzl,johnny servis,toi-toi,toitoika,mobilní záchod"},"amenity/townhall":{"name":"Radnice","terms":"obecní,městský,vláda,soud,magistrát"},"amenity/townhall/city":{"name":"Městská radnice","terms":"rada,soud,vlád,starosta,magistrát"},"amenity/toy_library":{"name":"Půjčovna hraček","terms":"hra,hračka"},"amenity/trolley_bay":{"name":"Stojan na vozíky","terms":"vrácení vozíku,vrácení košíku,nákupní košík,vozík"},"amenity/university":{"name":"Prostor vysoké školy","terms":"vysoká škola,vysokoškolské studium,doktorský studijní program,magisterský studijní program"},"amenity/vacuum_cleaner":{"name":"Vysavač","terms":"vysavač na auta,myčka,auto vysavač,vysávání"},"amenity/vehicle_inspection":{"name":"Kontrola vozidel","terms":"kontrola vozu"},"amenity/vending_machine":{"name":"Prodejní automat","terms":"automat,výdejní automat"},"amenity/vending_machine/bicycle_tube":{"name":"Prodejní automat duší na jízdní kola","terms":"duše,duše na kolo,duše na jízdní kolo"},"amenity/vending_machine/bottle_return":{"name":"Stroj na vrácení lahví","terms":"vratné lahve"},"amenity/vending_machine/bread":{"name":"Automat na pečivo","terms":"bageta,chleba"},"amenity/vending_machine/cigarettes":{"name":"Automat na cigarety","terms":"cigarety"},"amenity/vending_machine/coffee":{"name":"Automat na kávu","terms":"káva"},"amenity/vending_machine/condoms":{"name":"Automat na kondomy","terms":"kondom"},"amenity/vending_machine/drinks":{"name":"Automat na nápoje","terms":"nápoj,soda,pití,džus,pop"},"amenity/vending_machine/eggs":{"name":"Automat na vejce","terms":"vejce"},"amenity/vending_machine/electronics":{"name":"Elektronický prodejní automat","terms":"kabel,nabíječka,sluchátko,sluchátka,telefon,tablet"},"amenity/vending_machine/elongated_coin":{"name":"Prodejní automat na mince","terms":"mince,drtič,podlouhlý,zploštit,halíř,suvenýr"},"amenity/vending_machine/excrement_bags":{"name":"Sáčky na výkaly","terms":"sáčky na exkrementy,hovínka,odpad,pes,zvíře,mazlíček"},"amenity/vending_machine/feminine_hygiene":{"name":"Automat dámské hygieny","terms":"kondom,tampon,vložka,žena,ženy,výrobky pro menstruační hygienu,osobní péče"},"amenity/vending_machine/food":{"name":"Jídelní automat","terms":"jídlo"},"amenity/vending_machine/fuel":{"name":"Pumpa na plyn","terms":"benzín,palivo,pohon,propan,nafta,lng,cng,bionafta"},"amenity/vending_machine/ice_cream":{"name":"Automat na zmrzlinu","terms":"čokoláda,zmrzlina,mražená,nanuk,vanilka"},"amenity/vending_machine/ice_cubes":{"name":"Automat na led","terms":"kostky,led"},"amenity/vending_machine/newspapers":{"name":"Automat na noviny","terms":"noviny"},"amenity/vending_machine/parking_tickets":{"name":"Parkovací automat","terms":"parkování,lístek"},"amenity/vending_machine/pizza":{"name":"Automat na pizzu","terms":"pizza"},"amenity/vending_machine/public_transport_tickets":{"name":"Automat na jízdenky","terms":"autobus,vlak,trajekt,železnice,jízdenka,doprava"},"amenity/vending_machine/stamps":{"name":"Poštovní automat","terms":"pošta,poštovné,razítko"},"amenity/vending_machine/sweets":{"name":"Automat na drobné občerstvení","terms":"bonbón,žvýkačka,chipsy,preclík,sušenka,krekr"},"amenity/veterinary":{"name":"Veterina","terms":"klinika pro domácí mazlíčky,veterinář,nemocnice pro zvířata,lékař pro domácí mazlíčky"},"amenity/waste/dog_excrement":{"name":"Koš na psí výkaly","terms":"popelnice,odpadky,odpad,smetí,odpadní,hovínko,pes"},"amenity/waste_basket":{"name":"Odpadkový koš","terms":"popelnice,odpadky,odpad,smetí,odpadní"},"amenity/waste_disposal":{"name":"Kontejner na směsný odpad","terms":"odpad,odpadky,smetí,odpadní"},"amenity/waste_transfer_station":{"name":"Překládací stanice odpadu","terms":"skládka,odpad,recyklace,odpadky,šrot,odpadní"},"amenity/water_point":{"name":"Pitná voda pro karavany","terms":"vodovodní kohoutek,vodní bod,vodovodní uzávěr,zdroj vody,kohoutek"},"amenity/watering_place":{"name":"Napajedlo pro zvířata","terms":"žlábek vody,voda,voda pro zvířata"},"amenity/weighbridge":{"name":"Váha pro kamiony","terms":"vážící stanice,mostní váha"},"area":{"name":"Plocha","terms":"polygon"},"area/footway":{"name":"Plocha chodníku","terms":"area:highway,okraj chodníku,tvar chodníku,chodník,tvar chodníku podél silnice,plocha chodníku podél silnice"},"area/highway":{"name":"Plocha silnice","terms":"area:highway,okraj chodníku,oblast dálnice,tvar dálnice,chodník,tvar silnice,ulice"},"attraction":{"name":"Atrakce"},"attraction/amusement_ride":{"name":"Zábavní jízda","terms":"zábavní park,karnevalová jízda"},"attraction/animal":{"name":"Ohrazení zvířat","terms":"obojživelník,zvířecí park,akvárium,medvěd,pták,ryba,hmyz,lev,savec,opice,tučňák,plaz,safari,zábavní park,tygr,zoo"},"attraction/big_wheel":{"name":"Ruské kolo","terms":"velké kolo,zábavní park,zábavní jízda"},"attraction/bumper_car":{"name":"Autodrom","terms":"zábavní park,vyhýbat se autům,skútry"},"attraction/bungee_jumping":{"name":"Bungee jumping","terms":"zábavní park,bungy jumping,skákací plošina"},"attraction/carousel":{"name":"Kolotoč","terms":"zábavní park,kolotoč,zábavní kolotoč,cval,skokan,kolotoč s koňmi,létající koně"},"attraction/dark_ride":{"name":"Strašidelná jízda","terms":"zábavní park,vlak duchů"},"attraction/drop_tower":{"name":"Atrakce padací věž","terms":"zábavní park,zábavní jízda,gondola,věž,velký pokles"},"attraction/kiddie_ride":{"name":"Dětské houpadlo","terms":"automat,atrakce,dětská jízda,houpadlo,děti,dětské"},"attraction/log_flume":{"name":"vodní horská dráha","terms":"zábavní park,zábavní jízda,tobogán"},"attraction/maze":{"name":"Bludiště","terms":"zábavní park,zábavní jízda,labyrint"},"attraction/pirate_ship":{"name":"Houpačka ve tvaru pirátské lodi","terms":"zábavní park,karnevalová jízda,zábavní jízda"},"attraction/river_rafting":{"name":"Jízda na divoké řece","terms":"zábavní park,aquapark,vodní park,raftingový simulátor,jízda na raftu"},"attraction/roller_coaster":{"name":"Horská dráha","terms":"zábavní park,zábavní jízda"},"attraction/summer_toboggan":{"name":"Letní tobogán","terms":"alpská skluzavka,horská dráha"},"attraction/swing_carousel":{"name":"Řetízkový kolotoč","terms":"zábavní park,zábavní jízda,kolotoč,věž,věž kolotoče"},"attraction/train":{"name":"Turistický vláček","terms":"zábavní park,vláček bez rámusu,silniční vlak,mašinka,vláček,parkový vláček"},"attraction/water_slide":{"name":"Vodní skluzavka","terms":"zábavní park,aquapark,vodní park,náhony,vodní skluzavky,vodní tobogány"},"barrier":{"name":"Zábrana","terms":"ohrada,bariéra"},"barrier/block":{"name":"Masivní blok","terms":"betonový blok,beton,zátaras,překážka"},"barrier/bollard":{"name":"Sloupek","terms":"patník,sloup"},"barrier/bollard_line":{"name":"Řada sloupků","terms":"řada patníků,řada sloupu,sloupek,řada,sloup"},"barrier/border_control":{"name":"Hraniční kontrola","terms":"kontrolní bod,clo,mezinárodní hranice,pasová kontrola,přístav vstupu,vízum"},"barrier/bump_gate":{"name":"Příčný práh","terms":"průjezdná brána"},"barrier/bus_trap":{"name":"Autobusová uzávěra","terms":"uzávěra na auta"},"barrier/cable_barrier":{"name":"Kabelové svodidlo","terms":"ochranný kabel,bezpečnostní bariéra z drátěného lana"},"barrier/cattle_grid":{"name":"Přejezdový rošt","terms":"hlídač dobytka,zastavení dobytka,mřížka pro hospodářská zvířata,branka do ohrady,mřížka ohrady,oplocení ohrady,branka,vjezd pro vozidlo"},"barrier/chain":{"name":"Řetěz","terms":"oplocení,ohrada,řetězové oplocení"},"barrier/city_wall":{"name":"Hradby","terms":"zeď,opevnění"},"barrier/cycle_barrier":{"name":"Zábrana proti kolům","terms":"cyklistická zábrana,bariéra pro cyklisty,cyklistické brány,zábrana pro cyklisty"},"barrier/ditch":{"name":"Příkop","terms":"koryto,zákop"},"barrier/entrance":{"name":"Vchod"},"barrier/fence":{"name":"Plot","terms":"oplocení,ohrada"},"barrier/fence/railing":{"name":"Zábradlí","terms":"držadlo,ochranné zábradlí"},"barrier/full-height_turnstile":{"name":"Turniket v plné výšce","terms":"přepážková brána,turniket"},"barrier/gate":{"name":"Brána","terms":"branka,vjezd,vchod"},"barrier/guard_rail":{"name":"Svodidlo","terms":"zábradlí,dopravní bariéra,svodidlo,střední bariéra,silniční bariéra,armco bariéra"},"barrier/hampshire_gate":{"name":"Drátěná brána","terms":"brána hampshire,brána nového zélandu"},"barrier/handrail":{"name":"Zábradlí"},"barrier/hedge":{"name":"Živý plot","terms":"keříky,křoví,okrasný plot"},"barrier/height_restrictor":{"name":"Omezovač výšky","terms":"výšková bariéra,bariéra s omezením výšky,maximální výška,měřič maximální výšky"},"barrier/jersey_barrier":{"name":"Betonová bariéra","terms":"betonová střední,betonová zábrana,svodidlo s konstantním sklonem,svodidlo ve tvaru f,k-kolejnice,střední,zeď z new jersey,vysoká zeď v ontariu,plastová bariéra"},"barrier/kerb":{"name":"Obrubník","terms":"okraj chodníku,okraj silnice"},"barrier/kerb/flush":{"name":"Ztracený obrubník","terms":"obrubník,rovný obrubník,hmatový obrubník"},"barrier/kerb/lowered":{"name":"Snížený obrubník","terms":"řez obrubníku,nájezd na obrubník,nájezd obrubníku,spadlý obrubník,nájezd na kočárek"},"barrier/kerb/raised":{"name":"Vysoký obrubník","terms":"schod"},"barrier/kerb/rolled":{"name":"Zaoblený obrubník","terms":"okap"},"barrier/kissing_gate":{"name":"Turniketová branka","terms":"přepážková bariéra,zábrana pro dobytek"},"barrier/lift_gate":{"name":"Zvedací závora","terms":"závora výložníku,brána výložníku,zdvih výložníku,sklopná tyč,otočný sloup"},"barrier/log":{"name":"Spadlý strom"},"barrier/motorcycle_barrier":{"name":"Zábrana proti motorkám","terms":"bariéra proti motorkám,motorková zábrana,bariéra"},"barrier/planter":{"name":"Plantážník (Zábrana)"},"barrier/retaining_wall":{"name":"Opěrná zeď","terms":"zeď s opěrou,zeď,opěra"},"barrier/rope":{"name":"Provazový plot","terms":"plot z provazu,provazová ohrada,provazový plot"},"barrier/sally_port":{"name":"Výpadová brána skrze opevnění","terms":"postranice,boční brána hradu"},"barrier/spikes":{"name":"Ostnatý pás","terms":"jednosměrné ostny,žihadla,zastavovací ostny,zařízení na vypouštění pneumatik,drtiče pneumatik,dopravní hroty"},"barrier/stile":{"name":"Schůdky přes ohradu","terms":"schůdky,žebřík"},"barrier/swing_gate":{"name":"Otočná závora","terms":"závora,otáčecí závora"},"barrier/toll_booth":{"name":"Mýtná brána","terms":"budka pro výběr mýta,mýtnice,výběr mýta,mýto,myto,poplatek,vstupné,kasa,pokladna"},"barrier/turnstile":{"name":"Turniket","terms":"přepážková brána,otáčecí tyče"},"barrier/wall":{"name":"Zeď","terms":"zděný plot,cihlový plot,cihly"},"barrier/wall/noise_barrier":{"name":"Protihluková bariéra","terms":"akustická bariéra,protihluková stěna,protihluková zábrana,zvuková bariéra,zvuková zeď,zvuková stěna,stěna proti zvuku"},"barrier/wicket_gate":{"name":"Branka","terms":"dvěře,vchod,vstup"},"barrier/yes":{"name":"Zábrana (nespecifikovaný typ)"},"boundary":{"name":"Hranice"},"boundary/administrative":{"name":"Administrativní hranice","terms":"hranice,stát,kraj,okres"},"bridge/support":{"name":"Podpěra mostu","terms":"podpěry mostu,pilíř,pilíře,podepření mostu,konstrukce mostu"},"bridge/support/pier":{"name":"Mostní pilíř","terms":"pilíř mostu,podpěra mostu,mostní sloup,sloup mostu,pilíř,sloup"},"building":{"name":"Budova","terms":"struktura"},"building/allotment_house":{"name":"Zahradní dům","terms":"chata,chatka,zahradní domek,domek na zahradě,domek"},"building/apartments":{"name":"Budova s byty","terms":"bytová budova,panelový dům,činžový dům,panelák,činžák,apartmány"},"building/barn":{"name":"Stodola","terms":"kůlna,seník,sýpka"},"building/boathouse":{"name":"Přístřešek pro loď","terms":"dům pro lodě,úschovna lodí,veslování"},"building/bungalow":{"name":"Bungalov","terms":"dům,oddělený"},"building/bunker":{"name":"Bunkr"},"building/cabin":{"name":"Dřevěná stavba","terms":"chata,chalupa,srub,roubenka,chatrč,roubená stavba,dřevěná stavba"},"building/carport":{"name":"Zastřešené stání pro auto","terms":"kryté parkovací stání,garáž,auto,veranda"},"building/cathedral":{"name":"Budova katedrály","terms":"katedrála,kostel,diecéze,biskup"},"building/chapel":{"name":"Budova kaple","terms":"kaple,kaplička,modlitebna,kostel"},"building/church":{"name":"Budova kostela","terms":"kostel,chrám,kostelík,katedrála"},"building/civic":{"name":"Budova občanské vybavenosti","terms":"veřejná budova,občanské vybavení,škola,školka,kulturní dům,obecní úřad"},"building/college":{"name":"Budova vyšší odborné školy/college","terms":"univerzita"},"building/commercial":{"name":"Obchodní budova","terms":"obchody,firmy,firma,prodej,podnik,podniky,kanceláře"},"building/construction":{"name":"Budova ve výstavbě","terms":"stavba,výstavba,konstrukce"},"building/cowshed":{"name":"Kravín","terms":"chlév,stodola pro krávy,stáj pro krávy,chlév pro krávy,kravín,mlékárna,dojírna"},"building/detached":{"name":"Samostatný rodinný dům","terms":"dům,samostatný,rodinný,bydliště,obydlí"},"building/dormitory":{"name":"Kolej / internát","terms":"kolej,koleje,studentská kolej,studentské koleje,vysokoškolská kolej,vysokoškolské koleje,internát,ubytovna,domov mládeže"},"building/entrance":{"name":"Vchod/východ (zastaralý tag)"},"building/farm":{"name":"Zemědělský dům","terms":"obydlí,dům,obytná budova"},"building/farm_auxiliary":{"name":"Zemědělská budova","terms":"zemědělství,pomocné,pomocný,kurník,farmářský pomocný,vepřín,chlév"},"building/fire_station":{"name":"Budova požární zbrojnice","terms":"požární zbrojnice,hasiči,hasičská zbrojnice,hasičská budova"},"building/garage":{"name":"Garáž","terms":"garáže,parkování,kryté parkování"},"building/garages":{"name":"Budova soukromých garáží","terms":"garáž,garáže,parkování,kryté parkování"},"building/ger":{"name":"Jurta","terms":"ger"},"building/grandstand":{"name":"Tribuna","terms":"tribuna,stojan,stojany,tribuny"},"building/greenhouse":{"name":"Skleník","terms":"skleník,fóliovník,pařeniště"},"building/hangar":{"name":"Budova hangáru"},"building/hospital":{"name":"Budova nemocnice","terms":"nemocnice,klinika,špitál,středisko,hospic,ldn,sanatorium,nemocniční,lazaret,ambulance,poliklinika,pohotovost"},"building/hotel":{"name":"Budova hotelu","terms":"hotel,ubytování,motel,penzion,hostel"},"building/house":{"name":"Rodinný dům","terms":"dům,rodinný dům,řadový dům,domek"},"building/houseboat":{"name":"Hausbót","terms":"domov,rodina,bydliště,obydlí"},"building/hut":{"name":"Chatička","terms":"chatička,chatka,chata,bouda,dřevěnice,kůlna,dřevník"},"building/industrial":{"name":"Průmyslová budova","terms":"průmyslová budova,industriální,výroba"},"building/kindergarten":{"name":"Budova školky/předškolního zařízení","terms":"školka,mateřská školka,materřská škola"},"building/manufacture":{"name":"Budova průmyslové výroby"},"building/mosque":{"name":"Budova mešity"},"building/office":{"name":"Kancelářská budova","terms":"kancelář,kenceláře,budova kanceláří,business budova,kancelářský,kancelářská,komerční budova"},"building/outbuilding":{"name":"Přístavba"},"building/pavilion":{"name":"Pavilón","terms":"sporty"},"building/public":{"name":"Veřejná budova","terms":"veřejná budova,státní budova,federální budova,radnice,policie,soud"},"building/residential":{"name":"Obytná budova","terms":"obytná budova,ubytování,bývání,byt"},"building/retail":{"name":"Budova s obchody","terms":"obchod,obchody,obchodní dům,obchodní budova,obchodní centrum,nákupní centrum,shop,shopping"},"building/roof":{"name":"Střecha","terms":"střecha,přístřešek,čekárna,pumpa,benzinka,benzínka"},"building/ruins":{"name":"Zřícená budova"},"building/school":{"name":"Budova školy","terms":"škola,základní škola,střední škola,obecná škola,gymnázium,gymnasium,střední odborná škola,učiliště,odborné učiliště,střední odborné učiliště,školní,školský"},"building/semidetached_house":{"name":"Polovina dvojdomku","terms":"dvojdomek,půldomek,dvojdům,půldům,polovina"},"building/service":{"name":"Účelová budova"},"building/shed":{"name":"Kůlna","terms":"kůlna,bouda,přístřešek,kolna,šupna,šopa"},"building/stable":{"name":"Stáj","terms":"stáj,konírna,hřebčín,hříbárna,maštal,chlév,chlív,chlívek,vepřín,kravín,ovčín,drůbežárna,teletín"},"building/stadium":{"name":"Budova stadionu"},"building/static_caravan":{"name":"Karavan nastálo","terms":"karavan,přívěs,obytný přívěs,obytný vůz,maringotka,obytná buňka,kontejner"},"building/sty":{"name":"Vepřín","terms":"budova vepřína,prasata,prasečák,chvání vepřů,prasat,chlív,chlév,prase domácí,vepř,vepři"},"building/synagogue":{"name":"Budova synagogy"},"building/temple":{"name":"Budova chrámu"},"building/terrace":{"name":"Řada řadových domů","terms":"řadový dům,řadové domy,řadovka,řadovky"},"building/train_station":{"name":"Nádražní budova"},"building/transportation":{"name":"Dopravní budova","terms":"budova stanice,budova železniční stanice,budova vlakové stanice,budova stanice hromadné dopravy,nádraží,autobusové nádraží,mhd,terminál,budova terminálu,hromadná doprava,veřejná doprava,budova veřejné dopravy,budova přestupního hubu,budova nádraží,nádražní budova,staniční budova"},"building/university":{"name":"Budova vysoké školy","terms":"vysoká škola,univerzita,universita,vysoké učení"},"building/warehouse":{"name":"Skladiště","terms":"skladiště,sklad,překladiště,hala,silo,repozitář"},"building_part":{"name":"Část budovy","terms":"střecha,jednoduché 3d budovy"},"building_point":{"name":"Budova"},"cemetery/grave":{"name":"Hrob","terms":"mauzoleum,hrobka"},"cemetery/sector":{"name":"Hřbitovní oddíl","terms":"pohřebiště,hřbitov,krchov,kostel,kolumbárium,hřbitovy,krchovy,mauzoleum,hrobka"},"club":{"name":"Klub","terms":"sociální,sociálka"},"club/sport":{"name":"Sportovní klub","terms":"atletický klub,sportovní klub,sportovní svaz,sportovní spolek"},"craft":{"name":"Řemeslník","terms":"řemeslník,řemeslo,ruční výroba"},"craft/agricultural_engines":{"name":"Výrobce zemědělských strojů","terms":"kombajn,kombajny,farmářské stroje,sekačky,zemědělské stroje,výroba zemědělských strojů,návrh zemědělských strojů,mechanik,řemeslník,harvestery,traktory,konstruktér,konstrukce zemědělských strojů"},"craft/basket_maker":{"name":"Košíkář","terms":"košíkář,košíkářství,proutěný,pletení"},"craft/beekeeper":{"name":"Včelař","terms":"včelař,včely,úl,med,prodej medu,včelařství"},"craft/blacksmith":{"name":"Kovář","terms":"kovář,kovářství"},"craft/boatbuilder":{"name":"Loďař","terms":"loďařství,loďař,stavba lodí,stavba člunů"},"craft/bookbinder":{"name":"Knihař","terms":"knihařství,knihař,vazba knih,vazač,vazačství"},"craft/brewery":{"name":"Minipivovar","terms":"alkohol,pivo,nápoj,pivko,chlast,mošt"},"craft/carpenter":{"name":"Tesař","terms":"tesařství,tesař,dřevo"},"craft/carpet_layer":{"name":"Pokladač koberců","terms":"pokladač koberců,pokladačství koberců,koberce"},"craft/caterer":{"name":"Catering","terms":"catering,dodavatel občerstvení,dodavatelství občerstvení"},"craft/chimney_sweeper":{"name":"Kominík","terms":"kominík,kominictví"},"craft/cleaning":{"name":"Úklidová služba"},"craft/clockmaker":{"name":"Hodinář (ne hodinky)","terms":"hodinářství,hodinář,hodiny"},"craft/confectionery":{"name":"Cukrář","terms":"cukrář,cukrářství,cukrárna,sladkost,dort"},"craft/distillery":{"name":"Lihovar","terms":"alkohol,nápoj,bourbon,chlast,brandy,gin,hooch,likér,mezcal,měsíční svit,rum,skotská,lihoviny,tiš,tequila,vodka,whiskey,whisky"},"craft/dressmaker":{"name":"Švadlena","terms":"švadlena,krejčí,krejčová,šaty,dámská krejčová"},"craft/electrician":{"name":"Elektrikář","terms":"elektrikář,elektrikářství"},"craft/electronics_repair":{"name":"Opravna elektroniky","terms":"opravy elektroniky,opravna elektroniky"},"craft/floorer":{"name":"Podlahář"},"craft/gardener":{"name":"Zahradník","terms":"zahradník,zahradnictví,zahradní architekt"},"craft/glaziery":{"name":"Práce se sklem","terms":"sklenář,sklenářství,sklo,práce se sklem"},"craft/handicraft":{"name":"Umělecký řemeslník","terms":"umělec,řemeslo,řemeslník,švec,hrnčíř,keramik,keramička,švadlena,malíř,umění,krámek,obchůdek,dílna,dílnička"},"craft/hvac":{"name":"Pracoviště HVAC (topení, vzduchoteknika, klimatizace)","terms":"topení,topenář,teplo,tepelné,vzduch,vzduchotechnika,klimatizace,ac,a/c,větrání"},"craft/insulator":{"name":"Firma na izolace","terms":"zateplování,zateplení,izolace"},"craft/joiner":{"name":"Truhlář","terms":"nábytek"},"craft/key_cutter":{"name":"Výroba klíčů","terms":"klíče,klíčník,výroba klíčů,zámečník,zámečnictví"},"craft/locksmith":{"name":"Zámečník"},"craft/metal_construction":{"name":"Kovovýroba","terms":"kovovýroba,výroba z kovu,práce s kovem,kovové konstrukce,konstruktér,svářeč,ocelové konstrukce,obrábění,výroba,dílna"},"craft/painter":{"name":"Malíř","terms":"malíř,malířství"},"craft/parquet_layer":{"name":"Pokladač parket"},"craft/photographer":{"name":"Fotograf","terms":"fotograf,fotografie,ateliér"},"craft/photographic_laboratory":{"name":"Fotografická laboratoř","terms":"fotografická laboratoř,laboratoř,fotolaboratoř,fotografická dílna,temná komora,tisk fotografií"},"craft/plasterer":{"name":"Štukatér","terms":"štukatér,štukatérství,štuky"},"craft/plumber":{"name":"Instalatér","terms":"instalatér,instalatérství,vodoinstalatér"},"craft/pottery":{"name":"Hrnčířství","terms":"keramika,pec,hrnec,váza"},"craft/rigger":{"name":"Výroba takeláže","terms":"výroba takeláže,takeláž,plachtoví,ráhnoví,lanoví,stěžně"},"craft/roofer":{"name":"Pokrývač","terms":"pokrývač,pokrývačství"},"craft/saddler":{"name":"Sedlář","terms":"sedlář,sedlářství"},"craft/sailmaker":{"name":"Výroba plachet","terms":"plachty,plachtář,výroba plachet"},"craft/sawmill":{"name":"Pila","terms":"pila,pilař,dřevař,dřevařský,pilařský"},"craft/scaffolder":{"name":"Lešenář","terms":"lešenář,lešenářství,lešení"},"craft/sculptor":{"name":"Sochař","terms":"sochař"},"craft/shoemaker":{"name":"Švec","terms":"švec,ševcovství,obuvník,obuvnictví"},"craft/signmaker":{"name":"Výrobce cedulí","terms":"reklamní poutač,dílna,výroba reklamních poutačů,cedule,označení obchodu,vývěsný štít,výroba vývěsných štítů,nápisy,výroba světelných nápisů"},"craft/stonemason":{"name":"Kameník","terms":"kameník,kamenictví"},"craft/tailor":{"name":"Krejčí"},"craft/tiler":{"name":"Obkladač","terms":"obkladač,obkladačství,pokladač,pokladačství,dlaždič,dlaždičství"},"craft/tinsmith":{"name":"Klempíř","terms":"klempíř,klempířství,plech"},"craft/upholsterer":{"name":"Čalouník","terms":"čalouník,čalounictví"},"craft/watchmaker":{"name":"Hodinář","terms":"hodinářství,hodinky"},"craft/window_construction":{"name":"Výroba oken","terms":"sklenář,sklenářství,výroba oken,okenářství"},"craft/winery":{"name":"Vinař","terms":"vinař,vinařství,víno"},"cycleway/asl":{"name":"předsunutá stopčára pro cyklisty","terms":"prostor pro cyklisty,předsazená stopčára,prostor určený pro cyklisty,křižovatka,prostor pro zastavení,místo zastavení pro cyklisty,čekání cyklistů,předsazený prostor pro cyklisty,předsazená čára pro cyklisty"},"demolished/building":{"name":"čerstvě zbouraná budova"},"disc_golf/basket":{"name":"Koš pro disc golf","terms":"discgolfový terč,diskový otvor"},"disc_golf/hole":{"name":"Jamka pro disc golf"},"disc_golf/tee":{"name":"Odpaliště pro disc golf","terms":"odpaliště,odpal"},"disused/amenity":{"name":"Nepoužívané zařízení"},"disused/railway":{"name":"Nepoužívaný železniční prvek"},"disused/shop":{"name":"Uzavřený obchod"},"embankment":{"name":"Násyp"},"emergency":{"name":"Nouzový prvek"},"emergency/ambulance_station":{"name":"Stanice záchranné služby","terms":"ambulance,pohotovost,zdravotní pohotovost,pohotovostní stanice,záchranná služba,služba"},"emergency/assembly_point":{"name":"Nouzové shromažďovací místo","terms":"nouz. shromaž.,shromažďovací bod,schůzka,pracovní oblast"},"emergency/defibrillator":{"name":"Defibrilátor","terms":"defibrilátor,aed,resuscitace"},"emergency/designated":{"name":"Vyhrazeno pro záchranná vozidla"},"emergency/destination":{"name":"Vjezd záchranným vozidlům jen do místa"},"emergency/fire_alarm":{"name":"Ohlašovna požárů","terms":"požární poplach,hlášení požáru,požární hlásič,hoří"},"emergency/fire_extinguisher":{"name":"Hasící přístroj","terms":"hasící přístroj,hasící pěna,hasák"},"emergency/fire_hose":{"name":"Požární hadice","terms":"hasičárna,požární zbrojnice,hasičská zbrojnice,hasiči"},"emergency/fire_hydrant":{"name":"Požární hydrant","terms":"požární hydrant,hasičský hydrant,pumpa"},"emergency/first_aid_kit":{"name":"Lékárnička první pomoci","terms":"obvaz,první pomoc,lék,lékařská sada,lékař*,lékařská souprava"},"emergency/landing_site":{"name":"Msto pro nouzové přistání","terms":"vrtulník,přistávací plocha,heliport"},"emergency/life_ring":{"name":"Kruh života","terms":"záchranný kruh,záchranářský kruh,záchranné kolo,kobliha"},"emergency/lifeboat_station":{"name":"Stanice záchranného člunu","terms":"záchranný člun,záchrana,záchranáři,záchranářský člun,záchrana z lodi,plavba,loď"},"emergency/lifeguard":{"name":"Záchranný kruh","terms":"cpr,záchrana"},"emergency/mountain_rescue":{"name":"horská služba","terms":"horská služba,horská záchranná služba,záchranáři,vysokohorská,pomoc,rychlá pomoc,hzs,záchranka"},"emergency/no":{"name":"Vjezd záchranných vozidel zakázán"},"emergency/official":{"name":"Vjezd záchranných vozidel oficiálně povolen"},"emergency/phone":{"name":"Tísňový telefon","terms":"nouzový telefon,sos,tísňová linka"},"emergency/private":{"name":"Vjezd záchranným vozidlům jen s povolením"},"emergency/siren":{"name":"Siréna","terms":"maják,hlasitý,hluk,houkačka,siréna,varování"},"emergency/water_reservoir":{"name":"Nouzová vodní nádrž","terms":"nádrž,přehrada,hašení,hašení požárů"},"emergency/water_reservoir_covered":{"name":"Nouzová vodní nádrž (podzemní)","terms":"cisterna,přehrada,hašení,hašení požárů"},"emergency/water_tank":{"name":"Nouzový zásobník vody","terms":"nádrž na vodu,cisterna,hašení,hasit"},"emergency/yes":{"name":"Vjezd záchranných vozidel povolen"},"entrance":{"name":"Vchod / Východ","terms":"vchod,východ,vjezd,výjezd,vlez,výlez,vstup"},"entrance/emergency":{"name":"únikový východ","terms":"požární východ,dveře"},"entrance/emergency_ward_entrance":{"name":"Vstup do pohotovostní místnosti","terms":"nouze,záchrana,nouzová místnost,záchranář,pohotovost,vchod"},"entrance/main":{"name":"Hlavní vchod","terms":"hlavní vchod,vchod,dveře,průchod,vstup,východ,hlavní vstup,vchodové dveře,vstupní dveře"},"ford":{"name":"Brod","terms":"brod,přejezd vody,ford"},"ford_line":{"name":"Brod"},"golf/bunker":{"name":"Pískový bunker","terms":"pískový bunker,písková překážka,písečná překážka,bunker,hazard"},"golf/cartpath":{"name":"cesta pro golfová vozítka","terms":"cesta pro golfové vozíky,trasa golfových vozíků"},"golf/clubhouse":{"name":"Golfová klubovna","terms":"golf,golfový klub,základna,budova,golfový areál"},"golf/driving_range":{"name":"Dojezd","terms":"dojezd,zbývající benzín"},"golf/fairway":{"name":"Fairway","terms":"fairway,nízká tráva"},"golf/green":{"name":"Jamkoviště","terms":"jamkoviště,green"},"golf/hole":{"name":"Dráha do jamky","terms":"jamka,dráha od odpaliště,dráha do jamkoviště,dráha"},"golf/lateral_water_hazard":{"name":"hraniční vodní překážka","terms":"boční vodní překážka,překážka na straně vody,postranní překážka ve vodě"},"golf/path":{"name":"Golfová pěší stezka","terms":"pěší,cesta,golf,pro pěší,golfové hřiště"},"golf/rough":{"name":"Rough","terms":"rough,vysoká tráva"},"golf/tee":{"name":"Odpaliště","terms":"odpaliště,tee,týčko,tee box"},"golf/water_hazard":{"name":"vodní překážka","terms":"vodní překážka,překážka ve vodě"},"healthcare":{"name":"Zdravotní zařízení","terms":"klinika,lékař,nemoc,zdraví,ústav,nemocný,chirurgie,wellness"},"healthcare/alternative":{"name":"Alternativní medicína","terms":"akupunktura,antroposofická,aplikovaná kineziologie,aromaterapie,ajurvéda,bylinkářství,homeopatie,hydroterapie,hypnóza,naturopatie,osteopatie,reflexní terapie,reiki,shiatsu,tradiční,tuina,unani'"},"healthcare/alternative/chiropractic":{"name":"Chiropraktik","terms":"bolest,záda,páteř"},"healthcare/audiologist":{"name":"Ušní","terms":"ucho,slyšet,zvuk"},"healthcare/birthing_center":{"name":"Porodnice","terms":"miminko,novorozeně,dítě,porod,porodní asistentka,těhotenství,těhotná"},"healthcare/blood_donation":{"name":"Odběr krve","terms":"odběr krve,darování krve,transfúze,transfúzní stanice"},"healthcare/counselling":{"name":"zdravotní poradna","terms":"poradny,poradenví,poradce,konzultant"},"healthcare/dentist/orthodontics":{"name":"Ortodoncie","terms":"zuby,zubař,rovnání,rovnátka,úpravy chrupu,chrup,křivý chrup,čelist,lékař,ordinace"},"healthcare/hospice":{"name":"Hospic","terms":"terminál,nemoc"},"healthcare/laboratory":{"name":"Zdravotnická laboratoř","terms":"lékařská laboratoř,lékařská laborka,krevní kontrola"},"healthcare/midwife":{"name":"Porodní bába","terms":"dítě,porod,těhotenství"},"healthcare/occupational_therapist":{"name":"Ergoterapeut","terms":"terapeut,terapie"},"healthcare/optometrist":{"name":"Optik","terms":"oko,oči,brýle,lasik,čočky,zrak"},"healthcare/physiotherapist":{"name":"Fyzioterapeut","terms":"fyzikální,terapeut,terapie"},"healthcare/podiatrist":{"name":"Pedikér","terms":"noha,nohy,nehty"},"healthcare/psychotherapist":{"name":"Psychoterapeut","terms":"úzkost,poradce,deprese,duševní zdraví,mysl,sebevražda,terapeut,terapie"},"healthcare/rehabilitation":{"name":"Rehabilitační středisko","terms":"rehabilitace,terapeut,tarapie"},"healthcare/sample_collection":{"name":"Zařízení pro odběr vzorků","terms":"odběr vzorků krve,odběr vzorků moči"},"healthcare/speech_therapist":{"name":"Logoped","terms":"řeč,terapeut,terapie,hlas"},"healthcare/yes":{"name":"Zdravotní zařízení (nespecifikovaný typ)"},"highway":{"name":"Prvek cesty"},"highway/bridleway":{"name":"Jezdecká stezka","terms":"jezdecká stezka,jezdecká trasa,stezka pro jezdce,stezka pro koně,koňská stezka"},"highway/bus_guideway":{"name":"autobusová dráha","terms":"autobusová dráha,dráha pro autobus,dráha pro autobusy,samostatná dráha pro autobusy,vozovka pro autobusy,těleso pro autobusy,silnice pro autobusy,metrobus,bus,autobus,oddělený pás pro autobusy"},"highway/bus_stop":{"name":"Autobusová zastávka"},"highway/busway":{"name":"Autobusová dráha","terms":"mhd"},"highway/construction":{"name":"Silnice ve výstavbě","terms":"uzavřená silnice,uzavírka,stavba,silnice zavřena,práce na silnici,silniční práce"},"highway/corridor":{"name":"Chodba","terms":"chodba,koridor"},"highway/crossing":{"name":"Přechod"},"highway/crossing/marked":{"name":"Označený přechod"},"highway/crossing/traffic_signals":{"name":"Přechod se semaforem pro chodce","terms":"semafor pro chodce,světla pro chodce,přechod pro chodce (semafor),přechod pro cyklisty (semafor),přechod pro chodce (světla)"},"highway/crossing/uncontrolled":{"name":"Označený přechod pro chodce","terms":"přechod,zebra,označený přechod,značený přechod,přechod pro chodce,chodci"},"highway/crossing/unmarked":{"name":"Neoznačený přechod","terms":"neoznačený přechod,přechod,místo pro přecházení,přechod pro chodce,neoznačený přechod pro chodce,přechod přes ulici"},"highway/crossing/zebra":{"name":"Označený přechod"},"highway/cycleway":{"name":"Cyklostezka","terms":"cyklotrasa,stezka pro cyklisty,cyklista,cyklistická,kolo,stezka pro kola,bycikl,cyklostezka"},"highway/cycleway/bicycle_foot":{"name":"Stezka pro chodce a cyklisty","terms":"stezka,cyklista,cyklisté,cyklisty,chodec,chodci,pěší,cyklistická,cesta,cyklostezka,společná,chodci a cyklisté"},"highway/cycleway/crossing":{"name":"Přejezd pro cyklisty"},"highway/cycleway/crossing/bicycle_foot":{"name":"Přechod pro chodce a cyklisty","terms":"přechod pro cyklisty a chodce,přechod pro kola a chodce,cyklostezka,cyklistika,cyklista"},"highway/cycleway/crossing/marked":{"name":"Označený přejezd pro cyklisty"},"highway/cycleway/crossing/traffic_signals":{"name":"Přejezd pro cyklisty se semafory","terms":"přejezd cyklostezky,přechod cyklostezky,přejezd pro cyklisty,přechod pro cyklisty"},"highway/cycleway/crossing/uncontrolled":{"name":"Označený přejezd pro cyklisty","terms":"cyklistický přechod pro chodce,přejezd cyklostezky,přechod cyklostezky,přejezd pro cyklisty,přechod pro cyklisty"},"highway/cycleway/crossing/unmarked":{"name":"Neoznačený přejezd pro cyklisty","terms":"přejezd pro cyklisty,neoznačený přejezd pro cyklisty,cyklo přejezd,cyklopřejezd,cyklistický přejezd,přejíždění cyklistů,cyklistický,cyklotrasa,cyklostezka,stezka pro cyklisty"},"highway/cycleway/moped_link-NL":{"name":"Stezka pro mopedy"},"highway/elevator":{"name":"Výtah","terms":"vlek"},"highway/elevator_line":{"name":"Šikmý výtah","terms":"lanová dráha"},"highway/emergency_access_point":{"name":"Místo vjezdu záchranných vozidel","terms":"záchrana,pohotovost,nouzová značka,jilm"},"highway/emergency_bay":{"name":"Místo nouzového zastavení","terms":"dálniční nouzový záliv"},"highway/escape":{"name":"Výjezdový pruh pro nákladní vozidla","terms":"únikový pruh,nouzová úniková rampa,pruh pro útěk nákladních vozidel,záchytné lůžko pro nákladní vozidla"},"highway/footway":{"name":"Chodník / stezka pro pěší","terms":"cesta,silnice,ulice,ulička,chodník,třída,bulvár,avenue,pasáž,stezka,trasa,trať,magistrála,radiála,pěšina"},"highway/footway/access_aisle":{"name":"bezbariérová ulička","terms":"bezbariérová nakládací zóna,přístupová zóna pro invalidy,přístupová zóna pro handicapované parkoviště,parkovací ulička,pruhovaná zóna,odtahová zóna,odtahová oblast,odtahové místo,ulička pro invalidní vozíky"},"highway/footway/conveying":{"name":"Pohyblivý pás","terms":"pohyblivý chodník,travelator,travelátor,pásový dopravník,dopravník,jezdící chodník,pěší"},"highway/footway/crossing":{"name":"Přechod pro chodce"},"highway/footway/crossing/marked":{"name":"Označený přechod"},"highway/footway/crossing/traffic_signals":{"name":"Přechod se semaforem pro chodce","terms":"semafor pro chodce,světla pro chodce,přechod pro chodce (semafor),přechod pro cyklisty (semafor),přechod pro chodce (světla)"},"highway/footway/crossing/uncontrolled":{"name":"Označený přechod","terms":"označený přechod pro chodce,značený přechod pro chodce,značený přechod,přechod pro chodce,přechod"},"highway/footway/crossing/unmarked":{"name":"Neoznačený přechod","terms":"neznačený přechod pro chodce,neoznačený přechod pro chodce,neoznačený přechod"},"highway/footway/crossing/zebra":{"name":"Označený přechod"},"highway/footway/informal":{"name":"Neformální chodník/stezka pro pěší"},"highway/footway/sidewalk":{"name":"Chodník podél vozovky","terms":"chodník,pěší cesta,pěší stezka,pro pěší,chodec,chodci,pro chodce,stezka pro chodce"},"highway/footway/traffic_island":{"name":"Ostrůvek pro chodce","terms":"ostrůvek na přechodu"},"highway/give_way":{"name":"Značka Dej přednost","terms":"dej přednost v jízdě,dej přednost,značka přednosti v jízdě,vedlejší silnice,vedlejší ulice"},"highway/living_street":{"name":"Obytná zóna"},"highway/milestone":{"name":"Milník dálnice","terms":"označení kilometru,číslo kilometru,kilometrovník,označení počtu kilometrů,označení mile,milník"},"highway/mini_roundabout":{"name":"Malý kruhový objezd","terms":"malý kruhový objezd,kruháč"},"highway/motorway":{"name":"Dálnice","terms":"dálková silnice,dálnice,rychlostní silnice,silnice pro motorová vozidla,mezinárodní,dopravní tepna,silnice,ulice,zpoplatněné úseky,mýtné"},"highway/motorway_junction":{"name":"Dálniční křižovatka/sjezd","terms":"dálniční nájezd,dálniční výjezd,dálniční exit,dálniční křižovatka,křížení dálnic,nájezd,exit"},"highway/motorway_link":{"name":"Dálnice – nájezd","terms":"nájezd,sjezd,výjezd,příjezd,rampa,exit"},"highway/passing_place":{"name":"Místo k vyhýbání","terms":"vyhýbací záliv"},"highway/path":{"name":"Pěšina","terms":"cesta,pěšina,stezka,chodci,pro chodce,polní,lesní,vychozená,prošlapaná"},"highway/path/boardwalk":{"name":"Dřevěný chodník / boardwalk","terms":"dřevěný chodník,boardwalk,prkenný chodník,vyvýšený,nad terénem,vyvýšený chodník"},"highway/path/informal":{"name":"Neformální pěšina","terms":"neformální,vyšlapaná stezka,načerno,stezka,pěšina,cesta,chodci,nepovolená,neoficiální"},"highway/pedestrian_area":{"name":"Pěší zóna","terms":"náměstí,plocha pro pěší,plocha pro chodce,chodci,pěší,centrum,náměstíčko,chodník,pochozí,plocha,dlažba,pěší zóna,střed města"},"highway/pedestrian_line":{"name":"Pěší zóna","terms":"pěší ulice,ulice pro pěší,ulička,zákaz vjezdu,pěší zóna,střed města,chodci,pěší,centrum,chodník"},"highway/primary":{"name":"Silnice 1. třídy","terms":"silnice,ulice"},"highway/primary_link":{"name":"Silnice 1. třídy – nájezd","terms":"nájezd,sjezd,výjezd,příjezd,rampa,exit"},"highway/raceway":{"name":"motoristická závodní dráha","terms":"auto*,formule 1,karta,motocross,nascar,závod*,dráha"},"highway/raceway/karting":{"name":"motokárová dráha","terms":"motokára,motokáry,káry,motorové káry,motorové motokáry,motokárové závody,motokárová dráha,motorsport,posunovací motokáry,superkáry"},"highway/raceway/motocross":{"name":"motokrosová dráha","terms":"off-roadové závody,offroadové moto závody,motokrosový okruh,motocyklová dráha,motorsport"},"highway/residential":{"name":"Ulice","terms":"silnice,ulice"},"highway/rest_area":{"name":"Odpočívadlo","terms":"odpočívadlo,místo k zastavení,odpočívka,dálniční odpočívadlo"},"highway/road":{"name":"Silnice neznámého typu","terms":"silnice,ulice"},"highway/road/bridge":{"name":"Neznámý silniční most","terms":"most,silnice,silniční most,most na silnici,nepřesný,nedefinovaný,libovolný most,nějaký most"},"highway/secondary":{"name":"Silnice 2. třídy","terms":"silnice,ulice"},"highway/secondary_link":{"name":"Silnice 2. třídy – nájezd","terms":"nájezd,sjezd,výjezd,příjezd,rampa,exit"},"highway/service":{"name":"Účelová komunikace, příjezd","terms":"silnice,ulice"},"highway/service/alley":{"name":"Ulička"},"highway/service/drive-through":{"name":"Drive-through","terms":"okénko pro řidiče,pult pro řidiče,obsluha řidiče,obsluha do auta,drive through"},"highway/service/driveway":{"name":"Příjezdová cesta","terms":"příjezdová cesta,příjezd"},"highway/service/emergency_access":{"name":"Nouzový vjezd"},"highway/service/parking_aisle":{"name":"Parkovací ulička"},"highway/service_area":{"name":"Zpevněná účelová plocha"},"highway/services":{"name":"Odpočívka se službami","terms":"odpočívadlo,odpočívadlo se službami,odpočívka,čerpací stanice,dálniční odpočívadlo"},"highway/speed_camera":{"name":"Rychlostní kamera","terms":"rychlostní kamera,radar,kamera s omezením rychlosti,omezovač rychlosti,dopravní kamera"},"highway/speed_display":{"name":"Rychlostní radar","terms":"značka rychlosti řidiče,zobrazení dynamické rychlosti,zpráva o povědomí o rychlosti,deska zobrazení rychlosti,značka rychlostního radaru,značka zklidnění dopravy,značka vaše rychlost"},"highway/steps":{"name":"Schody","terms":"schody,schodiště"},"highway/steps/conveying":{"name":"Jezdící schody","terms":"pohyblivé schodiště,jezdící schodiště,posouvač lidí"},"highway/stop":{"name":"Značka STOP","terms":"stopka,stop,stůj,dej přednost v jízdě,přednost,značka,dopravní značka"},"highway/street_lamp":{"name":"Pouliční lampa","terms":"pouliční lampa,pouliční osvětlení,lampa,osvětlení,veřejné osvětlení,svítidlo"},"highway/tertiary":{"name":"Silnice 3. třídy","terms":"silnice,ulice"},"highway/tertiary_link":{"name":"Silnice 3. třídy – nájezd","terms":"nájezd,sjezd,výjezd,příjezd,rampa,exit"},"highway/toll_gantry":{"name":"Mýtná brána","terms":"sledování průjezdu,automatická mýtná brána,výběr mýta,dálniční portál,čtecí zařízení,průjezdná mýtná brána,kamera,kamery,spz,čtečka spz,mýto,placená dálnice,placená silnice,radar"},"highway/track":{"name":"Nezpevněná lesní, polní cesta","terms":"4wd,4x4,zemědělská silnice,atv,vozová cesta,polní cesta,dvoukolejka,farmářská cesta,požární cesta,lesní cesta,cesta v lese,náhon na čtyři kola,odvozní cesta,nákladní cesta,vysoká světlá výška,džíp,těžba dřeva,těžební linka,offroad,terénní,zarostlý,primitivní,čtyřkolka,ranch road,vyjetá kolej,dvoukolejné,kolejné,neudržované,vozová stezka,lesní stezka"},"highway/traffic_mirror":{"name":"Dopravní zrcadlo","terms":"slepý úhel,konvexní,roh,zakřivený,zahnutý,kulatý,bezpečnostní,viditelnost"},"highway/traffic_signals":{"name":"Semafory","terms":"světla,semafor,dopravní signalizace"},"highway/trailhead":{"name":"nástupní místo stezky","terms":"turistika,nultá míle,horská cyklistika,horolezectví,cíl stezky,začátek stezky,zastávková zóna,trekking"},"highway/trunk":{"name":"Víceproudá silnice","terms":"rychlostní komunikace,vícepruhá komunikace"},"highway/trunk_link":{"name":"Víceproudá silnice – nájezd","terms":"nájezd,sjezd,výjezd,příjezd,rampa,exit"},"highway/turning_circle":{"name":"Obratiště","terms":"místo k otočení"},"highway/turning_loop":{"name":"Obratiště s ostrůvkem","terms":"obratiště,smyčka,ostrůvek"},"highway/unclassified":{"name":"Silnice bez klasifikace","terms":"silnice bez klasifikace,neklasifikovaná silnice,místní komunikace"},"historic":{"name":"Památné místo"},"historic/archaeological_site":{"name":"Archeologické naleziště","terms":"archeologické naleziště,vykopávky,archeologický průzkum"},"historic/boundary_stone":{"name":"Hraniční kámen","terms":"hraniční kámen,hranice,značka"},"historic/building":{"name":"Historická budova"},"historic/castle":{"name":"Hrad, zámek","terms":"hradiště,zámek,král,sídlo,ruina,zřícenina"},"historic/castle/fortress":{"name":"Historická pevnost","terms":"citadela,vojenský"},"historic/castle/palace":{"name":"Palác","terms":"královská rezidence,královská,král,královna"},"historic/castle/stately":{"name":"Zámek","terms":"historický venkovský dům,zámek,šlechta,panstvo,reprezentant"},"historic/city_gate":{"name":"Hradby","terms":"brána,hradby,obrana města,historická,historie,opevnění,městské hradby,městská brána,brána do města,centrum města"},"historic/fort":{"name":"Historická pevnost","terms":"vojenský"},"historic/manor":{"name":"Kaštel","terms":"panstké sídlo,panstvo,šlechta,panství"},"historic/memorial":{"name":"Památník","terms":"pamětihodnost,památník,pomník,hrdina"},"historic/memorial/plaque":{"name":"Pamětní deska","terms":"dedikační,epitaf,historická značka,pamatovat,vzpomínka,paměť"},"historic/monument":{"name":"Monument","terms":"pamětihodnost,památník,pomník,hrdina"},"historic/pillory":{"name":"pranýř","terms":"pranýř,historický pranýř,sloup,trest,trestání,připoutání,odsouzený,připoutat"},"historic/ruins":{"name":"Zřícenina, ruiny","terms":"zříceniny,zřícenina"},"historic/tomb":{"name":"Hrob","terms":"hrobka,místo posledního odpočinku"},"historic/wayside_cross":{"name":"Kříž","terms":"boží muka,křesťanský,kříž při cestě,krucifix"},"historic/wayside_shrine":{"name":"Boží muka","terms":"svatostánek u cesty,svatyně,svatostánek,kaplička"},"historic/wreck":{"name":"Vrak lodi","terms":"trup,stěžeň,námořní,ostatky,loď,člun"},"indoor":{"name":"Vnitřní prvek"},"indoor/area":{"name":"Vnitřní plocha","terms":"vnitřní prostor"},"indoor/corridor":{"name":"Chodba","terms":"hala,vstupní,chodba,průchod"},"indoor/corridor_line":{"name":"Chodba"},"indoor/door":{"name":"Vnitřní dveře","terms":"zárubeň,dveře,portál,přístup do místnosti,prah"},"indoor/elevator":{"name":"Vnitřní šachta výtahu","terms":"výtah,vlek"},"indoor/room":{"name":"Pokoj","terms":"předsíň,předpokoj,atrium,buňka,komora,síň,vstupní hala,vnitřní místnost,hala,vestibul"},"indoor/stairs":{"name":"Vnitřní schodiště","terms":"schod,schody,schodiště,stupně,schůdek,schůdky"},"indoor/wall":{"name":"Vnitřní stěna","terms":"vnitřní bariéra,rozdělení místnosti,přepážka místnosti"},"internet_access/wlan":{"name":"Wi-Fi hotspot","terms":"wi-fi,wifi,hotspot"},"junction":{"name":"Křižovatka","terms":"křižovatka,křížení,odbočka,kruhový objezd"},"landuse":{"name":"Prvek využití krajiny"},"landuse/allotments":{"name":"Zahrádkářská kolonie","terms":"zahrádky,kolonie,zahrady,zahrádkářská,zahrádkářské,chatky,oblast"},"landuse/aquaculture":{"name":"Akvakultura","terms":"rybí farma,pěstování ryb,řasa,korýš,kreveta,krevety,ústřice"},"landuse/basin":{"name":"Umělá vodní plocha"},"landuse/brownfield":{"name":"Brownfield","terms":"vývoj,průmysl,hodně"},"landuse/cemetery":{"name":"Hřbitov","terms":"hřbitov,pohřebiště"},"landuse/churchyard":{"name":"Prostor kolem kostela"},"landuse/commercial":{"name":"Oblast kanceláří, podniků","terms":"kancelář,kancelářský,kancelářská,podnikový,podnik,komerční"},"landuse/construction":{"name":"Stavební plocha","terms":"budova,buldozer,staveniště,stavební zóna,jeřáb,demolice,výstavba,infrastruktura"},"landuse/education":{"name":"Vzdělávací kampus","terms":"vzdělávací zařízení,kampus,areál školy,školní středisko"},"landuse/farm":{"name":"Zemědělská půda (zastaralý tag)"},"landuse/farmland":{"name":"Zemědělská půda","terms":"pole,farma,dobytek,zahrady,pěstitelská plocha"},"landuse/farmyard":{"name":"Statek","terms":"statek,farma,zemědělství,usedlost,jzd,družstvo"},"landuse/flowerbed":{"name":"květnatý pás","terms":"rostlinná zahrada,květinová zahrada"},"landuse/forest":{"name":"Lesní porost","terms":"boreální,řez,les,lesnictví,lesní,dřevo,tajga,strom,stromy,lesní porosty,lesy"},"landuse/garages":{"name":"Oblast soukromých garáží","terms":"parkoviště"},"landuse/grass":{"name":"Tráva","terms":"pole,zeleň,trávník,obhospodařovaná tráva,posekaná tráva,rašelina"},"landuse/greenfield":{"name":"Zelená louka","terms":"vývoj,hodně"},"landuse/greenhouse_horticulture":{"name":"skleníky","terms":"květina,skleník,zahradnictví,růst,vivero"},"landuse/harbour":{"name":"Přístav","terms":"loď"},"landuse/industrial":{"name":"Průmyslová oblast","terms":"průmysl,průmyslová,průmyslové,průmyslový,industriální,továrna,továrny,fabrika,fabriky"},"landuse/industrial/scrap_yard":{"name":"Vrakoviště","terms":"auto,haraburdí,kov,záchrana,šrot,vytáhnutí,vozidlo,vrak,dvůr"},"landuse/industrial/slaughterhouse":{"name":"Jatka","terms":"jatka,hovězí,řezník,tele,telecí,kuře,kuřecí,slepice,kráva,maso,vepř,vepřové,drůbež,bourání"},"landuse/landfill":{"name":"Skládka","terms":"skládka,skládka odpadu,smetiště"},"landuse/meadow":{"name":"Louka","terms":"louka,pastviny,tráva"},"landuse/military":{"name":"Vojenský prostor","terms":"vojenský prostor,újezd,výcvikový prostor,kasárna,kasárny"},"landuse/military/airfield":{"name":"Vojenské letiště","terms":"letectvo,armáda,základna,bomba,boj,heli*,stíhačka,letadlo,vojenské"},"landuse/military/barracks":{"name":"Kasárna","terms":"letectvo,armáda,základna,boj,námořnictvo,válka"},"landuse/military/base":{"name":"Vojenská základna","terms":"letectvo,armáda,základna,pohraniční stráž,pobřežní stráž,boj,síla,stráž,vojska,válka"},"landuse/military/base/navy":{"name":"Námořní základna","terms":"základna,boj,síla,stráž,mariňák,námořnictvo,loď,ponorka,vojska,válka"},"landuse/military/danger_area":{"name":"Nebezpečné území","terms":"letectvo,armáda,námořnictvo,válka,výbuch,exploze"},"landuse/military/obstacle_course":{"name":"Vojenská překážková dráha","terms":"válka,cvičiště,vojenské,vojenská,terén,trénink,základna,vojáci,vojenský,armáda,armádní"},"landuse/military/range":{"name":"Vojenská střelnice","terms":"letectvo,armáda,námořnictvo,válka,palba,zbraň,základna,střílet,střelnice,střelba,střelby"},"landuse/military/training_area":{"name":"Vojenský výcvikový prostor","terms":"vojenský prostor,újezd,výcvikový prostor,kasárna,kasárny,armáda,armádní"},"landuse/orchard":{"name":"Sad","terms":"sad,stromy,ovoce,ovocné stromy,ovocný sad"},"landuse/plant_nursery":{"name":"Pěstitelská školka","terms":"školka,pěstitelská školka,lesní školka,sazenice"},"landuse/pond":{"name":"Rybník"},"landuse/quarry":{"name":"Lom","terms":"kamenolom,lom,důl,skála,kameny,štěrk"},"landuse/railway":{"name":"Železniční koridor","terms":"vlak,železnice,koleje,kolejnice"},"landuse/recreation_ground":{"name":"Rekreační území","terms":"rekreace,prostranství pro rekreaci,náves,hřiště,obecní zeleň"},"landuse/religious":{"name":"Posvátné území","terms":"křesťan,kostel,hinduistický,židovský,mešita,muslim,místo k uctívání,šintoismus,sikh,taoistický,chrám,svatyně,synagoga"},"landuse/reservoir":{"name":"Přehrada"},"landuse/residential":{"name":"Obytná oblast","terms":"obytná oblast,rezidenční oblast,byty,domy,bydlení,obytné,sídelní"},"landuse/residential/apartments":{"name":"Oblast s bytovými budovami","terms":"byt,bydlení,činžovní dům"},"landuse/residential/trailer_park":{"name":"Parkoviště pro obytné vozy","terms":"park pro karavany,komunity vyrobených domů,park pro přívěsy"},"landuse/retail":{"name":"Nákupní zóna","terms":"nákupní,obchod,maloobchodní,nákup"},"landuse/salt_pond":{"name":"Jezírko pro odpařování soli","terms":"odpařování,solný roztok,sůl,solnice,solná pánev"},"landuse/vineyard":{"name":"Vinice","terms":"vinice,vinohrad,hrozny,víno"},"landuse/winter_sports":{"name":"plocha pro zimní sporty","terms":"oblast sjezdovek,lyžařská oblast,lyžařský kopec,lyžařská hora,lyžařské středisko,oblast snowboardů,oblast pro snowboardování"},"leisure":{"name":"Volnočasový prvek"},"leisure/adult_gaming_centre":{"name":"Herna (hrací automaty)","terms":"herna,automaty,hazard,hrací automaty,výherní hrací automaty,gambling"},"leisure/amusement_arcade":{"name":"Herna","terms":"placené hry,videohry,simulátory řízení,hrací automaty"},"leisure/bandstand":{"name":"Kryté pódium"},"leisure/beach_resort":{"name":"spravovaná pláž"},"leisure/bird_hide":{"name":"Pozorovatelna zvěře","terms":"pozorovatelna zvěře,pozorovatelna ptáků,ptačí zástěna,machan"},"leisure/bleachers":{"name":"nekryté tribuny","terms":"dav,lavice,sport,stojan,stojany,sedadlo,posezení"},"leisure/bowling_alley":{"name":"Bowlingová dráha","terms":"bowlingová herna,kuželková dráha,kuželková herna,kuželna"},"leisure/common":{"name":"Volně přístupný prostor","terms":"volně přístupný prostor,volně přístupné,veřejně přístupné"},"leisure/dance":{"name":"Tančírna","terms":"taneční sál,tančírna,jive,džajv,swing,tango,waltz,valčík,polka"},"leisure/dancing_school":{"name":"Taneční škola","terms":"jive,swing,tango,valčík,výuka tance"},"leisure/disc_golf_course":{"name":"hřiště pro disc golf","terms":"disk golf,frisbee golf,létající discgolf,frolf,ultimátum"},"leisure/dog_park":{"name":"Psí park","terms":"park pro psy,psí park"},"leisure/escape_game":{"name":"úniková hra","terms":"úniková hra,útěk z místnosti,hlavolam,místnost hledání"},"leisure/firepit":{"name":"Ohniště","terms":"ohniště,oheň,táborák,topeniště"},"leisure/fishing":{"name":"Místo pro rybolov","terms":"rybář"},"leisure/fitness_centre":{"name":"Tělocvična / Fitness centrum","terms":"tělocvična,posilovna,fitness,fitness centrum,fitko"},"leisure/fitness_centre/yoga":{"name":"Yoga studio","terms":"ásany,meditace,moderní jóga,studio"},"leisure/fitness_station":{"name":"Venkovní tělocvična","terms":"fitko,fitness,tělocvična"},"leisure/fitness_station/balance_beam":{"name":"kladina","terms":"rovnováha,cvičení,fitness,tělocvična,upravená stezka"},"leisure/fitness_station/box":{"name":"schod","terms":"box,cvičení,fitness,tělocvična,skok,upravená stezka"},"leisure/fitness_station/horizontal_bar":{"name":"Vodorovná tyč","terms":"hrazda,přítah,přítahy,cvičení,fitness,posilovna,shyb,shyby,upravená stezka"},"leisure/fitness_station/horizontal_ladder":{"name":"horizontální žebřík","terms":"hrazda,přítah,přítahy,cvičení,fitness,posilovna,žebřík,moničáky,shyb,shyby,upravená stezka"},"leisure/fitness_station/hyperextension":{"name":"Zařízení pro protahování","terms":"záda,cvičení,prodloužení,fitness,tělocvična,římská židle,upravená stezka"},"leisure/fitness_station/parallel_bars":{"name":"Rovnoběžné tyče","terms":"hrazda,dip,cvičení,fitness,posilovna,upravená stezka"},"leisure/fitness_station/push-up":{"name":"Zařízení pro kliky","terms":"hrazda,cvičení,fitness,posilovna,klik,kliky,upravená stezka"},"leisure/fitness_station/rings":{"name":"Cvičební kruhy","terms":"cvičení,fitness,posilovna,svaly,shyb,shyby,upravená stezka"},"leisure/fitness_station/sign":{"name":"cedule s návodem ke cvičení","terms":"cedule,návod ke cvičení,návod k posilování,instrukce ke cvičení,instrukce,instruktáž,workout,informace,informační tabule,návod,cvičení,hřiště"},"leisure/fitness_station/sit-up":{"name":"Zařízení pro sedy-lehy","terms":"zkracovačka,cvičení,fitness,posilovna,sed,sedy,upravená stezka"},"leisure/fitness_station/stairs":{"name":"Cvičební schodiště","terms":"cvičení,fitness,tělocvična,kroky,upravená stezka"},"leisure/garden":{"name":"Zahrada","terms":"květiny,ovoce,bylinky,rostliny,zelenina"},"leisure/garden/botanical":{"name":"Botanická zahrada","terms":"botanika,botanická,zahrada,květiny,rostliny,nauka,naučná,skleník"},"leisure/garden/community":{"name":"Komunitní zahrada","terms":"společná zahrada,zahrada,komunita,spravovaná komunitou,skupinou,sousedská zahrada"},"leisure/golf_course":{"name":"Golfové hřiště","terms":"golfové hřiště,golf"},"leisure/hackerspace":{"name":"hackerspace","terms":"makerspace,hackspace,hacklab"},"leisure/horse_riding":{"name":"Jezdecké centrum","terms":"jezdecký areál,jezdecký,koňská farma,koňský park,koňský ranč,jezdecké centrum,areál jízdy na koni,jízda na koních,koňské stáje,areál jezdectví,stáje"},"leisure/ice_rink":{"name":"Kluziště","terms":"kluziště,zimní stadion,led,ledová plocha"},"leisure/indoor_play":{"name":"Vnitřní herna","terms":"míčové hřiště,dětské hřiště,vnitřní hřiště"},"leisure/marina":{"name":"Přístaviště","terms":"přístav,jachta,jachty,loď"},"leisure/miniature_golf":{"name":"Minigolf","terms":"minigolf,golf,miniaturgolf,filcgolf,fungolf,sterngolf"},"leisure/nature_reserve":{"name":"Přírodní rezervace","terms":"přírodní rezervace,národní přírodní rezervace,přírodní památka,národní přírodní památka,chráněné území,přírodní park"},"leisure/outdoor_seating":{"name":"Venkovní posezení","terms":"pod širým nebem,pivní zahrádka,jídelna,kavárna,restaurace,hospoda,bar,patio"},"leisure/park":{"name":"Park","terms":"les,prales,louka,trávník,park,hřiště,parčík,zeleň,lesní,strom,křoví"},"leisure/picnic_table":{"name":"Stůl na piknik","terms":"stůl na piknik,stůl,piknik,piknikový stůl,lavička"},"leisure/picnic_table/chess":{"name":"Šachový stůl","terms":"lavice,šachovnice,šachy,dáma,šach,hrací stůl"},"leisure/pitch":{"name":"Hřiště","terms":"sportovní kurt,hřiště,dvorec,kurt,stadion"},"leisure/pitch/american_football":{"name":"Hřiště pro americký fotbal","terms":"hřiště amerického fotbalu,americký fotbal"},"leisure/pitch/american_handball":{"name":"Hřiště pro americkou házenou","terms":"házená"},"leisure/pitch/archery":{"name":"Lukostřelba","terms":"luk a šíp,kuše"},"leisure/pitch/australian_football":{"name":"hřiště pro Australský fotbal","terms":"australský,afl,fotbal"},"leisure/pitch/badminton":{"name":"Badmintonový kurt","terms":"badmintonová síť"},"leisure/pitch/baseball":{"name":"Basebalové hřiště","terms":"diamant,softball"},"leisure/pitch/basketball":{"name":"Basketbalové hřiště","terms":"basketbalové hřiště,basketbal"},"leisure/pitch/beachvolleyball":{"name":"Hřiště na plážový volejbal","terms":"volejbal"},"leisure/pitch/boules":{"name":"Hřiště na Petanque","terms":"koule,lyonské,pentaque"},"leisure/pitch/bowls":{"name":"Bowlingový trávník","terms":"bowling,trávník,kuželkový trávník,zeleň,bowlingová zeleň,kuželková zeleň"},"leisure/pitch/chess":{"name":"Obří šachovnice","terms":"šachovnice,šachy,dáma,šach,zahradní šachy,velké šachy,nadrozměrné šachy"},"leisure/pitch/cricket":{"name":"Kriketové hřiště","terms":"hřiště na kriket"},"leisure/pitch/equestrian":{"name":"Jezdecká aréna","terms":"aréna,drezurní aréna,drezurní kruh,drezura,jezdectví,jezdecký kruh,jízda na koni,kůň,koně,skákací aréna,skákací kruh,longeing,ohrádka,kruh jezdectví,jízda,kruh,kulatá ohrádka"},"leisure/pitch/field_hockey":{"name":"hřiště pro pozemní hokej","terms":"pozemní hokej"},"leisure/pitch/four_square":{"name":"Hřiště na foursquare","terms":"4 čtverce"},"leisure/pitch/funnel_ball":{"name":"Hřiště na funnel ball"},"leisure/pitch/futsal":{"name":"Hřiště pro futsal","terms":"minifotbal,malý fotbal"},"leisure/pitch/gaga":{"name":"Gaga jáma","terms":"gaga míč"},"leisure/pitch/handball":{"name":"Hřiště pro týmovou házenou","terms":"házená"},"leisure/pitch/horseshoes":{"name":"hřiště pro házení podkovou","terms":"házení podkovy"},"leisure/pitch/netball":{"name":"hřiště pro netball","terms":"basketbal"},"leisure/pitch/padel":{"name":"Padelové hřiště","terms":"tenis,pálka"},"leisure/pitch/paintball":{"name":"Paintballové hřiště"},"leisure/pitch/pickleball":{"name":"Picketballové hřiště","terms":"tenis,paddleball"},"leisure/pitch/rugby_league":{"name":"Hřiště pro třináctkové ragby (rugby league)","terms":"ragby,rugby,rugby league,třináctka,třináctkové ragby"},"leisure/pitch/rugby_union":{"name":"Hřiště pro patnáctkové ragby (rugby union)","terms":"ragby,rugby,rugby union,patnáctka,patnáctkové ragby"},"leisure/pitch/shooting":{"name":"Střelnice","terms":"střelnice,střelba,střelit,cvičení se zbraní,cvičení ve střelbě,cvičení na terč"},"leisure/pitch/shuffleboard":{"name":"hřiště pro kuličky / posílání disků","terms":"kulečník,curling"},"leisure/pitch/skateboard":{"name":"Skatepark","terms":"skatepark,skate park,skateboard,bmx,inline,brusle"},"leisure/pitch/soccer":{"name":"Fotbalové hřiště","terms":"fotbalové hřiště,fotbal"},"leisure/pitch/softball":{"name":"Softballové hřiště","terms":"baseball,diamant,softball"},"leisure/pitch/table_soccer":{"name":"Stůl na stolní fotbal","terms":"kicker,stolní fotbal,stolní fotbálek,tecball"},"leisure/pitch/table_tennis":{"name":"Pingpongový stůl","terms":"stolní tenis,ping pong"},"leisure/pitch/tennis":{"name":"Tenisové kurty","terms":"tenisové hřiště,tenis,kurt,dvorec"},"leisure/pitch/tetherball":{"name":"Tetherballové hřiště","terms":"tether tenis,swingball"},"leisure/pitch/volleyball":{"name":"Volejbalové hřiště","terms":"volejbalové hřiště,volejbal"},"leisure/playground":{"name":"Dětské hřiště","terms":"hřiště,dětské hřiště,prolézačky,prolézačka,pískoviště,houpačky,houpačka,skluzavky,skluzavka"},"leisure/playground/indoor":{"name":"Vnitřní dětské hřiště","terms":"dětské hřiště,děti,vnitřní hřiště,hřiště uvnitř"},"leisure/resort":{"name":"Letovisko","terms":"rekreační středisko,sanatorium,lyžařské a snowboardové středisko,středisko zimních sportů"},"leisure/sauna":{"name":"Sauna","terms":"sauna,finská sauna,výheň"},"leisure/slipway":{"name":"Vodní skluz","terms":"spouštění lodi,dok,loděnice,skluz v loděnici,skluzavka"},"leisure/slipway_drivable":{"name":"Vodní skluz (pojízdný)","terms":"spuštění člunu,lodní rampa,přistání člunu"},"leisure/sports_centre":{"name":"Sportovní centrum","terms":"atletické centrum,rekreační centrum,sportovní centrum,sportovní areál"},"leisure/sports_centre/climbing":{"name":"lezecká stěna","terms":"slaňování,umělá lezecká stěna,jištění,bouldering,horolezecké zařízení,vnitřní skalní stěna,slaňovat,skalní tělocvična,lana"},"leisure/sports_centre/horse_racing":{"name":"Kurz jízdy na koni","terms":"jezdecká dostihová dráha,cval,sázení na dostihy,dostihy,dostihové,sázky,dostihová dráha,jezdecká dráha"},"leisure/sports_centre/shooting":{"name":"Areál střelnice","terms":"střelecký klub,střelnice,střelba,střelnit,cvičení se zbraní,cvičení na terč"},"leisure/sports_centre/swimming":{"name":"Areál plaveckého bazénu","terms":"bazén,plavecký bazén,koupaliště,plavání"},"leisure/sports_hall":{"name":"Tělocvična","terms":"sportovní hala,tělocvična,hřiště,hala pro sport,sport,sportoviště,kryté sportoviště,všesportovní hala"},"leisure/stadium":{"name":"Stadion","terms":"stadion,fotbal,fotbalový stadión,hřiště"},"leisure/swimming_area":{"name":"Přírodní koupaliště","terms":"potápět se,voda,vodní"},"leisure/swimming_pool":{"name":"Plavecký bazén","terms":"plovárna,koupaliště"},"leisure/track":{"name":"Závodní dráha (ne pro motorsport)","terms":"jezdit na kole,pes,chrt,kůň,koně,chrti,chrtů,závod*,dráha"},"leisure/track/cycling":{"name":"cyklistická dráha","terms":"cyklistická dráha,dráha pro cyklisty,cyklistické závody,závodní cyklistika,dráha pro jízdu na kole,závodní dráha,závodní dráha pro cyklisty,bicykl"},"leisure/track/horse_racing":{"name":"Dostihová sráha","terms":"jezdecká dostihová dráha,sázení na dostihy,koňská závodní dráha,koňská dráha,dostihová aréna,dostihy,sázky,dostihová dráha,jezdecká dráha,dráha na dostihy"},"leisure/track/running":{"name":"Běžecká dráha","terms":"atletická dráha,desetiboj,pěší běh,běh na dlouhou trať,maraton,běh na střední trať,závodní dráha,běh,sprint,dráha,chůze"},"leisure/trampoline_park":{"name":"Trampolínová hala","terms":"trampolína,trampolíny,skákací,trampolínový park,trampolínové centrum,centrum trampolín,skákací centrum"},"leisure/water_park":{"name":"Akvapark","terms":"akvapark,aquapark,vodní zábavní park,bazén,koupaliště,tobogán"},"line":{"name":"Linie","terms":"čára,cesta,trať,kanál,trasa"},"man_made":{"name":"Prvek vytvořený člověkem"},"man_made/adit":{"name":"Štola","terms":"štola,důl,vstup do dolu,důlní,horní,tunel"},"man_made/antenna":{"name":"Anténa","terms":"vysílání,telefon,buňka,komunikace,mobilní telefon,rádio,televize,přenos,tv"},"man_made/beacon":{"name":"Signalizační zařízení"},"man_made/beehive":{"name":"včelín","terms":"včelín,včelař,farma,med,opylování"},"man_made/breakwater":{"name":"Vlnolam","terms":"pobřežní hráz,násep,kameny,molo,zábrana"},"man_made/bridge":{"name":"Plocha mostu","terms":"obrys mostu,viadukt"},"man_made/bunker_silo":{"name":"Podzemní silo","terms":"siláž,sklad"},"man_made/cairn":{"name":"mohyla","terms":"skalní hromada,kamenná hromada,kamenná kopa,carn"},"man_made/carpet_hanger":{"name":"Klepadlo na koberce","terms":"věšák,klepat,stojan"},"man_made/chimney":{"name":"Komín","terms":"komín,kouř,dým"},"man_made/clearcut":{"name":"paseka","terms":"řez,les,řezivo,strom,dřevo"},"man_made/compass_rose":{"name":"Růžice kompasu","terms":"kompas,východ,sever,větrná růžice,jih,západ,větrová růžice"},"man_made/courtyard":{"name":"Nádvoří"},"man_made/crane":{"name":"Jeřáb"},"man_made/crane/gantry_crane":{"name":"Portálový mostový jeřáb","terms":"mostový jeřáb,mostní jeřáb"},"man_made/crane/portal_crane":{"name":"Portálový ramenový jeřáb","terms":"jeřáb s vyrovnáváním"},"man_made/cross":{"name":"Kříž","terms":"vrcholový kříž,kříž,velký kříž,těžký kříž,vrchol"},"man_made/cutline":{"name":"Průsek","terms":"lesní průsek,holina"},"man_made/dovecote":{"name":"Holubník","terms":"ptactvo,ptáci,holuby,holubník,holub domácí,voliéra,chov holubů"},"man_made/dyke":{"name":"protipovodňová hráz","terms":"hráz,hráza,náplavka,doraz"},"man_made/embankment":{"name":"Násyp"},"man_made/flagpole":{"name":"Vlajka","terms":"prapor,vlajka,stožár,vlajkový stožár"},"man_made/gantry":{"name":"Portály pro směrové značky","terms":"dálniční portál,rameno stožáru,držák dopravní značky,struktura dopravní značky,montáž značky,držák značky,struktura značky"},"man_made/gasometer":{"name":"Plynojem","terms":"plynojem,zásobník na plyn,kontejner na plyn"},"man_made/goods_conveyor":{"name":"Nákladní dopravník","terms":"dopravník,zboží,dopravník zboží,náklad,přeprava zboží,pásový dopravník,přepravník,přepravní pás,pás pro přepravu"},"man_made/groyne":{"name":"vlnolam","terms":"pobřeží,groyne,konstrukce,pláž,zábrana,moře,pobřežní hráz"},"man_made/lighthouse":{"name":"Maják","terms":"maják,světlo"},"man_made/manhole":{"name":"Šachta","terms":"kryt,díra,kanalizace,kanalizační,telekom"},"man_made/manhole/drain":{"name":"Kanalizační vpusť","terms":"kryt,odtok,díra,déšť,kanalizace,kanalizační,bouře"},"man_made/manhole/gas":{"name":"Šachta (plyn)","terms":"kryt,plyn,teplo,díra,služba"},"man_made/manhole/power":{"name":"Šachta (elektro)","terms":"kryt,díra,elektrický,výkon,služba"},"man_made/manhole/sewer":{"name":"Šachta (kanalizace)","terms":"kryt,odtok,díra,kanalizace,kanalizační,inženýrské sítě"},"man_made/manhole/telecom":{"name":"Šachta (telekomunikace)","terms":"telekom,kabel,kryt,telefon,díra,telekomunikace,telefonní,služba"},"man_made/manhole/water":{"name":"Šachta (vodovod)","terms":"kryt,pitná,díra,užitek,voda"},"man_made/mast":{"name":"Stožár","terms":"anténa,vysílací věž,bts,btska,mobilní vysílač,vysílač gsm,televizní vysílač,rozhlasový vysílač"},"man_made/mast/communication":{"name":"Komunikační stožár","terms":"anténa,vysílací věž,věž mobilního telefonu,mobilní věž,komunikační věž,kotvený stožár,věž mobilního oparátora,rozhlasový stožár,rozhlasová věž,televizní věž,vysílací stožár,přenosová věž,televizní vysílač"},"man_made/mast/communication/mobile_phone":{"name":"Mobilní telefonní vysílač","terms":"anténa,mobilní stožár,mobilní telefon,věž mobilního telefonu,mobilní věž,komunikační stožár,komunikační věž,kotvený stožár,mobilní telefonní věž,vysílací stožár,přenosová věž"},"man_made/mast/communication/radio":{"name":"Radiotelekomunikační antena","terms":"anténa,vysílací věž,komunikační stožár,komunikační věž,kotvený stožár,rádiový stožár,rádiová věž,vysílací stožár,přenosová věž"},"man_made/mast/communication/television":{"name":"TV vysílací stožár","terms":"anténa,vysílací věž,komunikační stožár,komunikační věž,kotvený stožár,televizní stožár,televizní věž,vysílací stožár,přenosová věž,televizní vysílač"},"man_made/mast/lighting":{"name":"Osvětlovací stožár","terms":"záplavové světlo,osvětlení,světla stadionu,osvětlení stadionu,světlomet"},"man_made/mineshaft":{"name":"Důlní šachta","terms":"jeskyně,důlní šachta,tunel,podzemí,vertikální vstup do dolu"},"man_made/monitoring_station":{"name":"Monitorovací stanice","terms":"počasí,zemětřesení,seismologie,vzduch,gps"},"man_made/obelisk":{"name":"obelisk"},"man_made/observatory":{"name":"Observatoř","terms":"astronomické,meteorologické"},"man_made/petroleum_well":{"name":"Ropný vrt","terms":"ropa,těžba,těžební,ropný,vrt"},"man_made/pier":{"name":"Molo","terms":"molo,sloupy,pilíř,vlnolam,hráz,kotva,kotvení,ukotvení,lodě,promenáda,lávka,promenáda a přístaviště,přístavní hráz"},"man_made/pier/floating":{"name":"plovoucí molo","terms":"kotviště,dok,molo,přistání,promenáda,přístaviště"},"man_made/pipeline":{"name":"Dálkové potrubí","terms":"roura,roury,transport,vodovod,ropovod,plynovod,kanál,rozvod"},"man_made/pipeline/underground":{"name":"Podzemní potrubí","terms":"ropa,zemní plyn,voda,kanalizace,kanalizační"},"man_made/planter":{"name":"Plantážník"},"man_made/pumping_station":{"name":"Čerpací stanice","terms":"přečerpávací stanice,benzín,motorest,pohonné hmoty,nafta"},"man_made/reservoir_covered":{"name":"Krytá vodní nádrž","terms":"podzemní nádrž,vodní nádrž,krytá nádrž,rezervoár"},"man_made/silo":{"name":"Silo","terms":"silo,zásobník,silážní,sýpka,špýchar,špejchar"},"man_made/storage_tank":{"name":"Zásobník","terms":"zásobník,nádrž"},"man_made/storage_tank/water":{"name":"nádrž na vodu","terms":"cisterna,vodárenská věž"},"man_made/street_cabinet":{"name":"Pouliční skříň / kaplička","terms":"kabelová televize,monitorovací box,technický box,telekomunikace,ovládání dopravního signálu"},"man_made/surveillance":{"name":"Ostraha, kamera","terms":"kamera,bezpečtnostní kamera,dohled,ostraha"},"man_made/surveillance/camera":{"name":"Sledovací kamera","terms":"automatické rozpoznávání spz,automatické rozpoznávání poznávacích značek,kamera,rozpoznávání spz,kamerový systém,stráž,monitorování,rozpoznávání poznávacích značek,zabezpečení,video,webová kamera"},"man_made/survey_point":{"name":"Triangulační bod","terms":"triangulační bod,nivelizační bod,nivelace,referenční bod"},"man_made/tailings_pond":{"name":"Odkaliště","terms":"těžba,separace,kejda"},"man_made/torii":{"name":"Torii (šintoistická brána)","terms":"japonská brána,šintoistická svatyně"},"man_made/tower":{"name":"Věž","terms":"věž,sloup,stožár,bašta,pevnost,hrad"},"man_made/tower/bell_tower":{"name":"Zvonice","terms":"zvonice,zvonový štít,campanile,kostelní věž,dzwonnica"},"man_made/tower/communication":{"name":"Komunikační věž","terms":"anténa,vysílací věž,věž mobilního telefonu,mobilní věž,komunikační stožár,kotvený stožár,věž mobilního operátora,rozhlasový stožár,rozhlasová věž,televizní věž,vysílací stožár,televizní vysílač"},"man_made/tower/cooling":{"name":"Chladící věž","terms":"chladící věž,elektrárna,je,jaderná elektrárna,chlazení"},"man_made/tower/defensive":{"name":"opevněná věž","terms":"obranná věž,hradní věž"},"man_made/tower/diving":{"name":"Skokanský můstek","terms":"skokanská věž"},"man_made/tower/minaret":{"name":"Minaret","terms":"islám,mešita,muezzin,muslim"},"man_made/tower/observation":{"name":"Vyhlídková věž","terms":"rozhledna,hasičská věž"},"man_made/tower/pagoda":{"name":"Pagoda","terms":"pagoda,věž,buddhismus,asie,stúpa"},"man_made/tunnel":{"name":"plocha tunelu","terms":"vrt,výkop,šachta,podzemní chodba,podchod"},"man_made/utility_pole":{"name":"stožár"},"man_made/video_wall":{"name":"Digitální obrazovka","terms":"obrazovka,tv,televize,displej,videostěna,led stěna"},"man_made/wastewater_plant":{"name":"Čistírna odpadních vod","terms":"čistírna,čistička,čistírna odpadních vod,čov,čovka"},"man_made/water_tap":{"name":"vodovodní kohoutek","terms":"pitná voda,vodovodní kohoutek,vodní bod,zdroj vody,vodovodní uzávěr"},"man_made/water_tower":{"name":"Vodárenská věž","terms":"vodojem,věž s vodojemem,věž,vodárenská věž"},"man_made/water_well":{"name":"Studna","terms":"studna,studánka,čerpadlo,vodní zdroj,pramen"},"man_made/water_works":{"name":"Vodárna","terms":"vodárna,úpravna vody"},"man_made/watermill":{"name":"Vodní mlýn","terms":"voda,kolo,mlýn"},"man_made/windmill":{"name":"Větrný mlýn","terms":"vítr,kolo,mlýn"},"man_made/windpump":{"name":"Větrný mlýn (pumpa)","terms":"větrný mlýn,čerpání vody,pumpování vody,čerpání ropy,pumpování ropy,poháněné větrem,pumpa poháněná větrem,větrná pumpa,čerpadlo"},"man_made/works":{"name":"Továrna","terms":"montáž,výroba,pivovar,auto,závod,továrna,zpracování,rafinerie"},"man_made/works/brewery":{"name":"Pivovar","terms":"alkohol,pivo,pivko,chlast,mošt"},"man_made/yes":{"name":"Prvek vytvořený člověkem (nespecifikovaný typ)"},"marker":{"name":"značka/označník","terms":"identifikátor,označení,deska,tyč,sloupek,cedule"},"marker/utility":{"name":"označník sítí","terms":"značka plynového potrubí,identifikátor,označení,olejová značka,značka potrubí,deska,tyč,sloupek,cedule"},"marker/utility/power":{"name":"označník energetických sítí","terms":"elektrické vedení,identifikátor,označení,deska,tyč,sloupek,síťový kabel,elektřina,cedule"},"military/bunker":{"name":"Vojenský bunkr","terms":"letectvo,armáda,základna,námořnictvo,válka,válečný"},"military/checkpoint":{"name":"vojenské kontrolní stanoviště","terms":"kontrolní stanoviště,armáda,vojenský,vojenská,brána,závora,kontrolní bod,kontrola,hranice,zátaras,vojenská kontrola,stanoviště armády"},"military/nuclear_explosion_site":{"name":"Oblast testování jaderných zbraní","terms":"atomový,atomová,výbuch,bomba,detonace,atomovka,oblast,testovací,testování"},"military/office":{"name":"Vojenská kancelář","terms":"letectvo,armáda,námořnictvo,válka,přihlásit se,rekrut"},"military/trench":{"name":"Vojenský zákop","terms":"zemljanka,požární schod,liščí nora,pěchotní zákop,válečný zákop"},"natural":{"name":"Přírodní prvek"},"natural/bare_rock":{"name":"Plochy jednolité skály","terms":"skála"},"natural/bay":{"name":"Záliv","terms":"zákrut,zátoka,ústí řeky,fjord,záliv,vtok,moře,zvuk"},"natural/beach":{"name":"Pláž","terms":"pobřeží"},"natural/cape":{"name":"Mys","terms":"záliv,pobřeží,eroze,mys,výběžek"},"natural/cave_entrance":{"name":"Vstup do jeskyně","terms":"jeskyně,vstup do jeskyně,jeskynní komplex,kaverna,kras,díra,propast,speleologie"},"natural/cliff":{"name":"Útes, sráz","terms":"útes"},"natural/coastline":{"name":"Pobřeží","terms":"pobřeží,břeh,nábřeží"},"natural/fell":{"name":"Horská louka","terms":"horská louka,louka,mýtina,paseka,pastvina"},"natural/geyser":{"name":"gejzír","terms":"vyvěrající pramen,gejzír,gizír,gujzír,horká voda,hydrogeologie,hydrotermální exploze,pára"},"natural/glacier":{"name":"Ledovec","terms":"led,ledový,sníh"},"natural/grassland":{"name":"Travnatá plocha","terms":"travnatá plocha,louka,traviny,travina,trávník"},"natural/heath":{"name":"Vřesoviště","terms":"vřes,vřesoviště,křoviny"},"natural/hot_spring":{"name":"Termální pramen","terms":"termální pramen,termální jezero,horký pramen,geotermální"},"natural/mud":{"name":"Bahno","terms":"mokřad"},"natural/peak":{"name":"Vrchol","terms":"hora,vrch,vrchol,vrcholek,kopec,kopeček,kóta,mont,mount,pik"},"natural/reef":{"name":"Útes","terms":"bariéra,korál,oceán,písek,mělčina"},"natural/ridge":{"name":"Horský hřbet","terms":"hřeben"},"natural/rock":{"name":"Připojený kámen/balvan","terms":"balvan,kámen,skála"},"natural/saddle":{"name":"Sedlo","terms":"sedlo,průsmyk,rozsedlina,horské sedlo,klíčové sedlo"},"natural/sand":{"name":"Písek","terms":"poušť"},"natural/scree":{"name":"Suťoviště","terms":"suť,suťoviště,kámen,kameny"},"natural/scrub":{"name":"Křoví","terms":"křoviny,křoví"},"natural/shingle":{"name":"oblázky","terms":"pláž,štěrk,oblázky,koryto řeky,zaoblené úlomky skal"},"natural/shrub":{"name":"Keř","terms":"keř,křoví,nízká dřevina,větve,větev,křovina,křoviny,rostlina,nízký strom,kleč"},"natural/spring":{"name":"Pramen","terms":"pramen,vodní pramen,studánka,studna"},"natural/stone":{"name":"Samostatný kámen/balvan","terms":"balvan,kámen,skála"},"natural/strait":{"name":"Úžina","terms":"kanál,průchod,pasáž"},"natural/tree":{"name":"Strom","terms":"dřevo,kmen"},"natural/tree_row":{"name":"Stromořadí","terms":"řada stromů"},"natural/tree_stump":{"name":"Pařez stromu","terms":"uříznutý strom,odstraněný strom"},"natural/valley":{"name":"Údolí","terms":"kaňon,dolina,doly,mariánské,deprese,údolíčko,propast,rokle,rokli,prohlubeň,dutina,roklina,trhlina,dol"},"natural/volcano":{"name":"Sopka","terms":"sopka,vulkán,štítová sopka,stratovulkán"},"natural/water":{"name":"Vodní plocha","terms":"voda,vodstvo,vodní"},"natural/water/basin":{"name":"Nádrž","terms":"zdrž,nádrž,voda,jezero,rybník"},"natural/water/canal":{"name":"plocha vodního kanálu"},"natural/water/lake":{"name":"Jezero","terms":"jezero,jezírko,pleso,oko,tůň"},"natural/water/moat":{"name":"vodní příkop"},"natural/water/oxbow":{"name":"Mrtvé rameno","terms":"větev,tůně,odřízlé,srp,mrtvé,pentle"},"natural/water/pond":{"name":"Rybník","terms":"jezero,mlýnský,rybníček,pleso,bazén,vodní plocha"},"natural/water/reservoir":{"name":"Přehrada","terms":"nádrž,vodní nádrž,tank,rezervoár,jímka"},"natural/water/river":{"name":"plocha řeky","terms":"výtok,větev,potok,tok,říčka,ústí,průtok,břeh řeky,potůček,teč,kanál,proud,přítok,vodní tok"},"natural/water/stream":{"name":"plocha potoku","terms":"výtok,větev,potok,opa,tok,říčka,proudit,unášet,povodeň,průtok,obleva,proudění,žlab,potůček,teč,kanál,rákosí,záplava,stříkat,nával,slapy,bystřina,přítok,vodní tok"},"natural/water/wastewater":{"name":"nádrž na odpadní vodu","terms":"exkrementy,sračky,splaškové vody,odpadní vody,usazovací nádrž,umyvadlo"},"natural/wetland":{"name":"Mokřad","terms":"mokřad,mokřina,rašeliniště,slatiniště,slatina,bažina,slanisko,slať,slatě,mangrovy"},"natural/wetland/bog":{"name":"Vrchoviště"},"natural/wetland/fen":{"name":"Slatiniště","terms":"podzemní voda"},"natural/wetland/mangrove":{"name":"Mangovník"},"natural/wetland/marsh":{"name":"Marše"},"natural/wetland/reedbed":{"name":"Rákosina","terms":"rákos,sitina,orobinec"},"natural/wetland/saltmarsh":{"name":"Slanisko","terms":"slaniska,příliv"},"natural/wetland/string_bog":{"name":"Rašeliniště","terms":"rašelina,usazeniny"},"natural/wetland/swamp":{"name":"Močál","terms":"podmáčené"},"natural/wetland/tidalflat":{"name":"Wattové pobřeží","terms":"přílivový"},"natural/wetland/wet_meadow":{"name":"Mokrá louka"},"natural/wood":{"name":"Přírodní les","terms":"bor,les,lesy,tajga,strom,stromy,háje,háj"},"network/type/node_network-DE-NL-BE-LU":{"name":"Bod rekreační sítě","terms":"síť uzlu,rcn,rwn"},"noexit/yes":{"name":"Konec cesty","terms":"slepá ulice,konec ulice,konec silnice,slepá silnice"},"office":{"name":"Kanceláře","terms":"kancelář,kancelářský,úřad,úřadovna,administrativa,office,sídlo"},"office/accountant":{"name":"Účetnictví","terms":"účetnictví,účetní firma,účetní"},"office/administrative":{"name":"Místní úřad"},"office/adoption_agency":{"name":"Adopční agentura","terms":"děti"},"office/advertising_agency":{"name":"Reklamní agentura","terms":"reklama,reklamní agentura,agentura na reklamy,inzerát,marketing"},"office/architect":{"name":"Kancelář architekta","terms":"architekt,stavební,architektonické studio"},"office/association":{"name":"Kancelář neziskové organizace","terms":"sdružení,nezisková,neziskovka,organizace,společnost"},"office/bail_bond_agent-US-PH":{"name":"Zastavárna pro získání kauce","terms":"obchodník kauce,muž na kauci,ručitel na kauci,poskytovatel s kaucemi"},"office/charity":{"name":"Kancelář charity","terms":"charitativní organizace"},"office/company":{"name":"Kancelář korporace","terms":"korporace,kancelářský park"},"office/consulting":{"name":"Poradenská kancelář","terms":"kancelář poradenské firmy"},"office/coworking":{"name":"Místo pro spolupráci","terms":"spolupráce,kancelář"},"office/diplomatic":{"name":"diplomatická kancelář","terms":"konzulát,diplomatická mise,velvyslanectví,zahraniční mise,vysoká komise,legace,styčná mise,stálá mise"},"office/diplomatic/consulate":{"name":"Konzulát","terms":"konzulární pošta,pasy,víza"},"office/diplomatic/embassy":{"name":"Ambasáda","terms":"velvyslanectví,vyslanectví,ambasáda,zastupitelství"},"office/diplomatic/liaison":{"name":"kancelář jiného státu","terms":"diplomatická mise"},"office/educational_institution":{"name":"Vzdělávací instituce","terms":"škola,kancelář,vzdělání,výuka,univerzita"},"office/employment_agency":{"name":"Úřad práce","terms":"úřad práce,pracovní úřad,zaměstnání,nezaměstnaní,nabídka práce"},"office/energy_supplier":{"name":"Kancelář dodavatele elektřiny","terms":"elektřina,energetická společnost,energetická služba,plyn"},"office/estate_agent":{"name":"Realitní kancelář","terms":"realitní kancelář,realitka,nemovitost"},"office/financial":{"name":"Finanční úřad","terms":"finanční úřad,daňový úřad,berní úřad,celní správa"},"office/financial_advisor":{"name":"finanční poradce","terms":"401k,dědictví,úspory,zásoby,odchod do důchodu,správa majetku"},"office/forestry":{"name":"Kancelář lesní správy","terms":"les,hajný"},"office/foundation":{"name":"Kancelář nadace","terms":"nezisková"},"office/government":{"name":"Státní úřad","terms":"státní úřad,státní instituce,ministerstvo"},"office/government/prosecutor":{"name":"státní zastupitelství","terms":"státní zástupce,okresní státní zástupce,státní zastupitelství"},"office/government/register_office":{"name":"Matriční úřad","terms":"matriční úřad,matrika,registr,rejstřík,obecní úřad"},"office/government/tax":{"name":"Finanční úřad","terms":"finanční úřady,finance,finančák"},"office/graphic_design":{"name":"Kancelář grafického designu","terms":"design,umění,ilustrovat,technologie,vizuální"},"office/guide":{"name":"Kancelář turistického průvodce","terms":"potápěčský průvodce,horský průvodce,turistický průvodce"},"office/insurance":{"name":"Pojišťovna","terms":"pojišťovna,pojištění,zajišťovna"},"office/it":{"name":"Kancelář informačních technologií","terms":"počítač,informační,software,technologie"},"office/lawyer":{"name":"Právní kancelář","terms":"právní kancelář,právník,právní zástupce,advokátní kancelář,advokát"},"office/lawyer/notary":{"name":"Kancelář notáře"},"office/moving_company":{"name":"Kancelář stěhovací služby","terms":"stěhování,stěhováci"},"office/newspaper":{"name":"Novinářská redakce","terms":"redakce"},"office/ngo":{"name":"Nezisková organizace","terms":"nezisková organizace,neziskovka,nevládní organizace"},"office/notary":{"name":"Notářství","terms":"úředník,listiny,pozůstalost,podpis,závěti"},"office/physician":{"name":"Praktický lékař"},"office/political_party":{"name":"Kancelář politické strany","terms":"aktivista,kandidát,volba"},"office/private_investigator":{"name":"Soukromá detektivní kancelář","terms":"pi,soukromé očko,soukromý detektiv"},"office/property_management":{"name":"Správa nemovitostí / Leasingová kancelář","terms":"pronájem nemovitosti"},"office/quango":{"name":"kancelář kvaziautonomní nevládní organizace","terms":"nevládní organizace,nevládní,nevládnoucí,organizace,organizační,quasi autonomní,quasiautonomní"},"office/religion":{"name":"Náboženská kancelář","terms":"kněz,farář"},"office/research":{"name":"Výzkumný ústav","terms":"výzkumný ústav,akademie věd,akademie,ústav,vědecký ústav,vědecká instituce,věda,výzkum,vývoj,vědecké pracoviště,výzkumné pracoviště"},"office/security":{"name":"kancelář hlídače","terms":"security,hlídač,ochranka,noční hlídač"},"office/surveyor":{"name":"Zeměměřický úřad","terms":"zeměměřičství"},"office/tax_advisor":{"name":"Kancelář daňového poradce","terms":"daně,daňový poradce"},"office/telecommunication":{"name":"Telekomunikační společnost","terms":"telekomunikační společnost,telekomunikace,spoje,mobilní operátor,mobil,radiotelekomunikace"},"office/therapist":{"name":"Terapeutická kancelář","terms":"terapie"},"office/travel_agent":{"name":"Cestovní kancelář"},"office/union":{"name":"Úřad práce","terms":"obchodní unie"},"office/water_utility":{"name":"Vodohospodářská kancelář","terms":"vodohospodářství,služba"},"office/yes":{"name":"Kancelář (nespecifikovaný typ)"},"pipeline":{"name":"Prvek potrubní dopravy"},"pipeline/substation":{"name":"Rozvodna potrubního vedení","terms":"potrubní rozvodna,rozvodna potrubní dopravy,potrubní doprava,potrubní vedení,potrubní"},"pipeline/valve":{"name":"Potrubní ventil","terms":"ropa,zemní plyn,voda,kanalizace,kanalizační"},"piste/downhill":{"name":"sjezdová dráha","terms":"alpské lyžování,sjezdovka,lyžařský kopec,lyžování,snowboarding"},"piste/downhill/halfpipe":{"name":"sjezdová „U“ rampa","terms":"lyže,sjezd,skokanský můstek,skokanský,snowboard,sjezdovka"},"piste/hike":{"name":"cesta pro zimní turistiku / sněžnice","terms":"túra,nordic walking,sjezdovka,přehlídka bot,sněžnice,výlety na sněžnicích"},"piste/ice_skate":{"name":"bruslařská dráha (led)","terms":"kluziště,ledová dráha,bruslení,sjezdovka,brusle"},"piste/nordic":{"name":"Běžkařská stezka","terms":"běžky,severské lyžování,sjezdovka,skate lyžování,lyžování,xc"},"piste/piste":{"name":"sjezdovka","terms":"lyže,nordic,běh na lyžích,sjezd,alpský,snowboard,skitour,lyžařská turistika,sáňky,sáně,saně,sáňkování,ski-joring,husky,kůň,zimní turistika,sněžnice,výlety na sněžnicích,led,bruslení"},"piste/skitour":{"name":"Lyžařská turistická stezka","terms":"lyže,lyžařský zájezd,běžky,lyžařské túry,sjezdovka"},"piste/sled":{"name":"sáňkařská dráha","terms":"bobová dráha,sáňky,sjezdovka,kostra,sáně,saně,tobogán"},"piste/sleigh":{"name":"zimní dráha pro spřežení","terms":"psí spřežení,husky,kůň,sjezdovka,sáně,saně,ski-joring,skijoring"},"place":{"name":"Místo"},"place/city":{"name":"Velkoměsto","terms":"velkoměsto,město,city"},"place/city_block":{"name":"Městský blok","terms":"městský blok.blok,blok domů,pojmenování bloku domů,název bloku,jméno bloku,blok mezi ulicemi"},"place/farm":{"name":"Zemědělská usedlost"},"place/hamlet":{"name":"Osada","terms":"osada,vesnička,vesnice,obec,lhota"},"place/island":{"name":"Ostrov","terms":"ostrov,ostrůvek,souostroví,archipel,atol,útes"},"place/islet":{"name":"Ostrůvek","terms":"souostroví,atol,bar,cay,ostrov,klíč,útes"},"place/isolated_dwelling":{"name":"Samota","terms":"samota,vesnička,obec"},"place/locality":{"name":"Neobydlené místo","terms":"neobydlené místo,místo,lokalita"},"place/neighbourhood":{"name":"Část obce","terms":"část obce,část města,sousedství"},"place/plot":{"name":"Parcela","terms":"trakt,půda,pozemek,parcelní"},"place/quarter":{"name":"Městská čtvrť","terms":"samosprávné město,samosprávný městský obvod,městská čtvrť"},"place/square":{"name":"Náměstí","terms":"náměstí,náměstíčko,čtverec,prostor"},"place/suburb":{"name":"Čtvrť / předměstí","terms":"samosprávné město,samosprávný městský obvod,městská čtvrť"},"place/town":{"name":"Město","terms":"město,městys,městečko,velkoměsto,obec"},"place/village":{"name":"Vesnice","terms":"vesnice,obec,osada,malá obec,venkov,malá vesnice,víska,dědina,sídlo,sídlo venkovského typu,venkovská obec"},"playground":{"name":"dětské hřiště"},"playground/activitypanel":{"name":"Panel herních aktivit"},"playground/aerialrotator":{"name":"Závěsný kolotoč"},"playground/balancebeam":{"name":"Kladina","terms":"kladina,balanc,rovnováha,kláda,zavěšená kláda,dětské hřiště,kláda ve vzduchu"},"playground/basketrotator":{"name":"Kolotoč (koš)","terms":"košík,kolotoč,koš,košíkový kolotoč,koš okolo tyče"},"playground/basketswing":{"name":"Houpačka (koš)","terms":"košík,houpačka,koš,košíková houpačka,houpačka s košem,houpací koš"},"playground/bridge":{"name":"Most na hraní"},"playground/climbingframe":{"name":"Prolézačka","terms":"prolézačka,prolejzačka,žebřík,síť,šplhání,pavučina,opičí dráha,prolízačka,lanová hrací zařízení,lanový herní prvek,lanové parkury,pyramida z lanové sítě,šplhací,děti,dětské hřiště,zařízení dětského hřiště,lanové sestavy,lanové prvky"},"playground/climbingwall":{"name":"Hrací lezecká stěna"},"playground/cushion":{"name":"skákací polštář"},"playground/funnel_ball":{"name":"Trychtýř na funnel ball"},"playground/hopscotch":{"name":"Skákací panák"},"playground/horizontal_bar":{"name":"hrazda","terms":"závěsná hrazda,vysoká hrazda,visutá hrazda"},"playground/map":{"name":"Malovaná mapa hřiště"},"playground/playhouse":{"name":"Domeček","terms":"dětské hřiště,děti,zařízení dětského hřiště,domeček,dětský domek,domek na hraní,hrací domeček"},"playground/roundabout":{"name":"kolotoč","terms":"točidlo"},"playground/sandpit":{"name":"Pískoviště","terms":"pískoviště,písek,děti,hřiště,bábovičky"},"playground/seesaw":{"name":"Houpačka"},"playground/sledding":{"name":"Kopec na sáňkování"},"playground/slide":{"name":"Skluzavka"},"playground/splash_pad":{"name":"Stříkací bazének","terms":"podložka,stříkání,voda"},"playground/springy":{"name":"Pružinová houpačka","terms":"houpačka,pružina,houpačka na pružině,koník na pružině,hřiště,děti,dětské hřiště,herní prvek"},"playground/structure":{"name":"prolézačka / větší objekt","terms":"prolézačky"},"playground/swing":{"name":"Houpačka"},"playground/teenshelter":{"name":"Přístřešek pro dospívající"},"playground/tetherball":{"name":"Tyč na tetherball"},"playground/trampoline":{"name":"Trampolína"},"playground/tunnel_tube":{"name":"Hrací tunel"},"playground/water":{"name":"Hrací vodní pumpa/šroub"},"playground/zipwire":{"name":"Dětská lanovka","terms":"lanový skluz,lanový sjezd,sjezd na laně,hřiště,dětský sjezd na laně"},"point":{"name":"Uzel","terms":"uzel,bod,vrchol,tečka,puntík"},"police/checkpoint":{"name":"Policejní kontrolní stanoviště","terms":"kontrolní bod,hlídka,zátaras,namátková kontrola,zastávka"},"polling_station":{"name":"dočasná volební místnost/stanice","terms":"volební urna,odložení hlasovacích lístků,demokracie,volby,volební místnost,hlasování,volební kabina,hlasovací stroj"},"power":{"name":"Energetický prvek"},"power/cable":{"name":"elektrický kabel"},"power/cable/underground":{"name":"Elektrický kabel pod zemí"},"power/catenary_mast":{"name":"Sloup trolejového vedení","terms":"trolejový sloup,trolejový stožár,trolejové vedení"},"power/generator":{"name":"Generátor","terms":"generátor,elektrický generátor,elektrárna,zdroj proudu"},"power/generator/method/photovoltaic":{"name":"Solární kolektor","terms":"fotovoltaický modul,pv modul,sluneční světlo"},"power/generator/method/photovoltaic/building/roof":{"name":"Kryt solárního panelu","terms":"fotovoltaický přístřešek,solární markýza,solární přístřešek na auto,solární přístřešek"},"power/generator/method/photovoltaic/location/roof":{"name":"Střešní solární panel","terms":"domácí solární,střešní fotovoltaický modul,pv modul"},"power/generator/source/hydro":{"name":"Vodní turbína","terms":"přehrada,generátor,francisova turbína,vodní elektřina,kaplanova turbína,peltonova turbína"},"power/generator/source/nuclear":{"name":"Jaderný reaktor","terms":"štěpení,generátor,jaderný,nukleární,reaktor"},"power/generator/source/wind":{"name":"Větrná turbína","terms":"generátor,turbína,větrný mlýn,vítr"},"power/line":{"name":"Elektrické vedení vyššího napětí (nad 50 kV)","terms":"elektrické vedení,velmi vysoké napětí,zvláště vysoké napětí,přenosová soustava,energetika"},"power/minor_line":{"name":"Elektrické vedení nižšího napětí (pod 50 kV)","terms":"elektrické vedení,nízké napětí,vysoké napětí,přenosová soustava,elektrický kabel,energetika"},"power/plant":{"name":"Pozemek elektrárny","terms":"uhlí,plyn,generátor,vodní,nukleární,jaderná,elektrárna,tepelná"},"power/plant/source/coal":{"name":"uhelná elektrárna","terms":"uhlík,spalování,fosilní paliva,uhlí,elektrárna"},"power/plant/source/gas":{"name":"plynová elektrárna","terms":"uhlík,spalování,fosilní paliva,plyn,elektrárna,zemní plyn"},"power/plant/source/hydro":{"name":"vodní elektrárna","terms":"přehrada,elektrárna,průtok,příliv,vodní turbína"},"power/plant/source/method/photovoltaic":{"name":"Fotovoltaická elektrárna","terms":"fotovoltaická elektrárna,solární panely,solární park,solární zařízení v užitkovém měřítku"},"power/plant/source/nuclear":{"name":"jaderná elektrárna","terms":"atomová,štěpná,elektrárna,jaderný reaktor"},"power/plant/source/oil":{"name":"Ropná elektrárna","terms":"elektrárna,ropa,neobnovitelné zdroje,fosilní palivo,zdroj elektřiny,spalování ropy,ropná elektrárna"},"power/plant/source/solar":{"name":"Solární elektrárna","terms":"solární elektrárna,solární,energie,solární elektřina,elektřina"},"power/plant/source/waste":{"name":"Spalovna odpadu vyrábějící elektřinu","terms":"spalovna,spalovna odpadu,zevo,zařízení na energetické využití odpadu,zdroj elektřiny,elektrárna,spalování odpadu"},"power/plant/source/wind":{"name":"větrná elektrárna","terms":"pobřežní vítr,větrný park,větrná elektrárna,větrná elektrárenská,větrné turbíny,větrné mlýny"},"power/pole":{"name":"Sloup elektrického vedení","terms":"sloup el.vedení,elektrický sloup,sloup elektrického vedení,sloupový stožár"},"power/portal":{"name":"Portál elektrického vedení","terms":"elektrický portál,portálový stožár,stožár s háčkovou strukturou"},"power/substation":{"name":"Transformátorová stanice","terms":"transformátorová stanice,transformátor,transformační stanice,napětí"},"power/switch":{"name":"Odpojovač","terms":"spínač,vypínač"},"power/tower":{"name":"Elektrický stožár","terms":"sloup vysokého napětí,vysoké napětí"},"power/transformer":{"name":"Transformátor","terms":"transformátor,transformátorová stanice,elektrická stanice,adaptér"},"public_transport/platform":{"name":"nástupní hrana","terms":"nástupní hrana,nástupiště,mhd,hromadná doprava,veřejná doprava,městská hromadná doprava,místo pro čekání,autobus,bus,tram,zastávka,prostor zastávky"},"public_transport/platform/aerialway":{"name":"nástupní hrana lanové dráhy","terms":"letecká dráha,lanovka,plošina,veřejná přeprava,veřejná doprava,přeprava,doprava"},"public_transport/platform/aerialway_point":{"name":"stanice lanové dráhy"},"public_transport/platform/bus":{"name":"Autobusové nástupiště","terms":"autobusová zastávka,nástupiště autobusu,autobusové nástupiště,místo pro čekání na autobus,autobus,bus,mhd,vhd,hd,hromadná doprava,veřejná doprava,městská hromadná doprava,nástupní hrana"},"public_transport/platform/bus_point":{"name":"Autobusová zastávka","terms":"autobusová zastávka,nástupiště autobusu,autobusové nástupiště,místo pro čekání na autobus,autobus,bus,mhd,vhd,hd,hromadná doprava,veřejná doprava,městská hromadná doprava,nástupiště"},"public_transport/platform/bus_tram_point":{"name":"Zastávka tramvaje a autobusu","terms":"tram,tramvaj,šalina,bus,autobus,mhd,hromadná doprava,veřejná doprava,vhd,veřejná hromadná doprava,zastávka,stanoviště,nástupiště,zastavení,zastávka tramvaje a autobusu,tramvajová a autobusová zastávka"},"public_transport/platform/ferry":{"name":"nástupní hrana přívozu","terms":"loď,dok,trajekt,molo,plošina,veřejná přeprava,veřejná doprava,přeprava,doprava"},"public_transport/platform/ferry_point":{"name":"stanice přívozu"},"public_transport/platform/light_rail":{"name":"nástupní hrana lehké dráhy","terms":"elektrický,lehká kolej,nástupiště,veřejná přeprava,veřejná doprava,kolejnice,dráha,tramvaj,trolejbus,přeprava,doprava"},"public_transport/platform/light_rail_point":{"name":"stanice lehké dráhy"},"public_transport/platform/monorail":{"name":"nástupní hrana monorailu","terms":"jednokolejka,nástupiště,veřejná přeprava,veřejná doprava,železnice,přeprava,doprava"},"public_transport/platform/monorail_point":{"name":"stanice monorailu"},"public_transport/platform/subway":{"name":"Nástupiště metra","terms":"metro,nástupiště,veřejná přeprava,veřejná doprava,železnice,dráha,přeprava,doprava,podzemí"},"public_transport/platform/subway_point":{"name":"Stanice metra / nástupiště"},"public_transport/platform/train":{"name":"Železniční nástupiště","terms":"železniční zastávka,vlaková zastávka,nástupiště vlaku,nástupiště železnice,železniční stanice,vlakové nástupiště,železniční nástupiště,místo pro čekání na vlak,železnice,mhd,vhd,hd,hromadná doprava,veřejná doprava,městská hromadná doprava,nástupní hrana,peron,perón,nástup do vlaku"},"public_transport/platform/train_point":{"name":"Vlaková zastávka/nástupiště"},"public_transport/platform/tram":{"name":"Tramvajové nástupiště","terms":"elektrický,lehká železnice,nástupiště,veřejná přeprava,veřejná doprava,kolejnice,tramvaj,dráha,trolejbus,přeprava,doprava"},"public_transport/platform/tram_point":{"name":"Tramvajová zastávka/nástupiště","terms":"tramvajová zastávka,nástupiště tramvaje,tramvajové nástupiště,místo pro čekání na atramvaj,tramvaj,tram,mhd,vhd,hd,hromadná doprava,veřejná doprava,městská hromadná doprava,nástupiště,nástupní hrana"},"public_transport/platform/trolleybus":{"name":"Trolejbusové nástupiště","terms":"nástupiště trolejbusu,trolejbusové nástupiště,místo pro čekání na trolejbus,trolejbus,trolley,bus,trolej bus,mhd,vhd,hd,hromadná doprava,veřejná doprava,městská hromadná doprava,nástupní hrana"},"public_transport/platform/trolleybus_point":{"name":"Trolejbusová zastávka","terms":"trolejbusová zastávka,trolejbus,trolley,bus,trolej bus,mhd,vhd,hd,hromadná doprava,veřejná doprava,městská hromadná doprava,zastávka mhd zastávka,zastávka hromadné dopravy,zastávka trolejbusu"},"public_transport/platform_point":{"name":"Zastávka veřejné dopravy","terms":"nástupiště,mhd,hromadná doprava,veřejná doprava,městská hromadná doprava,místo pro čekání,autobus,bus,tram,zastávka,prostor zastávky"},"public_transport/station":{"name":"Stanice veřejné dopravy","terms":"stanice,železniční stanice,vlaková stanice,stanice hromadné dopravy,nádraží,autobusové nádraží,mhd,hromadná doprava,veřejná doprava,nástupiště"},"public_transport/station_aerialway":{"name":"Stanice lanovky","terms":"letecká dráha,lanovka,veřejná přeprava,veřejná doprava,nádraží,terminál,přeprava,doprava"},"public_transport/station_bus":{"name":"Autobusové nádraží / terminál","terms":"autobus,veřejná přeprava,veřejná doprava,nádraží,terminál,přeprava,doprava"},"public_transport/station_ferry":{"name":"Terminál přívozu / trajektu","terms":"terminál,přístav,přístaviště,loď,trajekt,přívoz,lodní,stanice"},"public_transport/station_light_rail":{"name":"Stanice lehké dráhy","terms":"elektrický,lehká železnice,veřejná přeprava,veřejná doprava,železnice,nádraží,terminál,dráha,tramvaj,trolejbus,přeprava,doprava"},"public_transport/station_monorail":{"name":"Stanice jednokolejky","terms":"jednokolejka,veřejná přeprava,veřejná doprava,železnice,nádraží,terminál,přeprava,doprava"},"public_transport/station_subway":{"name":"Stanice metra","terms":"metro,veřejná přeprava,veřejná doprava,železnice,stanice,podzemní vlak,terminál,dráha,přeprava,doprava,podzemka"},"public_transport/station_train":{"name":"Železniční stanice","terms":"železniční stanice,železnice,vhd,hd,hromadná doprava,veřejná doprava,nádraží,vlak,vlaková stanice,vlakové nádraží,železniční nádraží"},"public_transport/station_train_halt":{"name":"Železniční zastávka","terms":"vlaková zastávka,nástupiště vlaku,nástupiště železnice,železniční stanice,vlakové nástupiště,vlakové nádraží,železniční nástupiště,místo pro čekání na vlak,železnice,mhd,vhd,hd,hromadná doprava,veřejná doprava,městská hromadná doprava,zastávka na znamení,malá stanice"},"public_transport/station_tram":{"name":"Tramvajová stanice","terms":"elektrický,lehká železnice,veřejná přeprava,veřejná doprava,železnice,nádraží,šalina,terminál,dráha,tramvaj,trolejbus,přeprava,doprava"},"public_transport/station_trolleybus":{"name":"Trolejbusová stanice/terminál","terms":"trolejbusová stanice,trolejbusový terminál,terminál,trolejbus,trolley,bus,trolej bus,mhd,vhd,hd,hromadná doprava,veřejná doprava,městská hromadná doprava,stanice mhd,mhd terminál,stanice,terminál hromadné dopravy,stanice trolejbusu,trolejbusové nádraží"},"public_transport/stop_area":{"name":"Oblast zastávky","terms":"plocha zastávky,plocha železniční stanice,plocha vlakové stanice,plocha stanice hromadné dopravy,oblast stanice,oblast zastávkyí,mhd,hromadná doprava,veřejná doprava,oblast zastávky"},"public_transport/stop_position":{"name":"Místo zastavení veřejné dopravy","terms":"místo zastavení hromadné dopravy,metro,bus,trolejbus,tramvaj,tram,autobus,lanovka,lanová dráha,podzemní dráha,podzemka,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,stanice,pozice zastavení vlaku,zastavení autobusu,zastavení linky"},"public_transport/stop_position_aerialway":{"name":"Místo zastavení lanovky","terms":"místo zastavení lanovky,místo zastavení lanové dráhy,místo zastavení kabiny,lanovka,lanová dráha,mhd,městská hromadná doprava,stanice,pozice zastavení lanové dráhy,zastavení kabiny lanovky"},"public_transport/stop_position_bus":{"name":"Místo zastavení autobusu","terms":"místo zastavení autobusu,místo zastavení busu,autobus,bus,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,zastávka,pozice zastavení autobusu,zastavení busu"},"public_transport/stop_position_ferry":{"name":"Místo zastavení trajektu/přívozu","terms":"místo zastavení trajektu,trajekt,přívoz,stanice,pozice zastavení trajektu,pozice přistavení trajektu,pozice zastavení přívozu,zastavení lodě,místo pro nalodění,místo pro vylodění"},"public_transport/stop_position_light_rail":{"name":"Místo zastavení lehké dráhy","terms":"místo zastavení lehké dráhy,lehká dráha,lehké metro,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,stanice,pozice zastavení lehké dráhy,zastavení vlaku lehké dráhy"},"public_transport/stop_position_monorail":{"name":"Místo zastavení jednokolejky","terms":"místo zastavení monorailu,místo zastavení jednokolejky,místo zastavení vlaku monorailu,monorail,jednokolejná dráha,jednokolejka,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,stanice,místo zastavení nadzemky,pozice zastavení jednokolejky,zastavení vlaku monorailu"},"public_transport/stop_position_subway":{"name":"Místo zastavení metra","terms":"místo zastavení metra,metro,podzemní dráha,podzemka,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,stanice,pozice zastavení metra,zastavení vlaku metra"},"public_transport/stop_position_train":{"name":"Místo zastavení vlaku","terms":"místo zastavení vlaku,železniční stanice,zastavení vlaku,vlak,kolej"},"public_transport/stop_position_tram":{"name":"Místo zastavení tramvaje","terms":"místo zastavení tramvaje,tram,tramvaj,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,zastávka,pozice zastavení tramvaje,místo zastavení šaliny,šalina,šmirgl,místo zastavení šmirglu"},"public_transport/stop_position_trolleybus":{"name":"Místo zastavení trolejbusu","terms":"místo zastavení trolejbusu,trol,trolejbus,trolley,trolej bus,mhd,vhd,hd,hromadná doprava,městská hromadná doprava,zastávka,pozice zastavení trolejbusu"},"railway":{"name":"Železniční prvek"},"railway/abandoned":{"name":"Opuštěná nebo zrušená železnice","terms":"opuštěná železnice,opuštěná trať,nepoužívaná"},"railway/buffer_stop":{"name":"Zarážedlo","terms":"stop,stát,zaražení"},"railway/construction":{"name":"Železnice ve výstavbě"},"railway/crossing":{"name":"Přechod přes železnici","terms":"přejezd,přechod,železnice,železniční přejezd,železniční přechod,chodník,pěší přechod,pěší přejezd"},"railway/derail":{"name":"Výkolejka","terms":"výkolejník"},"railway/disused":{"name":"Nepoužívaná železnice","terms":"nepoužívaná železnice,nepoužívaná železniční dráha"},"railway/funicular":{"name":"Kolej lanové dráhy","terms":"lanovka,kabelová dráha,ozubnicová dráha,ozubnice,horská,lanová dráha,horská železnice,skalní dráha"},"railway/halt":{"name":"Železniční zastávka"},"railway/level_crossing":{"name":"Železniční přejezd","terms":"přejezd,přechod,železnice,železniční přejezd,železniční přechod,křížení se železnicí,závory"},"railway/light_rail":{"name":"Kolej lehké dráhy","terms":"tramvaj,lehká železnice,lehká dráha,tram,šalina,lehké metro"},"railway/milestone":{"name":"Železniční kilometrovník","terms":"milník,označení"},"railway/miniature":{"name":"Kolej miniaturní železnice","terms":"miniaturní vlak,vláček,malý vlak,vláček pro děti,atrakce,železniční atrakce,okruh vláčku,vláčky"},"railway/monorail":{"name":"Kolej monorailu","terms":"jednokolejka,monorail,jednokolejná trať,trať monorailu,dráha monorailu,dráha jednokolejky,jedna kolej,vlak,dráha,mhd,veřejná doprava,železnice"},"railway/monorail/hanging":{"name":"Kolej zavěšeného monorailu","terms":"zavěšený monorail,zavěšená dráha,monorail,jednokolejka"},"railway/narrow_gauge":{"name":"Kolej úzkorozchodné dráhy","terms":"úzkorozchodná dráha,úzkokolejná dráha,úzkokolejka,úzkokolejná trať,železnice,vlak,dráha,hromadná doprava,železniční,úzkorozchodka,jhmd,úzká kolej,místní dráha,vlečka"},"railway/platform":{"name":"Železniční nástupiště"},"railway/preserved":{"name":"Historická železnice","terms":"zachovalá železnice,železnice,dráha,železniční dráha,turistická dráha,turistická železnice,historická dráha"},"railway/rail":{"name":"Kolej železnice","terms":"koleje,železnice,vlak,trať,kolej,železniční trať,dráha,železniční dráha,železniční koridor,konvenční železnice"},"railway/rail/highspeed":{"name":"Kolej vysokorychlostní železnice","terms":"vrt,vysokorychlostní železnice,vysokorychlostní trať,vysoko rychlostní,vysoko-rychlostní,rychlodráha,rychlá železnice,vlak,rychlostní trať,železniční trať,kolej"},"railway/railway_crossing":{"name":"Kolejové křížení","terms":"kžížení železnice,úrovňové křížení,křížení tratí,křížení kolejí,křížící se koleje"},"railway/signal":{"name":"Proměnné návěstidlo","terms":"semafor,světlo"},"railway/station":{"name":"Železniční stanice"},"railway/subway":{"name":"Kolej metra","terms":"metro,podzemní dráha,mhd,metropolitní dráha,hromadná doprava,městská hromadná doprava,kolej,železnice,systém metra,městská dráha,vlak"},"railway/subway_entrance":{"name":"Vstup do metra","terms":"vstup do metra,vchod do metra,vlez do metra,vestibul,metro"},"railway/switch":{"name":"Výhybka","terms":"spínač,body"},"railway/train_wash":{"name":"Myčka vlaků","terms":"mycí linka pro vlak,vlaková mycí linka,myčka vlaků,železniční myčka,železniční mycí linka,mytí vlaků,myčka vagonů"},"railway/tram":{"name":"Tramvajová kolej","terms":"tramvaj,tranvaj,šalina,šmirgl,tramvajka,elektrika,električka,tram,kolej,železnice,městská železnice,tramvajová trať,tramvajová dráha,kolej pro tramvaj,tramvaje"},"railway/tram_crossing":{"name":"Přechod přes tramvajovou trať","terms":"přechod,přejezd,tramvaj,přechod přes koleje,přejezd přes koleje,tramvajová trať,úrovňové křížení,křížení tratě,tramvajový přejezd,tramvajový přechod"},"railway/tram_level_crossing":{"name":"Přejezd přes tramvajovou trať","terms":"přejezd,tramvaj,přejezd přes koleje,tramvajová trať,úrovňové křížení,křížení tratě,tramvajový přejezd"},"railway/tram_stop":{"name":"Zastávka tramvaje"},"railway/yard":{"name":"seřaďovací nádraží","terms":"zastávka nákladního auta,nákladní vlakové nádraží,nákladní nádraží,kolejiště,nádraží"},"relation":{"name":"Relace","terms":"relace,vztah,seznam,objekt"},"route/ferry":{"name":"Trasa trajektu","terms":"trajekt,trasa,linka,loď,trasa trajektu"},"seamark":{"name":"mořská bóje"},"seamark/beacon_isolated_danger":{"name":"Maják značící nebezpečí","terms":"maják izolované nebezpečí,izolované nebezpečí maják,iala"},"seamark/beacon_lateral":{"name":"maják v kanálu","terms":"boční maják,maják boční,cevni,značka kanálu,iala,boční značka"},"seamark/buoy_lateral":{"name":"bóje v kanálu","terms":"boční bóje,bóje boční,cevni,značka kanálu,iala,boční značka"},"seamark/buoy_lateral/green":{"name":"Zelená bóje","terms":"boční bóje,bóje boční,cevni,značka kanálu,iala,boční značka"},"seamark/buoy_lateral/red":{"name":"Červená bóje","terms":"boční bóje,bóje boční,cevni,značka kanálu,iala,boční značka"},"seamark/mooring":{"name":"Kotviště","terms":"delfín,hromada,patník,bóje,pošta"},"shop":{"name":"Obchod","terms":"obchod,prodej,nákup,stánek,market,obchodní,nákupní"},"shop/agrarian":{"name":"Farmářská prodejna","terms":"zemědělské vstupy,zemědělské stroje,semena,pesticidy,hnojiva,zemědělské nástroje"},"shop/alcohol":{"name":"Prodejna alkoholu","terms":"alkohol,alkoholický"},"shop/anime":{"name":"obchod s Anime / Manga","terms":"manga,japonské,cosplay,figurína,dakimakura"},"shop/antiques":{"name":"Starožitnictví"},"shop/appliance":{"name":"Prodejna spotřební elektroniky","terms":"klimatizace,spotřebič,myčka,sušička,mraznička,lednička,gril,kuchyně,trouba,lednice,sporák,pračka,prací stroj"},"shop/art":{"name":"Obchod s uměním","terms":"obchod s uměním,umění,galerie,umělecká galerie,prodejní galerie"},"shop/baby_goods":{"name":"Potřeby pro děti","terms":"děti,dítě,miminko,mimino,plína,plíny,plínka,plínky,kojenecké potřeby,dětská výživa"},"shop/bag":{"name":"Obchod se zavazadly","terms":"zavazadlo,zavazadla,kufr,kufry,batoh,batohy,brašna,brašny,brašnář,cestovní"},"shop/bakery":{"name":"Pekařství","terms":"chleba,dorty,rohlíky"},"shop/bathroom_furnishing":{"name":"Vybavení koupelen","terms":"koupelna,koupelny,vybavení koupelen"},"shop/beauty":{"name":"Kosmetický salón","terms":"kosmetický salón,kadeřnictví,vizážista,kosmetika,salón krásy,nehty,depilace"},"shop/beauty/nails":{"name":"Nehtový salón","terms":"manikúra,pedikúra"},"shop/beauty/tanning":{"name":"Solarium","terms":"solární studio,solárka,opalovací studio,opalovačka,opalování"},"shop/bed":{"name":"Prodejna postelí","terms":"postel,postele,matrace,lůžko,lůžka,spaní,spánek"},"shop/beverages":{"name":"Prodejna nápojů","terms":"prodejna nápojů,obchod s nápoji,nápoje,pití,malinovka,kofola,občerstvení,nealkoholické nápoje"},"shop/bicycle":{"name":"Cykloprodejna","terms":"obchod s koly,kola,horská kola,jízdní kola,cyklistika,cykloprodejna"},"shop/boat":{"name":"Prodejna lodí","terms":"rybářský člun,vodní skútr,motorový člun,veslice,plachetnice,nádoba,plavidlo"},"shop/bookmaker":{"name":"Sázková kancelář","terms":"sázková kancelář,sázky,sázení,kurzové sázení,bookmaker,sazka,tipsport,fortuna"},"shop/books":{"name":"Knihkupectví"},"shop/boutique":{"name":"Módní butik"},"shop/brewing_supplies":{"name":"pivovarnický obchod","terms":"pivovar,obchod s domácími potřebami"},"shop/butcher":{"name":"Řeznictví","terms":"kuře,hovězí,jehněčí,maso,vepřové"},"shop/camera":{"name":"Prodejna kamer","terms":"kamera,film,čočka,foto"},"shop/candles":{"name":"Obchod se svíčkami","terms":"svíčky,svíčka,svícen,svícny,lampa,lampy,lampičky"},"shop/cannabis":{"name":"Prodejna konopí","terms":"420,konopí,marihuana,kořenáč,cigareta,tráva,weed"},"shop/car":{"name":"Prodejna aut","terms":"prodejna aut,autosalón,autobazar"},"shop/car/second_hand":{"name":"autobazar","terms":"automobil,automobilový průmysl"},"shop/car_parts":{"name":"Náhradní díly pro auta","terms":"prodejna autodílů,autodíly,automobilový,auto"},"shop/car_repair":{"name":"Autoopravna","terms":"opravna aut,autoservis,servis,pneuservis,opravna"},"shop/caravan":{"name":"prodejna karavanů","terms":"auto,karavan,rekreační vozidlo"},"shop/carpet":{"name":"Prodejna koberců","terms":"koberce,koberec,podlahové,podlahový,krytina,krytiny"},"shop/catalogue":{"name":"katalogový obchod"},"shop/charity":{"name":"Charitativní obchod","terms":"charitativní obchod,dobročinný obchod,charita"},"shop/cheese":{"name":"Prodejna sýrů","terms":"sýrařství,sýrař,sýry,sýr"},"shop/chemist":{"name":"Drogerie","terms":"drogerie,parfumerie,kosmetika,hygiena,čisticí prostředky,lékárna,léky"},"shop/chocolate":{"name":"Prodejna čokolády","terms":"čokoláda,čokolády,čokoládovna,cukrářství,cukrář"},"shop/clothes":{"name":"Oblečení","terms":"oděvy,oděv,šaty,oblečení,obchod s oblečením,móda,módní"},"shop/clothes/second_hand":{"name":"second-hand oblečení","terms":"halenky,oděvy,zásilka,šaty,kalhoty,second hand,košile,šortky,sukně,obleky,použité"},"shop/clothes/suits":{"name":"Obleky","terms":"byznysmen,vázanka,kravata"},"shop/clothes/underwear":{"name":"Prodejna spodního prádla","terms":"butik,podprdy,podprsenky,slipy,boxerky,pláště,móda,spodní prádlo,kalhotky,ponožky,punčochy,spodní,spodky,spoďáry,spodní oblečení"},"shop/clothes/wedding":{"name":"Obchod se svatebním oblečením","terms":"butik,nevěsta,nevěsty,ženich,družička,ženichové,družičky,manželské oblečení,smoking,svatební šaty,svatební oblek"},"shop/clothes/workwear":{"name":"Pracovní oděvy","terms":"řemeslník,bezpečná obuv"},"shop/coffee":{"name":"Obchod prodávající kávu","terms":"káva,obchod kávou,obchod s kávou,pražírna"},"shop/collector":{"name":"Sběratel","terms":"sběratelské potřeby,sběratelství,obchod se známkami,obchod se sběratelskými předměty,známky,mince,komix,panenky,antikvariát,filaterista,filaterie,razítka,sběratelský,sbírat"},"shop/computer":{"name":"Počítače","terms":"obchod s výpočetní technikou,počítače,elektro,elektronika,výpočetní technika"},"shop/confectionery":{"name":"Cukrovinky","terms":"cukrovinky,cukrovinka,cukrář,cukrářství"},"shop/convenience":{"name":"Smíšené zboží","terms":"smíšené zboží,krám,obchod,potraviny,večerka"},"shop/copyshop":{"name":"Kopírování","terms":"kopírování,kopírka,kopírky,copy centrum,copy studio,kopírovací centrum,kopírárna,xerox"},"shop/cosmetics":{"name":"Obchod s kosmetikou","terms":"kosmetika,kosmetický,makeup,parfém,parfumerie"},"shop/country_store":{"name":"Venkovské potřeby"},"shop/craft":{"name":"Obchod s uměleckými a řemeslnými potřebami","terms":"umění*,barva*,rám,hobby"},"shop/curtain":{"name":"Obchod se závěsy","terms":"závěs,závěsy,potah,potahy,ubrus,ubrusy"},"shop/dairy":{"name":"Mléčné výrobky","terms":"mléčné výrobky,mlékařství,mléko,mléčné produkty,sýr,jogurt,smetana"},"shop/deli":{"name":"Lahůdkářství","terms":"delikatesy"},"shop/department_store":{"name":"Obchodní dům","terms":"obchodní dům,nákupní středisko,obchodní středisko,nákupní centrum"},"shop/doityourself":{"name":"Obchod pro kutily","terms":"obchod pro kutily,stavební materiál,stavebniny,staviva,potřeby pro kutily,zahradní potřeby,železářství,kutil,hobby"},"shop/doors":{"name":"Prodejna dveří"},"shop/dry_cleaning":{"name":"Čistírna","terms":"čistírna,čistírna oděvů,prádelna,praní"},"shop/e-cigarette":{"name":"Obchod s e-cigaretami","terms":"elektronické,cigarety,kouřit,kouř"},"shop/electrical":{"name":"Prodejna elektoniky","terms":"kabel,elektrický,ventilátor,vedení,osvětlení,napájení,drát"},"shop/electronics":{"name":"Elektro","terms":"spotřebič,audio,blueray,fotoaparát,počítač,dvd,domácí kino,rádio,reproduktor,televize,video"},"shop/erotic":{"name":"Sex shop","terms":"sex shop,sexshop,erotické zboží,erotické pomůcky,erotické prádlo"},"shop/erotic/lgbtq":{"name":"Erotický obchod LGBTQ+","terms":"sex,porno"},"shop/fabric":{"name":"Obchod s textilem","terms":"textil,textilní,látka,látky,bytový textil,metrový textil"},"shop/farm":{"name":"Stánek s ovocem, zeleninou","terms":"stánek,ovoce,zelenina,trh,tržiště,farmářský trh,farmářské tržiště,farma"},"shop/fashion":{"name":"Módní zboží"},"shop/fashion_accessories":{"name":"Prodejna módních doplňků","terms":"taška,kolínská voda,vůně,klobouk,šperky,parfém,peněženka,šátek,sluneční brýle,deštník,náprsní taška,hodinky"},"shop/fireplace":{"name":"prodej krbů a kamen","terms":"krb,kamna,zděné topení"},"shop/fishing":{"name":"Rybářské potřeby","terms":"návnada,vlasec,mouchy,muška,lákadlo,naviják,prut,náčiní"},"shop/flooring":{"name":"Podlahové krytiny","terms":"dlaždice"},"shop/florist":{"name":"Květinářství","terms":"květinář,květinářství,květy,květiny,kytice"},"shop/frame":{"name":"Rámařství","terms":"rámař,rámařství,rám,rámy,rámování,rámeček,rámečky"},"shop/frozen_food":{"name":"Prodejna mražených potravin","terms":"obchod s mraženými potravinami,mražené potraviny,mražené jídlo,mrazák,zmražené,zmrazit,potraviny,obchod"},"shop/fuel":{"name":"Obchod s palivem"},"shop/funeral_directors":{"name":"Pohřební služba","terms":"pohřební služba,pohřebák,hřbitovní služby,hřbitovní služba,hrobař"},"shop/furniture":{"name":"Nábytek","terms":"obchod s nábytkem,nábytek,domácnost"},"shop/games":{"name":"deskové hry","terms":"desková hra,karetní hra,hra s kostkami,obchod s hrami,larp,živá akční hra na hrdiny,miniaturní válečná hra,hraní rolí,strategická hra,válečná hra"},"shop/garden_centre":{"name":"Zahradnictví","terms":"zahradnictví,zahradní centrum,zahradnické středisko,zahradnické centrum"},"shop/gas":{"name":"Obchod s lahvovým plynem","terms":"cng,lpg,svítiplyn,zemní plyn,propan,butan,doplnit,zásobník"},"shop/general":{"name":"smíšené zboží","terms":"maloměstský obchod,vesnický obchod"},"shop/gift":{"name":"Dárky, suvenýry","terms":"obchod s dárky,suvenýry"},"shop/greengrocer":{"name":"Ovoce a zelenina","terms":"zelinář,zelinářství,prodejna zeleniny,zelenina,ovoce,ovoce a zelenina"},"shop/hairdresser":{"name":"Kadeřnictví","terms":"kadeřník,holič,vizážista,kadeřnictví"},"shop/hairdresser_supply":{"name":"Kadeřnické potřeby","terms":"holič,holící strojek,šampon,holítko,kondicionér"},"shop/hardware":{"name":"Železářství","terms":"řemeslo,kutilství,udělej si sám,hardware,domácí kutily,nástroje"},"shop/health_food":{"name":"Obchod zdravé výživy","terms":"potraviny,výživové,bio,syrové potraviny,nezpracované,vegetariánské,veganské,vitamíny,celkové potraviny"},"shop/hearing_aids":{"name":"Obchod s naslouchátky","terms":"naslouchátko,naslouchátka,naslouchadlo,naslouchadla,neslyšící,nedoslýchavý,nedoslýchavost"},"shop/herbalist":{"name":"Bylinkářství","terms":"bylinkář,bylinkářka,bylinář,bylinářka,bylinkářství,bylinářství,kořenář,kořenářka,kořenářství,herbalista,bylinky,byliny,bylinka,bylina"},"shop/hifi":{"name":"Hifi elektronika","terms":"obchod se zvukovými systémy,obchod s ozvučením,ozvučení,hifi"},"shop/hobby":{"name":"Obchod s potřebami pro volný čas","terms":"manga,figurína,model"},"shop/household_linen":{"name":"Bytový textil","terms":"látky,prodejna látek,povlečení,záclony,závěsy,ručníky,prostěradla,hadry,textil,domácí,bytový"},"shop/houseware":{"name":"Domácí potřeby","terms":"domácí potřeby,kuchyňské potřeby,potřeby pro domácnost,nádobí"},"shop/hunting":{"name":"Lovecké potřeby","terms":"šípy,luky,kulky,kuše,pušky,pasti"},"shop/interior_decoration":{"name":"Obchod s bytovými doplňky","terms":"bytový doplněk,bytové doplňky,bytové dekorace,bytová dekorace,dekorace,dekorativní doplněk,doplněk do bytu,dekorace do bytu"},"shop/jewelry":{"name":"Klenotnictví","terms":"náramek,diamant,náušnice,drahokam,zlato,klenotník,šperky,klenotnice,náhrdelník,špendlíky,prsten,stříbro"},"shop/kiosk":{"name":"Kiosek","terms":"nápoje,cigarety,kiosek v obchodním centru,trafika,noviny,novinový stánek,občerstvení,sladkosti"},"shop/kitchen":{"name":"Kuchyňské studio","terms":"kuchyně,kuchyňský,kuchyňské linky,kuchyně na míru"},"shop/laundry":{"name":"Prádelna","terms":"prádelna,čistírna,prádlo"},"shop/laundry/self_service":{"name":"Samoobslužná prádelna"},"shop/leather":{"name":"Kožené zboží","terms":"kožený,kožená,kožené,kůže,useň,usňový,usňová,usňové"},"shop/lighting":{"name":"Prodejna osvětlení","terms":"zářivkové osvětlení,lampy,led diody,svítidla,žárovky"},"shop/locksmith":{"name":"Zámečník","terms":"zámečnictví,zámečník,klíč,zámek"},"shop/lottery":{"name":"Prodejna losů","terms":"los,losy,loterie,sázky,sázení,sportka"},"shop/mall":{"name":"Obchodní centrum","terms":"nákupní středisko,obchodní středisko,obchody,nákupní centrum"},"shop/massage":{"name":"Masáže","terms":"masáž,masáže,masér,masérka,masírování,masírovat,massage"},"shop/medical_supply":{"name":"Zdravotnické potřeby","terms":"zdravotnické potřeby,zdravotní potřeby,ortopedické pomůcky"},"shop/military_surplus":{"name":"armádní výprodej","terms":"brnění,obchod pro armádu a námořnictvo,přebytky armády,přebytky v námořnictvu,taktické vybavení,obchod s válečnými přebytky,zbraně"},"shop/mobile_phone":{"name":"Obchod s mobily","terms":"obchod s mobilními telefony,přenosné telefony,mobil,telefon"},"shop/model":{"name":"Modelářský obchod","terms":"modelářství,modelářský obchod,modelářské potřeby,modely,stavebnice,modely v měřítku,miniatury,modely letadel,modely aut,koníček,hobby,modely budov,stavebnice modelů,modelová železnice,mašinky"},"shop/money_lender":{"name":"Nebankovní půjčky","terms":"lichvář,lichvářství,lichva,úžera,půjčka,půjčky,úvěr,úvěry"},"shop/motorcycle":{"name":"Obchod s motocykly","terms":"prodejna motocyklů,prodejna motorek,motocykly,motorky"},"shop/motorcycle_repair":{"name":"Opravna motocyklů","terms":"opravna motorek,motorky,motocykl,opravna motocyklů,servis,bike,garáž,motorkářský,motorkářská,servis motorek"},"shop/music":{"name":"Obchod s hudbou","terms":"hudební obchod,obchod s hudbou,cd,lp"},"shop/musical_instrument":{"name":"Obchod s hudebními nástroji","terms":"hudba,hudební nástroj,hudební nástroje,hudebnina,hudebniny,muzika,hudebník,muzikant"},"shop/newsagent":{"name":"Novinový stánek","terms":"trafika,noviny,tabák"},"shop/nutrition_supplements":{"name":"Obchod s potravními doplňky","terms":"doplňky stravy,potravní doplňky,doplňky potravy,potravinové doplňky,doplňky výživy,výživové doplňky,nutraceutika,supplementy,vitamíny,minerály,léky"},"shop/optician":{"name":"Optika","terms":"optik,optika,brýle,zrak,kontaktní čočky,čočky"},"shop/outdoor":{"name":"Outdoorové zboží","terms":"outdoor,outdoorový,outdoorová,outdoorové,kempování,kempingové,horolezecký,horolezecké,sport,sportovní,příroda,přírody"},"shop/outpost":{"name":"výdejna e-shopu","terms":"online,vyzvednutí,vyzvednout"},"shop/paint":{"name":"Barvy a laky","terms":"barva,barvy,nátěr,nátěry,lak,laky"},"shop/party":{"name":"párty zboží","terms":"balonky,kostýmy,dekorace,pozvánky"},"shop/pastry":{"name":"Cukrárna","terms":"cukrářství,dorty"},"shop/pawnbroker":{"name":"Zastavárna"},"shop/perfumery":{"name":"Parfumerie","terms":"parfumerie,parfémy"},"shop/pet":{"name":"Chovatelské potřeby","terms":"obchod pro domácí zvířata,obchod pro domácí mazlíčky,zverimex"},"shop/pet_grooming":{"name":"zvířecí salon","terms":"kočka,pes"},"shop/photo":{"name":"Fotografický obchod","terms":"fotografie,fotografický obchod,foto,fotoobchod,video,vyvolávání,tisk,film,filmy,fotostudio,studio,fotoaparát,digitální,digitál,střih,ateliér,objektiv"},"shop/pottery":{"name":"keramika","terms":"keramika,hrnec,váza"},"shop/printer_ink":{"name":"barvy do tiskáren","terms":"inkoust do kopírek,inkoust pro fax,inkoustové kazety,toner"},"shop/psychic":{"name":"věštírna","terms":"astrologie,křišťálová koule,věštění,vypravěč,věštec,duch"},"shop/pyrotechnics":{"name":"Obchod s pyrotechnikou","terms":"pyrotechnika,zábavní pyrotechnika,zábavná pyrotechnika,ohňostroj,dělbuch"},"shop/radiotechnics":{"name":"Obchod s elektronickými součástkami","terms":"elektrotechnika,elektronický,elektrický,elektro,radiotechnika,radioamatér"},"shop/religion":{"name":"Náboženské předměty","terms":"náboženství,náboženský,duchovní,křesťanský,katolický"},"shop/rental":{"name":"půjčovna"},"shop/repair":{"name":"Opravna","terms":"opravna,servis,opravář,náhradní díly,dílna,oprava rozbitého"},"shop/scuba_diving":{"name":"Potřeby pro potápěče","terms":"potápění,potápěč,scuba,potapěč,šnorchl"},"shop/seafood":{"name":"Rybárna","terms":"rybárna,rybářství,ryby,ryba,plody moře,seafood,mořské potvory"},"shop/second_hand":{"name":"Second hand","terms":"bazarové,přeprodej,použité"},"shop/sewing":{"name":"Šicí potřeby, galanterie","terms":"galanterie"},"shop/shoe_repair":{"name":"Opravna obuvi","terms":"švec,ševcovství,opravna obuvi,výrobce bot,výroba obuvi,boty,dílna,obuv,řemeslo,řemeslník"},"shop/shoes":{"name":"Obuvnictví","terms":"dům obuvi,boty,obuvnictví,obuvník,švec"},"shop/spices":{"name":"koření, bylinky","terms":"chilli,skořice,kari,zázvor,bylinky,pepř,šafrán,sůl,obchod s kořením,koření,kurkuma,wasabi"},"shop/sports":{"name":"Sportovní potřeby","terms":"sport,obchod se sportovními potřebami,sportovní potřeby,vybavení pro sport"},"shop/stationery":{"name":"Kancelářské potřeby","terms":"papírnictví,papír,kancelářské potřeby,papírnické zboží,psací potřeby"},"shop/storage_rental":{"name":"Skladovací prostor","terms":"skladiště,skladování,skladovací prostor,uskladnění,parkování,pronájem,nájem"},"shop/supermarket":{"name":"Supermarket","terms":"obchod,market,supermarket,butik,bazar,řetězec,hypermarket,diskont,diskontní,bleší trh,trh,tržiště,outlet,obchodní,centrum,nákupní,obchodní dům,večerka,prodejní"},"shop/supermarket/organic":{"name":"Supermarket s bioprodukty","terms":"supermarket,obchod,přírodní produkty,bioprodukty,bio,eko,biopotraviny"},"shop/swimming_pool":{"name":"bazény","terms":"obchod s vybavením pro vířivky,obchod s údržbou vířivek,obchod s potřebami pro vířivky,obchod s bazény,bazény,obchod s vybavením pro bazény,obchod s instalací bazénů,obchod s údržbou bazénů,obchod s potřebami pro bazény"},"shop/tailor":{"name":"Krejčovství","terms":"krejčí,krejčířství,krejčovství,krejčová,švadlena,švadlenka"},"shop/tattoo":{"name":"Tetovací salón","terms":"tattoo,tatér,tatérka,tatérství,tetování,kérka,kérky,kérkař,piercing,pírsing"},"shop/tea":{"name":"Obchod s čajem","terms":"čaj,čaje,čajovna,čajírna"},"shop/telecommunication":{"name":"telekomunikační prodejna","terms":"komunikace,poskytovatel internetové služby,isp,síť,telefon,hlas"},"shop/ticket":{"name":"Prodejna vstupenek","terms":"vstupenka,vstupenky,vstupenek,předprodej,lístek,lístky,jízdenka,jízdenky"},"shop/tiles":{"name":"Obchod s obklady"},"shop/tobacco":{"name":"Kuřácké potřeby","terms":"kuřácké potřeby,potřeby pro kuřáky,kuřák,kuřáci,kouření,tabák,doutník,dýmky,dýmka,cigarety,cigareta"},"shop/tool_hire":{"name":"půjčovna nářadí"},"shop/toys":{"name":"Hračkářství","terms":"hračky,hry"},"shop/trade":{"name":"stavebniny"},"shop/travel_agency":{"name":"Cestovní kancelář","terms":"cestovní kancelář,cestovka,cestování,dovolená"},"shop/trophy":{"name":"Prodejna trofejí","terms":"obchod,prodejna,trofej,rofeje,poháry,medaile,diplomy,ocenění,ceny,rytí,rytiny,pamětní desky,plakety,rytí nápisů,rytec"},"shop/tyres":{"name":"Pneuservis","terms":"prodejna pneumatik,pneumatiky,pneuservis"},"shop/vacant":{"name":"Neobsazený obchod"},"shop/vacuum_cleaner":{"name":"Obchod s vysavači","terms":"vysavač,vysavače,vysávat,lux,luxovat"},"shop/variety_store":{"name":"Diskontní prodejna","terms":"za pár babek,za bura"},"shop/video":{"name":"Video obchod","terms":"videopůjčovna,videokazety,videokazeta,dvd"},"shop/video_games":{"name":"Obchod s videohrami","terms":"videohry,video hry,video hra,videohra,herní konzole,počítačové hry,game,games"},"shop/watches":{"name":"Hodinářství","terms":"hodiny,hodinky,čas"},"shop/water":{"name":"Obchod s pitnou vodou"},"shop/water_sports":{"name":"Plavecké potřeby","terms":"plavecké potřeby,plavání,plavec,plavce,plavky,plavecké,plavecký"},"shop/weapons":{"name":"Zbraně a střelivo","terms":"zbraně,střelivo,pistole,pušky,puška,nůž,nože,army"},"shop/wholesale":{"name":"Velkoobchodní sklad","terms":"skladiště,zaplať a odvez"},"shop/wigs":{"name":"Paruky","terms":"obchod s parukami,paruky,paruka,tupé,vlásenkář,vlásenkáři,příčesky,příčesek,vlasy"},"shop/window_blind":{"name":"Obchod s roletami","terms":"roleta,rolety,žaluzie,okenice"},"shop/wine":{"name":"Vinotéka","terms":"vinotéka,víno,vinárna,vinařství,vino"},"shop/yes":{"name":"Obchod (nespecifikovaný typ)"},"telecom":{"name":"Telekomunikační prvek"},"telecom/data_center":{"name":"Datové centrum","terms":"úložiště počítačových systémů,informační technologie,serverová firma,cloudové úložiště,telekomunikace"},"telecom/exchange":{"name":"telekomunikační ústředna","terms":"telekomunikace,telekomunikační,ústředna,přepojení,přepojovna,objekt telekomunikací,telefon,telefonní"},"tourism":{"name":"Turistický prvek"},"tourism/alpine_hut":{"name":"Horský srub","terms":"chata,horolezecká chata,ubytování,ubytování přes noc,útočiště,chata na divočinu"},"tourism/apartment":{"name":"Byt/apartmán k pronájmu","terms":"bnb,pronájem na dovolenou,ubytování,ubytování na noc,pronájem na prázdniny"},"tourism/aquarium":{"name":"Akvárium","terms":"akvárko,ryba,ryby,moře,voda"},"tourism/artwork":{"name":"Umělecké dílo","terms":"umělecké dílo,socha,sousoší,plastika,obraz,architektonické dílo,malba,freska,mozaika"},"tourism/artwork/bust":{"name":"Busta","terms":"figurka"},"tourism/artwork/graffiti":{"name":"Graffiti","terms":"pouliční umění,partyzánská umělecká díla,partyzánské umění,graffiti umělecká díla"},"tourism/artwork/installation":{"name":"Umělecká instalace","terms":"interaktivní umění,intervenční umění,moderní umění"},"tourism/artwork/mural":{"name":"Nástěnná malba","terms":"freska,nástěnná malba"},"tourism/artwork/sculpture":{"name":"Skulptura","terms":"socha,plastika"},"tourism/artwork/statue":{"name":"Socha (osoba nebo zvíře)","terms":"sochařství,figura,řezba"},"tourism/attraction":{"name":"Pamětihodnost","terms":"pamětihodnost,turistická atrakce,turistická zajímavost,turistické lákadlo,atrakce,zajímavost,lákadlo"},"tourism/camp_pitch":{"name":"místo pro stan/karavan","terms":"stan,obytný vůz"},"tourism/camp_site":{"name":"Tábořiště","terms":"stan,tábor,tábořiště,obytný vůz,karavan,karavany"},"tourism/camp_site/backcountry":{"name":"plocha pro kempování v divočině","terms":"alpské kempování,místo pro batohy,kempování u lesa,tábořit,místo pro stan,táboření,tábořiště,kemp,neformální kempování,primitivní kempování"},"tourism/camp_site/group_only":{"name":"plocha pro skupinové kempování","terms":"tábořit,místo pro stan,táboření,tábořiště,kemp,tábořiště pro skauty,táboření pro mládež"},"tourism/caravan_site":{"name":"Místo pro karavany","terms":"místo pro karavany,kemp,camp,camping,karavan"},"tourism/chalet":{"name":"Prázdninová vesnice","terms":"chata,prázdninová dřevostavba,prázdninový domek,srub,ubytování ve srubu,ubytování,přenocování,ubytování přes noc,dřevostavba,domek"},"tourism/gallery":{"name":"Galerie umění","terms":"muzeum umění,galerie umění,umělecká galerie,umělecké muzeum,galerie"},"tourism/guest_house":{"name":"Penzion","terms":"ubytování se snídaní,nocleh se snídaní,ubytování a snídaně,nocleh a snídaně,b&b,ubytování,nocleh"},"tourism/hostel":{"name":"Hostel","terms":"hostel,noclehárna,ubytovna,ubytování"},"tourism/hotel":{"name":"Hotel","terms":"hotel,ubytování"},"tourism/information":{"name":"Informace","terms":"informace,údaje,údaj,cedule,tabule"},"tourism/information/board":{"name":"Informační tabule","terms":"informace,tabule"},"tourism/information/board/welcome_sign":{"name":"Uvítací tabule","terms":"uvítací,vítající,značka,tabule,cedule,vítající značka,vítající tabule"},"tourism/information/guidepost":{"name":"Rozcestník","terms":"rozcestí"},"tourism/information/map":{"name":"Mapa"},"tourism/information/office":{"name":"Návštěvnické centrum","terms":"turistické informační centrum,turistické středisko,informace,turismus,turista,návštěvník,návštěvníci,návštěvnické středisko"},"tourism/information/route_marker":{"name":"turistická značka","terms":"mohyla,malovaný požár,vlajka na trase,značka na cestě,kamenná hromada,požár stezky,traťový sloupek,značka cesty"},"tourism/information/terminal":{"name":"informační panel/terminál"},"tourism/motel":{"name":"Motel","terms":"motel,hotel,penzion,ubytování"},"tourism/museum":{"name":"Muzeum","terms":"knihovna,galerie,výstavní,muzeum,repozitář,depozitář,archiv,sklad,lapidárium"},"tourism/museum/history":{"name":"historické muzeum","terms":"artefakty,dioráma,exponáty,výstavy,nadace,síň,instituce"},"tourism/picnic_site":{"name":"Místo pro piknik","terms":"piknik,místo pro piknik,tábořiště,ohniště,stůl,lavička,lavice,gril"},"tourism/theme_park":{"name":"Zábavní park","terms":"zábavní park,pouť,lunapark,atrakce,kolotoč"},"tourism/trail_riding_station":{"name":"Stanice jízdy na koni"},"tourism/viewpoint":{"name":"Výhled","terms":"výhled,rozhledna,rozhled"},"tourism/wilderness_hut":{"name":"Chata v divočině","terms":"horská chata,bivak,bivakovací box,biwakschachtel,kajuta,chata,ubytování,přenocování,útočiště,přístřešek na spaní"},"tourism/zoo":{"name":"ZOO","terms":"zoologická zahrada,zvířata"},"tourism/zoo/petting":{"name":"dětská zoo","terms":"dětská zoo,dětská farma,farma pro domácí mazlíčky,hospodářská zvířata"},"tourism/zoo/safari":{"name":"safari park","terms":"průjezdná zoo,průjezd zoo"},"tourism/zoo/wildlife":{"name":"obora s divokými zvířaty","terms":"domorodá zvířata"},"traffic_calming":{"name":"Zklidňování dopravy","terms":"hrbol,hrb,pomalu,rychlost,zpomalit"},"traffic_calming/bump":{"name":"Úzký příčný práh","terms":"úzký příčný práh,příčný práh,retardér,zpomalovací práh,ležící policajt"},"traffic_calming/chicane":{"name":"Šikana","terms":"příjezd,nájezd,rychlost,pomalu,zpomalit"},"traffic_calming/choker":{"name":"Zúžení silnice","terms":"rychlost,pomalu,zpomalit"},"traffic_calming/cushion":{"name":"Zpomalovací polštář","terms":"hrbol,hrb,pomalu,rychlost,zpomalit"},"traffic_calming/dip":{"name":"Prohlubeň","terms":"pomalu,rychlost,zpomalit"},"traffic_calming/hump":{"name":"Široký příčný práh","terms":"široký příčný práh,příčný práh,retardér,zpomalovací práh,ležící policajt"},"traffic_calming/island":{"name":"Dopravní ostrůvek","terms":"kruhák,kruháč,kulaťák,kruhový objezd,pomalu,zpomalit"},"traffic_calming/mini_bumps":{"name":"Minimální povolená rychlost","terms":"hrboly,kruhové hrboly,kruhové zpomalovače,malé hrboly,malé zpomalovače,pomalá,rychlost"},"traffic_calming/rumble_strip":{"name":"Opticko-akustická brzda","terms":"opticko-akustická brzda,spotflex,zpomalovací práh,optická brzda,akustická brzda"},"traffic_calming/table":{"name":"Zvýšená plocha pro zpomalení","terms":"zpomalovací stůl,rychlostní stůl"},"traffic_calming/yes":{"name":"Zklidňování dopravy (nespecifikovaný typ)"},"traffic_sign":{"name":"Dopravní značka","terms":"dopravní značka,dopravní značení,značka,cedule,dopravní cedule,silniční značení,dz,doprava"},"traffic_sign/city_limit":{"name":"Značka začátek/konec obce","terms":"dopravní značka,dz,začátek obce,konec obce,obec,začátek území obce,vesnice,město,konec města,konec vesnice,začátek města,začátek vesnice,značka začátku obce,značka konce obce"},"traffic_sign/maxspeed":{"name":"Značka omezení rychlosti","terms":"dopravní značka omezení rychlosti,dopravní značka maximální rychlosti,maximální rychlost,maximální povolená rychlost,dopravní značení,značka,cedule,dopravní cedule,silniční značení,dz,doprava,omezení rychlosti,rychlostní limit,rychlostní omezení,značka rychlosti"},"traffic_sign/variable_message":{"name":"Proměnlivé dopravní značení","terms":"měnící se nápis,značka dynamické zprávy"},"type/boundary":{"name":"Hranice","terms":"hranice,hraniční,čára"},"type/boundary/administrative":{"name":"Administrativní hranice","terms":"administrativní hranice,správní hranice,hranice správní oblasti,hranice kraje,hranice oblasti,hranice regionu"},"type/connectivity":{"name":"Propojení jízdních pruhů"},"type/destination_sign":{"name":"Směrová tabule","terms":"směrová tabule,směrová značka,značka směru,značka cíle,cedule se směrem,směrová cedule,směr výjezdu,označení exitu,směr,šipka"},"type/enforcement":{"name":"zařízení pro dokumentaci dopravních přestupků"},"type/enforcement/maxspeed":{"name":"Rychlostní radar","terms":"maximální rychlost,radar,rychlostní kamera"},"type/multipolygon":{"name":"Multipolygon"},"type/public_transport/stop_area_group":{"name":"Skupina zastávek veřejné dopravy"},"type/restriction":{"name":"Omezení","terms":"omezení,dopravní omezení"},"type/restriction/no_left_turn":{"name":"Zákaz odbočování vlevo","terms":"odbočování vlevo,odbočení vlevo,odbočit vlevo,zatočení vlevo,zatočit vlevo"},"type/restriction/no_right_turn":{"name":"Zákaz odbočování vpravo","terms":"odbočování vpravo,odbočit vpravo,odbočení vpravo,zatočit vpravo,zatočení vpravo"},"type/restriction/no_straight_on":{"name":"Zákaz jízdy vpřed"},"type/restriction/no_u_turn":{"name":"Zákaz otáčení"},"type/restriction/only_left_turn":{"name":"Pouze odbočení doleva"},"type/restriction/only_right_turn":{"name":"Pouze odbočování doprava"},"type/restriction/only_straight_on":{"name":"Pouze jízda vpřed"},"type/restriction/only_u_turn":{"name":"Pouze otáčení"},"type/route":{"name":"Trasa","terms":"trasa,cesta,linka,stopa,značka,spojení"},"type/route/aerialway":{"name":"Trasa nadzemní dopravy","terms":"lanovka,nadzemní doprava,linka,trasa,trasa lanové dráhy,lanová dráha,nadzemní linka"},"type/route/bicycle":{"name":"Cyklotrasa"},"type/route/bus":{"name":"Autobusová trasa","terms":"autobusová trasa,autobusová linka,autobus,bus,autobusové spojení,autobusový spoj"},"type/route/detour":{"name":"Trasa objížďky","terms":"objížďka,trasa objížďky,náhradní trasa"},"type/route/ferry":{"name":"Trajektová trasa","terms":"trajekt,trasa,linka,loď,trasa trajektu"},"type/route/foot":{"name":"Turistická trasa","terms":"pěší trasa,trasa pro pěší,turistická značka,turistická trasa,značka pro pěší,klub českých turistů,kčt,stezka pro pěší,turistická stezka"},"type/route/hiking":{"name":"Turistická trasa","terms":"pěší trasa,trasa pro pěší,turistická značka,turistická trasa,značka pro pěší,klub českých turistů,kčt"},"type/route/horse":{"name":"Trasa pro jízdu na koni","terms":"koňská jezdecká trasa,koňská stezka,jezdecká stezka,jízda na stezce"},"type/route/light_rail":{"name":"Trasa lehké dráhy"},"type/route/monorail":{"name":"dráha monorailu"},"type/route/mtb":{"name":"Trasa pro horská kola","terms":"horská,terénní cyklistika,sjezdová cyklistika,enduro,volná jízda,horská bicyklistika,trasa pro horskou cyklistiku,horská cyklistika,mtb,trailové ježdění"},"type/route/pipeline":{"name":"Potrubní trasa","terms":"potrubí,potrubní trasa,roura,roury,transport,vodovod,ropovod,produktovod,plynovod,kanál,rozvod"},"type/route/piste":{"name":"Trasa sjezdovky"},"type/route/power":{"name":"Elektrická trasa","terms":"trasa elektrického vedení,elektrické vedení,elektrika,napětí,vysoké napětí,drát,dráty,kabel,kabely"},"type/route/railway":{"name":"Železniční trasa"},"type/route/road":{"name":"Silniční trasa","terms":"silnice,silniční trasa,trasa silnice,trasa dálnice,dálnice"},"type/route/subway":{"name":"Trasa metra"},"type/route/train":{"name":"Železniční trasa","terms":"železniční trasa,vlaková trasa,železniční linka,vlaková linka,kolej,koleje,železnice,dráhy,dráha,železniční cesta,železniční cesty,drážní"},"type/route/tram":{"name":"Tramvajová trasa","terms":"tramvajová trasa,tramvajová linka,kolej,koleje,tramvaj,linka tramvaje"},"type/route/trolleybus":{"name":"Trolejbusová trasa","terms":"trolejbus,trolejbusový,trolejbusová,trolejbusu,spojení,linka,spoj,trolej,trolley,bus,mhd,městská doprava,městská hromadná doprava"},"type/route_master":{"name":"Řídící relace trasy","terms":"řídící relace trasy,route master,hlavní relace,nadrelace,master"},"type/site":{"name":"Uskupení","terms":"site,uskupení,seskupení,skupina,seznam,místo"},"type/waterway":{"name":"Vodní tok"},"waterway":{"name":"Prvek vodní dopravy"},"waterway/boatyard":{"name":"Loděnice","terms":"loděnice,dok,suchý dok,doky,suché doky"},"waterway/canal":{"name":"Vodní kanál","terms":"vodní kanál,kanál,přivaděč,náhon,průplav,závlaha"},"waterway/canal/lock":{"name":"zdymadla","terms":"zdymadla,zdymadlo,vyrovnání hladin,vodní stupeň,zdvihání lodí,spouštění lodí,vodní cesty,kanál,výšky hladin,výška hladiny"},"waterway/dam":{"name":"Hráz","terms":"přehrada,nádrž"},"waterway/ditch":{"name":"Příkop / strouha","terms":"příkop,strouha,škarpa"},"waterway/dock":{"name":"Doky","terms":"doky,dok,výroba lodí,oprava lodí,údržba lodí,loděnice"},"waterway/drain":{"name":"Odvodňovací strouha","terms":"odvodňovací strouha,strouha,odvodňovací kanál,odvaděč"},"waterway/fish_pass":{"name":"rybí přechod","terms":"úhoří žebřík,úhoří přechod,rybí žebřík,rybí migrace,rybí pasáž,rybí sifon,rybí schůdky,rybí stezka,žebřík pro ryby,rybí přechod,schody pro ryby,rybí cesta"},"waterway/fuel":{"name":"Lodní čerpací stanice","terms":"lodní pumpa,pumpa,čerpací stanice,loď,jachta,hausbót"},"waterway/lock_gate":{"name":"vrata zdymadel","terms":"brána zdymadla,zdymadlo,vyrovnání hladin,vodní stupeň,zdvihání lodí,spouštění lodí,vodní cesty,kanál,výšky hladin,výška hladiny,brána zdymadel,vrata plavební komory,vrata zdymadla"},"waterway/milestone":{"name":"Milník vodní cesty","terms":"milník,označení"},"waterway/river":{"name":"Řeka","terms":"potok,potůček,strouha,říčka,přítok,koryto"},"waterway/sanitary_dump_station":{"name":"Výlevka pro lodě","terms":"záchod,kanalizace,výlevka,žumpa,odpadní voda,wc,toaleta,loď,jachta,hausbót"},"waterway/stream":{"name":"Potok","terms":"potok,potůček,strouha,tok,říčka,přítok,koryto,řeka,proud,vír,odtok,příliv,odliv"},"waterway/stream_intermittent":{"name":"Vysychající/přerušovaný tok","terms":"suchý potok,výtok,větev,potok,opa,tok,říčka,unášet,povodeň,průtok,úžlabina,teč,kanál,rákosí,záplava,stříkat,přítok,vádí,mýt,vodní tok"},"waterway/tidal_channel":{"name":"přílivový kanál","terms":"pobřežní,pilulka,přílivová,mangrovy,mořské,solné bažiny,přílivový potok,přílivová rovina,přílivový vstup,vodní cesta"},"waterway/water_point":{"name":"Pitná voda pro lodě","terms":"pitná voda,lodě"},"waterway/waterfall":{"name":"Vodopád","terms":"padat,pád"},"waterway/weir":{"name":"Jez","terms":"nízká přehrada,nízkopodlažní přehrada,splav"}}}}}
\ No newline at end of file
+{"cs":{"presets":{"categories":{"category-barrier":{"name":"Prvky překážek"},"category-building":{"name":"Prvky budov"},"category-climbing":{"name":"Prvky lezení"},"category-golf":{"name":"Golfové prvky"},"category-landuse":{"name":"Prvky využití krajiny"},"category-natural":{"name":"Přírodní prvky"},"category-path":{"name":"Pěší cesty"},"category-playground":{"name":"Vybavení dětského hřiště"},"category-rail":{"name":"Železnice"},"category-restriction":{"name":"Prvky omezení dopravy"},"category-road_major":{"name":"Větší komunikace"},"category-road_minor":{"name":"Menší komunikace"},"category-road_service":{"name":"Obslužné komunikace"},"category-route":{"name":"Prvky tras"},"category-utility":{"name":"Služby"},"category-water":{"name":"Vodní tělesa"},"category-waterway":{"name":"Vodní cesty"}},"fields":{"access":{"label":"Povolený vstup/vjezd","options":{"customers":{"description":"Omezen na zákazníky destinace","title":"Zákazníci"},"designated":{"description":"Přístup povolen v souladu se značením nebo specifickými místními předpisy","title":"Vyhrazeno"},"destination":{"description":"Přístup je povolen pouze k dosažení cíle","title":"Jen do místa"},"dismount":{"description":"Přístup je povolen, ale jezdec musí sesednout","title":"Sesednout"},"no":{"description":"Přístup není veřejnosti povolen","title":"Zakázán"},"permissive":{"description":"Přístup je povolen, dokud majitel povolení nezamítne","title":"Do odvolání"},"permit":{"description":"Přístup povolen pouze s platným oprávněním nebo licencí","title":"Na povolení"},"private":{"description":"Přístup povolen pouze s individuálním povolením vlastníka","title":"S povolením"},"unknown":{"description":"Podmínky přístupu jsou neznámé nebo nejasné","title":"Není známo"},"yes":{"description":"Přístup povolen ze zákona; právo na cestu","title":"Povolen"}},"placeholder":"Není známo","terms":"vstup povolen,povolení ke vstupu,přístup,veřejné,soukromé,privátní,zákaz vstupu,soukromý pozemek","types":{"access":"Všem","bicycle":"Jízdní kola","foot":"Pěší","horse":"Koně","motor_vehicle":"Motorová vozidla"}},"access_aisle":{"label":"Druh"},"access_simple":{"label":"Povolený vstup/vjezd","options":{"customers":"Pouze pro zákazníky","no":"Žádné","permissive":"Do odvolání","permit":"Pouze s povolením","private":"Soukromé","unknown":"Neznámý","yes":"Veřejné"},"terms":"povolený,veřejný,přístupný,dostupný,neomezený,povolen vstup,povolen přístup,povolen vjezd"},"activity":{"label":"Aktivita","options":{"bicycle":"Cyklistika","hiking":"Turistika","horse":"Jízda na koni","mtb":"Horská kola","ski":"Lyžování"}},"addr/interpolation":{"label":"Druh","options":{"all":"Vše","alphabetic":"Abecední","even":"Sudý","odd":"Lichý"}},"address":{"label":"Adresa","placeholders":{"block_number":"Číslo bloku","block_number!jp":"Č. bloku","city":"Město","city!cn":"Město/prefektura/společenství","city!jp":"Velkoměsto/město/vesnice/tokijský zvláštní okrsek","city!vn":"Obec","conscriptionnumber":"123","country":"Stát (země)","county":"Kraj","county!jp":"Distrikt","district":"Okres","district!cn":"Okres/kraj/územní jednotka (banner)","district!vn":"Obec/město/okres","floor":"Patro","hamlet":"Osada","housename":"Název domu","housenumber":"123","housenumber!jp":"Číslo budovy/číslo parcely","neighbourhood":"Část městské čtvrti, obce","neighbourhood!jp":"Machi/Chōme/Aza/Koaza","place":"Místo","postcode":"PSČ","province":"Provincie","province!cn":"Provincie/obec/administrativní oblast/zvláštní admin. oblast","province!jp":"Prefektura","quarter":"Čtvrť","quarter!jp":"Ōaza","state":"Stát (v rámci federace)","street":"Ulice","subdistrict":"Subdistrikt","subdistrict!vn":"Okrsek/komuna/městys","suburb":"Městská část (obvod)","suburb!jp":"Ward (政令市)","town":"Město","unit":"Jednotka"},"terms":"adresa,lokace,místo,ulice,město,umístění,poloha,sídlo,číslo domu,bydliště"},"admin_level":{"label":"Administrativní úroveň"},"advertising":{"label":"Druh"},"aerialway":{"label":"Druh"},"aerialway/access":{"label":"Přístup","options":{"both":"Oboje","entry":"Vstup","exit":"Výstup"}},"aerialway/bubble":{"label":"krycí bublina"},"aerialway/capacity":{"label":"Odbaví lidí (za hodinu)","placeholder":"500, 2500, 5000..."},"aerialway/duration":{"label":"Trvání cesty (v minutách)","placeholder":"1, 2, 3..."},"aerialway/heating":{"label":"Vytápěno"},"aerialway/occupancy":{"label":"Kapacita (počet cestujících)","placeholder":"2, 4, 8..."},"aerialway/summer/access":{"label":"Přístup v létě","options":{"both":"Oboje","entry":"Vstup","exit":"Výstup"}},"aeroway":{"label":"Druh"},"agrarian":{"label":"Výrobky"},"air_conditioning":{"label":"Klimatizace","terms":"klimatizace,chlazení,chladicí systém,ochlazování"},"aircraft/type":{"label":"Druh","options":{"airliner":"Dopravní letoun","cargo":"Nákladní letoun","fixed_wing":"Letoun s pevnými křídly","glider":"Bezmotorový letoun","helicopter":"Vrtulník","jet":"Proudové letoun","military":"Armáda"}},"alt_name":{"label":"Alternativní název","terms":"alternativní název,jiný název,náhradní název"},"amenity":{"label":"Druh"},"animal_boarding":{"label":"Pro zvířata"},"animal_breeding":{"label":"Pro zvířata"},"animal_shelter":{"label":"Pro zvířata"},"archaeological_site":{"label":"Druh","options":{"baths":"Lázně","city":"Historické město","crannog":"Crannóg","enclosure":"Ohrada","fortification":"Opevnění","hut_circle":"Kruhová stavba","megalith":"Megalit","necropolis":"Pohřebiště","petroglyph":"Skalní řezba","roman_circus":"Římský cirkus","roman_villa":"Římská vila","settlement":"Historická osada","tumulus":"Mohyla"}},"architect":{"label":"Architekt","terms":"stavební projektant,architekt"},"area/highway":{"label":"Druh"},"armrest":{"label":"Područky","options":{"no":"Bez područek","undefined":"Neznámý","yes":"Jedna, nebo více područek"}},"artist":{"label":"Umělec"},"artwork_type":{"label":"Typ","options":{"bust":"Busta","graffiti":"Graffiti","installation":"Umělecká instalace","mosaic":"Mozaika","mural":"Nástěnná malba","painting":"Malba","relief":"Reliéf","sculpture":"Skulptura","statue":"Socha (osoba nebo zvíře)","stone":"Umělecky zpracovaný kámen","tilework":"Umělecké obklady"}},"ascent":{"label":"Celkové stoupání","terms":"celkový výstup,celkové stoupání,kumulativní převýšení"},"athletics_pitch":{"label":"Událost","options":{"discus_throw":"Disk","hammer_throw":"Hod kladivem","high_jump":"Skok do výšky","javelin_throw":"Hod oštěpem","long_jump":"Skok do dálky","pole_vault":"Skok o tyči","shot_put":"Vrh koulí","triple_jump":"Trojskok"}},"athletics_track":{"label":"Událost","options":{"javelin_throw":"Oštěp","long_jump":"Skok do dálky","pole_vault":"Skok o tyči","running":"Běh","sprint":"Sprint","steeplechase":"Steeplechase","triple_jump":"Trojskok"}},"atm":{"label":"Bankomat"},"attraction":{"label":"Typ","options":{"alpine_coaster":"Alpská dráha","amusement_ride":"Atrakce","animal":"Ohrada pro zvířata","big_wheel":"Ruské kolo","bumper_car":"Autodrom","bungee_jumping":"Bungee jumping","carousel":"Kolotoč","dark_ride":"Strašidelná jízda","drop_tower":"Atrakce padací věž","kiddie_ride":"Dětské houpadlo","log_flume":"Vodní horská dráha","maze":"Bludiště","pirate_ship":"Houpačka ve tvaru pirátské lodi","river_rafting":"Jízda na divoké řece","roller_coaster":"Horská dráha","summer_toboggan":"Letní tobogán","swing_carousel":"Řetízkový kolotoč","train":"Turistický vláček","water_slide":"Vodní skluzavka"}},"automated":{"label":"Automatické"},"baby_feeding":{"label":"Místo pro kojence","options":{"no":"Není","room":"Místnost pro kojení","yes":"Označené místo"},"terms":"kojení,místo pro kojení,pro matky,kojení dětí,krmení dětí"},"baby_seat":{"label":"Dětská sedačka"},"backcountry":{"label":"místo pro táboření v divočině","terms":"místo pro táboření v divočině,divoké tábořiště,místo pro přespání,spaní,stanování,divočina,tábořiště,nocoviště,přenocování"},"backrest":{"label":"Opěradlo"},"bar":{"label":"Bar","terms":"pivnice,klub,hospoda,night club,bar,club,nálevna"},"barrier":{"label":"Typ","options":{"block":"Velký blok","bollard":"Sloupek","cattle_grid":"Přejezdový rošt","chain":"Řetěz","city_wall":"Městské hradby","cycle_barrier":"Cyklistická zábrana","ditch":"Příkop / strouha","entrance":"Vchod","fence":"Plot","gate":"Brána","guard_rail":"Svodidlo","hedge":"Živý plot","height_restrictor":"Omezovač výšky","jersey_barrier":"Betonová bariéra","kerb":"Obrubník","kissing_gate":"Turniketová branka","lift_gate":"Zvedací závora","retaining_wall":"Opěrná zeď","stile":"Schůdky přes ohradu","swing_gate":"Otočná závora","toll_booth":"Mýtná brána","turnstile":"Turniket","wall":"Zeď"}},"barrier_planter":{"label":"Zábrana","options":{"planter":"Ano","undefined":"Ne"}},"basin":{"label":"Typ","options":{"detention":"Vsakovací","evaporation":"Vypařovácí","infiltration":"Infiltrační","retention":"Retenční"}},"bath/open_air":{"label":"Pod širým nebem"},"bath/sand_bath-JP":{"label":"Písečná koupel","terms":"písková lázeň,písečná lázeň,písková koupel"},"bath/type":{"label":"Specialita","options":{"hammam":"Turecká lázeň - Hammam","hot_spring":"Termální pramen","lake":"Jezero","onsen":"Japonský horký pramen - Onsen","thermal":"Termální koupaliště"}},"beauty":{"label":"Služby","options":{"cosmetics":"Kosmetika","hair_removal":"Odstranění vlasů","nails":"Manikúra / Pedikúra","skin_care":"Péče o pleť","spa":"Masážní salon","tanning":"Opalování","waxing":"Voskování"}},"bench":{"label":"Lavička","terms":"místo k sezení,lavička"},"bicycle_parking":{"label":"Typ","options":{"building":"V budově","handlebar_holder":"Držák na řídítka","lockers":"Individuální skříňky","shed":"Uzavíratelný přístřešek","stands":"Stojan (podpírá rám jízdního kola)","wall_loops":"Držák ráfku (drží pouze přední kolo)"}},"bicycle_road":{"label":"Silnice pro bicykly","options":{"undefined":"Ne","yes":"Ano"},"terms":"cyklistický bulvár,cyklostezka,cyklistická ulice,cyklistická cesta,silnice pro kola,kolo"},"bike_ride":{"label":"Parkoviště B+R","terms":"b+r,b a r,vezmi si kolo a jeď,mhd,přestup,dojíždějící,kapacitní,odstavné,hromadná doprava,na kraji města,b + r,parkandride,b/r,vem si kolo a jeď,městská,metro,tram,bus"},"bin":{"label":"Odpadkový koš","terms":"popelnice,koš,odpadkový koš,odpaďák"},"blind":{"label":"Přístup pro nevidomé","options":{"limited":"Omezený","no":"Ne","yes":"Ano"},"terms":"nevidomí,slepí,slepec,slepce,slepci"},"blood_components":{"label":"Odebírané složky","options":{"plasma":"krevní plazma","platelets":"krevní destičky","stemcells":"vzorek kmenových buněk","whole":"krev"}},"board_type":{"label":"Typ","options":{"art":"Umění","astronomy":"Astronomie","geology":"Geologie","history":"Historie","nature":"Příroda","notice":"Oznámení","plants":"Rostliny","welcome_sign":"Uvítací tabule","wildlife":"Divoká zvířata"}},"bollard":{"label":"Typ","options":{"fixed":"Pevný sloupek","flexible":"Flexibilní sloupek","foldable":"Sklápěcí sloupek","removable":"Odstranitelný sloupek","rising":"Vysouvací sloupek"}},"books":{"label":"Typ knih","terms":"žánr knih,knižní žánr,určení knihy,kniha"},"booth":{"label":"Stánek","terms":"stan,prodej,trh,nabídka,poptávka,směna,tržiště,stánky"},"bottle":{"label":"Plnění lahví","terms":"stáčení do lahví,stáčení do flašek,plnění flašek"},"boules":{"label":"Typ"},"boundary":{"label":"Typ"},"branch_brand":{"label":"Pobočka","terms":"odvětví,branže,filiálka,větev"},"brand":{"label":"Značka","terms":"znacka,logo"},"brewery":{"label":"Prodávané značky piva","terms":"značka piva,výčep piva,lahvové pivo,točené pivo,točené,čepované pivo"},"bridge":{"label":"Typ","placeholder":"Výchozí"},"bridge/ref":{"label":"Číslo mostu","terms":"označení mostu,most,označení,číslo"},"bridge/support":{"label":"Typ"},"bridge_combo":{"label":"Typ","options":{"aqueduct":"Akvadukt","boardwalk":"Chodník z prken","cantilever":"Konzolový most","covered":"Krytý most","low_water_crossing":"Most při nízké hladině","movable":"Pohyblivý most","trestle":"Kozlíkový most","viaduct":"Viadukt"}},"building":{"label":"Budova","options":{"allotment_house":"Zahradní dům","apartments":"Budova s byty","barn":"Stodola","boathouse":"Přístřešek pro loď","bungalow":"Bungalov","bunker":"Bunkr","cabin":"Chatka","carport":"Zastřešené stání pro auto","cathedral":"Budova katedrály","chapel":"Budova kaple","church":"Budova kostela","civic":"Budova občanské vybavenosti","college":"Budova vyšší odborné školy/college","commercial":"Komerční budova","construction":"Budova ve výstavbě","container":"Kontejner","cowshed":"Kravín","detached":"Samostatný rodinný dům","dormitory":"Kolej/internát","farm":"Zemědělský dům","farm_auxiliary":"Zemědělská budova","fire_station":"Budova požární zbrojnice","garage":"Garáž","garages":"Budova soukromých garáží","ger":"Jurta","grandstand":"Tribuna","greenhouse":"Skleník","hangar":"Budova hangáru","hospital":"Budova nemocnice","hotel":"Budova hotelu","house":"Rodinný dům","houseboat":"Hausbót","hut":"Chýše","industrial":"Průmyslová budova","kindergarten":"Budova školky/předškolního zařízení","manufacture":"Budova průmyslové výroby","mosque":"Budova mešity","office":"Kancelářská budova","outbuilding":"Přístavba","pavilion":"Sportovní budova se zázemím","public":"Veřejná budova","residential":"Obytná budova","retail":"Prodejna","riding_hall":"Jezdecká aréna","roof":"Střecha","ruins":"Zřícená budova","school":"Budova školy","semidetached_house":"Polovina dvojdomku","service":"Účelová budova","shed":"Kůlna","stable":"Stáj","stadium":"Budova stadionu","static_caravan":"Obytný vůz","sty":"Vepřín","synagogue":"Budova synagogy","temple":"Budova chrámu","terrace":"Řada řadových domů","train_station":"Nádražní budova","transportation":"Dopravní budova","university":"Budova vysoké školy","warehouse":"Skladiště"},"terms":"struktura"},"building/colour":{"label":"Barva fasády","terms":"barva budovy,barva omítky"},"building/flats":{"label":"Jednotky","placeholder":"2, 4, 6, 8..."},"building/levels":{"label":"Patra","placeholder":"2, 4, 6...","terms":"patro,pater,výška,úroveň,budovy,poschodí,podlaží"},"building/levels/underground":{"label":"Podzemní patra","placeholder":"2, 4, 6,...","terms":"úrovně suterénu"},"building/material":{"label":"Materiál","terms":"hmota,struktura"},"building/part":{"label":"Část budovy"},"building/prefabricated":{"label":"Montovaná","terms":"vyrobený,modulární,přenosný"},"bunker_type":{"label":"Typ"},"button_operated":{"label":"Volací tlačítko"},"cabins":{"label":"Sruby","terms":"boudy,chaty,roubenky,roubené stavby,dřevěnice,drevenice,koči,dřevěné domky"},"cables":{"label":"Kabely","placeholder":"1, 2, 3…"},"cai_scale-IT":{"label":"Obtížnost turistické trasy (italský alpský klub)","options":{"E":"E: Pro turisty","EAI":"EAI: Pěší turistika ve sněhových podmínkách","EE":"EE: Pro zkušené turisty","EEA":"EEA: Pro zkušené turisty s vybavením","T":"T: Turistická"},"placeholder":"T, E, EE, …","terms":"alpy,klub,itálie,hory,náročnost,obtížnost,terén,chůze,cesta,silnice,složitost"},"camera/direction":{"label":"Směr (ve stupních po směru hodinových ručiček)","placeholder":"45, 90, 180, 270"},"camera/mount":{"label":"Připevnění kamery"},"camera/type":{"label":"Druh kamery","options":{"dome":"V kupoli","fixed":"Pevná","panning":"Otočná"}},"camp_site":{"label":"Druh","options":{"basic":{"description":"Nic než místo, kde lze postavit stan nebo zaparkovat vozidlo","title":"Základní (pouze místa pro stany/vozidla)"},"deluxe":{"description":"Plně servisované a s dalším vybavením, jako je prádelna, bazén nebo podobná rekreační zařízení.","title":"Deluxe (nabízí prádelnu nebo bazén atd.)"},"serviced":{"description":"K dispozici jsou toalety, voda, sprchy a elektřina.","title":"Obsluhované (nabízí sprchy a elektřinu)"},"standard":{"description":"V blízkosti jsou k dispozici toalety a voda.","title":"Standardní (nabízí toalety a vodu)"}}},"capacity":{"label":"Kapacita","placeholder":"50, 100, 200...","terms":"objem,maximální,největší,nejvíce,limit,omezení"},"capacity/caravans":{"label":"Kapacita (karavanů / obytných přívěsů)","placeholder":"10, 20, 50, …"},"capacity/disabled_parking":{"label":"Místo pro invalidy","placeholder":"1, 2, 3..."},"capacity/persons":{"label":"Kapacita (osoby)","placeholder":"50, 100, 200, …"},"capacity/tents":{"label":"Kapacita (stany)","placeholder":"10, 20, 50, …"},"capacity_parking":{"label":"Všech míst","placeholder":"10, 20, 30..."},"capacity_volume":{"label":"Objem (metry krychlové)","placeholder":"50, 100, 200..."},"caravans":{"label":"Karavany / obytné přívěsy","terms":"tábor,táborník,karavan,turista"},"cash_in":{"label":"Vklady"},"castle_type":{"label":"Druh","options":{"castrum":"Castrum","defensive":"Hrad","fortress":"Pevnost","hillfort":"Hradiště","kremlin":"Kreml","manor":"Kaštel","palace":"Palác","shiro":"Shiro","stately":"Zámek"}},"ceremonial_gate":{"label":"Druh","options":{"hongsalmun":"Hongsalmun","iljumun":"Iljumun","paifang":"Paifang","torii":"Torii (šintoistická brána)"}},"changing_table":{"label":"Stůl na výměnu plenek","terms":"stůl na pleny,stůl na přebalování miminek,stůl na přebalení,pleny,plenky,plínky,miminko"},"charge_fee":{"label":"Cena","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"poplatek,sazba,platit,zaplatit,částka"},"charge_toll":{"label":"Mýto","placeholder":"1 EUR, 5 USD, 10 JPY…","terms":"mýtné,poplatek,cena,sazba,platit,zaplatit,částka,dálniční,dálnici,cesty"},"check_date":{"label":"Datum poslední kontroly","placeholder":"RRRR-MM-DD","terms":"datum průzkumu,datum posledního průzkumu"},"circumference":{"label":"Obvod (ve výšce prsou)","placeholder":"1 m, 20 cm, 30\"…","terms":"poprsí,průměr ve výšce prsou"},"climbing/bolts":{"label":"Počet skob/borháků"},"climbing/grade/french":{"label":"Obtížnost (Francouzská stupnice)","placeholder":"5c","terms":"lezecká obtížnost"},"climbing/grade/saxon":{"label":"Obtížnost (Saská)","placeholder":"VIIa","terms":"lezecká obtížnost"},"climbing/grade/uiaa":{"label":"Obtížnost (UIAA)","placeholder":"6-","terms":"lezecká obtížnost"},"climbing/grade/yds_class":{"label":"Obtížnost (YDS/USA)","placeholder":"5.10a","terms":"lezecká obtížnost"},"climbing/length":{"label":"Délka (v metrech)","terms":"délka v metrech,dlouhý,rozměr délky,délka"},"climbing/sport":{"label":"Sportovní lezení (zajištěné)"},"climbing/trad":{"label":"Tradiční lezení"},"clothes":{"label":"Oblečení","options":{"babies":"Kojenecké oblečení","children":"Dětské oblečení","denim":"Džínové oblečení","fur":"Kožešinové oblečení","hats":"Klobouky","maternity":"Těhotenské oblečení","men":"Pánské oblečení","motorcycle":"Motocyklové oblečení","oversize":"Nadměrná velikost","socks":"Ponožky","sports":"Sportovní oblečení","suits":"Obleky","swimwear":"Plavky","traditional":"Tradiční oděvy / lidové kroje","underwear":"Spodní prádlo","wedding":"Svatební oblečení","women":"Dámské oblečení","workwear":"Pracovní oblečení"},"terms":"šaty,textil,oděv"},"club":{"label":"Druh"},"collection_times":{"label":"Čas výběru","terms":"čas sběru,sběr,doba"},"collector":{"label":"Druh předmětů","options":{"coins":"Mince","comics":"Komiksy","stamps":"Známky"}},"colour":{"label":"Barva","terms":"odstín,barvy,barevný,nátěr,vzhled"},"comment":{"label":"Komentář ke změnám","placeholder":"Stručný popis vašich úprav (povinné)"},"communication_multi":{"label":"Druh komunikace","terms":"druh komunikace,cesta,typ,druh,druhy,silnice,cesty"},"community_centre":{"label":"Druh","options":{"club_home":"Klubovna","community_hall":"Společenský sál","cultural_centre":"Kulturní centrum","family_centre":"Rodinné centrum","parish_hall":"Farní síň","village_hall":"Obecní sál","youth_centre":"Centrum pro mládež"}},"connectivity":{"label":"Připojení"},"construction":{"label":"Druh"},"consulate":{"label":"Druh","options":{"consular_agency":"Úřad pro konzulární služby","consular_office":"Kancelář konzulárních služeb","consulate_general":"Generální konzulát","honorary_consul":"Honorární konzul","residence":"Úřední sídlo konzula","yes":"Konzulát"}},"consulting":{"label":"Odbornost"},"contact/facebook":{"label":"Uživatelské jméno Facebooku nebo URL","placeholder":"https://www.facebook.com/LocalBusiness","terms":"facebook,uživatelské jméno facebooku,url,url adresa,adresa url,jméno,uživatel facebooku"},"contact/webcam":{"label":"URL webkamery","placeholder":"http://priklad.cz/"},"content":{"label":"Obsah"},"conveying":{"label":"Směr pohybu","options":{"backward":"Pozadí","forward":"Dopředu","reversible":"Reverzibilní"}},"conveying_escalator":{"label":"Jezdící schody"},"count":{"label":"Počet prvků"},"country":{"label":"Stát"},"country_flag":{"label":"Reprezentovaná země"},"couplings":{"label":"spojka","placeholder":"1, 2, 3…"},"covered":{"label":"Zastřešeno","terms":"zastřešený,zastřešené,střecha,kryté,kryt,zakryté"},"covered_no":{"options":{"no":"Ne","undefined":"Implicitně Ne","yes":"Ano"}},"craft":{"label":"Druh","options":{"agricultural_engines":"Výrobce zemědělských strojů","basket_maker":"Košíkář","beekeeper":"Včelař","blacksmith":"Kovář","boatbuilder":"Loďař","bookbinder":"Knihař","brewery":"Pivovar","builder":"Stavitel","carpenter":"Tesař","carpet_layer":"Pokladač koberců","caterer":"Catering","chimney_sweeper":"Kominík","cleaning":"Úklidová služba","clockmaker":"Hodinář","confectionery":"Cukrář","distillery":"Lihovar","dressmaker":"Švadlena","electrician":"Elektrikář","electronics_repair":"Opravna elektroniky","floorer":"Podlahář","gardener":"Zahradník","glaziery":"Práce se sklem","grinding_mill":"Mlýn","handicraft":"Řemeslník","hvac":"Topenář, vzduchotechnik","insulation":"Firma na izolace","jeweller":"Klenotník","joiner":"Truhlář","key_cutter":"Výroba klíčů","locksmith":"Zámečník","metal_construction":"Kovovýroba","oil_mill":"Lisovna","painter":"Malíř","parquet_layer":"Pokladač parket","photographer":"Fotograf","photographic_laboratory":"Fotografická laboratoř","plasterer":"Štukatér","plumber":"Instalatér","pottery":"Hrnčířství","rigger":"Výroba takeláže","roofer":"Pokrývač","saddler":"Sedlář","sailmaker":"Výroba plachet","sawmill":"Pila","scaffolder":"Lešenář","sculptor":"Sochař","shoemaker":"Švec","signmaker":"Výrobce cedulí","stonemason":"Kameník","tailor":"Krejčovství","tiler":"Obkladač","tinsmith":"Klempíř","upholsterer":"Čalouník","watchmaker":"Hodinář","window_construction":"Výroba oken","winery":"Vinař"}},"crane/type":{"label":"Druh jeřábu","options":{"floor-mounted_crane":"Sloupový jeřáb","gantry_crane":"Portálový jeřáb","portal_crane":"Přístavní jeřáb","tower_crane":"Věžový jeřáb","travel_lift":"Přepravní jeřáb"}},"crop":{"label":"Plodina","options":{"asparagus":"Chřest","barley":"Ječmen","beet":"Řepa","cassava":"Maniok","coffee":"Káva","cotton":"Bavlna","cranberries":"Brusinky","fast_growing_wood":"Rychlerostoucí dřeviny","flowers":"Květiny","grape":"Hrozny","grass":"Tráva","hop":"Chmel","lavender":"Levandule","maize":"Kukuřice","potato":"Brambory","rape":"Řepka","rice":"Rýže","soy":"Sójové boby","strawberry":"Jahody","sugar_beet":"Cukrová řepa","sugarcane":"Cukrová třtina","sunflower":"Slunečnice","tea":"Čaj","tobacco":"Tabák","vegetable":"Zelenina","wheat":"Pšenice"}},"crossing":{"label":"Druh","options":{"traffic_signals":"Přechod se semafory","uncontrolled":"Pouze silniční značení","unmarked":"Žádné silniční značení nebo semafory"}},"crossing/barrier":{"label":"Břevno závory","options":{"double_half":"Z obou stran","full":"Plné","half":"Polovina","no":"Ne","yes":"Ano"}},"crossing/bell":{"label":"Zvonek"},"crossing/island":{"label":"Ostrůvek pro chodce"},"crossing/light":{"label":"Světla"},"crossing/markings":{"label":"Označení přechodu pro chodce","options":{"dashes":"Přerušované příčné čáry","dots":"Tečkované příčné čáry","ladder":"Žebřík s podélnými pruhy","ladder:paired":"Žebřík s podélnými párovými tyčemi","ladder:skewed":"Žebřík se šikmými pruhy","lines":"Příčné čáry","lines:paired":"Dvojité příčné čáry","no":"Neoznačený","pictograms":"Namalované piktogramy","surface":"Pouze povrchová úprava","yes":"Označeno něčím","zebra":"Podélné obdélníky (zebra)","zebra:bicolour":"Podélné obdélníky s druhou barvou","zebra:double":"Podélné obdélníky s rozdělením uprostřed","zebra:paired":"Párové podélné tyče"},"terms":"značení přechodu,přechod pro chodce"},"crossing_raised":{"label":"Zvýšený","options":{"table":"Ano","undefined":"Ne"}},"cuisine":{"label":"Kuchyně","options":{"african":"Africká","american":"Americká","arab":"Arabská","argentinian":"Argentinská","asian":"Asijská","bagel":"Bagel","balkan":"Balkánská","barbecue":"Barbecue / Gril","bavarian":"Barorská","beef_bowl":"Gyūdon","bistro":"Bistro","brazilian":"Brazilská","breakfast":"Snídaně","brunch":"Pozdní snídaně","bubble_tea":"Perlivý čaj","burger":"Burger","cake":"Zákusek","caribbean":"Karibská","chicken":"Kuřecí","chinese":"Čínská","coffee_shop":"Kavárna","crepe":"Krep","curry":"Kari","dessert":"Dezerty","diner":"Večeře","donut":"Donuty","european":"Evropská","filipino":"Filipínská","fine_dining":"Dobré jídlo","fish":"Ryba","fish_and_chips":"Ryby a hranolky","french":"Francouzská","fries":"Hranolky","friture":"Friterie","frozen_yogurt":"Mražený jogurt","georgian":"Gruzínská","german":"Německá","greek":"Řecká","grill":"Bar a gril","hawaiian":"Havajská","hot_dog":"Párek v rohlíku","ice_cream":"Zmrzlina","indian":"Indická","indonesian":"Indonéská","italian":"Italská","japanese":"Japonská","juice":"Džusy","kebab":"Kebab","korean":"Korejská","lebanese":"Libanonská","malaysian":"Malajská","mediterranean":"Středozemní","mexican":"Mexická","middle_eastern":"Blízkovýchodní","moroccan":"Marocká","noodle":"Nudle","oriental":"Orientální","pancake":"Lívance","pasta":"Těstoviny","pastry":"Pečivo","persian":"Perská","peruvian":"Peruánská","pizza":"Pizza","polish":"Polská","portuguese":"Portugalská","ramen":"Ramen","regional":"Místní","russian":"Ruská","salad":"Saláty","sandwich":"Sendvič","sausage":"Párky","seafood":"Mořské plody","shawarma":"Šavarma","soba":"Soba","soup":"Polévka","spanish":"Španělská","steak_house":"Steaková restaurace","sushi":"Suši","taiwanese":"Tchajwanská","tapas":"Tapas","tea":"Čaj","tex-mex":"Tex-Mex","thai":"Thajská","turkish":"Turecká","udon":"Udon","ukrainian":"Ukrajinská","vietnamese":"Vietnamská","western":"Západní","wings":"Kuřecí křídla"},"terms":"kuchyně,strava,druhy jídel,typ kuchyně"},"currency_multi":{"label":"Druhy měn","terms":"bankovky,hotovost,mince,peníze,měny,druh měny"},"cutting":{"label":"Typ","placeholder":"Výchozí"},"cycle_barrier":{"label":"Typ","options":{"diagonal":"Úhlopříčně","double":"Dvojitá","single":"Samostatná","tilted":"Nakloněný","triple":"Trojitá"}},"cycle_barrier/installation":{"label":"Instalace","options":{"fixed":"Pevná","openable":"Otevírací","removable":"Odstranitelné"},"terms":"instalace,typ instalace,zabudování,typ upevnění"},"cycle_network":{"label":"Síť"},"cycleway":{"label":"Cyklopruhy","options":{"lane":{"description":"Jízdní pruh pro cyklisty oddělený podélnou čarou","title":"Normální cyklopruh"},"no":{"description":"Bez cyklopruhu","title":"Žádné"},"opposite":{"description":"Aktualizujte prosím pomocí oneway=yes, oneway:bicycle=no a cycleway:both=no atd.","title":"(Zrušeno) Protisměrný cyklistický pruh"},"opposite_lane":{"description":"Aktualizujte prosím pomocí oneway, oneway:bicycle, a cycleway:left/right=lane atd.","title":"(Zrušeno) Protější cyklistický pruh"},"separate":{"description":"Označuje, že cyklostezka byla zmapována jako samostatná cesta.","title":"Cyklostezka zmapována samostatně"},"share_busway":{"description":"Jízdní pruh sdílený cyklisty, autobusy a případně taxi","title":"Pruh sdílený s autobusy"},"shared_lane":{"description":"Vyznačený doporučený průjezd cyklistů v jízdním pruhu","title":"Sdílený cyklopruh"},"track":{"description":"Jízdní pruh oddělený od ostatního provozu fyzickou bariérou","title":"Cyklostezka"}},"placeholder":"Pruh, stezka, obousměrný, …","terms":"pruh pro cyklisty,jízdní pruh,cyklistický pruh,pás,kolo,cyklista,stezka","types":{"cycleway:left":"Po levé straně","cycleway:right":"Po pravé straně"}},"dance/style":{"label":"Taneční styly"},"dance/teaching":{"label":"Nabídka tanečních lekcí"},"date":{"label":"Datum"},"defibrillator/location":{"label":"Popis umístění"},"deflection":{"label":"Úhel"},"delivery":{"label":"Rozvoz","terms":"zásobování,obsluha,dopravní obsluha,dovoz,doručování,dodávka"},"denomination":{"label":"Vyznání","terms":"náboženský směr,náboženství,směr,donominace,upřesnění,církev,druh"},"denotation":{"label":"Označení","terms":"značení,označit,značka"},"departures_board":{"label":"Tabule odjezdů/příjezdů","options":{"no":"Žádná","realtime":"V reálném čase","timetable":"Jízdní řády (tištěné)","yes":"Ano"}},"deposit/trolley":{"label":"Vklad"},"depot":{"label":"Typ"},"depth":{"label":"Hloubka (v metrech)"},"descent":{"label":"Celkový sestup","terms":"sestup,kumulativní převýšení"},"description":{"label":"Popis","terms":"souhrn"},"design":{"label":"Design"},"destination":{"label":"Směry"},"destination/ref":{"label":"Čísla silnic v daném směru"},"destination/symbol":{"label":"Piktogramy cílů"},"destination_waterway":{"label":"Směr"},"devices":{"label":"Zařízení","placeholder":"1, 2, 3…"},"diameter":{"label":"Průměr","placeholder":"5 mm, 10 cm, 15 in…","terms":"velikost kruhu,šířka kruhu"},"diameter_crown":{"label":"Průměr koruny","placeholder":"4 m, 9', …","terms":"průměr,velikost koruny,šířka koruny"},"diet_multi":{"label":"Druhy diet","options":{"gluten_free":"Bezlepková","halal":"Halal","kosher":"Košer","lactose_free":"Bezlaktózová","pescetarian":"Pescovegetariánská","vegan":"Veganská","vegetarian":"Vegetariánská"},"terms":"bezlepkové,ovocné,halal,košer,bez laktózy,maso,pescovegetariánské,syrové,veganské,vegetariánské"},"diplomatic":{"label":"Typ","options":{"consulate":"Konzulát","embassy":"Velvyslanectví","liaison":"Styčný úřad"}},"diplomatic/services":{"label":"Služby"},"direction":{"label":"Směr (stupně po směru hod. ručiček)","placeholder":"45, 90, 180, 270","terms":"stupně ve směru hodinových ručiček,stupňů,sklon,orientace,kompas,směr,otočení,natočení,poloha"},"direction_cardinal-US-CA-NZ":{"label":"Směr","options":{"east":"Na východ","north":"Na sever","south":"Na jih","west":"Na západ"},"terms":"kurz,vedení,řízení"},"direction_clock":{"label":"Směr","options":{"anticlockwise":"Proti směru hodinových ručiček","clockwise":"Ve směru hodinových ručiček"}},"direction_point":{"placeholder":"45, 90, 180, 270"},"direction_vertex":{"label":"Dotčený směr","options":{"backward":"Zpátky","both":"Oba/všechny směry","forward":"Dopředu"},"terms":"směr,ovlivněný,řízený,vedený,řízení,vedení"},"dispensing":{"label":"Léky na předpis"},"display":{"label":"Zobrazení","options":{"analog":"Analogový","digital":"Digitální","sundial":"Sluneční hodiny","unorthodox":"Nekonvenční"}},"distance":{"label":"Vzdálenost","terms":"délka,ujeté kilometry"},"disused/amenity":{"label":"Typ"},"disused/railway":{"label":"Typ"},"disused/shop":{"label":"Typ"},"dock":{"label":"Typ","options":{"drydock":"Suchý dok","floating":"Plovoucí suchý dok","tidal":"Ponorný přílivový dok"}},"dock/height":{"label":"Výška doku (metry)","terms":"výška v metrech,rozměr doku,dok,výška,rozměr,velikost,metr,velikost doku"},"dock/width":{"label":"Šířka doku (metry)","terms":"šířka v metrech,rozměr doku,dok,šířka,rozměr,velikost,metr,velikost doku"},"dog":{"label":"Psi","options":{"leashed":"Pouze na vodítku","no":"Zakázáno","unleashed":"Vodítka nejsou vyžadována","yes":"Povoleno"},"terms":"zvířata,mazlíčci"},"dog_check":{"label":"Vhodné pro psy","terms":"pro psy,psí,pro zvířata,zvířecí,psi,pes,pro mazlíčky"},"door":{"label":"Dveře"},"door/height":{"label":"Výška dveří (metry)","terms":"výška v metrech,rozměr dveří,dveře,výška,rozměr,velikost,metr,velikost dveří"},"door/width":{"label":"Šířka dveří (metry)","terms":"šířka v metrech,rozměr dveří,dveře,šířka,rozměr,velikost,metr,velikost dveří"},"door_type":{"label":"Typ"},"drink_multi":{"label":"Nápoje"},"drinking_water":{"label":"Pitná","terms":"pitné,pitelné"},"drinking_water_available":{"label":"Pitná voda k dispozici","terms":"pitné,pitelné"},"drive_through":{"label":"Obsluha z/do auta","terms":"projíždějícím,okénko,výdejní okénko,okno,průjezd,s sebou,z auta,z vozu"},"duration":{"label":"Trvání","placeholder":"00:00","terms":"délka trvání,doba,průběh,čas,rozmezí"},"education":{"label":"Typ","options":{"college":"Vyšší/vysoká odborná škola/college","dancing_school":"Taneční škola","driving_school":"Autoškola","kindergarten":"Mateřská škola","language_school":"Jazyková škola","music_school":"Hudební škola","prep_school":"Doučovací škola","school":"Škola","university":"Univerzita"}},"ele":{"label":"Nadmořská výška (v metrech)","terms":"nadmořská výška,výška"},"electrified":{"label":"Elektrifikace","options":{"contact_line":"Trolejové vedení","no":"Ne","rail":"Napájecí kolejnice","yes":"Ano (nespecifikováno)"},"placeholder":"Trolejové vedení, napájecí kolejnice...","terms":"trolejové vedení,napájené,třetí kolej"},"email":{"label":"E-mail","placeholder":"priklad@priklad.cz","terms":"adresa,pošta,elektronická,email,e mail,mail,zpráva,poslat,komunikace"},"embankment":{"label":"Typ","placeholder":"Výchozí"},"embassy":{"label":"Typ","options":{"branch_embassy":"Pobočka velvyslanectví","delegation":"Delegace","high_commission":"Vysoký komisař","interests_section":"Sekce zájmů","mission":"Diplomatická mise","nunciature":"Diplomatická mise Svatého stolce","residence":"Oficiální sídlo velvyslance","yes":"Ambasáda"}},"emergency":{"label":"Urgentní příjem"},"emergency_combo":{"label":"Typ"},"emergency_ward_entrance":{"label":"Typ"},"enforcement":{"label":"Typ"},"entrance":{"label":"Typ","options":{"emergency":"Únikový východ","entrance":"Pouze vchod","exit":"Pouze východ","garage":"Garážová vrata","home":"Soukromý dům nebo byt","main":"Hlavní","secondary":"Sekundární","service":"Účelový","shop":"Vchod do obchodu","staircase":"Schodiště","yes":"Nespecifikováno"},"terms":"typ vchodu,druh vchodu,typ vstupu,druh vstupu"},"except":{"label":"Výjimky"},"expected_rcn_route_relations":{"label":"Přilehlé cyklistické body"},"expected_rwn_route_relations":{"label":"Přilehlé pěší body"},"expressway-US":{"label":"Dálnice","terms":"dálniční,dopravní tepna,dálková silnice"},"faces":{"label":"Stěny"},"fax":{"label":"Fax","placeholder":"+420 123 456 789","terms":"pošta,zpráva,poslat,komunikace"},"fee":{"label":"Poplatek","terms":"cena,sazba,platit,zaplatit,zpoplatněno,placené,zdarma,neplacené"},"fence_type":{"label":"Typ"},"fhrs/id-GB":{"label":"FHRS ID","terms":"schéma hodnocení hygieny potravin,systém hodnocení hygieny potravin,agentura pro potravinářské standardy"},"fire_hydrant/diameter":{"label":"Průměr (mm, palce nebo písmena)","terms":"průměr,míra,rozměr,velikost,mm,in,cm,metrů,velké"},"fire_hydrant/position":{"label":"Pozice","options":{"green":"Zeleň/Tráva","lane":"Pruh silnice","parking_lot":"Parkoviště","sidewalk":"Chodník podél vozovky"}},"fire_hydrant/pressure":{"label":"Tlak (bary)","terms":"tlak,bar,stlačený,vzduch,tlaková"},"fire_hydrant/type":{"label":"Tvar","options":{"pillar":"Nadzemní","pipe":"Zakrytá trubka","underground":"Podzemní","wall":"Nástěnný"}},"fire_mains":{"label":"Druh sítě","options":{"dry":"Vyhrazená síť (normálně suchá)","no":"Ne","wet":"Připojeno k síti (trvale připojeno)","yes":"Neznámý druh"}},"fire_service_inlet":{"label":"Tvar","options":{"pillar":"Sloup/pozemek","pipe":"Potrubí s uzávěrem","underground":"Podzemní","wall":"Stěna"},"terms":"obrys,hydrant,sloup,potrubí,podzemní,požární"},"fire_sprinkler":{"label":"Vstup požárního postřikovače","options":{"dry":"Vyhrazená síť (normálně suchá)","no":"Ne","pre-action":"Připojeno k síti (systém před akcí)","wet":"Připojeno k síti (trvale připojeno)","yes":"Neznámý druh"}},"fireplace":{"label":"Krb"},"fishing":{"label":"Rybaření","terms":"ryby,rybařit,rybník,k rybaření,ryba,prut,muškaření,lovení,chytání ryb,kapr"},"fitness_station":{"label":"Typ zařízení"},"fixme":{"label":"Opravit","terms":"žádost o pomoc"},"flag/name":{"label":"Jméno vlajky"},"flag/type":{"label":"Typ vlajky"},"flag/wikidata":{"label":"Wikidata vlajky"},"flashing_lights":{"label":"Blikající světla","options":{"always":{"description":"Světla stále blikají","title":"Stále blikají"},"button":{"description":"Světla aktivována stisknutím tlačítka","title":"Aktivováno tlačítkem"},"button;sensor":{"description":"Světla aktivována senzorem nebo stisknutím tlačítka","title":"Aktivováno tlačítkem nebo senzorem"},"no":"Ne","sensor":{"description":"Světla aktivována stisknutím senzoru","title":"Aktivováno senzorem"},"yes":"Ano"},"terms":"blikačky,blikání,blikat,přerušovaná světla"},"floating":{"label":"Plovoucí"},"flood_prone":{"label":"Náchylnost k povodním","terms":"záplavová oblast,ohroženo záplavami,vodou ohroženo,povodeň,záplava,potopa,pod vodou,zaplavované,zaplavené"},"footrest":{"label":"Opěrka nohy"},"ford":{"label":"Typ","placeholder":"Výchozí"},"fortification_type":{"label":"Typ opevnění"},"fountain":{"label":"Typ"},"frequency":{"label":"Provozní frekvence","terms":"frekvence,hz,mhz,kmitočet,hertz,proud,střídavý"},"from":{"label":"Z"},"fuel":{"label":"Palivo"},"fuel/fuel_multi":{"label":"Typy paliv","options":{"GTL_diesel":"Syntetická nafta GTL","HGV_diesel":"Nafta pro těžká nákladní vozidla","LH2":"Tekutý vodík","adblue":"AdBlue / AUS 32","adblue:canister":"AdBlue / AUS 32 (prodávaný v kanystrech)","biodiesel":"Bionafta","cng":"Stlačený zemní plyn (CNG)","diesel":"Nafta","e10":"Benzín E10","e5":"Benzín E5","e85":"Benzín E85","h70":"Plynný vodík (700 barů)","lng":"Zkapalněný zemní plyn (LNG)","lpg":"Zkapalněný ropný plyn (LPG)","octane_100":"Benzín (100 oktanový)","octane_80":"Benzín (80 oktanový)","octane_85":"Benzín (85 oktanový)","octane_87":"Benzín (87 oktanový)","octane_88":"Benzín (88 oktanový)","octane_89":"Benzín (89 oktanový)","octane_90":"Benzín (90 oktanový)","octane_91":"Benzín (91 oktanový)","octane_92":"Benzín (92 oktanový)","octane_93":"Benzín (93 oktanový)","octane_95":"Benzín (95 oktanový)","octane_97":"Benzín (97 oktanový)","octane_98":"Benzín (98 oktanový)","propane":"Propan"}},"gambling":{"label":"Hry"},"garden/type":{"label":"Typ zahrady"},"gauge":{"label":"Rozchod"},"gender":{"label":"Pohlaví","options":{"female":"Ženy","male":"Muži","unisex":"Muži i ženy"},"placeholder":"Neznámé","terms":"přístup,muž,žena,unisex"},"generator/method":{"label":"Princip","options":{"anaerobic_digestion":"Anaerobní digesce","barrage":"Přílivová přehrada","combustion":"Spalování","fission":"Štěpení","fusion":"Fúze","gasification":"Zplyňování","photovoltaic":"Fotovoltaická","run-of-the-river":"Průběh řeky","stream":"Přílivový proud","thermal":"Solární termální","water-pumped-storage":"Přečerpávací nádrž","water-storage":"Vodní nádrž","wind_turbine":"Větrná turbína"}},"generator/output/electricity":{"label":"Výkon","placeholder":"500kW, 100MW, 200MW…"},"generator/source":{"label":"Zdroj","options":{"battery":"Baterie","biofuel":"Rostlinná paliva","biogas":"Bioplyn","biomass":"Rostlinná hmota","coal":"Uhlí","diesel":"Nafta","gas":"Zemní plyn","gasoline":"Benzín","geothermal":"Geotermální energie","hydro":"Vodní energie","nuclear":"Jaderná energie","oil":"Ropa","solar":"Solární radiace","tidal":"Energie přílivu a odlivu","waste":"Odpad","wave":"Vlnová energie","wind":"Vítr"}},"generator/type":{"label":"Typ"},"genus":{"label":"Rod","placeholder":"Acer, Platanus, Quercus …","terms":"rostlinný rod,živočišný rod,rodové jméno"},"geyser/height":{"label":"Výška výtrysku"},"gnis/feature_id-US":{"label":"ID prvku GNIS","terms":"informační služba o federálních zeměpisných názvech,deska spojených států pro zeměpisná jména,usa"},"government":{"label":"Typ"},"grades":{"label":"Stupně studia"},"grape_variety":{"label":"Odrůda vína"},"group_only":{"label":"Pouze pro skupiny","terms":"pouze skupinové,jen pro skupiny,seskupení,skupina,více lidí,mnoho,osob"},"guest_house":{"label":"Typ"},"handicap":{"label":"Handicap","placeholder":"1-18"},"handrail":{"label":"Zábradlí","terms":"ruka,opěra,schody"},"handrest":{"label":"Opěrka ruky"},"hashtags":{"label":"Hashtagy","placeholder":"#příklad"},"hazard_boundary":{"label":"Ohrožení","options":{"archery_range":"Šípy","avalanche":"Lavina","biohazard":"Biohazard","contamination":"Chemická kontaminace","electricity":"Elektrický šok","hole":"Díra","minefield":"Minové pole","nuclear":"Jaderné / radioaktivní","quicksand":"Pohyblivý písek","shooting_range":"Střelba"}},"healthcare":{"label":"Typ","options":{"alternative":"Alternativní medicína","audiologist":"Ušní","birthing_centre":"Porodnice","blood_bank":"Krevní banka","blood_donation":"Centrum dárcovství krve","clinic":"Poliklinika","community_health_worker":"Komunitní zdravotnický pracovník","counselling":"Zdravotní poradna","dentist":"Zubař","dialysis":"Dialyzační středisko","doctor":"Lékař","hospice":"Hospic","hospital":"Nemocnice","laboratory":"Zdravotnická laboratoř","midwife":"Porodní bába","nurse":"Zdravotní sestra","occupational_therapist":"Ergoterapeut","optometrist":"Optik","pharmacy":"Lékárna","physiotherapist":"Fyzioterapeut","podiatrist":"Podiatr","psychotherapist":"Psychoterapeut","rehabilitation":"Rehabilitační středisko","sample_collection":"Zařízení pro odběr vzorků","speech_therapist":"Logoped","vaccination_centre":"Očkovací centrum"}},"healthcare/speciality":{"label":"Specializace","options":{"abortion":"Potrat","acupuncture":"Akupunktura","allergology":"Alergie a astma","anaesthetics":"Anesteziologie a resuscitace","angiology":"Angiologie","anthroposophical":"Antroposofická medicína","applied_kinesiology":"Aplikovaná kineziologie","aromatherapy":"Aromaterapie","ayurveda":"Ájurvéda","behavior":"Behaviorální terapie","biochemistry":"Klinická biochemie","biology":"Biologie","blood_check":"Krevní test","body":"Tělní terapie","cardiology":"Kardiologie","cardiothoracic_surgery":"Kardiotorakální chirurgie","child_psychiatry":"Dětská a dorostová psychiatrie","chiropractic":"Chiropraktik","clinical_pathology":"Klinická patologie","community":"Hygiena a epidemiologie","dental_oral_maxillo_facial_surgery":"Zubní, ústní a maxilofaciální chirurgie","depth":"Hlubinná psychologie","dermatology":"Dermatologie","dermatovenereology":"Dermatovenereologie","diabetology":"Diabetologie","diagnostic_radiology":"Radiologie a zobrazovací metody","emergency":"Urgentní medicína","endocrinology":"Endokrinologie","fertility":"Plodnost","gastroenterology":"Gastroenterologie","general":"Praktická praxe","geriatrics":"Geriatrická medicína","gynaecology":"Porodnice a gynekologie","haematology":"Hematologie","hepatology":"Hematologie a transfúzní lékařství","herbalism":"Bylinářství","homeopathy":"Homeopatie","humanistic":"Humanistická psychologie","hydrotherapy":"Hydroterapie","hypnosis":"Hypnóza","infectious_diseases":"Infekční nemoc","intensive":"Intenzivní péče","internal":"Vnitřní lékařství","naturopathy":"Naturopatie","neonatology":"Neonatologie","nephrology":"Nefrologie","neurology":"Neurologie","neuropsychiatry":"Neuropsychiatrie","neurosurgery":"Neurochirurgie","nuclear":"Nukleární medicína","occupational":"Pracovní lékařství","oncology":"Onkologie","ophthalmology":"Oftalmologie","orthodontics":"Ortodoncie","orthopaedics":"Ortopedická chirurgie","osteopathy":"Osteopatie","otolaryngology":"Ušní, nosní a krční","paediatric_surgery":"Pediatrická chirurgie","paediatrics":"Pediatrie","palliative":"Paliativní péče","pathology":"Patologie","physiatry":"Rehabilitační a fyzikální medicína","plastic_surgery":"Plastická chirurgie","podiatry":"Podiatrie","proctology":"Kolorektální chirurgie","psychiatry":"Psychiatrie","pulmonology":"Tuberkulóza a respirační nemoci","radiology":"Radiologie","radiotherapy":"Radioterapie","reflexology":"Reflexologie","reiki":"Reiki","rheumatology":"Revmatologie","shiatsu":"Šiacu","stomatology":"Stomatologie","surgery":"Všeobecná chirurgie","systemic":"Systematická chirurgie","traditional_chinese_medicine":"Tradiční čínská medicína","transplant":"Transplantační chirurgie","trauma":"Traumatická chirurgie","tropical":"Tropická medicína","tuina":"Tuī ná","unani":"Unani medicína","urology":"Urologie","vaccination":"Očkování","vascular_surgery":"Cévní chirurgie"}},"heating":{"label":"Vytápění"},"height":{"label":"Výška (m)","terms":"výška v metrech,vysoký,strop,podjezd,omezení výšky,výška,rozměr,velikost,metr"},"height/hub":{"label":"Výška náboje (v metrech)","terms":"výška náboje,výška větrné turbíny"},"height_building":{"label":"Výška budovy (metry)","terms":"výška v metrech,vysoký,výška,rozměr,velikost,metr,věž,budova,výška budovy"},"highchair":{"label":"Vysoká židle","terms":"podsedák,sedátko,židlička na krmení,dětská židlička"},"highspeed":{"label":"Vysokorychlostní","terms":"rychlá,rychlost,svižný,dráha,vrt,železnice,vlak,dálkový"},"highway":{"label":"Typ"},"highway_cartpath":{"label":"Typ cesty","options":{"path":"Stezka pro vozítka","service":"Účelová komunikace"}},"historic":{"label":"Typ","options":{"archaeological_site":"Archeologické naleziště","bomb_crater":"Kráter po bombě","boundary_stone":"Hraniční kámen","building":"Historická stavba","castle":"Zámek","charcoal_pile":"Hromada dřevěného uhlí","church":"Kostel","city_gate":"Městská brána","citywalls":"Městské hradby","fort":"Historická pevnost","manor":"Panský dům","memorial":"Památník","milestone":"Milník","millstone":"Mlýnský kámen","mine":"Důl","mine_shaft":"Důlní šachta","monument":"Monument","pillory":"Historické sloupoví","railway":"Železnice","ruins":"Ruiny","shieling":"Pastevecká chýše","tomb":"Hrobka","wayside_cross":"Kříž u cesty","wayside_shrine":"Svatostánek u cesty","wreck":"Vrak lodi"}},"historic/civilization":{"label":"Historická civilizace"},"historic/wreck/date_sunk":{"label":"Datum potopení"},"historic/wreck/visible_at_high_tide":{"label":"Viditelné při přílivu"},"historic/wreck/visible_at_low_tide":{"label":"Viditelné při odlivu"},"holding_position/type":{"label":"Typ","options":{"ILS":"Instrument Landing System","intermediate":"Křížení pojezdových drah","runway":"Vzletová a přistávací dráha"}},"hoops":{"label":"Počet košů","placeholder":"1, 2, 4..."},"horse_riding":{"label":"Jezdecké centrum","options":{"horse_riding":"Ano","undefined":"Ne"}},"horse_scale":{"label":"Obtížnost jízdy na koni","options":{"common":"Snadné: Žádné problémy nebo potíže. (výchozí nastavení)","critical":"Hraniční: Pouze pro zkušené jezdce a koně. Zjevné překážky. Mosty by měly být pečlivě zkontrolovány.","dangerous":"Nebezpečné: Udržitelné pouze pro zkušené jezdce a koně a pouze za dobrého počasí. Sesednout.","demanding":"Používejte s opatrností: Nerovná cesta, občas těžké průchody.","difficult":"Obtížné: cesta úzká a odkrytá. Může obsahovat překážky na cestě a těsné průchody.","impossible":"Neprůchodné: cesta nebo most nevhodný pro koně. Příliš úzká, nedostatečná podpora, překážky jako žebříky. Ohrožení života."},"placeholder":"Obtížné, nebezpečné…","terms":"koně,obtížnost,jízda na koni,náročnost,kůň,koňská,jezdec,jezdectví"},"hot_water":{"label":"Horká voda"},"house":{"label":"Typ domu","options":{"bungalow":{"description":"Malý dům s jedním podlažím","title":"Bungalov"},"detached":{"description":"Dům, který není spojen s jinými domy","title":"Samostatně stojící dům"},"link-detached":{"description":"Dům, který je spojen s jiným domem garáží nebo jinou neobytnou částí","title":"Propojený dům"},"maisonette":{"description":"Rezidentní bydlení rozdělené na dvě podlaží s vlastními vnějšími vchody namísto společného vchodu","title":"Mezonet"},"semi-detached":{"description":"Dům, který je na jedné straně připojen k druhému domu","title":"Polovina dvojdomku"},"terrace":{"description":"Řada domů, které jsou navzájem propojeny do jedné linie (preferuje se mapování každého domu jako samostatné oblasti)","title":"Řad domů v řadové zástavbě"},"terraced":{"description":"Samostatný dům v řadové zástavbě.","title":"Jednotlivý řadový dům"}}},"iata":{"label":"IATA Kód letiště "},"icao":{"label":"ICAO Kód letiště"},"image":{"label":"Obrázek","placeholder":"https://priklad.cz/fotografie.jpg","terms":"ikona,uri obrázku,fotografie,obraz"},"incline":{"label":"Sklon","terms":"svah,kopec,vrch,sjezd,náklon,dokopce,zkopce,nahoru,dolu,rovina,rovný"},"incline_steps":{"options":{"down":"Dolů","up":"Nahoru"}},"indoor":{"label":"Uvnitř","terms":"vnitřní,vnitřek,zastřešeno,v domě,v budově,budova,dům,chodba"},"indoor_type":{"label":"Typ"},"industrial":{"label":"Druh"},"informal":{"label":"Neformální","terms":"nelegální,vyšlapaná,vyježděná,neoficiální"},"information":{"label":"Druh"},"inscription":{"label":"Nápis","terms":"text,písmo,deska,pamětní deska"},"intermittent":{"label":"Občasný","terms":"stálý,přítok,sezónní,vysychající,nestálý,strouha,potok,tok,dešťové"},"internet_access":{"label":"Přístup k internetu","options":{"no":"Ne","terminal":"Počítače","wired":"Přes kabel","wlan":"Wifi","yes":"Ano"},"terms":"wifi,wlan"},"internet_access/fee":{"label":"Poplatek za přístup k internetu","options":{"customers":"Pouze pro zákazníky","no":"Zdarma","yes":"Placené"},"terms":"internetový poplatek,poplatez za wifi,poplatek za internet,cena,částka,zpoplatněno,zpoplatněný internet,přístup k internetu zpoplatněn"},"internet_access/ssid":{"label":"Název WiFi sítě","terms":"ssid"},"interval":{"label":"Interval","terms":"frekvence,čas,odjezdy,jízdní řád,příjezdy,jak často,pravidelnost"},"irrigation_pivot":{"label":"Zavlažování s centrálním výkyvem","options":{"pivot":"Ano","undefined":"Ne"},"terms":"zavlažovací stroj se středovým otočným postřikovačem,zavlažovací kruh,kruhové zavlažování"},"junction/ref_oneway":{"label":"Číslo křižovatky","terms":"číslo křížení,označení,identifikace,číslo sjezdu,sjezd,nájezd,název"},"junction_line":{"label":"Křižovatka","options":{"circular":"Kruhový objezd","jughandle":"Sjezd z dálnice","roundabout":"Kruhový objezd"},"terms":"křížit,odbočka,odbočit,spojit,spojení,křížení,kruhový objezd,mimoúrovňová,úrovňová"},"kerb":{"label":"Obrubník","options":{"flush":{"description":"Kleslý obrubník, který je na úrovni okolního prostoru.","title":"Zarovnaný"},"lowered":{"description":"Kleslý obrubník, který mohou používat vozíčkáři, ne vyšší než několik centimetrů.","title":"Snížený"},"no":{"description":"Na této lokalitě není žádný obrubník.","title":"Ne"},"raised":{"description":"Zvýšený obrubník, který nemohou snadno používat vozíčkáři, vyšší než několik centimetrů.","title":"Zvýšený"},"rolled":{"description":"Zvýšený obrubník se zaoblenou hranou, který usnadňuje použití pro auta nebo jízdní kola, ale ne pro invalidní vozíky.","title":"Zakulacený"},"yes":{"description":"Na tomto místě je nějaký druh obrubníku, o kterém není známo, zda je zvýšený, snížený, zarovnaný atd.","title":"Ano"}},"terms":"okraj chodníku,okraj silnice"},"kerb/height":{"label":"Výška"},"kerb/kerb_barrier":{"label":"Druh"},"kitchen":{"label":"Kuchyně","terms":"kuchyň,kuchyńská,kuchyňská linka,místo na vaření,vaření"},"kneipp_water_cure_multi":{"label":"Druhy nádrží","options":{"arm":"Lázeň pro paže","face":"Lázeň pro obličej","foot":"Lázeň pro nohy"}},"label":{"label":"Štítek"},"lamp_mount":{"label":"Způsob připevnění"},"lamp_type":{"label":"Druh"},"landuse":{"label":"Druh"},"lane_markings":{"label":"Značení jízdních pruhů","terms":"středová čára,oddělovače jízdních pruhů,čára jízdních pruhů,pruhované,bez pruhů"},"lanes":{"label":"Pruhů","placeholder":"1, 2, 3...","terms":"pruhy,jízdní pruhy,pásy,cesty"},"language_multi":{"label":"Jazyky"},"layer":{"label":"Vrstva","placeholder":"0","terms":"vrstvy,překryvy"},"layer_1":{"placeholder":"0"},"leaf_cycle":{"label":"Opadavost listí","options":{"deciduous":"Opadavé","evergreen":"Stálezelené","mixed":"Smíšené","semi_deciduous":"Poloopadavé","semi_evergreen":"Polostálezelené"},"terms":"list,cyklus,růst,opad"},"leaf_type":{"label":"Druh listí","options":{"broadleaved":"Listnaté","leafless":"Bezlisté","mixed":"Smíšené","needleleaved":"Jehličnaté"},"terms":"typ listí,druh listí"},"leaf_type_singular":{"label":"Druh listí","terms":"typ listí,druh listí"},"leisure":{"label":"Druh"},"length":{"label":"Délka (v metrech)","terms":"délka v metrech,dlouhý,rozměr délky,délka"},"level":{"label":"Patro","terms":"patro,úroveň,podlaží,patra,úrovně,poschodí,mezipatro,sklep,půda,přízemí"},"level_semi":{"label":"Úrovně","terms":"patra,pater,výška,úroveň,budovy,poschodí,podlaží,úrovně"},"liaison":{"label":"Druh"},"license_classes":{"label":"Třídy řidičského průkazu","terms":"jízda,průkaz,dopis,řízení,škola,učení,vzdělávání"},"lifeguard":{"label":"Druh","options":{"base":"Základna plavčíků","tower":"Věž plavčíka"}},"lifeguard_check":{"label":"Plavčík"},"lift_gate/type":{"label":"Druh","options":{"double":"Protichůdné tyče","single":"Samostatná tyč"}},"line_attachment":{"label":"Způsob připojení","terms":"způsob spojení,připojení,síť,internet,telefon"},"line_management":{"label":"Organizace vedení","terms":"větvení,topologie vedení,ukončení"},"lit":{"label":"Osvětlení","terms":"lampa,osvětlení"},"loc_name":{"label":"Místní název","terms":"hovorový název,obecný název,neformální název,přezdívka"},"location":{"label":"Umístění","terms":"umístění,lokace,místo,kde,adresa,bod"},"location_pool":{"options":{"indoor":"Vnitřní","outdoor":"Venkovní","roof":"Střecha"}},"lock":{"label":"Zámek"},"lockable":{"label":"Uzamykatelné","terms":"uzamykatelný,zámek,zamknutý,zamknout,uzamknout,zamykat,uzavřít,uzaviratelné"},"locked":{"label":"Zamčeno"},"man_made":{"label":"Druh"},"manhole":{"label":"Druh"},"manufacturer":{"label":"Výrobce","terms":"autor,producent"},"manufacturer/wikidata":{"label":"Wikidata výrobce","terms":"wikidata zhotovitele,zhotovitel,výrobce,wiki data výrobce,wiki"},"map_size":{"label":"Pokrytí"},"map_type":{"label":"Druh","options":{"scheme":"Schematická mapa","street":"Silniční mapa","topo":"Topografická mapa","toposcope":"Toposkop"}},"mapillary":{"label":"ID obrázku z Mapillary","terms":"id,identifikace,číslo obrázku,kód,označení,značka,mapillary,obrázek,fotografie,fotka,zdroj"},"marker":{"label":"Druh","options":{"aerial":{"description":"Navržené tak, aby bylo viditelné ze vzduchu.","title":"Letecká"},"ground":{"description":"Plochý označník položený na zemi.","title":"Země"},"pedestal":{"description":"Vyvýšená značka na malém podstavci.","title":"Podstavec"},"plate":{"description":"Plochá značka namontovaná přímo na stěnu nebo podobně.","title":"Deska"},"post":{"description":"Vyvýšená značka umístěná na malém sloupku nebo stožáru.","title":"Pošta"},"stone":{"description":"Značky vyryté nebo namalované přímo na kameni.","title":"Kámen"}}},"material":{"label":"Materiál","options":{"adobe":"Vepřovice","aluminium":"Hliník","brass":"Mosaz","brick":"Cihla","bronze":"Bronz","concrete":"Beton","dry_stone":"Suchý kámen","glass":"Sklo","granite":"Žula","iron":"Železo","limestone":"Vápenec","marble":"Mramor","metal":"Kov","plastic":"Plast","reinforced_concrete":"Železobeton","rock":"Skála","sand":"Písek","sandstone":"Pískovec","soil":"Půda, země","steel":"Ocel","stone":"Kámen","wood":"Dřevo"},"terms":"hmota,struktura"},"mattress":{"label":"Matrace k dispozici","terms":"dostupné matrace,matrace"},"max_age":{"label":"Maximální věk","terms":"max věk,stáří,omezení věku,nejstarší,roků"},"maxaxleload_bridge":{"label":"Limit hmotnosti nápravy","terms":"maximální zatížení,náprava,limit,zatížení nápravy"},"maxheight":{"label":"Limit výšky","terms":"odbavení"},"maxlength":{"label":"Limit délky","terms":"délka,maximální délka,limit"},"maxspeed":{"label":"Povolená rychlost","placeholder":"40, 50, 60...","terms":"omezení rychlosti,rychlostní limit,rychlost,nejvyšší"},"maxspeed/advisory":{"label":"Doporučené omezení rychlosti","placeholder":"40, 50, 60…","terms":"doporučená rychlost,rychlost,limit,doporučení,omezení rychlosti,doporučit"},"maxspeed/hgv":{"label":"Povolená rychlost kamionů","placeholder":"40, 50, 60…","terms":"omezení rychlosti pro kamiony,rychlostní limit pro kamiony,rychlost pro kamiony,povolená rychlost pro kamiony,nejvyšší pro kamiony,omezení rychlosti pro nákladní auta,rychlostní limit pro nákladní auta,rychlost pro nákladní auta,povolená rychlost pro nákladní auta,nejvyšší pro nákladní auta"},"maxstay":{"label":"Časový limit","terms":"čas,maximální doba,lhůta,limit"},"maxweight":{"label":"Limit hmotnosti","terms":"maximální hmotnost,limit,hmotnost"},"maxwidth":{"label":"Limit šířky","terms":"maximální šířka,limit,šířka"},"maxwidth/physical":{"label":"Limit šířky"},"memorial":{"label":"Druh","options":{"blue_plaque":"Modrá plaketa","bust":"Busta","cross":"Pamětní kříž","ghost_bike":"Kolo duchů","obelisk":"Obelisk","plaque":"Pamětní deska","sculpture":"Skulptura","statue":"Socha (osoba nebo zvíře)","stele":"Stéla","stolperstein":"Stolperstein","stone":"Kámen","war_memorial":"Památník na válku"}},"memorial/addr":{"label":"Adresa nejbližší budovy"},"message":{"label":"Zpráva","terms":"textovka,sms,smska,psaní,textová zpráva,dopis"},"microbrewery":{"label":"Minipivovar","terms":"mini pivovar,mini-pivovar,malý pivovar,drobný pivovar,místní pivovar,vaření piva,pivo,lokální"},"military_service":{"label":"Vojenská služba","options":{"air_force":"Letectvo","army":"Armáda","coast_guard":"Pobřežní hlídka","marines":"Námořní pěchota","navy":"Válečné loďstvo"}},"mimics":{"label":"Kamuflovaný vysílač","terms":"kamuflovaný,maskovaný,jako strom,strom"},"min_age":{"label":"Minimální věk","terms":"spodní věková hranice"},"min_height":{"label":"Výška od dna (m)"},"minspeed":{"label":"Minimální povolená rychlost","placeholder":"20, 30, 40...","terms":"minimální rychlost,povolená rychlost,rychle,nejnižší,nejpomaleji,nejpomalejší,omezení rychlosti"},"mobile":{"label":"Mobilní telefon","placeholder":"+420 123 456 789","terms":"telefonní číslo"},"model":{"label":"Model","terms":"typ,druh"},"model/wikidata":{"label":"Wikidata modelu","terms":"wikidata typu,model,wiki data typu,wiki data modelu,wiki"},"monitoring_multi":{"label":"Monitorování"},"mooring":{"label":"Kotviště","options":{"commercial":"Komerční","guest":"Hosté","no":"Ne","private":"Soukromé","yes":"Ano"}},"mtb/scale":{"label":"Klasifikace obtížnosti pro MTB","options":{"0":"0: Štěrkový/udusaný povrch, bez překážek, oblé zatáčky","1":"1: Místy nezpevněná půda, kořeny a malé kameny, oblé zatáčky","2":"2: Většinou nepevná půda, velké kameny, lehčí serpentiny","3":"3: Kluzký povrch, samé balvany, prudké zatáčky","4":"4: Sypký povrch, velké schodky, nebezpečné zatáčky","5":"5: Nejvyšší obtížnost, skály, sutiny, sesuvy","6":"6: Prakticky nesjízdné a velmi nebezpečné i pro trialové mistry"},"placeholder":"0, 1, 2, 3...","terms":"horská kola,hory,kolo,cyklista,cyklistika,obtížnost,jízda na kole,náročnost,bycikl,jízdní kolo"},"mtb/scale/imba":{"label":"Obtížnost podle IMBA","options":{"0":"⚪ Nejlehčí (bílý kruh)","1":"🟢 Lehká (zelený kruh)","2":"🟦 Středně těžká (modrý čtverec)","3":"◆ Těžká (černý kosočtverec)","4":"◆◆ Velmi těžká (dvojitý černý kosočtverec)"},"placeholder":"Lehká, středně těžká, těžká...","terms":"horská kola,hory,kolo,cyklista,cyklistika,obtížnost,jízda na kole,náročnost,jízdní kolo,do kopce,imba,rating,bikepark,překážky,překážkové,horská cyklistika,klasifikace"},"mtb/scale/uphill":{"label":"Klasifikace obtížnosti pro MTB do kopce","options":{"0":"0: Průměrný sklon do 10%, štěrk či zpevněný povrch, bez překážek","1":"1: Průměrný sklon do 15%, štěrk či zpevněný povrch, trocha drobných překážek","2":"2: Průměrný sklon do 20%, stabilní povrch, volné kameny do velikosti pěsti, kořeny","3":"3: Průměrný sklon do 25%, různorodý povrch, volné kameny do velikosti pěsti, větve","4":"4: Průměrný sklon do 30%, nestabilní povrch, velké kameny či větve","5":"5: Velmi prudké, do kopce prakticky nesjízdné"},"placeholder":"0, 1, 2, 3...","terms":"horská kola,hory,kolo,cyklista,cyklistika,obtížnost,jízda na kole,náročnost,do kopce,jízda nahoru,jízda do kopce,proti svahu"},"museum":{"label":"Druh"},"name":{"label":"Název","placeholder":"Název prvku (existuje-li)","terms":"štítek,jméno"},"nat_name":{"label":"Národní název","terms":"národní jméno"},"natural":{"label":"Přírodní objekt"},"network":{"label":"Síť","terms":"síťový,soubor,propojení,trasy,cesty"},"network/type":{"label":"Druh sítě"},"network_bicycle":{"label":"Třída sítě","options":{"icn":"Mezinárodní","lcn":"Místní","ncn":"Dálková (v ČR max. třímístné číslo)","rcn":"Regionální (v ČR čtyřmístné číslo)"},"placeholder":"Mezinárodní, Dálková, Regionální, Místní"},"network_foot":{"label":"Třída sítě","options":{"iwn":"Mezinárodní","lwn":"Místní","nwn":"Dálková (v ČR často červená)","rwn":"Regionální"},"placeholder":"Mezinárodní, Dálková, Regionální, Místní"},"network_horse":{"label":"Třída sítě","options":{"ihn":"Mezinárodní","lhn":"Místní","nhn":"Dálková","rhn":"Regionální"},"placeholder":"Mezinárodní, Dálková, Regionální, Místní"},"network_road":{"label":"Síť"},"not/name":{"label":"Nesprávná jména","terms":"často chybná jména,špatná jména"},"note":{"label":"Poznámka","terms":"komentář"},"nudism":{"label":"Nudismus","options":{"customary":"Obvyklý","designated":"Vyhrazen","no":"Zakázán","obligatory":"Povinný","permissive":"Do odvolání","yes":"Povolen"},"terms":"naturismus,naturista,nudapláž,nudista"},"office":{"label":"Druh","options":{"accountant":"Účetnictví","adoption_agency":"Adopční agentura","advertising_agency":"Reklamní agentura","architect":"Kancelář architekta","association":"Kancelář neziskové organizace","charity":"Kancelář charity","company":"Kancelář soukromé společnosti","construction_company":"Kancelář stavební služby","consulting":"Poradenská kancelář","courier":"Kancelář kurýra","coworking":"Místo pro spolupráci","diplomatic":"Diplomatická kancelář","educational_institution":"Vzdělávací instituce","employment_agency":"Úřad práce / Pracovní agentura","energy_supplier":"Kancelář dodavatele elektřiny","engineer":"Inženýrská kancelář","estate_agent":"Realitní kancelář","financial":"Finanční úřad","financial_advisor":"Finanční poradce","forestry":"Kancelář lesní správy","foundation":"Kancelář nadace","government":"Státní úřad","graphic_design":"Kancelář grafického designu","guide":"Kancelář turistického průvodce","insurance":"Pojišťovna","it":"Kancelář informačních technologií","lawyer":"Právní kancelář","logistics":"Logistická společnost","moving_company":"Kancelář stěhovací služby","newspaper":"Novinářská redakce","ngo":"Nezisková organizace","notary":"Kancelář notáře","physician":"Praktický lékař","political_party":"Kancelář politické strany","private_investigator":"Soukromá detektivní kancelář","property_management":"Správa nemovitostí","quango":"Kancelář kvaziautonomní nevládní organizace","religion":"Náboženská kancelář","research":"Kancelář výzkumu a vývoje","security":"Kancelář hlídače","surveyor":"Zeměměřický úřad","tax_advisor":"Kancelář daňového poradce","telecommunication":"Telekomunikační společnost","therapist":"Terapeutická kancelář","travel_agent":"Cestovní kancelář","union":"Odborová organizace zaměstnanců","water_utility":"Vodohospodářská kancelář"}},"official_name":{"label":"Oficiální název","terms":"formální název,plný název,právní název"},"oneway":{"label":"Jednosměrka","options":{"alternating":"Střídavá","no":"Ne","reversible":"Reverzibilní","undefined":"Implicitně Ne","yes":"Ano"},"terms":"jednosměrný,jednosměrná ulice,jednosměrný provoz,jeden směr,jednosměrnost,protisměr,jedním směrem"},"oneway/bicycle":{"label":"Jednosměrka (Cyklisté)","terms":"cykloobousměrka,cyklisté,jednosměrka,kolo,obousměrka pro cyklisty,omezení pro cyklisty,průjezdné pro cyklisty,na kole,cyklo obousměrka,obousměrný provoz"},"oneway_yes":{"options":{"alternating":"Střídavá","no":"Ne","reversible":"Reverzibilní","undefined":"Implicitně Ano","yes":"Ano"}},"openfire":{"label":"Otevřený oheň je povolený","terms":"ohně povoleny,povolení otevřených ohňů,otevřený oheň povolen,táborák,ohniště,opékání,večeře"},"opening":{"label":"Šířka otvoru (metry)"},"opening_date":{"label":"Očekávané datum otevření","placeholder":"RRRR-MM-DD"},"opening_hours":{"label":"Provozní doba","placeholder":"Není známo","terms":"hodiny,otevírací doba,doba,úřední doba,v provozu,otevřeno,zavřeno,během"},"opening_hours/drive_through":{"label":"Otevírací hodiny Drive-throughu","placeholder":"Stejně jako běžné pracovní hodiny","terms":"otevírací doba drive-thru,otevírací hodiny drive-thru,drive-through,drive-thru,obsluha do auta,průjezd"},"operator":{"label":"Provozovatel","terms":"operátor,majitel,správce,správa,provozní"},"operator/type":{"label":"Druh provozovatele"},"organic":{"label":"Bioprodukty","options":{"no":"Není","only":"Pouze","yes":"Některé"},"terms":"přírodní,bio"},"orientation/orientation_parking":{"label":"Orientace"},"outdoor_seating":{"label":"Venkovní sezení","terms":"lavičky,zahrádka,posezení,stolky,stolečky,stoly,venku,letní,slunečník,terasa"},"overlap":{"label":"Šířka překrytí (metry)"},"panoramax":{"label":"Panoramax Image ID","terms":"panoramax image id,id snímku panoramax"},"par":{"label":"Par","placeholder":"3, 4, 5..."},"parcel_dropoff":{"label":"Odevzdání balíku"},"parcel_pickup":{"label":"Vyzvedávání zásilek","options":{"no":"Ne","undefined":"Implicitně Ano","yes":"Ano"}},"park_ride":{"label":"Parkoviště P+R","terms":"p+r,p a r,zaparkuj a jeď,mhd,přestup,dojíždějící,kapacitní,odstavné,hromadná doprava,na kraji města,p + r,parkandride,p/r,parkuj a jeď,městská,metro,tram,bus"},"parking":{"label":"Druh","options":{"carports":{"description":"Struktura používaná k poskytování omezené ochrany vozidlům, obvykle bez stěn.","title":"Přístřešek"},"garage_boxes":{"description":"Soukromá garáž s více samostatnými boxy pro každý vůz.","title":"Garáž"},"half_on_kerb":{"description":"Parkování částečně na chodníku.","title":"Polovinou na obrubníku"},"lane":{"description":"Parkování ve vozovce (které lze snadno předělat na jízdní pruh).","title":"Cestní pruh"},"layby":{"description":"Parkování na odpočívadle u silnice.","title":"Malá odpočívka při cestě (typ layby)"},"multi-storey":{"description":"Dvě nebo více úrovní parkovacích ploch v konstrukci budovy.","title":"Vícepatrové"},"on_kerb":{"description":"Parkování na chodníku.","title":"Na obrubníku"},"rooftop":{"description":"Jedna úroveň parkovací plochy na vrcholu budovy.","title":"Na střeše"},"sheds":{"description":"Soukromé hangáry pro vozidla.","title":"Soukromý přístřešek"},"shoulder":{"description":"Parkování na krajnici.","title":"Na krajnici"},"street_side":{"description":"Parkování přímo vedle vozovky (ale ne na ní).","title":"Vedle vozovky"},"surface":{"description":"Jedna úroveň parkování na pozemku.","title":"Povrch"},"underground":{"description":"Podzemní parkoviště.","title":"Podzemní"}}},"parking/side/orientation":{"label":"Orientace při parkování","options":{"diagonal":"Šikmo k ulici (~45°)","parallel":"Rovnoběžně s ulicí","perpendicular":"Kolmo k ulici (~90°)"},"terms":"směr parkování,orientace,parkovací směr,parkovací orientace,parkování","types":{"parking:left:orientation":"Po levé straně","parking:right:orientation":"Po pravé straně"}},"parking/side/parking":{"label":"Parkoviště","options":{"half_on_kerb":"Polovinou na obrubníku","lane":"Cestní pruh","no":"Ne","on_kerb":"Na obrubníku","separate":"Parkování zmapováno samostatně","shoulder":"Na krajnici","street_side":"Vedle vozovky","yes":"Ano (nespecifikováno)"},"terms":"parkování,zaparkovat,parkovací,parkovat,stání aut,zastavit auto","types":{"parking:left":"Po levé straně","parking:right":"Po pravé straně"}},"parking_entrance":{"label":"Druh"},"parking_space":{"label":"Druh"},"payment_multi":{"label":"Platební možnosti","options":{"account_cards":"Karta účtu","alipay":"Alipay","american_express":"American Express","app":"Mobilní aplikace","apple_pay":"Apple Pay","bancomat":"Bankomat","blik":"Blik","cards":"Platební karta","cash":"Hotovost","cheque":"Šek","clipper":"Clipper","coins":"Mince","contactless":"Bezkontaktní platba","credit_cards":"Kreditní karta","cryptocurrencies":"Kryptoměna","debit_cards":"Debitní karta","diners_club":"Diners Club","discover_card":"Discover","dkv":"DKV","electronic_purses":"Elektronická peněženka","ep_easycard":"悠遊卡EasyCard","ep_geldkarte":"GeldKarte","ep_ipass":"iPASS一卡通","girocard":"Girocard","google_pay":"Google Pay","jcb":"JCB","maestro":"Maestro","mastercard":"Mastercard","mastercard_contactless":"Mastercard bezkontaktní","notes":"Bankovky","paypal":"PayPal","prepaid_ticket":"Předplacená jízdenka","telephone_cards":"Telefonní karta","unionpay":"UnionPay","uta":"UTA","v_pay":"V Pay","visa":"Visa","visa_debit":"Visa Debit","visa_electron":"Visa Electron","wechat":"WeChat Pay"},"terms":"druhy plateb,druh platby,platba,způsob,typ placení,typ platby,kreditka,mince,bankovky,contactless,bezkontaktně,hotovost,koruny,euro,možnosti platby"},"phases":{"label":"Fáze","placeholder":"1, 2, 3…"},"phone":{"label":"Telefon","placeholder":"+000 0000 0000 0000","terms":"telefonní číslo"},"picnic_table":{"label":"Stůl pro piknik","terms":"venkovní stůl,lavička"},"pipeline":{"label":"Druh"},"piste/difficulty":{"label":"Obtížnost","options":{"advanced":"Pokročilá","easy":"Snadná","expert":"Expert","extreme":"Extrémní","freeride":"Jízda zdarma","intermediate":"Středně pokročilá","novice":"Začátečník"},"placeholder":"Lehká, Střední, Těžká..."},"piste/difficulty_downhill":{"options":{"advanced":"Pokročilá (černý diamant)","easy":"Snadná (zelený kruh)","expert":"Velmi těžká (alpské sjezdovky: oranžová; americké: dva černé diamanty) ","extreme":"Extrémní (je třeba horolezecké výbavy) ","freeride":"Freeride (mimo trať) ","intermediate":"Střední (evropské sjezdovky: červená) ","novice":"Zelená (pro začátečníky)"},"placeholder":"Lehká, střední, těžká..."},"piste/difficulty_nordic":{"options":{"advanced":"Pokročilá - Úzké, prudké nebo zledovatělé úseky, ostré zatáčky","easy":"Lehká - Mírné svahy, krátké prudší úseky","expert":"Pokročilá - V okolí nebezpečný terén","intermediate":"Střední - Prudké úseky","novice":"Začátečnická - Mírná, nenáročná"},"placeholder":"Lehká, střední, těžká... "},"piste/difficulty_skitour":{"options":{"advanced":"Pokročilá - S: 40-45° sklon","easy":"Jednoduchá - WS: 30-35° sklon","expert":"Zkušení - SS: 45-50° sklon","extreme":"Extrémní - EX: >55° sklon","freeride":"Freeride - AS: 50-55° sklon","intermediate":"Středně pokročilá - ZS: 35-40° sklon","novice":"Začátečník - L: <30° sklon"},"placeholder":"Lehká, střední, těžká... "},"piste/grooming":{"label":"Úprava","options":{"backcountry":"Strojově neupraveno","classic":"Klasika","classic+skating":"Klasika a bruslení","mogul":"Boule","scooter":"Skútrem","skating":"Bruslení (na hladko)"}},"piste/grooming_downhill":{"options":{"backcountry":"Strojově neupraveno","classic":"Klasický","mogul":"Boule"}},"piste/grooming_hike":{"options":{"backcountry":"Neupravené – pro sněžnice","classic":"Upravené – zimní pochod"}},"piste/grooming_nordic":{"options":{"backcountry":"Neupravené, bez úpravy","classic":"Klasický","classic+skating":"Klasika a bruslení","scooter":"Skútrem","skating":"Bruslení"}},"piste/type":{"label":"Druh","options":{"connection":"Spojení","downhill":"Sjezd","hike":"Pěší","ice_skate":"Bruslení na ledu","nordic":"Běžky","playground":"Dětský ski park","ski_jump":"Skok na lyžích","skitour":"Skialpinismus","sled":"Sportovní saně","sleigh":"Tažené saně","snow_park":"Snowpark"}},"place":{"label":"Druh"},"plant":{"label":"Elektrárna"},"plant/method":{"label":"Způsob výroby energie"},"plant/output":{"label":"Forma výstupu energie","options":{"cold_air":"Studený vzduch","cold_water":"Studená voda","compressed_air":"Stlačený vzduch","electricity":"Elektřina","hot_air":"Horký vzduch","hot_water":"Horká voda","steam":"Pára","vacuum":"Vakuum"}},"plant/output/electricity":{"label":"Výstup elektrické energie","placeholder":"500MW, 1000MW, 2000MW…"},"plant/source":{"label":"Zdroj energie"},"playground":{"label":"Druh","options":{"activitypanel":"Herní panel","aerialrotator":"Závěsný kolotoč","archimedes_screw":"Archimédův šroub","baby_swing":"Dětská houpačka","balance":"Balanční zařízení (nespecifikováno)","balancebeam":"Kladina","ball_pool":"Suchý bazén","bannister_bars":"Šikmá bradla","basketrotator":"Otáčecí koš","basketswing":"Houpačka hnízdo","belt_bridge":"Pásový most","blackboard":"Školní tabule","bridge":"Mostek","chute":"Skluz (na písek)","climbing":"Zařízení na lezení (nespecifikováno)","climbing_pole":"Tyč na šplhání","climbing_slope":"Lezecká rampa","climbingframe":"Prolézačka","climbingwall":"Lezecká stěna","cushion":"Skákací polštář","dome":"Kupole","excavator":"Bagr","exercise":"Cvičební zařízení","funnel_ball":"Funnel ball","hammock":"Hamaka","hamster_wheel":"Křeččí kolo","hopscotch":"Skákací panák","horizontal_bar":"Hrazda","ladder":"Žebřík","map":"Mapa","marble_run":"Kuličková dráha","maze":"Bludiště","monkey_bars":"Stropní žebřiny (ručkovadla)","mound":"Umělý kopec","musical_instrument":"Hudební nástroj","parallel_bars":"Bradla","platform":"Plošina","playhouse":"Dětský domek","pump":"Pumpa","ride_on":"Pevné šlapací zařízení","rope_swing":"Lanová houpačka","rope_traverse":"Přechod po laně","rotator":"Rotační zařízení (nespecifikováno)","roundabout":"Plošinový kolotoč","sand":"Pískoviště (nespecifikováno)","sand_pulley":"Výtah na písek","sand_seesaw":"Páková houpačka na písku","sand_wheel":"Koleso na písek","sandpit":"Pískoviště","seat":"Sedadlo","seesaw":"Vahadlová houpačka","sieve":"Síto","sledding":"Kopec na sáňkování","slide":"Skluzavka","speaking_tube":"Trubkový telefon","spinner":"Kolotoč na stání","spinner_bowl":"Kolotoč tvaru mísy","spinning_circle":"Kolotoč tvaru prstence","spinning_disc":"Kolotoč tvaru disku","splash_pad":"Brouzdaliště","spring_board":"Deska na pružinách","springy":"Pružinová houpačka","stepping_post":"Pevné chůdy","stepping_stone":"Nášlapný kámen (nášlapník)","steps":"Schody","structure":"Sestava dětského hřiště","swing":"Houpačka","table":"Stůl","teenshelter":"Přístřešek","tire_swing":"Houpací pneumatika","track":"Dráha","trampoline":"Trampolína","tunnel_tube":"Tunel","water":"Vodní prvek (nespecifikováno)","water_barrier":"Stavidlo","water_basin":"Vodní nádrž","water_cannon":"Vodní dělo","water_channel":"Vodní kanál","water_seesaw":"Vahadlová houpačka na vodu","water_sprayer":"Mlžítko","water_stream":"Potok","water_wheel":"Vodní kolo","wobble_bridge":"Vratký mostek","youth_bench":"Lavička pro mládež","zipwire":"Lanovka"}},"playground/theme":{"label":"Motiv","terms":"vzhled,téma,pozadí"},"plots":{"label":"Počet zahrádek","placeholder":"10, 20, 30..."},"polling_station":{"label":"Volební místo","terms":"hlasovací místnost"},"population":{"label":"Počet obyvatel"},"population/date":{"label":"Datum populace","placeholder":"RRRR-MM-DD"},"portable":{"label":"Mobilní","terms":"samostatné,movilní,pojízdné"},"post":{"label":"Poštovní adresa"},"post_box/type":{"label":"Druh","options":{"lamp":"Připojena ke sloupu","pillar":"Volně stojící schránka","wall":"Namontovaná na zdi"},"terms":"druh,typ"},"power":{"label":"Druh"},"power_supply":{"label":"Elektrická přípojka","terms":"zásuvky,popis zásuvky,elektrická zástrčka,elektřina,elektrické napájení,zdroj,koncovka,elektrika"},"preschool":{"label":"Předškolní"},"produce":{"label":"Výroba"},"product":{"label":"Výrobky","terms":"produkt,produkty,výstup,produkce,zboží,předměty"},"public_bookcase/type":{"label":"Druh"},"pump":{"label":"Pumpa","options":{"manual":"Ruční pumpa","no":"Není","powered":"Strojem poháněná pumpa","yes":"Ano"}},"railway":{"label":"Druh"},"railway/position":{"label":"Pozice milníku","placeholder":"Vzdálenost na jedno desetinné místo (123.4)"},"railway/signal/direction":{"label":"Dotčený směr","options":{"backward":"Zpátky","both":"Oba/všechny směry","forward":"Dopředu"}},"railway/switch":{"label":"Druh výhybky","options":{"abt":"Abtova výhybka","default":"Normální výhybka","double_slip":"Celá křižovatková výhybka","single_slip":"Poloviční křižovatková výhybka","three_way":"Dvojitá výhybka","wye":"Oboustranná výhybka"}},"railway/track_ref":{"label":"Číslo koleje"},"ramp":{"label":"Rampa","options":{"no":"Ne","separate":"Mapována odděleně","yes":"Ano"},"terms":"cyklistické schodiště,schodišťová rampa,nakloněná,rampa pro kola,zabudovaná rampa,vestavěná rampa"},"rating":{"label":"Jmenovitý výkon"},"rcn_ref":{"label":"Číslo cyklotrasy"},"real_fire-GB-IE":{"label":"Opravdový oheň","terms":"ohniště,oheň"},"recycling_accepts":{"label":"Určení","options":{"batteries":"Baterie","cans":"Plechovky","cardboard":"Karton","clothes":"Oblečení","cooking_oil":"Olej na smažení","engine_oil":"Motorový olej","glass":"Jakékoliv sklo (temperované sklo, okna, zrcadla atd.)","glass_bottles":"Skleněné lahve a sklenice","green_waste":"Zelený odpad","paper":"Papír","plastic":"Plast","plastic_bottles":"Plastové lahve","plastic_packaging":"Plastové obaly","scrap_metal":"Kovový šrot","shoes":"Boty"}},"recycling_type":{"label":"Druh","options":{"centre":"Centrum","container":"Kontejner"},"placeholder":"Kontejner, Centrum"},"ref":{"label":"Referenční kód","terms":"reference,kód,číslo,upřesnění,definice,referenční"},"ref/FR/siret-FR":{"label":"Číslo SIRET","terms":"francouzské identifikační číslo společnosti,siret"},"ref/edubase-GB":{"label":"odkaz na Ministerstvo školství ","terms":"odkaz na školštví,odkaz školy"},"ref/isil":{"label":"Kód ISIL","terms":"mezinárodní standardní identifikátor pro knihovny,kód knihovny,identifikátor knihovny,isil knihovny"},"ref/linz/place_id-NZ":{"label":"ID místa NZGB","terms":"nz,linz,informace o zemi nový zéland,toitū te whenua,nzgb,nový zéland zeměpisná tabule,ngā pou taunaha o aotearoa"},"ref/vatin":{"label":"Daňové identifikační číslo","terms":"identifikační číslo pro dph,dič"},"ref_aeroway_gate":{"label":"Číslo brány"},"ref_disc_golf_hole":{"label":"Číslo jamky","placeholder":"1-18"},"ref_golf_hole":{"label":"Číslo jamky","placeholder":"1-18"},"ref_highway_junction":{"label":"Číslo křižovatky"},"ref_platform":{"label":"Reference nástupiště"},"ref_rail":{"label":"Číslo linky","terms":"číslo dráhy,číslo tratě,číslo železnice,ref linky,ref dráhy,ref tratě,ref železnice,číslo,ref"},"ref_road_number":{"label":"Číslo silnice","terms":"číslo silnice,označení silnice,číslo cesty,silnice,dálnice,dálniční číslo,číslo dálnice,označení"},"ref_room_number":{"label":"Číslo pokoje"},"ref_route":{"label":"Číslo trasy","terms":"číslo silnice,označení silnice,číslo cesty,silnice,dálnice,dálniční číslo,číslo dálnice,označení"},"ref_runway":{"label":"Číslo přistávací dráhy","placeholder":"např. 01L/19R"},"ref_sector":{"label":"Počet úseků"},"ref_stop_position":{"label":"Číslo zastávky"},"ref_taxiway":{"label":"Jméno pojezdové dráhy","placeholder":"např. A5"},"reg_name":{"label":"Regionální název","terms":"regionální název,místní název"},"relation":{"label":"Druh"},"religion":{"label":"Náboženství","options":{"bahai":"Bahá’í","benzhu":"Benzuismus","buddhist":"Buddhismus","caodaism":"Kaodaismus","chinese_folk":"Čínské lidové náboženství","christian":"Křesťanství","confucian":"Konfucianismus","hindu":"Hinduismus","jain":"Džinismus","jewish":"Judaismus","multifaith":"Více náboženství","muslim":"Islám","none":"Nevěřící","pagan":"Pohanství","shinto":"Šintoismus","sikh":"Sikhismus","spiritualist":"Spiritualismus","taoist":"Taoismus","tenrikyo":"Tenrikyo","unitarian_universalist":"Unitářský univerzalista","vietnamese_folk":"Vietnamské lidové náboženství","voodoo":"Vúdú"},"terms":"vyznání,náboženský,bůh,víra"},"reservation":{"label":"Rezervace","options":{"no":"Nepřijímány","recommended":"Doporučeny","required":"Požadovány","yes":"Přijímány"},"terms":"objednání,objednávka,rezervování,stůl,přijímá rezervace,zamluvit,zamluvení"},"residential":{"label":"Druh"},"resort":{"label":"Druh"},"resource":{"label":"Zdroje","options":{"aggregate":"Kamenivo","clay":"Jíl/Antuka","coal":"Uhlí","gold":"Zlato","gravel":"Štěrk","iron_ore":"Železná ruda","limestone":"Vápenec","peat":"Rašelina","sand":"Písek"}},"restriction":{"label":"Druh"},"restrictions":{"label":"Omezení odbočování"},"roller_coaster/track":{"label":"Druh","options":{"brake_run":{"description":"Část tratě určená k zpomalení nebo zastavení vozíků","title":"Brzdný úsek"},"launch_straight":{"description":"Část tratě určená k urychlení vozíků pomocí vnějšího zařízení","title":"Rozjezdový úsek"},"lift_hill":{"description":"Svažující se dráha určená ke zrychlení vozíků potenciální energii","title":"Stoupání"},"maintenance":{"description":"Záložní koleje určené pro rezervní vozíky nebo provádění údržby","title":"Údržba"},"moving":{"description":"Jakýkoli druh pohyblivého kolejového systému, jako jsou výhybkové koleje","title":"Pohyblivé"},"station":{"description":"Část tratě, kde vozíky zastavují, aby nastoupili a vystoupili cestující.","title":"Stanice"},"waiting":{"description":"Trať používaná ke zdržení vozíků, pokud je další bloková sekce obsazena","title":"Čekání"}}},"roof/colour":{"label":"Barva střechy","terms":"barva,krytina,tašky,plechová střecha,šindele,došky,slaměná"},"roof/height":{"label":"Výška střechy (metry)","terms":"střešní výška,střecha"},"roof/shape":{"label":"Tvar střechy","options":{"butterfly":"Motýlková (vkleslá, inverzní sedlová)","cone":"Kužel","crosspitched":"Křížová sedlová","dome":"V kupoli","flat":"Plochá","gabled":"Sedlová","gabled_height_moved":"Sedlová (výškově rozdělená podél hřebene)","gambrel":"Mansardová (2stranná)","half-hipped":"Polovalbová","hipped":"Valbová","hipped-and-gabled":"Valbovo-štítová (japonská)","mansard":"Mansardová","onion":"Cibulová (báň)","pyramidal":"Stanová","round":"Kupolová","sawtooth":"Pilová","side_half-hipped":"Jednostranná polovalbová","side_hipped":"Jednostranná valbová","skillion":"Pultová"},"terms":"tvar střechy,střechový tvar,zakrytí,kryt,zastřešení,pokrytí"},"room":{"label":"Druh"},"rooms":{"label":"Pokojů"},"rotor/diameter":{"label":"Průměr rotoru (v metrech)","terms":"poloměr rotoru,délka rotoru"},"roundtrip":{"label":"Tvoří okruh","terms":"kruhový,uzavřený,smyčkový,okružní"},"route":{"label":"Druh"},"route_master":{"label":"Druh"},"royal_cypher-GB":{"label":"Královská šifra","options":{"CIIIR":"CIIIR (Karel III.)","EIIR":"EIIR (Alžběta II.)","EVIIIR":"EVIIIR (Eduard VIII.)","EVIIR":"EVIIR (Eduard VII.)","GR":"GR (Jiří V.)","GVIR":"GVIR (Jiří VI.)","VR":"VR (Viktorie)","no":"Ne","scottish_crown":"Skotská koruna"}},"ruins":{"label":"Druh"},"rwn_ref":{"label":"Číslo trasy"},"sac_scale":{"label":"Klasifikace turistické obtížnosti","options":{"alpine_hiking":"T4: Vysokohorská turistika","demanding_alpine_hiking":"T5: Náročná vysokohorská turistika","demanding_mountain_hiking":"T3: Náročná horská turistika","difficult_alpine_hiking":"T6: Těžká vysokohorská turistika","hiking":"T1: Turistika","mountain_hiking":"T2: Horská turistika","strolling":"Procházky"},"placeholder":"Horská turistika, vysokohorská turistika...","terms":"náročnost,obtížnost,složitost,terén,chůze,hory"},"salt":{"label":"Sůl","terms":"slaný roztok,solený"},"sample_collection":{"label":"Vzorky"},"sanitary_dump_station":{"label":"Výlevka pro WC","terms":"karavan,odpad,vypuštění,toalety,vypuštění sanitárního odpadu,místo pro vypuštění,zařízení pro vypuštění,sanitární,odpadový tank"},"screen":{"label":"Obrazovky","placeholder":"1, 4, 8,…"},"scuba_diving":{"label":"Služby"},"seamark/beacon_isolated_danger/shape":{"label":"Tvar"},"seamark/beacon_lateral/category":{"label":"Kategorie","options":{"danger_left":"Nebezpečí vlevo","danger_right":"Nebezpečí vpravo","port":"Přístav","starboard":"Pravobok","waterway_left":"Vodní cesta vlevo","waterway_right":"Vodní cesta vpravo"}},"seamark/beacon_lateral/colour":{"label":"barva","options":{"green":"Zelená","grey":"Šedá","red":"Červená"}},"seamark/beacon_lateral/shape":{"label":"Tvar"},"seamark/beacon_lateral/system":{"label":"Systém","options":{"cevni":"CEVNI","iala-a":"IALA A","iala-b":"IALA B","other":"Ostatní"}},"seamark/buoy_lateral/category":{"label":"Kategorie","options":{"channel_left":"kanál vlevo","channel_right":"kanál vpravo","danger_left":"Nebezpeční vlevo","danger_right":"Nebezpeční vpravo","port":"Přístav","preferred_channel_port":"Upřednostňovaný kanál k přístavu","preferred_channel_starboard":"Upřednostňovaný kanál na pravobok","starboard":"Pravobok","waterway_left":"Vodní cesta vlevo","waterway_right":"Vodní cesta vpravo"}},"seamark/buoy_lateral/colour":{"label":"Barva","options":{"green":"Zelená","green;red;green":"Zelená-Červená-Zelená","green;white;green;white":"Zelená-Bílá-Zelená-Bílá","red":"Červená","red;green;red":"Červená-Zelená-Červená","red;white;red;white":"Červená-Bílá-Červená-Bílá","white":"Bílá","yellow":"Žlutá"}},"seamark/buoy_lateral/shape":{"label":"Tvar"},"seamark/buoy_lateral/system":{"label":"Systém","options":{"cevni":"CEVNI","iala-a":"IALA A","iala-b":"IALA B","other":"Ostatní"}},"seamark/harbour/category_marina":{"label":"Zázemí přístavu","options":{"marina":"Ano","marina_no_facilities":"Ne"},"terms":"přístav,loď,člun,zařízení,domácí"},"seamark/mooring/category":{"label":"Kategorie"},"seamark/rescue_station/category":{"label":"Zařízení pro záchranu života","options":{"aircraft":"Letadlo","first_aid":"První pomoc","hovercraft":"Vznášedlo","lifeboat":"Záchranný člun (na souši)","lifeboat_on_mooring":"Záchranný člun (na kotvišti)","radio":"Radiostanice","refuge_intertidal":"Přílivové útočiště","refuge_shipwrecked":"Útočiště pro ztroskotání","seaplane":"Hydroplán","tug":"Záchranný remorkér"}},"seamark/type":{"label":"Plavební objekt","terms":"plavebni objekt,námořni objekt,namorni objekt,vodní objekt,vodni objekt"},"seamark/wreck/category":{"label":"Kategorie"},"seasonal":{"label":"Sezónní"},"seats":{"label":"Sedadla","placeholder":"2, 4, 6..."},"second_hand":{"label":"Použité zboží","options":{"no":"Ne","only":"Pouze","yes":"Ano"},"placeholder":"Ano, Ne, Pouze","terms":"prodává použité,prodej použitého,použitý,z druhé ruky,bazarové,bazar,sekáč,second-hand,není nové,nové,zašlé,staré,antikvariát,veteš"},"segregated":{"label":"Oddělení chodců od cyklistů","terms":"jízdní kolo,kolo,chodník,cyklostezka,cyklotrasa,oddělení,čára"},"self_checkout":{"label":"Samoobslužné placení","options":{"no":"Ne","only":"Pouze","yes":"Ano"},"terms":"samoobslužná pokladna,samoobslužná platba,platba kartou,platba bez pokladní,samoobsluha,automatizovaná pokladna"},"self_service":{"label":"Samoobsluha"},"service":{"label":"Druh","options":{"alley":"Ulička","drive-through":"Drive-through","driveway":"Příjezdová cesta","emergency_access":"Nouzový vjezd","parking_aisle":"Parkovací ulička"}},"service/bicycle":{"label":"Služby pro cyklisty","terms":"služby pro cyklisty,cyklistické služby,služby jízdních kol,služby pro jízdní kola"},"service/vehicle":{"label":"Služby"},"service_rail":{"label":"Druh manipulační koleje","options":{"crossover":"Kolejová spojka","siding":"Výhybna","spur":"Nákladiště","yard":"Kolej seřaďovacího nádraží"},"terms":"druh vlečky,určení,železnice,místní dráha,užití,účel,typ,dráhy,drážní,popis,vedlejší,obslužná"},"service_times":{"label":"Čas služeb/bohoslužeb:"},"shelter":{"label":"Přístřešek"},"shelter_type":{"label":"Druh"},"shoes":{"label":"Boty"},"shop":{"label":"Druh"},"short_name":{"label":"Krátký název","terms":"zkratka,akronym,iniciály"},"shower":{"label":"Sprchy","terms":"osprchovat,voda,mytí,hygiena,sprchovat se,sprcha"},"side":{"label":"Strana","options":{"left":"Vlevo od cyklisty","right":"Vpravo od cyklisty"}},"siren/purpose":{"label":"Účel"},"siren/type":{"label":"Druh","options":{"electronic":"Elektronická","other":"Ostatní","pneumatic":"Pneumatická"}},"site":{"label":"Druh"},"smoking":{"label":"Kouření","options":{"dedicated":"Zaměřeno na kuřáky (např. kuřácký klub)","isolated":"Na určených místech, oddělených","no":"Ne, všude zakázáno","outside":"Povoleno venku","separated":"Na určených místech, neoddělených","yes":"Povoleno všude"},"placeholder":"Ne, V oddělené místnosti, Ano...","terms":"cigarety,kouřit,vape,zapálit si,kouř,zákaz kouření"},"smoothness":{"label":"Hladkost","options":{"bad":"Robustní kola: běžná auta, trekové bicykly, rikši","excellent":"Tenká kolečka: brusle, skateboardy","good":"Tenká kola: závodní bicykly","horrible":"Terénní kola: off-road auta","impassable":"Neprůjezdné žádným vozidlem","intermediate":"Běžná kola: závodní auta, městské bicykly, kolečková křesla, skútry","very_bad":"Vysoký podvozek: lehká terénní auta","very_horrible":"Speciální terénní kola: traktory, čtyřkolky, tanky, MTB"},"placeholder":"Tenká kolečka, Běžná kola, Terénní kola...","terms":"rovinatost,rovina,povrch,pojezd,kolečka,kvalita"},"sms":{"label":"SMS","terms":"textová zpráva,zpráva,esemeska,mobilní zpráva,text,smska,textově,zprávou,mobilem"},"social_facility":{"label":"Druh","options":{"ambulatory_care":"Ambulantní péče","assisted_living":"Asistované bydlení","day_care":"Denní péče","food_bank":"Potravinová banka","group_home":"Skupinové bydlení","nursing_home":"Dům s pečovatelskou službou","outreach":"Nerezidenční zařízení","shelter":"Noclehárna","workshop":"Chráněná dílna"}},"social_facility_for":{"label":"Komu slouží","options":{"abused":"Oběti zneužívání","child":"Děti","dementia":"Lidé trpící demencí","disabled":"Lidé s postižením","diseased":"Lidé trpící nemocemi","displaced":"Lidé vysídlení kvůli katastrofě nebo konfliktu","drug_addicted":"Drogově závislí","homeless":"Bezdomovci","juvenile":"Mladistvé","mental_health":"Lidé s mentálními zdravotními problémy","migrant":"Migranti","orphan":"Sirotci","refugee":"Uprchlíci","senior":"Starší","terminally_ill":"Lidé s nevyléčitelnou nemocí","underprivileged":"Neprivilegovaní lidé","unemployed":"Lidé bez zaměstnání","veteran":"Veteráni","victim":"Oběti zločinu","woman":"Ženy"}},"source":{"label":"Zdroje","options":{"aerial imagery":"Letecké snímky","gps":"GPS","local knowledge":"Místní znalost","osm notes":"OpenStreetMap poznámky","streetlevel imagery":"Fotky z úrovně ulice","survey":"Průzkum"}},"source/population":{"label":"Zdroj populace"},"spacing":{"label":"Vzdálenost mezi bariérami (v metrech)"},"species":{"label":"Druh","placeholder":"Acer platanoides, Quercus robur, …","terms":"odrůda"},"species/wikidata":{"label":"Wikidata druhu","terms":"wikidata,vikidata,data druhu wikipedie,zdroj dat druhu,automatický výpis informací,podrobnosti,automatizace,wiki,id,číslo"},"sport":{"label":"Sporty","options":{"10pin":"Bowling (10 kuželek)","9pin":"Kuželky (9 kuželek)","american_football":"Americký fotbal","athletics":"Lehká atletika","badminton":"Badminton","baseball":"Baseball","basketball":"Basketbal","beachvolleyball":"Plážový volejbal","billiards":"Kulečník","bmx":"BMX","boules":"Koule","bowls":"Bowls","canoe":"Kanoistika","chess":"Šachy","climbing":"Horolezectví","cricket":"Kriket","curling":"Curling","cycling":"Cyklistika","darts":"Šipky","disc_golf":"Disc Golf","dog_racing":"Psí závody","equestrian":"Jezdecké sporty","fitness":"Fitness","free_flying":"Paragliding / Závěsné létání","futsal":"Futsal","gaelic_games":"Gaelské hry","golf":"Golf","gymnastics":"Gymnastika","handball":"Týmová házená","horse_racing":"Dostihy","ice_hockey":"Lední hokej","ice_skating":"Bruslení na ledě","ice_stock":"Bavorský curling","karting":"Motokárové závody","motocross":"Motokros","motor":"Motoristický sport","multi":"Nespecifikované jiné sporty","netball":"Netball","orienteering":"Orientační běh","padel":"Padel","pelota":"Pelota","rugby_union":"Patnáctkové ragby","running":"Běh","scuba_diving":"Potápění","shooting":"Střelba","skateboard":"Skateboard","ski_jumping":"Skoky na lyžích","skiing":"Lyžování","soccer":"Fotbal","softball":"Softball","speedway":"Motocyklová rychlostní dráha","swimming":"Plavání","table_tennis":"Stolní tenis","tennis":"Tenis","volleyball":"Volejbal","yoga":"Jóga"}},"sport/sport_ice":{"label":"Sporty"},"sport/sport_pub":{"label":"Sporty","terms":"sport,sportovní"},"sport/sport_racing_motor":{"label":"Sporty"},"sport/sport_racing_nonmotor":{"label":"Sporty"},"stars":{"label":"Hvězdiček","terms":"hodnocení"},"start_date":{"label":"Datum vzniku","placeholder":"RRRR-MM-DD","terms":"počátek"},"static_caravans":{"label":"Obytné vozy"},"step_count":{"label":"Počet schodů","terms":"počet schodů,velikost schodiště,schody,výška,délka,délka schodů,kolik schodů,jeden schod"},"stile":{"label":"Druh"},"stop":{"label":"Druh stopky","options":{"all":"Ze všech směrů","minor":"Z vedlejších"}},"street_cabinet":{"label":"Druh","terms":"pouliční skříň,elektřina,plyn,pouliční osvětlení,semafory,monitorování dopravy,správa věřejné dopravy,správa vody,voda,odpad,poštovní schránka,telefon,kabelová televize"},"stroller":{"label":"Přístup pro kočárky","options":{"limited":"Omezeně","no":"Ne","yes":"Ano"},"terms":"pro kočárky,nájezd,sjezd,obrubník,schod,schody,rampa,přístupné,dostupné,sklon,příjezd,kočárek,maminky,děti,miminka"},"structure":{"label":"Struktura","options":{"bridge":"Most","cutting":"Zářez","embankment":"Násyp","ford":"Brod","tunnel":"Tunel"},"placeholder":"Není známo","terms":"stavba,struktura,budova,objekt,hmota,předmět,vytvořeno člověkem"},"structure_canal":{"label":"Struktura","options":{"bridge":"Most","tunnel":"Tunel"},"placeholder":"Neznámý"},"structure_power":{"label":"Struktura","options":{"lattice":"Mříž","solid":"Pevný","tubular":"Trubkový"}},"structure_waterway":{"label":"Struktura","options":{"tunnel":"Tunel"},"placeholder":"Neznámé"},"studio":{"label":"Druh"},"subject":{"label":"Předmět","terms":"předmět,objekt"},"subject/wikidata":{"label":"Wikidata předmětu","terms":"wikidata,vikidata,data předmětu wikipedie,zdroj dat předmětu,automatický výpis informací,podrobnosti,automatizace,wiki,id,číslo"},"substance":{"label":"Látka","options":{"fuel":"Palivo","gas":"Zemní plyn","hot_water":"Horká voda","oil":"Surová ropa","rainwater":"Dešťová voda","sewage":"Odpadní voda","water":"Pitná voda"}},"substation":{"label":"Druh","options":{"compensation":"Kompenzace reaktivní síly","converter":"AC/DC konvertor vysokého napětí","distribution":"Regionální distribuce","generation":"Generační","industrial":"Průmyslová","minor_distribution":"Místní distribuce","traction":"Napájení trakčního systému","transition":"Nadzemní/podzemní přechod","transmission":"Přenos vysokého napětí"}},"substation_pipeline":{"label":"Druh","options":{"compression":"Kompresní","distribution":"Regionální distribuce","field_gathering":"Polní sběrná","industrial":"Průmyslová","inspection_gauge":"Kontrolní měřidlo","measurement":"Měřící","minor_distribution":"Místní distribuce","transmission":"Trafostanice","valve":"Ventil","valve_group":"Ventilová skupina"}},"summit/cross":{"label":"Vrcholový kříž","terms":"vrcholovy kriz,kříž,kriz,summit,kříž na vrcholu,kriz na vrcholu"},"supervised":{"label":"Hlídané","terms":"střežené,obsazené"},"support":{"label":"Připevnění","terms":"podpora,podpěra,závěs,tyč,způsob uchycení,konstrukce,umístění,přichycení,zavěšení,přimontování"},"surface":{"label":"Povrch","options":{"artificial_turf":"Umělý trávník","asphalt":"Asfalt","clay":"Jíl/Antuka","compacted":"Kompaktní (mlat)","concrete":"Beton","concrete:lanes":"Betonové jízdní pruhy","concrete:plates":"Betonové panely","dirt":"Hlína","fine_gravel":"Jemný štěrk","grass":"Tráva","grass_paver":"Zatravňovací dlažba","gravel":"Štěrk","ground":"Země","metal":"Kov","mud":"Vytrvale zablácená","paved":"Zpevněný","paving_stones":"Dlažba","pebblestone":"Oblázková dlažba","salt":"Sůl","sand":"Písek","sett":"Dlažební kostky","tartan":"Tartan","unhewn_cobblestone":"Dlažební kostky (neotesané, nezaoblené)","unpaved":"Nezpevněný","wood":"Dřevo","woodchips":"Štěpka"},"terms":"povrch,materiál,dlažba,asfalt,dlážděno,hladké,upravené,vyježděné,hladkost,tráva,štěrk,kamení,písek,kryt,vrstva"},"surveillance":{"label":"Druh zabezpečení","terms":"druh bezpečnosti,druh ostrahy,bezpečnost,ostraha,zabezpečení,druh"},"surveillance/type":{"label":"Druh zabezpečení","options":{"ALPR":"Automatická čtečka SPZ","camera":"Kamera","guard":"Hlídač"}},"surveillance/zone":{"label":"Zabezpečená zóna"},"survey/date":{"label":"Datum posledního průzkumu","terms":"datum kontroly,návštěvy,datum,prohlídka,návštěva,kontrola,zkontrolováno,ověřeno,navštíveno,kdy,čas,poslední kontrola,aktuální"},"survey_point/datum_aligned":{"label":"Zarovnáno na místní geodetické datum","terms":"zarovnání,základ,geodetický,místní,datum"},"survey_point/purpose":{"label":"Účel","options":{"both":"Oboje","horizontal":"Horizontální zarovnání","vertical":"Vertikální zarovnání"}},"survey_point/structure":{"label":"Struktura","options":{"beacon":"Maják","block":"Masivní blok","bracket":"Závorka","cairn":"Mohyla","cut":"Vyjmout","indented_pin":"Odsazený kolík","magnet":"Magnet","medallion":"Medailon","pillar":"Pilíř","pin":"Kolík","plaque":"Plaketa","pole":"Sloup elektrického vedení"}},"swimming_pool":{"label":"Druh","options":{"kids":"Dětský bazének","lazy_river":"Pomalý tekoucí proud","personal":"Osobní / dvorek","plunge":"Potápění","spa":"Lázně","swimming":"Bazén s drahami","wading":"Brodění / Volný čas","wave_pool":"Bazén s vlnami"}},"switch":{"label":"Druh","options":{"circuit_breaker":"Jistič","disconnector":"Odpojovač","earthing":"Zemnění","mechanical":"Mechanický"}},"tactile_paving":{"label":"Taktilní povrch pro nevidomé","terms":"pro slepce,taktilní,hmatové,zvýrazněné,upozornění,invalidní,invalidy,přístupné,orientace,navigace,pro všechny,akcent,dláždění,linky,pás,slepí,slepci,slepec,nevidomí"},"takeaway":{"label":"Jídlo s sebou","options":{"no":"Ne","only":"Jen s sebou","yes":"Ano"},"placeholder":"Ano, Ne, Jen s sebou","terms":"okno,vokno,s sebou,do ruky,ven,na cestu,výdej,výdejní okno,zabalit,ssebou,sebou"},"target":{"label":"Cílová země"},"taxi_vehicle":{"label":"Druh vozidla","options":{"auto_rickshaw":{"description":"Motorizované rikši (např. bajaj, tříkolka, tuk-tuk atd.)","title":"Motorizovaný rikša"},"cycle_rickshaw":{"description":"Pedálové rikši (např. padyak, velotaxi atd.)","title":"Cyklistický rikša"},"motorcar":{"description":"Běžné auto (implicitně výchozí)","title":"Automobil"},"motorcycle":{"description":"S cestujícími 'jezdeckým pilónem' (např. mototaxi atd.)","title":"Motocykl"}},"terms":"druh vozidla,vozidlo,typ vehiklu,druh vehiklu,druh,typ"},"taxon":{"label":"Taxon","placeholder":"Acer platanoides Columnare, Pyrus calleryana Chanticleer …","terms":"druh,čeleď,řád,třída,rod,kmen,říše,doména,život"},"tee":{"label":"Barva/druh odpaliště"},"telecom":{"label":"Druh","options":{"connection_point":"Bod spojení","data_center":"Datové centrum","distribution_point":"Distribuční bod","exchange":"Ústředna","service_device":"Provozní zařízení"}},"telecom/medium":{"label":"Materiál"},"telescope/type":{"label":"Druh","options":{"optical":"Optický teleskop","radio":"Radiový teleskop"}},"tents":{"label":"Stany"},"tidal":{"label":"Přílivový","terms":"závislý na přílivu,příliv,odliv,nestálý,občasný,vysychající,odlivový,moře,oceán"},"to":{"label":"Do"},"toilets":{"label":"Toalety","terms":"wc,00,záchod,záchody,záchodky,hajzly"},"toilets/disposal":{"label":"Zacházení s odpadem","options":{"bucket":"Nádrž na odpad","chemical":"Chemický","flush":"Splachovací","pitlatrine":"Kadibudka"}},"toilets/handwashing":{"label":"Mytí rukou","terms":"umyvadlo,mýdlo,voda,hygiena,ruce,opláchnutí,kohoutek"},"toilets/menstrual_products":{"label":"Dostupné menstruační produkty zdarma","options":{"limited":"Omezeno na některé stánky","no":"Ne","yes":"Ano, ve všech stáncích"},"terms":"ženská hygiena,vložky,období,výrobky na období,tampony"},"toilets/position":{"label":"Pozice","terms":"umístění,poloha záchodu,toalety,místo,směr,otočení"},"toilets/wheelchair":{"label":"Toalety přístupné pro vozíčkáře","options":{"limited":"Omezeně","no":"Ne","yes":"Ano"},"terms":"záchody pro vozíčkáře,vozíček,vozíčkář,invalida,invalidní záchody,záchod,toaleta,toalety pro invalidy,sklon,bariéra,bezbariérové,bezbariérový záchod,rovina,bezbariérové záchody,pro invalidy,sjezd,přístupné,obrubník,dostupné,dostupnost"},"toll":{"label":"Mýtné","terms":"zpoplatněno,mýto,mýtné,placené,placený úsek,úsek,dálnice,silnice,kamion,platba,cena,poplatek"},"tomb":{"label":"Druh","options":{"columbarium":"Kolumbárium","crypt":"Krypta","dolmen":"Dolmen","hypogeum":"Hypogeum","mausoleum":"Mauzoleum","pyramid":"Pyramida","rock-cut":"Hrob ve skále","sarcophagus":"Sarkofág","table":"Tumba","tumulus":"Mohyla","vault":"Hrobka","war_grave":"Válečný hrob"}},"tourism":{"label":"Druh"},"tower/construction":{"label":"Konstrukce","placeholder":"Ukotvená, příhradová, skrytá, ..."},"tower/platforms":{"label":"Plošiny","placeholder":"1, 2, 3..."},"tower/type":{"label":"Druh"},"townhall/type":{"label":"Druh radnice/obecního úřadu"},"tracktype":{"label":"Klasifikace povrchu","options":{"grade1":"1: Pevný","grade2":"2: Převážně zpevněný povrch s menším množstvím neudusaného písku, hlíny, bahna, trávy","grade3":"3: Napůl zpevněný a napůl měkký povrch jako nezpevněný písek, hlína, bahno, tráva","grade4":"4: Převážně měkký povrch jako nezpevněný písek, hlína, bahno, tráva; ale i trocha zpevněného povrchu","grade5":"5: Nezpevněný písek, hlína, bahno, tráva"},"placeholder":"Pevný, převážně pevný, měkký povrch"},"trade":{"label":"Druh"},"traffic_calming":{"label":"Druh","options":{"bump":"Úzký příčný práh","chicane":"Šikana","choked_table":"Zúžená plocha pro zpomalení","choker":"Zúžení silnice","cushion":"Zpomalovací polštář","dip":"Prohlubeň","double_dip":"Dvojitá prohlubeň","hump":"Široký příčný práh","island":"Dopravní ostrůvek","mini_bumps":"Minimální povolená rychlost","rumble_strip":"Opticko-akustická brzda","table":"Zvýšená plocha pro zpomalení"}},"traffic_calming_road":{"label":"Zklidňování dopravy","terms":"hrbol,šikana,tlumič,polštář,zvýšená plocha,hrb,dunivý pás,pomalu,rychlost,dopravní ostrůvek"},"traffic_sign":{"label":"Dopravní značka"},"traffic_sign/direction":{"label":"Dotčený směr","options":{"backward":"Zpátky","both":"Oba / všechny směry","forward":"Vpřed"}},"traffic_signals":{"label":"Druh"},"traffic_signals/arrow":{"label":"Taktilní šipka","terms":"šipka na stisktutí,chodci stiskněte tlačítko"},"traffic_signals/countdown":{"label":"Odpočítávadlo","terms":"odpočet,odpočítávání,časovač"},"traffic_signals/direction":{"label":"Dotčený směr","options":{"backward":"Zpátky","both":"Oba / všechny směry","forward":"Dopředu"}},"traffic_signals/minimap":{"label":"Haptická mapa","terms":"taktilní mapa,mapa pro nevidomé"},"traffic_signals/sound":{"label":"Zvukové signály","options":{"locate":{"description":"Signál je pouze pro nalezení volacího tlačítka","title":"Lokátor volacího tlačítka"},"no":"Ne","walk":{"description":"Je tam pouze signál, kdy je povolena chůze","title":"Indikace chůze"},"yes":"Ano"}},"traffic_signals/vibration":{"label":"Vibrace"},"trail_visibility":{"label":"Viditelnost pěšiny","options":{"bad":"Špatná: žádné značení, pěšina se místy úplně vytrácí","excellent":"Výborná: všudypřítomné značení nebo zcela jednoznačná cesta","good":"Dobrá: značení viditelné, ale občas je nutné hledat další značku nebo pěšinu","horrible":"Hrozná: pěšina se často ztrácí, je nutné mít orientační smysl","intermediate":"Střední: občasné značení, pěšina je většinou zřetelná","no":"Žádná: pěšina je skoro nezřetelná, je nutné mít výborný orientační smysl"},"placeholder":"Výborná, Dobrá, Špatná...","terms":"viditelnost cesty,jasnost trasy,čitelnost,snadnost,orientace,nápadnost"},"transformer":{"label":"Druh","options":{"auxiliary":"Pomocné: Napájí vnitřní systémy v rozvodnách","converter":"Převodník: Napájí převody energie","distribution":"Distribuce: Napájí konečné spotřebitele, instalované mimo rozvodny","generator":"Generátor: Zvyšování napětí v elektrárnách","main":"Hlavní: Přední energie","phase_angle_regulator":"Regulátor fázového úhlu","yes":"Neznámá role"}},"trees":{"label":"Stromy"},"trench":{"label":"Druh"},"trolley_wire":{"label":"Trolejové vedení","terms":"troleje,zadrátováno,dráty,šňůry,elektrifikováno,elektrifikace,trakce,trakční vedení"},"tunnel":{"label":"Druh","placeholder":"Výchozí"},"tunnel_combo":{"label":"Druh","options":{"avalanche_protector":"Lavinový protektor","building_passage":"Průchod budovy","culvert":"Propustek","flooded":"Zatopený tunel"}},"turning_circle":{"label":"Tvar"},"two_sided":{"label":"Oboustranné","options":{"undefined":"Ne","yes":"Ano"},"terms":"dvojstranné"},"usage_rail":{"label":"Druh použití","options":{"branch":"Vedlejší","industrial":"Průmysl","main":"Hlavní","military":"Armáda","test":"Test","tourism":"Turismus"},"terms":"způsob,druh užití,využití,účel,použití"},"usage_waterway":{"label":"Druh použití","options":{"headrace":"Přivaděč","irrigation":"Zavlažování","spillway":"Přeliv","tailrace":"Odpadní kanál","transmission":"Přenos","transportation":"Doprava"}},"utility":{"label":"Služba","options":{"gas":"Plyn","oil":"Ropa","power":"Energetika","sewerage":"Odpadní voda","street_lighting":"Pouliční osvětlení","telecom":"Telekomunikační","water":"Voda"}},"utility_semi":{"label":"Služby"},"valve":{"label":"Druh"},"vehicles":{"label":"Vozidla","options":{"bus":"Bus","ferry":"Trajekt","light_rail":"Lehká železnice","monorail":"Jednokolejka","subway":"Metro","train":"Vlak","tram":"Tramvaj","trolleybus":"Trolejbus"}},"vending":{"label":"Druhy zboží","options":{"bicycle_tube":"Trubky pro jízdní kola","bread":"Chleba","cigarettes":"Cigarety","coffee":"Káva","condoms":"Kondomy","drinks":"Nápoje","e-cigarettes":"E-cigarety","eggs":"Vejce","electronics":"Elektronika","elongated_coin":"Mince jako suvenýr","excrement_bags":"Sáčky na psí výkaly","feminine_hygiene":"Dámské hygienické produkty","food":"Jídlo","fuel":"Palivo","ice_cream":"Zmrzlina","ice_cubes":"Kostky ledu","milk":"Mléko","newspapers":"Noviny","parking_tickets":"Parkovací lístky","pizza":"Pizza","public_transport_tickets":"Jízdenky veřejné dopravy","stamps":"Poštovní známky","sweets":"Sladkosti","water":"Pitná voda"}},"vhf":{"label":"Kanál VHF","terms":"volací značka,velmi krátké vlny"},"via":{"label":"Přes","terms":"skrz,prostřednictvím,pomocí"},"video_calls":{"label":"Videohovory","terms":"video hovory,dálková komunikace,obrazový hovor,audiovizuální"},"visibility":{"label":"Viditelnost","options":{"area":"Více než 20 m (65 ft)","house":"Do 5 m (16 ft)","street":"5 až 20 m (16 až 65 ft)"},"terms":"jasnost,nápadnost,orientace"},"volcano/status":{"label":"Stav sopky","options":{"active":"Aktivní","dormant":"Spící","extinct":"Vyhaslá"}},"volcano/type":{"label":"Druh sopky","options":{"scoria":"Sypaný kužel","shield":"Štít","stratovolcano":"Stratovulkán"}},"voltage":{"label":"Napětí"},"voltage/primary":{"label":"Primární napětí","terms":"prvotní,primární,napětí,elektřina,síť,síťové,vedení,volt"},"voltage/secondary":{"label":"Sekundární napětí","terms":"sekundární,druhotný,napětí,elektřina,síť,síťové,vedení,volt"},"voltage/tertiary":{"label":"Terciální napětí","terms":"třetí,terciální,napětí,elektřina,síť,síťové,vedení,volt"},"wall":{"label":"Druh"},"waste":{"label":"Odpad","options":{"cigarettes":"Cigarety","dog_excrement":"Psí výkaly","organic":"Zelený odpad","trash":"Odpad"}},"water":{"label":"Druh"},"water_point":{"label":"Kohout s pitnou vodou"},"water_source":{"label":"Vodní zdroj","options":{"groundwater":"Podzemní voda","main":"Potrubí vodní distribuce","pond":"Rybník","river":"Řeka","stream":"Potok","water_tank":"Nádrž na vodu"}},"water_tank/volume":{"label":"Objem (litry)","placeholder":"10000, 20000, 30000…","terms":"litry,obsah,tekutina,mililitr,hektolitr,litr,kubík"},"waterway":{"label":"Druh"},"website":{"label":"Webová stránka","placeholder":"https://priklad.cz","terms":"přítomnost na internetu,uri,adresa url,stránka"},"website/menu":{"label":"Odkaz na nabídku","placeholder":"https://priklad.cz","terms":"online menu,uri menu,adresa url menu,menu webu,nabídka"},"wetland":{"label":"Druh","options":{"bog":"Vrchoviště","fen":"Slatiniště","mangrove":"Mangovník","marsh":"Marše","reedbed":"Rákosina","saltmarsh":"Slanisko","string_bog":"Rašeliniště","swamp":"Močál","tidalflat":"Wattové pobřeží","wet_meadow":"Mokrá louka"}},"wheelchair":{"label":"Pro vozíčkáře","options":{"limited":"Omezeně","no":"Ne","yes":"Ano"},"terms":"přístup pro vozíčkáře"},"wholesale":{"label":"Velkoobchod"},"width":{"label":"Šířka (v metrech)","terms":"šířka v metrech,průjezd,široký,rozměr,délka"},"wikidata":{"label":"Wikidata","terms":"vikidata,data wikipedie,zdroj dat,automatický výpis informací,podrobnosti,automatizace,wiki"},"wikimedia_commons":{"label":"Wikimedia Commons","placeholder":"Soubor:Příklad.jpg","terms":"reference,wikimedia,commons,wiki,odkaz,zdroj,média,obraz,foto,propojení"},"wikipedia":{"label":"Wikipedie","terms":"wiki,wikipedia,wikina,cs.wikipedia.org,vikipedie"},"windings":{"label":"Vinutí","placeholder":"1, 2, 3…","terms":"cívka,způsob,elektromagnetické,elektřina"},"windings/auto":{"label":"Autotransformátor","options":{"no":"Ne","undefined":"Implicitně Ne","yes":"Ano"},"terms":"automatický transformátor,automatická transformátorová stanice,automatická elektrická stanice,automatický"},"windings/configuration":{"label":"Konfigurace vinutí","options":{"delta":"Trojúhelník","leblanc":"LeBlanc","open":"Otevřít","open-delta":"Otevřená delta","scott":"Vinutí v konfiguraci „Scott“","star":"Hvězda","zigzag":"Cikcak"},"terms":"cívka,vinutí,způsob,elektromagnetické,konfigurace,sestavení,provedení"},"wood_provided":{"label":"Palivové dřevo zajištěno","terms":"dřevo dostupné,dřevo k dispozici,palivo,palivové dřevo,větve,špalky,polínka,polena,zásoba dřeva,dřevo zabezpečeno,zásobeno dřevem,dřevo poskytováno,dřevo poskytnuto"}},"presets":{"addr/interpolation":{"name":"Interpolace adresy"},"address":{"name":"Adresa","terms":"město,psč,ulice,čp,če"},"advertising":{"name":"Reklamní zařízení","terms":"reklamní obrazovka,vlajka,neonový nápis,nápis"},"advertising/billboard":{"name":"Reklamní poutač","terms":"reklama,billboard,plakát"},"advertising/board":{"name":"Plakátová plocha","terms":"reklama,reklamní,tabule,nástěnka,deska,vitrýnka,vitrýna,prezentace,prezentační,oznámení,oznamovací,letáčky,plakáty,reklamní plocha,reklamni plocha,plakatova plocha"},"advertising/column":{"name":"Reklamní sloup","terms":"sloup,reklama,reklamní,otáčecí,plakáty,plakátový,polepený"},"advertising/poster_box":{"name":"Plakátová skříň","terms":"doručovací schránka s obrubníkem,domovní doručovací schránka,doručovací schránka přímo ke dveřím,otvor pro dopisy,dopisní štítek,štěrbina pro dopisy,schránka na dopisy,dopisní díra,štítek pro poštu,štěrbina pro poštu,poštovní schránka,poštovní otvor,otvor pro poštu,poštovní štěrbina,schránka přímo u dveří"},"advertising/totem":{"name":"Reklamní totem","terms":"sloup,reklama,reklamní,otáčecí,plakáty,plakátový,polepený"},"aerialway":{"name":"Prvek lanové dráhy"},"aerialway/cable_car":{"name":"Kabinová lanovka","terms":"lanovka,vlek,lanová dráha,lyžování,snowboarding,tramvajová"},"aerialway/chair_lift":{"name":"Sedačková lanovka","terms":"lanovka,lyžování,snowboarding"},"aerialway/drag_lift":{"name":"Lyžařský vlek","terms":"lyžování,snowboarding,povrchový kabel"},"aerialway/gondola":{"name":"Kabinková lanovka","terms":"lanovka,vlek,lyžování,snowboarding"},"aerialway/goods":{"name":"Nákladní lanovka","terms":"lanovka"},"aerialway/j-bar":{"name":"Lyžařský vlek - jednokotva","terms":"vlek,lyžařský,snowboarding,povrchový kabel,jednokotva,jéčko"},"aerialway/magic_carpet":{"name":"Pojízdný koberec","terms":"dopravní pás,lyžování,snowboarding,povrchový vlek"},"aerialway/mixed_lift":{"name":"Smíšený vlek","terms":"lanovka,lyžování,snowboarding"},"aerialway/platter":{"name":"Vlek - talíř (poma)","terms":"talířový vlek,kotoučový vlek,vlek,poma vlek,lyžování,snowboarding,povrchový kabel"},"aerialway/pylon":{"name":"Sloup lanovky","terms":"tyč sedačkové lanovky,lyžování,snowboarding,věž lanovky"},"aerialway/rope_tow":{"name":"Vlek - kotvičkový","terms":"kotvičkový vlek,vlek,rukojeť vleku,lyžování,snowboarding,povrchový kabel"},"aerialway/t-bar":{"name":"Lyžařský vlek - kotva","terms":"vlek,lyžování,povrchový kabel,kotva"},"aerialway/zip_line":{"name":"Lanový skluz","terms":"baldachýn,skluzavka na laně,skluzavka s gravitačním pohonem,tyrolský traverz,lanový skluz,lanový sjezd,dětská lanovka"},"aeroway":{"name":"Prvek letecké dopravy"},"aeroway/aerodrome":{"name":"Letiště","terms":"letecká,letoun,tryskáč,letadla"},"aeroway/apron":{"name":"Odbavovací plocha","terms":"parkování letadel,letová linie,pevná stojka,rampa,asfalt,pojezdová dráha"},"aeroway/gate":{"name":"Letištní brána","terms":"brána,letadlo,tetiště"},"aeroway/hangar":{"name":"Hangár","terms":"garáž,letadlo,letiště"},"aeroway/helipad":{"name":"Helipad","terms":"přistávací plocha,pristavaci plocha,vrtulník,vrtulnik,helikoptéra,helikoptera"},"aeroway/holding_position":{"name":"Vyčkávací místo letadla","terms":"čekání na letadlo,místo pro čekání letadla,vyčkávací místo,vyčkávání na letadlo"},"aeroway/jet_bridge":{"name":"Nástupní most","terms":"letecké molo,prst,lávka,most do letadla,nástupní tunel,most,nástup,most z terminálu"},"aeroway/parking_position":{"name":"Parkovací místo letadla","terms":"místo na zaparkování letadla,parkovací místo pro letadlo,parkovací místo,zaparkování letadla"},"aeroway/runway":{"name":"Vzletová a přistávací dráha","terms":"přistávací dráha"},"aeroway/spaceport":{"name":"Vesmírný přístav","terms":"kosmodrom,komplex pro odpalování raket,místo pro odpalování raket,dostřel raket,vesmírný přístav"},"aeroway/taxiway":{"name":"Pojezdová dráha","terms":"taxiway,letiště,pojezdová"},"aeroway/terminal":{"name":"Letištní terminál","terms":"letiště,letištní"},"aeroway/windsock":{"name":"Větrný rukáv","terms":"ukazatel větru,rukáv,vítr"},"allotments/plot":{"name":"Zahrádka uvnitř kolonie","terms":"pozemek komunitní zahrady,komunitní zahrada"},"amenity":{"name":"Zařízení"},"amenity/animal_boarding":{"name":"Hotel pro zvířata","terms":"stravování,kočka,chovatelská stanice,pes,kůň,bouda,kotě,domácí mazlíček,stravování pro domácí mazlíčky,péče o domácí mazlíčky,hotel pro domácí mazlíčky,štěně,plaz"},"amenity/animal_breeding":{"name":"Chovná stanice","terms":"chovná,býk,kočka,kráva,pes,kůň,chov,kotě,hospodářská zvířata,chov domácích mazlíčků,štěně,plaz"},"amenity/animal_shelter":{"name":"Zvířecí útulek","terms":"adopce,ochrana zvířat,kočka,pes,kůň,kotě,péče o domácího mazlíčka,záchrana domácích mazlíčků,štěně,dravec,plaz,záchrana,spca,libra"},"amenity/arts_centre":{"name":"Umělecké centrum","terms":"centrum umění,komunitní umění,divadelní prostor,divadelní místo"},"amenity/atm":{"name":"Bankomat","terms":"peníze,hotovost,automat"},"amenity/baking_oven":{"name":"Pečící trouba","terms":"pekárna,úlová pec,chléb,hliněná pec,horno,zednická pec,tabunová pec,pec na pizzu"},"amenity/bank":{"name":"Banka","terms":"šek,vklad,fond,investice,úložiště,rezerva,trezor,úspory,akcie,pokladna,důvěra,sejf"},"amenity/bar":{"name":"Bar","terms":"putyka,pivo,pivko,chlast"},"amenity/bar/lgbtq":{"name":"Bar LGBTQ+","terms":"gay bar,lesbický bar,lgbtq bar,lgbt bar,lgb bar"},"amenity/bbq":{"name":"Gril","terms":"barbecue,grilovat,gril"},"amenity/bench":{"name":"Lavička","terms":"sezení,židle"},"amenity/bicycle_parking":{"name":"Parkování kol","terms":"kolo,parkoviště kol,cyklistika"},"amenity/bicycle_parking/building":{"name":"Garáž pro kola","terms":"parkoviště pro kola,parkování pro kola,cyklistika,patrový cyklopark,vícepatrový bikepark"},"amenity/bicycle_parking/lockers":{"name":"Boxy pro kola","terms":"skříňka na kola,cyklistika,cyklobox"},"amenity/bicycle_parking/shed":{"name":"Uzavíratelný přístřešek pro kola","terms":"uzaviratelny pristresek pro kola,cyklistický přístřešek,cyklisticky pristresek,cyklistika"},"amenity/bicycle_rental":{"name":"Půjčovna kol","terms":"kolo,bicykl,sdílená jízda na kole,sdílená jízda na bicyklu,dok pro jízdní kola,centrum pro jízdní kola,sdílení na kole,cyklistika"},"amenity/bicycle_repair_station":{"name":"Montážní stojan na kola","terms":"řetěz na kolo,nástroje na kolo,oprava kol,nářadí na kolo,pumpa na kolo,oprava jízdních kol,cyklistika"},"amenity/bicycle_wash":{"name":"Mytí jízdních kol","terms":"kolo,jízdní kolo,mytí kol,čištění jízdních kol,mytí kola,oplachovací stanice,cyklistika"},"amenity/biergarten":{"name":"Pivní zahrádka","terms":"pivo,pivko,chlast"},"amenity/binoculars":{"name":"Namontovaný dalekohled","terms":"pozorování,optický strážce,pozorovací dalekohled,zaměřovač,dalekohled,teleskop,věžový strážce,hledáček,pozorovací místo"},"amenity/boat_rental":{"name":"Půjčovna lodí","terms":"půjčovna loděk,půjčovna člunů"},"amenity/boat_storage":{"name":"Místo pro uložení lodí","terms":"loděnice,suchý dok,přístav"},"amenity/bureau_de_change":{"name":"Směnárna","terms":"směnárník"},"amenity/bus_station":{"name":"Autobusové nádraží / terminál"},"amenity/cafe":{"name":"Kavárna","terms":"bistro,káva,čaj"},"amenity/cafe/bubble_tea":{"name":"Perlivý mléčný čaj","terms":"boba,bublinový mléčný čaj,perlový mléčný čaj,tchajwanský čajový nápoj,tapioka,perlový čaj,boba drink"},"amenity/cafe/coffee_shop":{"name":"Občerstvení s kavárnou","terms":"americano,várka,kafe,kavárna,káva,café,cappuccino,kakao,obchod s kávou,překapávaná,espresso,horké nápoje,latte,macchiato,čaj"},"amenity/cafe/teahouse":{"name":"Čajovna","terms":"čajový domek,čajový dům,čajový pokoj,čajová místnost,pití čaje"},"amenity/car_pooling":{"name":"Stanice spolujízdy","terms":"sdílení aut,spolujízda,sdílení výtahu,sdílení jízdy"},"amenity/car_rental":{"name":"Půjčovna aut","terms":"autopůjčovna,půjčení auta"},"amenity/car_sharing":{"name":"Stanice sdílení aut","terms":"sdílení aut,auto"},"amenity/car_wash":{"name":"Automyčka","terms":"myčka,mytí,čistění,umývání,čistírna"},"amenity/casino":{"name":"Kasino","terms":"hazardní hry,ruleta,kostky,poker,blackjack"},"amenity/charging_station":{"name":"Nabíjecí stanice","terms":"ev,elektrický vůz,přebíječka"},"amenity/childcare":{"name":"Předškolní a mimoškolní péče","terms":"jesle,sirotčinec,herní skupina"},"amenity/cinema":{"name":"Kino","terms":"vjezd,film,filmové,biják,divadlo,obrázek,pořad,obrazovka"},"amenity/clinic":{"name":"Poliklinika","terms":"lékařská,urgentní péče"},"amenity/clinic/abortion":{"name":"Potratová klinika","terms":"ženské zdravotnictví"},"amenity/clinic/dialysis":{"name":"Dialyzační středisko","terms":"dialýza ledvin,dialyzační ambulance"},"amenity/clinic/fertility":{"name":"Klinika plodnosti","terms":"vajíčko,plodnost,rozmnožování,spermie,ovulace"},"amenity/clock":{"name":"Hodiny","terms":"čas"},"amenity/clock/sundial":{"name":"Sluneční hodiny","terms":"gnómón,stín"},"amenity/community_centre":{"name":"Komunitní centrum","terms":"komunitni centrum,společenské centrum,spolecenske centrum,společenský sál,spolecensky sal,událost,udalost,hala"},"amenity/community_centre/club_home":{"name":"Klubovna","terms":"klubová místnost,klubova mistnost,klubové centrum,klubove centrum"},"amenity/community_centre/community_hall":{"name":"Společenský sál","terms":"spolecensky sal,komunitní sál,komunitni sal"},"amenity/community_centre/cultural_centre":{"name":"Kulturní centrum","terms":"kulturni centrum,kulturní středisko,kulturni stredisko,centrum kultury,kulturní sál,kulturni sal"},"amenity/community_centre/family_centre":{"name":"Rodinné centrum","terms":"rodinne centrum,centrum pro rodinu,rodinné středisko,rodinne stredisko"},"amenity/community_centre/lgbtq":{"name":"Komunitní centrum LGBTQ+","terms":"lgbtq událost,lgbtq hala,lgbt událost,lgbt hala,lgb událost,lgb hala'"},"amenity/community_centre/parish_hall":{"name":"Farní sál","terms":"farni sal,náboženský sál,nabozensky sal,sál fary"},"amenity/community_centre/village_hall":{"name":"Obecní sál","terms":"obecni sal,obecni hala,obecní středisko,obecni stredisko"},"amenity/community_centre/youth_centre":{"name":"Centrum mládeže","terms":"centrum mladeze,centrum pro mládež,centrum pro mladez,klub mládeže,klub mladeze,mládežnické centrum,mladeznicke centrum"},"amenity/compressed_air":{"name":"Stlačený vzduch","terms":"vzduchová pumpa,pumpa,pumpička,kompresor,hustilka"},"amenity/conference_centre":{"name":"Konferenční centrum","terms":"hlediště,výstava,expozice,přednáška"},"amenity/courthouse":{"name":"Soud","terms":"soudní,soudní budova,soudní dvůr"},"amenity/coworking_space":{"name":"Místo pro spolupráci"},"amenity/crematorium":{"name":"Krematorium","terms":"krematorium,hřbitov,pohřeb"},"amenity/dentist":{"name":"Zubař","terms":"dentista,zubař,zubní ordinace"},"amenity/device_charging_station":{"name":"Nabíječka mobilních zařízení","terms":"nabíjecí stanice,nabíjecí místo,nabíjecí místo pro telefon,nabíjení zařízení,nabíječka pro zařízení,nabíječka telefonu,místo pro nabíjení,nabíjecí stanoviště,nabíjecí stanice pro mobilní zařízení,nabíjecí kiosek,dobíječka"},"amenity/dive_centre":{"name":"Centrum potápění","terms":"potápěčské centrum,škola potápění,potápění,centrum pro potápěče"},"amenity/doctors":{"name":"Lékař","terms":"lékař,doktor,zdravotník"},"amenity/doctors/allergology":{"name":"Alergolog","terms":"alergolog,specialista na alergie,léčení alergií,léčení astma"},"amenity/doctors/cardiology":{"name":"Kardiolog","terms":"kardiochirurg,kardiologie,kardiovaskulární systém,koronární tepna,srdce"},"amenity/doctors/child_psychiatry":{"name":"Dětský a dorostový psychiatr","terms":"adolescentní psychiatrie,dětská psychiatrie,pediatrická psychiatrie"},"amenity/doctors/dermatology":{"name":"Dermatolog","terms":"dermatologie,vlasy,nehty,kožní"},"amenity/doctors/gastroenterology":{"name":"Gastroenterolog","terms":"vnitřnosti,trávicí soustava,zažívání,jícen,potravní trubice,žlučový kámen,gastrointestinální trakt,gastroenterologie,hltan,střeva,tlusté střevo,játra,hrtan,tenké střevo,žaludek"},"amenity/doctors/general":{"name":"Praktický lékař","terms":"doktor,rodinný lékař,rodinný praktický lékař,rodinný doktor"},"amenity/doctors/gynaecology":{"name":"Porodník / gynekolog","terms":"vajíčko,gynekolog,gynekologie,gynekologický,porodnice,porodní,porodnictví,ovulace,reprodukční,lékař pro ženy,lékař na ženy"},"amenity/doctors/haematology":{"name":"Hematolog","terms":"anémie,krev,kostní dřeň,hematologie,leukémie,lymfom"},"amenity/doctors/internal":{"name":"Internista","terms":"interní praktický lékař,interna,lékař"},"amenity/doctors/nephrology":{"name":"Nefrolog","terms":"ledvina,ledviny,lék na ledviny,nefrologie,renální"},"amenity/doctors/neurology":{"name":"Neurolog","terms":"mozek,nervy,nervový systém,neurologie,neurochirurgie"},"amenity/doctors/neurosurgery":{"name":"Neurochirurg","terms":"mozek,neurologická chirurgie"},"amenity/doctors/oncology":{"name":"Onkolog","terms":"rakovina,chemoterapie,onkologie,nádor"},"amenity/doctors/ophthalmology":{"name":"Oční lékař","terms":"oko,oči,brýle,okulárky,oční"},"amenity/doctors/orthopaedics":{"name":"Ortopedický chirurg","terms":"ortopedická chirurgie"},"amenity/doctors/otolaryngology":{"name":"Otolaryngolog","terms":"ucho,ušní nosní krční,operace hlavy a krku,nos,hlava a krk,orl,otolaryngolog,otorinolaryngologie,lebka,krk"},"amenity/doctors/paediatrics":{"name":"Pediatr","terms":"dospívající,děti,kojenci,pediatrie"},"amenity/doctors/pathology":{"name":"Patolog","terms":"pitva,anatomická patologie,anatomický patolog,patologie"},"amenity/doctors/plastic_surgery":{"name":"Plastický chirurg","terms":"estetická chirurgie,kosmetická chirurgie,plastika,rekonstrukční chirurgie,plastická chirurgie"},"amenity/doctors/podiatry":{"name":"Podiatr","terms":"kotník,nohy,noha,chodidlo,chodidla,podiatrie"},"amenity/doctors/proctology":{"name":"Kolorektální chirurg","terms":"zadek,kolorektální chirurgie,proktologie"},"amenity/doctors/psychiatrist":{"name":"Psychiatr","terms":"psychiatrie"},"amenity/doctors/pulmonology":{"name":"Pneumolog","terms":"astma,lék na hruď,plíce,pneumologie,pneumonologie,pneumonie,plicní,dýchací cesty,respirologie,respirační medicína"},"amenity/doctors/radiology":{"name":"Radiolog","terms":"radiologie,počítačová tomografie,ct,zobrazování magnetické rezonance,lékařský ultrazvuk,lékařská ultrasonografie,mri,sonografie,ultrasonografie"},"amenity/doctors/rheumatology":{"name":"Revmatolog","terms":"lupus,oteoporóza,revma,revmatologie"},"amenity/doctors/surgery":{"name":"Všeobecný chirurg","terms":"chirurgie"},"amenity/doctors/trauma":{"name":"Traumatický chirurg","terms":"chirurgie,traumatická chirurgie"},"amenity/doctors/urology":{"name":"Urolog","terms":"adrenální žlázy,močový měchýř,nadvarle,ledviny,penis,prostata,reprodukční,šourek,varlata,kulky,močová trubice,močovod,urologie,moč"},"amenity/dog_toilet":{"name":"Psí toaleta","terms":"oblast psích výkalů,psí exkrementy,psí bobky,psí moč,močení psů,místo na ulevení psů"},"amenity/dojo":{"name":"Škola bojových umění","terms":"bojová umění,dojang"},"amenity/dressing_room":{"name":"Kabinka pro převlečení","terms":"šatna,šatník,zkušební kabinka,skřiňka"},"amenity/drinking_water":{"name":"Pitná voda","terms":"zdroj pitné vody,vodní fontána,napáječka,bublina,vodovodní kohoutek"},"amenity/driver_training":{"name":"Cvičná plocha pro řidiče","terms":"autoškola"},"amenity/embassy":{"name":"Velvyslanectví"},"amenity/events_venue":{"name":"Místo konání akcí","terms":"misto konani akci,hodovní síň,hodovni sin,křest,krest,bar micva,bat micva,narozeniny,oslavy,oslava,konference,schůzky,schuzky,schuzka,večírky,vecirky,večírek,vecirek,party,quinceañera,setkání,setkani,svatby,svatba,eventy,event,firemní akce,firemni akce,společenské akce,spolecenske akce"},"amenity/exhibition_centre":{"name":"Veletržní palác","terms":"trh,veletrh,přehlídka,výstava,expozice,výstaviště"},"amenity/fast_food":{"name":"Rychlé občerstvení","terms":"restaurace,s sebou"},"amenity/fast_food/bagel":{"name":"Bagel rychlé občerstvení","terms":"snídaně,lox"},"amenity/fast_food/burger":{"name":"Burger rychlé občerstvení","terms":"snídaně,stolovat,stolování,večeře,drive-in,jídlo,gril,oběd,stůl"},"amenity/fast_food/cafeteria":{"name":"Kafeterie","terms":"kantýna,jídelna,stravovna,žrádelna"},"amenity/fast_food/chicken":{"name":"Kuřecí rychlé občerstvení","terms":"snídaně,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/fast_food/chinese":{"name":"Čínské rychlé občerstvení","terms":"čínská,čína,rychlé občerstvení,fast food,restaurace,jídlo,oběd,večeře"},"amenity/fast_food/donut":{"name":"Kiosek s donuty","terms":"snídaně,snídat,kavárna,jídelna,káva,večeře,večeřet,donut,kobliha,jídlo,oběd,stůl"},"amenity/fast_food/fish_and_chips":{"name":"Fish & Chips rychlé občerstvení","terms":"snídaně,kavárna,kafe,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,hranolky"},"amenity/fast_food/hot_dog":{"name":"Párek v rohlíku rychlé občerstvení","terms":"ballpark,pikador,párek,stánek s hotdogem,sendvič,klobása,vídeňské"},"amenity/fast_food/ice_cream":{"name":"Zmrzlina"},"amenity/fast_food/juice":{"name":"Čerstvé ovocné šťávy","terms":"kafe,kavárna,nápoje,ovocné nápoje,džusárna,koktejly,smoothie"},"amenity/fast_food/kebab":{"name":"Kebab rychlé občerstvení","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/fast_food/mexican":{"name":"Mexické rychlé občerstvení","terms":"snídaně,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,tacos,burritos,enchiladas,fajitas,nachos,tortilly,salsa,tamales,quesadillas"},"amenity/fast_food/pizza":{"name":"Pizza rychlé občerstvení","terms":"stolovat,stolování,večeře,drive-in,jíst,oběd,stůl,hluboká mísa,tenká kůrka,plátek"},"amenity/fast_food/sandwich":{"name":"Sandwichové rychlé občerstvení","terms":"snídaně,kavárna,kafe,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/fast_food/wings":{"name":"Kuřecí křídla rychlé občerstvení","terms":"kuře,stolovat,stolování,večeře,jíst,oběd,stůl"},"amenity/ferry_terminal":{"name":"Terminál přívozu/trajektu"},"amenity/fire_station":{"name":"Hasičská zbrojnice","terms":"hasiči,požární zbrojnice"},"amenity/food_court":{"name":"Jídelní plocha","terms":"fast food,restaurece,jídlo"},"amenity/fountain":{"name":"Fontána, vodotrysk","terms":"kašna,voda"},"amenity/fuel":{"name":"Čerpací stanice","terms":"benzín,palivo,pohon,propan,nafta,lng,cng,bionafta"},"amenity/funeral_hall":{"name":"Pohřební síň","terms":"pohrebni sin,pohřební obřad,pohrebni obrad"},"amenity/gambling":{"name":"Místo pro hazard","terms":"sázení,bingo,blackjack,kasino,kostky,hazard,hazardní hry,keno,loterie,pachinko,poker,ruleta,výherní automaty,automaty"},"amenity/give_box":{"name":"Darovací box","terms":"dary,darovací stůl,darovací krabice,police s dary,dárkový box,knihovna,sdílená police"},"amenity/grave_yard":{"name":"Pohřebiště","terms":"pohřebák,hřbitov,hřbitovní,kostel,kolumbárium,krchov,mauzoleum,hrobka"},"amenity/grit_bin":{"name":"Zásobník na posypový materiál","terms":"sůl,písek"},"amenity/hookah_lounge":{"name":"Salonek s vodní dýmkou","terms":"vodní dýmka,nargile,shisha,ochucený tabák"},"amenity/hospital":{"name":"Prostor nemocnice","terms":"klinika,lékař,pohotovost,zdraví,ošetřovna,ústav,sanatorium,sanitarium,nemocný,ordinace,oddělení"},"amenity/hunting_stand":{"name":"Myslivecký posed","terms":"myslivecky posed,posed,zbraň,puška,střílet*,divoký,sledovat"},"amenity/ice_cream":{"name":"Zmrzlina","terms":"zmrzka,sorbet,sherbet,mražený,jogurt"},"amenity/ice_cream/frozen_yogurt":{"name":"Prodej mraženého jogurtu","terms":"mrogurt,mrojo,mražený jogurt,zmrzlina,jogurt,zmrzka"},"amenity/internet_cafe":{"name":"Internetová kavárna","terms":"kyberkavárna,taxifon,telebutika,káva,kavárna,net,lanhouse"},"amenity/karaoke_box":{"name":"Karaoke kabinka","terms":"karaoke klub,karaoke místnost,karaoke televize,ktv"},"amenity/kneipp_water_cure":{"name":"Kneippova lázeň","terms":"lázeň nohou,hydroterapie,kneippova péče,kneippova hydroterapie,kneippismus"},"amenity/lavoir":{"name":"Lavor","terms":"oblečení,prádlo,praní"},"amenity/letter_box":{"name":"Domovní poštovní schránka","terms":"doručovací schránka s obrubníkem,domovní doručovací schránka,doručovací schránka přímo ke dveřím,otvor pro dopisy,dopisní štítek,štěrbina pro dopisy,schránka na dopisy,dopisní díra,štítek pro poštu,štěrbina pro poštu,poštovní schránka,poštovní otvor,otvor pro poštu,poštovní štěrbina,schránka přímo u dveří"},"amenity/library":{"name":"Knihovna","terms":"knihy"},"amenity/library_dropoff":{"name":"Vrácení knihy do schránky","terms":"odevzdání knihy,vrácení knihy,odevzdání v knihovně,vrácení knihy z knihovny,vrácení knihovně"},"amenity/loading_dock":{"name":"Nakládací rampa","terms":"dveře,nakládací rampa,doprava,vykládka,sklad"},"amenity/lounger":{"name":"Lehátka","terms":"sedačka,židle,lavička"},"amenity/love_hotel":{"name":"Hodinový hotel","terms":"hotel lásky,hotel pro zamilované,hotel pro páry"},"amenity/luggage_locker":{"name":"Schránka na zavazadla","terms":"schranka na zavazadla,úschovna zavazadel,uschovna zavazadel,zavazadla,tašky,tasky,skříňka,skrinka,skříňky,skrinky,zavazadlo"},"amenity/marketplace":{"name":"Tržiště","terms":"trh,stánky"},"amenity/monastery":{"name":"Klášterní pozemky","terms":"opatství,bazilika,betel,katedrála,kněžiště,kostelík,kaple,kostel,mše,dům boží,modlitebna,dům uctívání,kazatel,misie,klášter,mešita,oratoř,farnost,sacellum,svaté místo,svatyně,synagoga,svatostánek,chrám"},"amenity/money_transfer":{"name":"Místo pro peněžní převody","terms":"peněžní poukázka,šek,účet,měna,finance,bankovní převod,kabel,osoba na osobu,hotovost na hotovost,směna"},"amenity/mortuary":{"name":"Márnice","terms":"krematorium,pohřební ústav,pamětní ústav,pohřební,pohřebák"},"amenity/motorcycle_parking":{"name":"Parkování pro motorky","terms":"parking,parkování,garáž,motorka,motocykl"},"amenity/motorcycle_rental":{"name":"Půjčovna motocyklů","terms":"vrtulník,cruiser,dirt bike,hog,minibike,moped,motorka,motorový skútr,sajdkára,sportovní kolo"},"amenity/nightclub":{"name":"Noční klub","terms":"nocni klub,diskotéka,diskoteka,disco,tancování,tancovani,taneční klub,tanecni klub"},"amenity/nightclub/lgbtq":{"name":"Noční klub LGBTQ+","terms":"gay noční klub,lesbický noční klub,lgbtq noční klub,lgbt noční klub,lgb noční klub"},"amenity/nursing_home":{"name":"Domov pro seniory"},"amenity/parcel_locker":{"name":"Schránka na zásilky","terms":"automatizovaná poštovní schránka,odevzdání,skříňka,pošta,balicí stanice,balík,vyzvednutí,balíkomat,balikomat"},"amenity/parking":{"name":"Parkoviště","terms":"parkoviště pro automobily,parkování aut,parkoviště pro auta,rv parkoviště,kamionové parkoviště,parkování vozidel"},"amenity/parking/multi-storey":{"name":"Vícepatrové garáže","terms":"auto,kryté parkoviště,vícepodlažní parkoviště,parkáda,parkovací budova,parkovací plošina,parkovací garáž,parkovací rampa,parkovací struktura"},"amenity/parking/park_ride":{"name":"parkoviště P+R","terms":"parkoviště pro dojíždějící,parkoviště s pobídkami,parkoviště metra,parkoviště a koupaliště,parkoviště,p+r,parkoviště mhd,parkoviště veřejné dopravy,parkoviště vlaků"},"amenity/parking/street-side":{"name":"Parkování vedle vozovky","terms":"parkoviště pro automobily,parkoviště,parkování vozidel,parkování na ulici,parkování v ulici,parkování u silnice,parkování na kraji"},"amenity/parking/underground":{"name":"Podzemní parkoviště","terms":"parkoviště pro automobily,parkoviště aut,parkoviště pro auta,rv parkoviště,podpovrchové parkoviště,parkoviště pro nákladní automobily,parkoviště pro vozidla"},"amenity/parking_entrance":{"name":"Vjezd / Výjezd krytého parkoviště","terms":"parkoviště,parkování,garáž,garáže,vjezd,výjezd,vjezd do garáže,průjezd,parkování v objektu,kryté parkoviště,parkovací dům"},"amenity/parking_space":{"name":"Parkovací místo","terms":"místo k parkování,stání na parkovišti"},"amenity/parking_space/disabled":{"name":"Místo pro tělesně postižené","terms":"invalida,parkovací stání pro invalidy,parkovací místo pro invalidy,invalidní vozík"},"amenity/payment_centre":{"name":"Platební centrum","terms":"šek,zaplacení daně,platba účtu,měna,finance,hotovost,peníze"},"amenity/payment_terminal":{"name":"Platební terminál","terms":"interaktivní kiosek,e-kiosek,bankomat,platba účtu,daňová platba,platba za telefon,finance,hotovost,převod peněz,karta"},"amenity/pharmacy":{"name":"Lékárna","terms":"apotéka,léky,drogerie,med*,předpis"},"amenity/photo_booth":{"name":"Foto budka","terms":"fotobudka,foto,stánek,kiosek,kamera"},"amenity/place_of_worship":{"name":"Místo náboženských obřadů","terms":"misto nabozenskych obradu,bohoslužba,bohosluzba,mše,mse,opatství,opatstvi,bazilika,betel,katedrála,katedrala,kancléř,kostelík,kostelik,kostel,boží dům,bozi dum,modlitebna,dům uctívání,dum uctivani,kazatel,misie,mešita,mesita,oratoř,orator,farnost,sacellum,svaté místo,svate misto,svatyně,svatyne,synagoga,svatostánek,svatostanek,chrám,chram"},"amenity/place_of_worship/buddhist":{"name":"Buddhistický chrám","terms":"stúpa,vihara,klášter,chrám,pagoda,zendo,dojo"},"amenity/place_of_worship/christian":{"name":"Křesťanský kostel","terms":"křesťaňský,opatství,bazilika,betel,katedrála,kněžiště,kaple,mše,dům boží,modlitebna,dům uctívání,kazatel,misie,oratoř,farnost,sacellum,svaté místo,svatyně,svatostánek,chrám,anglikánská,římskokatolická"},"amenity/place_of_worship/christian/jehovahs_witness":{"name":"Královská síň svědků Jehovových","terms":"křesťanský,kostel,dům boží,modlitebna,dům uctívání"},"amenity/place_of_worship/christian/la_luz_del_mundo":{"name":"Chrám La Luz del Mundo","terms":"křesťanský,kostel,dům boží,modlitebna,dům uctívání,církev světlo světa"},"amenity/place_of_worship/christian/quaker":{"name":"Dům pro setkání přátel Quakerů","terms":"křesťanský,kostel,dům boží,modlitebna,dům uctívání"},"amenity/place_of_worship/hindu":{"name":"Hinduistický chrám","terms":"kovil,devasthana,mandir,kshetram,alayam,svatyně,chrám"},"amenity/place_of_worship/jewish":{"name":"Židovská synagoga","terms":"židovská"},"amenity/place_of_worship/muslim":{"name":"Islámská mešita","terms":"islám,islámské centrum,muslim"},"amenity/place_of_worship/shinto":{"name":"Džindža (šintoistická svatyně)","terms":"kami,torii"},"amenity/place_of_worship/sikh":{"name":"Sikhský chrám","terms":"gurudwara,chrám"},"amenity/place_of_worship/taoist":{"name":"Taoistický chrám","terms":"taoista,klášter,chrám"},"amenity/planetarium":{"name":"Planetárium","terms":"muzeum,astronomie,observatoř"},"amenity/police":{"name":"Policie","terms":"odznak,strážník,policajt,polda,detektiv,cizinecká,zákon,vymáhání,důstojník,hlídka"},"amenity/polling_station":{"name":"Stálé volební místo","terms":"volební urna,odložení hlasovacích lístků,demokracie,volby,volební místnost,hlasování,volební kabina,hlasovací stroj"},"amenity/post_box":{"name":"Poštovní schránka","terms":"schránka,schránky,schránka na dopisy,mailová schránka,schránka pro shromažďování pošty,shoz pošty,předávání pošty,schránka na maily,vhození balíku,sloupová schránka,schránka na sloupu,post box,pošta,postbox"},"amenity/post_depot":{"name":"Poštovní depo","terms":"středisko zpracování a distribuce pošty,třídírna pošty"},"amenity/post_office":{"name":"Pošta","terms":"dopis,poštovní"},"amenity/prison":{"name":"Prostor věznice","terms":"cela,vězení,náprava"},"amenity/pub":{"name":"Hospoda","terms":"alkohol,nápoj,pití,pivo,pivko,chlast"},"amenity/pub/irish":{"name":"Irský bar","terms":"irská hospoda"},"amenity/pub/lgbtq":{"name":"Hospoda LGBTQ+","terms":"gay hospoda,lesbická hospoda,lgbtq hospoda,lgbt hospoda,lgb hospoda"},"amenity/pub/microbrewery":{"name":"Hospoda s mikropivovarem","terms":"alkohol,nápoj,pití,pivo,pivko,chlast,řemeslný pivovar,mikropivovar,malodávkový pivovar"},"amenity/public_bath":{"name":"Veřejné lázně","terms":"onsen,koupel nohou,horký pramen"},"amenity/public_bookcase":{"name":"Veřejná knihovnička","terms":"knihovna,knihkupectví"},"amenity/ranger_station":{"name":"Stanice strážců NP","terms":"návštěvní centrum,návštěvnické centrum,povolovací centrum,centrum povolení,backcountry kancelář,dozorce,centrum dozorce"},"amenity/recycling":{"name":"Recyklace"},"amenity/recycling/container/electrical_items":{"name":"Nádoba na elektroodpad","terms":"počítače,elektronický odpad,recyklace elektroniky,elektroodpad,telefony,tablety"},"amenity/recycling/container/green_waste":{"name":"nádoba na biologický odpad","terms":"biologicky rozložitelný,biologický,kompost,rozložitelný,popelnice,bioodpad,organický,odpadky,zbytky potravin"},"amenity/recycling_centre":{"name":"Sběrný dvůr","terms":"láhev,plechovka,skládka,sklo,odpad,odpadky,šrot,odpadní"},"amenity/recycling_container":{"name":"Kontejner na tříděný odpad","terms":"recyklacni kontejner,koš,plechovka,láhev,sklo,odpad,odpadky,šrot,odpadní"},"amenity/refugee_site":{"name":"Uprchlický tábor","terms":"vysídlení lidé,evakuovaní,migranti,nevládní organizace,místo pro uprchlíky"},"amenity/research_institute":{"name":"Výzkumný ústav","terms":"vyzkumny ustav,aplikovaný výzkum,aplikovany vyzkum,experimentace,výzkum a vývoj,vyzkum a vyvoj,výzkumná instituce,vyzkumna instituce,výzkumná laboratoř,vyzkumna laborator,výzkumné laboratoře,vyzkumne laboratore,akademie věd,akademie ved,akademie,ústav,vustav,ědecký ústav,vedecky ustav,vědecká instituce,vedecka instituce,věda,veda,výzkum,vyzkum,vývoj,vyvoj,vědecké pracoviště,vedecke pracoviste,výzkumné pracoviště,vyzkumne pracoviste,výzkumný institut,vyzkumny institut,vědecký institut,vedecky institut"},"amenity/restaurant":{"name":"Restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,káva,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/american":{"name":"Americká restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,káva,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/asian":{"name":"Asijská restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,káva,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/barbecue":{"name":"Barbecue restaurace","terms":"barbecue,grilování,gril,bbq,restaurace s grilem,barbecue restaurace"},"amenity/restaurant/chinese":{"name":"Čínská restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/french":{"name":"Francouzská restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/georgian":{"name":"Gruzínská restaurace","terms":"bar,snídaně,stolovat,stolování,večeře,drive-in,jíst,oběd,stůl"},"amenity/restaurant/german":{"name":"Německá restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,káva,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/greek":{"name":"Řecká restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,káva,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,gyros,pitas,olivy"},"amenity/restaurant/indian":{"name":"Indická restaurace","terms":"bar,snídaně,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,kari"},"amenity/restaurant/italian":{"name":"Italská restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,těstoviny,pizza"},"amenity/restaurant/japanese":{"name":"Japonská restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/korean":{"name":"Korejská restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/mexican":{"name":"Mexická restaurace","terms":"bar,snídaně,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,tacos,burritos,enchiladas,fajitas,nachos,tortilly,salsa,tamales,quesadillas"},"amenity/restaurant/noodle":{"name":"Nudlová restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,ramen nudle,polévka,soba nudle,celofánové nudle,rýžové nudle"},"amenity/restaurant/pizza":{"name":"Pizzerie","terms":"bar,stolovat,stolování,večeře,drive-in,jíst,oběd,stůl,hluboká miska,tenká kůrka,plátek"},"amenity/restaurant/ramen":{"name":"Restaurace Ramen","terms":"japonská,nudle,ramen-ten,ramen-ya,polévka"},"amenity/restaurant/seafood":{"name":"Restaurace s mořskými rybami","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,ryby,mlži,měkkýši,korýši,škeble,ústřice,humři,kraby,krevety,hlavonožci,chobotnice"},"amenity/restaurant/spanish":{"name":"Španělská restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/steakhouse":{"name":"Steakhouse","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl,steakhouse,chophouse,hovězí maso"},"amenity/restaurant/sushi":{"name":"Sushi restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/thai":{"name":"Thajská restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/turkish":{"name":"Turecká restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/restaurant/ukrainian":{"name":"Ukrajinská restaurace","terms":"bar,snídaně,stolovat,stolování,večeře,drive-in,jíst,oběd,stůl"},"amenity/restaurant/vietnamese":{"name":"Vietnamská restaurace","terms":"bar,snídaně,kavárna,kafe,jídelna,stolovat,stolování,večeře,drive-in,jíst,gril,oběd,stůl"},"amenity/sanitary_dump_station":{"name":"Výlevka pro karavany","terms":"obytný vůz,karavan,sanitární,skládka,elsan,výlevka,žumpa,mobilní záchod"},"amenity/shelter":{"name":"Přístřešek","terms":"pristresek"},"amenity/shelter/gazebo":{"name":"Altánek","terms":"altanek,altán,altan,besídka,besidka,přístřešek,střecha,dřevěná stavba"},"amenity/shelter/lean_to":{"name":"Otevřený přístřešek","terms":"dřevěná stavba,přístřešek,ubytování,přenocování,přístřešek na spaní"},"amenity/shelter/picnic_shelter":{"name":"Piknikový přístřešek","terms":"piknikovy pristresek,turistický přístřešek,turisticky pristresek,přístřešek,pristresek"},"amenity/shelter/public_transport":{"name":"Přístřešek veřejné dopravy","terms":"autobusová zastávka,zastávka metra,pristresek verejne dopravy,přístřešek hromadné dopravy,pristresek hromadne dopravy,přístřešek mhd,přístřešek tramvajové zastávky,čekání"},"amenity/shower":{"name":"Sprchy","terms":"sprchový kout"},"amenity/smoking_area":{"name":"Kuřárna","terms":"kuřácký prostor"},"amenity/social_centre":{"name":"Sociální středisko","terms":"událost,bratrský,bratrství,síň,organizace,profesionální,společnost,zvučnost,svaz,veterné"},"amenity/social_facility":{"name":"Zařízení sociálních služeb","terms":"komunita,neziskovka,sociální služby"},"amenity/social_facility/ambulatory_care":{"name":"Ambulantní péče","terms":"ošetření,zdravotnictví,sociální péče"},"amenity/social_facility/assisted_living":{"name":"Život s pomocí","terms":"asistované bydlení,pečovatelský dům,důchodci,bydlení,starý,senior"},"amenity/social_facility/food_bank":{"name":"Potravinová banka","terms":"potravinová spíž,vývařovna"},"amenity/social_facility/group_home":{"name":"Domov pro seniory","terms":"domov seniorů,domov senioru,domov důchodců,domov duchodcu,starý,senior"},"amenity/social_facility/homeless_shelter":{"name":"Noclehárna pro bezdomovce","terms":"bezdomovci,neubytovaní,vysídlení"},"amenity/social_facility/nursing_home":{"name":"Dům s pečovatelskou službou pro seniory","terms":"dum s osetrovatelskou sluzbou pro seniory,ošetřovateslká služba,osetrovatelska sluzba,senioři,seniori,bydlení,ošetřovatelství,staří"},"amenity/stripclub":{"name":"Striptýzový klub","terms":"břišní tanec,dospělý*,pánové*,nevěstinec,strip*"},"amenity/studio":{"name":"Studio","terms":"nahrávání,rádio,televize"},"amenity/studio/audio":{"name":"Nahrávací studio","terms":"mixování zvuku,produkce zvuku,nahrávání zvuku,zvukové studio"},"amenity/studio/radio":{"name":"Radiostanice","terms":"am rádio,fm rádio,radiové vysílání,radiové studio"},"amenity/studio/television":{"name":"Televizní stanice","terms":"televizní vysílání,televizní studio,tv vysílání,tv stanice,tv studio"},"amenity/studio/video":{"name":"Filmové studio","terms":"filmová produkce,filmové studio,videoprodukce,videozáznam,videostudio"},"amenity/swingerclub":{"name":"Swingers klub","terms":"dospělý*,lifestyle club,porno*,sex,strip*,swinger"},"amenity/taxi":{"name":"Stanoviště taxi","terms":"taxi"},"amenity/taxi/auto_rickshaw":{"name":"Stanoviště motorizované rikši","terms":"bajaj,toda,stanice tříkolek,tuk-tuk,tuksi"},"amenity/taxi/cycle_rickshaw":{"name":"Stanoviště cyklistické rikši","terms":"becak,bikecab,padyak,pedicab,sikad,trisikad,trishaw,velotaxi"},"amenity/taxi/motorcycle_taxi":{"name":"Stanoviště taxi pro motocykly","terms":"habal-habal,moto taxi,pillion"},"amenity/telephone":{"name":"Telefon","terms":"telefonní budka"},"amenity/theatre":{"name":"Divadlo","terms":"divadelní,představení,hra,muzikál"},"amenity/theatre/type/amphi":{"name":"Amfiteátr","terms":"otevřený,venkovní,řecký,amfitéatr"},"amenity/ticket_validator":{"name":"Ověřovač vstupenek","terms":"lístek,ověřovač,děrovač"},"amenity/toilets":{"name":"Toaleta","terms":"přístavek,záchod,mísa,latrína,wc,w.c."},"amenity/toilets/disposal/flush":{"name":"Splachovací toalety","terms":"koupelna,mísa,záchod,záchodky,odpočívadlo,hajzl,wc,w.c."},"amenity/toilets/disposal/pitlatrine":{"name":"Latrína","terms":"mísa,záchod,dlouhá,přístavek,záchod v jímce,hajzl"},"amenity/toilets/portable":{"name":"Mobilní toalety","terms":"toaleta,hajzl,johnny servis,toi-toi,toitoika,mobilní záchod"},"amenity/townhall":{"name":"Obecní / Městský úřad","terms":"obecní úřad,obecni urad,městský úřad,mestsky urad,samospráva,samosprava,radnice,městská radnice,mestska radnice"},"amenity/townhall/barangay-PH":{"name":"Úřad barangaye","terms":"úřad barria"},"amenity/townhall/city":{"name":"Radnice velkoměsta","terms":"radnice velkomesta,městský úřad,mestsky urad,městská radnice,mestska radnice,radnice města,radnice mesta,magistrát,magistrat"},"amenity/toy_library":{"name":"Půjčovna hraček","terms":"hra,hračka"},"amenity/trolley_bay":{"name":"Stojan na vozíky","terms":"vrácení vozíku,vrácení košíku,nákupní košík,vozík"},"amenity/vacuum_cleaner":{"name":"Vysavač","terms":"vysavač na auta,myčka,auto vysavač,vysávání"},"amenity/vehicle_inspection":{"name":"Stanice technické/emisní kontroly","terms":"stanice technické kontroly,stanice technicke kontroly,stk,technická kontrola,technicka kontrola,stanice emisní kontroly,stanice emisni kontroly,ek,emisní kontrola,emisni kontrola,stanice měření emisí,stanice mereni emisi,měření emisí,mereni emisi,kontrola vozidla,kontrola vozu,kontrola originality"},"amenity/vending_machine":{"name":"Prodejní automat","terms":"automat,výdejní automat"},"amenity/vending_machine/bicycle_tube":{"name":"Prodejní automat duší na jízdní kola","terms":"duše,duše na kolo,duše na jízdní kolo"},"amenity/vending_machine/bottle_return":{"name":"Stroj na vrácení lahví","terms":"vratné lahve"},"amenity/vending_machine/bread":{"name":"Automat na pečivo","terms":"bageta,chleba"},"amenity/vending_machine/cigarettes":{"name":"Automat na cigarety","terms":"cigarety"},"amenity/vending_machine/coffee":{"name":"Automat na kávu","terms":"káva"},"amenity/vending_machine/condoms":{"name":"Automat na kondomy","terms":"kondom"},"amenity/vending_machine/drinks":{"name":"Automat na nápoje","terms":"nápoj,soda,pití,džus,pop"},"amenity/vending_machine/eggs":{"name":"Automat na vejce","terms":"vejce"},"amenity/vending_machine/electronics":{"name":"Elektronický prodejní automat","terms":"kabel,nabíječka,sluchátko,sluchátka,telefon,tablet"},"amenity/vending_machine/elongated_coin":{"name":"Prodejní automat na mince","terms":"mince,drtič,podlouhlý,zploštit,halíř,suvenýr"},"amenity/vending_machine/excrement_bags":{"name":"Sáčky na výkaly","terms":"sáčky na exkrementy,hovínka,odpad,pes,zvíře,mazlíček"},"amenity/vending_machine/feminine_hygiene":{"name":"Automat dámské hygieny","terms":"kondom,tampon,vložka,žena,ženy,výrobky pro menstruační hygienu,osobní péče"},"amenity/vending_machine/food":{"name":"Jídelní automat","terms":"jídlo"},"amenity/vending_machine/food/snacks":{"name":"prodejní automat na svačiny","terms":"bonbón,žvýkačka,chipsy,preclík,cookies,sušenky"},"amenity/vending_machine/fuel":{"name":"prodejní automat na plynové náplně","terms":"benzín,palivo,pohon,propan,nafta,lng,cng,bionafta"},"amenity/vending_machine/ice_cream":{"name":"Automat na zmrzlinu","terms":"čokoládová,zmrzlina,mražená,nanuk,vanilková"},"amenity/vending_machine/ice_cubes":{"name":"Automat na led","terms":"kostky,led"},"amenity/vending_machine/newspapers":{"name":"Automat na noviny","terms":"noviny"},"amenity/vending_machine/parking_tickets":{"name":"Parkovací automat","terms":"parkování,lístek"},"amenity/vending_machine/pizza":{"name":"Automat na pizzu","terms":"pizza"},"amenity/vending_machine/public_transport_tickets":{"name":"Automat na jízdenky","terms":"autobus,vlak,trajekt,železnice,jízdenka,doprava"},"amenity/vending_machine/stamps":{"name":"Automat na balíky","terms":"automat na postovni znamky,výdejní automat na poštovní známky,vydejni automat na postovni znamky,poštovní známky,postovni znamky"},"amenity/vending_machine/sweets":{"name":"Prodejní automat na cukrovinky","terms":"žvýkačka"},"amenity/veterinary":{"name":"Veterina","terms":"klinika pro domácí mazlíčky,veterinář,nemocnice pro zvířata,lékař pro domácí mazlíčky"},"amenity/veterinary_pharmacy":{"name":"Lékárna pro zvířata","terms":"lékárna pro zvířata,klinika pro zvířata,zvířecí lékárna,léky pro zvířata,zvěrolékař,veterinář,veterinární lékárna"},"amenity/waste/dog_excrement":{"name":"Koš na psí výkaly","terms":"popelnice,odpadky,odpad,smetí,odpadní,hovínko,pes"},"amenity/waste_basket":{"name":"Odpadkový koš","terms":"popelnice,odpad,odpadky,smetí,odpadní"},"amenity/waste_disposal":{"name":"Kontejner na směsný odpad","terms":"odpad,odpadky,smetí,odpadní"},"amenity/waste_transfer_station":{"name":"Překládací stanice odpadu","terms":"skládka,odpad,recyklace,odpadky,šrot,odpadní"},"amenity/water_point":{"name":"Pitná voda pro karavany","terms":"vodovodní kohoutek,vodní bod,vodovodní uzávěr,zdroj vody,kohoutek"},"amenity/watering_place":{"name":"Napajedlo pro zvířata","terms":"žlábek vody,voda,voda pro zvířata"},"amenity/weighbridge":{"name":"Váha pro kamiony","terms":"vážící stanice,mostní váha"},"area":{"name":"Plocha","terms":"polygon"},"area/footway":{"name":"Plocha chodníku","terms":"area:highway,okraj chodníku,tvar chodníku,chodník,tvar chodníku podél silnice,plocha chodníku podél silnice"},"area/highway":{"name":"Plocha silnice","terms":"area:highway,okraj chodníku,oblast dálnice,tvar dálnice,chodník,tvar silnice,ulice"},"area/highway/traffic_island":{"name":"Plocha dopravního ostrůvku","terms":"pomocný ostrůvek,dopravní ostrůvek"},"attraction":{"name":"Atrakce"},"attraction/amusement_ride":{"name":"Atrakce","terms":"zábavní park,karnevalová jízda"},"attraction/animal":{"name":"Ohrazení zvířat","terms":"obojživelník,zvířecí park,akvárium,medvěd,pták,ryba,hmyz,lev,savec,opice,tučňák,plaz,safari,zábavní park,tygr,zoo"},"attraction/big_wheel":{"name":"Ruské kolo","terms":"zábavní park,atrakce"},"attraction/bumper_car":{"name":"Autodrom","terms":"zábavní park,vyhýbat se autům,skútry"},"attraction/bungee_jumping":{"name":"Bungee jumping","terms":"zábavní park,bungy jumping,skákací plošina"},"attraction/carousel":{"name":"Kolotoč","terms":"zábavní park,kolotoč,zábavní kolotoč,cval,skokan,kolotoč s koňmi,létající koně"},"attraction/dark_ride":{"name":"Strašidelná jízda","terms":"zábavní park,vlak duchů"},"attraction/drop_tower":{"name":"Atrakce padací věž","terms":"zábavní park,atrakce,gondola,věž,velký pokles"},"attraction/kiddie_ride":{"name":"Dětské houpadlo","terms":"automat,atrakce,dětská jízda,houpadlo,děti,dětské"},"attraction/log_flume":{"name":"Vodní horská dráha","terms":"zábavní park,atrakce,tobogán"},"attraction/maze":{"name":"Bludiště","terms":"zábavní park,atrakce,labyrint"},"attraction/pirate_ship":{"name":"Houpačka ve tvaru pirátské lodi","terms":"zábavní park,karnevalová jízda,zábavní jízda"},"attraction/river_rafting":{"name":"Jízda na divoké řece","terms":"zábavní park,aquapark,vodní park,raftingový simulátor,jízda na raftu"},"attraction/roller_coaster":{"name":"Horská dráha","terms":"zábavní park,atrakce"},"attraction/summer_toboggan":{"name":"Letní tobogán","terms":"alpská skluzavka,horská dráha"},"attraction/swing_carousel":{"name":"Řetízkový kolotoč","terms":"zábavní park,atrakce,kolotoč,věž,věž kolotoče"},"attraction/train":{"name":"Turistický vláček","terms":"zábavní park,vláček bez rámusu,silniční vlak,mašinka,vláček,parkový vláček"},"attraction/water_slide":{"name":"Vodní skluzavka","terms":"zábavní park,aquapark,vodní park,náhony,vodní skluzavky,vodní tobogány"},"barrier":{"name":"Zábrana","terms":"ohrada,bariéra"},"barrier/block":{"name":"Masivní blok","terms":"betonový blok,beton,zátaras,překážka"},"barrier/bollard":{"name":"Sloupek","terms":"patník,sloup"},"barrier/bollard_line":{"name":"Řada sloupků","terms":"řada patníků,řada sloupu,sloupek,řada,sloup"},"barrier/border_control":{"name":"Hraniční kontrola","terms":"kontrolní bod,clo,mezinárodní hranice,pasová kontrola,přístav vstupu,vízum"},"barrier/bump_gate":{"name":"Příčný práh","terms":"průjezdná brána"},"barrier/bus_trap":{"name":"Autobusová uzávěra","terms":"uzávěra na auta"},"barrier/cable_barrier":{"name":"Kabelové svodidlo","terms":"ochranný kabel,bezpečnostní bariéra z drátěného lana"},"barrier/cattle_grid":{"name":"Přejezdový rošt","terms":"hlídač dobytka,zastavení dobytka,mřížka pro hospodářská zvířata,branka do ohrady,mřížka ohrady,oplocení ohrady,branka,vjezd pro vozidlo"},"barrier/chain":{"name":"Řetěz","terms":"oplocení,ohrada,řetězové oplocení"},"barrier/city_wall":{"name":"Městské hradby","terms":"zeď,opevnění"},"barrier/cycle_barrier":{"name":"Zábrana proti kolům","terms":"cyklistická zábrana,bariéra pro cyklisty,cyklistické brány,zábrana pro cyklisty"},"barrier/ditch":{"name":"Příkop","terms":"koryto,zákop"},"barrier/entrance":{"name":"Vchod"},"barrier/fence":{"name":"Plot","terms":"oplocení,ohrada"},"barrier/fence/railing":{"name":"Zábradlí","terms":"držadlo,ochranné zábradlí"},"barrier/full-height_turnstile":{"name":"Turniket v plné výšce","terms":"přepážková brána,turniket"},"barrier/gate":{"name":"Brána","terms":"branka,vjezd,vchod"},"barrier/guard_rail":{"name":"Svodidlo","terms":"zábradlí,dopravní bariéra,svodidlo,střední bariéra,silniční bariéra,armco bariéra"},"barrier/hampshire_gate":{"name":"Drátěná brána","terms":"brána hampshire,brána nového zélandu"},"barrier/handrail":{"name":"Zábradlí"},"barrier/hedge":{"name":"Živý plot","terms":"keříky,křoví,okrasný plot"},"barrier/height_restrictor":{"name":"Omezovač výšky","terms":"výšková bariéra,bariéra s omezením výšky,maximální výška,měřič maximální výšky"},"barrier/jersey_barrier":{"name":"Betonová bariéra","terms":"betonová střední,betonová zábrana,svodidlo s konstantním sklonem,svodidlo ve tvaru f,k-kolejnice,střední,zeď z new jersey,vysoká zeď v ontariu,plastová bariéra"},"barrier/kerb":{"name":"Obrubník","terms":"okraj chodníku,okraj silnice"},"barrier/kerb/flush":{"name":"Zarovnaný obrubník","terms":"obrubník,rovný obrubník,hmatový obrubník"},"barrier/kerb/lowered":{"name":"Snížený obrubník","terms":"řez obrubníku,nájezd na obrubník,nájezd obrubníku,spadlý obrubník,nájezd na kočárek"},"barrier/kerb/raised":{"name":"Vysoký obrubník","terms":"schod"},"barrier/kerb/rolled":{"name":"Zakulacený obrubník","terms":"zakulacený obrubník,ob